diff --git a/minecraft/config/AdvancedBackups-client.properties b/minecraft/config/AdvancedBackups-client.properties new file mode 100644 index 0000000..852c579 --- /dev/null +++ b/minecraft/config/AdvancedBackups-client.properties @@ -0,0 +1,77 @@ +#Whether to show backup progress when a backup is being made. +#Options : true, false #Default : true +config.advancedbackups.showProgress=true + + + +#-------------------------------------------------------------------------------------------------------------------- +##The below options are all irrelevant to 1.7.10 - it lacks toasts, and cannot customise text in the way others do. +#-------------------------------------------------------------------------------------------------------------------- + + +#-------------------------------------------------------------------------------------------------------------------- +##The below options control the colour of the text showing backup progress. +#-------------------------------------------------------------------------------------------------------------------- + +#The RED value of the backup progress text. +#Range : 0-255 #Default: 82 +config.advancedbackups.colours.progress.red=82 + +#The GREEN value of the backup progress text. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.progress.green=255 + +#The BLUE value of the backup progress text. +#Range : 0-255 #Default: 82 +config.advancedbackups.colours.progress.blue=82 + +#-------------------------------------------------------------------------------------------------------------------- +##The below options control the colour of the text displayed in the event of a backup failure. +#-------------------------------------------------------------------------------------------------------------------- + +#The RED value of the backup error text. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.error.red=255 + +#The GREEN value of the backup error text. +#Range : 0-255 #Default: 50 +config.advancedbackups.colours.error.green=50 + +#The BLUE value of the backup error text. +#Range : 0-255 #Default: 50 +config.advancedbackups.colours.error.blue=50 + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options control non-text toast related options. +#-------------------------------------------------------------------------------------------------------------------- + +#Whether to use a dark version of the toast prompt. +#Options : true, false #Default : true +config.advancedbackups.darkToasts=true + + +#The RED value of the progess bar. +#Range : 0-255 #Default: 88 +config.advancedbackups.colours.bar.red=88 + +#The GREEN value of the progess bar. +#Range : 0-255 #Default: 242 +config.advancedbackups.colours.bar.green=242 + +#The BLUE value of the progess bar. +#Range : 0-255 #Default: 82 +config.advancedbackups.colours.bar.blue=82 + + +#The RED value of the progess bar background. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.background.red=255 + +#The GREEN value of the progess bar background. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.background.green=255 + +#The BLUE value of the progess bar background. +#Range : 0-255 #Default: 255 +config.advancedbackups.colours.background.blue=255 \ No newline at end of file diff --git a/minecraft/config/AdvancedBackups.properties b/minecraft/config/AdvancedBackups.properties new file mode 100644 index 0000000..62327cb --- /dev/null +++ b/minecraft/config/AdvancedBackups.properties @@ -0,0 +1,164 @@ +#Enable or disable automatic backups. +#Options : true, false #Default : true +config.advancedbackups.enabled=true + +#Whether to save before making a backup. +#Options : true, false #Default : true +config.advancedbackups.save=true + +#Whether to disable autosave before making a backup, and whether to re-enable saving afterwards. +#Don't edit this unless you know what you're doing. Saving mid-backup can cause issues! +#Options : true, false #Default: true +config.advancedbackups.togglesave=true + +#Buffer size, in bytes, to use when reading / writing files. Higher will improve speeds, but increase memory usage. +#Too high can cause an OOM. I'd advise against editing this unless you experience issues. +#Range : 1-2147483647 #Default : 1048576 +config.advancedbackups.buffer=1048576 + +#Whether to flush when making the aforementioned save. Can cause a lag spike, and is usually not required. +#Unused prior to minecraft 1.16. +#Options : true, false #Default : false +config.advancedbackups.flush=false + +#Whether to require player activity between backups. +#Options : true, false #Default : true +config.advancedbackups.activity=true + +#The type of backups to use. +#Options : zip, differential, incremental #Default : differential +config.advancedbackups.type=differential + +#A list of files, relative paths within the world directory, to skip backing up. +#Comma separated, * is a wildcard, and backslashes are replaced with forward slashes. +#Default : session.lock,*.dat_old +config.advancedbackups.blacklist=session.lock,*_old + +#The absolute or relative path to the backup location. +#Options : any file path. Default : ./backups +config.advancedbackups.path=./backups + +#Minimum time between backups, in hours. This can prevent a shutdown backup from triggering immediately after a scheduled backup or similar situations. +#Set to 0 to disable. +#5 minutes = ~ 0.083 hours. +#Range : 0 - 500 #Default : 0.5 +config.advancedbackups.frequency.min=0.25 + +#Triggers a backup if none has already happened within this time. Can be combined with an uptime-based schedule. +#Range : 0.5 - 500 #Default : 24 +config.advancedbackups.frequency.max=24.0 + +#Whether the schedule below uses uptime (true) or real-world time (false). +#Default : true +config.advancedbackups.frequency.uptime=true + +#When using server uptime: + #A looping comma-separated backup schedule, based off of server uptime, hours:minutes. Examples: + #4:00 - Makes a backup every four hours. + #4:00,7:00 - Makes a backup after four hours, then three, then four, and so on. + #1:00 - Makes a backup every hour. + #4:00,8:00,12:00,16:00,17:00,18:00,19:00,20:00,21:00,24:00 - Makes a backup following a strict schedule. + +#When using real-world time: + #A strict schedule, using hours:minutes to follow real-world time. Examples: + #4:00 - Makes a backup at 4am each day. + #4:00,8:00,12:00,16:00,17:00,18:00,19:00,20:00,21:00,24:00 - Makes a backup at specific times of day. + #Note : use 24:00 instead of 0:00 to represent midnight. + +#Default : 1:00 +config.advancedbackups.frequency.schedule=1:00 + +#Whether to force a backup on server shutdown. Respects min frequency. +#Options : true, false #Default : false +config.advancedbackups.frequency.shutdown=false + +#Whether to force a backup on server startup. Respects min frequency. +#Options : true, false #Default : false +config.advancedbackups.frequency.startup=false + +#Delay to use after startup, in seconds. Is always at least 5 seconds. +#Range : 5-1000 #Default : 30 +config.advancedbackups.frequency.delay=30 + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options control logging of backup progress, including which clients to contact. +##Backup start and end are always logged to console. The rest is configurable. +#-------------------------------------------------------------------------------------------------------------------- + +#Which clients to send progress updates to. Behaviour before this was added was `ops` +#Options : ops, all, none #Default : ops +config.advancedbackups.logging.clients=ops + +#How often to send progress info to clients, measured in milliseconds. Old behaviour was `0`, not recommended for servers due to network load. +#Range : 0 - ~infinite #Default : 500 +config.advancedbackups.logging.clientfrequency=500 + +#Whether to log backup progress to console. Start / finish are always logged. Old behaviour was `false`. +#Options : true, false #Default : true +config.advancedbackups.logging.console=true + +#How often to send log progress info in the console, measured in milliseconds. +#Range : 0 - ~infinite #Default : 5000 +config.advancedbackups.logging.consolefrequency=5000 + + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options control deletion of old backups, meeting a criteria. A backup only needs to meet ONE of the below criteria to be purged. +##The oldest backups are always purged first, or oldest differnetial partial if the oldest differential backup is being depended on. +#-------------------------------------------------------------------------------------------------------------------- +#The maximum size to keep, in GB. Keep relatively high for zips, tighter space requirements should instead use differential or incremental backups. +#Set to 0 to disable. +#Range : 0 - 9999 #Default : 50 +config.advancedbackups.purge.size=50.0 + +#The maximum days to keep backups for. Higher amounts will keep a longer "history" but take up more space in return. +#Set to 0 to disable. +#Range : 0 - 9999 #Default : 0 +config.advancedbackups.purge.days=0 + +#The maximum amount of backups to keep. Older backups will be purged if this is exceeded. +#Set to 0 to disable. +#Range : 0 - 9999 #Default : 0 +config.advancedbackups.purge.count=0 + +#Whether to delete incremental backup chains if max size is exceeded. If not, incremental backups do not respect the above options and never delete. +#This is because you can't delete part of an incremental backup chain without breaking the links. Differentials do not have this downside. +#Options : true, false #Default : true +config.advancedbackups.purge.incrementals=true + +#The minimum number of incremental chains to keep before purging any that meet the criteria. Only relevant if the above option is set to true. +#Range : 1 - 9999 #Default : 1 +config.advancedbackups.purge.incrementalchains=1 + + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options only affect zip files, whether that's for zip backups, export commands or some other option. +#-------------------------------------------------------------------------------------------------------------------- + +#The compression level to use for zip files. Higher numbers space usage, but decrease performance. +#Range : 1-9 #Default : 4 +config.advancedbackups.zips.compression=4 + + +#-------------------------------------------------------------------------------------------------------------------- +##The following options only affect differential and incremental backups. +#-------------------------------------------------------------------------------------------------------------------- + +#The maximum 'chain' length to keep. +#Range : 5-500 #Default : 50 +config.advancedbackups.chains.length=50 + +#Whether to compress 'chains'. This compresses the base backup and all sequential backups. Reduces space usage, but decreases performance. +#Options : true, false #Default : true +config.advancedbackups.chains.compress=true + +#Whether to enable "smart" reset for chains - if every file is being backed up, mark the backup as complete and reset chain length regardless of intended backup type. +#Options : true, false #Default : true +config.advancedbackups.chains.smart=true + +#What % of a full backup is allowed to be contained in a partial before forcing it into a full backup. Useful for reducing partial backup size. +#Range : 1-100 #Default : 50 +config.advancedbackups.chains.maxpercent=50.0 \ No newline at end of file diff --git a/minecraft/config/Advancedperipherals/general.toml b/minecraft/config/Advancedperipherals/general.toml new file mode 100644 index 0000000..39de92d --- /dev/null +++ b/minecraft/config/Advancedperipherals/general.toml @@ -0,0 +1,19 @@ + +#Config to adjust general mod settings +[General] + #Enables the debug mode. Only enable it if needed. + enableDebugMode = false + +[Core] + #Enables initial cooldown on peripheral initialization + isInitialCooldownEnabled = true + #Determinates initial cooldown sensitive level, values lower then this value will not trigger initial cooldown + #Range: > 0 + initialCooldownSensitiveLevel = 6000 + +[Unsafe] + #By setting this value to true, I understand all operations below are danger to my adventure, and if they caused unexpected behavior in my world, I will not consider it as AP's liability + enableUnsafe = false + #Ignore turtle peripheral item's NBT when equipping. **YOU WILL LOSE ALL NBT ON THE ITEM** + ignoreTurtlePeripheralItemNBT = false + diff --git a/minecraft/config/Advancedperipherals/metaphysics.toml b/minecraft/config/Advancedperipherals/metaphysics.toml new file mode 100644 index 0000000..0ccb6df --- /dev/null +++ b/minecraft/config/Advancedperipherals/metaphysics.toml @@ -0,0 +1,32 @@ + +#Config for metaphysics +[Metaphysics] + #Defines energy to fuel rate + #Range: > 575 + energyToFuelRate = 575 + enableWeakAutomataCore = true + enableEndAutomataCore = true + enableHusbandryAutomataCore = true + #Defines max warp point stored in warp core. Mostly need to not allow NBT overflow error + #Range: > 1 + endAutomataCoreWarpPointLimit = 64 + #Chance that overpowered automata will break after rotation cycle + #Range: 0.0 ~ 1.0 + overpoweredAutomataBreakChance = 0.002 + #Range: 1 ~ 64 + tier1AutomataCoreInteractionRadius = 2 + #Range: 1 ~ 32 + tier1AutomataCoreMaxFuelConsumptionRate = 2 + #Range: 1 ~ 64 + tier2AutomataCoreInteractionRadius = 4 + #Range: 1 ~ 32 + tier2AutomataCoreMaxFuelConsumptionRate = 3 + #Range: 1 ~ 64 + overpoweredTier1AutomataCoreInteractionRadius = 4 + #Range: 1 ~ 32 + overpoweredTier1AutomataCoreMaxFuelConsumptionRate = 3 + #Range: 1 ~ 64 + overpoweredTier2AutomataCoreInteractionRadius = 6 + #Range: 1 ~ 32 + overpoweredTier2AutomataCoreMaxFuelConsumptionRate = 4 + diff --git a/minecraft/config/Advancedperipherals/peripherals.toml b/minecraft/config/Advancedperipherals/peripherals.toml new file mode 100644 index 0000000..7845ef8 --- /dev/null +++ b/minecraft/config/Advancedperipherals/peripherals.toml @@ -0,0 +1,177 @@ + +#Peripherals config +[Peripherals] + + [Peripherals.Player_Detector] + #Enable the Player Detector or not. + enablePlayerDetector = true + #The max range of the player detector functions. If anyone use a higher range, the detector will use this max range. -1 for unlimited + #Range: > -1 + playerDetMaxRange = -1 + #Activates the "getPlayerPos" function of the Player Detector + enablePlayerPosFunction = true + #Adds more information to `getPlayerPos` of the Player Detector. Like rotation and dimension + morePlayerInformation = true + #If true, the player detector can observe players which aren't in the same dimension as the detector itself. `playerDetMaxRange` needs to be infinite(-1) for it to work. + chatBoxMultiDimensional = true + #If true, add random error to `getPlayerPos` player position that varies based on how far the player is from the detector. Prevents getting the exact position of players far from the detector. + enablePlayerPosRandomError = false + #The maximum amount of error (in blocks) that can be applied to each axis of the player's position. + #Range: > 0 + playerPosRandomErrorAmount = 1000 + #If random error is enabled: this is the maximum range at which an exact player position is returned, before random error starts to be applied. + #Range: > 0 + playerPosPreciseMaxRange = 100 + + [Peripherals.Energy_Detector] + #Enable the Energy Detector or not. + enableEnergyDetector = true + #Defines the maximum energy flow of the energy detector. + #Range: > 1 + energyDetectorMaxFlow = 2147483647 + + [Peripherals.NBT_Storage] + #Enable the nbt storage block or not + enableNBTStorage = true + #Defines max nbt string length that can be stored in nbt storage + #Range: > 0 + nbtStorageMaxSize = 1048576 + + [Peripherals.Chunky_Turtle] + #Enable the Chunky Turtle or not. + enableChunkyTurtle = true + #Time in seconds, while loaded chunk can be consider as valid without touch + #Range: > 60 + chunkLoadValidTime = 600 + #Radius in chunks a single chunky turtle will load. The default value (0) only loads the chunk the turtle is in, 1 would also load the 8 surrounding chunks (9 in total) and so on + #Range: 0 ~ 16 + chunkyTurtleRadius = 0 + + [Peripherals.Chat_Box] + #Enable the Chat Box or not. + enableChatBox = true + #Defines default chatbox prefix + defaultChatBoxPrefix = "AP" + #Defines the maximal range of the chat box in blocks. -1 for infinite. If the range is not -1, players in other dimensions won't able to receive messages + #Range: -1 ~ 30000000 + chatBoxMaxRange = -1 + #If true, the chat box is able to send messages to other dimensions than its own + chatBoxMultiDimensional = true + #If true, the chat box cannot use 'run_command' action + chatBoxPreventRunCommand = false + #If true, the chat box will wrap and execute 'run_command' or 'suggest_command' action with zero permission, in order to prevent operators accidently run dangerous commands. + chatBoxWrapCommand = true + #These commands below will not be able to send by 'run_command' or 'suggest_command' action. It will match as prefix if starts with '/', other wise use regex pattern + chatBoxBannedCommands = ["/execute", "/op", "/deop", "/gamemode", "/gamerule", "/stop", "/give", "/fill", "/setblock", "/summon", "/whitelist", "^/ban-(?:ip)?\\s*", "^/pardon-(?:ip)?\\s*", "^/save-(?:on|off)\\s*"] + + [Peripherals.ME_Bridge] + #Enable the Me Bridge or not. + enableMeBridge = true + #Power consumption per tick. + #Range: > 0 + mePowerConsumption = 10 + + [Peripherals.RS_Bridge] + #Enable the Rs Bridge or not. + enableRsBridge = true + #Power consumption per tick. + #Range: > 0 + rsPowerConsumption = 10 + + [Peripherals.Environment_Detector] + #Enable the Environment Detector or not. + enableEnvironmentDetector = true + + [Peripherals.AR_Controller] + #Enable the AR goggles or not. + enableARGoggles = true + + [Peripherals.Inventory_Manager] + #Enable the inventory manager or not. + enableInventoryManager = true + + [Peripherals.Redstone_Integrator] + #Enable the redstone integrator or not. + enableRedstoneIntegrator = true + + [Peripherals.Block_Reader] + #Enable the block reader or not. + enableBlockReader = true + + [Peripherals.Geo_Scanner] + #Enable the geo scanner or not. + enableGeoScanner = true + + [Peripherals.Colony_Integrator] + #Enable the colony integrator or not. + enableColonyIntegrator = true + + [Peripherals.Compass_Turtle] + #Enable the compass turtle or not. + enableCompassTurtle = true + #The maximum distance the compass can locate accurately with in each axis. + #Range: 0 ~ 8 + compassAccurePlaceRadius = 3 + #The free distance the compass can locate accurately with in each axis. + #Range: 0 ~ 4 + compassAccurePlaceFreeRadius = 1 + + [Peripherals.Powered_Peripherals] + #Enable RF storage for peripherals, that could use it + enablePoweredPeripherals = false + #Defines max energy storage in any powered peripheral + #Range: > 1000000 + poweredPeripheralMaxEnergyStored = 100000000 + + [Peripherals.Pocket_Peripherals] + #If true, pockets will have infinite fuel + disablePocketFuelConsumption = true + + [Peripherals.Operations] + #Range: > 1000 + digCooldown = 1000 + #Range: > 0 + digCost = 1 + #Range: > 1000 + useOnBlockCooldown = 5000 + #Range: > 0 + useOnBlockCost = 1 + #Range: > 1000 + suckCooldown = 1000 + #Range: > 0 + suckCost = 1 + #Range: > 1000 + useOnAnimalCooldown = 2500 + #Range: > 0 + useOnAnimalCost = 10 + #Range: > 1000 + captureAnimalCooldown = 50000 + #Range: > 0 + captureAnimalCost = 100 + #Range: > 1000 + warpCooldown = 1000 + #Range: > 0 + warpCost = 1 + #Range: > 1000 + accurePlaceCooldown = 1000 + #Range: > 0 + accurePlaceCost = 1 + #Range: > 1000 + scanBlocksCooldown = 2000 + #Range: > 1 + scanBlocksMaxFreeRadius = 8 + #Range: > 1 + scanBlocksMaxCostRadius = 16 + #Range: 0.1 ~ 1.7976931348623157E308 + scanBlocksExtraBlockCost = 0.17 + #Range: > 1000 + scanEntitiesCooldown = 2000 + #Range: > 1 + scanEntitiesMaxFreeRadius = 8 + #Range: > 1 + scanEntitiesMaxCostRadius = 16 + #Range: 0.1 ~ 1.7976931348623157E308 + scanEntitiesExtraBlockCost = 0.17 + #Range: > 0 + chatMessageCooldown = 1000 + diff --git a/minecraft/config/Advancedperipherals/world.toml b/minecraft/config/Advancedperipherals/world.toml new file mode 100644 index 0000000..a040f83 --- /dev/null +++ b/minecraft/config/Advancedperipherals/world.toml @@ -0,0 +1,13 @@ + +#Config to adjust world settings +[World] + #Enable the villager structures for the computer scientist. + enableVillagerStructures = true + #Gives the ap documentation to new players. + givePlayerBookOnJoin = false + #The weight of the villager structures. + #Range: 0 ~ 16000 + villagerStructureWeight = 10 + #Enable new wandering trader trades. + enableWanderingTraderTrades = true + diff --git a/minecraft/config/CoroUtil/General.toml b/minecraft/config/CoroUtil/General.toml new file mode 100644 index 0000000..7f56d71 --- /dev/null +++ b/minecraft/config/CoroUtil/General.toml @@ -0,0 +1,10 @@ + +#General mod settings +[general] + #logging + useLoggingLog = true + #- + useLoggingDebug = false + #- + useLoggingError = true + diff --git a/minecraft/config/CustomNpcs.cfg b/minecraft/config/CustomNpcs.cfg new file mode 100644 index 0000000..5b9b99c --- /dev/null +++ b/minecraft/config/CustomNpcs.cfg @@ -0,0 +1,81 @@ +#Whether scripting is enabled or not +EnableScripting=true + +#Arguments given to the Nashorn scripting library +NashorArguments=-strict + +#Disable Chat Bubbles +EnableChatBubbles=true + +#Navigation search range for NPCs. Not recommended to increase if you have a slow pc or on a server +NpcNavRange=32 + +#Limit too how many npcs can be in one chunk for natural spawning +NpcNaturalSpawningChunkLimit=4 + +#Set to true if you want the dialog command option to be able to use op commands like tp etc +NpcUseOpCommands=false + +#If set to true only opped people can use the /noppes command +NoppesCommandOpOnly=false + +InventoryGuiEnabled=true + +#If you are running sponge and you want to disable the permissions set this to true +DisablePermissions=false + +SceneButtonsEnabled=true + +#Enables CustomNpcs startup update message +EnableUpdateChecker=false + +#Only ops can create and edit npcs +OpsOnly=false + +#Default interact line. Leave empty to not have one +DefaultInteractLine=Hello @p + +#Number of chunk loading npcs that can be active at the same time +ChuckLoaders=20 + +#Enables leaves decay +LeavesDecayEnabled=true + +#Enables Vine Growth +VineGrowthEnabled=true + +#Enables Ice Melting +IceMeltsEnabled=true + +#Normal players can use soulstone on animals +SoulStoneAnimals=true + +#Normal players can use soulstone on all npcs +SoulStoneNPCs=false + +#Type 0 = Normal, Type 1 = Solid +HeadWearType=1 + +#When set to Minecraft it will use minecrafts font, when Default it will use OpenSans. Can only use fonts installed on your PC +FontType=Default + +#Font size for custom fonts (doesn't work with minecrafts font) +FontSize=18 + +#On some servers or with certain plugins, it doesnt work, so you can disable it here +EnableInvisibleNpcs=true + +#Type 0 = standard CNPC (client side despawn), type 1 = old CNPC (disable renderer only), type 2 = modern (disable rendering, hitboxes and interactions) +InvisibilityAlgorithm=2 + +NpcSpeachTriggersChatEvent=false + +#Enable it if you want all your global data (quests and dialogs) to be saved externally (not per world, but per .minecraft folder) +EnableExternalSaving=false + +#The lifetime for the projectiles, after which they get despawned (used for removing stuck projectiles) +ProjectileLifespan=1200 + +#Enable new dialog and quest GUI which allow accepting and rejecting quests +EnableNewDialogSystem=false + diff --git a/minecraft/config/EnderStorage.cfg b/minecraft/config/EnderStorage.cfg new file mode 100644 index 0000000..4e4ba4e --- /dev/null +++ b/minecraft/config/EnderStorage.cfg @@ -0,0 +1,14 @@ +# The RegistryName for the Item to lock EnderChests and Tanks. +S:"personalItem"="minecraft:diamond" + +# Causes chests to lose personal settings and drop the diamond on break. +B:"anarchyMode"=false + +# The size of each inventory of EnderStorage, 0 = 3x3, 1 = 3x9, 2 = 6x9, default = 1 +I:"item_storage_size"=1 + +# Disables the tank on top of creators heads. +B:"disableCreatorVisuals"=false + +# Enable this to make EnderStorage use vanilla's EnderChest sounds instead of the standard chest. +B:"useVanillaEnderChestsSounds"=false diff --git a/minecraft/config/ExtraQuests/config.yml b/minecraft/config/ExtraQuests/config.yml new file mode 100644 index 0000000..1460278 --- /dev/null +++ b/minecraft/config/ExtraQuests/config.yml @@ -0,0 +1,7 @@ +# Will there be a blacklist of console commands to execute from the command reward? +blacklist-console: false + +# All commands that will be banned. +blacklist-console-list: + - op + - gamemode diff --git a/minecraft/config/ExtraQuests/locale.yml b/minecraft/config/ExtraQuests/locale.yml new file mode 100644 index 0000000..ae083e1 --- /dev/null +++ b/minecraft/config/ExtraQuests/locale.yml @@ -0,0 +1,4 @@ +reload: '&e(!) Configs have been reloaded.' +add-key-value: '&e(!) You have added a key %key% value %value% to the player %player%.' +error-reload: '&c(!) Reload error, checking console and fixes config.' +player-not-found: '&c(!) Player %player% not found.' diff --git a/minecraft/config/Hexerei-client.toml b/minecraft/config/Hexerei-client.toml new file mode 100644 index 0000000..afa387c --- /dev/null +++ b/minecraft/config/Hexerei-client.toml @@ -0,0 +1,13 @@ +#Dynamic light toggle +dynamic_light_toggle = false +#Light level an entity should emit when dynamic lights are on +#Example entry: minecraft:blaze=15 +entity_lights = ["minecraft:blaze=10", "minecraft:magma_cube=8", "minecraft:spectral_arrow=8"] +#Light level an item should emit when held when dynamic lights are on +#Example entry: minecraft:stick=15 +item_lights = ["hexerei:moon_dust=8", "minecraft:redstone_torch=10", "minecraft:soul_lantern=12", "minecraft:glow_ink_sac=10", "minecraft:verdant_froglight=15", "minecraft:blaze_rod=10", "minecraft:shroomlight=10", "minecraft:lantern=14", "minecraft:soul_torch=10", "minecraft:glow_berries=8", "minecraft:glowstone_dust=8", "minecraft:pearlescent_froglight=15", "minecraft:nether_star=14", "minecraft:glowstone=15", "minecraft:torch=14", "minecraft:ochre_froglight=15", "minecraft:lava_bucket=15"] + +["List of Extra Fonts"] + #list of fonts that can be used, mainly for the book of shadows + font_list = ["minecraft:default", "hexerei:fancy", "hexerei:bloody", "hexerei:earth", "hexerei:seattle", "hexerei:medieval", "hexerei:augusta"] + diff --git a/minecraft/config/Hexerei-common.toml b/minecraft/config/Hexerei-common.toml new file mode 100644 index 0000000..250772e --- /dev/null +++ b/minecraft/config/Hexerei-common.toml @@ -0,0 +1,50 @@ + +["Herb Jar Settings"] + #Disabling allows jars to hold any item + jars_only_hold_herbs = true + +["Sage Burning Plate Settings"] + #Range of the Sage Burning Plate, setting to 0 will disable completely + spawn_disable_range = 48 + +["Crow Pickpocket Cooldown"] + #time (in ticks) for crow being able to pickpocket again (base 1 minute 30 seconds) + crow_pickpocket_cooldown = 1800 + +["Broom Brush Durability"] + #broom brush durability + broom_brush_durability = 100 + +["Herb Enhanced Brush Durability"] + #Herb Enhanced brush durability + herb_enhanced_brush_durability = 200 + +["Moon Dust Brush Durability"] + #Moon Dust brush durability + moon_dust_brush_durability = 200 + +["Thruster Brush Durability"] + #thruster brush durability + thruster_brush_durability = 400 + +["Broom Waterproof Tip Durability"] + #Broom Waterproof Tip Durability + broom_waterproof_tip_durability = 800 + +["Broom Netherite Tip Durability"] + #Broom Netherite Tip Durability + broom_netherite_tip_durability = 200 + +["Sage Bundle Durability"] + #time (in ticks) for the sage bundle to burn out (default 3600 - 1 hour) + sage_bundle_durability = 3600 + +["Coffer Item Blacklist"] + #blacklists items from being placed inside of coffers + coffer_blacklist = ["minecraft:shulker_box", "minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box", "hexerei:coffer"] + +["Biome Generation"] + #rarity of the willow swamp biome, 0 to disable + #Range: > 0 + willow_swamp_rarity = 2 + diff --git a/minecraft/config/LibertyVillagers.json b/minecraft/config/LibertyVillagers.json new file mode 100644 index 0000000..9343fb7 --- /dev/null +++ b/minecraft/config/LibertyVillagers.json @@ -0,0 +1,97 @@ +{ + "villagersGeneralConfig": { + "healOnWake": true, + "villagersDontBreed": false, + "villagerBabiesRequireWorkstationAndBed": false, + "villagersDontLookForWorkstationsAtNight": true, + "villagersEatMelons": true, + "villagersEatPumpkinPie": true, + "villagersEatCookedFish": true, + "villagersDontTrampleCrops": true, + "noNitwitVillagers": false, + "allNitwitVillagers": false, + "growUpTime": 24000, + "allBabyVillagers": false, + "foreverYoung": false + }, + "villagerPathfindingConfig": { + "findPOIRange": 128, + "pathfindingMaxRange": 256, + "minimumPOISearchDistance": 3, + "villagersAvoidCactus": true, + "villagersAvoidWater": true, + "villagersAvoidRail": true, + "villagersAvoidTrapdoor": true, + "villagersAvoidPowderedSnow": true, + "villagersAvoidGlassPanes": true, + "villagerWanderingFix": true, + "walkTowardsTaskMaxRunTime": 2400, + "villagersDontClimb": true, + "villagerSafeFallDistance": 2 + }, + "villagersProfessionConfig": { + "armorerHealsGolems": true, + "armorerHealsGolemsRange": 32, + "clericThrowsPotionsAtPlayers": true, + "clericThrowsPotionsAtVillagers": true, + "clericThrowsPotionsAtRange": 32, + "findCropRangeHorizontal": 10, + "findCropRangeVertical": 3, + "preferPlantSameCrop": true, + "farmersHarvestMelons": true, + "farmersHarvestPumpkins": true, + "butchersFeedChickens": true, + "butchersFeedCows": true, + "butchersFeedPigs": true, + "butchersFeedRabbits": true, + "butchersFeedSheep": false, + "fletchersFeedChickens": true, + "leatherworkersFeedCows": true, + "shepherdsFeedSheep": false, + "feedAnimalsRange": 20, + "feedMaxAnimals": 30, + "fishermanFish": true, + "fishermanFindWaterRange": 10, + "fishermanFishingWaterRange": 5, + "librariansLookAtBooks": true + }, + "golemsConfig": { + "golemAggroRange": 48, + "golemsAvoidCactus": true, + "golemsAvoidWater": true, + "golemsAvoidRail": true, + "golemsAvoidTrapdoor": true, + "golemsAvoidPowderedSnow": true, + "golemsDontAttackPlayer": true, + "golemsDontTrampleCrops": true, + "villagersDontSummonGolems": false, + "golemSpawnLimit": false, + "golemSpawnLimitCount": 10, + "golemSpawnLimitRange": 128, + "golemStayNearBell": true, + "golemMaxBellRange": 128, + "golemMoveToShore": true, + "golemPathfindToShoreRange": 10, + "golemsDontClimb": true + }, + "catsConfig": { + "catsSpawnLimit": false, + "catsSpawnLimitCount": 10, + "catsSpawnLimitRange": 128, + "villageCatsDontDespawn": false, + "blackCatsAtAnyTime": false, + "allBlackCats": false, + "catsStayNearBell": true, + "catsMaxBellRange": 128, + "catsDontClimb": true + }, + "animalsConfig": { + "beesAvoidTrapdoors": true + }, + "debugConfig": { + "villagerStatRange": 256, + "enableVillagerInfoOverlay": false, + "villagerInfoShowsPath": false, + "enableVillagerBrainDebug": false + } +} \ No newline at end of file diff --git a/minecraft/config/Mekanism/solarpanels-storage.toml b/minecraft/config/Mekanism/solarpanels-storage.toml new file mode 100644 index 0000000..2d01b79 --- /dev/null +++ b/minecraft/config/Mekanism/solarpanels-storage.toml @@ -0,0 +1,22 @@ + +#Generator Energy Storage Config. This config is synced from server to client. +[storage] + #Base energy storage (Joules). + advancedSolarPanel = "288000" + #Base energy storage (Joules). + hybridSolarPanel = "864000" + #Base energy storage (Joules). + ultimateHybridSolarPanel = "2592000" + #Base energy storage (Joules). + quantumSolarPanel = "7776000" + #Base energy storage (Joules). + spectralSolarPanel = "23328000" + #Base energy storage (Joules). + singularSolarPanel = "69984000" + #Base energy storage (Joules). + lightAbsorbingSolarPanel = "209952000" + #Base energy storage (Joules). + photonicSolarPanel = "629856000" + #Base energy storage (Joules). + creativeSolarPanel = "2000000000" + diff --git a/minecraft/config/Mekanism/solarpanels.toml b/minecraft/config/Mekanism/solarpanels.toml new file mode 100644 index 0000000..6c55328 --- /dev/null +++ b/minecraft/config/Mekanism/solarpanels.toml @@ -0,0 +1,22 @@ + +#MoreSolarPanels Config. This config is synced between server and client. +[solarpanels] + #Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments. + advancedSolarPanel = "150" + #Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments. + hybridSolarPanel = "450" + #Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments. + ultimateHybridSolarPanel = "1350" + #Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments. + quantumSolarPanel = "4050" + #Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments. + spectralSolarPanel = "12150" + #Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments. + singularSolarPanel = "36450" + #Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments. + lightAbsorbingSolarPanel = "109350" + #Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments. + photonicSolarPanel = "328050" + #Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments. + creativeSolarPanel = "10000000" + diff --git a/minecraft/config/MekanismMoreMachine/general.toml b/minecraft/config/MekanismMoreMachine/general.toml new file mode 100644 index 0000000..327c41c --- /dev/null +++ b/minecraft/config/MekanismMoreMachine/general.toml @@ -0,0 +1,16 @@ + +#General Config. This config is synced from server to client. +[general] + #mB of Unstable Dimensional Gas collected by the Ambient Gas Collector. + #Range: 1 ~ 1000 + gasCollectAmount = 1 + #mB of Unstable Dimensional Gas collected by the Ambient Gas Collector. + wirelessChargingStationChargingRate = "100000" + + #Custom Replicator Recipes + [general.replicator_recipes] + #The recipes added here will be added to the item replicator. Write using modid:registeredName#amount, # followed by the amount(not null or zero) of UU matter consumed. For example:["minecraft:stone#10","mekanism:basic_bin#100"] + itemReplicatorRecipe = [] + #The recipes added here will be added to the fluid replicator. Write using modid:registeredName#amount, # followed by the amount(not null or zero) of UU matter consumed. For example:["minecraft:water#10","mekanism:heavy_water#100"] + fluidReplicatorRecipe = [] + diff --git a/minecraft/config/MekanismMoreMachine/machine-storage.toml b/minecraft/config/MekanismMoreMachine/machine-storage.toml new file mode 100644 index 0000000..0c25542 --- /dev/null +++ b/minecraft/config/MekanismMoreMachine/machine-storage.toml @@ -0,0 +1,25 @@ + +#Machine Energy Storage Config. This config is synced from server to client. +[storage] + #Base energy storage (Joules). + recycler = "20000" + #Base energy storage (Joules). + plantingStation = "80000" + #Base energy storage (Joules). + cnc_stamper = "20000" + #Base energy storage (Joules). + cnc_lathe = "20000" + #Base energy storage (Joules). + cnc_rollingMill = "20000" + #Base energy storage (Joules). + ambientGasCollector = "40000" + #Base energy storage (Joules). + wirelessChargingStation = "10000000" + + #Settings for configuring Replicator Energy Storage + [storage.replicator] + #Base energy storage (Joules). + itemReplicator = "102400000" + #Base energy storage (Joules). + fluidReplicator = "102400000" + diff --git a/minecraft/config/MekanismMoreMachine/machine-usage.toml b/minecraft/config/MekanismMoreMachine/machine-usage.toml new file mode 100644 index 0000000..05bd6f9 --- /dev/null +++ b/minecraft/config/MekanismMoreMachine/machine-usage.toml @@ -0,0 +1,23 @@ + +#Machine Energy Usage Config. This config is synced from server to client. +[usage] + #Energy per operation tick (Joules). + recycler = "50" + #Energy per operation tick (Joules). + plantingStation = "200" + #Energy per operation tick (Joules). + cnc_stamper = "50" + #Energy per operation tick (Joules). + cnc_lathe = "50" + #Energy per operation tick (Joules). + cnc_rollingMill = "50" + #Energy per operation tick (Joules). + ambientGasCollector = "100" + + #Settings for configuring Replicator Energy Usage + [usage.replicator] + #Energy per operation tick (Joules). + itemReplicator = "102400" + #Energy per operation tick (Joules). + fluidReplicator = "102400" + diff --git a/minecraft/config/MekanismMoreMachine/tiers.toml b/minecraft/config/MekanismMoreMachine/tiers.toml new file mode 100644 index 0000000..cbbf3a8 --- /dev/null +++ b/minecraft/config/MekanismMoreMachine/tiers.toml @@ -0,0 +1,61 @@ + +#Tier Config. This config is synced from server to client. +[tier] + + #Large Chemical Tanks + [tier.large_chemical_tanks] + + #Mid Chemical Tanks + [tier.large_chemical_tanks.mid] + #Storage size of Basic mid chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + basicStorage = 160000 + #Output rate of Basic mid chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + basicOutput = 2500 + #Storage size of Advanced mid chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + advancedStorage = 640000 + #Output rate of Advanced mid chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + advancedOutput = 40000 + #Storage size of Elite mid chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + eliteStorage = 2560000 + #Output rate of Elite mid chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + eliteOutput = 320000 + #Storage size of Ultimate mid chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + ultimateStorage = 20480000 + #Output rate of Ultimate mid chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + ultimateOutput = 1280000 + + #Max Chemical Tanks + [tier.large_chemical_tanks.max] + #Storage size of Basic max chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + basicStorage = 256000 + #Output rate of Basic max chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + basicOutput = 4000 + #Storage size of Advanced max chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + advancedStorage = 1024000 + #Output rate of Advanced max chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + advancedOutput = 64000 + #Storage size of Elite max chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + eliteStorage = 4096000 + #Output rate of Elite max chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + eliteOutput = 512000 + #Storage size of Ultimate max chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + ultimateStorage = 32768000 + #Output rate of Ultimate max chemical tanks in mB. + #Range: 1 ~ 9223372036854775807 + ultimateOutput = 2048000 + diff --git a/minecraft/config/NoChatReports/NCR-Encryption.json b/minecraft/config/NoChatReports/NCR-Encryption.json index 47992ae..295af76 100644 --- a/minecraft/config/NoChatReports/NCR-Encryption.json +++ b/minecraft/config/NoChatReports/NCR-Encryption.json @@ -1,10 +1,10 @@ { - "skipWarning": true, + "skipWarning": false, "enableEncryption": false, "encryptPublic": true, "showEncryptionButton": true, "showEncryptionIndicators": true, - "encryptionKey": "wiXUhznxiUJ+Zy+U68nMqg\u003d\u003d", + "encryptionKey": "blfrngArk3chG6wzncOZ5A\u003d\u003d", "encryptionPassphrase": "", "algorithmName": "AES/CFB8+Base64", "encryptableCommands": [ diff --git a/minecraft/config/Obscuria/Data/aquamirae_cover.png b/minecraft/config/Obscuria/Data/aquamirae_cover.png new file mode 100644 index 0000000..9565a83 Binary files /dev/null and b/minecraft/config/Obscuria/Data/aquamirae_cover.png differ diff --git a/minecraft/config/Obscuria/Data/loot_journal_cover.png b/minecraft/config/Obscuria/Data/loot_journal_cover.png new file mode 100644 index 0000000..aa47867 Binary files /dev/null and b/minecraft/config/Obscuria/Data/loot_journal_cover.png differ diff --git a/minecraft/config/Obscuria/Data/obscure_api_cover.png b/minecraft/config/Obscuria/Data/obscure_api_cover.png new file mode 100644 index 0000000..84ea4d0 Binary files /dev/null and b/minecraft/config/Obscuria/Data/obscure_api_cover.png differ diff --git a/minecraft/config/Obscuria/accents-common.toml b/minecraft/config/Obscuria/accents-common.toml new file mode 100644 index 0000000..c7305eb --- /dev/null +++ b/minecraft/config/Obscuria/accents-common.toml @@ -0,0 +1,39 @@ +#Whether vanity items should have attribute modifiers. +modifiersEnabled = true + +[Head] + cakemanPlushie = ["minecraft:generic.luck addition:1"] + captainHat = ["minecraft:generic.knockback_resistance multiply:0.05"] + christmasHat = ["minecraft:generic.armor_toughness addition:0.5"] + cowboyHat = ["minecraft:generic.movement_speed multiply:0.05"] + crown = ["minecraft:generic.max_health multiply:0.05"] + dragonSkull = ["minecraft:generic.attack_damage multiply:0.05"] + horns = ["minecraft:generic.attack_knockback multiply:0.05"] + kasaHat = ["minecraft:generic.knockback_resistance multiply:0.05"] + overtopHat = ["minecraft:generic.luck addition:2"] + pickelhaube = ["minecraft:generic.armor addition:1"] + pirateHat = ["minecraft:generic.attack_damage multiply:0.05"] + pumpkinHat = ["minecraft:generic.follow_range multiply:0.05"] + skull = ["minecraft:generic.armor addition:1"] + sombrero = ["minecraft:generic.movement_speed multiply:0.05"] + strawHat = ["minecraft:generic.attack_speed multiply:0.05"] + topHat = ["minecraft:generic.luck addition:1"] + wizardHat = ["minecraft:generic.movement_speed multiply:0.025", "minecraft:generic.attack_damage multiply:0.025"] + kingMask = ["minecraft:generic.knockback_resistance addition:0.1"] + wideBrimHat = ["minecraft:generic.attack_damage multiply:0.05"] + tundraHood = ["minecraft:generic.armor addition:1"] + scarf = ["minecraft:generic.max_health multiply:0.05"] + +[Chest] + bandolier = ["minecraft:generic.attack_speed multiply:0.05"] + quiver = ["minecraft:generic.attack_speed multiply:0.025", "minecraft:generic.attack_damage multiply:0.025"] + sheathedKatana = ["minecraft:generic.attack_damage multiply:0.05"] + wings = ["minecraft:generic.movement_speed multiply:0.025", "minecraft:generic.knockback_resistance multiply:0.025"] + itemSatchel = ["minecraft:generic.attack_speed multiply:0.05"] + +[Legs] + holsteredBelt = ["minecraft:generic.attack_speed multiply:0.05"] + +[Feet] + hermesBoots = ["minecraft:generic.movement_speed multiply:0.05"] + diff --git a/minecraft/config/Obscuria/aquamirae-client.toml b/minecraft/config/Obscuria/aquamirae-client.toml new file mode 100644 index 0000000..73c8676 --- /dev/null +++ b/minecraft/config/Obscuria/aquamirae-client.toml @@ -0,0 +1,11 @@ + +[General] + renderThreeBoltHelmetOverlay = true + stylizedBossbar = true + +[IceMazeAmbient] + spawnParticles = true + playAmbientSounds = true + playBiomeMusic = true + playCorneliaMusic = true + diff --git a/minecraft/config/Obscuria/aquamirae-common.toml b/minecraft/config/Obscuria/aquamirae-common.toml new file mode 100644 index 0000000..6dc0d24 --- /dev/null +++ b/minecraft/config/Obscuria/aquamirae-common.toml @@ -0,0 +1,105 @@ + +[General] + chatNotifications = true + +[Mobs] + + [Mobs.GhostOfCaptainCornelia] + #Range: 0.0 ~ 10.0 + movementSpeed = 0.2 + #Range: 1.0 ~ 100000.0 + maxHealth = 200.0 + #Range: 0.0 ~ 1000.0 + armor = 16.0 + #Range: 1.0 ~ 1000.0 + attackDamage = 1.0 + #Range: 0.0 ~ 10.0 + knockbackResistance = 0.5 + #Range: 0.0 ~ 10.0 + attackKnockback = 2.0 + #Range: 1.0 ~ 256.0 + followRange = 128.0 + pullAndSpinTargets = true + #Range: 0 ~ 1000 + regenerationSkillUses = 2 + + [Mobs.Anglerfish] + #Range: 0.0 ~ 100.0 + swimSpeed = 3.0 + #Range: 1.0 ~ 100000.0 + maxHealth = 40.0 + #Range: 0.0 ~ 1000.0 + armor = 2.0 + #Range: 0.0 ~ 10.0 + knockbackResistance = 0.0 + #Range: 1.0 ~ 1000.0 + attackDamage = 6.0 + #Range: 0.0 ~ 10.0 + attackKnockback = 1.0 + #Range: 1.0 ~ 256.0 + followRange = 48.0 + + [Mobs.Maw] + #Range: 0.0 ~ 10.0 + movementSpeed = 0.2 + #Range: 0.0 ~ 100.0 + swimSpeed = 5.0 + #Range: 1.0 ~ 100000.0 + maxHealth = 20.0 + #Range: 0.0 ~ 1000.0 + armor = 0.0 + #Range: 0.0 ~ 10.0 + knockbackResistance = 0.0 + #Range: 1.0 ~ 1000.0 + attackDamage = 4.0 + #Range: 0.0 ~ 10.0 + attackKnockback = 0.3 + #Range: 1.0 ~ 256.0 + followRange = 24.0 + + [Mobs.TorturedSoul] + #Range: 0.0 ~ 10.0 + movementSpeed = 0.2 + #Range: 0.0 ~ 100.0 + swimSpeed = 3.0 + #Range: 1.0 ~ 100000.0 + maxHealth = 30.0 + #Range: 0.0 ~ 1000.0 + armor = 4.0 + #Range: 0.0 ~ 10.0 + knockbackResistance = 0.0 + #Range: 1.0 ~ 1000.0 + attackDamage = 7.0 + #Range: 0.0 ~ 10.0 + attackKnockback = 0.7 + #Range: 1.0 ~ 256.0 + followRange = 24.0 + + [Mobs.MotherOfTheMaze] + #Range: 0.0 ~ 100.0 + swimSpeed = 3.0 + #Range: 1.0 ~ 100000.0 + maxHealth = 100.0 + #Range: 0.0 ~ 1000.0 + armor = 6.0 + #Range: 0.0 ~ 10.0 + knockbackResistance = 0.2 + #Range: 1.0 ~ 1000.0 + attackDamage = 5.0 + #Range: 0.0 ~ 10.0 + attackKnockback = 0.5 + #Range: 1.0 ~ 256.0 + followRange = 128.0 + + [Mobs.Eel] + #Range: 1.0 ~ 100000.0 + maxHealth = 180.0 + #Range: 0.0 ~ 1000.0 + armor = 20.0 + #Range: 1.0 ~ 1000.0 + attackDamage = 8.0 + #Range: 0.0 ~ 10.0 + attackKnockback = 2.0 + #Range: 1.0 ~ 256.0 + followRange = 32.0 + diff --git a/minecraft/config/Obscuria/obscure-api-client.toml b/minecraft/config/Obscuria/obscure-api-client.toml new file mode 100644 index 0000000..b464d53 --- /dev/null +++ b/minecraft/config/Obscuria/obscure-api-client.toml @@ -0,0 +1,15 @@ + +[General] + #Allowed Values: DISPLAY_ALL, DISPLAY_MY, DISPLAY_OTHERS, HIDE + "Pet Mode" = "DISPLAY_ALL" + #Range: -1024 ~ 1024 + "Mods Button Offset X" = 0 + #Range: -1024 ~ 1024 + "Mods Button Offset Y" = 0 + +[Tooltips] + #Display food properties in tooltips + "Food Icons" = true + #Display equipment attributes in tooltips + "Equipment Icons" = true + diff --git a/minecraft/config/Plushie_Buddies-Common.toml b/minecraft/config/Plushie_Buddies-Common.toml new file mode 100644 index 0000000..7922223 --- /dev/null +++ b/minecraft/config/Plushie_Buddies-Common.toml @@ -0,0 +1,11 @@ + +["Configs for Plushie Buddies Mod"] + #How many emeralds do plushies cost + #Range: 1 ~ 128 + "Emerald count" = 10 + #What trader level sells plushies + #Range: 1 ~ 5 + "Trader level" = 5 + #'true' or 'false' for plushies being sold by traders + "If enableded" = true + diff --git a/minecraft/config/QuantifiedAPI/cache/tools/vulkanProbe/lib/lwjgl-3.3.1-natives-windows.jar b/minecraft/config/QuantifiedAPI/cache/tools/vulkanProbe/lib/lwjgl-3.3.1-natives-windows.jar new file mode 100644 index 0000000..11b7d35 Binary files /dev/null and b/minecraft/config/QuantifiedAPI/cache/tools/vulkanProbe/lib/lwjgl-3.3.1-natives-windows.jar differ diff --git a/minecraft/config/QuantifiedAPI/cache/tools/vulkanProbe/lib/lwjgl-3.3.1.jar b/minecraft/config/QuantifiedAPI/cache/tools/vulkanProbe/lib/lwjgl-3.3.1.jar new file mode 100644 index 0000000..2d84fdc Binary files /dev/null and b/minecraft/config/QuantifiedAPI/cache/tools/vulkanProbe/lib/lwjgl-3.3.1.jar differ diff --git a/minecraft/config/QuantifiedAPI/cache/tools/vulkanProbe/quantified-vulkan-probe.jar b/minecraft/config/QuantifiedAPI/cache/tools/vulkanProbe/quantified-vulkan-probe.jar new file mode 100644 index 0000000..be30602 Binary files /dev/null and b/minecraft/config/QuantifiedAPI/cache/tools/vulkanProbe/quantified-vulkan-probe.jar differ diff --git a/minecraft/config/QuantifiedAPI/quantified_config.json b/minecraft/config/QuantifiedAPI/quantified_config.json new file mode 100644 index 0000000..d27c5fc --- /dev/null +++ b/minecraft/config/QuantifiedAPI/quantified_config.json @@ -0,0 +1,142 @@ +/* +============================================== +| Quantified API - Configuration | +| Author: Admany | +| All Rights Reserved | +============================================== +| This config file auto-updates itself if | +| there are config changes. You do NOT need | +| to delete it for new features or updates! | +============================================== +*/ + +{ + "_comment": "Edit this file to configure Quantified API. For documentation, visit: https://github.com/Admany/Quantified-API", + + + // === General Settings === + // Write Quantified API activity into the Minecraft log / console so you can follow along. + "logToConsole": true, + // Choose how chatty the logger should be (TRACE, DEBUG, INFO, WARN, ERROR). + "logLevel": "INFO", + + // === Networking Configuration === + // Allow the API to talk to remote services or other mods. + "enableNetworking": true, + // How long to wait (in ms) before a network request is considered dead. + "networkTimeoutMs": 30000, + + // === GPU / Compute === + // Let Quantified push compatible workloads onto the GPU whenever possible. + "enableGpuAcceleration": true, + // Choose how Quantified routes generic GPU work: Vulkan-first, OpenCL-first, strict backend requirements, or CPU-only. + "preferredGpuBackend": "VULKAN_PREFERRED", + // Select which Vulkan device to use. Use auto to let Quantified pick the best Vulkan compute GPU. + "vulkanDeviceId": "auto", + // Select which OpenCL device to use. Use auto to let Quantified pick the fastest GPU. + "openclDeviceId": "auto", + // Always route compute through OpenCL even when the CPU would normally be chosen. + "openclForced": false, + // Emit detailed OpenCL/GPU traces to help troubleshoot rendering or compute issues. + "gpuDebugLogging": false, + + // === Parallel Execution === + // Upper bound for threads dedicated to the parallel compute pool. + "parallelMaxThreads": 32, + // Maximum number of queued parallel slices across all mods. + "parallelQueueLimit": 4096, + // Per-mod ceiling for simultaneously running slices. + "parallelMaxSlicesPerMod": 4096, + // Default failure policy for parallel batches (FAIL_FAST or BEST_EFFORT). + "parallelFailurePolicy": "FAIL_FAST", + + // === Task Processing === + // Maximum number of queued tasks before new ones are rejected. + "taskQueueSize": 1000, + // Upper limit (in ms) for how long a single task may run. + "taskTimeoutMs": 60000, + + // === Developer Features === + // Unlock developer-only UI elements and tooling. + "developerMode": true, + // Record execution timeline samples so you can scrub through performance history. + "developerTimeline": true, + // Keep telemetry frames so you can replay them later for diagnostics. + "developerReplay": true, + // Expose the stress test harness that hammers the scheduler. + "developerStressTest": false, + // Highlight verbose or busy mods directly in diagnostics. + "developerModSpotlight": true, + + // === Developer Dashboard === + // Serve the browser-based dashboard for realtime control. + "developerDashboard": false, + // TCP port that the dashboard server binds to. + "developerDashboardPort": 8765, + // Interface/IP address the dashboard listens on (127.0.0.1 keeps it local). + "developerDashboardHost": "127.0.0.1", + // Serve the dashboard over HTTPS using your supplied keystore. + "developerDashboardHttps": false, + // Require credentials before anyone can access the dashboard. + "developerDashboardAuth": false, + // Username used to authenticate when dashboard login is enabled. + "developerDashboardUsername": "", + // Password paired with the username above. + "developerDashboardPassword": "", + // Path to the JKS/PKCS12 keystore used to enable HTTPS. + "developerDashboardKeystorePath": "", + // Password required to unlock the HTTPS keystore. + "developerDashboardKeystorePassword": "", + // Idle minutes before an authenticated dashboard session expires. + "dashboardSessionTimeoutMinutes": 30, + + // === Stress Testing === + // Preset used whenever the stress tester spins up. + "developerStressProfile": "balanced", + // How long each CPU stress pass should run (milliseconds). + "stressTestCpuChunkMs": 50, + + // === Monitoring & Metrics === + // Track runtime metrics so you can review history later. + "enableMetrics": true, + // Seconds between automatic metric samples. + "metricsIntervalSeconds": 30, + // Write collected metrics to JSON files on disk. + "exportMetricsToFile": false, + // Where exported metric files should be saved. + "metricsExportPath": "config/QuantifiedAPI/metrics/", + // How many hours of metrics the game should remember. + "maxMetricsHistoryHours": 24, + + // === Security & Safety === + // Run extra validation to avoid unsafe or malicious workloads. + "enableSecurityChecks": true, + // Double-check each task payload before it runs. + "validateTaskInputs": true, + // Wrap risky system or process calls in a safer sandbox. + "sandboxExternalCalls": true, + + // === Fixes === + // Log JVM garbage-collection hints to help with tuning. + "enableGcHints": true, + + // === Debug Settings === + // Enable verbose debug logging globally. + "debug": false, + // Dump timing breakdowns for core operations. + "debugShowTimings": false, + // Log thread creation/destruction details. + "debugShowThreading": false, + // Mirror debug output to disk. + "debugSaveToFile": false, + // Path to the debug log file. + "debugLogFile": "config/QuantifiedAPI/debug.log", + // Max size (in MB) before the debug log rolls. + "debugMaxLogSizeMb": 10, + + // === Experimental Features === + // Unlock bleeding-edge features that may change or break. + "enableExperimentalFeatures": false, + + "_experimental": "Some features are experimental. Use with caution!" +} diff --git a/minecraft/config/RPG-HUD b/minecraft/config/RPG-HUD new file mode 100644 index 0000000..f3b2ad8 --- /dev/null +++ b/minecraft/config/RPG-HUD @@ -0,0 +1,100 @@ +Version=1.0 +H:hud_type=vanilla +B:enable_button_tooltip=true +B:enable_config_button=false +B:reduce_size=false +B:show_armor=true +B:show_arrow_count=false +B:show_item_durability=false +B:show_block_count=false +B:show_durability_bar=true +P:armor_det_position=0_60 +P:arrow_det_position=0_0 +P:item_det_position=0_0 +B:show_numbers_health=true +B:health_percentage=false +C:color_health=12648448 +C:color_absorption=16745472 +C:color_poison=10748144 +C:color_wither=2697513 +P:health_position=0_0 +B:show_numbers_food=true +B:hunger_percentage=false +B:show_hunger_preview=true +C:color_food=3916288 +C:color_hunger=10199143 +P:hunger_position=0_0 +B:show_numbers_experience=true +B:experience_percentage=false +C:color_experience=15658496 +P:experience_position=0_0 +B:mount_health_percentage=false +B:enable_clock=false +B:enable_clock_color=true +B:enable_immersive_clock=false +S:clock_time_format=time.24 +P:clock_position=0_0 +B:enable_compass=false +B:enable_compass_color=true +B:enable_immersive_compass=true +B:enable_compass_coordinates=false +B:invert_compass=false +P:compass_position=0_269 +B:render_player_face=true +P:widget_position=0_0 +P:face_position=0_0 +B:enable_fps=false +P:fps_position=0_0 +C:color_fps=9079434 +D:fps_scale=0.5 +B:enable_system_time=false +B:enable_system_time_background=true +P:system_time_position=0_0 +C:color_system_time=9079434 +D:system_time_scale=0.5 +B:limit_jump_bar=true +C:color_jump_bar=9079434 +P:jump_bar_position=0_0 +B:enable_entity_inspect=false +B:show_entity_armor=true +P:inspector_position=0_0 +C:color_air=23490 +P:air_position=0_0 +B:status_vertical=false +B:status_time=true +P:pickup_position=0_0 +D:status_scale=1.0 +P:mount_health_position=0_0 +P:hotbar_position=0_6 +P:level_position=0_0 +P:armor_position=0_-2 +B:render_vanilla_armor=false +B:prevent_event_armor=false +B:prevent_element_render_armor=false +B:render_vanilla_hotbar=false +B:prevent_event_hotbar=false +B:prevent_element_render_hotbar=false +B:render_vanilla_air=false +B:prevent_event_air=false +B:prevent_element_render_air=false +B:render_vanilla_health=false +B:prevent_event_health=false +B:prevent_element_render_health=false +B:render_vanilla_food=false +B:prevent_event_food=false +B:prevent_element_render_food=false +B:render_vanilla_experience=true +B:prevent_event_experience=false +B:prevent_element_render_experience=false +B:render_vanilla_level=false +B:prevent_event_level=false +B:prevent_element_render_level=false +B:render_vanilla_health_mount=false +B:prevent_event_health_mount=false +B:prevent_element_render_health_mount=false +B:render_vanilla_jump_bar=false +B:prevent_event_jump_bar=false +B:prevent_element_render_jump_bar=false +B:render_vanilla_status_effects=false +B:prevent_event_status_effects=false +B:prevent_element_render_status_effects=false diff --git a/minecraft/config/Undead_mobs.toml b/minecraft/config/Undead_mobs.toml new file mode 100644 index 0000000..8ad92b6 --- /dev/null +++ b/minecraft/config/Undead_mobs.toml @@ -0,0 +1,95 @@ + +[pregnantbabies] + #Maximum number of babies a pregnant could spawn + "Maximum numbers of summonings pregnant can spawn" = 10.0 + #disable the ability entirely + "Disable spawning of summonings" = false + #Example: 80 meaning 20 percent of sucker spawing and 80 of bidys. (by setting to 100 no sucker willl spawn) + "Bidy spawning percentage pool" = 80.0 + +[hunter] + #Can also be turned off with griefing gamemode + "Allows hunter to destroy fence or doors" = true + "Allows hunter to hunt animals" = true + "Allows hunter to life steal" = true + #Hunters will usaully eat any dropped meat they find + "Allows hunter to eat dropped food" = true + #hunter will usaully fly and despawn from sunlight + "Hunter soar off from sunlight" = true + +[bomber] + #bomber explosion radius + "Bomber explosion in block area" = 9.0 + #bomber explosion damage + "Explosion impact damage" = 1.0 + #bomber explosion goo effect duration (In ticks: 20 ticks = 1 second) + "Explosion goo duration" = 400.0 + +[clogger] + #Clogger will usaully not tolererate player cheesing in a fight + "Will clogger dig away(despawn) from cowardice enemy?" = true + +[suckers] + #To disable/enable this machanic + "allow chances for sucker to spawn with something riding on them" = true + #Per sucker, what at what percentage it would spawn with something + "chances for sucker to have mob spawn riding on them, upon spawning" = 15.0 + #Example: 80 meaning 20 percent of baby zombie spawning and 80 of bidys. (by setting to 100 no baby zombie will spawn) + "Bidy spawning percentage pool" = 80.0 + +["Big sucker"] + #default at 5 + "How many suckers spawn per Big Sucker?" = 5.0 + +["The Wolf"] + #They usaully spawn blade like mobs to attack target + "Can the wolf spawn stroms" = true + #Somehow it cant be chnaged via attributes so here it is. (exclusively for this mob) + "The wolf swinging attack Damage" = 4.0 + +["The Lechery"] + #This has to do with world ore generation + "Do Lechery spawn as ore blocks" = true + +["The Dungeon"] + #Can The Dungeon mob and its structures spawn in thiss world? + "Enable or Disabling dungeons" = true + +[bidy] + #bidy explosion damage + "Explosion impact damage" = 4.5 + #bidy explosion radius. + "Explosion radius" = 4.0 + #bidy goo explosion effect durarion (In ticks: 20 ticks = 1 second) + "Explosion goo duration" = 80.0 + +["The Possesive"] + #Can The Posessive mob and its structures spawn in thiss world? + "Enable or Disabling Ocean banks" = true + +["The Rabidus"] + #Per hit + "Change of inflicting rabies" = 0.12 + +[wheezer] + #amount of hit to pop it's pore rendering its ability useless + "Wheezer spores hitpoints" = 15.0 + #how long the fumes stay in taget's body (in ticks) + "Wheezer spore duration" = 300.0 + +["The Ordure"] + #explosion + "Ordure death explosion damage" = 30.0 + +["Skeeper/Somnolence"] + #(In ticks: 20 ticks = 1 second) + "how long typnomiasis last in ticks?" = 100.0 + #(In ticks: 20 ticks = 1 second) + "how long sleepi walking last in ticks?" = 100.0 + #Self explanatory + "how much Somnolences spawns on projectile?" = 8.0 + +[advancements] + #Turn thsi false if you have Advancement... No More !!! mod installed + "enable advancements" = true + diff --git a/minecraft/config/Weather2/Debug.toml b/minecraft/config/Weather2/Debug.toml new file mode 100644 index 0000000..650bca9 --- /dev/null +++ b/minecraft/config/Weather2/Debug.toml @@ -0,0 +1,11 @@ + +#General mod settings +[general] + #- + #Range: > -2147483648 + Particle_Reset_Frequency = 0 + #- + Particle_engine_render = true + #- + Particle_engine_tick = true + diff --git a/minecraft/config/Weather2/Misc.toml b/minecraft/config/Weather2/Misc.toml new file mode 100644 index 0000000..2ea0260 --- /dev/null +++ b/minecraft/config/Weather2/Misc.toml @@ -0,0 +1,58 @@ + +#General mod settings +[general] + #- + #Range: > -2147483648 + Misc_simBoxRadiusCutoff = 1124 + #- + #Range: > -2147483648 + Misc_simBoxRadiusSpawn = 1024 + #If true, lets server side do vanilla weather rules, weather2 will only make storms when server side says 'rain' is on + overcastMode = false + #Used if overcastMode is off, 1 = lock weather on, 0 = lock weather off, -1 = dont lock anything, let server do whatever + #Range: > -2147483648 + lockServerWeatherMode = 0 + #How many ticks between cloud particle spawning + #Range: > -2147483648 + Cloud_ParticleSpawnDelay = 2 + #Distance between cloud formations, not particles, this includes invisible cloudless formations used during partial cloud coverage + #Range: > -2147483648 + Cloud_Formation_MinDistBetweenSpawned = 300 + #For a second layer of passive non storm progressing cloudOption + Cloud_Layer1_Enable = false + #- + #Range: > -2147483648 + Cloud_Layer0_Height = 264 + #- + #Range: > -2147483648 + Cloud_Layer1_Height = 414 + #Not used at the moment + #Range: > -2147483648 + Cloud_Layer2_Height = 564 + #How much to randomly change cloud coverage % amount, performed every 10 seconds + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + Cloud_Coverage_Random_Change_Amount = 0.05 + #Minimum percent of cloud coverage, supports negative for extended cloudless sky coverage + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + Cloud_Coverage_Min_Percent = 0.0 + #Maximum percent of cloud coverage, supports over 100% for extended full cloud sky coverage + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + Cloud_Coverage_Max_Percent = 100.0 + #- + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + sirenActivateDistance = 256.0 + #- + Dimension_List_Weather = "minecraft:overworld, tropicraft:tropicraft" + #- + Dimension_List_Clouds = "minecraft:overworld, tropicraft:tropicraft" + #- + Dimension_List_Storms = "minecraft:overworld, tropicraft:tropicraft" + #- + Dimension_List_WindEffects = "minecraft:overworld, tropicraft:tropicraft" + #- + blockBreakingInvokesCancellableEvent = false + #Server and client side, Locks down the mod to only do wind, leaves, foliage shader if on, etc. No weather systems, turns overcast mode on + Aesthetic_Only_Mode = false + #Runs regardless of Aesthetic_Only_Mode, makes snowstorms possible everywhere + Winter_Wonderland = false + diff --git a/minecraft/config/Weather2/Particle.toml b/minecraft/config/Weather2/Particle.toml new file mode 100644 index 0000000..529e50f --- /dev/null +++ b/minecraft/config/Weather2/Particle.toml @@ -0,0 +1,17 @@ + +#General mod settings +[general] + #Adjust amount of precipitation based particles, works as a multiplier + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + Precipitation_Particle_effect_rate = 0.7 + #Adjust amount of all weather2 based particles, works as a multiplier + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + Particle_effect_rate = 1.0 + #If true, uses vanilla rain/snow non particle precipitation + Particle_vanilla_precipitation = false + #If set to false, particles are spawned in using the vanilla particle renderer, may cause issues, performance seems worse + Particle_engine_weather2 = true + #Extra flying block particles to spawn when the tornado rips up a block + #Range: > -2147483648 + Particle_Tornado_extraParticleCubes = 2 + diff --git a/minecraft/config/Weather2/Sand.toml b/minecraft/config/Weather2/Sand.toml new file mode 100644 index 0000000..5025363 --- /dev/null +++ b/minecraft/config/Weather2/Sand.toml @@ -0,0 +1,33 @@ + +#General mod settings +[general] + #Takes the sand out of sandwiches + Storm_NoSandstorms = false + #- + Sandstorm_UseGlobalServerRate = false + #- + #Range: > -2147483648 + Sandstorm_OddsTo1 = 30 + #Time between sandstorms for either each player or entire server depending on if global rate is on, default: 3 client days + #Range: > -2147483648 + Sandstorm_TimeBetweenInTicks = 72000 + #Amount of game ticks between sand buildup iterations, keep it high to prevent client side chunk tick spam that destroys FPS + #Range: > -2147483648 + Sandstorm_Sand_Buildup_TickRate = 40 + #Base amount of loops done per iteration, scaled by the sandstorms intensity (value given here is the max possible) + #Range: > -2147483648 + Sandstorm_Sand_Buildup_LoopAmountBase = 800 + #Max height of sand allowed to buildup against something, higher = things get more buried over time + #Range: > -2147483648 + Sandstorm_Sand_Block_Max_Height = 3 + #Allow layered sand blocks to buildup outside deserty biomes where sandstorm is + Sandstorm_Sand_Buildup_AllowOutsideDesert = true + #- + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + Sandstorm_Particle_Dust_effect_rate = 0.6 + #- + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + Sandstorm_Particle_Debris_effect_rate = 0.6 + #- + Sandstorm_Siren_PleaseNoDarude = false + diff --git a/minecraft/config/Weather2/Snow.toml b/minecraft/config/Weather2/Snow.toml new file mode 100644 index 0000000..c12bba1 --- /dev/null +++ b/minecraft/config/Weather2/Snow.toml @@ -0,0 +1,25 @@ + +#General mod settings +[general] + #- + Storm_NoSnowstorms = false + #- + Snowstorm_UseGlobalServerRate = false + #- + #Range: > -2147483648 + Snowstorm_OddsTo1 = 30 + #Time between snowstorms for either each player or entire server depending on if global rate is on, default: 3 client days + #Range: > -2147483648 + Snowstorm_TimeBetweenInTicks = 72000 + #Amount of game ticks between snow buildup iterations, keep it high to prevent client side chunk tick spam that destroys FPS + #Range: > -2147483648 + Snowstorm_Snow_Buildup_TickRate = 40 + #Base amount of loops done per iteration, scaled by the snowstorms intensity (value given here is the max possible), eg: at max storm intensity, every 40th tick, itll try to build up snow in 800 places around the storm + #Range: > -2147483648 + Snowstorm_Snow_Buildup_LoopAmountBase = 800 + #Max height of snow allowed to buildup against something, higher = things get more buried over time + #Range: > -2147483648 + Snowstorm_Snow_Block_Max_Height = 5 + #Allow layered snow blocks to buildup outside cold biomes where snowstorm is + Snowstorm_Snow_Buildup_AllowOutsideColdBiomes = true + diff --git a/minecraft/config/Weather2/Sound.toml b/minecraft/config/Weather2/Sound.toml new file mode 100644 index 0000000..e0b1476 --- /dev/null +++ b/minecraft/config/Weather2/Sound.toml @@ -0,0 +1,19 @@ + +#General mod settings +[general] + # + #Range: 0.0 ~ 5.0 + leavesVolume = 0.0 + # + #Range: 0.0 ~ 5.0 + tornadoWindVolume = 1.0 + # + #Range: 0.0 ~ 5.0 + tornadoDamageVolume = 1.0 + # + #Range: 0.0 ~ 5.0 + windyStormVolume = 1.0 + # + #Range: 0.0 ~ 5.0 + sirenVolume = 1.0 + diff --git a/minecraft/config/Weather2/Storm.toml b/minecraft/config/Weather2/Storm.toml new file mode 100644 index 0000000..dc4b38f --- /dev/null +++ b/minecraft/config/Weather2/Storm.toml @@ -0,0 +1,153 @@ + +#General mod settings +[general] + #- + #Range: > -2147483648 + Storm_OddsTo1OfHighWindWaterSpout = 150 + #- + Storm_FlyingBlocksHurt = true + #- + #Range: > -2147483648 + Storm_MaxPerPlayerPerLayer = 20 + #- + #Range: > -2147483648 + Storm_Deadly_CollideDistance = 128 + #- + #Range: > -2147483648 + Storm_LightningStrikeBaseValueOddsTo1 = 200 + #- + Storm_NoRainVisual = false + #- + #Range: > -2147483648 + Storm_MaxRadius = 300 + #- + #Range: > -2147483648 + Storm_AllTypes_TickRateDelay = 60 + #- + #Range: > -2147483648 + Storm_Rain_WaterBuildUpRate = 10 + #- + #Range: > -2147483648 + Storm_Rain_WaterSpendRate = 3 + #- + #Range: > -2147483648 + Storm_Rain_WaterBuildUpOddsTo1FromSource = 15 + #- + #Range: > -2147483648 + Storm_Rain_WaterBuildUpOddsTo1FromNothing = 100 + #- + #Range: > -2147483648 + Storm_Rain_WaterBuildUpOddsTo1FromOvercastRaining = 30 + #- + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + Storm_TemperatureAdjustRate = 0.1 + #- + #Range: > -2147483648 + Storm_HailPerTick = 10 + #- + #Range: > -2147483648 + Storm_OddsTo1OfOceanBasedStorm = 300 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_HighWind = 90 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_Hail = 80 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_F0_Tornado = 70 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_C0_Cyclone = 70 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_F1_Tornado = 50 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_C1_Cyclone = 50 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_F2_Tornado = 40 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_C2_Cyclone = 40 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_F3_Tornado = 30 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_C3_Cyclone = 30 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_F4_Tornado = 20 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_C4_Cyclone = 20 + #- + #Range: > -2147483648 + Storm_PercentChanceOf_F5_Tornado = 10 + #Also known as full blown hurricane + #Range: > -2147483648 + Storm_PercentChanceOf_C5_Cyclone = 10 + #- + #Range: > -2147483648 + Storm_ParticleSpawnDelay = 3 + #- + #Range: > -2147483648 + Player_Storm_Deadly_OddsTo1 = 30 + #- + #Range: > -2147483648 + Player_Storm_Deadly_TimeBetweenInTicks = 72000 + #- + Server_Storm_Deadly_UseGlobalRate = true + #Used if Server_Storm_Deadly_UseGlobalRate is on, replaces use of Player_Storm_Deadly_OddsTo1 + #Range: > -2147483648 + Server_Storm_Deadly_OddsTo1 = 30 + #Used if Server_Storm_Deadly_UseGlobalRate is on, replaces use of Player_Storm_Deadly_TimeBetweenInTicks + #Range: > -2147483648 + Server_Storm_Deadly_TimeBetweenInTicks = 72000 + #For areas without the right mix of hot and cold biomes + #Range: > -2147483648 + Player_Storm_Deadly_OddsTo1_Land_Based = 1200 + #For areas without the right mix of hot and cold biomes + #Range: > -2147483648 + Player_Storm_Deadly_TimeBetweenInTicks_Land_Based = 240000 + #Used if Server_Storm_Deadly_UseGlobalRate is on, for areas without the right mix of hot and cold biomes + #Range: > -2147483648 + Server_Storm_Deadly_OddsTo1_Land_Based = 1200 + #Used if Server_Storm_Deadly_UseGlobalRate is on, for areas without the right mix of hot and cold biomes + #Range: > -2147483648 + Server_Storm_Deadly_TimeBetweenInTicks_Land_Based = 240000 + #- + preventServerThunderstorms = true + #- + #Range: > -2147483648 + Lightning_OddsTo1OfFire = 20 + #- + #Range: > -2147483648 + Lightning_lifetimeOfFire = 3 + #- + #Range: > -2147483648 + Lightning_DistanceToPlayerForEffects = 256 + #- + Lightning_StartsFires = false + #- + #Range: > -2147483648 + Storm_Deflector_RadiusOfStormRemoval = 150 + #The minimum stage a storm has to be at to be removed, stages are: 0 = anything, 1 = thunder, 2 = high wind, 3 = hail, 4 = F0/C0, 5 = F1/C1, 6 = F2/C2, 7 = F3/C3, 8 = F4/C4, 9 = F5/C5 + #Range: > -2147483648 + Storm_Deflector_MinStageRemove = 1 + #- + Storm_Deflector_RemoveRainstorms = false + #- + Storm_Deflector_RemoveSandstorms = true + #- + #Range: > -2147483648 + Storm_Rain_Overcast_OddsTo1 = 50 + #- + #Range: > -2147483648 + Storm_Rain_OddsTo1 = 150 + #How often in ticks, a rainstorm updates its list of entities under the rainstorm to extinguish. Extinguishes entities under rainclouds when globalOvercast is off. Set to 0 or less to disable + #Range: > -2147483648 + Storm_Rain_TrackAndExtinguishEntitiesRate = 200 + diff --git a/minecraft/config/Weather2/Tornado.toml b/minecraft/config/Weather2/Tornado.toml new file mode 100644 index 0000000..f2ab47f --- /dev/null +++ b/minecraft/config/Weather2/Tornado.toml @@ -0,0 +1,46 @@ + +#General mod settings +[general] + #Prevents tearing up of dirt, grass, sand and logs, overrides strength based grabbing + Storm_Tornado_RefinedGrabRules = true + #Makes weather boring! or peacefull? + Storm_NoTornadosOrCyclones = false + #Grab player or not + Storm_Tornado_grabPlayer = true + #Prevent grabbing of non players + Storm_Tornado_grabPlayersOnly = false + #Grab hostile mobs, overridden by Storm_Tornado_grabPlayersOnly + Storm_Tornado_grabMobs = true + #Grab animals, overridden by Storm_Tornado_grabPlayersOnly + Storm_Tornado_grabAnimals = false + #Grab villagers, overridden by Storm_Tornado_grabPlayersOnly + Storm_Tornado_grabVillagers = false + #Tear up blocks from the ground based on conditions defined + Storm_Tornado_grabBlocks = false + #Grab entity items, overridden by Storm_Tornado_grabPlayersOnly + Storm_Tornado_grabItems = false + #Grab blocks based on how well a diamond axe can mine the block, so mostly wooden blocks + Storm_Tornado_GrabCond_StrengthGrabbing = true + #Use a list of blocks or block tags instead of grabbing based on calculated strength of block, if true this overrides StrengthGrabbing and RefinedGrabRules + Storm_Tornado_GrabCond_List = false + #Treat block grab list as a blacklist instead of whitelist + Storm_Tornado_GrabListBlacklistMode = true + #Enable Storm_Tornado_GrabCond_List to use, add registered block names or block tags to list, for tags, indicate with #, use commas to separate values, if namespace missing, 'minecraft:' is automatically used + Storm_Tornado_GrabList = "#fences, #minecraft:fence_gates, #wooden_doors, #wooden_stairs, #wooden_slabs, #flowers, #planks, #wool, #wooden_trapdoors, #wooden_pressure_plates, #cave_vines, #saplings, #banners, #leaves, #small_flowers, #beds, #tall_flowers, #flowers, #candles, #wall_signs, #signs, #fire, #campfires, #replaceable_plants, #wall_post_override" + #Max amount of flying entity blocks allowed active, if it goes over this, it stops turning destroyed blocks into entities + #Range: > -2147483648 + Storm_Tornado_maxFlyingEntityBlocks = 200 + #- + #Range: > -2147483648 + Storm_Tornado_maxBlocksGrabbedPerTick = 5 + #Make tornados initial heading aimed towards closest player + Storm_Tornado_aimAtPlayerOnSpawn = true + #Accuracy of tornado aimed at player + #Range: > -2147483648 + Storm_Tornado_aimAtPlayerAngleVariance = 5 + #Extra bit of grab angle for the tornado, tweak for different grab shapes, higher = tigher grab, lower = wider grab, might toss them away + #Range: > -2147483648 + Storm_Tornado_extraGrabAngle = 20 + #- + Storm_Tornado_fallDamage = true + diff --git a/minecraft/config/Weather2/Wind.toml b/minecraft/config/Weather2/Wind.toml new file mode 100644 index 0000000..bf6cdf0 --- /dev/null +++ b/minecraft/config/Weather2/Wind.toml @@ -0,0 +1,45 @@ + +#General mod settings +[general] + #- + Misc_windOn = true + #- + Wind_LowWindEvents = true + #- + Wind_HighWindEvents = true + #- + Wind_UsePerlinNoise = false + #- + #Range: > -2147483648 + lowWindTimerEnableAmountBase = 2400 + #- + #Range: > -2147483648 + lowWindTimerEnableAmountRnd = 12000 + #- + #Range: > -2147483648 + lowWindOddsTo1 = 4000 + #- + #Range: > -2147483648 + highWindTimerEnableAmountBase = 2400 + #- + #Range: > -2147483648 + highWindTimerEnableAmountRnd = 12000 + #- + #Range: > -2147483648 + highWindOddsTo1 = 8000 + #- + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + globalWindAngleChangeAmountRate = 1.0 + #- + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + windSpeedMin = 1.0E-5 + #- + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + windSpeedMax = 1.0 + #Min wind speed to maintain if its raining with global overcast mode on, overrides low wind events and windSpeedMin + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + windSpeedMinGlobalOvercastRaining = 0.01 + #- + #Range: > -2147483648 + Wind_Turbine_FE_Generated_Per_Tick = 10 + diff --git a/minecraft/config/actuallyadditions-common.toml b/minecraft/config/actuallyadditions-common.toml new file mode 100644 index 0000000..09d75b0 --- /dev/null +++ b/minecraft/config/actuallyadditions-common.toml @@ -0,0 +1,90 @@ + +#Everything else +[other] + #If true, Solidified Experience will always spawn orbs, even for regular players. + solidXPOrbs = false + #If true, Actually Additions Checks for updates on World Load. + doUpdateCheck = true + #If true, Actually Additions' Update Checker searches for updates for the Minecraft Version you currently play on. + versionSpecificUpdateChecker = true + #If true, Mobs will randomly drop solidified XP occasionally. + doXpDrops = true + #If true, Cats drop Hairy Balls Occasionally. + doCatDrops = true + #Should Bat wings drop from Bats? + doBatDrops = true + #Should seeds (coffee beans, rice, flax, canola) drop from breaking grss? + doSeedsDrops = true + #The 1/n drop chance, per tick, for a fur ball to be dropped. + #Range: > 1 + furDropChance = 5000 + #If true, worms will drop from tilling the soil. + tillingWorms = true + #The amount of ticks it takes for a worm to die. When at 0 ticks, it will not die. + #Range: 0 ~ 10000000 + wormDeathTime = 0 + #Show Advanced Item Info when holding Control on every Item. + advancedInfo = true + #Show the 'Press Control for more Info'-Text on Item Tooltips + advancedInfoTooltips = true + #If true, the booklet should be given to the player when he first crafts something from the Mod + giveBookletOnFirstCraft = true + #Should Actually Additions Loot generate in dungeons? + villageAndDungeonLoot = true + #Should right-clicking a bowl on water blocks create a water bowl? + waterBowl = true + #Should the water bowl spill if you don't sneak while using it? + waterBowlSpilling = true + #Should Tiny Coal and Tiny Charcoal be craftable + tinyCoal = true + #Turn this on to make recipes for items from the mod really hard. (This is a joke feature poking fun at the whole FTB Infinity Expert Mode style of playing. You shouldn't really turn this on as it makes the mod completely unplayable.) + superDuperHardRecipes = false + #If you want to be really boring and lame, you can turn on this setting to disable colored names on Actually Additions items. Because why would you want things to look pretty anyways, right? + noColoredItemNames = false + #define the item used to configure Redstone Mode + redstoneConfigurator = "minecraft:redstone_torch" + #define the item used to configure Direction in laser relays + relayConfigurator = "minecraft:compass" + +#Machine Settings +[machineSettings] + #The size of the farmer's farming area. Default is 9x9, must be an odd number. + #Range: > 1 + farmerArea = 9 + #The amount of power the atomic reconstructor can store. + #Range: > 300000 + reconstructorPower = 300000 + #The amount of power the oil generator can transfer per tick. + #Range: > 100 + oilGeneratorTransfer = 500 + #The energy use of the Atomic Reconstructor's Mining Lens. + #Range: > 1 + minerLensEnergy = 60000 + #If Energy Laser Relays should have energy loss. + laserRelayLoss = true + #The cooldown between two generation cycles of the Leaf Generator, in ticks + #Range: > 1 + leafGeneratorCooldown = 5 + #The Leaf Generator's Energy Production in CF/Leaf + #Range: > 1 + leafGeneratorCPPerLeaf = 300 + #The size of the Leaf Generator's harvesting area. Default is 7x7x7, must be an odd number. + #Range: > 1 + leafGeneratorArea = 7 + #By default, the Vertical Digger mines everything that is in the 'forge:ores' block/item tags. If there is one that it can't mine, but should be able to, put its REGISTRY NAME here. These are the actual registered Item Names, the ones you use, for example, when using the /give Command. This Config Option only applies if the miner is in Ores Only Mode. + "Vertical Digger Extra Whitelist" = [] + #By default, the Vertical Digger mines everything that is in the 'forge:ores' block/item tags. If there is one that it can mine, but shouldn't be able to, put its REGISTRY NAME here. These are the actual registered Item Names, the ones you use, for example, when using the /give Command. This Config Option will apply in both modes. + "Vertical Digger Blacklist" = [] + +#Worldgen Settings +[worldgenSettings] + #Should Black Quartz generate in the world? + blackQuartzGeneration = true + #Should engineer houses be generated in villages? + engineerHouseGeneration = true + +#Item settings +[itemsSettings] + #By default, the Drill can mine certain blocks. If there is one that it can't mine, but should be able to, put its REGISTRY NAME here. These are the actual registered Item Names, the ones you use, for example, when using the /give Command. + "Drill Extra Whitelist" = ["TConstruct:GravelOre"] + diff --git a/minecraft/config/ad_astra_giselle_addon.jsonc b/minecraft/config/ad_astra_giselle_addon.jsonc new file mode 100644 index 0000000..895fb28 --- /dev/null +++ b/minecraft/config/ad_astra_giselle_addon.jsonc @@ -0,0 +1,170 @@ +{ + "items": { + // Type: Long + "oxygen_can_fluid_capacity": 500, + // Type: Long + "oxygen_can_fluid_transfer": 125, + // Type: Long + "netherite_oxygen_can_fluid_capacity": 1000, + // Type: Long + "netherite_oxygen_can_fluid_transfer": 250 + }, + "machines": { + // Type: Long + "fuel_loader_fluid_capacity": 8000, + // Type: Long + "fuel_loader_fluid_transfer": 250, + /* + * Blocks from Fuel Loader to each direction + * Type: Integer + */ + "fuel_loader_working_range": 2, + // Type: Long + "automation_nasa_workbench_energy_capacity": 9600, + // Type: Long + "automation_nasa_workbench_energy_usage": 24, + // Type: Integer + "automation_nasa_workbench_cook_time": 200, + // Type: Long + "gravity_normalizer_energy_capacity": 9600, + /* + * Blocks = x * y * z + * Type: Double + */ + "gravity_normalizer_energy_per_blocks": 0.5, + // Type: Integer + "gravity_normalizer_max_length": 31, + // Type: Integer + "gravity_normalizer_proof_duration": 10, + /* + * Blocks from Rocket Sensor to each direction + * Type: Integer + */ + "rocket_sensor_working_range": 2 + }, + "enchantments": { + // Show tooltip on this mod's enchanted book + "tooltip_enabled": true, + /* + * Tooltip will don't show when 'Enchantment Descriptions' or 'Enchantment Lore' or 'CoFH Core' installed. + * but, if this set 'true' show tooltip with ignore that mods. + */ + "tooltip_ignore": false, + /* + * Energy usage for breath [in every 30 ticks] + * Type: Integer + */ + "space_breathing_energy_using": 30, + /* + * Oxygen usage on using durability + * Type: Long + */ + "space_breathing_durability_oxygen": 2, + /* + * Durability usage for breath + * Type: Integer + */ + "space_breathing_durability_using": 1, + /* + * Breath duration on using durability [ticks, be multiple of 30] + * Type: Integer + */ + "space_breathing_durability_duration": 60, + /* + * Energy usage for proof [in every 10 ticks] + * Type: Integer + */ + "space_fire_proof_energy_using": 10, + /* + * Durability usage for proof + * Type: Integer + */ + "space_fire_proof_durability_using": 1, + /* + * Proof duration on using durability [ticks, be multiple of 10] + * Type: Integer + */ + "space_fire_proof_durability_duration": 60, + /* + * Energy usage for proof [in every 10 ticks] + * Type: Integer + */ + "acid_rain_proof_energy_using": 10, + /* + * Durability usage for proof + * Type: Integer + */ + "acid_rain_proof_durability_using": 1, + /* + * Proof duration on using durability [ticks, be multiple of 10] + * Type: Integer + */ + "acid_rain_proof_durability_duration": 60, + /* + * Energy usage for proof [in every 10 ticks] + * Type: Integer + */ + "gravity_normalizing_energy_using": 10, + /* + * Durability usage for proof + * Type: Integer + */ + "gravity_normalizing_durability_using": 1, + /* + * Proof duration on using durability [ticks, be multiple of 10] + * Type: Integer + */ + "gravity_normalizing_durability_duration": 60 + }, + "compats": { + "mekanism": { + /* + * Energy usage for provide oxygen [in every 30 ticks] + * Type: Integer + */ + "modules_space_breathing_energy_using_provide": 300, + /* + * Energy usage per mb when produce Mekanism oxygen to player in water, rain + * Type: Integer + */ + "modules_space_breathing_energy_using_produce": 200, + /* + * Energy usage for proof in every ticks [in every 10 ticks] + * Type: Integer + */ + "modules_space_fire_proof_energy_using": 100, + /* + * Energy usage for proof in every ticks [in every 10 ticks] + * Type: Integer + */ + "modules_acid_rain_proof_energy_using": 100, + /* + * Energy usage for proof in every ticks [in every 10 ticks] + * Type: Integer + */ + "modules_gravity_normalizing_energy_using": 100 + }, + "pneumaticcraft": { + /* + * Air usage for provide oxygen [in every 30 ticks] + * Type: Integer + */ + "upgades_space_breathing_air_using": 150, + /* + * Air usage for proof [in every 10 ticks] + * Type: Integer + */ + "upgades_space_fire_proof_air_using": 50, + /* + * Air usage for proof [in every 10 ticks] + * Type: Integer + */ + "upgades_acid_rain_proof_air_using": 50, + /* + * Air usage for proof [in every 10 ticks] + * Type: Integer + */ + "upgades_gravity_normalizing_air_using": 50 + } + } +} \ No newline at end of file diff --git a/minecraft/config/ad_astra_giselle_addon.ver2.jsonc b/minecraft/config/ad_astra_giselle_addon.ver2.jsonc new file mode 100644 index 0000000..3ba7324 --- /dev/null +++ b/minecraft/config/ad_astra_giselle_addon.ver2.jsonc @@ -0,0 +1,147 @@ +{ + "items": { + // Type: Integer + "oxygen_chargers_distribution_interval": 20, + // Type: Long + "oxygen_can_fluid_capacity": 500, + // Type: Long + "oxygen_can_fluid_transfer": 125, + // Type: Long + "netherite_oxygen_can_fluid_capacity": 1000, + // Type: Long + "netherite_oxygen_can_fluid_transfer": 250 + }, + "machines": { + // Type: Long + "fuel_loader_fluid_capacity": 8000, + // Type: Long + "fuel_loader_fluid_transfer": 250, + /* + * Blocks from Fuel Loader to each direction + * Type: Integer + */ + "fuel_loader_working_range": 2, + // Type: Long + "automation_nasa_workbench_energy_capacity": 9600, + // Type: Long + "automation_nasa_workbench_energy_usage": 24, + // Type: Integer + "automation_nasa_workbench_cook_time": 200, + // Type: Long + "gravity_normalizer_energy_capacity": 9600, + /* + * Blocks = x * y * z + * Type: Double + */ + "gravity_normalizer_energy_per_blocks": 0.5, + // Type: Integer + "gravity_normalizer_max_length": 31, + // Type: Integer + "gravity_normalizer_proof_duration": 10, + /* + * Blocks from Rocket Sensor to each direction + * Type: Integer + */ + "rocket_sensor_working_range": 2 + }, + "enchantments": { + // Show tooltip on this mod's enchanted book + "tooltip_enabled": true, + /* + * Tooltip will don't show when 'Enchantment Descriptions' or 'Enchantment Lore' or 'CoFH Core' installed. + * but, if this set 'true' show tooltip with ignore that mods. + */ + "tooltip_ignore": false, + /* + * Energy usage for proof [in every 10 ticks] + * Type: Integer + */ + "space_fire_proof_energy_using": 10, + /* + * Durability usage for proof + * Type: Integer + */ + "space_fire_proof_durability_using": 1, + /* + * Proof duration on using durability [ticks, be multiple of 10] + * Type: Integer + */ + "space_fire_proof_durability_duration": 60, + /* + * Energy usage for proof [in every 10 ticks] + * Type: Integer + */ + "acid_rain_proof_energy_using": 10, + /* + * Durability usage for proof + * Type: Integer + */ + "acid_rain_proof_durability_using": 1, + /* + * Proof duration on using durability [ticks, be multiple of 10] + * Type: Integer + */ + "acid_rain_proof_durability_duration": 60, + /* + * Energy usage for proof [in every 10 ticks] + * Type: Integer + */ + "gravity_normalizing_energy_using": 10, + /* + * Durability usage for proof + * Type: Integer + */ + "gravity_normalizing_durability_using": 1, + /* + * Proof duration on using durability [ticks, be multiple of 10] + * Type: Integer + */ + "gravity_normalizing_durability_duration": 60 + }, + "compats": { + "mekanism": { + /* + * Energy usage per mb when produce Mekanism oxygen to player in water, rain + * Type: Integer + */ + "modules_space_breathing_energy_using_produce": 200, + /* + * Energy usage for proof in every ticks [in every 10 ticks] + * Type: Integer + */ + "modules_space_fire_proof_energy_using": 100, + /* + * Energy usage for proof in every ticks [in every 10 ticks] + * Type: Integer + */ + "modules_acid_rain_proof_energy_using": 100, + /* + * Energy usage for proof in every ticks [in every 10 ticks] + * Type: Integer + */ + "modules_gravity_normalizing_energy_using": 100 + }, + "pneumaticcraft": { + /* + * Air usage for provide oxygen [in every 30 ticks] + * Type: Integer + */ + "upgades_space_breathing_air_using": 150, + /* + * Air usage for proof [in every 10 ticks] + * Type: Integer + */ + "upgades_space_fire_proof_air_using": 50, + /* + * Air usage for proof [in every 10 ticks] + * Type: Integer + */ + "upgades_acid_rain_proof_air_using": 50, + /* + * Air usage for proof [in every 10 ticks] + * Type: Integer + */ + "upgades_gravity_normalizing_air_using": 50 + } + } +} \ No newline at end of file diff --git a/minecraft/config/adaptive optimization/actions.jsonl b/minecraft/config/adaptive optimization/actions.jsonl new file mode 100644 index 0000000..7301edf --- /dev/null +++ b/minecraft/config/adaptive optimization/actions.jsonl @@ -0,0 +1,20 @@ +{"tsNs":36433088113400,"phase":"applied","actionId":"COMPRESSION_PACK","magnitude":0.25157260458041253,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":6921224088000,"phase":"applied","actionId":"FBB_PACK","magnitude":0.26785531236215276,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":2056570177200,"phase":"applied","actionId":"NBT_PACK","magnitude":0.26709763254725327,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":11320788673800,"phase":"applied","actionId":"RELOAD_PACK","magnitude":0.26440672972442225,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":16142274075100,"phase":"applied","actionId":"RL_PACK","magnitude":0.2673091192852284,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":4915392706700,"phase":"trial","actionId":"json_reload_cache","regulationLevel":0.0} +{"tsNs":13024427540700,"phase":"trial","actionId":"io_wrap","regulationLevel":0.0} +{"tsNs":12228857088600,"phase":"trial","actionId":"PARAM_TUNE","regulationLevel":0.0} +{"tsNs":5302721135100,"phase":"applied","actionId":"COMPRESSION_PACK","magnitude":0.26709763254725327,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":6686315149700,"phase":"applied","actionId":"FBB_PACK","magnitude":0.5506571614441689,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":12334128578100,"phase":"applied","actionId":"NBT_PACK","magnitude":0.5537442794922438,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":8173753793600,"phase":"applied","actionId":"RELOAD_PACK","magnitude":0.546431882691247,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":9936925200500,"phase":"applied","actionId":"RL_PACK","magnitude":0.5474125151811733,"impact":1,"impactNorm":0.5,"effectiveness":0.5,"regulationLevel":0.0} +{"tsNs":8407290997300,"phase":"applied","actionId":"RELOAD_PACK","magnitude":0.5471286537720967,"impact":0,"impactNorm":0.0,"effectiveness":0.27356432688604837,"regulationLevel":0.0} +{"tsNs":2389556119800,"phase":"applied","actionId":"RELOAD_PACK","magnitude":0.6279996867678235,"impact":0,"impactNorm":0.0,"effectiveness":0.31399984338391174,"regulationLevel":0.0} +{"tsNs":10183547857700,"phase":"applied","actionId":"RL_PACK","magnitude":0.5454096621607164,"impact":0,"impactNorm":0.0,"effectiveness":0.2727048310803582,"regulationLevel":0.0} +{"tsNs":16433316301899,"phase":"applied","actionId":"RL_PACK","magnitude":0.6329897000008182,"impact":0,"impactNorm":0.0,"effectiveness":0.3164948500004091,"regulationLevel":0.0} +{"tsNs":6936293644100,"phase":"applied","actionId":"FBB_PACK","magnitude":0.5492756006737234,"impact":0,"impactNorm":0.0,"effectiveness":0.2746378003368617,"regulationLevel":0.0} +{"tsNs":5723788642600,"phase":"applied","actionId":"NBT_PACK","magnitude":0.5476052537250903,"impact":0,"impactNorm":0.0,"effectiveness":0.27380262686254514,"regulationLevel":0.0} +{"tsNs":2511539616700,"phase":"applied","actionId":"NBT_PACK","magnitude":0.627141105977512,"impact":0,"impactNorm":0.0,"effectiveness":0.313570552988756,"regulationLevel":0.0} diff --git a/minecraft/config/adaptive optimization/errors.jsonl b/minecraft/config/adaptive optimization/errors.jsonl new file mode 100644 index 0000000..e69de29 diff --git a/minecraft/config/adaptive optimization/events.jsonl b/minecraft/config/adaptive optimization/events.jsonl new file mode 100644 index 0000000..b2b5409 --- /dev/null +++ b/minecraft/config/adaptive optimization/events.jsonl @@ -0,0 +1,5 @@ +{"tsNs":5302721135100,"type":"action_switch","actionId":"COMPRESSION_PACK"} +{"tsNs":1300797219900,"type":"action_switch","actionId":"FBB_PACK"} +{"tsNs":12033845442500,"type":"action_switch","actionId":"NBT_PACK"} +{"tsNs":8408191467700,"type":"action_switch","actionId":"RELOAD_PACK"} +{"tsNs":8409692578000,"type":"action_switch","actionId":"RL_PACK"} diff --git a/minecraft/config/adaptive optimization/profile.bin b/minecraft/config/adaptive optimization/profile.bin new file mode 100644 index 0000000..1d41377 Binary files /dev/null and b/minecraft/config/adaptive optimization/profile.bin differ diff --git a/minecraft/config/adaptive optimization/profile.json b/minecraft/config/adaptive optimization/profile.json new file mode 100644 index 0000000..a435959 --- /dev/null +++ b/minecraft/config/adaptive optimization/profile.json @@ -0,0 +1 @@ +{"profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","timestamp":"2026-07-10T20:16:18.401710700Z","shutdown":true,"regulationLevel":0.0,"mc":"1.20.1","forge":"47.4.21","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization","safety":{"regulationLevel":0.0,"tightness":0.0,"softBudgetNs":220000,"hardBudgetNs":650000,"zoomBudgetNs":110000,"routeCostP99Ns":0,"routeCostWorstNs":0},"params":{"ctxHash":0,"analyzeIntervalNs":30000000,"persistIntervalNs":900000000,"ioBufCap":149134,"jsonCacheCap":115,"rlCacheCap":1058,"varintFastCap":617,"crisisZoom":1.0,"aywStrength":0.703659537049078,"exploreBias":0.1015417544487084,"breakerFrac":0.5557730246993854,"corrGate":0.6857730246993854,"actionFrac":0.4357730246993854,"actionCorrGate":0.6357730246993853,"actionTripAlpha":0.4357730246993854},"policy":{"ctxHash":5964188971651875982,"ctxKey":"16|16|13qy1ydj5k7iu|-i2h1g7r7nqg5|1mdo0tpwtpndx|113s9353pl6rb|xv2t6envcnv3|-1imto8a6xcoyv|iso","samplePeriodFrames":0,"pulls":1,"goodPulls":0,"badPulls":0,"arms":[{"id":"FBB_PACK","meanReward":7.086460782604812E-4,"riskEwma":0.05216327281119075,"costEwma":0.0,"trials":219,"lastNs":6937494510500},{"id":"RL_PACK","meanReward":5.122669398791994E-4,"riskEwma":0.06038098661460272,"costEwma":0.0,"trials":78,"lastNs":10241680017100},{"id":"RELOAD_PACK","meanReward":4.456858642081871E-5,"riskEwma":0.049126362278141086,"costEwma":0.0,"trials":389,"lastNs":8408091821100},{"id":"json_reload_cache","meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"trials":30,"lastNs":4915392706700},{"id":"PARAM_TUNE","meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"trials":29,"lastNs":12228857088600},{"id":"io_wrap","meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"trials":27,"lastNs":13024427540700},{"id":"NBT_PACK","meanReward":-3.148780748894869E-5,"riskEwma":0.0,"costEwma":0.0,"trials":353,"lastNs":12398674688000},{"id":"COMPRESSION_PACK","meanReward":-0.058915125184621164,"riskEwma":0.0,"costEwma":0.0,"trials":2184,"lastNs":5698387943000},{"id":"varint_fastpath","meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"trials":0,"lastNs":0},{"id":"nbtio_stream_wrap","meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"trials":0,"lastNs":0},{"id":"rl_cache","meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"trials":0,"lastNs":0},{"id":"resource_reload_io_wrap","meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"trials":0,"lastNs":0},{"id":"ayw","meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"trials":0,"lastNs":0}],"confGates":[{"ctx":0,"good":148,"bad":3,"floor01":0.05521472392638037,"lastNs":12398674580600}]},"attribution":{"lastGcCount":229,"lastGcTimeMs":11876,"lastHeapUsed":6034370448,"lastIoCalls":0,"lastVarintCalls":0,"lastLockHits":0.0,"gcBaseline":1.3394902838020275,"ioBaseline":1.0,"lockBaseline":1.0,"confMinLearned":0.5980566214803259,"unkFloorLearned":0.086056621480326,"alphaDir":[40.0,0.4,0.4,0.4,0.4],"beta":[1.05,1.0,1.1,0.95,0.85],"w":[[0.42,0.28,0.3,0.0,0.0,0.0,0.0,0.0],[0.0,0.0,0.0,0.52,0.48,0.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0],[0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.42],[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]],"sig":[{"med":0.0,"mad":0.0,"zAbsP99":0.0,"n":0},{"med":0.0,"mad":0.0,"zAbsP99":0.0,"n":0},{"med":0.0,"mad":0.0,"zAbsP99":0.0,"n":0},{"med":0.0,"mad":0.0,"zAbsP99":0.0,"n":0},{"med":0.0,"mad":0.0,"zAbsP99":0.0,"n":0},{"med":0.0,"mad":0.0,"zAbsP99":0.0,"n":0},{"med":0.0,"mad":0.0,"zAbsP99":0.0,"n":0},{"med":0.0,"mad":0.0,"zAbsP99":0.0,"n":0}]},"actions":{"activePrimary":"io_wrap","safeGlobalAllow":0,"safeGlobalDeny":27,"safeGlobalGoodPacked":283905661,"safeGlobalBadPacked":888934399,"safeCtx":[],"strategyMemory":[{"ctx":-5759424133857407281,"list":[{"id":"COMPRESSION_PACK","score":0.29392747626496857,"conf":0.8805952903278098,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36727635646400},{"id":"NBT_PACK","score":-0.009327859462876266,"conf":0.9472296386714972,"cost":0.0,"mag":0.5695338334635783,"promoted":false,"t":44395894308000}]},{"ctx":4471674939992618978,"list":[{"id":"COMPRESSION_PACK","score":0.2785332133284235,"conf":0.8261925683809684,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36732701497000}]},{"ctx":-6429206670427421248,"list":[{"id":"COMPRESSION_PACK","score":0.2891362381568973,"conf":0.8390113507521556,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36549876860600},{"id":"RELOAD_PACK","score":-0.025334976416823873,"conf":0.8264666022991646,"cost":0.0,"mag":0.5771374185650224,"promoted":false,"t":11545614067900}]},{"ctx":1484830717313168444,"list":[{"id":"COMPRESSION_PACK","score":0.2628096487495495,"conf":0.7872345256316041,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36732200453100}]},{"ctx":-7116640066066066565,"list":[{"id":"COMPRESSION_PACK","score":0.1879903234613463,"conf":0.8178797067606792,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36675719932900}]},{"ctx":-6766331188680421956,"list":[{"id":"COMPRESSION_PACK","score":0.24346192660066263,"conf":0.8443376408581817,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36574623026100},{"id":"RELOAD_PACK","score":-0.007129532183077906,"conf":0.9077199877710962,"cost":0.0,"mag":0.5955167233061366,"promoted":false,"t":12543411838100}]},{"ctx":-1741374554876138372,"list":[{"id":"COMPRESSION_PACK","score":0.10449864525249081,"conf":0.6902990647282965,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36552461889600}]},{"ctx":-5246057426158614230,"list":[{"id":"COMPRESSION_PACK","score":0.19829457779891868,"conf":0.8087888619423602,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36675976421600}]},{"ctx":2990586196247401537,"list":[{"id":"COMPRESSION_PACK","score":0.21162100021024344,"conf":0.815380135598448,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36723869591700}]},{"ctx":3850379401961628338,"list":[{"id":"NBT_PACK","score":-0.021813976104657976,"conf":0.8594076467912385,"cost":0.0,"mag":0.6147564193354376,"promoted":false,"t":49841882214600}]},{"ctx":-5850500492414435727,"list":[{"id":"COMPRESSION_PACK","score":0.25311810383807704,"conf":0.8898648331432021,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36573819083300},{"id":"RELOAD_PACK","score":-0.0024983902170832156,"conf":0.9563254628924757,"cost":0.0,"mag":0.6066408258194327,"promoted":false,"t":11977670981000}]},{"ctx":-7677379009364636460,"list":[{"id":"COMPRESSION_PACK","score":0.27001011034566524,"conf":0.8109921521039344,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36467249199600}]},{"ctx":4862125411271208217,"list":[{"id":"COMPRESSION_PACK","score":0.25785489498957004,"conf":0.7918698162525514,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36466949274300}]},{"ctx":-7384757001362349561,"list":[{"id":"COMPRESSION_PACK","score":0.23928733783726053,"conf":0.8635500921644469,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36575734236200}]},{"ctx":3202503978508913356,"list":[{"id":"COMPRESSION_PACK","score":0.14220946329225767,"conf":0.7329517558529128,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36499890034800}]},{"ctx":-7057040046450000165,"list":[{"id":"COMPRESSION_PACK","score":0.21510812060591353,"conf":0.8245806041569551,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36572277616500}]},{"ctx":-1001738884779515442,"list":[{"id":"COMPRESSION_PACK","score":0.21142847400889142,"conf":0.7872238182435918,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36731949883000}]},{"ctx":1114264105641823132,"list":[{"id":"COMPRESSION_PACK","score":0.15951884605344363,"conf":0.7988714745106191,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36569732087000}]},{"ctx":-8356783376002987356,"list":[{"id":"FBB_PACK","score":-0.021564190124448164,"conf":0.8371308672662678,"cost":0.0,"mag":0.5666898048569766,"promoted":false,"t":1395606495100},{"id":"NBT_PACK","score":-0.023132868701725096,"conf":0.8498982653716884,"cost":0.0,"mag":0.5701930455875801,"promoted":false,"t":46295415762200}]},{"ctx":3323086026741522658,"list":[{"id":"COMPRESSION_PACK","score":0.20052525486027398,"conf":0.7890537055035186,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36686228198800}]},{"ctx":695593285738275704,"list":[{"id":"COMPRESSION_PACK","score":0.16769546519370215,"conf":0.8289825618954705,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36621486088000}]},{"ctx":2991542771363755882,"list":[{"id":"COMPRESSION_PACK","score":0.20146410041007345,"conf":0.7964674097233512,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36630862668700}]},{"ctx":5143370626795341635,"list":[{"id":"COMPRESSION_PACK","score":0.2913880385563585,"conf":0.8898754229110624,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36725628910200}]},{"ctx":-6430005057720883455,"list":[{"id":"COMPRESSION_PACK","score":0.21753489168181053,"conf":0.8313342123444252,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36556024638100}]},{"ctx":-6428250095311066903,"list":[{"id":"COMPRESSION_PACK","score":0.2754621074966545,"conf":0.8247701358255141,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36734707247500}]},{"ctx":-1159702904833352707,"list":[{"id":"NBT_PACK","score":-0.0085472994896764,"conf":0.9571423425694153,"cost":0.0,"mag":0.5531673838690444,"promoted":false,"t":12379156211900}]},{"ctx":3849422826845273993,"list":[{"id":"COMPRESSION_PACK","score":0.27484951396593144,"conf":0.8260293145081666,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36547476010600}]},{"ctx":-6140252775067659591,"list":[{"id":"COMPRESSION_PACK","score":0.20114286128678638,"conf":0.8568097988220617,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36537569203900}]},{"ctx":3784878269164424119,"list":[{"id":"COMPRESSION_PACK","score":0.17431823406794983,"conf":0.7741970440775748,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36630304777300}]},{"ctx":-6494387952918721580,"list":[{"id":"COMPRESSION_PACK","score":0.1783870429033964,"conf":0.8083272878869372,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36497036492200}]},{"ctx":-5851457067530790072,"list":[{"id":"COMPRESSION_PACK","score":0.2585354477785233,"conf":0.8839783426141685,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36542971585900}]},{"ctx":-6194535303209602467,"list":[{"id":"COMPRESSION_PACK","score":0.31195410916780386,"conf":0.8820718821043083,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36481584172300}]},{"ctx":-5575687531303672316,"list":[{"id":"COMPRESSION_PACK","score":0.17700778324340155,"conf":0.785615802259154,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36571760984100}]},{"ctx":2580251865361568371,"list":[{"id":"COMPRESSION_PACK","score":0.1261962099386648,"conf":0.7208409675386455,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36499354067400}]},{"ctx":1195078434659944580,"list":[{"id":"COMPRESSION_PACK","score":0.25947640480693196,"conf":0.8132809551717736,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36545372391200},{"id":"RELOAD_PACK","score":-0.030986132516070842,"conf":0.8211831041303608,"cost":0.0,"mag":0.650504883404173,"promoted":false,"t":11887667391000}]},{"ctx":-7676422434248282115,"list":[{"id":"COMPRESSION_PACK","score":0.25422164397975355,"conf":0.8394471080910274,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36723619184300},{"id":"RELOAD_PACK","score":-0.01700777201545271,"conf":0.8882024861126392,"cost":0.0,"mag":0.5998750931258754,"promoted":false,"t":2924645431900},{"id":"FBB_PACK","score":-0.03669266173547894,"conf":0.8563331343227377,"cost":0.0,"mag":0.6202935704853149,"promoted":false,"t":1601547294900}]},{"ctx":-8949258033714393368,"list":[{"id":"COMPRESSION_PACK","score":0.1524637314499196,"conf":0.7507826724096083,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36552714508400}]},{"ctx":4328238119154720781,"list":[{"id":"COMPRESSION_PACK","score":0.18326043415926496,"conf":0.7066780265006143,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36669023053500}]},{"ctx":4574286278850693043,"list":[{"id":"COMPRESSION_PACK","score":0.22790864560971347,"conf":0.790201083051678,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36567358960400}]},{"ctx":-7010466198143685528,"list":[{"id":"COMPRESSION_PACK","score":0.17963279088864875,"conf":0.7843984684014506,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36719036335600}]},{"ctx":-6528948283936432278,"list":[{"id":"COMPRESSION_PACK","score":0.3232279664216382,"conf":0.8511031253159499,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36472052650000},{"id":"NBT_PACK","score":-0.013232027522558773,"conf":0.893514416358452,"cost":0.0,"mag":0.555217440433624,"promoted":false,"t":50123770901700}]},{"ctx":-8281032603955360185,"list":[{"id":"NBT_PACK","score":-0.013521589856158136,"conf":0.9090309935085576,"cost":0.0,"mag":0.554169265398422,"promoted":false,"t":4156902548100}]},{"ctx":4182879232455749459,"list":[{"id":"COMPRESSION_PACK","score":0.28940104979488335,"conf":0.8275227782662667,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36468150029000},{"id":"NBT_PACK","score":-0.015085810174091361,"conf":0.9001655124575934,"cost":0.0,"mag":0.5913061058884123,"promoted":false,"t":3495691516900}]},{"ctx":-5247014001274968575,"list":[{"id":"COMPRESSION_PACK","score":0.1925405496081789,"conf":0.7860903566266736,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36485859379800}]},{"ctx":535716115451729749,"list":[{"id":"COMPRESSION_PACK","score":0.1718492854373856,"conf":0.7466594795108811,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36615981926000}]},{"ctx":3611881734278392177,"list":[{"id":"COMPRESSION_PACK","score":0.2107826526641718,"conf":0.8034251658604036,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36715037579100}]},{"ctx":-7095961293825480042,"list":[{"id":"COMPRESSION_PACK","score":0.2349163409317013,"conf":0.8746059761392618,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36565858244400}]},{"ctx":-8646535658656211220,"list":[{"id":"RELOAD_PACK","score":-0.017431886712460275,"conf":0.8768314234686189,"cost":0.0,"mag":0.5566682562630484,"promoted":false,"t":12172481094000},{"id":"NBT_PACK","score":-0.02005380829449105,"conf":0.8666992072073022,"cost":0.0,"mag":0.5591386567443009,"promoted":false,"t":45209186415500},{"id":"FBB_PACK","score":-0.020346845069825474,"conf":0.8655949459682851,"cost":0.0,"mag":0.5571616081396894,"promoted":false,"t":1402910198200},{"id":"RL_PACK","score":-0.021508932931984196,"conf":0.8455617011086661,"cost":0.0,"mag":0.5579472800433858,"promoted":false,"t":16754154122400}]},{"ctx":7047398834781258185,"list":[{"id":"COMPRESSION_PACK","score":0.10985714040163,"conf":0.7026733662436287,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36629037423400}]},{"ctx":3818586687374882016,"list":[{"id":"NBT_PACK","score":0.07852217397671757,"conf":0.6098013591144129,"cost":0.0,"mag":0.19248433142729393,"promoted":false,"t":47123014346900}]},{"ctx":-6385502547470169646,"list":[{"id":"COMPRESSION_PACK","score":0.2978108607677039,"conf":0.8805826303444697,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36727384421600}]},{"ctx":6434290513573454104,"list":[{"id":"COMPRESSION_PACK","score":0.3349703177877485,"conf":0.904082685977026,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36471452492700},{"id":"RELOAD_PACK","score":-0.0019738721400577542,"conf":0.9337256678103204,"cost":0.0,"mag":0.5643387557498571,"promoted":false,"t":4829201040300},{"id":"FBB_PACK","score":-0.0020271007404070356,"conf":0.9398369529180143,"cost":0.0,"mag":0.551721351417041,"promoted":false,"t":6467434822600}]},{"ctx":3610925159162037832,"list":[{"id":"COMPRESSION_PACK","score":0.20172333677092752,"conf":0.8069821580386042,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36554739627400}]},{"ctx":-6765374613564067611,"list":[{"id":"COMPRESSION_PACK","score":0.24962165927987126,"conf":0.8461509401148569,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36579868500100},{"id":"RELOAD_PACK","score":-0.01393609572503065,"conf":0.9010721020530196,"cost":0.0,"mag":0.5980650029602146,"promoted":false,"t":12028362894100}]},{"ctx":5563278703203965960,"list":[{"id":"COMPRESSION_PACK","score":0.16273446376494183,"conf":0.8021811577418405,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36551323054100}]},{"ctx":4949533657185711421,"list":[{"id":"COMPRESSION_PACK","score":0.19004557355306423,"conf":0.7205663745751402,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36724371835300}]},{"ctx":-8301544272744690135,"list":[{"id":"COMPRESSION_PACK","score":0.2808882487218823,"conf":0.8143493684912195,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36467849903200}]},{"ctx":3157843280435307409,"list":[{"id":"COMPRESSION_PACK","score":0.1545748802979772,"conf":0.7643454024304782,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36485346954800}]},{"ctx":-7776322235580185283,"list":[{"id":"COMPRESSION_PACK","score":0.28254378682631515,"conf":0.8732103175179275,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36481838504600}]},{"ctx":2364507782634639172,"list":[{"id":"COMPRESSION_PACK","score":0.1919547838114123,"conf":0.7997335150155094,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36720043248700}]},{"ctx":3558713969075695784,"list":[{"id":"COMPRESSION_PACK","score":0.29326193447457555,"conf":0.8276848201794681,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36468450398600}]},{"ctx":1288217215644209419,"list":[{"id":"COMPRESSION_PACK","score":0.12373013036030708,"conf":0.7878120818470328,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36628261013500}]},{"ctx":4515379062949870580,"list":[{"id":"COMPRESSION_PACK","score":0.28091721294969463,"conf":0.8898621821414506,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36725377623200},{"id":"NBT_PACK","score":-0.005005425686131866,"conf":0.9485014971233791,"cost":0.0,"mag":0.5701880100709172,"promoted":false,"t":44480892269100}]},{"ctx":-7386670151595058251,"list":[{"id":"COMPRESSION_PACK","score":0.24315618041135406,"conf":0.8567398633035228,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36699018508900},{"id":"RELOAD_PACK","score":-0.01073402743726453,"conf":0.8495650014662243,"cost":0.0,"mag":0.5899783804038847,"promoted":false,"t":11765757051000},{"id":"FBB_PACK","score":-0.023568152322969545,"conf":0.8468660657237465,"cost":0.0,"mag":0.6144598983536737,"promoted":false,"t":1532211094900}]},{"ctx":-7557125727066295480,"list":[{"id":"COMPRESSION_PACK","score":0.34072892627767165,"conf":0.9146764623185902,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36479854955400},{"id":"RL_PACK","score":6.166487701533777E-4,"conf":0.9975712157703552,"cost":0.0,"mag":0.5519585964608049,"promoted":false,"t":10227171255100},{"id":"RELOAD_PACK","score":0.0,"conf":0.9971862612271435,"cost":0.0,"mag":0.54533742652577,"promoted":false,"t":8406990773800},{"id":"FBB_PACK","score":0.0,"conf":0.9772349384247584,"cost":0.0,"mag":0.5466188034864505,"promoted":false,"t":6935993546700},{"id":"NBT_PACK","score":-0.001104379725478387,"conf":0.9914434624366456,"cost":0.0,"mag":0.5451874270464561,"promoted":false,"t":5802848004100}]},{"ctx":4180966082223040769,"list":[{"id":"RL_PACK","score":-0.015741288821464087,"conf":0.8856086833509428,"cost":0.0,"mag":0.6024194530423846,"promoted":false,"t":16141291522400},{"id":"NBT_PACK","score":-0.023942788658688922,"conf":0.8678410834767065,"cost":0.0,"mag":0.587111198971178,"promoted":false,"t":44878583196500}]},{"ctx":2620129687853402593,"list":[{"id":"COMPRESSION_PACK","score":0.0,"conf":0.6861149189480426,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36570982613900}]},{"ctx":4238916723007508887,"list":[{"id":"COMPRESSION_PACK","score":0.24041871492989378,"conf":0.8212207916549922,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36722592938400}]},{"ctx":2702747063826886363,"list":[{"id":"COMPRESSION_PACK","score":0.19699665777595765,"conf":0.7817716986188289,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36564357334300}]},{"ctx":-8364970592826173915,"list":[{"id":"COMPRESSION_PACK","score":0.165705374485005,"conf":0.8056404388040865,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36498047343600}]},{"ctx":3321172876508813968,"list":[{"id":"COMPRESSION_PACK","score":0.1919819859826732,"conf":0.7732076043265779,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36564057019200},{"id":"RELOAD_PACK","score":-0.04371508246685779,"conf":0.7988121875022266,"cost":0.0,"mag":0.691810860268073,"promoted":false,"t":12013971660000}]},{"ctx":3782008543815361084,"list":[{"id":"COMPRESSION_PACK","score":0.1834520134421683,"conf":0.7695554998631748,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36500422183300}]},{"ctx":7304662124472372179,"list":[{"id":"COMPRESSION_PACK","score":0.2645526852642857,"conf":0.8539179629560443,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36597375118300},{"id":"RELOAD_PACK","score":-0.032891298682500764,"conf":0.8729146448760143,"cost":0.0,"mag":0.6064639337777318,"promoted":false,"t":11812767055200}]},{"ctx":-8022370395276157545,"list":[{"id":"COMPRESSION_PACK","score":0.317094336360683,"conf":0.8451970750094635,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36470851949100},{"id":"NBT_PACK","score":-0.01682458331352247,"conf":0.8494553378425558,"cost":0.0,"mag":0.5573230674955407,"promoted":false,"t":47401690733100},{"id":"RELOAD_PACK","score":-0.019829070017065936,"conf":0.8622887148324098,"cost":0.0,"mag":0.5644677612611515,"promoted":false,"t":4828600161400},{"id":"FBB_PACK","score":-0.02090638909514099,"conf":0.8394367994887163,"cost":0.0,"mag":0.5649044137543376,"promoted":false,"t":1397607992300}]},{"ctx":-4267756984927498566,"list":[{"id":"COMPRESSION_PACK","score":0.2070830794024182,"conf":0.8473174477707502,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36709068518800}]},{"ctx":1912382479024263094,"list":[{"id":"COMPRESSION_PACK","score":0.13976239018455597,"conf":0.7791021422229287,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36623471163900}]},{"ctx":-7119509791415129600,"list":[{"id":"COMPRESSION_PACK","score":0.18229181204646017,"conf":0.8094891069056508,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36624785198800}]},{"ctx":-8302500847861044480,"list":[{"id":"COMPRESSION_PACK","score":0.2584674247284609,"conf":0.8178321059320721,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36545072528700}]},{"ctx":3617621184976518247,"list":[{"id":"COMPRESSION_PACK","score":0.20081353735527796,"conf":0.8087882158548106,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36572020782600}]},{"ctx":-6384545972353815301,"list":[{"id":"COMPRESSION_PACK","score":0.31490640927188324,"conf":0.8492526447692561,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36470251317300},{"id":"RL_PACK","score":-0.012929068963284714,"conf":0.9132676198875598,"cost":0.0,"mag":0.5591241815978969,"promoted":false,"t":16383719627100}]},{"ctx":-2987537996899907785,"list":[{"id":"COMPRESSION_PACK","score":0.3259918291740449,"conf":0.8504673845711652,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36477453945500},{"id":"RELOAD_PACK","score":-0.015780023397508364,"conf":0.9099960599905883,"cost":0.0,"mag":0.5526867679488563,"promoted":false,"t":5176149617700},{"id":"FBB_PACK","score":-0.016379746361511165,"conf":0.8905874934493979,"cost":0.0,"mag":0.5503545272426112,"promoted":false,"t":6937494228100},{"id":"RL_PACK","score":-0.017065112034525803,"conf":0.9267199486651307,"cost":0.0,"mag":0.558475423299464,"promoted":false,"t":16779166998100},{"id":"NBT_PACK","score":-0.019960449974681962,"conf":0.8920865345439205,"cost":0.0,"mag":0.551247835918482,"promoted":false,"t":12398674580600}]},{"ctx":-6428091907488174765,"list":[{"id":"COMPRESSION_PACK","score":0.22894379446639007,"conf":0.8240400047190731,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36713529340200},{"id":"RELOAD_PACK","score":-0.002635225394103189,"conf":0.8583394478925668,"cost":0.0,"mag":0.6326466757950351,"promoted":false,"t":2312653590000},{"id":"FBB_PACK","score":-0.01114989961363204,"conf":0.8644689776140295,"cost":0.0,"mag":0.6381376392354108,"promoted":false,"t":1477593667000}]},{"ctx":-7699014356721577328,"list":[{"id":"COMPRESSION_PACK","score":0.1497965608304463,"conf":0.7515201874595806,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36629801159700}]},{"ctx":-8355826800886633011,"list":[{"id":"COMPRESSION_PACK","score":0.29477165828787383,"conf":0.8407049452714631,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36731396393900}]},{"ctx":-6138339624834950901,"list":[{"id":"COMPRESSION_PACK","score":0.2202640290395604,"conf":0.8644936591967709,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36709579913000}]},{"ctx":-5515289124394143709,"list":[{"id":"COMPRESSION_PACK","score":0.2962036786813748,"conf":0.8626777696087486,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36550177191800}]},{"ctx":4181922657339395114,"list":[{"id":"COMPRESSION_PACK","score":0.2700347691357202,"conf":0.8607222602455464,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36597120353700},{"id":"RELOAD_PACK","score":-0.013818647933568318,"conf":0.9170864370324355,"cost":0.0,"mag":0.6052565765446011,"promoted":false,"t":3022522838000},{"id":"NBT_PACK","score":-0.017013071462573373,"conf":0.8697288955421985,"cost":0.0,"mag":0.5935187935364611,"promoted":false,"t":47179959616800},{"id":"FBB_PACK","score":-0.018267524835574585,"conf":0.8785782899269927,"cost":0.0,"mag":0.5950569944579054,"promoted":false,"t":7037033194200}]},{"ctx":2743252695500806608,"list":[{"id":"COMPRESSION_PACK","score":0.1929238185355469,"conf":0.7872124371523389,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36731699476900}]},{"ctx":-5514174361454897226,"list":[{"id":"COMPRESSION_PACK","score":0.21091987587105032,"conf":0.8388407322675003,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36482350147600}]},{"ctx":5767535890175395310,"list":[{"id":"COMPRESSION_PACK","score":0.2492933795499945,"conf":0.8740032952369051,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36551069148500}]},{"ctx":-6491518227569658545,"list":[{"id":"COMPRESSION_PACK","score":0.17705476356574412,"conf":0.8110015857876471,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36626413510700}]},{"ctx":4850748618793054736,"list":[{"id":"COMPRESSION_PACK","score":0.280204469010319,"conf":0.897825609772903,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36596588243900}]},{"ctx":-5762293859206470316,"list":[{"id":"COMPRESSION_PACK","score":0.2893070674276762,"conf":0.8729130910868317,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36726130327400}]},{"ctx":-1449455187486576571,"list":[{"id":"NBT_PACK","score":-0.011841619338284542,"conf":0.8991666961213495,"cost":0.0,"mag":0.5537555924495657,"promoted":false,"t":49740937244300}]},{"ctx":-5224422078801673362,"list":[{"id":"COMPRESSION_PACK","score":0.22599279332702088,"conf":0.8619674017613507,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36484838999900}]},{"ctx":7114651455328159345,"list":[{"id":"COMPRESSION_PACK","score":0.12351579468645499,"conf":0.7395430506161177,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36724120907100}]},{"ctx":-5223465503685319017,"list":[{"id":"COMPRESSION_PACK","score":0.2558906419636767,"conf":0.8849821557127361,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36579095135800}]},{"ctx":-3611703260279961460,"list":[{"id":"NBT_PACK","score":-0.015817934598989877,"conf":0.8829933444247859,"cost":0.0,"mag":0.5564113949493231,"promoted":false,"t":49424769736900}]},{"ctx":3205373703857976391,"list":[{"id":"COMPRESSION_PACK","score":0.13537437551225717,"conf":0.73023076088869,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36629544344500}]},{"ctx":3612838309394746522,"list":[{"id":"COMPRESSION_PACK","score":0.22491990411951854,"conf":0.8163865811568886,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36720810742300}]},{"ctx":3657499007468352469,"list":[{"id":"COMPRESSION_PACK","score":0.17912899210862285,"conf":0.7577996141985903,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36563156269800}]},{"ctx":-7367115057922082646,"list":[{"id":"NBT_PACK","score":-0.01604551822684617,"conf":0.9091156099189501,"cost":0.0,"mag":0.5526880863613125,"promoted":false,"t":4179420234899}]},{"ctx":-8399530923843884613,"list":[{"id":"COMPRESSION_PACK","score":0.25672898579623504,"conf":0.8733459391808918,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36482091379300}]},{"ctx":2366420932867347862,"list":[{"id":"COMPRESSION_PACK","score":0.17374653376424118,"conf":0.7934919500786156,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36559554067900}]},{"ctx":-7674509284015573425,"list":[{"id":"COMPRESSION_PACK","score":0.23888912258823777,"conf":0.841928491486883,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36576269495500}]},{"ctx":-7054170321100937130,"list":[{"id":"COMPRESSION_PACK","score":0.22962447119059293,"conf":0.8223479545379828,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36722085116700},{"id":"RELOAD_PACK","score":-0.016214024851776858,"conf":0.8274365244954802,"cost":0.0,"mag":0.6254854252057176,"promoted":false,"t":11352128098800},{"id":"FBB_PACK","score":-0.019478460640986815,"conf":0.8599162107081186,"cost":0.0,"mag":0.6126815740265873,"promoted":false,"t":1587889179100}]},{"ctx":-2073620450866630246,"list":[{"id":"COMPRESSION_PACK","score":0.3251727091299603,"conf":0.8542788672475062,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36481057130300},{"id":"NBT_PACK","score":-0.008953862828609686,"conf":0.9304535458470977,"cost":0.0,"mag":0.5528324503739738,"promoted":false,"t":12260405944500},{"id":"RELOAD_PACK","score":-0.010717192827306122,"conf":0.9045397402961368,"cost":0.0,"mag":0.5482893048792442,"promoted":false,"t":8408091484400},{"id":"RL_PACK","score":-0.010552209923456781,"conf":0.9527278928268049,"cost":0.0,"mag":0.5496306622579148,"promoted":false,"t":17247664238099}]},{"ctx":4864038561503916907,"list":[{"id":"COMPRESSION_PACK","score":0.24239670933319976,"conf":0.8083982482060502,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36543271711300}]},{"ctx":3779138818466298049,"list":[{"id":"COMPRESSION_PACK","score":0.16113666620885167,"conf":0.785597768444439,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36571496939300}]},{"ctx":-7681205309830053840,"list":[{"id":"COMPRESSION_PACK","score":0.23379447911247597,"conf":0.8425051705470057,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36573043919100}]},{"ctx":-8682531101777834583,"list":[{"id":"COMPRESSION_PACK","score":0.2979106177997157,"conf":0.9035541596148554,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36725125842400}]},{"ctx":-5517202274626852399,"list":[{"id":"COMPRESSION_PACK","score":0.29004078739115297,"conf":0.8684804413914065,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36726632439500}]},{"ctx":4249008174435039701,"list":[{"id":"COMPRESSION_PACK","score":0.2836119396920774,"conf":0.8183945621293414,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36729390251600}]},{"ctx":-8322223044985276658,"list":[{"id":"COMPRESSION_PACK","score":0.1611542829171601,"conf":0.7606446715027614,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36719791534200}]},{"ctx":-5802970068991766745,"list":[{"id":"COMPRESSION_PACK","score":0.21105603375922077,"conf":0.8386178203803009,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36558953457300}]},{"ctx":2583121590710631406,"list":[{"id":"COMPRESSION_PACK","score":0.11493938388558464,"conf":0.7356905307800151,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36571238439400}]},{"ctx":4237960147891154542,"list":[{"id":"COMPRESSION_PACK","score":0.25125271492787127,"conf":0.7916890211502975,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36466648003600}]},{"ctx":6119590814342492036,"list":[{"id":"COMPRESSION_PACK","score":0.2827901308998966,"conf":0.8183825885475031,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36729139647400}]},{"ctx":-6764418038447713266,"list":[{"id":"COMPRESSION_PACK","score":0.2623620487700698,"conf":0.8495532648625858,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36706681798700},{"id":"NBT_PACK","score":-0.010315887565368935,"conf":0.881674849513229,"cost":0.0,"mag":0.5940778176767898,"promoted":false,"t":43745662529800},{"id":"FBB_PACK","score":-0.02545579252616021,"conf":0.8516144865050607,"cost":0.0,"mag":0.6122227734058684,"promoted":false,"t":2715590014800},{"id":"RELOAD_PACK","score":-0.02608163686846636,"conf":0.8382892886942914,"cost":0.0,"mag":0.6173249996762449,"promoted":false,"t":4641373882200}]},{"ctx":3156886705318953064,"list":[{"id":"COMPRESSION_PACK","score":0.1709895173011713,"conf":0.7923754591087063,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36624531453800}]},{"ctx":1832533640750860426,"list":[{"id":"COMPRESSION_PACK","score":0.2315989227560531,"conf":0.7205772064661548,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36724623949700}]},{"ctx":2625869138551528663,"list":[{"id":"COMPRESSION_PACK","score":0.09927422156921908,"conf":0.689891530131169,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36627458252300}]},{"ctx":-6818700566589656142,"list":[{"id":"NBT_PACK","score":-0.003771343856050524,"conf":0.9376046068547716,"cost":0.0,"mag":0.5538040449090585,"promoted":false,"t":45213689453700}]},{"ctx":-8323179620101631003,"list":[{"id":"COMPRESSION_PACK","score":0.15963631730262245,"conf":0.7587902048701545,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36630053134200}]},{"ctx":-5848587342181727037,"list":[{"id":"COMPRESSION_PACK","score":0.2746050824659738,"conf":0.8956888465451065,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36704892868400},{"id":"NBT_PACK","score":-0.005753204445810875,"conf":0.9527190364171054,"cost":0.0,"mag":0.5814885252540484,"promoted":false,"t":3583176137400},{"id":"FBB_PACK","score":-0.014357029617394317,"conf":0.9048774698171603,"cost":0.0,"mag":0.6035008457078069,"promoted":false,"t":5399643572100},{"id":"RELOAD_PACK","score":-0.01601626709728196,"conf":0.9005509800510069,"cost":0.0,"mag":0.6135118181970969,"promoted":false,"t":11444554549900}]},{"ctx":-1783868168213406382,"list":[{"id":"COMPRESSION_PACK","score":0.32243183388561164,"conf":0.8820162435998595,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36481313744600}]},{"ctx":-8635000678355165601,"list":[{"id":"COMPRESSION_PACK","score":0.26828280019613227,"conf":0.8521062100666736,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36672838102200},{"id":"NBT_PACK","score":-8.067781276844856E-4,"conf":0.9216791745899051,"cost":0.0,"mag":0.5926984625506692,"promoted":false,"t":33332416397300},{"id":"RELOAD_PACK","score":-0.03642326241098301,"conf":0.8502236743044282,"cost":0.0,"mag":0.6038294486113395,"promoted":false,"t":3047352068400}]},{"ctx":698463011087338739,"list":[{"id":"COMPRESSION_PACK","score":0.17430830901049005,"conf":0.8394062268885507,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36719539408700}]},{"ctx":1787872942677254479,"list":[{"id":"COMPRESSION_PACK","score":0.14820283372160092,"conf":0.7529140181722872,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36719288408600}]},{"ctx":2367377507983702207,"list":[{"id":"COMPRESSION_PACK","score":0.19260151124462466,"conf":0.8188174413802443,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36625063631100}]},{"ctx":-7096917868941834387,"list":[{"id":"COMPRESSION_PACK","score":0.2433222736832991,"conf":0.8759182433981395,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36614152606600}]},{"ctx":2577382140012505336,"list":[{"id":"COMPRESSION_PACK","score":0.1253887062521766,"conf":0.7256533278622267,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36629293386300}]},{"ctx":-8834474989744823226,"list":[{"id":"COMPRESSION_PACK","score":0.1725789645560028,"conf":0.733995078395501,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36533217780300}]},{"ctx":-5904783020556378603,"list":[{"id":"COMPRESSION_PACK","score":0.32740265349909287,"conf":0.8557103339426907,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36474153304600},{"id":"RELOAD_PACK","score":-0.015156488499254876,"conf":0.8809675764968642,"cost":0.0,"mag":0.560140606649171,"promoted":false,"t":4718320553400}]},{"ctx":-4891123861014090034,"list":[{"id":"COMPRESSION_PACK","score":0.3073089667531727,"conf":0.8349176621984312,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36469650737500}]},{"ctx":-7056083471333645820,"list":[{"id":"COMPRESSION_PACK","score":0.2348271658988472,"conf":0.8419157269456542,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36575996739500}]},{"ctx":-7385713576478703906,"list":[{"id":"COMPRESSION_PACK","score":0.232278444502388,"conf":0.8415850003411425,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36525626989000},{"id":"NBT_PACK","score":-0.0364728778564265,"conf":0.8519960400273856,"cost":0.0,"mag":0.24077376978261816,"promoted":false,"t":2949766315500}]},{"ctx":-5805839794340829780,"list":[{"id":"COMPRESSION_PACK","score":0.2095248282027067,"conf":0.8402477700839874,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36677012043000}]},{"ctx":-7007596472794622493,"list":[{"id":"COMPRESSION_PACK","score":0.18947542739437845,"conf":0.7890473934873596,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36685973844100}]},{"ctx":-1174032779052822286,"list":[{"id":"COMPRESSION_PACK","score":0.18334681674495656,"conf":0.8381761128302989,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36626156623600}]},{"ctx":2488587365398397532,"list":[{"id":"NBT_PACK","score":0.17440857669807958,"conf":0.5587620914282001,"cost":0.0,"mag":0.1925133217858293,"promoted":false,"t":12034052285500}]},{"ctx":4228496505645709751,"list":[{"id":"COMPRESSION_PACK","score":0.29779757000942275,"conf":0.9040602098082869,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36548076332700}]},{"ctx":-7009509623027331183,"list":[{"id":"COMPRESSION_PACK","score":0.1667630575261959,"conf":0.7730460719527386,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36561355196400}]},{"ctx":-6425222182139111730,"list":[{"id":"COMPRESSION_PACK","score":0.204110510628484,"conf":0.8299080128771817,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36553982419800}]},{"ctx":2992499346480110227,"list":[{"id":"COMPRESSION_PACK","score":0.19297757621048134,"conf":0.7941410228426021,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36538469210300}]},{"ctx":4236046997658445852,"list":[{"id":"COMPRESSION_PACK","score":0.22844549079032594,"conf":0.8158359981839162,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36618536717200}]},{"ctx":-4847419738056838432,"list":[{"id":"COMPRESSION_PACK","score":0.3014343310361495,"conf":0.9134195527439467,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36734957381100}]},{"ctx":9143874009017080738,"list":[{"id":"COMPRESSION_PACK","score":0.2860390415926116,"conf":0.9035418961554827,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36724874995200}]},{"ctx":-8325092770334339693,"list":[{"id":"COMPRESSION_PACK","score":0.14170848781413087,"conf":0.7460010498894237,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36482869086300}]},{"ctx":-7071022792876106273,"list":[{"id":"COMPRESSION_PACK","score":0.13352675372015793,"conf":0.7550489168364992,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36623208853900}]},{"ctx":-4269670135160207256,"list":[{"id":"COMPRESSION_PACK","score":0.18190237706846413,"conf":0.8470339997532321,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36560754804900}]},{"ctx":3280338478900625401,"list":[{"id":"COMPRESSION_PACK","score":0.2046954581060313,"conf":0.8350897681773845,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36685722154800}]},{"ctx":-5226335229034382052,"list":[{"id":"COMPRESSION_PACK","score":0.2515183860668605,"conf":0.8830730967921929,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36664173008800},{"id":"FBB_PACK","score":-0.00918021759336638,"conf":0.9098864954063502,"cost":0.0,"mag":0.614812716277611,"promoted":false,"t":4420191489400},{"id":"RELOAD_PACK","score":-0.018819260345267833,"conf":0.8763932411135357,"cost":0.0,"mag":0.631632726206453,"promoted":false,"t":2359086117200}]},{"ctx":-7675465859131927770,"list":[{"id":"COMPRESSION_PACK","score":0.24190334423888066,"conf":0.8365454538710996,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36577038504300}]},{"ctx":-7055126896217291475,"list":[{"id":"COMPRESSION_PACK","score":0.23879380125620298,"conf":0.8289940427242953,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36718529066200},{"id":"RELOAD_PACK","score":0.026176613637916048,"conf":0.8541206740815009,"cost":0.0,"mag":0.6348494366526711,"promoted":false,"t":3063200529900},{"id":"FBB_PACK","score":0.001386929478002643,"conf":0.8449247329386167,"cost":0.0,"mag":0.6468737934620261,"promoted":false,"t":1332905408000}]},{"ctx":2532721441938899389,"list":[{"id":"COMPRESSION_PACK","score":0.15064544422066994,"conf":0.7813665625042142,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36626948073800}]},{"ctx":2121329348287729945,"list":[{"id":"COMPRESSION_PACK","score":0.22989129418873608,"conf":0.7321236840706336,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36512625687200}]},{"ctx":7301792399123309144,"list":[{"id":"NBT_PACK","score":-0.01593846534184165,"conf":0.885391416192812,"cost":0.0,"mag":0.5883986174339029,"promoted":false,"t":43778182763900}]},{"ctx":3270874836655180610,"list":[{"id":"COMPRESSION_PACK","score":0.2940269746907457,"conf":0.8729006566847196,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36725880193800}]},{"ctx":4518248788298933615,"list":[{"id":"NBT_PACK","score":-0.007694903806171723,"conf":0.93552550840889,"cost":0.0,"mag":0.5837425196765746,"promoted":false,"t":3036652826700}]},{"ctx":-5513217786338542881,"list":[{"id":"COMPRESSION_PACK","score":0.22891580736029452,"conf":0.8543851328870153,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36569480002200}]},{"ctx":-4557667455403614568,"list":[{"id":"COMPRESSION_PACK","score":0.2868279731070758,"conf":0.8331000139726713,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36734205045300}]},{"ctx":2701790488710532018,"list":[{"id":"COMPRESSION_PACK","score":0.20515120103878548,"conf":0.7774366448370583,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36565257834500}]},{"ctx":-1174989354169176631,"list":[{"id":"COMPRESSION_PACK","score":0.18414307495794766,"conf":0.8308776398321409,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36500145875800}]},{"ctx":-8278518922028025056,"list":[{"id":"COMPRESSION_PACK","score":0.10542544469462314,"conf":0.7125087872007315,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36628787198600}]},{"ctx":2993455921596464572,"list":[{"id":"COMPRESSION_PACK","score":0.18698143171579434,"conf":0.7978025405519322,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36553221896000}]},{"ctx":-6135469899485887866,"list":[{"id":"COMPRESSION_PACK","score":0.19527004932472608,"conf":0.8566589643544237,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36552967899500}]},{"ctx":9143198115289448945,"list":[{"id":"COMPRESSION_PACK","score":0.18566305134265806,"conf":0.8459865383998305,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36626681964000}]},{"ctx":-8833518414628468881,"list":[{"id":"COMPRESSION_PACK","score":0.15323064906187556,"conf":0.7364638461842752,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36560454625800}]},{"ctx":8345172935196743207,"list":[{"id":"COMPRESSION_PACK","score":0.08514952881003802,"conf":0.6630611167445041,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36569983647200}]},{"ctx":-6430961632837237800,"list":[{"id":"COMPRESSION_PACK","score":0.2263233283407815,"conf":0.8290960692833337,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36718783352500}]},{"ctx":-8272779471329898986,"list":[{"id":"COMPRESSION_PACK","score":0.08740587022106223,"conf":0.6972234579042018,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36570728077800}]},{"ctx":4861168836154853872,"list":[{"id":"COMPRESSION_PACK","score":0.24503823120693766,"conf":0.821224434452093,"cost":0.0,"mag":0.25157260458041253,"promoted":true,"t":36722847316700}]}],"variants":[{"id":"COMPRESSION_PACK","list":[{"variantId":"COMPRESSION_PACK#v#a21ff5a22a14540e#4","ctx":-6764418038447713266,"mag":0.1721005274744021,"bias":0.007493595823859028,"gate":0.638294971232022,"prob":1.0687474225961318,"scoreEma":0.0,"confEma":0.6705148419228849,"costEma":0.0,"dominance01":0.4305125315598295,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":36436578261400,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0},{"variantId":"COMPRESSION_PACK#v#a21c8fa22a1170e5#3","ctx":-6765374613564067611,"mag":0.267790416869556,"bias":-0.04943495772065615,"gate":0.6175510286817446,"prob":1.1596205500112586,"scoreEma":0.0,"confEma":0.6309217655733983,"costEma":0.0,"dominance01":0.42338577781692194,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":36436324466600,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0},{"variantId":"COMPRESSION_PACK#v#997d46a225321bb5#2","ctx":-7386670151595058251,"mag":0.2345537026790896,"bias":-0.0958917856187346,"gate":0.5500069702309494,"prob":1.0281872595362294,"scoreEma":0.0,"confEma":0.5818269689660225,"costEma":0.0,"dominance01":0.4145487144275943,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":36436071600000,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0},{"variantId":"COMPRESSION_PACK#v#9980aca22534fede#1","ctx":-7385713576478703906,"mag":0.22722332787132532,"bias":0.07867486494802581,"gate":0.5460494444015227,"prob":0.9667242932777947,"scoreEma":0.0,"confEma":0.4474601146784414,"costEma":0.0,"dominance01":0.3903626806558297,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":36435565978100,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0}]},{"id":"RELOAD_PACK","list":[{"variantId":"RELOAD_PACK#v#971fb230cb3f7348#2","ctx":-7557125727066295480,"mag":0.3603652905971157,"bias":0.02802999754965549,"gate":0.9729319308790861,"prob":1.143580054621728,"scoreEma":0.0,"confEma":0.9429095183442924,"costEma":0.0,"dominance01":0.5790779092271127,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":5286164910000,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0},{"variantId":"RELOAD_PACK#v#971fb230cb3f7348#1","ctx":-7557125727066295480,"mag":0.40131282316284345,"bias":0.10031687329386257,"gate":0.9569654241329406,"prob":1.026719519310875,"scoreEma":0.0,"confEma":0.9138848743946073,"costEma":0.0,"dominance01":0.5738534733161693,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":5066686693900,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0}]},{"id":"NBT_PACK","list":[{"variantId":"NBT_PACK#v#22893d061318c25c#2","ctx":2488587365398397532,"mag":0.3205404166031598,"bias":-0.08275180211689843,"gate":0.8137686628788541,"prob":0.9299325100412986,"scoreEma":0.0,"confEma":0.8583206067677489,"costEma":0.0,"dominance01":0.5598029685871966,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":12034052285500,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0},{"variantId":"NBT_PACK#v#34fe585c4503f4e0#1","ctx":3818586687374882016,"mag":0.4902425943916785,"bias":0.0069675099947877905,"gate":0.7959293147073991,"prob":1.1417565082420142,"scoreEma":0.0,"confEma":0.8324918309330582,"costEma":0.0,"dominance01":0.5551537889369522,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":47123014346900,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0}]},{"id":"FBB_PACK","list":[{"variantId":"FBB_PACK#v#b77853ccac4bbd1c#4","ctx":-5226335229034382052,"mag":0.5293894753016796,"bias":0.05262724353827136,"gate":0.8773514203737035,"prob":0.9367471744916378,"scoreEma":0.0,"confEma":0.9150749320424307,"costEma":0.0,"dominance01":0.5749994299570712,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":3559472767400,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0},{"variantId":"FBB_PACK#v#b77853ccac4bbd1c#3","ctx":-5226335229034382052,"mag":0.5199764288115869,"bias":0.04613758981016822,"gate":0.8728349660315042,"prob":1.1310639064600059,"scoreEma":0.0,"confEma":0.9053583773883385,"costEma":0.0,"dominance01":0.5732504501193346,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":3187394423400,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0},{"variantId":"FBB_PACK#v#b77853ccac4bbd1c#2","ctx":-5226335229034382052,"mag":0.41629250440720855,"bias":-0.04570631788346753,"gate":0.8955767801109986,"prob":0.9097322189441478,"scoreEma":0.0,"confEma":0.9022790748696186,"costEma":0.0,"dominance01":0.572696175665965,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":3077964597800,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0},{"variantId":"FBB_PACK#v#9e1a8d77b1ace856#1","ctx":-7054170321100937130,"mag":0.5306193082806817,"bias":0.0032304608487805225,"gate":0.8116371040766236,"prob":0.8656116605711445,"scoreEma":0.0,"confEma":0.7633602056934959,"costEma":0.0,"dominance01":0.5476907792142629,"trials":0,"successes":0,"failures":0,"promoted":false,"retired":false,"createdNs":1339206776900,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0}]}],"plans":[{"id":"RL_PACK","list":[{"planId":"RL_PACK#p#2260750612f61c70#1","ctx":2477108464002145392,"scoreEma":0.0,"confEma":0.11314405645028423,"costEma":0.0,"dominance01":0.43101077641203567,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","createdNs":16142521832300,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"RL_PACK","targetId":"RL_PACK","magnitude01":0.3398363700300271,"activationBias":0.11122247531301982,"confidenceGate01":0.5776945355846763,"probationScale":0.955589645429753,"batchSize":5,"deferTicks":2,"throttleStep":1,"cacheEntries":7,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"RL_PACK#p#2260750612f61c70#2","ctx":2477108464002145392,"scoreEma":0.0,"confEma":0.11314405645028423,"costEma":0.0,"dominance01":0.43101077641203567,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","parentA":"RL_PACK#tpl#2","createdNs":16142521832300,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"RL_PACK","targetId":"RL_PACK","magnitude01":0.38732197851694017,"activationBias":0.158287935032216,"confidenceGate01":0.5165137829213623,"probationScale":1.243114536906123,"batchSize":7,"deferTicks":3,"throttleStep":3,"cacheEntries":13,"interceptEnabled":true,"rewriteSafeEnabled":true}}]},{"id":"COMPRESSION_PACK","list":[{"planId":"COMPRESSION_PACK#p#9980aca22534fede#3","ctx":-7385713576478703906,"scoreEma":0.0,"confEma":0.4474601146784414,"costEma":0.0,"dominance01":0.4055396980049408,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","createdNs":36435565978100,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","magnitude01":0.19372300042295792,"activationBias":-0.0884648219100504,"confidenceGate01":0.5707623866543201,"probationScale":0.935091436261529,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"COMPRESSION_PACK#p#9980aca22534fede#4","ctx":-7385713576478703906,"scoreEma":0.0,"confEma":0.4474601146784414,"costEma":0.0,"dominance01":0.4055396980049408,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","parentA":"COMPRESSION_PACK#tpl#2","createdNs":36435565978100,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","magnitude01":0.4462725109379465,"activationBias":0.022881391079465574,"confidenceGate01":0.5623520088781709,"probationScale":0.9932132958756266,"batchSize":7,"deferTicks":2,"throttleStep":1,"cacheEntries":11,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"COMPRESSION_PACK#p#998412a22537e207#1","ctx":-7384757001362349561,"scoreEma":0.0,"confEma":0.3549803724249246,"costEma":0.0,"dominance01":0.3888933443993077,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","createdNs":36435310471800,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","magnitude01":0.29117204935091534,"activationBias":0.09150600388772068,"confidenceGate01":0.5724648549176414,"probationScale":0.9544868086463102,"batchSize":3,"deferTicks":0,"throttleStep":2,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"COMPRESSION_PACK#p#998412a22537e207#2","ctx":-7384757001362349561,"scoreEma":0.0,"confEma":0.3549803724249246,"costEma":0.0,"dominance01":0.3888933443993077,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","parentA":"COMPRESSION_PACK#tpl#2","createdNs":36435310471800,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","magnitude01":0.4740359160722627,"activationBias":-0.027046015480579236,"confidenceGate01":0.5828020254064376,"probationScale":1.201082353293217,"batchSize":7,"deferTicks":2,"throttleStep":2,"cacheEntries":10,"interceptEnabled":true,"rewriteSafeEnabled":true}}]},{"id":"RELOAD_PACK","list":[{"planId":"RELOAD_PACK#p#971fb230cb3f7348#3","ctx":-7557125727066295480,"scoreEma":0.0,"confEma":0.9429095183442924,"costEma":0.0,"dominance01":0.5737165641623794,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","createdNs":5286164910000,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"DEFER","domain":"RELOAD_PACK","targetId":"RELOAD_PACK","magnitude01":0.4081898978270891,"activationBias":-0.044680820950925376,"confidenceGate01":0.9595411966314658,"probationScale":1.0968391753519744,"batchSize":4,"deferTicks":2,"throttleStep":2,"cacheEntries":9,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"RELOAD_PACK#p#971fb230cb3f7348#4","ctx":-7557125727066295480,"scoreEma":0.0,"confEma":0.9429095183442924,"costEma":0.0,"dominance01":0.5737165641623794,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","parentA":"RELOAD_PACK#tpl#2","createdNs":5286164910000,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"DEFER","domain":"RELOAD_PACK","targetId":"RELOAD_PACK","magnitude01":0.5418019694341188,"activationBias":0.13054886482767203,"confidenceGate01":0.7264948965217363,"probationScale":0.9204183766186419,"batchSize":6,"deferTicks":3,"throttleStep":2,"cacheEntries":14,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"RELOAD_PACK#p#971fb230cb3f7348#1","ctx":-7557125727066295480,"scoreEma":0.0,"confEma":0.9138848743946073,"costEma":0.0,"dominance01":0.568492128251436,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","createdNs":5066686693900,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"DEFER","domain":"RELOAD_PACK","targetId":"RELOAD_PACK","magnitude01":0.37183606344311637,"activationBias":-0.07901272894033125,"confidenceGate01":0.8974248651516618,"probationScale":0.869733096879786,"batchSize":5,"deferTicks":2,"throttleStep":2,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"RELOAD_PACK#p#971fb230cb3f7348#2","ctx":-7557125727066295480,"scoreEma":0.0,"confEma":0.9138848743946073,"costEma":0.0,"dominance01":0.568492128251436,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","parentA":"RELOAD_PACK#tpl#2","createdNs":5066686693900,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"DEFER","domain":"RELOAD_PACK","targetId":"RELOAD_PACK","magnitude01":0.5199714086948963,"activationBias":0.12442919916157387,"confidenceGate01":0.7336698562231604,"probationScale":1.0643828763809549,"batchSize":5,"deferTicks":3,"throttleStep":3,"cacheEntries":13,"interceptEnabled":true,"rewriteSafeEnabled":true}}]},{"id":"NBT_PACK","list":[{"planId":"NBT_PACK#p#34fe585c4503f4e0#1","ctx":3818586687374882016,"scoreEma":0.0,"confEma":0.8324918309330582,"costEma":0.0,"dominance01":0.5702673267464384,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","createdNs":47123014346900,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"NBT_PACK","targetId":"NBT_PACK","magnitude01":0.37151308515413245,"activationBias":0.0024360643092932177,"confidenceGate01":0.8513722790916034,"probationScale":1.1603873828126459,"batchSize":4,"deferTicks":0,"throttleStep":2,"cacheEntries":10,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"NBT_PACK#p#34fe585c4503f4e0#2","ctx":3818586687374882016,"scoreEma":0.0,"confEma":0.8324918309330582,"costEma":0.0,"dominance01":0.5702673267464384,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","parentA":"NBT_PACK#tpl#2","createdNs":47123014346900,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"NBT_PACK","targetId":"NBT_PACK","magnitude01":0.425371016350937,"activationBias":-0.04523578354178348,"confidenceGate01":0.6947215303547194,"probationScale":1.0306667729128607,"batchSize":6,"deferTicks":3,"throttleStep":2,"cacheEntries":11,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"NBT_PACK#p#22893d061318c25c#3","ctx":2488587365398397532,"scoreEma":0.0,"confEma":0.8583206067677489,"costEma":0.0,"dominance01":0.5749165063966828,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","createdNs":12034052285500,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"NBT_PACK","targetId":"NBT_PACK","magnitude01":0.30317831037143755,"activationBias":0.009747581538704753,"confidenceGate01":0.8147904942313504,"probationScale":0.8559959545238721,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"NBT_PACK#p#22893d061318c25c#4","ctx":2488587365398397532,"scoreEma":0.0,"confEma":0.8583206067677489,"costEma":0.0,"dominance01":0.5749165063966828,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","parentA":"NBT_PACK#tpl#2","createdNs":12034052285500,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"NBT_PACK","targetId":"NBT_PACK","magnitude01":0.4172707528075491,"activationBias":0.13485260029244678,"confidenceGate01":0.7310950470098517,"probationScale":0.9912087008231649,"batchSize":5,"deferTicks":3,"throttleStep":1,"cacheEntries":14,"interceptEnabled":true,"rewriteSafeEnabled":true}}]},{"id":"FBB_PACK","list":[{"planId":"FBB_PACK#p#9e1a8d77b1ace856#3","ctx":-7054170321100937130,"scoreEma":0.0,"confEma":0.7633602056934959,"costEma":0.0,"dominance01":0.5450995909164983,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","createdNs":1339206776900,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","magnitude01":0.40964951147997686,"activationBias":-0.03813226288171939,"confidenceGate01":0.7775146322183797,"probationScale":1.0634665576049738,"batchSize":4,"deferTicks":2,"throttleStep":1,"cacheEntries":7,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"FBB_PACK#p#9e1a8d77b1ace856#4","ctx":-7054170321100937130,"scoreEma":0.0,"confEma":0.7633602056934959,"costEma":0.0,"dominance01":0.5450995909164983,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","parentA":"FBB_PACK#tpl#2","createdNs":1339206776900,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","magnitude01":0.4521719217629163,"activationBias":-0.00156915318640527,"confidenceGate01":0.7001385979663719,"probationScale":1.212103276651892,"batchSize":5,"deferTicks":1,"throttleStep":1,"cacheEntries":14,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"FBB_PACK#p#a21ff5a22a14540e#1","ctx":-6764418038447713266,"scoreEma":0.0,"confEma":0.3209202467886768,"costEma":0.0,"dominance01":0.46546039831363084,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","createdNs":7031275006000,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","magnitude01":0.570044636526802,"activationBias":0.07434114781851647,"confidenceGate01":0.5864008381490454,"probationScale":0.9495159179942034,"batchSize":4,"deferTicks":0,"throttleStep":1,"cacheEntries":9,"interceptEnabled":true,"rewriteSafeEnabled":true}},{"planId":"FBB_PACK#p#a21ff5a22a14540e#2","ctx":-6764418038447713266,"scoreEma":0.0,"confEma":0.3209202467886768,"costEma":0.0,"dominance01":0.46546039831363084,"trials":0,"successes":0,"failures":0,"lifecycle":"CANDIDATE","parentA":"FBB_PACK#tpl#2","createdNs":7031275006000,"lastTriedNs":0,"lastPromotedNs":0,"quarantineUntilNs":0,"plan":{"family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","magnitude01":0.595066811362778,"activationBias":-0.010558545617415434,"confidenceGate01":0.5699284386767597,"probationScale":1.289104861509236,"batchSize":5,"deferTicks":1,"throttleStep":2,"cacheEntries":10,"interceptEnabled":true,"rewriteSafeEnabled":true}}]}],"templates":[{"id":"COMPRESSION_PACK","list":[{"templateId":"COMPRESSION_PACK#tpl#1","family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"COMPRESSION_PACK#tpl#2","family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"COMPRESSION_PACK#tpl#3","family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"COMPRESSION_PACK#tpl#st#212350f7a1f4","family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","baseMagnitude01":0.2421864621500929,"activationBias":0.0,"confidenceGate01":0.5,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"COMPRESSION_PACK#tpl#st#21236f1acf80","family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","baseMagnitude01":0.24385708828559038,"activationBias":0.0,"confidenceGate01":0.5818269689660225,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"COMPRESSION_PACK#tpl#st#21237e2d3fa8","family":"REWRITE_SAFE","domain":"COMPRESSION_PACK","targetId":"COMPRESSION_PACK","baseMagnitude01":0.24496283116818834,"activationBias":0.0,"confidenceGate01":0.6309217655733983,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"varint_fastpath","list":[{"templateId":"varint_fastpath#tpl#1","family":"INTERCEPT","domain":"varint_fastpath","targetId":"varint_fastpath","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"varint_fastpath#tpl#2","family":"INTERCEPT","domain":"varint_fastpath","targetId":"varint_fastpath","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"varint_fastpath#tpl#3","family":"INTERCEPT","domain":"varint_fastpath","targetId":"varint_fastpath","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"RELOAD_PACK","list":[{"templateId":"RELOAD_PACK#tpl#1","family":"DEFER","domain":"RELOAD_PACK","targetId":"RELOAD_PACK","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"RELOAD_PACK#tpl#2","family":"DEFER","domain":"RELOAD_PACK","targetId":"RELOAD_PACK","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"RELOAD_PACK#tpl#3","family":"DEFER","domain":"RELOAD_PACK","targetId":"RELOAD_PACK","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"RELOAD_PACK#tpl#st#49bae0f820c","family":"DEFER","domain":"RELOAD_PACK","targetId":"RELOAD_PACK","baseMagnitude01":0.42714480185896403,"activationBias":0.0,"confidenceGate01":0.9138848743946073,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"nbtio_stream_wrap","list":[{"templateId":"nbtio_stream_wrap#tpl#1","family":"INTERCEPT","domain":"nbtio_stream_wrap","targetId":"nbtio_stream_wrap","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"nbtio_stream_wrap#tpl#2","family":"INTERCEPT","domain":"nbtio_stream_wrap","targetId":"nbtio_stream_wrap","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"nbtio_stream_wrap#tpl#3","family":"INTERCEPT","domain":"nbtio_stream_wrap","targetId":"nbtio_stream_wrap","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"io_wrap","list":[{"templateId":"io_wrap#tpl#1","family":"INTERCEPT","domain":"io_wrap","targetId":"io_wrap","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"io_wrap#tpl#2","family":"INTERCEPT","domain":"io_wrap","targetId":"io_wrap","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"io_wrap#tpl#3","family":"INTERCEPT","domain":"io_wrap","targetId":"io_wrap","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"RL_PACK","list":[{"templateId":"RL_PACK#tpl#1","family":"BATCH","domain":"RL_PACK","targetId":"RL_PACK","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"RL_PACK#tpl#2","family":"BATCH","domain":"RL_PACK","targetId":"RL_PACK","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"RL_PACK#tpl#3","family":"BATCH","domain":"RL_PACK","targetId":"RL_PACK","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"json_reload_cache","list":[{"templateId":"json_reload_cache#tpl#1","family":"CACHE","domain":"json_reload_cache","targetId":"json_reload_cache","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"json_reload_cache#tpl#2","family":"CACHE","domain":"json_reload_cache","targetId":"json_reload_cache","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"json_reload_cache#tpl#3","family":"CACHE","domain":"json_reload_cache","targetId":"json_reload_cache","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"NBT_PACK","list":[{"templateId":"NBT_PACK#tpl#1","family":"BATCH","domain":"NBT_PACK","targetId":"NBT_PACK","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"NBT_PACK#tpl#2","family":"BATCH","domain":"NBT_PACK","targetId":"NBT_PACK","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"NBT_PACK#tpl#3","family":"BATCH","domain":"NBT_PACK","targetId":"NBT_PACK","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"NBT_PACK#tpl#st#2adbae87e894","family":"BATCH","domain":"NBT_PACK","targetId":"NBT_PACK","baseMagnitude01":0.4068060891409368,"activationBias":0.0,"confidenceGate01":0.8324918309330582,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"rl_cache","list":[{"templateId":"rl_cache#tpl#1","family":"CACHE","domain":"rl_cache","targetId":"rl_cache","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"rl_cache#tpl#2","family":"CACHE","domain":"rl_cache","targetId":"rl_cache","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"rl_cache#tpl#3","family":"CACHE","domain":"rl_cache","targetId":"rl_cache","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"resource_reload_io_wrap","list":[{"templateId":"resource_reload_io_wrap#tpl#1","family":"DEFER","domain":"resource_reload_io_wrap","targetId":"resource_reload_io_wrap","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"resource_reload_io_wrap#tpl#2","family":"DEFER","domain":"resource_reload_io_wrap","targetId":"resource_reload_io_wrap","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"resource_reload_io_wrap#tpl#3","family":"DEFER","domain":"resource_reload_io_wrap","targetId":"resource_reload_io_wrap","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"PARAM_TUNE","list":[{"templateId":"PARAM_TUNE#tpl#1","family":"THROTTLE","domain":"PARAM_TUNE","targetId":"PARAM_TUNE","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"PARAM_TUNE#tpl#2","family":"THROTTLE","domain":"PARAM_TUNE","targetId":"PARAM_TUNE","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"PARAM_TUNE#tpl#3","family":"THROTTLE","domain":"PARAM_TUNE","targetId":"PARAM_TUNE","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"ayw","list":[{"templateId":"ayw#tpl#1","family":"THROTTLE","domain":"ayw","targetId":"ayw","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"ayw#tpl#2","family":"THROTTLE","domain":"ayw","targetId":"ayw","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"ayw#tpl#3","family":"THROTTLE","domain":"ayw","targetId":"ayw","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]},{"id":"FBB_PACK","list":[{"templateId":"FBB_PACK#tpl#1","family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","baseMagnitude01":0.35,"activationBias":0.0,"confidenceGate01":0.6,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"FBB_PACK#tpl#2","family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","baseMagnitude01":0.52,"activationBias":0.05,"confidenceGate01":0.66,"probationScale":1.1,"batchSize":6,"deferTicks":2,"throttleStep":2,"cacheEntries":12,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"FBB_PACK#tpl#3","family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","baseMagnitude01":0.24,"activationBias":-0.05,"confidenceGate01":0.55,"probationScale":0.9,"batchSize":3,"deferTicks":0,"throttleStep":1,"cacheEntries":6,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"FBB_PACK#tpl#st#137cef1b844","family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","baseMagnitude01":0.5005358354585883,"activationBias":0.0,"confidenceGate01":0.7633602056934959,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"FBB_PACK#tpl#st#2cca4fc8a28","family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","baseMagnitude01":0.4778733161747951,"activationBias":0.0,"confidenceGate01":0.9022790748696186,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true},{"templateId":"FBB_PACK#tpl#st#3e377b7cc3f","family":"BATCH","domain":"FBB_PACK","targetId":"FBB_PACK","baseMagnitude01":0.5230172754688323,"activationBias":0.0,"confidenceGate01":0.9184387448990693,"probationScale":1.0,"batchSize":4,"deferTicks":1,"throttleStep":1,"cacheEntries":8,"interceptEnabled":true,"rewriteSafeEnabled":true,"enabled":true}]}],"planConflicts":[],"maintenanceBudget":{"lastRunNs":0,"minIntervalNs":3645000000,"maxWorkNs":1200000,"maxEntriesPerPass":12,"passCounter":4},"states":[{"id":"COMPRESSION_PACK","hardFails":0,"softFails":0,"retired":false,"trials":2184,"successes":136,"failures":7,"confidence01":0.861307056809699,"lastScore":0.24785263572119087,"lastNoiseFloor":0.1933856186851864,"lastSelfCost01":0.0,"lastContextKey":-8353913650653924321,"promoted":false,"probationPasses":136,"probationFails":7,"probationUntilNs":5303171135100,"lastPromotedNs":36726632439500,"lastRetiredNs":0,"learnedMagnitude01":0.2670976325472531,"magnitudeEma01":0.26709763254725316,"promotedScore":0.2499196310285821,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.8445997105820477,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"varint_fastpath","hardFails":0,"softFails":0,"retired":false,"trials":0,"successes":0,"failures":0,"confidence01":0.0,"lastScore":0.0,"lastNoiseFloor":0.0,"lastSelfCost01":0.0,"lastContextKey":0,"promoted":false,"probationPasses":0,"probationFails":0,"probationUntilNs":0,"lastPromotedNs":0,"lastRetiredNs":0,"learnedMagnitude01":0.0,"magnitudeEma01":0.0,"promotedScore":0.0,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.55,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"RELOAD_PACK","hardFails":0,"softFails":1,"retired":true,"trials":389,"successes":2,"failures":362,"confidence01":0.9704146528688731,"lastScore":-0.010717192827306122,"lastNoiseFloor":0.0025202869829448566,"lastSelfCost01":0.0,"lastContextKey":-2073620450866630246,"promoted":false,"probationPasses":2,"probationFails":362,"probationUntilNs":8408833368956,"lastPromotedNs":0,"lastRetiredNs":8408091484400,"learnedMagnitude01":0.4923391998165309,"magnitudeEma01":0.4890477056603924,"promotedScore":-0.0054071574506151954,"quarantineUntilNs":8410155849494,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.9704146528688731,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"nbtio_stream_wrap","hardFails":0,"softFails":0,"retired":false,"trials":0,"successes":0,"failures":0,"confidence01":0.0,"lastScore":0.0,"lastNoiseFloor":0.0,"lastSelfCost01":0.0,"lastContextKey":0,"promoted":false,"probationPasses":0,"probationFails":0,"probationUntilNs":0,"lastPromotedNs":0,"lastRetiredNs":0,"learnedMagnitude01":0.0,"magnitudeEma01":0.0,"promotedScore":0.0,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.55,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"io_wrap","hardFails":0,"softFails":0,"retired":false,"trials":0,"successes":0,"failures":0,"confidence01":0.0,"lastScore":0.0,"lastNoiseFloor":0.0,"lastSelfCost01":0.0,"lastContextKey":-6140252775067659591,"promoted":false,"probationPasses":0,"probationFails":0,"probationUntilNs":13024877540700,"lastPromotedNs":0,"lastRetiredNs":0,"learnedMagnitude01":0.0,"magnitudeEma01":0.0,"promotedScore":0.0,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.55,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"RL_PACK","hardFails":0,"softFails":1,"retired":true,"trials":78,"successes":1,"failures":60,"confidence01":0.942760214485247,"lastScore":-0.017640203386242247,"lastNoiseFloor":0.0026762870801754998,"lastSelfCost01":0.0,"lastContextKey":-2987537996899907785,"promoted":false,"probationPasses":1,"probationFails":60,"probationUntilNs":10241922683578,"lastPromotedNs":0,"lastRetiredNs":10241679764600,"learnedMagnitude01":0.4534411450530753,"magnitudeEma01":0.4622585772179646,"promotedScore":-0.009415592524787004,"quarantineUntilNs":10243759314154,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.9572162759599154,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"json_reload_cache","hardFails":0,"softFails":0,"retired":false,"trials":0,"successes":0,"failures":0,"confidence01":0.0,"lastScore":0.0,"lastNoiseFloor":0.0,"lastSelfCost01":0.0,"lastContextKey":9145365200025786882,"promoted":false,"probationPasses":0,"probationFails":0,"probationUntilNs":4915842706700,"lastPromotedNs":0,"lastRetiredNs":0,"learnedMagnitude01":0.0,"magnitudeEma01":0.0,"promotedScore":0.0,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.55,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"NBT_PACK","hardFails":0,"softFails":0,"retired":false,"trials":353,"successes":2,"failures":349,"confidence01":0.9080789973629675,"lastScore":-0.019960449974681962,"lastNoiseFloor":8.57394708403624E-4,"lastSelfCost01":0.0,"lastContextKey":4851705193909409081,"promoted":false,"probationPasses":2,"probationFails":349,"probationUntilNs":12413775515756,"lastPromotedNs":0,"lastRetiredNs":0,"learnedMagnitude01":0.41012191030024286,"magnitudeEma01":0.4125460654473117,"promotedScore":-0.009682541759555267,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.9080789973629675,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"rl_cache","hardFails":0,"softFails":0,"retired":false,"trials":0,"successes":0,"failures":0,"confidence01":0.0,"lastScore":0.0,"lastNoiseFloor":0.0,"lastSelfCost01":0.0,"lastContextKey":0,"promoted":false,"probationPasses":0,"probationFails":0,"probationUntilNs":0,"lastPromotedNs":0,"lastRetiredNs":0,"learnedMagnitude01":0.0,"magnitudeEma01":0.0,"promotedScore":0.0,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.55,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"resource_reload_io_wrap","hardFails":0,"softFails":0,"retired":false,"trials":0,"successes":0,"failures":0,"confidence01":0.0,"lastScore":0.0,"lastNoiseFloor":0.0,"lastSelfCost01":0.0,"lastContextKey":0,"promoted":false,"probationPasses":0,"probationFails":0,"probationUntilNs":0,"lastPromotedNs":0,"lastRetiredNs":0,"learnedMagnitude01":0.0,"magnitudeEma01":0.0,"promotedScore":0.0,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.55,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"PARAM_TUNE","hardFails":0,"softFails":0,"retired":false,"trials":0,"successes":0,"failures":0,"confidence01":0.0,"lastScore":0.0,"lastNoiseFloor":0.0,"lastSelfCost01":0.0,"lastContextKey":8392957293123041436,"promoted":false,"probationPasses":0,"probationFails":0,"probationUntilNs":12229307088600,"lastPromotedNs":0,"lastRetiredNs":0,"learnedMagnitude01":0.0,"magnitudeEma01":0.0,"promotedScore":0.0,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.55,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"ayw","hardFails":0,"softFails":0,"retired":false,"trials":0,"successes":0,"failures":0,"confidence01":0.0,"lastScore":0.0,"lastNoiseFloor":0.0,"lastSelfCost01":0.0,"lastContextKey":0,"promoted":false,"probationPasses":0,"probationFails":0,"probationUntilNs":0,"lastPromotedNs":0,"lastRetiredNs":0,"learnedMagnitude01":0.0,"magnitudeEma01":0.0,"promotedScore":0.0,"quarantineUntilNs":0,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.55,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true},{"id":"FBB_PACK","hardFails":0,"softFails":0,"retired":true,"trials":219,"successes":7,"failures":156,"confidence01":0.9487817552502454,"lastScore":-0.016379746361511165,"lastNoiseFloor":0.0032078436352528713,"lastSelfCost01":0.0,"lastContextKey":-2987537996899907785,"promoted":false,"probationPasses":7,"probationFails":156,"probationUntilNs":6937736516466,"lastPromotedNs":0,"lastRetiredNs":6937494228100,"learnedMagnitude01":0.49351261368978383,"magnitudeEma01":0.4792131088881953,"promotedScore":-0.005464372507804893,"quarantineUntilNs":6939569152246,"appliedActivationBias":0.0,"appliedConfidenceGate01":0.9633303207004573,"appliedBatchSize":4,"appliedDeferTicks":1,"appliedThrottleStep":1,"appliedCacheEntries":8,"appliedInterceptEnabled":true,"appliedRewriteSafeEnabled":true}]},"contention":{"budgetNs":90000,"threads":[]},"hotspots":{"budgetNs":120000,"threads":[]},"bestAction":{"id":"io_wrap","trials":27,"meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"score":0.0,"lastNs":13024427540700},"bestActionCandidates":[{"id":"io_wrap","trials":27,"meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"score":0.0,"lastNs":13024427540700},{"id":"json_reload_cache","trials":30,"meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"score":0.0,"lastNs":4915392706700},{"id":"PARAM_TUNE","trials":29,"meanReward":0.0,"riskEwma":0.0,"costEwma":0.0,"score":0.0,"lastNs":12228857088600},{"id":"NBT_PACK","trials":353,"meanReward":-3.148780748894869E-5,"riskEwma":0.0,"costEwma":0.0,"score":-3.148780748894869E-5,"lastNs":12398674688000},{"id":"RELOAD_PACK","trials":389,"meanReward":4.456858642081871E-5,"riskEwma":0.049126362278141086,"costEwma":0.0,"score":-0.024518612552649723,"lastNs":8408091821100},{"id":"FBB_PACK","trials":219,"meanReward":7.086460782604812E-4,"riskEwma":0.05216327281119075,"costEwma":0.0,"score":-0.025372990327334893,"lastNs":6937494510500},{"id":"RL_PACK","trials":78,"meanReward":5.122669398791994E-4,"riskEwma":0.06038098661460272,"costEwma":0.0,"score":-0.02967822636742216,"lastNs":10241680017100},{"id":"COMPRESSION_PACK","trials":2184,"meanReward":-0.058915125184621164,"riskEwma":0.0,"costEwma":0.0,"score":-0.058915125184621164,"lastNs":5698387943000}]} \ No newline at end of file diff --git a/minecraft/config/adaptive optimization/session.json b/minecraft/config/adaptive optimization/session.json new file mode 100644 index 0000000..7eb27f9 --- /dev/null +++ b/minecraft/config/adaptive optimization/session.json @@ -0,0 +1 @@ +{"profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","startedAtNs":13248270515100,"startedAtIso":"2026-07-10T20:17:13.147595400Z","mc":"1.20.1","forge":"47.4.21","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization","regulationLevelAtStart":0.0} \ No newline at end of file diff --git a/minecraft/config/adaptive optimization/telemetry.jsonl b/minecraft/config/adaptive optimization/telemetry.jsonl new file mode 100644 index 0000000..fe84c1c --- /dev/null +++ b/minecraft/config/adaptive optimization/telemetry.jsonl @@ -0,0 +1,50 @@ +{"tsNs":12490505570800,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.21","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":344870054400,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":592843305000,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":2000260300,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":12490505570800,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.21|client","serverRuntimeKey":"1.20.1|47.4.21|server"} +{"tsNs":12810504897000,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":1999178600,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.21|client","serverRuntimeKey":"1.20.1|47.4.21|server"} +{"tsNs":11884578066300,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.21|client","serverRuntimeKey":"1.20.1|47.4.21|server"} +{"tsNs":12124578300900,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":1999818200,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.21|client","serverRuntimeKey":"1.20.1|47.4.21|server"} +{"tsNs":5409342490700,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":5885342488900,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":2000143600,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":4655411313000,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":4865409360300,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":2000319600,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":2836588958900,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":3112588003100,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":1999932000,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":1472953486000,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":1728953103000,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":1999897000,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":45584944769400,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":1317138592200,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":10564705235400,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":10129341773400,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":10371341375000,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":1999632200,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":6385533042300,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":7119531488900,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":2000318100,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":5589459068200,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":5919459133600,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":2000196300,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":5034481507700,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":5358475215500,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":1999826600,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":974301390200,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":1244300907800,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":1999768500,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":1360829425400,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":1568828302700,"kind":"RUNTIME_SESSION","reason":"ENTER_WORLD_OR_SERVER","gameActive":true,"intervalNs":1999162100,"bootstrapIdle":false,"hookActivationPending":false,"transformSeen":true,"hookSeen":true,"callbackSeen":true,"pipelineSeen":true,"launchPluginInit":true,"launchPluginHandles":true,"launchPluginProcess":true,"launchPluginPatched":true,"launchPluginLastClass":"net/minecraft/client/Minecraft","launchPluginMode":"coremod_fallback","runtimeSeen":true,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.20|client","serverRuntimeKey":"1.20.1|47.4.20|server"} +{"tsNs":13566713170700,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":1732351145118700,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\Curseforge\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":11464564111600,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":10771446462400,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":15117863178100,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":1947369781000,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":12746647567300,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":10276523121000,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":957873006900,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":820964337700,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":5879026279500,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":3777555429800,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":3336820215900,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":2742696697400,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":1458922669400,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":37428732897200,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":33819003953000,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.18","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":33823004794100,"kind":"PROFILE_BOOTSTRAP","source":"PERSIST"} +{"tsNs":13248270515100,"kind":"BOOT","profileVersion":"ao2_102_singlefile_asm_adaptive_params_hysteresis_contmap","mc":"1.20.1","forge":"47.4.21","dir":"D:\\cursefoge\\minecraft\\Instances\\Monumental Experience\\config\\adaptive optimization"} +{"tsNs":13248270515100,"kind":"RUNTIME_SESSION","reason":"BOOTSTRAP_IDLE","gameActive":false,"intervalNs":0,"bootstrapIdle":true,"hookActivationPending":false,"transformSeen":false,"hookSeen":false,"callbackSeen":false,"pipelineSeen":false,"launchPluginInit":false,"launchPluginHandles":false,"launchPluginProcess":false,"launchPluginPatched":false,"launchPluginLastClass":"","launchPluginMode":"","runtimeSeen":false,"policySeen":false,"targetCacheDirty":false,"clientRuntimeKey":"1.20.1|47.4.21|client","serverRuntimeKey":"1.20.1|47.4.21|server"} diff --git a/minecraft/config/additional-additions-config.json b/minecraft/config/additional-additions-config.json new file mode 100644 index 0000000..d0c6a52 --- /dev/null +++ b/minecraft/config/additional-additions-config.json @@ -0,0 +1,43 @@ +{ + "version": 8, + "FoodItems": { + "FriedEgg": true, + "BerryPie": true, + "HoneyedApple": true + }, + "WateringCan": true, + "RoseGold": true, + "Ropes": true, + "EnchantmentPrecision": true, + "EnchantmentSpeed": true, + "Wrench": true, + "CopperPatina": true, + "AmethystLamp": { + "enabled": true, + "despawnChance": 0.5 + }, + "Crossbows": true, + "TridentShard": true, + "GlowStick": true, + "GildedNetherite": { + "enabled": true, + "fireResistancePerPiece": 2.5 + }, + "DepthMeter": { + "enabled": true, + "displayElevationAlways": false + }, + "MysteriousBundle": true, + "CompostableRottenFlesh": true, + "MusicDiscs": true, + "NoteBlockAmethystSounds": true, + "ShipwreckSpyglassLoot": true, + "PocketJukebox": true, + "ChickenNugget": true, + "PoweredRailsCopperRecipe": true, + "GlowBerryEatGlow": { + "enabled": true, + "duration": 5 + }, + "HastePotions": true +} \ No newline at end of file diff --git a/minecraft/config/additional_attributes-client.toml b/minecraft/config/additional_attributes-client.toml new file mode 100644 index 0000000..58e3477 --- /dev/null +++ b/minecraft/config/additional_attributes-client.toml @@ -0,0 +1,3 @@ +#If enabled innate spells won't be added to the selection if an equally or more powerful spell of the same type is already present +skip_innate = false + diff --git a/minecraft/config/additionalbanners/trades/anchor.json b/minecraft/config/additionalbanners/trades/anchor.json new file mode 100644 index 0000000..99a7bd2 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/anchor.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/balance.json b/minecraft/config/additionalbanners/trades/balance.json new file mode 100644 index 0000000..99a7bd2 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/balance.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/chain.json b/minecraft/config/additionalbanners/trades/chain.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/chain.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/clubs.json b/minecraft/config/additionalbanners/trades/clubs.json new file mode 100644 index 0000000..948b8d0 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/clubs.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/cobweb.json b/minecraft/config/additionalbanners/trades/cobweb.json new file mode 100644 index 0000000..ada2abc --- /dev/null +++ b/minecraft/config/additionalbanners/trades/cobweb.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/diamond.json b/minecraft/config/additionalbanners/trades/diamond.json new file mode 100644 index 0000000..948b8d0 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/diamond.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/dragon.json b/minecraft/config/additionalbanners/trades/dragon.json new file mode 100644 index 0000000..ada2abc --- /dev/null +++ b/minecraft/config/additionalbanners/trades/dragon.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/frame.json b/minecraft/config/additionalbanners/trades/frame.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/frame.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/grass.json b/minecraft/config/additionalbanners/trades/grass.json new file mode 100644 index 0000000..99a7bd2 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/grass.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/heart.json b/minecraft/config/additionalbanners/trades/heart.json new file mode 100644 index 0000000..948b8d0 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/heart.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/hex.json b/minecraft/config/additionalbanners/trades/hex.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/hex.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/kelp.json b/minecraft/config/additionalbanners/trades/kelp.json new file mode 100644 index 0000000..99a7bd2 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/kelp.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/moon.json b/minecraft/config/additionalbanners/trades/moon.json new file mode 100644 index 0000000..948b8d0 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/moon.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/mushroom.json b/minecraft/config/additionalbanners/trades/mushroom.json new file mode 100644 index 0000000..99a7bd2 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/mushroom.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/phantom.json b/minecraft/config/additionalbanners/trades/phantom.json new file mode 100644 index 0000000..ada2abc --- /dev/null +++ b/minecraft/config/additionalbanners/trades/phantom.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/prismarine.json b/minecraft/config/additionalbanners/trades/prismarine.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/prismarine.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/pumpkin.json b/minecraft/config/additionalbanners/trades/pumpkin.json new file mode 100644 index 0000000..99a7bd2 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/pumpkin.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/scales.json b/minecraft/config/additionalbanners/trades/scales.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/scales.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/shield.json b/minecraft/config/additionalbanners/trades/shield.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/shield.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/snowflake.json b/minecraft/config/additionalbanners/trades/snowflake.json new file mode 100644 index 0000000..99a7bd2 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/snowflake.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/spades.json b/minecraft/config/additionalbanners/trades/spades.json new file mode 100644 index 0000000..948b8d0 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/spades.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/spider.json b/minecraft/config/additionalbanners/trades/spider.json new file mode 100644 index 0000000..ada2abc --- /dev/null +++ b/minecraft/config/additionalbanners/trades/spider.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/squares.json b/minecraft/config/additionalbanners/trades/squares.json new file mode 100644 index 0000000..948b8d0 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/squares.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": true, + "emeraldCost": 23, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/squid.json b/minecraft/config/additionalbanners/trades/squid.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/squid.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/starburst.json b/minecraft/config/additionalbanners/trades/starburst.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/starburst.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/steps.json b/minecraft/config/additionalbanners/trades/steps.json new file mode 100644 index 0000000..99a7bd2 --- /dev/null +++ b/minecraft/config/additionalbanners/trades/steps.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 8, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/sword.json b/minecraft/config/additionalbanners/trades/sword.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/sword.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/trident.json b/minecraft/config/additionalbanners/trades/trident.json new file mode 100644 index 0000000..ada2abc --- /dev/null +++ b/minecraft/config/additionalbanners/trades/trident.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": true, + "enabled": true, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 18, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalbanners/trades/waterfall.json b/minecraft/config/additionalbanners/trades/waterfall.json new file mode 100644 index 0000000..30063ec --- /dev/null +++ b/minecraft/config/additionalbanners/trades/waterfall.json @@ -0,0 +1,18 @@ +{ + "wanderingVillager": { + "isRareTrade": false, + "enabled": true, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + }, + "shepherdOffer": { + "tier": "EXPERT", + "enabled": false, + "emeraldCost": 13, + "maxUses": 8, + "villagerExp": 1, + "priceMultiplier": 0.5 + } +} \ No newline at end of file diff --git a/minecraft/config/additionalstructures-client.toml b/minecraft/config/additionalstructures-client.toml new file mode 100644 index 0000000..267011b --- /dev/null +++ b/minecraft/config/additionalstructures-client.toml @@ -0,0 +1,6 @@ + +#General +[general] + #Activate the Update-Checker + update-checker = true + diff --git a/minecraft/config/addonslib-common.toml b/minecraft/config/addonslib-common.toml new file mode 100644 index 0000000..4127559 --- /dev/null +++ b/minecraft/config/addonslib-common.toml @@ -0,0 +1,5 @@ + +["AddonsLib Config !"] + #Filter the logs error for blockstate and model + "Define log filter" = true + diff --git a/minecraft/config/adorablehamsterpets/announcements.json b/minecraft/config/adorablehamsterpets/announcements.json new file mode 100644 index 0000000..df4cfa2 --- /dev/null +++ b/minecraft/config/adorablehamsterpets/announcements.json @@ -0,0 +1,7 @@ +{ + "last_acknowledged_update": "0.0.0", + "manifest_etag": "\"300659b782b569815a7d3a760833a66624658508107b31949629af1a32a74274\"", + "seen_ids": [ + "curseforge_moty_vote" + ] +} \ No newline at end of file diff --git a/minecraft/config/adorablehamsterpets/main.toml b/minecraft/config/adorablehamsterpets/main.toml new file mode 100644 index 0000000..0e21b88 --- /dev/null +++ b/minecraft/config/adorablehamsterpets/main.toml @@ -0,0 +1,524 @@ +# Don't change this! Version used to track needed updates. +version = 0 +# Master switch. Turn this off if you hate fun. Disables all crowns, even those worn by others. +enableSupporterCrown = true +# Turns off the sparkling sound effects the emanate from the crown. Affects all crowns, even those worn by others. +enableCrownAudio = true +# How loud the crown sparkles are. Crank it up if your 50 sound physics mods made it inaudible, or turn it down if the majestic twinkling is eroding your sanity. +crownAudioVolume = 1.0 +# Toggle this off if you want to hide your own crown from yourself and everyone else. Only affects your own crown. +showMyCrown = true +# Should your own crown decorate your vision while you're trying to mine? Turn it off if you are tired of flexing on yourself. Only affects your own crown. +showCrownInFirstPerson = true +# Pick your own crown's specific color. Other players will instantly see this color change above your head. Only affects your own crown. +crownTheme = "GOLD" +# How many sparkly particles to spawn per tick (20 ticks per second). Makes the crown thicker or thinner. Affects all crowns. +crownParticleCount = 10 +# How wide (in blocks) the halo of superiority extends around your head. Affects all crowns. +crownRadius = 0.3 +# How thick the crown is from the inner edge (the inside rim around your head) to the outer edge. Affects all crowns. +crownHorizontalThickness = 0.02 +# How tall the crown is from the bottom edge to the top edge. Increase this to make the crown less of a hula-hoop and more of a cylinder. Affects all crowns. +crownVerticalThickness = 0.2 +# Nudge the crown up or down. Move it high enough and you'll have a halo. Vanity for the win. Affects all crowns. +crownYOffset = 0.25 +# [WARNING: THIS MAKES ALL HAMSTERS LOOK IDENTICAL]. Disables all texture overlays, accessories, and armor rendering on hamsters, forcing them to render with a single grayscale texture. Drastically improves FPS when hundreds of thousands of hamsters are on screen. Can be toggled on and off via a custom keybind. +performanceMode = false +# Hand-delivers the sacred texts on first login. +enableAutoGuidebookDelivery = true +# If Auto Delivery is disabled (like in most modpacks), give the guidebook the first time the player actually spots a wild hamster from 10 blocks away. This will only trigger once, and only if the player has never received the guidebook before. +enableAutoGuidebookDeliveryFallback = true +# A list of UUIDs for players who have already seen the missing guidebook warning. Ensures that everyone sees this, but only once unless you delete your name from this list. +playersWhoHaveSeenGuidebookWarning = [ + "Mclovin4100" +] +# How long (in ticks) I wait before realizing you're book-less and panicking. 3600 = 3 minutes. +guidebookWarningTimer = 3600 +# If true, you must hold sneak to expose their genetic secrets. If false, their DNA is proudly broadcasted to you at all times. Set to False by default so I don't get spammed on Discord. +requireSneakForCustomJadeInfo = false +# If true, the default Jade info will also be hidden unless you are actively sneaking. This setting only matters if 'Require Sneaking' is enabled above. +requireSneakForDefaultJadeInfo = false +# Display the default Jade entity name. You know, 'Hampter'. +showJadeEntityName = true +# Display the default Jade health hearts. In case you want to know exactly how close your hamster is to the great beyond. +showJadeEntityHealth = true +# Display the default Jade growth timer that shows how long until babies become adults. Useful if you believe age is just a feeling. +showJadeGrowthTime = true +# Display the default Jade owner name. So everyone knows who is responsible when it happens. +showJadeOwner = true +# Display how long this hamster has managed to survive your world. +showJadeAge = true +# Display the underlying fur palette. +showJadeBaseCoat = true +# Display the naturally occurring fur overlay patterns. +showJadeWildOverlay = true +# Display the mutations you caused by genetic engineering. +showJadeBreedingOverlay = true +# Display whether they possess the recessive red eye gene. Helpful since the eyes still appear black. +showJadeEyeColor = true +# Display the default Jade inventory contents so you can see what your hamster is hoarding. +showJadeInventory = true +# The duration (in ticks) that action bar messages stay on screen. Only affects your personal computer. Vanilla is 60 (3 seconds), which is barely enough time to realize you're reading. Crank this up to savor the text. (20 ticks = 1 second). +actionBarDuration = 100 +# Little status mumbles when your co-pilot disembarks. +enableShoulderDismountMessages = true +# Whether to show an action bar message when a Tree Heist begins. +enableTreeHeistStartMessage = true +# Get an action bar message when your hamster's bed is broken. Here's where you can turn it off if you prefer... complete immersion. +enableBedBreakMessage = true +# Warns you when a newly tamed baby hamster refuses to follow you and informs you how to unlink them from their parent. +enableTamedBabyWarningMessage = true +# If true, you must have a Name Tag in your inventory (or the hamster's cheeks) to confirm the rename, and it will be consumed. True by default to keep things vanilla-friendly-ish. +consumeNameTagForGuiRename = true +# Which side of the name the little pencil icon sits on. For the easterners who prefer reading from right to left. +renameIconPlacement = "LEFT" +# Helpful whispers on what the heck that cucumber is for. +enableItemTooltips = true +# If true, the hamster's age progresses at real-world speed (24 hours = 1 day) instead of Minecraft speed (20 minutes = 1 day). +displayAgeInIrlTime = false +# More stats than anyone asked for. Defaults to off— mercifully. +enableJadeHamsterDebugInfo = false +# The master switch for all announcement notifications. Turning this off is the same as clicking 'Disable All' in the announcement screen. Announcements can still be viewed in the §f§lHamster Tips§r guide book. +enableNotificationIcons = false +# For when you see the update notification and think, 'That's a problem for future me.' Future you will be so proud. This is where you select many days to hide the 'Update Available' notification when you click 'Remind Me Later'. +snoozeUpdateReminderDays = 5 +# Decide if the bell haunts you full-time on the HUD or only ambushes you when you're trying to organize your inventory. If disabled, you will only see notifications when you open an inventory. +enableHudIcon = false +# Banish the bell to a corner of your choosing. It's your screen. Establish dominance. +hudIconPositionPreset = "TOP_LEFT" +# Shove the icon horizontally. For when 'top-left' isn't specific enough for your discerning taste. +hudIconOffsetX = 10 +# Adjust the vertical placement. Does it block your view? Is it not blocking your view enough? The power is yours. +hudIconOffsetY = 10 +# Make it bigger. Make it smaller. Make it an affront to good taste. I'm not your art director. +hudIconScale = 1.0 +# Decide if the bell icon should ambush you while you're sorting your inventory. If disabled, it will only bother you on the main menu or the game HUD if you have those enabled. Your screen, your rules. +enableWidgetIcon = false +# How loud the wind gust sound effect is, for you overachievers who are running 15 different sound physics mods. 1.0 is default, 0.0 is silent. +leafGustVolume = 0.3 +# Should the gentle, drift of Hamster Bedding leaf particles slowly change direction over time? If true, it's a slow, majestic rotation. (It takes a bout 3 minutes to make a full 360 degree rotation). If false, you get to pick a static wind direction below. +enableDynamicDriftAngle = true +# Set a fixed direction for the universal leaf drift (0-360 degrees). 0 = South, 90 = West, 180 = North, 270 = East. Or just slide it until it looks cool. Whatever. Only works if 'Dynamic Drift' is off. +staticDriftAngle = 0 +# Whether hamsters are allowed to multiply. Turn this off if you fear someone on your server plans to create a rodent horde. +enableBreeding = true +# If true, hamsters that are actively following you (not sitting or wandering) will instantly teleport with you, across dimensions and even if their current chunk becomes unloaded. WARNING: do not turn this off unless you want to risk your hamsters being left behind on long teleports. +enableTeleportRescue = true +# Do we yeet the hamster? ('G' by default). +enableHamsterThrowing = true +# For when you need some personal space. Allows tamed hamsters to be linked to a Hamster Bed, letting them wander freely within a set radius instead of clinging to you like melted duct-tape. You're welcome. +enableWanderMode = true +# Permits hamsters to engage in spontaneous, high-stakes games of keep-away with your valuables. +enableItemStealing = true +# Master switch. If false, hamsters will suppress their playful urges and remain stoic professionals. +enableTagGame = true +# May save your inventory. Or your ears. Allows hamsters to sniff for any aggressive creepers that have begun hunting you. +enableShoulderCreeperDetection = true +# Because we all enjoy unsolicited financial advice from rodents. Allows hamsters to sniff for shinies from their shoulder perch. +enableShoulderDiamondDetection = true +# Permit hamsters to embark on solo get-rich-quick schemes? +enableIndependentDiamondSeeking = true +# If true, upgraded armor grants special perks. If false (because you hate fun?), armor acts only as a damage shield/visual. Each perk can also be individually configured in 'Armor Settings.' +enableArmorPerks = true +# If true, wild hamsters take their cheek-treasures to the grave. Prevents players from creating 'ethical' hamster recycling farms for seeds and nuggets. +disableWildLootDrops = false +# Gate cheek-pouch storage behind gourmet cuisine, because drama. +requireFoodMixToUnlockCheeks = true +# Changes the default entity name from 'Hamster' to 'Hampter'. Note: This has no visible effect in vanilla Minecraft, as mobs don't show nameplates by default. It's primarily for use with mods like Auto Leveling that display entity names. +useHampterName = false +# Lets you rename hamsters directly from their inventory screen. Much more civilized than slapping them with a name tag. +enableGuiRenaming = true +# If true, players can tame frozen, AI-disabled hamsters, instantly breathing life into them like some sort of furry necromancer. Turn this off if you're using command-spawned hamsters as statues or shop displays and don't want your patrons walking off with the merchandise happily following. +allowTamingAiDisabled = true +# If true, your weapons will magically pass through your own tamed hamsters. Perfect for those with butter fingers who keep 'accidentally' sending their companions to the great hamster wheel in the sky. +preventOwnerFriendlyFire = false +# Should Ravagers, the hulking beasts of destruction, flee in terror from a tiny ball of fluff? Yes. Yes, they should. +enableRavagerFlee = true +# Turns your hamster into a mobile arachnid-repellent unit. Highly effective. +enableSpiderFlee = true +# How often a sitting hamster gets the sudden urge to clean. It's a 1-in-X chance per tick, so lower numbers mean a higher chance for cleaning. For example, 1200 means on average, it'll clean about once a minute. 300 ≈ every 15 secs, and 5000 ≈ every 4 mins. Congratulations— now you know enough to be dangerous. +cleaningChanceDenominator = 1200 +# Time-out after using your living projectile. (20 ticks = 1 second) +hamsterThrowCooldown = 2400 +# When the sugar rush ends, force a breather. (20 ticks = 1 second) +steamedGreenBeansBuffCooldown = 6000 +# Force a cool-down after striking it rich. Off by default, since this can't happen again anyway without another mount/dismount on the shoulder. +enableIndependentDiamondSeekCooldown = false +# Cooldown before your hamster can go on another treasure hunt. (20 ticks = 1 second) +independentOreSeekCooldownTicks = 2400 +# Mandatory time-out after a successful heist to prevent serial kleptomania. (20 ticks = 1 second). WARNING: Increasing this cooldown can dramatically change the item stealing mechanic, since that AI goal sometimes re-runs multiple times in a row when the hamster has trouble pathfinding to the item that it wants to steal. So instead of increasing this, you should probably just stop dropping your diamonds on the ground everywhere, butter fingers. +stealCooldownTicks = 100 +# How long a specific hamster needs to recover after being chased. Remember, they have tiny lungs. (20 ticks = 1 second; default = 10 minutes) +tagGameCooldown = 12000 +# Hamsters need their space. Here's where you give them a break between litters. +breedingCooldownSeconds = 300 +# The official list of bribes for convincing wild fluffballs to join your cause. By default, it's just sliced cucumbers. Feel free to add 'minecraft:nether_star' if you enjoy making poor life choices. Compatible with Cultural Delights by default! +tamingFoods = [ + "adorablehamsterpets:sliced_cucumber", + "culturaldelights:cut_cucumber" +] +# The hamster's everyday menu. These items will heal them or, if they're at full health, might give them... ideas about starting a family. Don't make it weird. +standardDiet = [ + "adorablehamsterpets:hamster_food_mix", + "adorablehamsterpets:sunflower_seeds", + "adorablehamsterpets:green_beans", + "adorablehamsterpets:cucumber", + "adorablehamsterpets:green_bean_seeds", + "adorablehamsterpets:cucumber_seeds", + "minecraft:apple", + "minecraft:carrot", + "minecraft:melon_slice", + "minecraft:sweet_berries", + "minecraft:beetroot", + "minecraft:wheat", + "minecraft:wheat_seeds", + "#adorablehamsterpets:seeds", + "farmersdelight:cabbage_leaf", + "farmersdelight:cooked_rice", + "farmersdelight:pumpkin_slice", + "culturaldelights:cut_cucumber", + "culturaldelights:corn_kernels" +] +# The list of items a hamster might try to... 'borrow' if you leave them on the ground. A chase will ensue. You have been warned. +stealableItems = [ + "minecraft:diamond" +] +# Items the hamster views as gifts or toys to bring back to you. Picking these up triggers Delivery Mode. Default: Acorns. +retrievableItems = [ + "adorablehamsterpets:acorn" +] +# The list of questionable substances that grant your hamster temporary superpowers. By default, it's just steamed green beans. +buffFoods = [ + "adorablehamsterpets:steamed_green_beans" +] +# The specific items that convince a tamed hamster your shoulder is the best seat in the house. Also acts as a bribe to lure them into their linked bed. Defaults to cheese, because of course it does. +lureItems = [ + "adorablehamsterpets:cheese" +] +# The list of specific items that, when used on a Hamster Bed, will set 'Wander Mode Settings > Allow Sleeping in Bed' to false. For when you need your hamster to stay awake and wander around for... reasons. This can be reversed by using a lure item (cheese by default) on the bed. Sneaking before right-clicking with this item will unlink the bed entirely. +bedAvoidanceFoods = [ + "minecraft:rotten_flesh" +] +# The one-time offering required to earn a hamster's ultimate trust, unlocking their cheek inventory. Make it something special. Or don't. See if I care. +pouchUnlockFoods = [ + "adorablehamsterpets:hamster_food_mix" +] +# Items on this list are so delicious, your hamster will never refuse them, even if you feed it to them twice. For the truly spoiled rodent. +repeatableFoods = [ + "adorablehamsterpets:hamster_food_mix", + "adorablehamsterpets:steamed_green_beans" +] +# The specific items a hamster will eat directly from its cheek pouch to heal itself when injured. Keep it exclusive, or let them feast on enchanted apples. Your call. +autoHealFoods = [ + "adorablehamsterpets:hamster_food_mix" +] +# A specific list of items and tags that are allowed in the hamster's cheek pouch. You can add things to this list to bypass the default 'no tools or big blocks' rule, since this overrides the 'disallowed' settings. +pouchAllowedItems = [ + "minecraft:torch", + "minecraft:soul_torch", + "minecraft:redstone_torch", + "minecraft:repeater", + "minecraft:comparator", + "minecraft:lever", + "#minecraft:buttons", + "#minecraft:pressure_plates", + "minecraft:beetroot_seeds", + "minecraft:pumpkin_seeds", + "minecraft:melon_seeds", + "minecraft:pitcher_pod", + "minecraft:torchflower_seeds", + "#c:seeds", + "#forge:seeds" +] +# A list of specific item IDs that are NEVER allowed in the cheek pouch, unless they are on the 'Allowed' list above. Mostly stuff that's too big, too pointy, or just plain illogical. Lol. +pouchDisallowedItems = [ + "minecraft:bow", + "minecraft:crossbow", + "minecraft:trident", + "minecraft:fishing_rod", + "minecraft:shield", + "minecraft:elytra", + "minecraft:turtle_helmet", + "minecraft:carved_pumpkin", + "minecraft:player_head", + "minecraft:zombie_head", + "minecraft:skeleton_skull", + "minecraft:wither_skeleton_skull", + "minecraft:creeper_head", + "minecraft:dragon_head", + "minecraft:piglin_head", + "minecraft:minecart", + "minecraft:chest_minecart", + "minecraft:furnace_minecart", + "minecraft:tnt_minecart", + "minecraft:hopper_minecart", + "minecraft:command_block_minecart", + "minecraft:saddle", + "minecraft:bucket", + "minecraft:water_bucket", + "minecraft:lava_bucket", + "minecraft:milk_bucket", + "minecraft:powder_snow_bucket", + "minecraft:axolotl_bucket", + "minecraft:tadpole_bucket", + "minecraft:cod_bucket", + "minecraft:pufferfish_bucket", + "minecraft:salmon_bucket", + "minecraft:tropical_fish_bucket", + "minecraft:item_frame", + "minecraft:glow_item_frame", + "minecraft:painting", + "minecraft:armor_stand", + "minecraft:end_crystal", + "minecraft:spyglass", + "minecraft:nether_star", + "minecraft:dragon_egg", + "minecraft:bundle" +] +# A list of item tags that are NEVER allowed in the cheek pouch, unless they are on the 'Allowed' list above. A broad-spectrum approach to preventing your hamster from swallowing an entire sword. +pouchDisallowedTags = [ + "#minecraft:axes", + "#minecraft:hoes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:swords", + "#minecraft:trimmable_armor", + "#minecraft:beds", + "#minecraft:banners", + "#minecraft:doors", + "#minecraft:boats" +] +# How much abuse a wild hamster can take before it gives up the ghost. Vanilla animals are around 8-10. Set it to 200 (100 hearts) if you enjoy a challenge, or 1 if you're a monster. +wildMaxHealth = 8.0 +# How beefy your tamed fuzzball is. Defaults to double its wild health, because love makes you stronger. Or something. Vanilla wolves have 20 (10 hearts). +tamedMaxHealth = 16.0 +# Controls how frequently your hamster feels the urge to walk around. The higher the number, the lazier the hamster (1 in X chance to wander per tick; 20 ticks = 1 second). Set to 0 to disable wandering entirely— perfect for keeping them still for photoshoots or interrogation. Vanilla's default chance for Wolves is 1 in 120 ticks. +wanderChanceInterval = 120 +# The minimum time (in ticks) your hamster stares into your soul. Actual duration = this value + a random extra 0 to 4 seconds. Default is 40. Increase to simulate deep contemplation (or emptiness). +lookAtDuration = 20 +# Convince a hamster to love you. Taming difficulty (1 in X chance). Higher = more cucumbers sacrificed to fuzzy freeloaders. +tamingChanceDenominator = 3 +# Tamed hamster melee damage. Squeak-first, ask questions later. +meleeDamage = 2.0 +# Damage dealt by thrown hamster. Surprisingly effective against Creepers. How convenient. +hamsterThrowDamage = 20.0 +# Toggle this off if you find the rare, recessive red-eyed hamsters to be a bit too... scary. Reverts them to standard black, but only for you. They will still appear red for everyone else. +enableRedEyes = true +# If true, all baby hamsters are guaranteed to receive a breeding overlay, regardless of whether their parents had them. Reduces the total number of possible outcomes. +forceBreedingOverlay = false +# How much the baby's base color tends to deviate from the exact mathematical center between its parents. Higher values mean the baby could look much more like Parent A or Parent B, rather than a perfect mix. +geneticVariance = 0.1 +# How much random 'scatter' is added to the baby's color across all dimensions (Hue, Saturation, Brightness). Higher values mean the baby could end up a completely unexpected color instead of a mixture between the two parents. +geneticMutationRate = 0.3 +# How many theoretical babies the 3D visualizer calculates every tick (20 ticks = 1 second) to build the probability particle cloud. Each particle spawned represents a baby hamster. Higher numbers create a denser, clearer picture of the genetic potential. +simulatedOffspringPerTick = 20 +# If true, babies are born feral and unclaimed. You'll need to tame them yourself to earn their affections. +babiesSpawnWild = true +# A list of player usernames allowed to breed hamsters even if breeding is toggled off globally (see the 'Core Feature Toggles' section). Useful for server admins who want to keep breeding under control. +allowedBreeders = [ ] +# How many times a single hamster can reproduce before its biological clock says 'absolutely not.' +maxLittersPerHamster = 50 +# The minimum number of babies per litter. +litterSizeMin = 1 +# The maximum number of babies per litter. Make sure this is greater than or equal to the minimum, obviously. +litterSizeMax = 3 +# Try as I might, I could not think of a better way to word that. Here's where you can cap the number of hamster litters a single player can breed. +playerBreedingLimit = false +# Whether the limit resets daily, or if it's a lifetime cap per player. +playerBreedingLimitType = "DAILY" +# How many litters a player can orchestrate before their breeding license is revoked. +maxLittersPerPlayer = 5 +# If true, 'Daily Player Breeding Limit' means 24 real-world hours. If false, it means 20 Minecraft minutes. +useIrlTimeForBreedingLimit = false +# Aerodynamics provided by smooth Iron plating. Adds 0.5 to the throw velocity, which is 1.5 by default or 2.5 when under the influence of Steamed Green Beans. +ironArmorThrowSpeedBoost = 0.5 +# The zoom factor provided by Gold Armor. Because flimsier things go faster. Obviously. (+0.20 = +20% Speed) +goldArmorSpeedBoost = 0.2 +# The 'Immovable Object' density factor. 0.5 is 50% resistance. 1.0 makes them a neutron star. +netheriteArmorKnockbackResist = 0.5 +# Heavy things hit harder. Adds this much flat damage to the projectile impact. (1 = 0.5 hearts) +netheriteArmorThrowDamageBonus = 10.0 +# Master switch for armor rendering. If false, hamsters will appear unarmored even when equipped. Useful if you prefer the natural look but still want the protection. +enableArmorVisuals = true +# Determines whether you are able to see the jaunty little Acorn Hat when hamsters are wearing the base Acorn Armor. Does not affect what other players see, and does not apply to the standalone Acorn Hat accessory. +renderAcornHat = true +# The likelihood (0.0 to 1.0) of an acorn dropping each time your hamster rummages. Default is very low at 0.03 (3%), because the hamster rummages roughly ~5 times per second. Crank it up if you want to crash the local squirrel economy. (Maximum output is 1 acorn per second even if you turn it all the way up). +acornDropChance = 0.03 +# Shows visual particles for the detected Tree ID (the lowest block of the trunk) and leaf canopy during a heist, and turns on extra logging in the console. Useful for seeing exactly which tree your hamster is searching and/or debugging if things are being weird. +debugTreeDetection = false +# The Master Switch. Affects all Hamster Beds. If true, hamsters linked to a bed can be resurrected there. Cheating? Maybe. Convenient? Absolutely. +enableRespawnInBed = false +# The specific items accepted by the Hamster Bed to enable the Respawn Protocol. Defaults to the Totem of Undying, because immortality isn't cheap. Accepts item IDs (e.g. 'minecraft:totem_of_undying') or tags. +resurrectionTributes = [ + "minecraft:totem_of_undying" +] +# Should hamsters treat other hamsters' beds as sacred ground? If true, they'll try to politely path around them, but they will only try a few alternate paths before their tiny rodent-patience runs out. If false, they'll trample wherever they please. +avoidUnlinkedBeds = true +# The initial wander distance set when a hamster is first linked to a bed. It defaults to medium, because that is the universally accepted starting point for all life choices. +defaultWanderDistance = "MEDIUM" +# The radius (in blocks) for the 'Near' wander distance setting. For the clingy hamster who wants freedom, but not too much. +wanderDistanceNear = 8 +# The radius (in blocks) for the 'Medium' wander distance setting. A respectable distance. Not too close, not too far. Perfectly balanced, as all things should be. +wanderDistanceMedium = 16 +# The radius (in blocks) for the 'Far' wander distance setting. For the adventurous hamster who might send you a postcard someday. Maybe. +wanderDistanceFar = 32 +# The global override for whether hamsters can sleep in their beds. If enabled, all hamsters in wander mode will seek out their bed to sleep at specific times, regardless of individual bed settings. If disabled, they'll just pass out when sitting, like your old uncle at family gatherings. +allowSleepInBed = true +# Tired of your hamsters adhering to the rigid tyranny of the day/night cycle? Enable this for a more... unpredictable napping schedule. When enabled, this will override the 'Sleep During the Day' setting. +circadianChaos = false +# The shortest possible time (in seconds) a hamster will stay awake or asleep in bed before considering a change. Defaults to 5 minutes— for the truly narcoleptic rodent. A random duration between the min and max is chosen each time, so move them further apart for more... unpredictable behavior. +minNapInBedIntervalSeconds = 300 +# The longest amount of time (in seconds) a hamster can possibly stay awake or asleep in bed before it gets bored and switches things up. Defaults to 10 minutes. +maxNapInBedIntervalSeconds = 600 +# If false, wandering hamsters will sleep in their beds during the night. If true, they'll adopt a more nocturnal, goth-adjacent lifestyle and sleep in the daytime. +sleepDuringDay = true +# The mandatory grumpiness period if you rudely awaken a hamster from its bed before it was ready. It won't go back to sleep until this timer runs out. (20 ticks = 1 second) +bedWakeUpCooldown = 300 +# The maximum number of hamsters you can carry on your shoulders and head. Limits the chaos. Changes take effect on next mount attempt. +maxShoulderHamsters = 3 +# Where should the hamster go first? 'Shoulders First' fills the Right Shoulder, then Left, then Head. 'Head First' fills Head, then Right, then Left. +mountPriority = "SHOULDERS_FIRST" +# If true, any hamsters on your shoulder will remain there when you respawn. If false (default), they will remain at your death location, passed out from the sheer shock of seeing you die. They may need a quick pat to wake them up when you return. +keepHamstersOnShoulderOnDeath = false +# Should luring a hamster to your shoulder consume the item (e.g., cheese)? Turn this off if you believe your charm alone should be enough. The item will still be required, just not eaten. +consumeLureItem = true +# Tired of wasting perfectly good cheese? Enable this to use a dedicated keybind (unbound by default). Hold down this key while right-clicking your hamster to hoist them onto your shoulder, no questions asked. Uses a separate key you must set in Settings > Controls > Key Binds. +enableShoulderMountKeybind = false +# Adjust paranoia levels. (Distance in blocks) +shoulderCreeperDetectionRadius = 16.0 +# How close (in blocks) you need to be before the squeak says \"bling.\" +shoulderDiamondDetectionRadius = 10.0 +# Determines the sequence for dismounting hamsters with a key press. LIFO (Last-In, First-Out) dismounts the most recently added hamster. FIFO (First-In, First-Out) dismounts the oldest one. +dismountOrder = "LIFO" +# Choose what action dismounts the hamster. 'SNEAK_KEY' uses your sneak key, obviously. 'CUSTOM_KEYBIND' uses a separate key you must set in Controls > Key Binds. +dismountTriggerType = "SNEAK_KEY" +# Choose whether a single press or a quick double‑tap dismounts the hamster. +dismountPressType = "SINGLE_PRESS" +# Max time between sneak key presses to count as a double-tap. (20 ticks = 1 second) +doubleTapDelayTicks = 10 +# If true, hamsters on your shoulder will randomly cycle through standing, sitting, and laying down while on the shoulder. If false, they will remain in a single state defined below. +enableDynamicShoulderAnimations = true +# If dynamic animations are disabled, choose the state for the hamster on your head. Sometimes this setting can have a delay before kicking in, but switching states back and forth usually fixes it. +forcedHeadState = "ALWAYS_STAND" +# See description for 'Forced State (Head)'. +forcedRightShoulderState = "ALWAYS_STAND" +# See description for 'Forced State (Head)'. +forcedLeftShoulderState = "ALWAYS_STAND" +# False by default. If true, shoulder hamsters will be forced into their 'laying down' animation when you move, as if trying not to fall off. If false, they will continue their normal animation cycle. +forceLayDownOnWalk = false +# If true, shoulder hamsters will be forced into their 'laying down' animation while you sprint, as if holding on for dear life. If false, they will continue their normal animation cycle. +forceLayDownOnSprint = true +# The minimum time (in seconds) a shoulder hamster will stay in any one animation state (standing, sitting, or laying down). A random duration between the min and max is chosen for each transition. +shoulderMinStateSeconds = 20 +# The maximum time (in seconds) a shoulder hamster will stay in any one animation state (standing, sitting, or laying down). A random duration between the min and max is chosen for each transition. +shoulderMaxStateSeconds = 45 +# Mutes the ambient squeaks from shoulder-mounted hamsters. The bounce and alert sounds will still play. +silenceShoulderIdleSounds = false +# Mutes the hamster landing/bounce sound effect from the physics simulation when you are in first-person view. +silencePhysicsSoundsInFirstPerson = false +# The base throw speed of your furry projectile. +hamsterThrowVelocity = 1.5 +# The throw speed of your furry projectile when under the influence of Steamed Green Beans. Goes from 'yeet' to 'yote'. +hamsterThrowVelocityBuffed = 2.5 +# If true, throwing your own hamster straight up above your head will eventually result in a concussive reunion on the way back down. High-velocity rodents tend to hurt, even if they love you. +yeetFriendlyFire = true +# How close (in blocks) a hostile mob can get before a hamster wakes up from it's power nap. +tamedSleepThreatDetectionRadiusBlocks = 8 +# Choose when your sitting hamster will succumb to drowsiness. 'True' means your sitting hamster will only doze off during the day— 'false' means it can doze off anytime. This setting does not affect the behavior of a hamster when sleeping in a bed. +requireDaytimeForTamedSleep = true +# Minimum seconds before a sitting hamster gets sleepy. +tamedQuiescentSitMinSeconds = 120 +# Maximum seconds before the inevitable deep snooze. +tamedQuiescentSitMaxSeconds = 180 +# Healing amount from Hamster Food Mix. The good stuff. +hamsterFoodMixHealing = 4.0 +# Healing from basic seeds/crops. Better than nothing… probably. +standardFoodHealing = 2.0 +# If true, baby hamsters lose their refined palates and will eagerly gorge themselves on the same seeds repeatedly, in case you want to grow them up faster. +disableBabyFoodRefusal = false +# How many little hunger shanks the cheese restores. Vanilla cooked steak is 8. I know you're thinking of moving it to 20, you monster. +cheeseNutrition = 8 +# How long the hunger effect lasts. Cooked steak is 0.8. Don't get too crazy. Or do. I'm not your conscience. +cheeseSaturation = 0.8 +# Vanilla dried kelp is 1 (0.5 hearts). +slicedCucumberNutrition = 1 +# Dried kelp is 0.3. +slicedCucumberSaturation = 0.3 +cucumberNutrition = 2 +cucumberSaturation = 0.3 +greenBeansNutrition = 2 +greenBeansSaturation = 0.3 +steamedGreenBeansNutrition = 3 +steamedGreenBeansSaturation = 0.6 +hamsterFoodMixNutrition = 4 +hamsterFoodMixSaturation = 0.4 +# Steamed beans: power that fades faster than their attention span. (20 ticks = 1 second) +greenBeanBuffDuration = 3600 +# Because someone gotta go fast. +greenBeanBuffAmplifierSpeed = 1 +# Slightly mightier nibbles. +greenBeanBuffAmplifierStrength = 1 +# Extra fluff padding for those daring dives. +greenBeanBuffAmplifierAbsorption = 1 +# Heals minor paper-cuts (and fragile egos). +greenBeanBuffAmplifierRegen = 0 +# How far (in blocks) a hamster scans once it’s decided to play prospector. +diamondSeekRadius = 10 +# The probability (0.0 to 1.0) that a hamster will seek gold instead of diamond, if both are available. At 0.5, it's a coin toss. At 1.0, it's guaranteed hamster sulking. +goldMistakeChance = 0.33 +# The list of blocks that smell... shiny. Especially to greedy hamsters. Diamonds by default, but maybe you want them to sniff for Zinc ore? Accepts block IDs (e.g. 'create:zinc_ore') and #tags (e.g. '#c:ores/diamond'). +celebrationOres = [ + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore" +] +# Blocks that look promising but ultimately lead to a dramatic emotional breakdown. Gold by default, but if you want them to sniff for dirt, I'm not your conscience. Accepts block IDs (e.g. 'create:copper_ore') and #tags (e.g. '#c:ores/gold'). +sulkingOres = [ + "minecraft:gold_ore", + "minecraft:deepslate_gold_ore" +] +# The personal space bubble (in blocks) hamsters maintain while running away. +minMiniGameFleeDistance = 7 +# The maximum distance (in blocks) before hamsters stop running from you and start taunting. If they get further than this, they will wait for you to catch up. +maxMiniGameFleeDistance = 10 +# The shortest amount of time (in seconds) a chase lasts before hamsters get bored. Randomly chosen between Min and Max. +minMiniGameFleeDurationSeconds = 5 +# The longest amount of time (in seconds) a chase lasts. Randomly chosen between Min and Max. +maxMiniGameFleeDurationSeconds = 15 +# Probability (0.1 to 1.0) a hamster will succumb to temptation when seeing a stealable item. High by default, since the only default stealable item is a diamond. +itemThieveryChance = 0.75 +# If true, hamsters can ask anyone to play. If false, they can only ask their owners. +allowStrangerTag = true +# The 1-in-X chance per tick a hamster will start a game of tag if you make too much eye contact. Since the game runs at 20 ticks per second, a 1-in-100-tick chance means you'll need to maintain eye contact for about 5-10 seconds on average. Set to 1 if you want the game to start instantly upon eye contact. +tagGameChanceDenominator = 100 +# If true, players are capped on how many games they can play per day. If false, you can play until your legs fall off. +enableTagGamePlayerLimit = true +# How many times a single player can be 'It' per Minecraft day before telling the rodents to go find a hobby. Prevents infinite reward farming. +maxDailyTagGamesPerPlayer = 3 +# If true, winning a game of tag rewards you with whatever random pocket lint generates in wild cheek pouches. (That list is configurable: see \"Cheek Pouch Loot\" in the World Gen Config.) If false, it strictly pulls from the custom list below. +usePouchLootForTagRewards = true +# The specific items your hamster will regurgitate as a prize, assuming you disabled the toggle above. Format specific item names like this: 'minecraft:diamond' and you can use tags like this: '#minecraft:flowers'. If you leave this empty while custom rewards are active, your hamster will just stare at you awkwardly after you win. +customTagRewards = [ ] +# Adds a keybind to mount hamsters. (It's unbound by default). Allows riding any hamster, but you can only steer your own. +# +# Commissioned by @Saint_Victus. +enableMountableHamsters = false +# The casual strolling speed multiplier. 0.25 is the default. Don't ask why. +ridingBaseSpeedMultiplier = 0.25 +# The speed multiplier when sprinting. Hold on to your acorn hat. 0.35 is the default. I wish it was a nice round number, but alas, hamster riding is a complex enigma. +ridingSprintSpeedMultiplier = 0.35 + +# Control the icon's placement for standard GUIs. Because nothing says 'immersion' like a perfectly aligned notification bell. Position is relative to the GUI's top-right corner. + +[survivalWidgetIconSettings] +# Shove it sideways (in pixels). Increase the number to move it right, decrease to move left. +offsetX = 0 +# Shove it vertically (in pixels). Increase the number to move it down, decrease to move up. +offsetY = 0 + +# Control the icon's placement for the creative mode GUI. Because nothing says 'immersion' like a perfectly aligned notification bell. Position is relative to the GUI's top-right corner. + +[creativeWidgetIconSettings] +# Shove it sideways (in pixels). Increase the number to move it right, decrease to move left. +offsetX = 0 +# Shove it vertically (in pixels). Increase the number to move it down, decrease to move up. +offsetY = 0 \ No newline at end of file diff --git a/minecraft/config/adorablehamsterpets/manifest.cache.json b/minecraft/config/adorablehamsterpets/manifest.cache.json new file mode 100644 index 0000000..bf2f9c6 --- /dev/null +++ b/minecraft/config/adorablehamsterpets/manifest.cache.json @@ -0,0 +1,69 @@ +{ + "latest_version": "3.6.0", + "messages": [ + { + "title": "New Update: v3.6.0!", + "markdown": "messages/v3.6.0-update.md", + "published": "2026-04-19T12:00Z", + "id": "update-3.6.0", + "kind": "update_available", + "semver": "3.6.0" + }, + { + "title": "What\u0027s New in v3.6.0?", + "markdown": "messages/v3.6.0-whats-new.md", + "published": "2026-04-19T12:00Z", + "id": "whats-new-3.6.0", + "kind": "patch_notes", + "semver": "3.6.0" + }, + { + "title": "New Update: v3.5.0!", + "markdown": "messages/v3.5.0-update-available.md", + "published": "2025-12-19T12:00Z", + "id": "update-3.5.0", + "kind": "update_available", + "semver": "3.5.0" + }, + { + "title": "What\u0027s New in v3.5.0?", + "markdown": "messages/v3.5.0-whats-new.md", + "published": "2025-12-19T12:05Z", + "id": "whats-new-3.5.0", + "kind": "patch_notes", + "semver": "3.5.0" + }, + { + "title": "WE WON MOD OF THE YEAR!", + "markdown": "messages/curseforge_moty_vote.md", + "published": "2025-12-15T12:00Z", + "id": "curseforge_moty_vote", + "kind": "announcement", + "semver": "3.4.0" + }, + { + "title": "New Update: v3.4.0!", + "markdown": "messages/v3.4.0-update.md", + "published": "2025-11-26T12:00Z", + "id": "update-3.4.0", + "kind": "update_available", + "semver": "3.4.0" + }, + { + "title": "What\u0027s New in v3.4.0?", + "markdown": "messages/v3.4.0-whats-new.md", + "published": "2025-11-26T12:00Z", + "id": "whats-new-3.4.0", + "kind": "patch_notes", + "semver": "3.4.0" + }, + { + "title": "What\u0027s New in v3.3.0?", + "markdown": "messages/v3.3.0-whats-new.md", + "published": "2025-10-04T12:00Z", + "id": "whats-new-3.3.0", + "kind": "patch_notes", + "semver": "3.3.0" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/adorablehamsterpets/perks.cache.json b/minecraft/config/adorablehamsterpets/perks.cache.json new file mode 100644 index 0000000..2157c41 --- /dev/null +++ b/minecraft/config/adorablehamsterpets/perks.cache.json @@ -0,0 +1 @@ +{"supporter_crown":["the_scarlet_fox","amethyst_phantom","DreamkeeperLumi","SmolAriansta"],"exclusive_hamster_hat":["placeholder"]} \ No newline at end of file diff --git a/minecraft/config/adorablehamsterpets/root.toml b/minecraft/config/adorablehamsterpets/root.toml new file mode 100644 index 0000000..8241988 --- /dev/null +++ b/minecraft/config/adorablehamsterpets/root.toml @@ -0,0 +1,2 @@ +# Don't change this! Version used to track needed updates. +version = 0 \ No newline at end of file diff --git a/minecraft/config/adorablehamsterpets/worldgen.toml b/minecraft/config/adorablehamsterpets/worldgen.toml new file mode 100644 index 0000000..6d1db9d --- /dev/null +++ b/minecraft/config/adorablehamsterpets/worldgen.toml @@ -0,0 +1,564 @@ +# Don't change this! Version used to track needed updates. +version = 0 +# Adjusts hamster spawn frequency. Higher = more chaos. 1 = blissful silence. +spawnWeight = 30 +# Maximum hamsters per spawn group. Because sometimes one just isn't cute enough. +maxGroupSize = 1 +# A list of biome tags where hamsters can spawn. Format: 'mod_id:tag_name'. For example, 'minecraft:is_forest'. +spawnBiomeTags = [ + "minecraft:is_beach", + "minecraft:is_badlands", + "minecraft:is_savanna", + "minecraft:is_jungle", + "minecraft:is_forest", + "minecraft:is_taiga", + "minecraft:is_mountain" +] +# A list of convention biome tags where hamsters can spawn. Used for broad mod compatibility. +spawnBiomeConventionTags = [ + "adorablehamsterpets:is_cold", + "adorablehamsterpets:is_hot", + "adorablehamsterpets:is_temperate", + "adorablehamsterpets:is_dry", + "adorablehamsterpets:is_wet", + "adorablehamsterpets:is_dense_vegetation", + "adorablehamsterpets:is_sparse_vegetation" +] +# A list of specific biome IDs to ALWAYS allow spawns in, even if they don't match the tags above. Format: 'mod_id:biome_name'. For example, 'minecraft:plains'. +includeBiomes = [ + "minecraft:snowy_plains", + "minecraft:snowy_taiga", + "minecraft:snowy_slopes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:grove", + "minecraft:frozen_river", + "minecraft:snowy_beach", + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean", + "minecraft:ice_spikes", + "minecraft:cherry_grove", + "minecraft:lush_caves", + "minecraft:dripstone_caves", + "minecraft:deep_dark", + "minecraft:swamp", + "minecraft:mangrove_swamp", + "minecraft:desert", + "minecraft:plains", + "minecraft:sunflower_plains", + "minecraft:meadow", + "minecraft:old_growth_birch_forest", + "minecraft:windswept_hills", + "minecraft:windswept_gravelly_hills", + "minecraft:windswept_forest", + "minecraft:windswept_savanna", + "minecraft:stony_peaks", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle", + "minecraft:stony_shore", + "minecraft:mushroom_fields", + "minecraft:deep_dark", + "minecraft:forest", + "minecraft:birch_forest", + "minecraft:dark_forest", + "minecraft:taiga", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands", + "minecraft:beach", + "terralith:desert_canyon", + "terralith:cave/andesite_caves", + "terralith:cave/crystal_caves", + "terralith:cave/deep_caves", + "terralith:cave/desert_caves", + "terralith:cave/diorite_caves", + "terralith:cave/frostfire_caves", + "terralith:cave/fungal_caves", + "terralith:cave/granite_caves", + "terralith:cave/ice_caves", + "terralith:cave/infested_caves", + "terralith:cave/mantle_caves", + "terralith:cave/thermal_caves", + "terralith:cave/tuff_caves", + "terralith:cave/underground_jungle", + "terralith:alpha_islands_winter", + "terralith:alpha_islands", + "terralith:alpine_grove", + "terralith:alpine_highlands", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:ancient_sands", + "terralith:arid_highlands", + "terralith:ashen_savanna", + "terralith:basalt_cliffs", + "terralith:birch_taiga", + "terralith:blooming_plateau", + "terralith:blooming_valley", + "terralith:brushland", + "terralith:bryce_canyon", + "terralith:caldera", + "terralith:cloud_forest", + "terralith:cold_shrubland", + "terralith:desert_oasis", + "terralith:desert_spires", + "terralith:emerald_peaks", + "terralith:forested_highlands", + "terralith:fractured_savanna", + "terralith:frozen_cliffs", + "terralith:glacial_chasm", + "terralith:granite_cliffs", + "terralith:gravel_beach", + "terralith:gravel_desert", + "terralith:haze_mountain", + "terralith:highlands", + "terralith:hot_shrubland", + "terralith:ice_marsh", + "terralith:jungle_mountains", + "terralith:lavender_forest", + "terralith:lavender_valley", + "terralith:lush_desert", + "terralith:lush_valley", + "terralith:mirage_isles", + "terralith:moonlight_grove", + "terralith:moonlight_valley", + "terralith:mountain_steppe", + "terralith:orchid_swamp", + "terralith:painted_mountains", + "terralith:red_oasis", + "terralith:rocky_jungle", + "terralith:rocky_mountains", + "terralith:rocky_shrubland", + "terralith:sakura_grove", + "terralith:sakura_valley", + "terralith:sandstone_valley", + "terralith:savanna_badlands", + "terralith:savanna_slopes", + "terralith:scarlet_mountains", + "terralith:shield_clearing", + "terralith:shield", + "terralith:shrubland", + "terralith:siberian_grove", + "terralith:siberian_taiga", + "terralith:skylands_autumn", + "terralith:skylands_spring", + "terralith:skylands_summer", + "terralith:skylands_winter", + "terralith:skylands", + "terralith:snowy_badlands", + "terralith:snowy_cherry_grove", + "terralith:snowy_maple_forest", + "terralith:snowy_shield", + "terralith:steppe", + "terralith:stony_spires", + "terralith:temperate_highlands", + "terralith:tropical_jungle", + "terralith:valley_clearing", + "terralith:volcanic_crater", + "terralith:volcanic_peaks", + "terralith:warm_river", + "terralith:warped_mesa", + "terralith:white_cliffs", + "terralith:white_mesa", + "terralith:windswept_spires", + "terralith:wintry_forest", + "terralith:wintry_lowlands", + "terralith:yellowstone", + "terralith:yosemite_cliffs", + "terralith:yosemite_lowlands", + "biomesoplenty:wasteland", + "biomesoplenty:wasteland_steppe", + "biomesoplenty:mediterranean_forest", + "biomesoplenty:mystic_grove", + "biomesoplenty:orchard", + "biomesoplenty:pumpkin_patch", + "biomesoplenty:redwood_forest", + "biomesoplenty:seasonal_forest", + "biomesoplenty:woodland", + "biomesoplenty:floodplain", + "biomesoplenty:fungal_jungle", + "biomesoplenty:rainforest", + "biomesoplenty:rocky_rainforest", + "byg:lush_stacks", + "byg:orchard", + "byg:frosted_coniferous_forest", + "byg:allium_fields", + "byg:amaranth_fields", + "byg:rose_fields", + "byg:temperate_grove", + "byg:coconino_meadow", + "byg:skyris_vale", + "byg:prairie", + "byg:autumnal_valley", + "byg:cardinal_tundra", + "byg:firecracker_shrubland", + "byg:allium_shrubland", + "byg:amaranth_grassland", + "byg:araucaria_savanna", + "byg:aspen_boreal", + "byg:atacama_outback", + "byg:baobab_savanna", + "byg:basalt_barrera", + "byg:bayou", + "byg:black_forest", + "byg:canadian_shield", + "byg:cika_woods", + "byg:coniferous_forest", + "byg:crimson_tundra", + "byg:cypress_swamplands", + "byg:dacite_ridges", + "byg:dacite_shore", + "byg:dead_sea", + "byg:ebony_woods", + "byg:enchanted_tangle", + "byg:eroded_borealis", + "byg:firecracker_chaparral", + "byg:forgotten_forest", + "byg:fragment_jungle", + "byg:frosted_taiga", + "byg:howling_peaks", + "byg:ironwood_gour", + "byg:jacaranda_jungle", + "byg:maple_taiga", + "byg:mojave_desert", + "byg:overgrowth_woodlands", + "byg:pumpkin_valley", + "byg:rainbow_beach", + "byg:red_rock_valley", + "byg:redwood_thicket", + "byg:rugged_badlands", + "byg:sakura_grove", + "byg:shattered_glacier", + "byg:sierra_badlands", + "byg:skyrise_vale", + "byg:tropical_rainforest", + "byg:weeping_witch_forest", + "byg:white_mangrove_marshes", + "byg:windswept_desert", + "byg:zelkova_forest" +] +# A list of specific biome IDs to NEVER allow spawns in, even if they match a tag. This overrides all other settings. Format: 'mod_id:biome_name'. For example, 'minecraft:plains'. +excludeBiomes = [ + "mod_id:biome_name" +] +# A list of Biome Tags to NEVER allow spawns in. For excluding broad categories like Oceans or Rivers without listing every single ID. Overrides inclusions. +excludeBiomeTags = [ + "minecraft:is_ocean", + "minecraft:is_river", + "minecraft:is_deep_ocean" +] +# A list of mathematical 3D color groups permitted to spawn as overlays on wild hamsters. By default, it's set to natural boring color groups like WHITE, LIGHT_GRAY, DARK_GRAY, and CREAM so your world doesn't look like a clown exploded. Available zones: WHITE, BLUE, SKY, LAVENDER, ROSE, LIGHT_GRAY, DARK_GRAY, CREAM, BLACK, CHOCOLATE, ORANGE. +allowedWildOverlayZones = [ + "WHITE", + "LIGHT_GRAY", + "DARK_GRAY", + "CREAM" +] +# If true, wild overlays must be strictly brighter than the base coat. True by default to prevent Black overlays on Cream hamsters. +enforceBrighterOverlays = true +# If true, wild overlays must be less saturated than the base coat. On by default to prevent Cream overlays on Black and Gray hamsters. +enforceMoreMutedOverlays = true +# Hamsters in these base coat color groups will refuse to spawn with wild overlays from the 'Clashing Overlay Colors' list. +restrictedBaseZones = [ + "BLUE", + "LAVENDER" +] +# A list of wild overlays that look unnatural when combined with the 'Clashing Base Colors'. By default, this prevents Cream and Dark Gray wild overlays on Blue and Lavender hamsters. +clashingOverlayZones = [ + "CREAM", + "DARK_GRAY" +] +icyBiomes = [ + "terralith:glacial_chasm", + "terralith:mirage_isles", + "terralith:moonlight_valley", + "biomesoplenty:enchanted_garden" +] +icyTags = [ + "adorablehamsterpets:is_icy" +] +icyExclusionBiomes = [ ] +icyExclusionTags = [ ] +# Format 'VARIANT_TYPE:WEIGHT'. The total weight must equal 100, so I hope you graduated third grade. Available groupings of hamster types: WHITE, BLUE, SKY, LAVENDER, ROSE, LIGHT_GRAY, DARK_GRAY, CREAM, BLACK, CHOCOLATE, ORANGE. Join The Cheek Pouch Discord server to suggest new groupings if you designed a custom hamster texture that you think belongs in its own unique grouping (i.e. maybe a 'mossy' green hamster?). +icyWeights = [ + "BLUE:25", + "SKY:25", + "WHITE:50" +] +magicalBiomes = [ + "minecraft:cherry_grove", + "terralith:sakura_valley", + "biomesoplenty:fungi_forest", + "biomesoplenty:mystic_grove" +] +magicalTags = [ + "adorablehamsterpets:is_magical", + "adorablehamsterpets:is_mushroom", + "terralith:mystical" +] +magicalExclusionBiomes = [ ] +magicalExclusionTags = [ ] +# Format 'VARIANT_TYPE:WEIGHT'. The total weight must equal 100, so I hope you graduated third grade. Available groupings of hamster types: WHITE, BLUE, SKY, LAVENDER, ROSE, LIGHT_GRAY, DARK_GRAY, CREAM, BLACK, CHOCOLATE, ORANGE. Join The Cheek Pouch Discord server to suggest new groupings if you designed a custom hamster texture that you think belongs in its own unique grouping (i.e. maybe a 'mossy' green hamster?). +magicalWeights = [ + "LAVENDER:70", + "ROSE:30" +] +snowyBiomes = [ + "terralith:snowy_maple_forest", + "terralith:wintry_forest", + "terralith:alpine_grove", + "terralith:siberian_grove" +] +snowyTags = [ + "adorablehamsterpets:is_cold", + "adorablehamsterpets:is_snowy" +] +snowyExclusionBiomes = [ + "minecraft:deep_frozen_ocean", + "minecraft:frozen_ocean", + "minecraft:stony_shore", + "minecraft:windswept_forest", + "minecraft:windswept_gravelly_hills", + "minecraft:windswept_hills", + "minecraft:taiga", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" +] +snowyExclusionTags = [ ] +# Format 'VARIANT_TYPE:WEIGHT'. The total weight must equal 100, so I hope you graduated third grade. Available groupings of hamster types: WHITE, BLUE, SKY, LAVENDER, ROSE, LIGHT_GRAY, DARK_GRAY, CREAM, BLACK, CHOCOLATE, ORANGE. Join The Cheek Pouch Discord server to suggest new groupings if you designed a custom hamster texture that you think belongs in its own unique grouping (i.e. maybe a 'mossy' green hamster?). +snowyWeights = [ + "WHITE:100" +] +rockyBiomes = [ + "minecraft:stony_shore", + "terralith:stony_spires" +] +rockyTags = [ + "adorablehamsterpets:is_mountain", + "adorablehamsterpets:is_sparse_vegetation", + "terralith:cliffs" +] +rockyExclusionBiomes = [ ] +rockyExclusionTags = [ + "minecraft:is_badlands", + "minecraft:is_jungle", + "minecraft:is_savanna", + "minecraft:is_beach", + "adorablehamsterpets:is_sandy" +] +# Format 'VARIANT_TYPE:WEIGHT'. The total weight must equal 100, so I hope you graduated third grade. Available groupings of hamster types: WHITE, BLUE, SKY, LAVENDER, ROSE, LIGHT_GRAY, DARK_GRAY, CREAM, BLACK, CHOCOLATE, ORANGE. Join The Cheek Pouch Discord server to suggest new groupings if you designed a custom hamster texture that you think belongs in its own unique grouping (i.e. maybe a 'mossy' green hamster?). +mountainWeights = [ + "LIGHT_GRAY:50", + "DARK_GRAY:50" +] +darkBiomes = [ + "minecraft:deep_dark" +] +darkTags = [ + "adorablehamsterpets:is_wet", + "adorablehamsterpets:is_cave" +] +darkExclusionBiomes = [ ] +darkExclusionTags = [ + "minecraft:is_jungle", + "minecraft:is_beach" +] +# Format 'VARIANT_TYPE:WEIGHT'. The total weight must equal 100, so I hope you graduated third grade. Available groupings of hamster types: WHITE, BLUE, SKY, LAVENDER, ROSE, LIGHT_GRAY, DARK_GRAY, CREAM, BLACK, CHOCOLATE, ORANGE. Join The Cheek Pouch Discord server to suggest new groupings if you designed a custom hamster texture that you think belongs in its own unique grouping (i.e. maybe a 'mossy' green hamster?). +darkWeights = [ + "BLACK:80", + "DARK_GRAY:20" +] +sandyBiomes = [ + "minecraft:old_growth_birch_forest", + "minecraft:birch_forest", + "terralith:ancient_sands", + "terralith:sandstone_valley", + "biomesoplenty:wasteland" +] +sandyTags = [ + "adorablehamsterpets:is_sandy" +] +sandyExclusionBiomes = [ + "terralith:gravel_beach" +] +sandyExclusionTags = [ + "minecraft:is_badlands" +] +# Format 'VARIANT_TYPE:WEIGHT'. The total weight must equal 100, so I hope you graduated third grade. Available groupings of hamster types: WHITE, BLUE, SKY, LAVENDER, ROSE, LIGHT_GRAY, DARK_GRAY, CREAM, BLACK, CHOCOLATE, ORANGE. Join The Cheek Pouch Discord server to suggest new groupings if you designed a custom hamster texture that you think belongs in its own unique grouping (i.e. maybe a 'mossy' green hamster?). +sandyWeights = [ + "CREAM:100" +] +forestBiomes = [ + "terralith:cloud_forest", + "biomesoplenty:redwood_forest" +] +forestTags = [ + "adorablehamsterpets:is_forest", + "adorablehamsterpets:is_dense_vegetation" +] +forestExclusionBiomes = [ ] +forestExclusionTags = [ + "adorablehamsterpets:is_plains" +] +# Format 'VARIANT_TYPE:WEIGHT'. The total weight must equal 100, so I hope you graduated third grade. Available groupings of hamster types: WHITE, BLUE, SKY, LAVENDER, ROSE, LIGHT_GRAY, DARK_GRAY, CREAM, BLACK, CHOCOLATE, ORANGE. Join The Cheek Pouch Discord server to suggest new groupings if you designed a custom hamster texture that you think belongs in its own unique grouping (i.e. maybe a 'mossy' green hamster?). +forestWeights = [ + "CHOCOLATE:100" +] +# Format 'VARIANT_TYPE:WEIGHT'. The total weight must equal 100, so I hope you graduated third grade. Available groupings of hamster types: WHITE, BLUE, SKY, LAVENDER, ROSE, LIGHT_GRAY, DARK_GRAY, CREAM, BLACK, CHOCOLATE, ORANGE. Join The Cheek Pouch Discord server to suggest new groupings if you designed a custom hamster texture that you think belongs in its own unique grouping (i.e. maybe a 'mossy' green hamster?). +plainsWeights = [ + "ORANGE:100" +] +# The overall probability (0.0 to 1.0) that ANY wild hamster has stuffed something in its face. Set to 0.0 to enforce strict economic austerity. +globalCheekLootChance = 0.5 +# The curated selection of pocket lint, seeds, and snacks that hamsters naturally forage. Edit this if you think hamsters should naturally forage for diamonds. +defaultCheekLootList = [ + "minecraft:wheat_seeds", + "minecraft:pumpkin_seeds", + "minecraft:melon_seeds", + "minecraft:beetroot_seeds", + "minecraft:carrot", + "minecraft:potato", + "minecraft:poisonous_potato", + "minecraft:apple", + "minecraft:stick", + "minecraft:feather", + "minecraft:string", + "minecraft:gold_nugget", + "minecraft:iron_nugget", + "minecraft:flint", + "adorablehamsterpets:sunflower_seeds", + "adorablehamsterpets:cucumber_seeds", + "adorablehamsterpets:green_bean_seeds", + "adorablehamsterpets:acorn" +] +# The chance (0.0 to 1.0) that a wild hamster spawns with the default junk (seeds, nuggets, carrots, etc). 0.5 = 50%. +defaultCheekLootChance = 0.5 +# A list of item IDs (e.g. 'minecraft:cookie') or tags (e.g. '#c:fruits') that wild hamsters can spawn with. If you want them to spawn with Nether Stars, this is where you make that bad decision. +extraCheekLootList = [ ] +# The chance (0.0 to 1.0) that a wild hamster spawns with items from your Extra Loot list above. Independent of the default loot check. +extraCheekLootChance = 0.5 +# The shiny rocks, glowing berries, and industrial debris found in the cheeks of cave-dwelling hamsters. Spelunking rodents have expensive tastes. +caveCheekLootList = [ + "minecraft:raw_iron", + "minecraft:raw_copper", + "minecraft:raw_gold", + "minecraft:coal", + "minecraft:amethyst_shard", + "minecraft:glow_berries", + "minecraft:redstone", + "minecraft:lapis_lazuli", + "minecraft:flint", + "minecraft:clay_ball" +] +# The chance (0.0 to 1.0) that a hamster spawning in a cave actually found something cool instead of just a rock. Applies ONLY to hamsters spawning in valid cave biomes or deep underground. +caveCheekLootChance = 0.5 +# Chance (0.0 to 1.0) to find Cucumber, Green Bean, or Sunflower seeds in general loot chests. +seedLootChance = 0.6 +# Chance (0.0 to 1.0) to find Acorn, Iron, or Gold hamster armor in standard Dungeons, Temples, Mineshafts, etc. +standardArmorLootChance = 0.3 +# Chance (0.0 to 1.0) to find Diamond hamster armor in high-level chests (End City, Nether Fortress). +highTierArmorLootChance = 0.15 +# Vanilla horse armor doesn't spawn in Netherite, but maybe you think that's stupid. Enable this to allow Netherite Hamster Armor to appear in chests. +enableNetheriteArmorLoot = false +# Chance (0.0 to 1.0) to find Netherite Hamster Armor in high-level chests. Only applies if the toggle above is ON. Don't be too liberal with it. Or do. See if I care. +netheriteArmorLootChance = 0.1 +# Chance (0.0 to 1.0) to find Iron and Gold upgrade templates in High-Tier chests (Bastions, Fortresses, etc). +basicSmithingTemplateLootChance = 0.2 +# Chance (0.0 to 1.0) to find Diamond and Netherite upgrade templates in Legendary chests (Ancient Cities, Ominous Vaults, etc). +advancedSmithingTemplateLootChance = 0.1 +# Chance (0.0 to 1.0) to find accessories in rare chests. Default is low. +accessoryLootChance = 0.05 +# Chance (0.0 to 1.0) for an Oak Leaf block to drop an Acorn when broken. Default is low, similar to Apples. +oakLeavesAcornDropChance = 0.005 +# Higher = slower, lower = faster. Makes perfect sense. +wildBushRegrowthModifier = 1.0 +# Higher = slower, lower = faster. Photosynthesis is hard, okay? +sunflowerRegrowthModifier = 1.0 +# A list of biome tags where these custom Sunflowers can replace vanilla ones. My custom union tag 'adorablehamsterpets:is_plains' points to 'c:is_plains', which provides wide compatibility with modded biomes. +sunflowerBiomeTags = [ + "adorablehamsterpets:is_plains", + "adorablehamsterpets:is_temperate", + "adorablehamsterpets:is_hot", + "adorablehamsterpets:is_dry" +] +# Specific biome IDs where these sunflowers can replace the vanilla ones. Format: 'mod_id:biome_name'. They’re picky. +sunflowerBiomes = [ + "minecraft:sunflower_plains" +] +# Enables the 'CasualAnimalEnjoyer' Protocol. A small chance for a random nearby sunflower to become a bioluminescent beacon at night— a reference to the Kikoriki cartoon, 'It Can't Be True' episode, around the 3:22 mark. Added upon request as a thank-you to CasualAnimalEnjoyer for their massive help with mod compatibility. +enableGlowingSunflowers = true +# 1 in X random ticks (20 ticks per second). Lower = more likely. Higher = more rare. Note: This only runs at night. +glowingSunflowerChance = 1000 +# 1 in X chunks. Lower numbers means cucumbers take over the planet. +wildCucumberBushRarity = 24 +# Biome tags where cucumbers feel at home. Format: 'mod_id:tag_name', for example: 'minecraft:is_jungle'. +cucumberBushTags = [ + "minecraft:is_jungle" +] +# Convention tags for maximum mod-pack harmony. Format: 'namespace:tag_name', for example: 'adorablehamsterpets:is_temperate', which points to the 'c:is_temperate' convention tag. +cucumberBushConventionTags = [ + "adorablehamsterpets:is_temperate", + "adorablehamsterpets:is_hot", + "adorablehamsterpets:is_dry" +] +# Specific biome IDs where cucumbers can sprout. Format: 'mod_id:biome_name', for example: 'minecraft:savanna'. +cucumberBushBiomes = [ + "minecraft:plains", + "minecraft:sunflower_plains", + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:forest", + "minecraft:birch_forest", + "minecraft:meadow", + "minecraft:wooded_badlands", + "minecraft:jungle", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle" +] +# Biomes where cucumbers are absolutely NOT allowed. Overrides everything else. Format: 'mod_id:biome_name', for example: 'minecraft:ocean'. +cucumberBushExclusions = [ + "minecraft:swamp", + "minecraft:mangrove_swamp", + "minecraft:mushroom_fields", + "minecraft:ocean", + "minecraft:deep_ocean", + "minecraft:warm_ocean", + "minecraft:stony_peaks" +] +# 1 in X chunks. Lower = beanpocalypse. For those of you in the back, it means they'll spam everywhere. +wildGreenBeanBushRarity = 24 +# Biome tags for bean growth. Empty by default—choose wisely. Format: 'mod_id:tag_name', for example: 'minecraft:is_jungle'. +greenBeanBushTags = [ + "mod_id:biome_name" +] +# Convention tags for mod-friendly bean spam. Format: 'namespace:tag_name', for example: 'adorablehamsterpets:is_wet', which points to the 'c:is_wet' convention tag. +greenBeanBushConventionTags = [ + "adorablehamsterpets:is_wet", + "adorablehamsterpets:is_temperate" +] +# Specific biomes where beans sprout like gossip in chat. Format: 'mod_id:biome_name', for example: 'minecraft:swamp'. +greenBeanBushBiomes = [ + "minecraft:swamp", + "minecraft:mangrove_swamp", + "minecraft:lush_caves", + "minecraft:flower_forest" +] +# Absolutely no beans here, thank you very much. Overrides all other settings. Format: 'mod_id:biome_name', for example: 'minecraft:beach'. +greenBeanBushExclusions = [ + "minecraft:beach", + "minecraft:birch_forest", + "minecraft:cherry_grove", + "minecraft:dark_forest", + "minecraft:deep_ocean", + "minecraft:dripstone_caves", + "minecraft:forest", + "minecraft:meadow", + "minecraft:ocean", + "minecraft:old_growth_birch_forest", + "minecraft:plains", + "minecraft:river", + "minecraft:sunflower_plains" +] \ No newline at end of file diff --git a/minecraft/config/advanced_ae-client.toml b/minecraft/config/advanced_ae-client.toml new file mode 100644 index 0000000..5281ac5 --- /dev/null +++ b/minecraft/config/advanced_ae-client.toml @@ -0,0 +1,5 @@ + +["reaction chamber"] + #Enable/disable reaction chamber's item rendering. Saves on performance if there are a considerable amount of them running at the same time. + enableEffects = true + diff --git a/minecraft/config/advanced_ae-common.toml b/minecraft/config/advanced_ae-common.toml new file mode 100644 index 0000000..3c23380 --- /dev/null +++ b/minecraft/config/advanced_ae-common.toml @@ -0,0 +1,73 @@ + +["quantum computer"] + #Define the maximum dimensions of the Quantum Computer Multiblock. + #Range: 5 ~ 12 + quantumComputerMaxSize = 7 + #Define the amount of Threads per Quantum Computer Accelerator. + #Range: 4 ~ 16 + quantumComputerAcceleratorThreads = 8 + #Define the maximum amount of multi threaders per Quantum Computer Multiblock. + #Range: 1 ~ 2 + quantumComputerMaxMultiThreaders = 1 + #Define the maximum amount of Data Entanglers per Quantum Computer Multiblock. + #Range: 1 ~ 2 + quantumComputermaxDataEntanglers = 1 + #Define the multiplication factor of the multi threaders. + #Range: 2 ~ 8 + quantumComputerMultiThreaderMultiplication = 4 + #Define the multiplication factor of the data entanglers. + #Range: 2 ~ 8 + quantumComputerDataEntanglerMultiplication = 4 + +["quantum armor"] + #Define the maximum walk speed increase. Values are divided by 10 before use. + #Range: 10 ~ 100 + quantumArmorMaxWalkSpeed = 60 + #Define the maximum sprint speed increase. Values are divided by 10 before use. + #Range: 10 ~ 150 + quantumArmorMaxSprintSpeed = 80 + #Define the maximum increase in step height. + #Range: 1 ~ 5 + quantumArmorMaxStepHeight = 3 + #Define the maximum increase in jump height. + #Range: 1 ~ 5 + quantumArmorMaxJumpHeight = 3 + #Define the maximum swim speed increase. Values are divided by 10 before use. + #Range: 10 ~ 150 + quantumArmorSwimSpeedBoost = 80 + #Define the HP increased of the HP Buffer card. + #Range: 5 ~ 50 + quantumArmorHpBuffer = 20 + #Define the maximum speed boost of the Flight Card. + #Range: 1 ~ 15 + quantumArmorMaxFlightSpeed = 10 + #Define the evasion % chance of the evasion card. + #Range: 0 ~ 100 + quantumArmorEvasionChance = 30 + #Define the max range of the magnet card. + #Range: 5 ~ 15 + quantumArmorMagnetRange = 12 + #Define the Attack Damage boost of the Strength Card. + #Range: 5 ~ 50 + quantumArmorStrengthBoost = 10 + #Define the Attack Speed Damage boost of the Attack Speed Card. + #Range: 1 ~ 10 + quantumArmorAttackSpeedBoost = 5 + #Define the luck boost of the Luck Card. + #Range: 1 ~ 5 + quantumArmorLuckBoost = 2 + #Define the max additional reach of the Reach Card. + #Range: 1 ~ 8 + quantumArmorMaxReachBoost = 5 + #Define the amount of hearts regenerated per tick with the Regeneration Card. Value will be divided by 10 before use. + #Range: 1 ~ 20 + quantumArmorRenegerationPerTick = 10 + #Define the maximum percentage of incoming damage absorbed by the Quantum Armor. This value is still limited by the energy buffer in the equipment. + #Range: 5 ~ 100 + quantumArmorPercentageDamageAbsorption = 30 + +[Miscellaneous] + #Define the size of the cache for the Throughput Monitor. Only affects "Per minute" and "Per 10 minutes" configurations. Higher values will increase precison, but will make the monitor react slower to changes. + #Range: 40 ~ 400 + throughputMonitorCacheSize = 80 + diff --git a/minecraft/config/advancementplaques-common.toml b/minecraft/config/advancementplaques-common.toml new file mode 100644 index 0000000..cb2ac47 --- /dev/null +++ b/minecraft/config/advancementplaques-common.toml @@ -0,0 +1,75 @@ + +#Client Configuration +[client] + + [client.visual_options] + # If plaques should show on the top of the screen. + on_top = true + # The distance from the top or bottom of the screen, in pixels. + #Range: 8 ~ 256 + distance = 16 + # The horizontal offset from the center, in pixels. + #Range: -256 ~ 256 + horizontal_offset = 0 + # Hide waila/hwyla/jade popups while plaques are showing. + hide_waila = false + # If plaques should show for task advancements (normal advancements). + tasks = true + # If plaques should show for goal advancements (medium-difficulty advancements). + goals = true + # If plaques should show for challenge advancements (high-difficulty advancements). + challenges = true + # Text color to use for plaque titles (like "Advancement made!"). Can be entered as an 8-digit hex color code #AARRGGBB for convenience. If Prism library is installed, any Prism color definition is supported. + title_color = "#FF332200" + # Text color to use for advancement names on plaques. Can be entered as an 8-digit hex color code #AARRGGBB for convenience. If Prism library is installed, any Prism color definition is supported. + name_color = "#FFFFFFFF" + + [client.duration_options] + # Duration of the shiny effect fade in for tasks. + #Range: 0.1 ~ 3.0 + task_effect_fadein = 0.5 + # Duration of the shiny effect fade out for tasks. + #Range: 0.1 ~ 3.0 + task_effect_fadeout = 1.5 + # Duration of the plaques for tasks (minus the effect fade in/out durations). + #Range: 2.0 ~ 10.0 + task_duration = 7.0 + # Duration of the shiny effect fade in for goals. + #Range: 0.1 ~ 3.0 + goal_effect_fadein = 0.5 + # Duration of the shiny effect fade out for goals. + #Range: 0.1 ~ 3.0 + goal_effect_fadeout = 1.5 + # Duration of the plaques for goals (minus the effect fade in/out durations). + #Range: 2.0 ~ 10.0 + goal_duration = 7.0 + # Duration of the shiny effect fade in for challenges. + #Range: 0.1 ~ 3.0 + challenge_effect_fadein = 1.25 + # Duration of the shiny effect fade out for challenges. + #Range: 0.1 ~ 3.0 + challenge_effect_fadeout = 1.5 + # Duration of the plaques for challenges (minus the effect fade in/out durations). + #Range: 2.0 ~ 10.0 + challenge_duration = 7.0 + + [client.functionality_options] + # Blacklist of advancements to never show plaques for. Takes precedence over whitelist if they conflict. + # Options: + # Advancement ID (eg. "minecraft:adventure/adventuring_time") + # Mod ID (Omit the colon, eg. "minecraft") + # Advancement Category (End with a /, eg. "minecraft:story/") + blacklist = [] + # Whitelist of advancements to show plaques for. Leave empty to display for all. + # Same options available as blacklist. + whitelist = [] + # Volume of task sounds. Set to 0 to mute. + #Range: 0.0 ~ 1.0 + task_volume = 1.0 + # Volume of goal sounds. Set to 0 to mute. + #Range: 0.0 ~ 1.0 + goal_volume = 1.0 + # Volume of challenge sounds. Set to 0 to mute. + #Range: 0.0 ~ 1.0 + challenge_volume = 1.0 + diff --git a/minecraft/config/ae2/client.json b/minecraft/config/ae2/client.json index 703db56..4bde5de 100644 --- a/minecraft/config/ae2/client.json +++ b/minecraft/config/ae2/client.json @@ -24,7 +24,7 @@ "terminalMargin": 25 }, "terminals": { - "terminalStyle": "small", + "terminalStyle": "tall", "pinAutoCraftedItems_comment": "Pin items that the player auto-crafts to the top of the terminal", "pinAutoCraftedItems": true }, diff --git a/minecraft/config/ae2/common.json b/minecraft/config/ae2/common.json index 5594ede..b2f2d17 100644 --- a/minecraft/config/ae2/common.json +++ b/minecraft/config/ae2/common.json @@ -86,17 +86,17 @@ }, "tickRates": { "_comment": " Min / Max Tickrates for dynamic ticking, most of these components also use sleeping, to prevent constant ticking, adjust with care, non standard rates are not supported or tested.", - "InterfaceMin": 5, + "InterfaceMin": 10, "InterfaceMax": 120, - "ImportBusMin": 5, + "ImportBusMin": 10, "ImportBusMax": 40, - "ExportBusMin": 5, + "ExportBusMin": 10, "ExportBusMax": 60, - "AnnihilationPlaneMin": 2, + "AnnihilationPlaneMin": 5, "AnnihilationPlaneMax": 120, - "METunnelMin": 5, + "METunnelMin": 10, "METunnelMax": 20, - "InscriberMin": 1, + "InscriberMin": 2, "InscriberMax": 20, "ChargerMin": 10, "ChargerMax": 10, @@ -104,11 +104,11 @@ "IOPortMax": 5, "VibrationChamberMin": 10, "VibrationChamberMax": 40, - "StorageBusMin": 5, + "StorageBusMin": 10, "StorageBusMax": 60, - "ItemTunnelMin": 5, + "ItemTunnelMin": 10, "ItemTunnelMax": 60, - "LightTunnelMin": 5, + "LightTunnelMin": 10, "LightTunnelMax": 60 }, "vibrationChamber": { diff --git a/minecraft/config/ae2additions-common.toml b/minecraft/config/ae2additions-common.toml new file mode 100644 index 0000000..cde936d --- /dev/null +++ b/minecraft/config/ae2additions-common.toml @@ -0,0 +1,5 @@ + +[meWirelessTransceiver] + basePower = 10 + distanceMultiplier = 1.0 + diff --git a/minecraft/config/aeroblender-common.toml b/minecraft/config/aeroblender-common.toml new file mode 100644 index 0000000..2c89e5d --- /dev/null +++ b/minecraft/config/aeroblender-common.toml @@ -0,0 +1,7 @@ + +[general] + #The size of aether biome regions from each mod that uses AeroBlender. + "Aether Region Size" = 2 + #The weighting of vanilla biome regions in the aether. + "Aether Region Weight" = 0 + diff --git a/minecraft/config/aether-client.toml b/minecraft/config/aether-client.toml new file mode 100644 index 0000000..eba7d30 --- /dev/null +++ b/minecraft/config/aether-client.toml @@ -0,0 +1,77 @@ + +[Rendering] + #Changes Zephyr and Aerwhale rendering to use their old models from the b1.7.3 version of the mod + "Switches to legacy mob models" = false + #Disables the Aether's custom skybox in case you have a shader that is incompatible with custom skyboxes + "Disables Aether custom skybox" = true + #Removes warm-tinting of the lightmap in the Aether, giving the lighting a colder feel + "Makes lightmap colder" = true + #Enables a green-tinted sunrise and sunset in the Aether, similar to the original mod + "Enables green sunrise/sunset" = false + +[Gui] + #Adds a button to the top right of the main menu screen to toggle between the Aether and vanilla menu + "Enables Aether menu button" = false + #Changes the background panorama into a preview of the latest played world + "Enables world preview" = false + #Adds a button to the top right of the main menu screen to toggle between the panorama and world preview + "Enables toggle world button" = true + #Adds a button to the top right of the main menu screen to allow quick loading into a world if the world preview is enabled + "Enables quick load button" = true + #Determines that menu elements will align left if the menu's world preview is active, if true, this overrides 'Align menu elements left' + "Align menu elements left with world preview" = false + #Determines the default Aether menu style to switch to with the menu theme button + "Default Aether menu style" = "aether:the_aether_left" + #Determines the default Minecraft menu style to switch to with the menu theme button + "Default Minecraft menu style" = "cumulus_menus:minecraft" + #Adds random trivia and tips to the bottom of loading screens + "Enables random trivia" = true + #Makes the extra hearts given by life shards display as silver colored + "Enables silver life shard hearts" = true + #Disables the Aether's accessories button from appearing in GUIs + "Disables the accessories button" = false + #The y-coordinate of the Ascending to the Aether and Descending from the Aether text in loading screens + "Portal text y-coordinate in loading screens" = 50 + #The x-coordinate of the accessories button in the inventory and curios menus + "Button x-coordinate in inventory menus" = 27 + #The y-coordinate of the accessories button in the inventory and curios menus + "Button y-coordinate in inventory menus" = 68 + #The x-coordinate of the accessories button in the creative menu + "Button x-coordinate in creative menu" = 74 + #The y-coordinate of the accessories button in the creative menu + "Button y-coordinate in creative menu" = 40 + #The x-coordinate of the accessories button in the accessories menu + "Button x-coordinate in accessories menu" = 9 + #The y-coordinate of the accessories button in the accessories menu + "Button y-coordinate in accessories menu" = 68 + #The x-coordinate of the perks button layout when in the pause menu + "Layout x-coordinate in pause menu" = -116 + #The y-coordinate of the perks button layout when in the pause menu + "Layout y-coordinate in pause menu" = 0 + #Enables the overlay at the top of the screen for the Hammer of Kingbdogz' cooldown + "Enables Hammer of Kingbdogz' cooldown overlay" = true + +[Audio] + #Makes Blue Aerclouds have their wobbly sounds that play when bouncing on them + "Blue Aercloud bouncing sounds" = true + #Sets the minimum delay for the Aether's music manager to use if needing to reset the song delay outside the Aether + "Set backup minimum music delay" = 12000 + #Sets the maximum delay for the Aether's music manager to use if needing to reset the song delay outside the Aether + "Set backup maximum music delay" = 24000 + #Disables the Aether's internal music manager, if true, this overrides all other audio configs + "Disables Aether music manager" = false + #Disables the Aether's boss fight music, only works if 'Disables Aether music manager' is false + "Disables Aether boss music" = false + #Disables the Aether's menu music in case another mod implements its own, only works if 'Disables Aether music manager' is false + "Disables Aether menu music" = false + #Disables the menu music on the vanilla world preview menu, only works if 'Disables Aether music manager' is false + "Disables vanilla world preview menu music" = false + #Disables the menu music on the Aether world preview menu, only works if 'Disables Aether music manager' is false + "Disables Aether world preview menu music" = false + +[Miscellaneous] + #Disables the Cumulus menu selection screen button on launch + "Disable Cumulus button" = false + #Enables a direct join button for the official server + "Enables server button" = false + diff --git a/minecraft/config/aether-common.toml b/minecraft/config/aether-common.toml new file mode 100644 index 0000000..2f1b472 --- /dev/null +++ b/minecraft/config/aether-common.toml @@ -0,0 +1,25 @@ + +[Gameplay] + #Use the default Curios menu instead of the Aether's Accessories Menu. WARNING: Do not enable this without emptying your equipped accessories + "Use default Curios' menu" = false + #On world creation, the player is given an Aether Portal Frame item to automatically go to the Aether with + "Gives player Aether Portal Frame item" = false + #When the player enters the Aether, they are given a Book of Lore and Golden Parachutes as starting loot + "Gives starting loot on entry" = true + #Moves the message for when a player attacks the Slider with an incorrect item to be above the hotbar instead of in chat + "Reposition attack message above hotbar" = false + #Determines whether the Sun Spirit's dialogue when meeting him should play through every time you meet him + "Repeat Sun Spirit's battle dialogue" = true + #Determines if a message that links The Aether mod's Patreon should show + "Show Patreon message" = true + +["Data Pack"] + #Sets the Aether Temporary Freezing data pack to be added to new worlds automatically + "Add Temporary Freezing automatically" = false + #Sets the Aether Ruined Portals data pack to be added to new worlds automatically + "Add Ruined Portals automatically" = false + +[Modpack] + #Determines whether bosses should display a randomized name above their boss bar + "Randomize boss names" = true + diff --git a/minecraft/config/aether/aether_customizations.txt b/minecraft/config/aether/aether_customizations.txt new file mode 100644 index 0000000..714d938 --- /dev/null +++ b/minecraft/config/aether/aether_customizations.txt @@ -0,0 +1,5 @@ +haloEnabled:true +haloColor: +developerGlowEnabled:false +developerGlowColor: +moaSkin: diff --git a/minecraft/config/aether/sun_altar_whitelist.json b/minecraft/config/aether/sun_altar_whitelist.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/aether/sun_altar_whitelist.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/aether_redux_client.toml b/minecraft/config/aether_redux_client.toml new file mode 100644 index 0000000..16adfe7 --- /dev/null +++ b/minecraft/config/aether_redux_client.toml @@ -0,0 +1,62 @@ + +[Rendering] + + [Rendering."Mob Model Upgrades"] + #Makes Moas resemble their Mutation models + "Moa Model Upgrade" = true + #Determines which model variation to use for the Moa. Refreshed is sort of a preview for a future design that will be used, the two legacy ones are from the old Moa Foot Type config to change between peaceful-appearing toes and menacing talons for the feet. + #Allowed Values: refreshed, legacy_toes, legacy_talons + "Moa Model Type" = "refreshed" + #Makes Cockatrices look far better + "Cockatrice Model Upgrade" = true + #Determines which model variation to use for the Cockatrice. Refreshed is sort of a preview for a future design that will be used, the legacy one uses Redux's previous iteration. + #Allowed Values: refreshed, legacy + "Cockatrice Model Type" = "refreshed" + #Improves the model for Sentries, giving them a new model and a springy jump animation + "Sentry Model Upgrade" = true + #Whether or not to use the upgraded Mimic model. Note that unless you use sync_with_server, there may be hitbox differences. + #Allowed Values: sync_with_server, modern_override, classic_override + "Mimic Model Upgrade" = "sync_with_server" + #Gives the Sheepuff's model some touchups and improvements + "Sheepuff Model Upgrade" = true + #Gives the Phyg's model some touchups and improvements + "Phyg Model Upgrade" = true + #Gives the Flying Cow's model some touchups and improvements + "Flying Cow Model Upgrade" = true + #Gives Whirlwinds a new design, based on Minecraft 1.21's new Breeze mob + "Improved Whirlwinds" = true + + [Rendering.GUI] + + [Rendering.GUI.Menu] + #Current folder used for the menu panorama + "Menu Directory" = "skyfields" + #Which menu panorama directories to cycle between. Make empty to disable cycling logic + "Menu Choices" = ["skyfields", "dungeon", "blight", "cloudcaps", "gilded"] + #Randomize menu panorama ranther than cycling in order. + "Randomize Menu Cycling" = false + #Center the mod's logo in the menu + "Center Aether: Redux Logo" = true + + [Rendering.Particles] + #Improves the leaf particles for Golden Oaks, Gilded Oaks, and Crystal Trees, based on Minecraft 1.20's new cherry tree particles. + "Better Leaf Particles" = true + +[Fixes] + #Fixes a forge/neoforge bug causing biome modifiers to not be able to change grass colors, so Redux can have vanilla grass use vanilla colors in the Aether + "Fix Biome Modifier Grass Bug" = true + +[Audio] + #Enables a slamming sound for mimics when using the new model. Disable if it gets too annoying XD + "Mimic Slam Sound Effect" = true + #Gives sounds to the other clouds for the Aether: Genesis when it is installed + "Aercloud Ability Sounds" = true + +[Internal] + #Internal value to do menu changes. Set this to false in modpacks if you want to use your own menu. + "First Startup - Menu Setup" = false + #Internal value to change an Aether config, giving a nicer lightmap in the dimension. + "First Startup - Lightmap Change" = false + #Value used to track the version of the Aether: Redux most recently used. + "Version ID" = "2.0.19" + diff --git a/minecraft/config/aether_redux_common.toml b/minecraft/config/aether_redux_common.toml new file mode 100644 index 0000000..70770b9 --- /dev/null +++ b/minecraft/config/aether_redux_common.toml @@ -0,0 +1,106 @@ + +["Gameplay Changes"] + + ["Gameplay Changes"."Existing Mob Changes"] + #Makes Cockatrices shoot at you and chase you if they hit you. Also disables Cockatrice spawns in the Blight. Requires world restart to refresh existing mob AI. + "Improved Cockatrice Behavior" = true + #Makes Cockatrices burn in daylight. Requires world restart to refresh existing mob AI. + "Cockatrices burn in daylight" = false + #Gives Swets less irritating behavior, based on their behavior in older builds of the Paradise Lost mod. Requires world restart to refresh existing mob AI. + "PL-Like Swet Behavior" = true + #Decreases the size of mimics. Intended to be used with the client-side model. Requires an MC restart + "Smaller Mimic Hitbox" = true + #Causes mobs to try to avoid walking on quicksoil. + "Mobs Avoid Quicksoil" = true + + ["Gameplay Changes".Loot] + #Enables the Valkyrie Ring as a drop from Valkyries + "Valkyrie Ring" = true + + ["Gameplay Changes"."Mob Spawns"] + #Allows Endermen to spawn in the Aether + "Enderman Spawns" = false + #Allows Vanilla Swets to spawn in the Aether + "Vanilla Swet Spawns" = true + + ["Gameplay Changes"."Existing Content Alterations"] + #Nerfs Gummy Swets, but also makes them craftable. Note: Requires the Aether's Gummy Swet Healing config to be false to properly nerf the hunger effect. Requires datapack reload. + "Nerf Gummy Swets" = true + #Makes some Aether blocks take a bit longer to break, as they are extremely quick currently + "Consistent Mining Speeds" = false + #Changes quicksoil between various behaviors. Genesis is the most chaotic, highlands is the most fine-tuned, classic is the original + #Allowed Values: classic, genesis, highlands + "Quicksoil Movement System" = "highlands" + #Replaces Enchanted Gravitite with Gravitite Ingots. The blocks of this have the original floating behavior. + "Gravitite Ingots" = true + #Makes Light Dungeon stones use better recipes + "Better Light Dungeon Stone Recipes" = true + + ["Gameplay Changes".Additions] + #Use Raw ores for different Aether metals. + "Raw Ores" = true + + ["Gameplay Changes".Misc] + #Changes the hitboxes of vanilla double plants. Disable if it causes odd behavior. + "Change Double Plant Hitboxes" = true + #Gives blockstate conversion recipes (ambrosium, swet ball) alternate sounds + "Alternate Conversion Sounds" = false + +[Worldgen] + #Uses an alternative island noise for the Aether. By default, this is disabled with the Ancient Aether mod installed. + #Allowed Values: TRUE, FALSE, WITHOUT_AA + "Redux Noise" = "without_aa" + + [Worldgen."Additional Features"] + #Enables Mossy Holystone as an ore. Configurable so that if you disable it, it's easier to tell if you've come across a dungeon. + "Mossy Holystone Ores" = true + #Enables Enchanted/Gilded vines on trees + "Enable Enchanted and Gilded Vines" = true + #Uses the legacy design for the gilded groves, instead of the new one added in 2.0.17 that is an inbetween of 2.0 and 2.1's designs + "Legacy Gilded Groves Design" = false + + [Worldgen."Additional Features"."Cloud Layer"] + #Replaces the Aether's large cloud features with a new and improved noise-based cloud layer. + "Cloud Layer Generation" = true + #Minimum value for the cloud layer's noise threshold + #Range: -4.0 ~ 4.0 + "Cloud Layer Threshold Min" = 0.0 + #Maximum value for the cloud layer's noise threshold + #Range: -4.0 ~ 4.0 + "Cloud Layer Threshold Max" = 1.0 + + [Worldgen."Bronze Dungeon"] + #Adds dungeon mobs from the Aether: Genesis to the spawners added to the Bronze Dungeon if it is installed + #Allowed Values: sentry_only, all, no_golems + "Genesis Mobs in Spawners" = "all" + #Upgrades the Bronze Dungeon structure with new blocks and more depth + "Bronze Dungeon Upgrade" = true + + [Worldgen.Biomes] + #When enabled, any biome value config changes will be reset. It is recommended that you disable this if you want to keep any custom biome parameters you may have set. + "Auto-Reset Biome Values" = true + #The value of Redux's biome region size. Larger values correspond to larger biome clumps + "Region Size" = 20 + #Improves the water color of Aether biomes, making the color match the rest of the dimension better + "Better Water Color" = true + #Alters the sky colors of the Aether, to be a bit more in line with vanilla. Also adds some new unique colors as well to some of Redux's new biomes + "Alternate Sky Colors" = true + #Enables the Blight biome. + "Enable the Blight" = true + #Enables the Gilded Groves and Gilded Grasslands biomes. + "Enable Gilded Biomes" = true + #Enables the Frosted Tundra and Glacial Tagia biomes. + "Enable Snowy Biomes" = true + #Enables the Skyfields biome. + "Enable Skyfields" = true + #Enables the Cloudcaps biome. + "Enable the Cloudcaps" = true + #Enables the Skyroot Shrublands biome. + "Enable Skyroot Shrublands" = true + #Uses Enchanted Aether Grass for the ground in the Gilded Groves. May require a Minecraft restart. + "Enchanted Gilded Grass" = true + +[Internal] + #Internal value, used to decide if the Aeroblender configs should be changed + "First Startup - Aeroblender Setup" = true + diff --git a/minecraft/config/aether_redux_pack_config.json b/minecraft/config/aether_redux_pack_config.json new file mode 100644 index 0000000..2e4e0ce --- /dev/null +++ b/minecraft/config/aether_redux_pack_config.json @@ -0,0 +1,22 @@ +{ + "mob": { + "purple_aechor_plants": true, + "cockatrice_texture": "blighted" + }, + "item": { + "veridium_type": "modern", + "swet_ball_type": "gel" + }, + "tintable_grass": true, + "mob_sounds": { + "better_sentry_sounds": true, + "better_cockatrice_sounds": false, + "better_aerwhale_sounds": true, + "better_mimic_awaken_sound": true, + "better_slider_sounds": true, + "better_aechor_sounds": true, + "better_moa_sounds": false, + "better_tempest_sounds": true + }, + "use_jappafied_textures": false +} diff --git a/minecraft/config/aiimprovements-common.toml b/minecraft/config/aiimprovements-common.toml index 5769d0b..d488586 100644 --- a/minecraft/config/aiimprovements-common.toml +++ b/minecraft/config/aiimprovements-common.toml @@ -1,123 +1,123 @@ - -#Entity Settings -[entity] - - #General - [entity.general] - #Allow AI tasks to be removed from entities at runtime. If this is disable no per mob or per mob type removes will run. - allow_remove_calls = true - #Allows repeat remove calls to bubble to the top of the list to improve performance of repeat mob spawning. - enable_call_bubbling = true - - #Entity Mob - [entity.mob] - - #Remove Look Goal - [entity.mob.remove_look_goal] - #Remove the look at goal (player or attack target) AI task. This will cause AIs to not face targets or walking directions. - remove_look_goal = false - #Set this to true to apply this setting to all mobs on the filter list. Set this to false to NOT apply this to mobs on the filter list. - is_allowlist = false - #The list of mobs that is affected by this setting according to is_allowlist - filter_list = [] - - #Remove Look Random - [entity.mob.remove_look_random] - #Remove the look at random position AI task. This will cause AIs to feel a little lifeless as they do not animate head movement while idle. - remove_look_random = false - #Set this to true to apply this setting to all mobs on the filter list. Set this to false to NOT apply this to mobs on the filter list. - is_allowlist = false - #The list of mobs that is affected by this setting according to is_allowlist - filter_list = [] - - #Replace Look Controller - [entity.mob.replace_look_controller] - #Replaces the default look controller with a version featuring cached tan math improving performance. Only works on vanilla style mobs, if a mod overrides the look controller it will skip. - replace_look_controller = true - #Set this to true to apply this setting to all mobs on the filter list. Set this to false to NOT apply this to mobs on the filter list. - is_allowlist = false - #The list of mobs that is affected by this setting according to is_allowlist - filter_list = [] - - #Entity Fish - [entity.fish] - #Remove the fish's random swimming pathfinder. This will cause fish to stay in position more often. - remove_swim = false - #Remove the fish's panic pathfinder. This will cause fish to not run away. - remove_panic = false - #Remove the fish's AI task to avoid players. - remove_avoid_player = false - #Remove the fish's AI task to follow a leader fish to act as a group of fish. - remove_follow_leader = false - #Remove the fish's AI task to puff up when entities are nearby - remove_puff = false - - #Squid Fish - [entity.squid] - #Remove the squid's flee pathfinder. This will cause squid to not run away. - remove_flee = false - #Remove the squid's random movement pathfinder. This will cause squid to swim around randomly. - remove_random_move = false - - #Cow - [entity.cow] - #Remove the cow's float AI task. This causes cows to no longer swim in water. - remove_float = false - #Remove the cow's panic AI task. This causes cows to no longer run around after being hit, or search water to extinguish themselves. - remove_panic = false - #Remove the cow's breed AI task. This causes cows to be unable to breed to create offspring. - remove_breed = false - #Remove the cow's tempt AI task. This causes cows to no longer follow the player if they're holding an item they like. - remove_tempt = false - #Remove the cow's follow parent AI task. This causes baby cows to no longer follow their parents. - remove_follow_parent = false - #Remove the cow's random stroll AI task. This causes cows to no longer walk around randomly. - remove_stroll = false - - #Chicken - [entity.chicken] - #Remove the chicken's float AI task. This causes chickens to no longer swim in water. - remove_float = false - #Remove the chicken's panic AI task. This causes chickens to no longer run around after being hit, or search water to extinguish themselves. - remove_panic = false - #Remove the chicken's breed AI task. This causes chickens to be unable to breed to create offspring. - remove_breed = false - #Remove the chicken's tempt AI task. This causes chickens to no longer follow the player if they're holding an item they like. - remove_tempt = false - #Remove the chicken's follow parent AI task. This causes baby chickens to no longer follow their parents. - remove_follow_parent = false - #Remove the chicken's random stroll AI task. This causes chickens to no longer walk around randomly. - remove_stroll = false - - #Pig - [entity.pig] - #Remove the pig's float AI task. This causes pigs to no longer swim in water. - remove_float = false - #Remove the pig's panic AI task. This causes pigs to no longer run around after being hit, or search water to extinguish themselves. - remove_panic = false - #Remove the pig's breed AI task. This causes pigs to be unable to breed to create offspring. - remove_breed = false - #Remove the pig's tempt AI task. This causes pigs to no longer follow the player if they're holding an item they like. - remove_tempt = false - #Remove the pig's follow parent AI task. This causes baby pigs to no longer follow their parents. - remove_follow_parent = false - #Remove the pig's random stroll AI task. This causes pigs to no longer walk around randomly. - remove_stroll = false - - #Sheep - [entity.sheep] - #Remove the sheep's float AI task. This causes sheep to no longer swim in water. - remove_float = true - #Remove the sheep's panic AI task. This causes sheep to no longer run around after being hit, or search water to extinguish themselves. - remove_panic = false - #Remove the sheep's breed AI task. This causes sheep to be unable to breed to create offspring. - remove_breed = false - #Remove the sheep's tempt AI task. This causes sheep to no longer follow the player if they're holding an item they like. - remove_tempt = false - #Remove the sheep's follow parent AI task. This causes baby sheep to no longer follow their parents. - remove_follow_parent = false - #Remove the sheep's random stroll AI task. This causes sheep to no longer walk around randomly. - remove_stroll = false - #Remove the sheep's eat block AI task. This causes sheep to no longer eat grass, and thus be unable to regenerate their wool. - remove_eat_block = false - + +#Entity Settings +[entity] + + #General + [entity.general] + #Allow AI tasks to be removed from entities at runtime. If this is disable no per mob or per mob type removes will run. + allow_remove_calls = true + #Allows repeat remove calls to bubble to the top of the list to improve performance of repeat mob spawning. + enable_call_bubbling = true + + #Entity Mob + [entity.mob] + + #Remove Look Goal + [entity.mob.remove_look_goal] + #Remove the look at goal (player or attack target) AI task. This will cause AIs to not face targets or walking directions. + remove_look_goal = false + #Set this to true to apply this setting to all mobs on the filter list. Set this to false to NOT apply this to mobs on the filter list. + is_allowlist = false + #The list of mobs that is affected by this setting according to is_allowlist + filter_list = [] + + #Remove Look Random + [entity.mob.remove_look_random] + #Remove the look at random position AI task. This will cause AIs to feel a little lifeless as they do not animate head movement while idle. + remove_look_random = false + #Set this to true to apply this setting to all mobs on the filter list. Set this to false to NOT apply this to mobs on the filter list. + is_allowlist = false + #The list of mobs that is affected by this setting according to is_allowlist + filter_list = [] + + #Replace Look Controller + [entity.mob.replace_look_controller] + #Replaces the default look controller with a version featuring cached tan math improving performance. Only works on vanilla style mobs, if a mod overrides the look controller it will skip. + replace_look_controller = true + #Set this to true to apply this setting to all mobs on the filter list. Set this to false to NOT apply this to mobs on the filter list. + is_allowlist = false + #The list of mobs that is affected by this setting according to is_allowlist + filter_list = [] + + #Entity Fish + [entity.fish] + #Remove the fish's random swimming pathfinder. This will cause fish to stay in position more often. + remove_swim = false + #Remove the fish's panic pathfinder. This will cause fish to not run away. + remove_panic = false + #Remove the fish's AI task to avoid players. + remove_avoid_player = false + #Remove the fish's AI task to follow a leader fish to act as a group of fish. + remove_follow_leader = false + #Remove the fish's AI task to puff up when entities are nearby + remove_puff = false + + #Squid Fish + [entity.squid] + #Remove the squid's flee pathfinder. This will cause squid to not run away. + remove_flee = false + #Remove the squid's random movement pathfinder. This will cause squid to swim around randomly. + remove_random_move = false + + #Cow + [entity.cow] + #Remove the cow's float AI task. This causes cows to no longer swim in water. + remove_float = false + #Remove the cow's panic AI task. This causes cows to no longer run around after being hit, or search water to extinguish themselves. + remove_panic = false + #Remove the cow's breed AI task. This causes cows to be unable to breed to create offspring. + remove_breed = false + #Remove the cow's tempt AI task. This causes cows to no longer follow the player if they're holding an item they like. + remove_tempt = false + #Remove the cow's follow parent AI task. This causes baby cows to no longer follow their parents. + remove_follow_parent = false + #Remove the cow's random stroll AI task. This causes cows to no longer walk around randomly. + remove_stroll = false + + #Chicken + [entity.chicken] + #Remove the chicken's float AI task. This causes chickens to no longer swim in water. + remove_float = false + #Remove the chicken's panic AI task. This causes chickens to no longer run around after being hit, or search water to extinguish themselves. + remove_panic = false + #Remove the chicken's breed AI task. This causes chickens to be unable to breed to create offspring. + remove_breed = false + #Remove the chicken's tempt AI task. This causes chickens to no longer follow the player if they're holding an item they like. + remove_tempt = false + #Remove the chicken's follow parent AI task. This causes baby chickens to no longer follow their parents. + remove_follow_parent = false + #Remove the chicken's random stroll AI task. This causes chickens to no longer walk around randomly. + remove_stroll = false + + #Pig + [entity.pig] + #Remove the pig's float AI task. This causes pigs to no longer swim in water. + remove_float = false + #Remove the pig's panic AI task. This causes pigs to no longer run around after being hit, or search water to extinguish themselves. + remove_panic = false + #Remove the pig's breed AI task. This causes pigs to be unable to breed to create offspring. + remove_breed = false + #Remove the pig's tempt AI task. This causes pigs to no longer follow the player if they're holding an item they like. + remove_tempt = false + #Remove the pig's follow parent AI task. This causes baby pigs to no longer follow their parents. + remove_follow_parent = false + #Remove the pig's random stroll AI task. This causes pigs to no longer walk around randomly. + remove_stroll = false + + #Sheep + [entity.sheep] + #Remove the sheep's float AI task. This causes sheep to no longer swim in water. + remove_float = false + #Remove the sheep's panic AI task. This causes sheep to no longer run around after being hit, or search water to extinguish themselves. + remove_panic = false + #Remove the sheep's breed AI task. This causes sheep to be unable to breed to create offspring. + remove_breed = false + #Remove the sheep's tempt AI task. This causes sheep to no longer follow the player if they're holding an item they like. + remove_tempt = false + #Remove the sheep's follow parent AI task. This causes baby sheep to no longer follow their parents. + remove_follow_parent = false + #Remove the sheep's random stroll AI task. This causes sheep to no longer walk around randomly. + remove_stroll = false + #Remove the sheep's eat block AI task. This causes sheep to no longer eat grass, and thus be unable to regenerate their wool. + remove_eat_block = false + diff --git a/minecraft/config/aiotbotania-client.toml b/minecraft/config/aiotbotania-client.toml new file mode 100644 index 0000000..496cdd6 --- /dev/null +++ b/minecraft/config/aiotbotania-client.toml @@ -0,0 +1,5 @@ + +[particles] + #If set to false, particles will be disabled. [default: true] + enabled = true + diff --git a/minecraft/config/aiotbotania-common.toml b/minecraft/config/aiotbotania-common.toml new file mode 100644 index 0000000..481ac61 --- /dev/null +++ b/minecraft/config/aiotbotania-common.toml @@ -0,0 +1,5 @@ + +[terra_tier] + #If set to false, the recipes for the Terrasteel AIOT will be disabled. [default: true] + enabled = true + diff --git a/minecraft/config/akashictome-common.toml b/minecraft/config/akashictome-common.toml new file mode 100644 index 0000000..ae49f9c --- /dev/null +++ b/minecraft/config/akashictome-common.toml @@ -0,0 +1,7 @@ +"Allow all items to be added" = false +"Whitelisted Items" = ["roots:runedtablet", "opencomputers:tool:4", "immersiveengineering:tool:3", "integrateddynamics:on_the_dynamics_of_integration", "theoneprobe:probenote", "evilcraft:origins_of_darkness", "draconicevolution:info_tablet", "charset:tablet", "antiqueatlas:antique_atlas", "theurgy:grimiore", "tconstruct:materials_and_you", "tconstruct:puny_smelting", "tconstruct:mighty_smelting", "tconstruct:tinkers_gadgetry", "tconstruct:fantastic_foundry", "tetra:holo", "occultism:dictionary_of_spirits"] +"Whitelisted Names" = ["book", "tome", "lexicon", "nomicon", "manual", "knowledge", "pedia", "compendium", "guide", "codex", "dictionary", "journal"] +"Blacklisted Mods" = [] +"Mod Aliases" = ["nautralpledge=botania", "thermalexpansion=thermalfoundation", "thermaldynamics=thermalfoundation", "thermalcultivation=thermalfoundation", "redstonearsenal=thermalfoundation", "rftoolsdim=rftools", "rftoolspower=rftools", "rftoolscontrol=rftools", "ae2stuff=appliedenergistics2", "animus=bloodmagic", "integrateddynamics=integratedtunnels", "mekanismgenerators=mekanism", "mekanismtools=mekanism", "deepresonance=rftools", "xnet=rftools", "buildcrafttransport=buildcraft", "buildcraftfactory=buildcraft", "buildcraftsilicon=buildcraft"] +"Hide Book Render" = false + diff --git a/minecraft/config/alexscaves-client.toml b/minecraft/config/alexscaves-client.toml new file mode 100644 index 0000000..3c3bc27 --- /dev/null +++ b/minecraft/config/alexscaves-client.toml @@ -0,0 +1,35 @@ + +[visuals] + #whether to cave maps are visible when held by players from the third-person perspective. + cave_maps_visible_in_third_person = true + #whether to shake the screen from tremorsaurus stomping, nuclear explosions, etc. + screen_shaking = true + #true if some block models, like uranium ore or abyssmarine bricks render as fullbright. May increase load time, no gameplay performance impact. + emissive_block_models = false + #whether to make the screen flash white during nuclear explosions. + nuclear_bomb_flash = true + #true if some biomes, such as primordial caves, have ambient light that makes the biome easier to see in. + biome_ambient_light = true + #true if some biomes, such as toxic caves, apply a color to ambient light. May conflict with shaders. + biome_ambient_light_coloring = false + #true if some biomes, such as primordial caves, have an always well-lit sky when in them. May conflict with shaders. + biome_sky_overrides = false + #true if some biomes, such as abyssal chasm, have an thicker water fog to them. May conflict with shaders. + biome_sky_fog_overrides = false + #true if ambersol block renders with rays of light emerging from it. + ambersol_shines = false + #true if irradiated effect makes mobs glow. May conflict with shaders. + radiation_glow_effect = false + #determines how far to the left the subterranodon flight indicator renders on the screen when mounted. Negative numbers will render it on the right. + #Range: -12000 ~ 12000 + subterranodon_indicator_x = 22 + #determines how far from bottom the subterranodon flight indicator renders on the screen when mounted. + #Range: -12000 ~ 12000 + subterranodon_indicator_y = 6 + #true if sugar rush makes the world more saturated. May conflict with shaders. + sugar_rush_saturation_effect = false + +[audio] + #whether nuclear explosions briefly muffle other sounds. + nuclear_bomb_muffles_sounds = true + diff --git a/minecraft/config/alexscaves-general.toml b/minecraft/config/alexscaves-general.toml new file mode 100644 index 0000000..d015f9c --- /dev/null +++ b/minecraft/config/alexscaves-general.toml @@ -0,0 +1,118 @@ + +[generation] + #Average radius (in blocks) of an Alex's Caves cave biome. + #Range: 10.0 ~ 1.7976931348623157E308 + cave_biome_mean_width = 300.0 + #Average separation (in blocks) between each Alex's Caves cave biome. + #Range: > 50 + cave_biome_mean_separation = 900 + #How irregularly shaped Alex's Caves cave biomes can generate. 0 = all biomes nearly circular. 1 = biomes completely squiggly in shape. + #Range: 0.0 ~ 1.0 + cave_biome_width_randomness = 0.15 + #Average spacing in between Alex's Caves cave biomes. 0 = all biomes nearly perfectly equidistant. 1 = biomes completely randomly spread out, sometimes next to eachother. + #Range: 0.0 ~ 1.0 + cave_biome_spacing_randomness = 0.45 + #Whether to warn users when a server starts if an incompatible generation mod is detected. + warn_generation_incompatibility = true + +[mob-spawning] + #Cave Creatures (All dinosaurs, raycats, etc) spawn at this frequency. Their cap is calculated by multiplying this number with the default mob cap for surface animals. + #Range: 0.0 ~ 10.0 + cave_creature_spawn_count_modifier = 1.75 + #The percent chance that drowned have to spawn wearing diving gear in the Abyssal Chasm. 0 = no diving gear wearing drowned will spawn + #Range: 0.0 ~ 1.0 + drowned_diving_gear_spawn_chance = 0.2 + +[mob-behavior] + #How many cpu cores big mobs(tremorzilla, atlatitan, grottoceratops etc) should utilize when pathing. Bigger number = less impact on TPS + #Range: 1 ~ 100 + pathfinding_threads = 5 + #Chance that blocks destroyed by luxtructosaurus attacks drop themselves, if mob griefing is enabled. + #Range: 0.0 ~ 1.0 + luxtructosaurus_block_drop_chance = 0.75 + #The maximum explosion resistance that a block can have to be destroyed by an atlatitan stomp. Set to zero to disable all atlatitan block breaking. + #Range: > 0 + atlatitan_max_block_explosion_resistance = 10 + #How long (in game ticks) it takes for a nucleeper to explode. + #Range: > 20 + nucleeper_fuse_time = 300 + #True if the Tremorzilla beam breaks even more blocks. + devastating_tremorzilla_beam = true + #Whether the Watcher can take control of the camera. + watcher_possession = true + #How long (in game ticks) between watcher possession attempts. + #Range: 20 ~ 24000 + watcher_possession_cooldown = 300 + +[block-behavior] + #True if players wearing boots can walk on any scarlet neodymium surface. + walking_on_magnets = true + #How long (in game ticks) it usually takes for an amber monolith to spawn an animal. + #Range: > 1000 + amber_monolith_mean_time = 32000 + #True if the Nuclear Furnace only uses 'Blasting' recipes, false to use all smelting recipes. + nuclear_furnace_blasting_only = true + #True if the Nuclear Furnace should only use recipes using the `alexscaves:nuclear_furnace` recipe type, false to use regular behavior. + nuclear_furnace_custom_type = false + +[item-behavior] + #True if one Cave Codex is all that is needed to unlock every Cave Compendium entry. + only_one_research_needed = false + #How many attempts to find a biome a cave map engages in when used. Increase this to increase the search radius, or decrease it to make them faster. + #Range: > 64 + cave_map_search_attempts = 128000 + #How wide each search attempt scans for a biome. Increasing this generally makes cave biome maps faster - at the cost of losing fidelity(may skip biomes smaller than this in block width). + #Range: 4 ~ 256 + cave_map_search_width = 64 + #The maximum explosion resistance that a block can have to be destroyed by a nuclear explosion. Set to zero to disable all nuclear explosion block breaking. + #Range: > 0 + nuke_max_block_explosion_resistance = 1000 + #Whether some block items are dropped by nuclear explosions. False if all destroyed blocks do not drop items. + nuke_spawn_item_drops = true + #The scale of nuclear bomb destruction. multiply this by 16 to get the radius of a nuclear bomb explosion. + #Range: 0.0 ~ 1.7976931348623157E308 + nuclear_explosion_size_modifier = 3.0 + #Whether the Totem of Possession can be applied to players. + totem_of_possession_works_on_players = true + #The amount of time (in ticks) it takes to charge up the Cloak of Darkness ability. + #Range: > 20 + darkness_cloak_charge_time = 1000 + #The amount of time (in ticks) that players can fly with the Cloak of Darkness ability. + #Range: > 20 + darkness_cloak_fly_time = 200 + +[potion-behavior] + #Whether the Sugar Rush changes the tick rate of the game in the area of affected players. + sugar_rush_slows_time = true + +[vanilla-changes] + #percent chance of bastion having a cave tablet for magnetic caves in its loot table: + #Range: 0.0 ~ 1.0 + magnetic_tablet_loot_chance = 0.45 + #percent chance of suspicious sand having a cave tablet for primordial caves in its loot table: + #Range: 0.0 ~ 1.0 + primordial_tablet_loot_chance = 0.15 + #percent chance of jungle temple having a cave tablet for toxic caves in its loot table: + #Range: 0.0 ~ 1.0 + toxic_tablet_loot_chance = 0.5 + #percent chance of underwater ruins having a cave tablet for abyssal chasm in its loot table: + #Range: 0.0 ~ 1.0 + abyssal_tablet_loot_chance = 0.4 + #percent chance of mansion having a cave tablet for forlorn hollows in its loot table: + #Range: 0.0 ~ 1.0 + forlorn_tablet_loot_chance = 0.75 + #percent chance of witch hut chest having a cave tablet for candy cavity in its loot table: + #Range: 0.0 ~ 1.0 + candy_cavity_loot_chance = 0.9 + #percent chance of abandoned mineshaft chests having a map to a nearby underground mineshaft in their loot table: + #Range: 0.0 ~ 1.0 + cabin_map_loot_chance = 0.15 + #Whether the Cartographer Villagers can sell maps to Underground Cabins. + cartographers_sell_cabin_maps = true + #Whether the Wandering Traders can sell maps to Underground Cabins. + wandering_traders_sell_cabin_maps = true + #Whether a loot chest is added to vanilla's witch huts. This is included to provide another place to find candy cavity biome cave tablets. + loot_chest_in_witch_huts = true + #Whether the Enchantments added by AC appear in vanilla loot tables. + enchantments_in_loot = false + diff --git a/minecraft/config/alexscaves_biome_generation/abyssal_chasm.json b/minecraft/config/alexscaves_biome_generation/abyssal_chasm.json new file mode 100644 index 0000000..c950a9b --- /dev/null +++ b/minecraft/config/alexscaves_biome_generation/abyssal_chasm.json @@ -0,0 +1,20 @@ +{ + "disabled_completely": false, + "distance_from_spawn": 400, + "alexscaves_rarity_offset": 3, + "continentalness": [ + -0.95, + -0.65 + ], + "temperature": [ + -1.0, + 0.5 + ], + "depth": [ + 0.2, + 1.5 + ], + "dimensions": [ + "minecraft:overworld" + ] +} \ No newline at end of file diff --git a/minecraft/config/alexscaves_biome_generation/candy_cavity.json b/minecraft/config/alexscaves_biome_generation/candy_cavity.json new file mode 100644 index 0000000..3b0c75e --- /dev/null +++ b/minecraft/config/alexscaves_biome_generation/candy_cavity.json @@ -0,0 +1,16 @@ +{ + "disabled_completely": false, + "distance_from_spawn": 500, + "alexscaves_rarity_offset": 5, + "continentalness": [ + 0.5, + 1.0 + ], + "depth": [ + 0.15, + 1.5 + ], + "dimensions": [ + "minecraft:overworld" + ] +} \ No newline at end of file diff --git a/minecraft/config/alexscaves_biome_generation/forlorn_hollows.json b/minecraft/config/alexscaves_biome_generation/forlorn_hollows.json new file mode 100644 index 0000000..73b50a9 --- /dev/null +++ b/minecraft/config/alexscaves_biome_generation/forlorn_hollows.json @@ -0,0 +1,16 @@ +{ + "disabled_completely": false, + "distance_from_spawn": 650, + "alexscaves_rarity_offset": 4, + "continentalness": [ + 0.6, + 1.0 + ], + "depth": [ + 0.3, + 1.5 + ], + "dimensions": [ + "minecraft:overworld" + ] +} \ No newline at end of file diff --git a/minecraft/config/alexscaves_biome_generation/magnetic_caves.json b/minecraft/config/alexscaves_biome_generation/magnetic_caves.json new file mode 100644 index 0000000..fded3b2 --- /dev/null +++ b/minecraft/config/alexscaves_biome_generation/magnetic_caves.json @@ -0,0 +1,16 @@ +{ + "disabled_completely": false, + "distance_from_spawn": 400, + "alexscaves_rarity_offset": 0, + "continentalness": [ + 0.6, + 1.0 + ], + "depth": [ + 0.2, + 1.0 + ], + "dimensions": [ + "minecraft:overworld" + ] +} \ No newline at end of file diff --git a/minecraft/config/alexscaves_biome_generation/primordial_caves.json b/minecraft/config/alexscaves_biome_generation/primordial_caves.json new file mode 100644 index 0000000..a96e282 --- /dev/null +++ b/minecraft/config/alexscaves_biome_generation/primordial_caves.json @@ -0,0 +1,16 @@ +{ + "disabled_completely": false, + "distance_from_spawn": 450, + "alexscaves_rarity_offset": 1, + "continentalness": [ + 0.4, + 1.0 + ], + "depth": [ + 0.15, + 1.5 + ], + "dimensions": [ + "minecraft:overworld" + ] +} \ No newline at end of file diff --git a/minecraft/config/alexscaves_biome_generation/toxic_caves.json b/minecraft/config/alexscaves_biome_generation/toxic_caves.json new file mode 100644 index 0000000..55ab064 --- /dev/null +++ b/minecraft/config/alexscaves_biome_generation/toxic_caves.json @@ -0,0 +1,16 @@ +{ + "disabled_completely": false, + "distance_from_spawn": 650, + "alexscaves_rarity_offset": 2, + "continentalness": [ + 0.5, + 1.0 + ], + "depth": [ + 0.3, + 1.5 + ], + "dimensions": [ + "minecraft:overworld" + ] +} \ No newline at end of file diff --git a/minecraft/config/alexscavesdelight-common.toml b/minecraft/config/alexscavesdelight-common.toml new file mode 100644 index 0000000..c81818f --- /dev/null +++ b/minecraft/config/alexscavesdelight-common.toml @@ -0,0 +1,10 @@ +#Whether to log the dirt block on common setup +logDirtBlock = true +#A magic number +#Range: > 0 +magicNumber = 42 +#What you want the introduction message to be for the magic number +magicNumberIntroduction = "The magic number is... " +#A list of items to log on common setup. +items = ["minecraft:iron_ingot"] + diff --git a/minecraft/config/ali/ali_common.json b/minecraft/config/ali/ali_common.json new file mode 100644 index 0000000..b07738e --- /dev/null +++ b/minecraft/config/ali/ali_common.json @@ -0,0 +1,94 @@ +{ + "blockCategories": [ + { + "key": "ali:plant_loot", + "type": "BLOCK", + "icon": "minecraft:diamond_hoe", + "hide": false, + "classes": [ + "net.minecraft.world.level.block.BushBlock" + ] + }, + { + "key": "ali:block_loot", + "type": "BLOCK", + "icon": "minecraft:diamond_pickaxe", + "hide": false, + "classes": [ + "net.minecraft.world.level.block.Block" + ] + } + ], + "entityCategories": [ + { + "key": "ali:entity_loot", + "type": "ENTITY", + "icon": "minecraft:skeleton_skull", + "hide": false, + "classes": [ + "net.minecraft.world.entity.Entity" + ] + } + ], + "gameplayCategories": [ + { + "key": "ali:chest_loot", + "type": "GAMEPLAY", + "icon": "minecraft:chest", + "hide": false, + "pattern": [ + "^.*:chests/.*$" + ] + }, + { + "key": "ali:fishing_loot", + "type": "GAMEPLAY", + "icon": "minecraft:fishing_rod", + "hide": false, + "pattern": [ + "^.*:gameplay/fishing.*$" + ] + }, + { + "key": "ali:archaeology_loot", + "type": "GAMEPLAY", + "icon": "minecraft:decorated_pot", + "hide": false, + "pattern": [ + "^.*:archaeology/.*$" + ] + }, + { + "key": "ali:hero_loot", + "type": "GAMEPLAY", + "icon": "minecraft:emerald", + "hide": false, + "pattern": [ + "^.*:gameplay/hero_of_the_village/.*$" + ] + }, + { + "key": "ali:gameplay_loot", + "type": "GAMEPLAY", + "icon": "minecraft:compass", + "hide": false, + "pattern": [ + ".*" + ] + } + ], + "tradeCategories": [ + { + "key": "ali:trade_loot", + "type": "TRADE", + "icon": "minecraft:emerald_block", + "hide": false, + "pattern": [ + ".*" + ] + } + ], + "disabledEntities": [], + "logMoreStatistics": false, + "showInGameNames": true +} \ No newline at end of file diff --git a/minecraft/config/allthearcanistgear-server.toml b/minecraft/config/allthearcanistgear-server.toml new file mode 100644 index 0000000..2147909 --- /dev/null +++ b/minecraft/config/allthearcanistgear-server.toml @@ -0,0 +1,154 @@ + +[armor_config] + _comment = "A world restart is needed after changing these config options." + + [armor_config.allthemodium] + _comment = "Config for Allthemodium armor" + + [armor_config.allthemodium.armor_values] + #Hat + #Range: > 0 + hat = 4 + #Robes + #Range: > 0 + robes = 9 + #Leggings + #Range: > 0 + leggings = 7 + #Boots + #Range: > 0 + boots = 4 + #Toughness + #Range: > 0 + toughness = 4 + #Knockback Resistance + #Range: 0.0 ~ 2.147483647E9 + knockback_resistance = 0.0 + + [armor_config.allthemodium.arcanist_stats] + #Max Mana Bonus + #Range: > 0 + mana_boost = 200 + #Mana Regen Bonus + #Range: 0.0 ~ 2.147483647E9 + mana_regen = 6.0 + #Spell Power Bonus + #Range: 0.0 ~ 2.147483647E9 + spell_power = 6.0 + + [armor_config.allthemodium.capabilities] + #Should Helmet Prevent Drowning? + prevent_drowning = true + #Should Helmet Prevent Kinetic Damage? + prevent_kinetic = true + #Should Chestplate Prevent Fire Damage? + prevent_fire = true + #Should Chestplate Prevent Dragon's Breath Damage? + prevent_dragons_breath = false + #Should Leggings Prevent Wither? + prevent_wither = false + #Should Leggings Prevent Levitation? + prevent_levitation = false + #Should Boots Prevent Fall Damage? + prevent_fall_damage = true + + [armor_config.vibranium] + _comment = "Config for Vibranium armor" + + [armor_config.vibranium.armor_values] + #Hat + #Range: > 0 + hat = 6 + #Robes + #Range: > 0 + robes = 11 + #Leggings + #Range: > 0 + leggings = 9 + #Boots + #Range: > 0 + boots = 6 + #Toughness + #Range: > 0 + toughness = 5 + #Knockback Resistance + #Range: 0.0 ~ 2.147483647E9 + knockback_resistance = 0.0 + + [armor_config.vibranium.arcanist_stats] + #Max Mana Bonus + #Range: > 0 + mana_boost = 325 + #Mana Regen Bonus + #Range: 0.0 ~ 2.147483647E9 + mana_regen = 9.0 + #Spell Power Bonus + #Range: 0.0 ~ 2.147483647E9 + spell_power = 9.0 + + [armor_config.vibranium.capabilities] + #Should Helmet Prevent Drowning? + prevent_drowning = true + #Should Helmet Prevent Kinetic Damage? + prevent_kinetic = true + #Should Chestplate Prevent Fire Damage? + prevent_fire = true + #Should Chestplate Prevent Dragon's Breath Damage? + prevent_dragons_breath = false + #Should Leggings Prevent Wither? + prevent_wither = true + #Should Leggings Prevent Levitation? + prevent_levitation = false + #Should Boots Prevent Fall Damage? + prevent_fall_damage = true + + [armor_config.unobtainium] + _comment = "Config for Unobtainium armor" + + [armor_config.unobtainium.armor_values] + #Hat + #Range: > 0 + hat = 8 + #Robes + #Range: > 0 + robes = 13 + #Leggings + #Range: > 0 + leggings = 11 + #Boots + #Range: > 0 + boots = 8 + #Toughness + #Range: > 0 + toughness = 6 + #Knockback Resistance + #Range: 0.0 ~ 2.147483647E9 + knockback_resistance = 0.0 + + [armor_config.unobtainium.arcanist_stats] + #Max Mana Bonus + #Range: > 0 + mana_boost = 450 + #Mana Regen Bonus + #Range: 0.0 ~ 2.147483647E9 + mana_regen = 12.0 + #Spell Power Bonus + #Range: 0.0 ~ 2.147483647E9 + spell_power = 12.0 + + [armor_config.unobtainium.capabilities] + #Should Helmet Prevent Drowning? + prevent_drowning = true + #Should Helmet Prevent Kinetic Damage? + prevent_kinetic = true + #Should Chestplate Prevent Fire Damage? + prevent_fire = true + #Should Chestplate Prevent Dragon's Breath Damage? + prevent_dragons_breath = true + #Should Leggings Prevent Wither? + prevent_wither = true + #Should Leggings Prevent Levitation? + prevent_levitation = true + #Should Boots Prevent Fall Damage? + prevent_fall_damage = true + diff --git a/minecraft/config/allthecompatibility-client.toml b/minecraft/config/allthecompatibility-client.toml new file mode 100644 index 0000000..267011b --- /dev/null +++ b/minecraft/config/allthecompatibility-client.toml @@ -0,0 +1,6 @@ + +#General +[general] + #Activate the Update-Checker + update-checker = true + diff --git a/minecraft/config/allurement-client.toml b/minecraft/config/allurement-client.toml new file mode 100644 index 0000000..d5e5092 --- /dev/null +++ b/minecraft/config/allurement-client.toml @@ -0,0 +1,9 @@ + +[tweaks] + + [tweaks.infinity] + #Adds a special texture for arrows shot from infinity bows + "Infinity arrow texture" = true + #Adds a glint on arrows shot from infinity bows + "Infinity arrow glint" = true + diff --git a/minecraft/config/allurement-common.toml b/minecraft/config/allurement-common.toml new file mode 100644 index 0000000..9272100 --- /dev/null +++ b/minecraft/config/allurement-common.toml @@ -0,0 +1,158 @@ + +[enchantments] + + [enchantments.alleviating] + #Armor enchantment that heals the user when collecting experience + "Enable Alleviating" = true + #How much the experience value is multiplied by into health + #Range: 0.0 ~ 1.7976931348623157E308 + "Healing factor" = 0.25 + + [enchantments.launch] + #Weapon enchantment that launches enemies upwards rather than away + "Enable Launch" = true + #How much the target is affected on the vertical axis + #Range: 0.0 ~ 1.7976931348623157E308 + "Vertical factor" = 0.35 + + [enchantments.obedience] + #Horse armor enchantment tha prevents the horse from roaming around + "Enable Obedience" = true + + [enchantments.reeling] + #Crossbow enchantment that pulls targets towards the user + "Enable Reeling" = true + #How much the target is affected on the horizontal axis + #Range: 0.0 ~ 1.7976931348623157E308 + "Horizontal factor" = 0.5 + #How much the target is affected on the vertical axis + #Range: 0.0 ~ 1.7976931348623157E308 + "Vertical factor" = 0.25 + + [enchantments.reforming] + #Gear enchantment that very slowly repairs items over time + "Enable Reforming" = true + #How many ticks it takes a reforming item to repair + #Range: > 0 + "Reforming tick rate" = 600 + + [enchantments.shockwave] + #Boots enchantment that creates a shockwave when taking fall damage + "Enable Shockwave" = true + #If Shockwave tramples farmland within the wave radius + "Shockwave tramples farmland" = true + + [enchantments.vengeance] + #Armor enchantment that stores incoming damage and applies it to user's next attack + "Enable Vengeance" = true + #How much the damage taken with vengeance is multiplied for attacks + #Range: 0.0 ~ 1.7976931348623157E308 + "Damage factor" = 0.025 + + [enchantments.spread_of_ailments] + #Crossbow enchantment that applies the user's active effects to their arrows + "Enable Spread of Ailments" = true + +[curses] + + [curses.ascension_curse] + #Curse that causes the cursed item to float upwards when dropped + "Enable Curse of Ascension" = true + + [curses.fleeting_curse] + #Curse that causes nearby entities to repel the cursed item + "Enable Curse of Fleeting" = true + +[tweaks] + + [tweaks.enchanting] + #Allow enchanting power from bookshelves to transmit through any non-solid block, not just replaceable ones + "Non-solid blocks transmit enchanting power" = true + #Allow Chiseled Bookshelves to be usable to boost enchanting table power + "Chiseled Bookshelf enchanting" = true + #How many regular books are needed to increase the enchantment power by 1 + #Range: 1 ~ 6 + "Books needed" = 3 + #How many enchanted are needed to increase the enchantment power by 1 + #Range: 1 ~ 6 + "Enchanted Books needed" = 2 + + [tweaks.horse_armor] + #Allow horse armor to be enchanted + "Enchantable horse armor" = true + #If horse armor can appear enchanted when found in loot tables + "Generates in loot tables" = true + #Which loot tables horse armor can't appear enchanted in + "Unenchanted loot tables" = ["minecraft:chests/village/village_weaponsmith", "minecraft:chests/stronghold_corridor", "minecraft:chests/nether_bridge"] + + [tweaks.bane_of_arthropods] + #If Bane of Arthropods increases the mining speed of Cobwebs + "Bane of Arthropods mines cobwebs faster" = true + + [tweaks.feather_falling] + #If having Feather Falling prevents farmland from being trampled + "Feather Falling prevents trampling" = true + + [tweaks.infinity] + #If Infinity requires an arrow in the player's inventory in order to shoot + "Infinity requires arrows" = false + + [tweaks.protection] + #Remove the base Protection enchantment, requiring players to choose between the other types + "Disable Protection" = false + + [tweaks.riptide] + #Allow Riptide to function when in cauldrons + "Riptide works in cauldrons" = true + + [tweaks.soul_speed] + #Instead of losing durability as you run, Soul Speed makes incoming damage increase when on Soul Speed blocks + "Soul Speed change" = true + #How much damage is multiplied when hurt on Soul Speed blocks + #Range: 0.0 ~ 1.7976931348623157E308 + "Damage factor" = 1.5 + + [tweaks.experience] + + [tweaks.experience.dropped_xp] + #If the player drops a flat percentage of their experience rather than capping at level 7 + "Drop experience percentage" = false + #What percentage of the player's total experience is dropped + #Range: 0.0 ~ 1.0 + "Experience percentage" = 0.75 + + [tweaks.experience.level_scaling] + #Remove the amount of experience per level increasing (experimental) + "Remove level scaling" = false + #The amount of experience per level, if level scaling is removed (experimental) + #Range: > 0 + "Experience per level" = 50 + #If the level scaling should only be modified after it reaches the 'Experience per level' value (experimental) + "Remove level scaling after cap" = true + + [tweaks.experience.ender_dragon] + #If Ender Dragon experience dropping should be adjusted (to account for level scaling) + "Adjust Ender Dragon experience drop" = false + #The amount of experience (in points) that should be dropped by the Ender Dragon + #Range: > 0 + "Ender Dragon experience drop" = 3000 + #The amount of experience (in points) that should be dropped by a respawned Ender Dragon + #Range: > 0 + "Respawned Ender Dragon experience drop" = 750 + + [tweaks.experience.anvil] + #If renaming items should always cost 1 experience + "Cheap item renaming" = true + #Remove the cap of 40 on anvil repairing prices + "Remove too expensive" = true + #If anvils can be repaired by right clicking with an iron ingot or using a dispenser + "Anvil ingot repairing" = true + #The amount of tries it should take on average to repair an anvil with an ingot (1 in x chance) + #Range: > 0 + "Ingot repair chance" = 5 + #If anvil transaction costs should be capped at a certain level + "Cap anvil costs" = false + #The max amount of levels an anvil transaction should be able to cost + #Range: > 1 + "Anvil cost cap" = 30 + diff --git a/minecraft/config/angelring-common.toml b/minecraft/config/angelring-common.toml new file mode 100644 index 0000000..bda28ea --- /dev/null +++ b/minecraft/config/angelring-common.toml @@ -0,0 +1,46 @@ + +#General Angel Ring 2 configuration options. +[general] + #Defines how much XP will be drained from player when flying by wearing classic Angel Ring? Put 0 if you need to disable XP requirement for flight. + #Range: > 0 + XPCost = 0 + #Defines how much ticks is required to pass between each XP drain event of classic Angel Ring? + #Range: > 1 + TicksPerDrain = 50 + #Defines how much FE the Energetic Angel Ring will drain every tick while flying. + #Range: > 1 + EnergeticFEPerTick = 150 + #Defines how much FE the Energetic Angel Ring can store. + #Range: > 1 + EnergeticFECapacity = 3000000 + #Defines how much FE the Leadstone Angel Ring will drain every tick while flying. + #Range: > 1 + LeadstoneFEPerTick = 250 + #Defines how much FE the Leadstone Angel Ring can store. + #Range: > 1 + LeadstoneFECapacity = 2500000 + #Defines how much FE the Hardened Angel Ring will drain every tick while flying. + #Range: > 1 + HardenedFEPerTick = 200 + #Defines how much FE the Hardened Angel Ring can store. + #Range: > 1 + HardenedFECapacity = 5000000 + #Defines how much FE the Reinforced Angel Ring will drain every tick while flying. + #Range: > 1 + ReinforcedFEPerTick = 100 + #Defines how much FE the Reinforced Angel Ring can store. + #Range: > 1 + ReinforcedFECapacity = 8000000 + #Defines how much FE the Resonant Angel Ring will drain every tick while flying. + #Range: > 1 + ResonantFEPerTick = 50 + #Defines how much FE the Resonant Angel Ring can store. + #Range: > 1 + ResonantFECapacity = 16000000 + #Defines at what XP Level to start displaying a warning of low XP for the Classic Angel Ring. Set to -1 to disable. + #Range: > -1 + XPWarningLevel = -1 + #Defines at what percentage to start displaying a warning of low power for Energy Angel Rings. Set to -1 to disable. + #Range: -1 ~ 100 + EnergyWarningPercentage = 5 + diff --git a/minecraft/config/animal_pen_config.json b/minecraft/config/animal_pen_config.json index 73900b9..03fdd0a 100644 --- a/minecraft/config/animal_pen_config.json +++ b/minecraft/config/animal_pen_config.json @@ -4,8 +4,7 @@ "attack_cooldown": 5, // Allows to set maximal amount of animals in the pen. // Setting 0 will remove any limit. - // Default 0 - "animal_limit_in_pen": 0, + "animal_limit_in_pen": 2147483647, // Allows to enable mob growing in animal pen. // The more animals are inside it, the larger it will be. "animal_pen_mob_can_grow": false, @@ -42,14 +41,11 @@ // Allows to toggle if cooldowns should be shown only while player is crouching (true). // or be visible all the time (false). // Default value = false - "show_cooldowns_while_crouching": false, + "show_cooldowns_while_crouching": true, // Allows to toggle if all interactions (evenNumber without cooldown) should be rendered // above animal pen or aquarium // Default value = false "show_all_interactions_above": false, - // Allows to toggle if dispensers should be block from interacting with animal pens, aviaries, and aquariums - // Default value = false - "block_dispenser_interaction": false, // Debug code to indicate problems. "debug": false } \ No newline at end of file diff --git a/minecraft/config/animal_pen_config.json.bak1 b/minecraft/config/animal_pen_config.json.bak1 new file mode 100644 index 0000000..99b723c --- /dev/null +++ b/minecraft/config/animal_pen_config.json.bak1 @@ -0,0 +1,297 @@ +{ + // List of cooldowns that are applied when player performs action. + // Specifying: `animal_pen:any` will indicate that any entity using that item will have same cooldown. + // `minecraft:apple` is universal food item. It is used to indicate for feeding action. + // `minecraft:honey_bloc` is used to indicate pollen regeneration cooldown. + // : . + "cooldowns": { + "minecraft:apple": [ + { + // The entity ID on which cooldown is applied. + "entity": "animal_pen:any", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 1160, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 6000 + } + ], + "minecraft:shears": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:sheep", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 1180, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 6000 + } + ], + "minecraft:magma_block": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:frog", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 200 + } + ], + "minecraft:bucket": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:chicken", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 1200 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:turtle", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 1200 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:cow", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 0, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 0, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 0 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:mooshroom", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 0, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 0, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 0 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:goat", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 0, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 0, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 0 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:sniffer", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 200 + } + ], + "minecraft:bowl": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:mooshroom", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 0, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": 0, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 0 + }, + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:sniffer", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 6020, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 200 + } + ], + "minecraft:honey_block": [ + { + // The entity ID on which cooldown is applied. + "entity": "minecraft:bee", + // The base cooldown value for action. + // 0 means that there is no cooldown. + // Values in game ticks. + "base_cooldown": 1220, + // The increment of cooldown per each animal. + // 0 means that there is no cooldown increment. + // Negative value decreases base cooldown value. + // Values in game ticks. + "animal_increment": -20, + // The the maximal cooldown that can be applied. + // 0 means that there is no cooldown limitation. + // Negative animal_increment makes this act as lowest limit. + // Values in game ticks. + "cooldown_limit": 20 + } + ] + }, + // A cooldown value in game ticks between attacks that players can perform on animal pens. + // Default value: 5 game tick + "attack_cooldown": 5, + // List of drop limits for items when player harvests items. + // : . + "drop_limits": { + "minecraft:white_wool": 320, + "minecraft:pearlescent_froglight": 320, + "minecraft:egg": 80, + "minecraft:turtle_egg": 320, + "minecraft:torchflower_seeds": 320 + }, + // Allows to set maximal amount of animals in the pen. + // Setting 0 will remove any limit. + "animal_limit_in_pen": 2147483647, + // Allows to enable animal growing in animal pen. + // The more animals are inside it, the larger it will be. + "animals_can_grow": false, + // Allows to change default animal size in pen. + "animal_size": 0.33, + // Allows to enable water animal growing in aquarium. + // The more animals are inside it, the larger it will be. + "water_animals_can_grow": false, + // Allows to change default water animal size in aquarium. + "water_animal_size": 0.33, + // Allows to set how fast animals grows in pen and aquarium. + // Each animal is multiplied by given value to get end size. + // This option works only if animals_can_grow or water_animals_can_grow is enabled. + // Default value = 0.001 + "growth_multiplier": 0.001, + // Allows to specify if turtle scute are dropped when player breeds animal (true). + // or when food cooldown timer is finished (false). + "turtle_scute_drop_time": false, + // Allows to set how many different animal variants can be stored per item. + // Players will not be able to store more different variants than this value. + // Be aware, this increases NBT data size, so not recommended to put infinite amount. + // Default value = 16 + "max_stored_animal_variants": 16, + // Allows to set if interactions with animal pens/aquariums should trigger advancements. + // Triggered Criteria: player_interacted_with_entity, bred_animals, filled_bucket, player_killed_entity + // Default value = false + "trigger_advancements": false, + // Allows to set if interactions with animal pens/aquariums should increase statistics. + // Increased Statistics: Animals Bred, Mob Kills, Use Item , Kill Entity + // Default value = false + "increase_statistics": false, + // Allows to toggle if cooldowns should be shown only while player is crouching (true). + // or be visible all the time (false). + // Default value = true + "show_cooldowns_while_crouching": true, + // Allows to toggle if all interactions (even without cooldown) should be rendered + // above animal pen or aquarium + // Default value = false + "show_all_interactions_above": false, + // Set of animals that are blocked from picking up. + // Pickable animals in vanilla minecraft: https://minecraft.wiki/w/Animal#List_of_animals + "blocked_animals": [ + ], + // Debug code to indicate problems. + "debug": false +} \ No newline at end of file diff --git a/minecraft/config/apotheosis/adventure.cfg b/minecraft/config/apotheosis/adventure.cfg new file mode 100644 index 0000000..04eed2e --- /dev/null +++ b/minecraft/config/apotheosis/adventure.cfg @@ -0,0 +1,151 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Adventure Module Config + +affixes { + # A list of type overrides for the affix loot system. Format is |chance|. + # Valid types are: none, sword, trident, shield, heavy_weapon, pickaxe, shovel, crossbow, bow + # Default: [minecraft:iron_sword|sword], [minecraft:shulker_shell|none] + S:"Equipment Type Overrides" < + minecraft:iron_sword|sword + minecraft:shulker_shell|none + > + + # The chance that a naturally spawned mob will be granted an affix item. 0 = 0%, 1 = 100% + # Default: 0.075; Range: [0.0 ~ 1.0] + S:"Random Affix Chance"=0.075 + + # The chance that a mob will drop a gem. 0 = 0%, 1 = 100% + # Default: 0.045; Range: [0.0 ~ 1.0] + S:"Gem Drop Chance"=0.045 + + # The flat bonus chance that bosses have to drop a gem, added to Gem Drop Chance. 0 = 0%, 1 = 100% + # Default: 0.33; Range: [0.0 ~ 1.0] + S:"Gem Boss Bonus"=0.33 + + # If affixes that cleave can hit players (excluding the user). + # Default: false + B:"Cleave Players"=false + + # Loot Rules, in the form of Loot Table Matchers, permitting affix items to spawn in loot tables. + # The format for these is domain:pattern|chance and domain is optional. Domain is a modid, pattern is a regex string, and chance is a float 0..1 chance for the item to spawn in any matched tables. + # If you omit the domain, the format is pattern|chance, and the matcher will run for all domains. + # The pattern MUST be a valid regex string, and should match the paths of desired loot tables under the specified domain. Note: "Match Any Character" is ".*" (dot star) and not "*" (star). + # If there is a match, an item has a chance to spawn in that loot table. + # Default: [minecraft:chests.*|0.35], [.*chests.*|0.3], [twilightforest:structures.*|0.3] + S:"Affix Item Loot Rules" < + minecraft:chests.*|0.35 + .*chests.*|0.3 + twilightforest:structures.*|0.3 + > + + # Loot Rules, in the form of Loot Table Matchers, permitting affixes to be added to any valid item. Here, the chance refers to the chance an item receives affixes. See comment on "Affix Item Loot Rules" for description. + # Default: [.*blocks.*|0], [.*|0.35] + S:"Affix Convert Loot Rules" < + .*blocks.*|0 + .*|0.35 + > + + # Dimensional rarities for affix conversion (see "Affix Convert Loot Rules"), in the form of dimension|min|max. A dimension not listed uses all rarities. + # Default: [overworld|common|rare], [the_nether|uncommon|epic], [the_end|rare|mythic], [twilightforest:twilight_forest|uncommon|epic] + S:"Affix Convert Rarities" < + overworld|common|rare + the_nether|uncommon|epic + the_end|rare|mythic + twilightforest:twilight_forest|uncommon|epic + > + + # If Quark's Attribute Tooltip handling is disabled for affix items + # Default: true + B:"Disable Quark Tooltips for Affix Items"=true + + # The item that will be used when attempting to place torches with the torch placer affix. Must be a valid item that places a block on right click. + # Default: minecraft:torch + S:"Torch Placement Item"=minecraft:torch +} + + +gems { + # Loot Rules, in the form of Loot Table Matchers, permitting gems to spawn in loot tables. See comment on "Affix Item Loot Rules" for description. + # Default: [minecraft:chests.*|0.25], [.*chests.*|0.20], [twilightforest:structures.*|0.20] + S:"Gem Loot Rules" < + minecraft:chests.*|0.25 + .*chests.*|0.20 + twilightforest:structures.*|0.20 + > + + # Dimensional rarities for gem drops, in the form of dimension|min|max. A dimension not listed uses all rarities. + # Default: [overworld|common|mythic], [the_nether|uncommon|mythic], [the_end|rare|mythic], [twilightforest:twilight_forest|uncommon|mythic] + S:"Gem Dimensional Rarities" < + overworld|common|mythic + the_nether|uncommon|mythic + the_end|rare|mythic + twilightforest:twilight_forest|uncommon|mythic + > +} + + +bosses { + # If boss items are always cursed. Enable this if you want bosses to be less overpowered by always giving them a negative effect. + # Default: false + B:"Curse Boss Items"=false + + # The range at which boss spawns will be announced. If you are closer than this number of blocks (ignoring y-level), you will receive the announcement. + # Default: 96.0; Range: [0.0 ~ 1024.0] + S:"Boss Announce Range"=96.0 + + # The volume of the boss announcement sound. 0 to disable. This control is clientside. + # Default: 0.75; Range: [0.0 ~ 1.0] + S:"Boss Announce Volume"=0.75 + + # If the boss announcement range ignores y-level. + # Default: false + B:"Boss Announce Ignore Y"=false + + # The time, in ticks, that must pass between any two natural boss spawns in a single dimension. + # Default: 3600; Range: [0 ~ 720000] + I:"Boss Spawn Cooldown"=3600 + + # If true, invading bosses will automatically target the closest player. + # Default: false + B:"Boss Auto-Aggro"=false + + # If true, bosses will glow when they spawn. + # Default: true + B:"Boss Glowing On Spawn"=true + + # List of sound effects to play when boss spawns are announced. This control is clientside. + # Default: [block.end_portal.spawn] + S:"Boss Announce Sounds" < + block.end_portal.spawn + > + + # Dimensions where bosses can spawn naturally, spawn chance, and spawn rules. + # Format is dimname|chance|rule, chance is a float from 0..1. + # Valid rules are visible here https://github.com/Shadows-of-Fire/Apotheosis/blob/1.19/src/main/java/shadows/apotheosis/adventure/boss/BossEvents.java#L174C27-L174C27 + # Default: [minecraft:overworld|0.018|NEEDS_SKY], [minecraft:the_nether|0.025|ANY], [minecraft:the_end|0.018|SURFACE_OUTER_END], [twilightforest:twilight_forest|0.05|NEEDS_SURFACE] + S:"Boss Spawn Dimensions" < + minecraft:overworld|0.018|NEEDS_SKY + minecraft:the_nether|0.025|ANY + minecraft:the_end|0.018|SURFACE_OUTER_END + twilightforest:twilight_forest|0.05|NEEDS_SURFACE + > +} + + +worldgen { + # The dimensions that the deadly module will generate in. + # Default: [overworld] + S:"Generation Dimension Whitelist" < + overworld + > +} + + +spawners { + # The chance that a Rogue Spawner has a "valuable" chest instead of a standard one. 0 = 0%, 1 = 100% + # Default: 0.11; Range: [0.0 ~ 1.0] + S:"Spawner Value Chance"=0.11 +} + + diff --git a/minecraft/config/apotheosis/apotheosis.cfg b/minecraft/config/apotheosis/apotheosis.cfg new file mode 100644 index 0000000..50bb795 --- /dev/null +++ b/minecraft/config/apotheosis/apotheosis.cfg @@ -0,0 +1,40 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Module Control + +# This file allows individual modules of Apotheosis to be enabled or disabled. +# Changes will have no effect until the next game restart. +# This file must match on client and server. + + +general { + # If the enchantment module is enabled. + # Default: true + B:"Enable Enchantment Module"=true + + # If the adventure module is loaded. + # Default: true + B:"Enable Adventure Module"=true + + # If the spawner module is enabled. + # Default: true + B:"Enable Spawner Module"=true + + # If the potion module is loaded. + # Default: true + B:"Enable Potion Module"=true + + # If the village module is loaded. + # Default: true + B:"Enable Village Module"=true + + # If the garden module is loaded. + # Default: true + B:"Enable Garden Module"=true + + # If the Chronicle of Shadows is given to new players. + # Default: true + B:"Give Book on First Join"=true +} + + diff --git a/minecraft/config/apotheosis/ench.cfg b/minecraft/config/apotheosis/ench.cfg new file mode 100644 index 0000000..678d57f --- /dev/null +++ b/minecraft/config/apotheosis/ench.cfg @@ -0,0 +1,15 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Enchantment Module Config + +client { + # If enchanted book metadata (treasure, tradeable, etc) are shown in the tooltip. + # Default: true + B:"Show Enchanted Book Metadata"=true + + # The 1/n chance that a sculkshelf plays a sound, per client tick. Set to 0 to disable. + # Default: 200; Range: [0 ~ 32767] + I:"Sculkshelf Noise Chance"=200 +} + + diff --git a/minecraft/config/apotheosis/enchantments.cfg b/minecraft/config/apotheosis/enchantments.cfg new file mode 100644 index 0000000..18b076a --- /dev/null +++ b/minecraft/config/apotheosis/enchantments.cfg @@ -0,0 +1,8744 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Enchantment Information + +# This file contains configurable data for each enchantment. +# The names of each category correspond to the registry names of every loaded enchantment. + + +"minecraft:protection" { + # The max level of this enchantment - originally 4. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:fire_protection" { + # The max level of this enchantment - originally 4. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:feather_falling" { + # The max level of this enchantment - originally 4. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:blast_protection" { + # The max level of this enchantment - originally 4. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:projectile_protection" { + # The max level of this enchantment - originally 4. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:respiration" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:aqua_affinity" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:thorns" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:depth_strider" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:frost_walker" { + # The max level of this enchantment - originally 2. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:binding_curse" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:soul_speed" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:swift_sneak" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:sharpness" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:smite" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:bane_of_arthropods" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:knockback" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:fire_aspect" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:looting" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:sweeping" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:efficiency" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:silk_touch" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:unbreaking" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:fortune" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:power" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:punch" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:flame" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:infinity" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:luck_of_the_sea" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:lure" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:loyalty" { + # The max level of this enchantment - originally 3. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:impaling" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:riptide" { + # The max level of this enchantment - originally 3. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:channeling" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:multishot" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:quick_charge" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:piercing" { + # The max level of this enchantment - originally 4. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:mending" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:vanishing_curse" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:berserkers_fury" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:chainsaw" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:chromatic" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"apotheosis:crescendo" { + # The max level of this enchantment - originally 5. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:earths_boon" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:endless_quiver" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:exploitation" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:growth_serum" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:icy_thorns" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:infusion" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:knowledge" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:life_mending" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:miners_fervor" { + # The max level of this enchantment - originally 5. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:natures_blessing" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:obliteration" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:rebounding" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:reflective" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:scavenger" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"apotheosis:shield_bash" { + # The max level of this enchantment - originally 4. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:spearfishing" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"apotheosis:splitting" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:stable_footing" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"apotheosis:tempting" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"unusualend:everlasting" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"unusualend:boloks_fury" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"unusualend:boloks_wings" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"unusualend:boloks_head" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"unusualend:joust" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"unusualend:arcane_recovery" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"unusualend:bonding" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"unusualend:benevolence" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"tombstone:soulbound" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:magic_siphon" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:plague_bringer" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:curse_of_bones" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:blessing" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:frostbite" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:spectral_bite" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:spectral_conjurer" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:incurable_wounds" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:decrepitude" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:sanctified" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"tombstone:ruthless_strike" { + # The max level of this enchantment - originally 10. + # Default: 13; Range: [1 ~ 127] + I:"Max Level"=13 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"naturesaura:aura_mending" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"ender_sins:hooked_blade" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"mythicbotany:hammer_mobility" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"wrd:reinforced" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"wrd:reinforced_chestplate" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"wrd:hard_headded" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"apotheosis:bane_of_illagers" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"apotheosis:capturing" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"alexsmobs:straddle_jump" { + # The max level of this enchantment - originally 3. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexsmobs:lavawax" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"alexsmobs:serpentfriend" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexsmobs:board_return" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"cofh_core:holding" { + # The max level of this enchantment - originally 4. + # Default: 12; Range: [1 ~ 127] + I:"Max Level"=12 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"twilightforest:fire_react" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"twilightforest:chill_aura" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"twilightforest:destruction" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"farmersdelight:backstabbing" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"deeperdarker:catalysis" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"deeperdarker:sculk_smite" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"biomancy:despoil" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"biomancy:anesthetic" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"biomancy:surgical_precision" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"biomancy:parasitic_metabolism" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"biomancy:self_feeding" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"ars_nouveau:mana_regen" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"ars_nouveau:mana_boost" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"ars_nouveau:reactive" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"soulsweapons:fast_hands" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"soulsweapons:visceral" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"soulsweapons:stagger" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"soulsweapons:ethereal" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"soulsweapons:explosive_rounds" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"soulsweapons:chain_lightning" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"soulsweapons:misfire_curse" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"soulsweapons:blight_carrier" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"soulsweapons:frostsilver" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"soulsweapons:phantom_trace" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"soulsweapons:tether" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"soulsweapons:ricochet" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"obscure_api:mirror" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"obscure_api:fast_spin" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"obscure_api:distance" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"create:potato_recovery" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"create:capacity" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"mahoutsukai:projector" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"draconicevolution:reaper_enchantment" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mysticalagriculture:mystical_enlightenment" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"mysticalagriculture:soul_siphoner" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:field_extension" { + # The max level of this enchantment - originally 4. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:crystallization" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:ferrous_haste" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:arrow_inducting" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:heavy_slam" { + # The max level of this enchantment - originally 3. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:swiftwood" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:bonking" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"alexscaves:dazing_sweep" { + # The max level of this enchantment - originally 2. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:plummeting_flight" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:herd_phalanx" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:chomping_spirit" { + # The max level of this enchantment - originally 2. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:energy_efficiency" { + # The max level of this enchantment - originally 3. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:solar" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:x_ray" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:gamma_ray" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:second_wave" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:flinging" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:sea_swing" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:tsunami" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"alexscaves:charting_call" { + # The max level of this enchantment - originally 4. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:lasting_morale" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:taxing_bellow" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:enveloping_bubble" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:bouncing_bolt" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:seapairing" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"alexscaves:triple_splash" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:soak_seeking" { + # The max level of this enchantment - originally 3. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:detonating_death" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:rapid_possession" { + # The max level of this enchantment - originally 3. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:sightless" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:astral_transferring" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:impending_stab" { + # The max level of this enchantment - originally 3. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:sated_blade" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:double_stab" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:precise_volley" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:dark_nock" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:relentless_darkness" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"alexscaves:twilight_perfection" { + # The max level of this enchantment - originally 3. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:shaded_respite" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"alexscaves:targeted_ricochet" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:triple_split" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:bouncy_ball" { + # The max level of this enchantment - originally 3. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:explosive_flavor" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"alexscaves:far_flung" { + # The max level of this enchantment - originally 3. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:sharp_cane" { + # The max level of this enchantment - originally 2. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:straight_hook" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:spell_lasting" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"alexscaves:peppermint_punting" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"alexscaves:humungous_hex" { + # The max level of this enchantment - originally 2. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"alexscaves:multiple_mint" { + # The max level of this enchantment - originally 2. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"alexscaves:seekcandy" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"additionaladditions:precision" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"additionaladditions:speed" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"forbidden_arcanus:permafrost" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"enderio:auto_smelt" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"enderio:repellent" { + # The max level of this enchantment - originally 4. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"enderio:shimmer" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"enderio:soulbound" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"enderio:withering" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"enderio:xp_boost" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"reliquary:severing" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"supplementaries:stasis" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"create_sa:gravity_gun" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"create_sa:digging" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"create_sa:impact" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"create_sa:hellfire" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"create_sa:above_the_clouds" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"malum:animated" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"malum:rebound" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"malum:ascension" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"malum:replenishing" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"malum:haunted" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"malum:spirit_plunder" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"ars_elemental:mirror_shield" { + # The max level of this enchantment - originally 4. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"ars_elemental:soulbound" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"betterarcheology:penetrating_strike" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"betterarcheology:soaring_winds" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"betterarcheology:tunneling" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"unusualfishmod:unusual_catch" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"railcraft:wrecking" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"railcraft:implosion" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"railcraft:destruction" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"railcraft:smack" { + # The max level of this enchantment - originally 4. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"species:capacity" { + # The max level of this enchantment - originally 2. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"species:sparing" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"species:quick_crank" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"species:scattershot" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"create_sa:chunk_eater" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"mushroomquest:sporestep" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"the_bumblezone:comb_cutter" { + # The max level of this enchantment - originally 2. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"the_bumblezone:potent_poison" { + # The max level of this enchantment - originally 3. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"the_bumblezone:neurotoxins" { + # The max level of this enchantment - originally 2. + # Default: 2; Range: [1 ~ 127] + I:"Max Level"=2 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"the_bumblezone:hive_lifeline" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"extra_sins:osteoporosis" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: + S:"Max Power Function"= + + # A function to determine the min enchanting power. + # Default: + S:"Min Power Function"= + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + diff --git a/minecraft/config/apotheosis/garden.cfg b/minecraft/config/apotheosis/garden.cfg new file mode 100644 index 0000000..e8ab4f7 --- /dev/null +++ b/minecraft/config/apotheosis/garden.cfg @@ -0,0 +1,22 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Garden Module Configuration + +general { + # The max height a stack of cacti may grow to. Vanilla is 3. Values greater than 32 are uncapped growth. + # Server-authoritative. + # Default: 5; Range: [1 ~ 512] + I:"Cactus Height"=5 + + # The max height a stack of reeds may grow to. Vanilla is 3. Values greater than 32 are uncapped growth. + # Server-authoritative. + # Default: 255; Range: [1 ~ 512] + I:"Reed Height"=255 + + # The max height a stack of bamboo may grow to. Vanilla is 16. + # Server-authoritative. + # Default: 32; Range: [1 ~ 64] + I:"Bamboo Height"=32 +} + + diff --git a/minecraft/config/apotheosis/names.cfg b/minecraft/config/apotheosis/names.cfg new file mode 100644 index 0000000..7d11836 --- /dev/null +++ b/minecraft/config/apotheosis/names.cfg @@ -0,0 +1,6079 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# + +entity { + # A list of full names, which are used in the generation of boss names. May be empty only if name parts is not empty. + # Default: [Prim], [Tyrael], [Bajorno], [Michael Morbius], [Morbius], [Arun], [Panez], [Doomsday], [Vanamar], [WhatTheDrunk], [Lothrazar], [Chelly], [Chelicia], [Darsh], [Dariush], [Cheese E Piloza], [Bing], [Royal], [NoWayHere], [SwankyStella], [Isosahedron], [Asfalis], [Biz], [Icicle], [Darko], [Shadows], [Katarina], [Faellynna], [Diliviel], [Jank], [Albert], [Andrew], [Anderson], [Andy], [Allan], [Arthur], [Aaron], [Allison], [Arielle], [Amanda], [Anne], [Annie], [Amy], [Alana], [Brandon], [Brady], [Bernard], [Ben], [Benjamin], [Bob], [Bobette], [Brooke], [Brandy], [Beatrice], [Bea], [Bella], [Becky], [Carlton], [Carl], [Calvin], [Cameron], [Carson], [Chase], [Cassandra], [Cassie], [Cas], [Carol], [Carly], [Cherise], [Charlotte], [Cheryl], [Chasity], [Danny], [Drake], [Daniel], [Derrel], [David], [Dave], [Donovan], [Don], [Donald], [Drew], [Derrick], [Darla], [Donna], [Dora], [Danielle], [Edward], [Elliot], [Ed], [Edson], [Elton], [Eddison], [Earl], [Eric], [Ericson], [Eddie], [Ediovany], [Emma], [Elizabeth], [Eliza], [Esperanza], [Esper], [Esmeralda], [Emi], [Emily], [Elaine], [Fernando], [Ferdinand], [Fred], [Feddie], [Fredward], [Frank], [Franklin], [Felix], [Felicia], [Fran], [Greg], [Gregory], [George], [Gerald], [Gina], [Geraldine], [Gabby], [Hendrix], [Henry], [Hobbes], [Herbert], [Heath], [Henderson], [Helga], [Hera], [Helen], [Helena], [Hannah], [Ike], [Issac], [Israel], [Ismael], [Irlanda], [Isabelle], [Irene], [Irenia], [Jimmy], [Jim], [Justin], [Jacob], [Jake], [Jon], [Johnson], [Jonny], [Jonathan], [Josh], [Joshua], [Julian], [Jesus], [Jericho], [Jeb], [Jess], [Joan], [Jill], [Jillian], [Jessica], [Jennifer], [Jenny], [Jen], [Judy], [Kenneth], [Kenny], [Ken], [Keith], [Kevin], [Karen], [Kassandra], [Kassie], [Leonard], [Leo], [Leroy], [Lee], [Lenny], [Luke], [Lucas], [Liam], [Lorraine], [Latasha], [Lauren], [Laquisha], [Livia], [Lydia], [Lila], [Lilly], [Lillian], [Lilith], [Lana], [Mason], [Mike], [Mickey], [Mario], [Manny], [Mark], [Marcus], [Martin], [Marty], [Matthew], [Matt], [Max], [Maximillian], [Marth], [Mia], [Marriah], [Maddison], [Maddie], [Marissa], [Miranda], [Mary], [Martha], [Melonie], [Melody], [Mel], [Minnie], [Nathan], [Nathaniel], [Nate], [Ned], [Nick], [Norman], [Nicholas], [Natasha], [Nicki], [Nora], [Nelly], [Nina], [Orville], [Oliver], [Orlando], [Owen], [Olsen], [Odin], [Olaf], [Ortega], [Olivia], [Patrick], [Pat], [Paul], [Perry], [Pinnochio], [Patrice], [Patricia], [Pennie], [Petunia], [Patti], [Pernelle], [Quade], [Quincy], [Quentin], [Quinn], [Roberto], [Robbie], [Rob], [Robert], [Roy], [Roland], [Ronald], [Richard], [Rick], [Ricky], [Rose], [Rosa], [Rhonda], [Rebecca], [Roberta], [Sparky], [Shiloh], [Stephen], [Steve], [Saul], [Sheen], [Shane], [Sean], [Sampson], [Samuel], [Sammy], [Stefan], [Sasha], [Sam], [Susan], [Suzy], [Shelby], [Samantha], [Sheila], [Sharon], [Sally], [Stephanie], [Sandra], [Sandy], [Sage], [Tim], [Thomas], [Thompson], [Tyson], [Tyler], [Tom], [Tyrone], [Timmothy], [Tamara], [Tabby], [Tabitha], [Tessa], [Tiara], [Tyra], [Uriel], [Ursala], [Uma], [Victor], [Vincent], [Vince], [Vance], [Vinny], [Velma], [Victoria], [Veronica], [Wilson], [Wally], [Wallace], [Will], [Wilard], [William], [Wilhelm], [Xavier], [Xandra], [Young], [Yvonne], [Yolanda], [Zach], [Zachary] + S:Names < + Prim + Tyrael + Bajorno + Michael Morbius + Morbius + Arun + Panez + Doomsday + Vanamar + WhatTheDrunk + Lothrazar + Chelly + Chelicia + Darsh + Dariush + Cheese E Piloza + Bing + Royal + NoWayHere + SwankyStella + Isosahedron + Asfalis + Biz + Icicle + Darko + Shadows + Katarina + Faellynna + Diliviel + Jank + Albert + Andrew + Anderson + Andy + Allan + Arthur + Aaron + Allison + Arielle + Amanda + Anne + Annie + Amy + Alana + Brandon + Brady + Bernard + Ben + Benjamin + Bob + Bobette + Brooke + Brandy + Beatrice + Bea + Bella + Becky + Carlton + Carl + Calvin + Cameron + Carson + Chase + Cassandra + Cassie + Cas + Carol + Carly + Cherise + Charlotte + Cheryl + Chasity + Danny + Drake + Daniel + Derrel + David + Dave + Donovan + Don + Donald + Drew + Derrick + Darla + Donna + Dora + Danielle + Edward + Elliot + Ed + Edson + Elton + Eddison + Earl + Eric + Ericson + Eddie + Ediovany + Emma + Elizabeth + Eliza + Esperanza + Esper + Esmeralda + Emi + Emily + Elaine + Fernando + Ferdinand + Fred + Feddie + Fredward + Frank + Franklin + Felix + Felicia + Fran + Greg + Gregory + George + Gerald + Gina + Geraldine + Gabby + Hendrix + Henry + Hobbes + Herbert + Heath + Henderson + Helga + Hera + Helen + Helena + Hannah + Ike + Issac + Israel + Ismael + Irlanda + Isabelle + Irene + Irenia + Jimmy + Jim + Justin + Jacob + Jake + Jon + Johnson + Jonny + Jonathan + Josh + Joshua + Julian + Jesus + Jericho + Jeb + Jess + Joan + Jill + Jillian + Jessica + Jennifer + Jenny + Jen + Judy + Kenneth + Kenny + Ken + Keith + Kevin + Karen + Kassandra + Kassie + Leonard + Leo + Leroy + Lee + Lenny + Luke + Lucas + Liam + Lorraine + Latasha + Lauren + Laquisha + Livia + Lydia + Lila + Lilly + Lillian + Lilith + Lana + Mason + Mike + Mickey + Mario + Manny + Mark + Marcus + Martin + Marty + Matthew + Matt + Max + Maximillian + Marth + Mia + Marriah + Maddison + Maddie + Marissa + Miranda + Mary + Martha + Melonie + Melody + Mel + Minnie + Nathan + Nathaniel + Nate + Ned + Nick + Norman + Nicholas + Natasha + Nicki + Nora + Nelly + Nina + Orville + Oliver + Orlando + Owen + Olsen + Odin + Olaf + Ortega + Olivia + Patrick + Pat + Paul + Perry + Pinnochio + Patrice + Patricia + Pennie + Petunia + Patti + Pernelle + Quade + Quincy + Quentin + Quinn + Roberto + Robbie + Rob + Robert + Roy + Roland + Ronald + Richard + Rick + Ricky + Rose + Rosa + Rhonda + Rebecca + Roberta + Sparky + Shiloh + Stephen + Steve + Saul + Sheen + Shane + Sean + Sampson + Samuel + Sammy + Stefan + Sasha + Sam + Susan + Suzy + Shelby + Samantha + Sheila + Sharon + Sally + Stephanie + Sandra + Sandy + Sage + Tim + Thomas + Thompson + Tyson + Tyler + Tom + Tyrone + Timmothy + Tamara + Tabby + Tabitha + Tessa + Tiara + Tyra + Uriel + Ursala + Uma + Victor + Vincent + Vince + Vance + Vinny + Velma + Victoria + Veronica + Wilson + Wally + Wallace + Will + Wilard + William + Wilhelm + Xavier + Xandra + Young + Yvonne + Yolanda + Zach + Zachary + > + + # A list of name pieces, which can be spliced together to create full names. May be empty only if names is not empty. + # Default: [Prim], [Morb], [Ius], [Kat], [Chel], [Bing], [Darsh], [Jank], [Dark], [Osto], [Grab], [Thar], [Ger], [Ald], [Mas], [On], [O], [Din], [Thor], [Jon], [Ath], [Burb], [En], [A], [E], [I], [U], [Hab], [Bloo], [Ena], [Dit], [Aph], [Ern], [Bor], [Dav], [Id], [Toast], [Son], [For], [Wen], [Lob], [Van], [Zap], [Ear], [Ben], [Don], [Bran], [Gro], [Jen], [Bob], [Ette], [Ere], [Man], [Qua], [Bro], [Cree], [Per], [Skel], [Ton], [Zom], [Bie], [Wolf], [End], [Er], [Pig], [Sil], [Ver], [Fish], [Cow], [Chic], [Ken], [Sheep], [Squid], [Hell] + S:"Name Parts" < + Prim + Morb + Ius + Kat + Chel + Bing + Darsh + Jank + Dark + Osto + Grab + Thar + Ger + Ald + Mas + On + O + Din + Thor + Jon + Ath + Burb + En + A + E + I + U + Hab + Bloo + Ena + Dit + Aph + Ern + Bor + Dav + Id + Toast + Son + For + Wen + Lob + Van + Zap + Ear + Ben + Don + Bran + Gro + Jen + Bob + Ette + Ere + Man + Qua + Bro + Cree + Per + Skel + Ton + Zom + Bie + Wolf + End + Er + Pig + Sil + Ver + Fish + Cow + Chic + Ken + Sheep + Squid + Hell + > + + # A list of prefixes, which are used in the generation of boss names. May be empty. + # Default: [Dr. Michael], [Sir], [Mister], [Madam], [Doctor], [Father], [Mother], [Poppa], [Lord], [Lady], [Overseer], [Professor], [Mr.], [Mr. President], [Duke], [Duchess], [Dame], [The Honorable], [Chancellor], [Vice-Chancellor], [His Holiness], [Reverend], [Count], [Viscount], [Earl], [Captain], [Major], [General], [Senpai] + S:Prefixes < + Dr. Michael + Sir + Mister + Madam + Doctor + Father + Mother + Poppa + Lord + Lady + Overseer + Professor + Mr. + Mr. President + Duke + Duchess + Dame + The Honorable + Chancellor + Vice-Chancellor + His Holiness + Reverend + Count + Viscount + Earl + Captain + Major + General + Senpai + > + + # A list of suffixes, which are used in the generation of boss names. A suffix is always preceeded by "The". May be empty. + # Default: [Morbius], [Dragonborn], [Rejected], [Mighty], [Supreme], [Superior], [Ultimate], [Lame], [Wimpy], [Curious], [Sneaky], [Pathetic], [Crying], [Eagle], [Errant], [Unholy], [Questionable], [Mean], [Hungry], [Thirsty], [Feeble], [Wise], [Sage], [Magical], [Mythical], [Legendary], [Not Very Nice], [Jerk], [Doctor], [Misunderstood], [Angry], [Knight], [Bishop], [Godly], [Special], [Toasty], [Shiny], [Shimmering], [Light], [Dark], [Odd-Smelling], [Funky], [Rock Smasher], [Son of Herobrine], [Cracked], [Sticky], [§kAlien§r], [Baby], [Manly], [Rough], [Scary], [Undoubtable], [Honest], [Non-Suspicious], [Boring], [Odd], [Lazy], [Super], [Nifty], [Ogre Slayer], [Pig Thief], [Dirt Digger], [Really Cool], [Doominator], [... Something], [Extra-Fishy], [Gorilla Slaughterer], [Marbles Winner], [AC Rizzlord], [President], [Burger Chef], [Professional Animator], [Cheese Sprayer], [Happiness Advocate], [Ghost Hunter], [Head of Potatoes], [Ninja], [Warrior], [Pyromancer] + S:Suffixes < + Morbius + Dragonborn + Rejected + Mighty + Supreme + Superior + Ultimate + Lame + Wimpy + Curious + Sneaky + Pathetic + Crying + Eagle + Errant + Unholy + Questionable + Mean + Hungry + Thirsty + Feeble + Wise + Sage + Magical + Mythical + Legendary + Not Very Nice + Jerk + Doctor + Misunderstood + Angry + Knight + Bishop + Godly + Special + Toasty + Shiny + Shimmering + Light + Dark + Odd-Smelling + Funky + Rock Smasher + Son of Herobrine + Cracked + Sticky + §kAlien§r + Baby + Manly + Rough + Scary + Undoubtable + Honest + Non-Suspicious + Boring + Odd + Lazy + Super + Nifty + Ogre Slayer + Pig Thief + Dirt Digger + Really Cool + Doominator + ... Something + Extra-Fishy + Gorilla Slaughterer + Marbles Winner + AC Rizzlord + President + Burger Chef + Professional Animator + Cheese Sprayer + Happiness Advocate + Ghost Hunter + Head of Potatoes + Ninja + Warrior + Pyromancer + > +} + + +items { + # A list of root names for helms, used in the generation of item names. May not be empty. + # Default: [Helmet], [Cap], [Crown], [Great Helm], [Bassinet], [Sallet], [Close Helm], [Barbute] + S:Helms < + Helmet + Cap + Crown + Great Helm + Bassinet + Sallet + Close Helm + Barbute + > + + # A list of root names for chestplates, used in the generation of item names. May not be empty. + # Default: [Chestplate], [Tunic], [Brigandine], [Hauberk], [Cuirass] + S:chestplates < + Chestplate + Tunic + Brigandine + Hauberk + Cuirass + > + + # A list of root names for leggings, used in the generation of item names. May not be empty. + # Default: [Leggings], [Pants], [Tassets], [Cuisses], [Schynbalds] + S:leggings < + Leggings + Pants + Tassets + Cuisses + Schynbalds + > + + # A list of root names for boots, used in the generation of item names. May not be empty. + # Default: [Boots], [Shoes], [Greaves], [Sabatons], [Sollerets] + S:boots < + Boots + Shoes + Greaves + Sabatons + Sollerets + > + + # A list of root names for swords, used in the generation of item names. May not be empty. + # Default: [Sword], [Cutter], [Slicer], [Dicer], [Knife], [Blade], [Machete], [Brand], [Claymore], [Cutlass], [Foil], [Dagger], [Glaive], [Rapier], [Saber], [Scimitar], [Shortsword], [Longsword], [Broadsword], [Calibur] + S:swords < + Sword + Cutter + Slicer + Dicer + Knife + Blade + Machete + Brand + Claymore + Cutlass + Foil + Dagger + Glaive + Rapier + Saber + Scimitar + Shortsword + Longsword + Broadsword + Calibur + > + + # A list of root names for axes, used in the generation of item names. May not be empty. + # Default: [Axe], [Chopper], [Hatchet], [Tomahawk], [Cleaver], [Hacker], [Tree-Cutter], [Truncator] + S:axes < + Axe + Chopper + Hatchet + Tomahawk + Cleaver + Hacker + Tree-Cutter + Truncator + > + + # A list of root names for pickaxes, used in the generation of item names. May not be empty. + # Default: [Pickaxe], [Pick], [Mattock], [Rock-Smasher], [Miner] + S:pickaxes < + Pickaxe + Pick + Mattock + Rock-Smasher + Miner + > + + # A list of root names for shovels, used in the generation of item names. May not be empty. + # Default: [Shovel], [Spade], [Digger], [Excavator], [Trowel], [Scoop] + S:shovels < + Shovel + Spade + Digger + Excavator + Trowel + Scoop + > + + # A list of root names for bows, used in the generation of item names. May not be empty. + # Default: [Bow], [Shortbow], [Longbow], [Flatbow], [Recurve Bow], [Reflex Bow], [Self Bow], [Composite Bow], [Arrow-Flinger] + S:bows < + Bow + Shortbow + Longbow + Flatbow + Recurve Bow + Reflex Bow + Self Bow + Composite Bow + Arrow-Flinger + > + + # A list of root names for shields, used in the generation of item names. May not be empty. + # Default: [Shield], [Buckler], [Targe], [Greatshield], [Blockade], [Bulwark], [Tower Shield], [Protector], [Aegis] + S:shields < + Shield + Buckler + Targe + Greatshield + Blockade + Bulwark + Tower Shield + Protector + Aegis + > +} + + +tools { + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:bone_sword + # + # Default: [ + S:wrd_bone_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_shovel + # + # Default: [ + S:create_sa_brass_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:misery + # + # Default: [ + S:irons_spellbooks_misery < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:ironwood_sword, twilightforest:ironwood_shovel, twilightforest:ironwood_pickaxe, twilightforest:ironwood_axe, twilightforest:ironwood_hoe + # + # Default: [ + S:twilightforest_ironwood_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:silver/longsword, integrated_simply_swords:silver/twinblade, integrated_simply_swords:silver/rapier, integrated_simply_swords:silver/katana, integrated_simply_swords:silver/sai, integrated_simply_swords:silver/spear, integrated_simply_swords:silver/glaive, integrated_simply_swords:silver/warglaive, integrated_simply_swords:silver/cutlass, integrated_simply_swords:silver/claymore, integrated_simply_swords:silver/greathammer, integrated_simply_swords:silver/greataxe, integrated_simply_swords:silver/chakram, integrated_simply_swords:silver/scythe, integrated_simply_swords:silver/halberd + # + # Default: [ + S:SILVER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:iceandfire/dragonsteel_lightning/longsword, integrated_simply_swords:iceandfire/dragonsteel_lightning/twinblade, integrated_simply_swords:iceandfire/dragonsteel_lightning/rapier, integrated_simply_swords:iceandfire/dragonsteel_lightning/katana, integrated_simply_swords:iceandfire/dragonsteel_lightning/sai, integrated_simply_swords:iceandfire/dragonsteel_lightning/spear, integrated_simply_swords:iceandfire/dragonsteel_lightning/glaive, integrated_simply_swords:iceandfire/dragonsteel_lightning/warglaive, integrated_simply_swords:iceandfire/dragonsteel_lightning/cutlass, integrated_simply_swords:iceandfire/dragonsteel_lightning/claymore, integrated_simply_swords:iceandfire/dragonsteel_lightning/greathammer, integrated_simply_swords:iceandfire/dragonsteel_lightning/greataxe, integrated_simply_swords:iceandfire/dragonsteel_lightning/chakram, integrated_simply_swords:iceandfire/dragonsteel_lightning/scythe, integrated_simply_swords:iceandfire/dragonsteel_lightning/halberd + # + # Default: [ + S:DRAGONSTEEL_LIGHTNING < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_pickaxe + # + # Default: [ + S:create_sa_zinc_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:osseous_shovel + # + # Default: [ + S:sons_of_sins_osseous_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:twilight_gale + # + # Default: [ + S:irons_spellbooks_twilight_gale < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:monstrous_flamberge + # + # Default: [ + S:MONSTROUS_FLAMBERGE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tconstruct:pickaxe, tconstruct:sledge_hammer, tconstruct:vein_hammer, tconstruct:mattock, tconstruct:pickadze, tconstruct:excavator, tconstruct:hand_axe, tconstruct:broad_axe, tconstruct:kama, tconstruct:scythe, tconstruct:dagger, tconstruct:sword, tconstruct:cleaver, tconstruct:fishing_rod, tconstruct:javelin, tconstruct:flint_and_brick, tconstruct:sky_staff, tconstruct:earth_staff, tconstruct:ichor_staff, tconstruct:ender_staff, tconstruct:melting_pan, tconstruct:battlesign, tconstruct:swasher, tconstruct:minotaur_axe, tconstruct:travelers_shield, tconstruct:plate_shield, tinkers_thinking:paxel, tinkers_thinking:knife, tinkers_thinking:mace, tinkers_thinking:cutlass, tinkers_thinking:magma_staff, tinkers_thinking:clay_staff, tinkers_thinking:quartz_staff, tinkers_thinking:seared_bucket, tinkers_thinking:tinkers_bronze_bucket, tinkers_thinking:battle_bucket, tinkers_katanas:katana, tinkers_katanas:fuma_shuriken + # + # Default: [ + S:INSTANCE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: additionaladditions:rose_gold_sword, additionaladditions:rose_gold_axe, additionaladditions:rose_gold_pickaxe, additionaladditions:rose_gold_shovel, additionaladditions:rose_gold_hoe + # + # Default: [ + S:additionaladditions_rose_gold_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:translucent_sword, soulsweapons:translucent_glaive, soulsweapons:translucent_double_greatsword + # + # Default: [ + S:LOST_SOUL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:sweet_lance + # + # Default: [ + S:aquamirae_sweet_lance < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:sinful_shovel + # + # Default: [ + S:sons_of_sins_sinful_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:rose_quartz_shovel + # + # Default: [ + S:create_sa_rose_quartz_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:whisper_of_the_abyss + # + # Default: [ + S:aquamirae_whisper_of_the_abyss < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:plague_scythe + # + # Default: [ + S:rats_plague_scythe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_greatsword + # + # Default: [ + S:wrd_corrupted_greatsword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm:void_forge, cataclysm:infernal_forge + # + # Default: [ + S:cataclysm_void_forge < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:dagger_of_greed + # + # Default: [ + S:aquamirae_dagger_of_greed < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_irradiated:uranium_axe + # + # Default: [ + S:create_irradiated_uranium_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_knife + # + # Default: [ + S:extra_sins_osseous_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: enderio:dark_steel_sword + # + # Default: [ + S:enderio_dark_steel_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:sharpened_pickaxe + # + # Default: [ + S:wrd_sharpened_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: experienceobelisk:cognitive_sword, experienceobelisk:cognitive_shovel, experienceobelisk:cognitive_pickaxe, experienceobelisk:cognitive_axe, experienceobelisk:cognitive_hoe + # + # Default: [ + S:experienceobelisk_cognitive_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: draconicevolution:chaotic_shovel, draconicevolution:chaotic_hoe, draconicevolution:chaotic_pickaxe, draconicevolution:chaotic_axe, draconicevolution:chaotic_sword, draconicevolution:chaotic_staff + # + # Default: [ + S:draconicevolution_chaotic_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:experience_sword + # + # Default: [ + S:create_sa_experience_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:sinful_claymore + # + # Default: [ + S:extra_sins_sinful_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:troll_weapon_axe, iceandfire:troll_weapon_column, iceandfire:troll_weapon_column_forest, iceandfire:troll_weapon_column_frost, iceandfire:troll_weapon_hammer, iceandfire:troll_weapon_trunk, iceandfire:troll_weapon_trunk_frost + # + # Default: [ + S:iceandfire_troll_weapon_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:holystone_pickaxe, aether:holystone_axe, aether:holystone_shovel, aether:holystone_hoe, aether:holystone_sword + # + # Default: [ + S:HOLYSTONE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:portable_drill + # + # Default: [ + S:create_sa_portable_drill < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:amphithere_macuahuitl + # + # Default: [ + S:iceandfire_amphithere_macuahuitl < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_twinblade + # + # Default: [ + S:extra_sins_osseous_twinblade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:warped_anchor + # + # Default: [ + S:unusualend_warped_anchor < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: malum:staff_of_the_auric_flame + # + # Default: [ + S:AURIC_STAFF < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_pickaxe + # + # Default: [ + S:create_sa_copper_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: deeperdarker:resonarium_shovel, deeperdarker:resonarium_pickaxe, deeperdarker:resonarium_axe, deeperdarker:resonarium_hoe, deeperdarker:resonarium_sword + # + # Default: [ + S:RESONARIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aethersteel:aethersteel_pickaxe, aethersteel:aethersteel_axe, aethersteel:aethersteel_sword, aethersteel:aethersteel_shovel, aethersteel:aethersteel_hoe + # + # Default: [ + S:aethersteel_aethersteel_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:coral_sword + # + # Default: [ + S:wrd_coral_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dread_queen_sword + # + # Default: [ + S:iceandfire_dread_queen_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:pirat_cutlass + # + # Default: [ + S:rats_pirat_cutlass < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:ceremony_knife + # + # Default: [ + S:wrd_ceremony_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:boreal_blade + # + # Default: [ + S:irons_spellbooks_boreal_blade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: additionaladditions:gilded_netherite_sword, additionaladditions:gilded_netherite_axe, additionaladditions:gilded_netherite_pickaxe, additionaladditions:gilded_netherite_shovel, additionaladditions:gilded_netherite_hoe + # + # Default: [ + S:additionaladditions_gilded_netherite_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_hoe + # + # Default: [ + S:create_sa_zinc_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tinkersdelight:cobalt_knife + # + # Default: [ + S:tinkersdelight_cobalt_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sculk_staff + # + # Default: [ + S:extra_sins_osseous_sculk_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:stun_baton + # + # Default: [ + S:wrd_stun_baton < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_shovel + # + # Default: [ + S:create_sa_zinc_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm:final_fractal + # + # Default: [ + S:TOOL_WITHERITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_pickaxe + # + # Default: [ + S:create_sa_brass_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:pearlescent_hoe + # + # Default: [ + S:unusualend_pearlescent_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:bluemoon_shortsword, soulsweapons:bluemoon_greatsword, soulsweapons:moonlight_shortsword, soulsweapons:moonlight_greatsword, soulsweapons:pure_moonlight_greatsword, soulsweapons:dragon_staff, soulsweapons:withered_wabbajack, soulsweapons:dragonslayer_swordspear, soulsweapons:rageblade, soulsweapons:comet_spear, soulsweapons:lich_bane, soulsweapons:draugr, soulsweapons:dawnbreaker, soulsweapons:soul_reaper, soulsweapons:leviathan_axe, soulsweapons:skofnung, soulsweapons:mjolnir, soulsweapons:freyr_sword, soulsweapons:sting, soulsweapons:featherlight, soulsweapons:crucible_sword, soulsweapons:darkin_scythe_pre, soulsweapons:darkin_scythe, soulsweapons:shadow_assassin_scythe, soulsweapons:draupnir_spear, soulsweapons:holy_moonlight_greatsword, soulsweapons:holy_moonlight_sword, soulsweapons:frostmourne, soulsweapons:master_sword, soulsweapons:nights_edge_item, soulsweapons:empowered_dawnbreaker, soulsweapons:chungus_staff, soulsweapons:dark_moon_greatsword, soulsweapons:glaive_of_hodir, soulsweapons:moonveil, soulsweapons:dragonbane, soulsweapons:supernova, soulsweapons:mehrunes_razor, soulsweapons:nightlords_sword + # + # Default: [ + S:MOONSTONE_OR_VERGLAS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:flesh_hoe + # + # Default: [ + S:sons_of_sins_flesh_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:sinful_axe + # + # Default: [ + S:sons_of_sins_sinful_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:flesh_axe + # + # Default: [ + S:sons_of_sins_flesh_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forbidden_arcanus:mystical_dagger + # + # Default: [ + S:MYSTICAL_DAGGER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:iceandfire/dragonsteel_fire/longsword, integrated_simply_swords:iceandfire/dragonsteel_fire/twinblade, integrated_simply_swords:iceandfire/dragonsteel_fire/rapier, integrated_simply_swords:iceandfire/dragonsteel_fire/katana, integrated_simply_swords:iceandfire/dragonsteel_fire/sai, integrated_simply_swords:iceandfire/dragonsteel_fire/spear, integrated_simply_swords:iceandfire/dragonsteel_fire/glaive, integrated_simply_swords:iceandfire/dragonsteel_fire/warglaive, integrated_simply_swords:iceandfire/dragonsteel_fire/cutlass, integrated_simply_swords:iceandfire/dragonsteel_fire/claymore, integrated_simply_swords:iceandfire/dragonsteel_fire/greathammer, integrated_simply_swords:iceandfire/dragonsteel_fire/greataxe, integrated_simply_swords:iceandfire/dragonsteel_fire/chakram, integrated_simply_swords:iceandfire/dragonsteel_fire/scythe, integrated_simply_swords:iceandfire/dragonsteel_fire/halberd + # + # Default: [ + S:DRAGONSTEEL_FIRE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mobs_of_sins:soul_sickle_of_struggle + # + # Default: [ + S:mobs_of_sins_soul_sickle_of_struggle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:long_range_cleaver + # + # Default: [ + S:extra_sins_long_range_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: biomancy:ravenous_claws + # + # Default: [ + S:biomancy_ravenous_claws < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:hippocampus_slapper + # + # Default: [ + S:iceandfire_hippocampus_slapper < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mobs_of_sins:rattle_sickle_of_struggle + # + # Default: [ + S:mobs_of_sins_rattle_sickle_of_struggle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:myrmex_desert_sword, iceandfire:myrmex_desert_sword_venom, iceandfire:myrmex_desert_shovel, iceandfire:myrmex_desert_pickaxe, iceandfire:myrmex_desert_axe, iceandfire:myrmex_desert_hoe, iceandfire:myrmex_jungle_sword, iceandfire:myrmex_jungle_sword_venom, iceandfire:myrmex_jungle_shovel, iceandfire:myrmex_jungle_pickaxe, iceandfire:myrmex_jungle_axe, iceandfire:myrmex_jungle_hoe + # + # Default: [ + S:iceandfire_myrmex_desert_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm:black_steel_sword, cataclysm:black_steel_shovel, cataclysm:black_steel_pickaxe, cataclysm:black_steel_axe, cataclysm:black_steel_hoe, simplycataclysm:black_steel_longsword, simplycataclysm:black_steel_twinblade, simplycataclysm:black_steel_rapier, simplycataclysm:black_steel_katana, simplycataclysm:black_steel_sai, simplycataclysm:black_steel_spear, simplycataclysm:black_steel_glaive, simplycataclysm:black_steel_warglaive, simplycataclysm:black_steel_cutlass, simplycataclysm:black_steel_claymore, simplycataclysm:black_steel_greathammer, simplycataclysm:black_steel_greataxe, simplycataclysm:black_steel_chakram, simplycataclysm:black_steel_scythe, simplycataclysm:black_steel_halberd + # + # Default: [ + S:cataclysm_black_steel_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aethersteel:aethersteel_knife + # + # Default: [ + S:aethersteel_aethersteel_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tinkersdelight:queens_slime_knife + # + # Default: [ + S:tinkersdelight_queens_slime_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:butcher_staff + # + # Default: [ + S:extra_sins_butcher_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dread_sword + # + # Default: [ + S:iceandfire_dread_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sculk_sword + # + # Default: [ + S:extra_sins_osseous_sculk_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:silver_sword, iceandfire:silver_shovel, iceandfire:silver_pickaxe, iceandfire:silver_axe, iceandfire:silver_hoe + # + # Default: [ + S:iceandfire_silver_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:lunar_stone_sword, blue_skies:lunar_stone_pickaxe, blue_skies:lunar_stone_axe, blue_skies:lunar_stone_shovel, blue_skies:lunar_stone_hoe + # + # Default: [ + S:LUNAR_STONE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:bone_crusher + # + # Default: [ + S:wrd_bone_crusher < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:shape_shifting_tool + # + # Default: [ + S:sons_of_sins_shape_shifting_tool < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:sinful_pickaxe + # + # Default: [ + S:sons_of_sins_sinful_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:elementium_pickaxe, botania:elementium_shovel, botania:elementium_axe, botania:elementium_hoe, botania:elementium_sword + # + # Default: [ + S:ELEMENTIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:fiery_sword, twilightforest:fiery_pickaxe + # + # Default: [ + S:twilightforest_fiery_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:iceandfire/dragonbone_fire/longsword, integrated_simply_swords:iceandfire/dragonbone_fire/twinblade, integrated_simply_swords:iceandfire/dragonbone_fire/rapier, integrated_simply_swords:iceandfire/dragonbone_fire/katana, integrated_simply_swords:iceandfire/dragonbone_fire/sai, integrated_simply_swords:iceandfire/dragonbone_fire/spear, integrated_simply_swords:iceandfire/dragonbone_fire/glaive, integrated_simply_swords:iceandfire/dragonbone_fire/warglaive, integrated_simply_swords:iceandfire/dragonbone_fire/cutlass, integrated_simply_swords:iceandfire/dragonbone_fire/claymore, integrated_simply_swords:iceandfire/dragonbone_fire/greathammer, integrated_simply_swords:iceandfire/dragonbone_fire/greataxe, integrated_simply_swords:iceandfire/dragonbone_fire/chakram, integrated_simply_swords:iceandfire/dragonbone_fire/scythe, integrated_simply_swords:iceandfire/dragonbone_fire/halberd + # + # Default: [ + S:DRAGONBONE_FIRE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:decrepit_scythe + # + # Default: [ + S:irons_spellbooks_decrepit_scythe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_greataxe + # + # Default: [ + S:wrd_corrupted_greataxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:divider + # + # Default: [ + S:aquamirae_divider < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:spellbreaker + # + # Default: [ + S:irons_spellbooks_spellbreaker < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:supreme_cleaver + # + # Default: [ + S:extra_sins_supreme_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_irradiated:uranium_shovel + # + # Default: [ + S:create_irradiated_uranium_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:osseous_hoe + # + # Default: [ + S:sons_of_sins_osseous_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:candy_cane_sword + # + # Default: [ + S:CANDY_CANE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:ether_sword + # + # Default: [ + S:sons_of_sins_ether_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:diopside_sword, blue_skies:diopside_pickaxe, blue_skies:diopside_axe, blue_skies:diopside_shovel, blue_skies:diopside_hoe + # + # Default: [ + S:DIOPSIDE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sculk_hoe + # + # Default: [ + S:extra_sins_osseous_sculk_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonsteel_ice_sword, iceandfire:dragonsteel_ice_pickaxe, iceandfire:dragonsteel_ice_axe, iceandfire:dragonsteel_ice_shovel, iceandfire:dragonsteel_ice_hoe + # + # Default: [ + S:iceandfire_dragonsteel_ice_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:bouncy_dagger + # + # Default: [ + S:unusualend_bouncy_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sculk_knife + # + # Default: [ + S:extra_sins_osseous_sculk_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:blazing_shovel + # + # Default: [ + S:create_sa_blazing_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:rose_quartz_axe + # + # Default: [ + S:create_sa_rose_quartz_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonsteel_lightning_sword, iceandfire:dragonsteel_lightning_pickaxe, iceandfire:dragonsteel_lightning_axe, iceandfire:dragonsteel_lightning_shovel, iceandfire:dragonsteel_lightning_hoe + # + # Default: [ + S:iceandfire_dragonsteel_lightning_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: farmersdelight:flint_knife + # + # Default: [ + S:farmersdelight_flint_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:flesh_sword + # + # Default: [ + S:sons_of_sins_flesh_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:netherite_sword, minecraft:netherite_shovel, minecraft:netherite_pickaxe, minecraft:netherite_axe, minecraft:netherite_hoe, omnitools:omni_vajra, energizedpower:netherite_hammer, hexerei:warhammer, ars_nouveau:enchanters_sword, farmersdelight:netherite_knife, actuallyadditions:netherite_aiot, simplyswords:netherite_longsword, simplyswords:netherite_twinblade, simplyswords:netherite_rapier, simplyswords:netherite_katana, simplyswords:netherite_sai, simplyswords:netherite_spear, simplyswords:netherite_glaive, simplyswords:netherite_warglaive, simplyswords:netherite_cutlass, simplyswords:netherite_claymore, simplyswords:netherite_greathammer, simplyswords:netherite_greataxe, simplyswords:netherite_chakram, simplyswords:netherite_scythe, simplyswords:netherite_halberd, simplymore:netherite_great_katana, simplymore:netherite_grandsword, simplymore:netherite_backhand_blade, simplymore:netherite_lance, simplymore:netherite_khopesh, simplymore:netherite_dagger, simplymore:netherite_pernach, simplymore:netherite_quarterstaff, simplymore:netherite_great_spear, simplymore:netherite_deer_horns, forbidden_arcanus:netherite_blacksmith_gavel, nethersdelight:netherite_machete, chiselsandbits:chisel_netherite + # + # Default: [ + S:NETHERITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm:zweiender + # + # Default: [ + S:TOOL_ENDERITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:pearlescent_sword + # + # Default: [ + S:unusualend_pearlescent_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:iceandfire/dragonbone/longsword, integrated_simply_swords:iceandfire/dragonbone/twinblade, integrated_simply_swords:iceandfire/dragonbone/rapier, integrated_simply_swords:iceandfire/dragonbone/katana, integrated_simply_swords:iceandfire/dragonbone/sai, integrated_simply_swords:iceandfire/dragonbone/spear, integrated_simply_swords:iceandfire/dragonbone/glaive, integrated_simply_swords:iceandfire/dragonbone/warglaive, integrated_simply_swords:iceandfire/dragonbone/cutlass, integrated_simply_swords:iceandfire/dragonbone/claymore, integrated_simply_swords:iceandfire/dragonbone/greathammer, integrated_simply_swords:iceandfire/dragonbone/greataxe, integrated_simply_swords:iceandfire/dragonbone/chakram, integrated_simply_swords:iceandfire/dragonbone/scythe, integrated_simply_swords:iceandfire/dragonbone/halberd + # + # Default: [ + S:DRAGONBONE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_sword + # + # Default: [ + S:create_sa_copper_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:hammer_of_kingbdogz + # + # Default: [ + S:HAMMER_OF_KINGBDOGZ < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:sinful_staff + # + # Default: [ + S:extra_sins_sinful_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:lightning_sword + # + # Default: [ + S:LIGHTNING < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:ghost_sword + # + # Default: [ + S:iceandfire_ghost_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:rose_quartz_sword + # + # Default: [ + S:create_sa_rose_quartz_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_irradiated:uranium_hoe + # + # Default: [ + S:create_irradiated_uranium_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_pickaxe + # + # Default: [ + S:wrd_corrupted_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:hellrazor + # + # Default: [ + S:irons_spellbooks_hellrazor < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:remnants_saber + # + # Default: [ + S:aquamirae_remnants_saber < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forbidden_arcanus:slimec_pickaxe + # + # Default: [ + S:SLIMEC < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: biomancy:despoil_sickle + # + # Default: [ + S:biomancy_despoil_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_hoe + # + # Default: [ + S:wrd_corrupted_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:manasteel_pick, botania:manasteel_shovel, botania:manasteel_axe, botania:manasteel_hoe, botania:manasteel_sword, botania:ender_dagger + # + # Default: [ + S:MANASTEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:hippogryph_sword + # + # Default: [ + S:iceandfire_hippogryph_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonbone_sword_ice + # + # Default: [ + S:iceandfire_dragonbone_sword_ice < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:maze_rose + # + # Default: [ + S:aquamirae_maze_rose < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplyswords:runic_longsword, simplyswords:runic_twinblade, simplyswords:runic_rapier, simplyswords:runic_katana, simplyswords:runic_sai, simplyswords:runic_spear, simplyswords:runic_glaive, simplyswords:runic_cutlass, simplyswords:runic_claymore, simplyswords:runic_chakram, simplyswords:runic_greataxe, simplyswords:runic_greathammer, simplyswords:runic_warglaive, simplyswords:runic_scythe, simplyswords:runic_halberd + # + # Default: [ + S:RUNIC < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonbone_sword_fire + # + # Default: [ + S:iceandfire_dragonbone_sword_fire < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:poisoned_blade + # + # Default: [ + S:aquamirae_poisoned_blade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forbidden_arcanus:reinforced_deorum_blacksmith_gavel, forbidden_arcanus:reinforced_deorum_sword, forbidden_arcanus:reinforced_deorum_shovel, forbidden_arcanus:reinforced_deorum_pickaxe, forbidden_arcanus:reinforced_deorum_axe, forbidden_arcanus:reinforced_deorum_hoe + # + # Default: [ + S:REINFORCED_DEORUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: deeperdarker:warden_shovel, deeperdarker:warden_pickaxe, deeperdarker:warden_axe, deeperdarker:warden_hoe, deeperdarker:warden_sword + # + # Default: [ + S:WARDEN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tinkersdelight:pig_iron_knife + # + # Default: [ + S:tinkersdelight_pig_iron_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:flesh_claymore + # + # Default: [ + S:extra_sins_flesh_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:experience_pickaxe + # + # Default: [ + S:create_sa_experience_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:comet_sword, blue_skies:comet_pickaxe, blue_skies:comet_axe, blue_skies:comet_shovel, blue_skies:comet_hoe + # + # Default: [ + S:COMET < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether_redux:infused_veridium_pickaxe, aether_redux:infused_veridium_axe, aether_redux:infused_veridium_shovel, aether_redux:infused_veridium_hoe, aether_redux:infused_veridium_sword + # + # Default: [ + S:INFUSED_VERIDIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:murasama_blade + # + # Default: [ + S:MURASAMA < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:inferium_sword, mysticalagriculture:inferium_pickaxe, mysticalagriculture:inferium_shovel, mysticalagriculture:inferium_axe, mysticalagriculture:inferium_hoe, mysticalagriculture:inferium_sickle, mysticalagriculture:inferium_scythe + # + # Default: [ + S:INFERIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:glass_sword + # + # Default: [ + S:twilightforest_glass_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:pig_slayer + # + # Default: [ + S:PIG_SLAYER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:rose_quartz_pickaxe + # + # Default: [ + S:create_sa_rose_quartz_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:moonstone_shovel, soulsweapons:moonstone_pickaxe, soulsweapons:moonstone_axe, soulsweapons:moonstone_hoe + # + # Default: [ + S:MOONSTONE_TOOL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ae2:certus_quartz_axe, ae2:certus_quartz_hoe, ae2:certus_quartz_shovel, ae2:certus_quartz_pickaxe, ae2:certus_quartz_sword + # + # Default: [ + S:ae2_certus_quartz_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_hoe + # + # Default: [ + S:create_sa_copper_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:vampire_blade + # + # Default: [ + S:VAMPIRE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:ghost_pirat_cutlass + # + # Default: [ + S:rats_ghost_pirat_cutlass < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:pearlescent_axe + # + # Default: [ + S:unusualend_pearlescent_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:feral_bagh_nakhs + # + # Default: [ + S:rats_feral_bagh_nakhs < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:prudentium_sword, mysticalagriculture:prudentium_pickaxe, mysticalagriculture:prudentium_shovel, mysticalagriculture:prudentium_axe, mysticalagriculture:prudentium_hoe, mysticalagriculture:prudentium_sickle, mysticalagriculture:prudentium_scythe + # + # Default: [ + S:PRUDENTIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:zanite_pickaxe, aether:zanite_axe, aether:zanite_shovel, aether:zanite_hoe, aether:zanite_sword + # + # Default: [ + S:ZANITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:ancient_sword + # + # Default: [ + S:unusualend_ancient_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:tertium_sword, mysticalagriculture:tertium_pickaxe, mysticalagriculture:tertium_shovel, mysticalagriculture:tertium_axe, mysticalagriculture:tertium_hoe, mysticalagriculture:tertium_sickle, mysticalagriculture:tertium_scythe + # + # Default: [ + S:TERTIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplycataclysm:cursium_longsword, simplycataclysm:cursium_twinblade, simplycataclysm:cursium_rapier, simplycataclysm:cursium_katana, simplycataclysm:cursium_sai, simplycataclysm:cursium_spear, simplycataclysm:cursium_glaive, simplycataclysm:cursium_warglaive, simplycataclysm:cursium_cutlass, simplycataclysm:cursium_claymore, simplycataclysm:cursium_greathammer, simplycataclysm:cursium_greataxe, simplycataclysm:cursium_chakram, simplycataclysm:cursium_scythe, simplycataclysm:cursium_halberd + # + # Default: [ + S:simplycataclysm_cursium_longsword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:magehunter + # + # Default: [ + S:irons_spellbooks_magehunter < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_irradiated:uranium_pickaxe + # + # Default: [ + S:create_irradiated_uranium_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplycataclysm:ignitium_longsword, simplycataclysm:ignitium_twinblade, simplycataclysm:ignitium_rapier, simplycataclysm:ignitium_katana, simplycataclysm:ignitium_sai, simplycataclysm:ignitium_spear, simplycataclysm:ignitium_glaive, simplycataclysm:ignitium_warglaive, simplycataclysm:ignitium_cutlass, simplycataclysm:ignitium_claymore, simplycataclysm:ignitium_greathammer, simplycataclysm:ignitium_greataxe, simplycataclysm:ignitium_chakram, simplycataclysm:ignitium_scythe, simplycataclysm:ignitium_halberd + # + # Default: [ + S:simplycataclysm_ignitium_longsword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:warped_spear + # + # Default: [ + S:unusualend_warped_spear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:poisoned_chakra + # + # Default: [ + S:aquamirae_poisoned_chakra < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:ancien_club + # + # Default: [ + S:wrd_ancien_club < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:twin_soul_steel_cleaver + # + # Default: [ + S:extra_sins_twin_soul_steel_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonbone_sword, iceandfire:dragonbone_shovel, iceandfire:dragonbone_pickaxe, iceandfire:dragonbone_axe, iceandfire:dragonbone_hoe + # + # Default: [ + S:iceandfire_dragonbone_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: occultism:infused_pickaxe + # + # Default: [ + S:SPIRIT_ATTUNED_GEM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_axe + # + # Default: [ + S:create_sa_brass_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_hoe + # + # Default: [ + S:create_sa_brass_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: draconicevolution:wyvern_shovel, draconicevolution:wyvern_hoe, draconicevolution:wyvern_pickaxe, draconicevolution:wyvern_axe, draconicevolution:wyvern_sword + # + # Default: [ + S:draconicevolution_wyvern_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_claymore + # + # Default: [ + S:extra_sins_osseous_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:sickle_of_struggle + # + # Default: [ + S:sons_of_sins_sickle_of_struggle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:big_soul_steel_sickle + # + # Default: [ + S:extra_sins_big_soul_steel_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: malum:tyrving + # + # Default: [ + S:TYRVING < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:knightmetal_sword, twilightforest:knightmetal_pickaxe, twilightforest:knightmetal_axe + # + # Default: [ + S:twilightforest_knightmetal_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_irradiated:uranium_sword + # + # Default: [ + S:create_irradiated_uranium_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_axe + # + # Default: [ + S:create_sa_copper_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonbone_sword_lightning + # + # Default: [ + S:iceandfire_dragonbone_sword_lightning < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ae2:nether_quartz_axe, ae2:nether_quartz_hoe, ae2:nether_quartz_shovel, ae2:nether_quartz_pickaxe, ae2:nether_quartz_sword + # + # Default: [ + S:ae2_nether_quartz_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:stone_sword, minecraft:stone_shovel, minecraft:stone_pickaxe, minecraft:stone_axe, minecraft:stone_hoe, cataclysm:athame, refurbished_furniture:spatula, energizedpower:stone_hammer, cb_microblock:stone_saw, mowziesmobs:spear, mowziesmobs:naga_fang_dagger, mowziesmobs:earthrend_gauntlet, mowziesmobs:sculptor_staff, aquaculture:stone_fillet_knife, actuallyadditions:stone_aiot, projectred_exploration:stone_sickle, forbidden_arcanus:stone_blacksmith_gavel, chiselsandbits:chisel_stone + # + # Default: [ + S:STONE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:iceandfire/myrmex_desert/longsword, integrated_simply_swords:iceandfire/myrmex_desert/twinblade, integrated_simply_swords:iceandfire/myrmex_desert/rapier, integrated_simply_swords:iceandfire/myrmex_desert/katana, integrated_simply_swords:iceandfire/myrmex_desert/sai, integrated_simply_swords:iceandfire/myrmex_desert/spear, integrated_simply_swords:iceandfire/myrmex_desert/glaive, integrated_simply_swords:iceandfire/myrmex_desert/warglaive, integrated_simply_swords:iceandfire/myrmex_desert/cutlass, integrated_simply_swords:iceandfire/myrmex_desert/claymore, integrated_simply_swords:iceandfire/myrmex_desert/greathammer, integrated_simply_swords:iceandfire/myrmex_desert/greataxe, integrated_simply_swords:iceandfire/myrmex_desert/chakram, integrated_simply_swords:iceandfire/myrmex_desert/scythe, integrated_simply_swords:iceandfire/myrmex_desert/halberd + # + # Default: [ + S:MYRMEX_DESERT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:soul_steel_surgical_saw + # + # Default: [ + S:extra_sins_soul_steel_surgical_saw < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: malum:soul_stained_steel_scythe, malum:soul_stained_steel_sword, malum:soul_stained_steel_pickaxe, malum:soul_stained_steel_axe, malum:soul_stained_steel_shovel, malum:soul_stained_steel_hoe, malum:soul_stained_steel_knife + # + # Default: [ + S:SOUL_STAINED_STEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:ice_sword + # + # Default: [ + S:wrd_ice_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:experience_shovel + # + # Default: [ + S:create_sa_experience_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:aquite_sword, blue_skies:aquite_pickaxe, blue_skies:aquite_axe, blue_skies:aquite_shovel, blue_skies:aquite_hoe + # + # Default: [ + S:AQUITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_shovel + # + # Default: [ + S:wrd_corrupted_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:ash_miner_staff + # + # Default: [ + S:extra_sins_ash_miner_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:iron_sword, minecraft:iron_shovel, minecraft:iron_pickaxe, minecraft:iron_axe, minecraft:iron_hoe, occultism:butcher_knife, doggytalents:sussy_sickle, refurbished_furniture:knife, endermanoverhaul:corrupted_blade, energizedpower:iron_hammer, energizedpower:cutter, cb_microblock:iron_saw, mowziesmobs:wrought_axe, alexsmobs:skelewag_sword, alexsmobs:ghostly_pickaxe, alexsmobs:tendon_whip, railcraft:iron_tunnel_bore_head, railcraft:iron_spike_maul, railcraft:iron_crowbar, aquaculture:iron_fillet_knife, farmersdelight:iron_knife, actuallyadditions:iron_aiot, sosorgans:soulium_dagger, farm_and_charm:pitchfork, bakery:bread_knife, simplyswords:iron_longsword, simplyswords:iron_twinblade, simplyswords:iron_rapier, simplyswords:iron_katana, simplyswords:iron_sai, simplyswords:iron_spear, simplyswords:iron_glaive, simplyswords:iron_warglaive, simplyswords:iron_cutlass, simplyswords:iron_claymore, simplyswords:iron_greathammer, simplyswords:iron_greataxe, simplyswords:iron_chakram, simplyswords:iron_scythe, simplyswords:iron_halberd, simplymore:iron_great_katana, simplymore:iron_grandsword, simplymore:iron_backhand_blade, simplymore:iron_lance, simplymore:iron_khopesh, simplymore:iron_dagger, simplymore:iron_pernach, simplymore:iron_quarterstaff, simplymore:iron_great_spear, simplymore:iron_deer_horns, projectred_exploration:iron_sickle, mahoutsukai:caliburn, mahoutsukai:clarent, mahoutsukai:morgan, mahoutsukai:rule_breaker, forbidden_arcanus:iron_blacksmith_gavel, nethersdelight:iron_machete, malum:crude_scythe, malum:creative_scythe, chiselsandbits:chisel_iron + # + # Default: [ + S:IRON < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sculk_shovel + # + # Default: [ + S:extra_sins_osseous_sculk_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: naturesaura:sky_pickaxe, naturesaura:sky_axe, naturesaura:sky_shovel, naturesaura:sky_hoe, naturesaura:sky_sword + # + # Default: [ + S:SKY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:fin_cutter + # + # Default: [ + S:aquamirae_fin_cutter < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:bamboo_mace + # + # Default: [ + S:wrd_bamboo_mace < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:osseous_pickaxe + # + # Default: [ + S:sons_of_sins_osseous_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplyswords:brimstone_claymore, simplyswords:watcher_claymore, simplyswords:storms_edge, simplyswords:stormbringer, simplyswords:bramblethorn, simplyswords:watching_warglaive, simplyswords:toxic_longsword, simplyswords:emberblade, simplyswords:hearthflame, simplyswords:soulkeeper, simplyswords:twisted_blade, simplyswords:soulstealer, simplyswords:soulrender, simplyswords:soulpyre, simplyswords:frostfall, simplyswords:molten_edge, simplyswords:livyatan, simplyswords:icewhisper, simplyswords:arcanethyst, simplyswords:thunderbrand, simplyswords:mjolnir, simplyswords:slumbering_lichblade, simplyswords:waking_lichblade, simplyswords:awakened_lichblade, simplyswords:shadowsting, simplyswords:dormant_relic, simplyswords:righteous_relic, simplyswords:tainted_relic, simplyswords:sunfire, simplyswords:harbinger, simplyswords:whisperwind, simplyswords:emberlash, simplyswords:waxweaver, simplyswords:hiveheart, simplyswords:stars_edge, simplyswords:wickpiercer, simplyswords:tempest, simplyswords:flamewind, simplyswords:ribboncleaver, simplyswords:decaying_relic, simplyswords:magiscythe, simplyswords:enigma, simplyswords:magispear, simplyswords:magiblade, simplyswords:caelestis, integrated_simply_swords:alexscaves/polarizer + # + # Default: [ + S:UNIQUE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sculk_twinblade + # + # Default: [ + S:extra_sins_osseous_sculk_twinblade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_axe + # + # Default: [ + S:create_sa_zinc_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:stymphalian_bird_dagger + # + # Default: [ + S:iceandfire_stymphalian_bird_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:sinful_sword + # + # Default: [ + S:sons_of_sins_sinful_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:wooden_sword, minecraft:wooden_shovel, minecraft:wooden_pickaxe, minecraft:wooden_axe, minecraft:wooden_hoe, energizedpower:wooden_hammer, aquaculture:wooden_fillet_knife, actuallyadditions:wooden_aiot, bakery:rolling_pin, simplyswords:sword_on_a_stick, projectred_exploration:wood_sickle, forbidden_arcanus:wooden_blacksmith_gavel + # + # Default: [ + S:WOOD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:blazing_axe + # + # Default: [ + S:create_sa_blazing_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:holy_sword + # + # Default: [ + S:HOLY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:pyrope_sword, blue_skies:pyrope_pickaxe, blue_skies:pyrope_axe, blue_skies:pyrope_shovel, blue_skies:pyrope_hoe + # + # Default: [ + S:PYROPE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:different_sword + # + # Default: [ + S:DIFFERENT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:sinful_knife + # + # Default: [ + S:extra_sins_sinful_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:blazing_cleaver + # + # Default: [ + S:create_sa_blazing_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tinkersdelight:hepatizon_knife + # + # Default: [ + S:tinkersdelight_hepatizon_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:ratlantis_sword, rats:ratlantis_pickaxe, rats:ratlantis_axe, rats:ratlantis_shovel, rats:ratlantis_hoe + # + # Default: [ + S:rats_ratlantis_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:amethyst_rapier + # + # Default: [ + S:irons_spellbooks_amethyst_rapier < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:steeleaf_sword, twilightforest:steeleaf_shovel, twilightforest:steeleaf_pickaxe, twilightforest:steeleaf_axe, twilightforest:steeleaf_hoe + # + # Default: [ + S:twilightforest_steeleaf_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:osseous_sword + # + # Default: [ + S:sons_of_sins_osseous_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: malum:mnemonic_hex_staff + # + # Default: [ + S:HEX_STAFF < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:legionnaire_flamberge + # + # Default: [ + S:irons_spellbooks_legionnaire_flamberge < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:weaponised_torch + # + # Default: [ + S:wrd_weaponised_torch < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_shovel + # + # Default: [ + S:create_sa_copper_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_sword + # + # Default: [ + S:create_sa_zinc_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:osseous_axe + # + # Default: [ + S:sons_of_sins_osseous_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tinkersdelight:manyullyn_knife + # + # Default: [ + S:tinkersdelight_manyullyn_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_sword + # + # Default: [ + S:create_sa_brass_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:long_cleaver + # + # Default: [ + S:extra_sins_long_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:soul_steel_knife + # + # Default: [ + S:extra_sins_soul_steel_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:soulium_dagger, mysticalagriculture:passive_soulium_dagger, mysticalagriculture:hostile_soulium_dagger, mysticalagriculture:creative_soulium_dagger + # + # Default: [ + S:SOULIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:diamond_sword, minecraft:diamond_shovel, minecraft:diamond_pickaxe, minecraft:diamond_axe, minecraft:diamond_hoe, occultism:iesnium_pickaxe, unusualfishmod:depth_scythe, mysticalagriculture:diamond_sickle, mysticalagriculture:diamond_scythe, energizedpower:diamond_hammer, cb_microblock:diamond_saw, railcraft:diamond_tunnel_bore_head, railcraft:diamond_spike_maul, railcraft:diamond_crowbar, railcraft:seasons_crowbar, aquaculture:diamond_fillet_knife, twilightforest:diamond_minotaur_axe, twilightforest:mazebreaker_pickaxe, mob_grinding_utils:null_sword, farmersdelight:diamond_knife, actuallyadditions:diamond_aiot, simplyswords:diamond_longsword, simplyswords:diamond_twinblade, simplyswords:diamond_rapier, simplyswords:diamond_katana, simplyswords:diamond_sai, simplyswords:diamond_spear, simplyswords:diamond_glaive, simplyswords:diamond_warglaive, simplyswords:diamond_cutlass, simplyswords:diamond_claymore, simplyswords:diamond_greathammer, simplyswords:diamond_greataxe, simplyswords:diamond_chakram, simplyswords:diamond_scythe, simplyswords:diamond_halberd, simplymore:diamond_great_katana, simplymore:diamond_grandsword, simplymore:diamond_backhand_blade, simplymore:diamond_lance, simplymore:diamond_khopesh, simplymore:diamond_dagger, simplymore:diamond_pernach, simplymore:diamond_quarterstaff, simplymore:diamond_great_spear, simplymore:diamond_deer_horns, projectred_exploration:diamond_sickle, rftoolsbuilder:superharvestingtool, alexscaves:desolate_dagger, forbidden_arcanus:diamond_blacksmith_gavel, nethersdelight:diamond_machete, chiselsandbits:chisel_diamond + # + # Default: [ + S:DIAMOND < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forbidden_arcanus:draco_arcanus_sword, forbidden_arcanus:draco_arcanus_shovel, forbidden_arcanus:draco_arcanus_pickaxe, forbidden_arcanus:draco_arcanus_axe, forbidden_arcanus:draco_arcanus_hoe + # + # Default: [ + S:DRACO_ARCANUS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:flesh_twinblade + # + # Default: [ + S:extra_sins_flesh_twinblade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tinkersdelight:amethyst_bronze_knife + # + # Default: [ + S:tinkersdelight_amethyst_bronze_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:experience_axe + # + # Default: [ + S:create_sa_experience_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:awakened_supremium_sword, mysticalagriculture:awakened_supremium_pickaxe, mysticalagriculture:awakened_supremium_shovel, mysticalagriculture:awakened_supremium_axe, mysticalagriculture:awakened_supremium_hoe, mysticalagriculture:awakened_supremium_sickle, mysticalagriculture:awakened_supremium_scythe + # + # Default: [ + S:AWAKENED_SUPREMIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:charoite_sword, blue_skies:charoite_pickaxe, blue_skies:charoite_axe, blue_skies:charoite_shovel, blue_skies:charoite_hoe + # + # Default: [ + S:CHAROITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:glass_pickaxe + # + # Default: [ + S:botania_glass_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sculk_pickaxe + # + # Default: [ + S:extra_sins_osseous_sculk_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:flesh_shovel + # + # Default: [ + S:sons_of_sins_flesh_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tinkersdelight:slimesteel_knife + # + # Default: [ + S:tinkersdelight_slimesteel_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ae2:fluix_axe, ae2:fluix_hoe, ae2:fluix_shovel, ae2:fluix_pickaxe, ae2:fluix_sword + # + # Default: [ + S:ae2_fluix_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:pearlescent_pickaxe + # + # Default: [ + S:unusualend_pearlescent_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: draconicevolution:draconic_shovel, draconicevolution:draconic_hoe, draconicevolution:draconic_pickaxe, draconicevolution:draconic_axe, draconicevolution:draconic_sword, draconicevolution:draconic_staff + # + # Default: [ + S:draconicevolution_draconic_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:forlorn_scythe + # + # Default: [ + S:LOST_SOUL_DURABLE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:giant_pickaxe, twilightforest:giant_sword + # + # Default: [ + S:twilightforest_giant_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:ice_sword + # + # Default: [ + S:twilightforest_ice_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:twin_soul_steel_sickle + # + # Default: [ + S:extra_sins_twin_soul_steel_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:soul_steel_cleaver + # + # Default: [ + S:extra_sins_soul_steel_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonsteel_fire_sword, iceandfire:dragonsteel_fire_pickaxe, iceandfire:dragonsteel_fire_axe, iceandfire:dragonsteel_fire_shovel, iceandfire:dragonsteel_fire_hoe + # + # Default: [ + S:iceandfire_dragonsteel_fire_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:flesh_pickaxe + # + # Default: [ + S:sons_of_sins_flesh_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:iceandfire/myrmex_jungle/longsword, integrated_simply_swords:iceandfire/myrmex_jungle/twinblade, integrated_simply_swords:iceandfire/myrmex_jungle/rapier, integrated_simply_swords:iceandfire/myrmex_jungle/katana, integrated_simply_swords:iceandfire/myrmex_jungle/sai, integrated_simply_swords:iceandfire/myrmex_jungle/spear, integrated_simply_swords:iceandfire/myrmex_jungle/glaive, integrated_simply_swords:iceandfire/myrmex_jungle/warglaive, integrated_simply_swords:iceandfire/myrmex_jungle/cutlass, integrated_simply_swords:iceandfire/myrmex_jungle/claymore, integrated_simply_swords:iceandfire/myrmex_jungle/greathammer, integrated_simply_swords:iceandfire/myrmex_jungle/greataxe, integrated_simply_swords:iceandfire/myrmex_jungle/chakram, integrated_simply_swords:iceandfire/myrmex_jungle/scythe, integrated_simply_swords:iceandfire/myrmex_jungle/halberd + # + # Default: [ + S:MYRMEX_JUNGLE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether_redux:veridium_pickaxe, aether_redux:veridium_axe, aether_redux:veridium_shovel, aether_redux:veridium_hoe, aether_redux:veridium_sword + # + # Default: [ + S:VERIDIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:valkyrie_pickaxe, aether:valkyrie_axe, aether:valkyrie_shovel, aether:valkyrie_hoe, aether:valkyrie_lance + # + # Default: [ + S:VALKYRIE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:sinful_hoe + # + # Default: [ + S:sons_of_sins_sinful_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:iceandfire/dragonsteel_ice/longsword, integrated_simply_swords:iceandfire/dragonsteel_ice/twinblade, integrated_simply_swords:iceandfire/dragonsteel_ice/rapier, integrated_simply_swords:iceandfire/dragonsteel_ice/katana, integrated_simply_swords:iceandfire/dragonsteel_ice/sai, integrated_simply_swords:iceandfire/dragonsteel_ice/spear, integrated_simply_swords:iceandfire/dragonsteel_ice/glaive, integrated_simply_swords:iceandfire/dragonsteel_ice/warglaive, integrated_simply_swords:iceandfire/dragonsteel_ice/cutlass, integrated_simply_swords:iceandfire/dragonsteel_ice/claymore, integrated_simply_swords:iceandfire/dragonsteel_ice/greathammer, integrated_simply_swords:iceandfire/dragonsteel_ice/greataxe, integrated_simply_swords:iceandfire/dragonsteel_ice/chakram, integrated_simply_swords:iceandfire/dragonsteel_ice/scythe, integrated_simply_swords:iceandfire/dragonsteel_ice/halberd + # + # Default: [ + S:DRAGONSTEEL_ICE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:excalibur + # + # Default: [ + S:ECHO_SHARD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:bloodthirster, soulsweapons:darkin_blade + # + # Default: [ + S:CRIMSON_INGOT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: naturesaura:depth_pickaxe, naturesaura:depth_axe, naturesaura:depth_shovel, naturesaura:depth_hoe, naturesaura:depth_sword + # + # Default: [ + S:DEPTH < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:sinful_twinblade + # + # Default: [ + S:extra_sins_sinful_twinblade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:copper_sword, iceandfire:copper_shovel, iceandfire:copper_pickaxe, iceandfire:copper_axe, iceandfire:copper_hoe + # + # Default: [ + S:iceandfire_copper_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm:khopesh, simplycataclysm:ancient_metal_longsword, simplycataclysm:ancient_metal_twinblade, simplycataclysm:ancient_metal_rapier, simplycataclysm:ancient_metal_katana, simplycataclysm:ancient_metal_sai, simplycataclysm:ancient_metal_spear, simplycataclysm:ancient_metal_glaive, simplycataclysm:ancient_metal_warglaive, simplycataclysm:ancient_metal_cutlass, simplycataclysm:ancient_metal_claymore, simplycataclysm:ancient_metal_greathammer, simplycataclysm:ancient_metal_greataxe, simplycataclysm:ancient_metal_chakram, simplycataclysm:ancient_metal_scythe, simplycataclysm:ancient_metal_halberd + # + # Default: [ + S:cataclysm_khopesh < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:golden_sword, minecraft:golden_shovel, minecraft:golden_pickaxe, minecraft:golden_axe, minecraft:golden_hoe, reliquary:mercy_cross, reliquary:magicbane, energizedpower:golden_hammer, aquaculture:gold_fillet_knife, twilightforest:gold_minotaur_axe, farmersdelight:golden_knife, actuallyadditions:gold_aiot, simplyswords:gold_longsword, simplyswords:gold_twinblade, simplyswords:gold_rapier, simplyswords:gold_katana, simplyswords:gold_sai, simplyswords:gold_spear, simplyswords:gold_glaive, simplyswords:gold_warglaive, simplyswords:gold_cutlass, simplyswords:gold_claymore, simplyswords:gold_greathammer, simplyswords:gold_greataxe, simplyswords:gold_chakram, simplyswords:gold_scythe, simplyswords:gold_halberd, simplymore:gold_great_katana, simplymore:gold_grandsword, simplymore:gold_backhand_blade, simplymore:gold_lance, simplymore:gold_khopesh, simplymore:gold_dagger, simplymore:gold_pernach, simplymore:gold_quarterstaff, simplymore:gold_great_spear, simplymore:gold_deer_horns, projectred_exploration:gold_saw, projectred_exploration:gold_sickle, forbidden_arcanus:golden_blacksmith_gavel, nethersdelight:golden_machete, chiselsandbits:chisel_gold + # + # Default: [ + S:GOLD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:pearlescent_shovel + # + # Default: [ + S:unusualend_pearlescent_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:infused_arc_sword + # + # Default: [ + S:INFUSED < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:iceandfire/dragonbone_lightning/longsword, integrated_simply_swords:iceandfire/dragonbone_lightning/twinblade, integrated_simply_swords:iceandfire/dragonbone_lightning/rapier, integrated_simply_swords:iceandfire/dragonbone_lightning/katana, integrated_simply_swords:iceandfire/dragonbone_lightning/sai, integrated_simply_swords:iceandfire/dragonbone_lightning/spear, integrated_simply_swords:iceandfire/dragonbone_lightning/glaive, integrated_simply_swords:iceandfire/dragonbone_lightning/warglaive, integrated_simply_swords:iceandfire/dragonbone_lightning/cutlass, integrated_simply_swords:iceandfire/dragonbone_lightning/claymore, integrated_simply_swords:iceandfire/dragonbone_lightning/greathammer, integrated_simply_swords:iceandfire/dragonbone_lightning/greataxe, integrated_simply_swords:iceandfire/dragonbone_lightning/chakram, integrated_simply_swords:iceandfire/dragonbone_lightning/scythe, integrated_simply_swords:iceandfire/dragonbone_lightning/halberd + # + # Default: [ + S:DRAGONBONE_LIGHTNING < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:whirligig_sawblade, soulsweapons:guts_sword, soulsweapons:nightfall, soulsweapons:kirkhammer, soulsweapons:silver_sword, soulsweapons:holy_greatsword, soulsweapons:simons_blade, soulsweapons:tonitrus, soulsweapons:bloodlust + # + # Default: [ + S:IRON_BLOCK < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:iceandfire/dragonbone_ice/longsword, integrated_simply_swords:iceandfire/dragonbone_ice/twinblade, integrated_simply_swords:iceandfire/dragonbone_ice/rapier, integrated_simply_swords:iceandfire/dragonbone_ice/katana, integrated_simply_swords:iceandfire/dragonbone_ice/sai, integrated_simply_swords:iceandfire/dragonbone_ice/spear, integrated_simply_swords:iceandfire/dragonbone_ice/glaive, integrated_simply_swords:iceandfire/dragonbone_ice/warglaive, integrated_simply_swords:iceandfire/dragonbone_ice/cutlass, integrated_simply_swords:iceandfire/dragonbone_ice/claymore, integrated_simply_swords:iceandfire/dragonbone_ice/greathammer, integrated_simply_swords:iceandfire/dragonbone_ice/greataxe, integrated_simply_swords:iceandfire/dragonbone_ice/chakram, integrated_simply_swords:iceandfire/dragonbone_ice/scythe, integrated_simply_swords:iceandfire/dragonbone_ice/halberd + # + # Default: [ + S:DRAGONBONE_ICE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:flaming_sword + # + # Default: [ + S:FLAMING < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:terrible_sword + # + # Default: [ + S:aquamirae_terrible_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:debug_sword + # + # Default: [ + S:DEVELOPER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:terra_pick, botania:terra_axe, botania:terra_sword, botania:star_sword, botania:thunder_sword, mythicbotany:alfsteel_sword, mythicbotany:alfsteel_pick, mythicbotany:alfsteel_axe + # + # Default: [ + S:TERRASTEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: malum:weight_of_worlds, malum:edge_of_deliverance, malum:erosion_scepter + # + # Default: [ + S:MALIGNANT_ALLOY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:claymore + # + # Default: [ + S:irons_spellbooks_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mobs_of_sins:tentacle_sickle_of_struggle + # + # Default: [ + S:mobs_of_sins_tentacle_sickle_of_struggle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create:cardboard_sword + # + # Default: [ + S:CARDBOARD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: createdieselgenerators:hammer + # + # Default: [ + S:createdieselgenerators_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:blazing_pickaxe + # + # Default: [ + S:create_sa_blazing_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sculk_claymore + # + # Default: [ + S:extra_sins_osseous_sculk_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sculk_axe + # + # Default: [ + S:extra_sins_osseous_sculk_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagradditions:supremium_paxel + # + # Default: [ + S:SUPREMIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dread_knight_sword + # + # Default: [ + S:iceandfire_dread_knight_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tinkersdelight:rose_gold_knife + # + # Default: [ + S:tinkersdelight_rose_gold_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:keeper_flamberge + # + # Default: [ + S:irons_spellbooks_keeper_flamberge < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:turquoise_stone_sword, blue_skies:turquoise_stone_pickaxe, blue_skies:turquoise_stone_axe, blue_skies:turquoise_stone_shovel, blue_skies:turquoise_stone_hoe + # + # Default: [ + S:TURQUOISE_STONE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:butcher_cleaver + # + # Default: [ + S:sons_of_sins_butcher_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:skyroot_pickaxe, aether:skyroot_axe, aether:skyroot_shovel, aether:skyroot_hoe, aether:skyroot_sword + # + # Default: [ + S:SKYROOT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplycataclysm:witherite_longsword, simplycataclysm:witherite_twinblade, simplycataclysm:witherite_rapier, simplycataclysm:witherite_katana, simplycataclysm:witherite_sai, simplycataclysm:witherite_spear, simplycataclysm:witherite_glaive, simplycataclysm:witherite_warglaive, simplycataclysm:witherite_cutlass, simplycataclysm:witherite_claymore, simplycataclysm:witherite_greathammer, simplycataclysm:witherite_greataxe, simplycataclysm:witherite_chakram, simplycataclysm:witherite_scythe, simplycataclysm:witherite_halberd + # + # Default: [ + S:simplycataclysm_witherite_longsword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagradditions:imperium_paxel + # + # Default: [ + S:IMPERIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:gravitite_pickaxe, aether:gravitite_axe, aether:gravitite_shovel, aether:gravitite_hoe, aether:gravitite_sword + # + # Default: [ + S:GRAVITITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:ancient_cutlass + # + # Default: [ + S:wrd_ancient_cutlass < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:horizonite_sword, blue_skies:horizonite_pickaxe, blue_skies:horizonite_axe, blue_skies:horizonite_shovel, blue_skies:horizonite_hoe + # + # Default: [ + S:HORIZONITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ender_sins:ancient_sickle + # + # Default: [ + S:ender_sins_ancient_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_staff + # + # Default: [ + S:extra_sins_osseous_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:coral_lance + # + # Default: [ + S:aquamirae_coral_lance < + > + S:legendary_monsters_anchor_handle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:stellothorn + # + # Default: [ + S:traveloptics_stellothorn < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:charged_sands_level_one + # + # Default: [ + S:traveloptics_charged_sands_level_one < + > + S:legendary_monsters_monstrous_anchor < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:the_obliterator_level_two + # + # Default: [ + S:traveloptics_the_obliterator_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:the_obliterator_level_one + # + # Default: [ + S:traveloptics_the_obliterator_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:infernal_devastator_level_three + # + # Default: [ + S:traveloptics_infernal_devastator_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:harbingers_wrath_level_one + # + # Default: [ + S:traveloptics_harbingers_wrath_level_one < + > + S:legendary_monsters_enderitium_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railcraft:steel_sword, railcraft:steel_shovel, railcraft:steel_pickaxe, railcraft:steel_axe, railcraft:steel_hoe, railcraft:steel_tunnel_bore_head, railcraft:steel_spike_maul, railcraft:steel_crowbar + # + # Default: [ + S:STEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:mechanized_wraithblade_level_one + # + # Default: [ + S:traveloptics_mechanized_wraithblade_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:thorns_of_oblivion_level_one + # + # Default: [ + S:traveloptics_thorns_of_oblivion_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:harbingers_wrath_level_two + # + # Default: [ + S:traveloptics_harbingers_wrath_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archeological:rusty_shovel + # + # Default: [ + S:archeological_rusty_shovel < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:voidstrike_reaper_level_two + # + # Default: [ + S:traveloptics_voidstrike_reaper_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:cursed_wraithblade_level_one + # + # Default: [ + S:traveloptics_cursed_wraithblade_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:mechanized_wraithblade_level_two + # + # Default: [ + S:traveloptics_mechanized_wraithblade_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:infernal_devastator_level_one + # + # Default: [ + S:traveloptics_infernal_devastator_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:thorns_of_oblivion_level_three + # + # Default: [ + S:traveloptics_thorns_of_oblivion_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:galenic_polarizer_level_two + # + # Default: [ + S:traveloptics_galenic_polarizer_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:scourge_of_the_sands_level_two + # + # Default: [ + S:traveloptics_scourge_of_the_sands_level_two < + > + S:legendary_monsters_soul_great_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: bloodmagic:soulsword, bloodmagic:soulaxe, bloodmagic:soulpickaxe, bloodmagic:soulshovel, bloodmagic:soulscythe + # + # Default: [ + S:SENTIENT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:cursed_wraithblade_level_two + # + # Default: [ + S:traveloptics_cursed_wraithblade_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualprehistory:warpick, unusualprehistory:primal_macuahuitl + # + # Default: [ + S:SHELL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:infernal_devastator_level_two + # + # Default: [ + S:traveloptics_infernal_devastator_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:galenic_polarizer + # + # Default: [ + S:traveloptics_galenic_polarizer < + > + S:legendary_monsters_chorus_blade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:thorns_of_oblivion_level_two + # + # Default: [ + S:traveloptics_thorns_of_oblivion_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archeological:rusty_axe + # + # Default: [ + S:archeological_rusty_axe < + > + S:legendary_monsters_the_tesseract < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:abyssal_tidecaller_level_three + # + # Default: [ + S:traveloptics_abyssal_tidecaller_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:stellothorn_level_three + # + # Default: [ + S:traveloptics_stellothorn_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archeological:rusty_pickaxe + # + # Default: [ + S:archeological_rusty_pickaxe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:charged_sands_level_three + # + # Default: [ + S:traveloptics_charged_sands_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:galenic_polarizer_level_three + # + # Default: [ + S:traveloptics_galenic_polarizer_level_three < + > + S:legendary_monsters_mossy_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:mechanized_wraithblade_level_three + # + # Default: [ + S:traveloptics_mechanized_wraithblade_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:gauntlet_of_extinction_level_three + # + # Default: [ + S:traveloptics_gauntlet_of_extinction_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:the_obliterator_level_three + # + # Default: [ + S:traveloptics_the_obliterator_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:thorns_of_oblivion + # + # Default: [ + S:traveloptics_thorns_of_oblivion < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:galenic_polarizer_level_one + # + # Default: [ + S:traveloptics_galenic_polarizer_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:scourge_of_the_sands_level_three + # + # Default: [ + S:traveloptics_scourge_of_the_sands_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:stellothorn_level_one + # + # Default: [ + S:traveloptics_stellothorn_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:abyssal_tidecaller_level_one + # + # Default: [ + S:traveloptics_abyssal_tidecaller_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:mechanized_wraithblade + # + # Default: [ + S:traveloptics_mechanized_wraithblade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: similar_prehistory:hatsune_piku + # + # Default: [ + S:similar_prehistory_hatsune_piku < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:flames_of_eldritch_level_three + # + # Default: [ + S:traveloptics_flames_of_eldritch_level_three < + > + S:legendary_monsters_knights_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:scourge_of_the_sands_level_one + # + # Default: [ + S:traveloptics_scourge_of_the_sands_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:harbingers_wrath_level_three + # + # Default: [ + S:traveloptics_harbingers_wrath_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:voidstrike_reaper_level_three + # + # Default: [ + S:traveloptics_voidstrike_reaper_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archeological:rusty_hoe + # + # Default: [ + S:archeological_rusty_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:gauntlet_of_extinction_level_one + # + # Default: [ + S:traveloptics_gauntlet_of_extinction_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:flames_of_eldritch_level_one + # + # Default: [ + S:traveloptics_flames_of_eldritch_level_one < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:the_obliterator + # + # Default: [ + S:traveloptics_the_obliterator < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:gauntlet_of_extinction + # + # Default: [ + S:traveloptics_gauntlet_of_extinction < + > + S:legendary_monsters_dinosaur_bone_club < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:stellothorn_level_two + # + # Default: [ + S:traveloptics_stellothorn_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:cursed_wraithblade_level_three + # + # Default: [ + S:traveloptics_cursed_wraithblade_level_three < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:flames_of_eldritch_level_two + # + # Default: [ + S:traveloptics_flames_of_eldritch_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:scourge_of_the_sands + # + # Default: [ + S:traveloptics_scourge_of_the_sands < + > + S:legendary_monsters_void_sword < + > + S:legendary_monsters_sharp_battle_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualfishmod:ripsaw + # + # Default: [ + S:RIPPER_SAW < + > + S:legendary_monsters_sharp_sai < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:gauntlet_of_extinction_level_two + # + # Default: [ + S:traveloptics_gauntlet_of_extinction_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railcraft:bronze_tunnel_bore_head + # + # Default: [ + S:BRONZE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:abyssal_tidecaller_level_two + # + # Default: [ + S:traveloptics_abyssal_tidecaller_level_two < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:charged_sands_level_two + # + # Default: [ + S:traveloptics_charged_sands_level_two < + > + S:legendary_monsters_fiery_jaw < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archeological:rusty_sword + # + # Default: [ + S:archeological_rusty_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:voidstrike_reaper_level_one + # + # Default: [ + S:traveloptics_voidstrike_reaper_level_one < + > + S:legendary_monsters_the_great_frost < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:harbingers_wrath + # + # Default: [ + S:traveloptics_harbingers_wrath < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:infernal_devastator + # + # Default: [ + S:traveloptics_infernal_devastator < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:voidstrike_reaper + # + # Default: [ + S:traveloptics_voidstrike_reaper < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:charged_sands + # + # Default: [ + S:traveloptics_charged_sands < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:abyssal_tidecaller + # + # Default: [ + S:traveloptics_abyssal_tidecaller < + > + S:legendary_monsters_axe_of_lightning < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualprehistory:handmade_spear, unusualprehistory:handmade_battleaxe, unusualprehistory:handmade_club + # + # Default: [ + S:HANDMADE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:cursed_wraithblade + # + # Default: [ + S:traveloptics_cursed_wraithblade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ifeu:dragon_star_pickaxe, ifeu:dragon_star_axe, ifeu:dragon_star_hoe, ifeu:dragon_star_shovel, ifeu:dragon_star_sword + # + # Default: [ + S:DRAGON_STAR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:flames_of_eldritch + # + # Default: [ + S:traveloptics_flames_of_eldritch < + > + S:legendary_monsters_golden_halbert < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eidolon:sapping_sword + # + # Default: [ + S:eidolon_sapping_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eidolon:reversal_pick + # + # Default: [ + S:eidolon_reversal_pick < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eidolon:reaper_scythe, eidolon:cleaving_axe, eidolon:athame + # + # Default: [ + S:eidolon_reaper_scythe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eidolon:deathbringer_scythe + # + # Default: [ + S:eidolon_deathbringer_scythe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eidolon:silver_sword, eidolon:silver_pickaxe, eidolon:silver_axe, eidolon:silver_shovel, eidolon:silver_hoe + # + # Default: [ + S:eidolon_silver_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: collectors_caravan:amber_hoe + # + # Default: [ + S:collectors_caravan_amber_hoe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:excalibur + # + # Default: [ + S:EXCALIBUR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:provocation + # + # Default: [ + S:PROVOCATION < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:the_devourer + # + # Default: [ + S:THE_DEVOURER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_things_and_misc:zinc_knife + # + # Default: [ + S:create_things_and_misc_zinc_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:umbranova + # + # Default: [ + S:UMBRANOVA < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:ionic_splitter + # + # Default: [ + S:IONIC_SPLITTER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplymore:runic_great_katana, simplymore:runic_grandsword, simplymore:runic_backhand_blade, simplymore:runic_lance, simplymore:runic_khopesh, simplymore:runic_dagger, simplymore:runic_pernach, simplymore:runic_quarterstaff, simplymore:runic_great_spear, simplymore:runic_deer_horns + # + # Default: [ + S:SIMPLY_MORE_RUNIC < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:fireblossom_rapier + # + # Default: [ + S:FIREBLOSSOM_RAPIER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:ravens_bane + # + # Default: [ + S:RAVENS_BANE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplymore:great_slither, simplymore:molten_flare, simplymore:grandfrost, simplymore:glimmerstep, simplymore:the_blood_harvester, simplymore:myrmedge, simplymore:black_pearl, simplymore:the_vessel_breach, simplymore:blade_of_the_grotesque, simplymore:vipers_call, simplymore:timekeeper, simplymore:matterbane, simplymore:smouldering_ruin, simplymore:stasis, simplymore:tidebreaker, simplymore:ruyi_jingu_bang, simplymore:ruptured_idol, simplymore:ascended_idol, simplymore:tarnished_idol, simplymore:holylight, simplymore:darksent, simplymore:boas_fang, simplymore:earthshatter, simplymore:soul_foreseer, simplymore:serpentine_valour, simplymore:lustrous_moxie, simplymore:brassturn, simplymore:cindergorge, simplymore:deaths_eyrie, simplymore:perforiscus, simplymore:revvengine, simplymore:exedrill, simplymore:culterex, simplymore:mimicry_longsword, simplymore:mimicry_twinblade, simplymore:mimicry_rapier, simplymore:mimicry_katana, simplymore:mimicry_spear, simplymore:mimicry_sai, simplymore:mimicry_glaive, simplymore:mimicry_warglaive, simplymore:mimicry_cutlass, simplymore:mimicry_claymore, simplymore:mimicry_greathammer, simplymore:mimicry_greataxe, simplymore:mimicry_chakram, simplymore:mimicry_scythe, simplymore:mimicry_halberd, simplymore:mimicry_great_katana, simplymore:mimicry_grandsword, simplymore:mimicry_backhand_blade, simplymore:mimicry_lance, simplymore:mimicry_khopesh, simplymore:mimicry_dagger, simplymore:mimicry_pernach, simplymore:mimicry_quarterstaff, simplymore:mimicry_great_spear, simplymore:mimicry_deer_horns + # + # Default: [ + S:SIMPLY_MORE_UNIQUE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplymore:jester_penetrate, simplymore:the_pan + # + # Default: [ + S:SIMPLY_MORE_JOKE_UNIQUE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_things_and_misc:brass_knife + # + # Default: [ + S:create_things_and_misc_brass_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:legionnaire_warlock_axe + # + # Default: [ + S:PYRIUM_TIER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:o_fortuna + # + # Default: [ + S:O_FORTUNA < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:devastator + # + # Default: [ + S:DEVESTATOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:ice_pike + # + # Default: [ + S:ICE_PIKE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:draconic_splitter + # + # Default: [ + S:DRACONIC_SPLITTER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_things_and_misc:copper_knife + # + # Default: [ + S:create_things_and_misc_copper_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:spider_bite_sword + # + # Default: [ + S:born_in_chaos_v1_spider_bite_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:birch_branches + # + # Default: [ + S:born_in_chaos_v1_birch_branches < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:icy_sweetness + # + # Default: [ + S:born_in_chaos_v1_icy_sweetness < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:wood_splitter_axe + # + # Default: [ + S:born_in_chaos_v1_wood_splitter_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:skullbreaker_hammer + # + # Default: [ + S:born_in_chaos_v1_skullbreaker_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:nightmare_scythe + # + # Default: [ + S:born_in_chaos_v1_nightmare_scythe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:trident_hayfork + # + # Default: [ + S:born_in_chaos_v1_trident_hayfork < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:frostbitten_blade + # + # Default: [ + S:born_in_chaos_v1_frostbitten_blade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:intoxicating_dagger + # + # Default: [ + S:born_in_chaos_v1_intoxicating_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:darkwarblade + # + # Default: [ + S:born_in_chaos_v1_darkwarblade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:great_reaper_axe + # + # Default: [ + S:born_in_chaos_v1_great_reaper_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:shell_mace + # + # Default: [ + S:born_in_chaos_v1_shell_mace < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:soulbane + # + # Default: [ + S:born_in_chaos_v1_soulbane < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:carrot_sword + # + # Default: [ + S:born_in_chaos_v1_carrot_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:spiritual_sword + # + # Default: [ + S:born_in_chaos_v1_spiritual_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:sharpened_dark_metal_sword + # + # Default: [ + S:born_in_chaos_v1_sharpened_dark_metal_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:sweet_sword + # + # Default: [ + S:born_in_chaos_v1_sweet_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:soul_cutlass + # + # Default: [ + S:born_in_chaos_v1_soul_cutlass < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:nut_hammer + # + # Default: [ + S:born_in_chaos_v1_nut_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:sweet_axe + # + # Default: [ + S:born_in_chaos_v1_sweet_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:supreme_measure + # + # Default: [ + S:born_in_chaos_v1_supreme_measure < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:dark_ritual_dagger + # + # Default: [ + S:born_in_chaos_v1_dark_ritual_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: integrated_simply_swords:born_in_chaos/dark_metal/longsword, integrated_simply_swords:born_in_chaos/dark_metal/twinblade, integrated_simply_swords:born_in_chaos/dark_metal/rapier, integrated_simply_swords:born_in_chaos/dark_metal/katana, integrated_simply_swords:born_in_chaos/dark_metal/sai, integrated_simply_swords:born_in_chaos/dark_metal/spear, integrated_simply_swords:born_in_chaos/dark_metal/glaive, integrated_simply_swords:born_in_chaos/dark_metal/warglaive, integrated_simply_swords:born_in_chaos/dark_metal/cutlass, integrated_simply_swords:born_in_chaos/dark_metal/claymore, integrated_simply_swords:born_in_chaos/dark_metal/greathammer, integrated_simply_swords:born_in_chaos/dark_metal/greataxe, integrated_simply_swords:born_in_chaos/dark_metal/chakram, integrated_simply_swords:born_in_chaos/dark_metal/scythe, integrated_simply_swords:born_in_chaos/dark_metal/halberd + # + # Default: [ + S:DARK_METAL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquaculture:neptunium_pickaxe, aquaculture:neptunium_shovel, aquaculture:neptunium_axe, aquaculture:neptunium_hoe, aquaculture:neptunium_sword, aquaculture:neptunium_fillet_knife + # + # Default: [ + S:aquaculture_neptunium_pickaxe < + > + S:immersiveengineering_pickaxe_steel < + > + S:cataclysm_brontes < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: allthemodium:alloy_sword, allthemodium:alloy_axe, allthemodium:alloy_pick, allthemodium:alloy_shovel, allthemodium:alloy_paxel + # + # Default: [ + S:allthemodium_alloy_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: allthemodium:vibranium_sword, allthemodium:vibranium_pickaxe, allthemodium:vibranium_axe, allthemodium:vibranium_shovel, allthemodium:vibranium_hoe + # + # Default: [ + S:allthemodium_vibranium_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: allthemodium:allthemodium_sword, allthemodium:allthemodium_pickaxe, allthemodium:allthemodium_axe, allthemodium:allthemodium_shovel, allthemodium:allthemodium_hoe + # + # Default: [ + S:allthemodium_allthemodium_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: allthemodium:unobtainium_sword, allthemodium:unobtainium_pickaxe, allthemodium:unobtainium_axe, allthemodium:unobtainium_shovel, allthemodium:unobtainium_hoe + # + # Default: [ + S:allthemodium_unobtainium_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: projectred_exploration:ruby_axe, projectred_exploration:ruby_pickaxe, projectred_exploration:ruby_shovel, projectred_exploration:ruby_hoe, projectred_exploration:ruby_sword, projectred_exploration:ruby_saw, projectred_exploration:ruby_sickle + # + # Default: [ + S:projectred_exploration_ruby_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: projectred_exploration:athame + # + # Default: [ + S:projectred_exploration_athame < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: projectred_exploration:peridot_axe, projectred_exploration:peridot_pickaxe, projectred_exploration:peridot_shovel, projectred_exploration:peridot_hoe, projectred_exploration:peridot_sword, projectred_exploration:peridot_saw, projectred_exploration:peridot_sickle + # + # Default: [ + S:projectred_exploration_peridot_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: projectred_exploration:sapphire_axe, projectred_exploration:sapphire_pickaxe, projectred_exploration:sapphire_shovel, projectred_exploration:sapphire_hoe, projectred_exploration:sapphire_sword, projectred_exploration:sapphire_saw, projectred_exploration:sapphire_sickle + # + # Default: [ + S:projectred_exploration_sapphire_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: kubejs:sword_opening + # + # Default: [ + S:kubejs_sword_opening < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:devourer + # + # Default: [ + S:extra_sins_devourer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:pseudogiymyakesh + # + # Default: [ + S:extra_sins_pseudogiymyakesh < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:two_handed_forgotten_steel_cleaver + # + # Default: [ + S:extra_sins_two_handed_forgotten_steel_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:forgotten_steel_cleaver + # + # Default: [ + S:extra_sins_forgotten_steel_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:azure_cleaver + # + # Default: [ + S:extra_sins_azure_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:long_forgotten_steel_cleaver + # + # Default: [ + S:extra_sins_long_forgotten_steel_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:two_handed_soul_steel_cleaver + # + # Default: [ + S:extra_sins_two_handed_soul_steel_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_boomerang + # + # Default: [ + S:extra_sins_osseous_boomerang < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:withered_osseous_staff + # + # Default: [ + S:extra_sins_withered_osseous_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:dark_bone_staff + # + # Default: [ + S:extra_sins_dark_bone_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:ethereal_alloy_sword + # + # Default: [ + S:extra_sins_ethereal_alloy_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:ethereal_alloy_axe + # + # Default: [ + S:extra_sins_ethereal_alloy_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:dinosaur_osseous_staff + # + # Default: [ + S:extra_sins_dinosaur_osseous_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:soul_steel_greatsword + # + # Default: [ + S:extra_sins_soul_steel_greatsword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_life_stealer_staff + # + # Default: [ + S:extra_sins_osseous_life_stealer_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:scarlet_cleaver + # + # Default: [ + S:extra_sins_scarlet_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_sinners_ritual_dagger + # + # Default: [ + S:extra_sins_osseous_sinners_ritual_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:frozen_osseous_staff + # + # Default: [ + S:extra_sins_frozen_osseous_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:crimson_cleaver + # + # Default: [ + S:extra_sins_crimson_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:withered_osseous_scythe + # + # Default: [ + S:extra_sins_withered_osseous_scythe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:ethereal_alloy_knife + # + # Default: [ + S:extra_sins_ethereal_alloy_knife < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:fused_osseous_staff + # + # Default: [ + S:extra_sins_fused_osseous_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:osseous_cross + # + # Default: [ + S:extra_sins_osseous_cross < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:ebony_cleaver + # + # Default: [ + S:extra_sins_ebony_cleaver < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:dark_bone_spear + # + # Default: [ + S:extra_sins_dark_bone_spear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:dragon_bone_staff + # + # Default: [ + S:extra_sins_dragon_bone_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: extra_sins:extraterrestrial_cleaver + # + # Default: [ + S:extra_sins_extraterrestrial_cleaver < + > +} + + +armors { + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexscaves:primordial_helmet, alexscaves:primordial_tunic, alexscaves:primordial_pants + # + # Default: [ + S:alexscaves_primordial_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm:bloom_stone_pauldrons + # + # Default: [ + S:CRAB < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:neptune_helmet, aether:neptune_chestplate, aether:neptune_leggings, aether:neptune_boots + # + # Default: [ + S:NEPTUNE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:spirit_twist_helmet + # + # Default: [ + S:unusualend_spirit_twist_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:spectral_leggings + # + # Default: [ + S:unusualend_spectral_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_chestplate + # + # Default: [ + S:create_sa_copper_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:spirit_grim_helmet + # + # Default: [ + S:unusualend_spirit_grim_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:shulker_shell + # + # Default: [ + S:minecraft_shulker_shell < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: naturesaura:sky_helmet, naturesaura:sky_chest, naturesaura:sky_pants, naturesaura:sky_shoes + # + # Default: [ + S:SKY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_leggings + # + # Default: [ + S:create_sa_brass_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_green_helmet, iceandfire:armor_green_chestplate, iceandfire:armor_green_leggings, iceandfire:armor_green_boots + # + # Default: [ + S:iceandfire_armor_green_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_leggings + # + # Default: [ + S:create_sa_copper_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_silver_helmet, iceandfire:armor_silver_chestplate, iceandfire:armor_silver_leggings, iceandfire:armor_silver_boots + # + # Default: [ + S:iceandfire_armor_silver_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ad_astra:space_helmet, ad_astra:space_suit, ad_astra:space_pants, ad_astra:space_boots + # + # Default: [ + S:ad_astra_space_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:engineer_hood, cataclysm_spellbooks:engineer_suit, cataclysm_spellbooks:engineer_leggings, cataclysm_spellbooks:engineer_boots + # + # Default: [ + S:ENGINEER_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:spirit_malice_helmet + # + # Default: [ + S:unusualend_spirit_malice_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_helmet + # + # Default: [ + S:create_sa_zinc_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_exoskeleton_chestplate + # + # Default: [ + S:create_sa_copper_exoskeleton_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tconstruct:slime_boots, tconstruct:slime_leggings, tconstruct:slime_chestplate, tconstruct:slime_helmet + # + # Default: [ + S:tconstruct_slime_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mekanism:jetpack_armored + # + # Default: [ + S:mekanism_jetpack_armored < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_helmet + # + # Default: [ + S:create_sa_brass_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:tide_deepblue_helmet, iceandfire:tide_deepblue_chestplate, iceandfire:tide_deepblue_leggings, iceandfire:tide_deepblue_boots + # + # Default: [ + S:iceandfire_tide_deepblue_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_white_helmet, iceandfire:armor_white_chestplate, iceandfire:armor_white_leggings, iceandfire:armor_white_boots + # + # Default: [ + S:iceandfire_armor_white_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:tide_blue_helmet, iceandfire:tide_blue_chestplate, iceandfire:tide_blue_leggings, iceandfire:tide_blue_boots + # + # Default: [ + S:iceandfire_tide_blue_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_great_hood_helmet + # + # Default: [ + S:wrd_corrupted_great_hood_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tconstruct:plate_helmet, tconstruct:plate_chestplate, tconstruct:plate_leggings, tconstruct:plate_boots + # + # Default: [ + S:tconstruct_plate_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:earplugs + # + # Default: [ + S:iceandfire_earplugs < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:tarantula_hawk_elytra + # + # Default: [ + S:alexsmobs_tarantula_hawk_elytra < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexscaves:hazmat_mask, alexscaves:hazmat_chestplate, alexscaves:hazmat_leggings, alexscaves:hazmat_boots + # + # Default: [ + S:alexscaves_hazmat_mask < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:netherite_jetpack_chestplate + # + # Default: [ + S:create_sa_netherite_jetpack_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:roadrunner_boots + # + # Default: [ + S:alexsmobs_roadrunner_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create:cardboard_helmet, create:cardboard_chestplate, create:cardboard_leggings, create:cardboard_boots + # + # Default: [ + S:CARDBOARD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:valkyrie_helmet, aether:valkyrie_chestplate, aether:valkyrie_leggings, aether:valkyrie_boots + # + # Default: [ + S:VALKYRIE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:paladin_chestplate + # + # Default: [ + S:PALADIN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonsteel_ice_helmet, iceandfire:dragonsteel_ice_chestplate, iceandfire:dragonsteel_ice_leggings, iceandfire:dragonsteel_ice_boots + # + # Default: [ + S:iceandfire_dragonsteel_ice_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:emu_leggings + # + # Default: [ + S:alexsmobs_emu_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: legendarycreatures:straw_hat + # + # Default: [ + S:STRAW < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_boots + # + # Default: [ + S:create_sa_zinc_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_bronze_helmet, iceandfire:armor_bronze_chestplate, iceandfire:armor_bronze_leggings, iceandfire:armor_bronze_boots + # + # Default: [ + S:iceandfire_armor_bronze_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_copper_metal_helmet, iceandfire:armor_copper_metal_chestplate, iceandfire:armor_copper_metal_leggings, iceandfire:armor_copper_metal_boots + # + # Default: [ + S:iceandfire_armor_copper_metal_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:withered_chest + # + # Default: [ + S:WITHERED_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:forlorn_helmet, soulsweapons:forlorn_chestplate, soulsweapons:forlorn_leggings, soulsweapons:forlorn_boots + # + # Default: [ + S:FORLORN_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:cryogenic_ruler_helmet, hazennstuff:cryogenic_ruler_chestplate, hazennstuff:cryogenic_ruler_leggings, hazennstuff:cryogenic_ruler_boots + # + # Default: [ + S:CRYOMANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:ghost_pirat_hat + # + # Default: [ + S:GHOST_HAT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:pyrope_helmet, blue_skies:pyrope_chestplate, blue_skies:pyrope_leggings, blue_skies:pyrope_boots + # + # Default: [ + S:PYROPE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:turtle_helmet + # + # Default: [ + S:TURTLE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:chainmail_helmet, minecraft:chainmail_chestplate, minecraft:chainmail_leggings, minecraft:chainmail_boots, mob_grinding_utils:monocle + # + # Default: [ + S:CHAIN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mekanism:scuba_tank + # + # Default: [ + S:mekanism_scuba_tank < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: thermal:diving_helmet, thermal:diving_chestplate, thermal:diving_leggings, thermal:diving_boots + # + # Default: [ + S:thermal_diving_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:froststalker_helmet + # + # Default: [ + S:alexsmobs_froststalker_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:steeleaf_helmet, twilightforest:steeleaf_chestplate, twilightforest:steeleaf_leggings, twilightforest:steeleaf_boots + # + # Default: [ + S:ARMOR_STEELEAF < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:novelty_hat + # + # Default: [ + S:alexsmobs_novelty_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:abyssal_tiara + # + # Default: [ + S:aquamirae_abyssal_tiara < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:piper_hat + # + # Default: [ + S:PIPER_HAT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:forest_troll_leather_helmet, iceandfire:forest_troll_leather_chestplate, iceandfire:forest_troll_leather_leggings, iceandfire:forest_troll_leather_boots + # + # Default: [ + S:iceandfire_forest_troll_leather_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: additionaladditions:gilded_netherite_helmet, additionaladditions:gilded_netherite_chestplate, additionaladditions:gilded_netherite_leggings, additionaladditions:gilded_netherite_boots + # + # Default: [ + S:additionaladditions_gilded_netherite_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:netherite_helmet, minecraft:netherite_chestplate, minecraft:netherite_leggings, minecraft:netherite_boots, cataclysm:monstrous_helm, create:netherite_backtank, create:netherite_diving_helmet, create:netherite_diving_boots + # + # Default: [ + S:NETHERITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:cultist_helmet, irons_spellbooks:cultist_chestplate, irons_spellbooks:cultist_leggings, irons_spellbooks:cultist_boots + # + # Default: [ + S:CULTIST < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:warped_boots + # + # Default: [ + S:unusualend_warped_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_leggings + # + # Default: [ + S:create_sa_zinc_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_nouveau:sorcerer_boots, ars_nouveau:sorcerer_leggings, ars_nouveau:sorcerer_robes, ars_nouveau:sorcerer_hood + # + # Default: [ + S:ars_nouveau_sorcerer_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_silver_metal_helmet, iceandfire:armor_silver_metal_chestplate, iceandfire:armor_silver_metal_leggings, iceandfire:armor_silver_metal_boots + # + # Default: [ + S:iceandfire_armor_silver_metal_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:manaweave_helmet, botania:manaweave_chestplate, botania:manaweave_leggings, botania:manaweave_boots + # + # Default: [ + S:MANAWEAVE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:tertium_helmet, mysticalagriculture:tertium_chestplate, mysticalagriculture:tertium_leggings, mysticalagriculture:tertium_boots + # + # Default: [ + S:TERTIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:phoenix_helmet, aether:phoenix_chestplate, aether:phoenix_leggings, aether:phoenix_boots + # + # Default: [ + S:PHOENIX < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:iron_helmet, minecraft:iron_chestplate, minecraft:iron_leggings, minecraft:iron_boots, occultism:otherworld_goggles + # + # Default: [ + S:IRON < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: candlelight:gold_ring + # + # Default: [ + S:candlelight_gold_ring < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_blue_helmet, iceandfire:armor_blue_chestplate, iceandfire:armor_blue_leggings, iceandfire:armor_blue_boots + # + # Default: [ + S:iceandfire_armor_blue_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:wandering_magician_helmet, irons_spellbooks:wandering_magician_chestplate, irons_spellbooks:wandering_magician_leggings, irons_spellbooks:wandering_magician_boots + # + # Default: [ + S:WANDERING_MAGICIAN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:spirit_mania_helmet + # + # Default: [ + S:unusualend_spirit_mania_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:tide_red_helmet, iceandfire:tide_red_chestplate, iceandfire:tide_red_leggings, iceandfire:tide_red_boots + # + # Default: [ + S:iceandfire_tide_red_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_helmet + # + # Default: [ + S:create_sa_copper_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_electric_helmet, iceandfire:armor_electric_chestplate, iceandfire:armor_electric_leggings, iceandfire:armor_electric_boots + # + # Default: [ + S:iceandfire_armor_electric_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mekanism:free_runners_armored + # + # Default: [ + S:mekanism_free_runners_armored < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:elementium_helmet, botania:elementium_chestplate, botania:elementium_leggings, botania:elementium_boots + # + # Default: [ + S:ELEMENTIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:halo_hat + # + # Default: [ + S:HALO < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:remnant_chestplate + # + # Default: [ + S:sons_of_sins_remnant_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: malum:soul_stained_steel_helmet, malum:soul_stained_steel_chestplate, malum:soul_stained_steel_leggings, malum:soul_stained_steel_boots + # + # Default: [ + S:SOUL_STAINED_STEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:frost_troll_leather_helmet, iceandfire:frost_troll_leather_chestplate, iceandfire:frost_troll_leather_leggings, iceandfire:frost_troll_leather_boots + # + # Default: [ + S:iceandfire_frost_troll_leather_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_exoskeleton_chestplate + # + # Default: [ + S:create_sa_brass_exoskeleton_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: malum:soul_hunter_cloak, malum:soul_hunter_robe, malum:soul_hunter_leggings, malum:soul_hunter_boots + # + # Default: [ + S:SPIRIT_HUNTER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:excelsius_resist_visors, cataclysm_spellbooks:excelsius_resist_chestplate + # + # Default: [ + S:EXCELSIUS_RESIST_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:fedora + # + # Default: [ + S:alexsmobs_fedora < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:tide_purple_helmet, iceandfire:tide_purple_chestplate, iceandfire:tide_purple_leggings, iceandfire:tide_purple_boots + # + # Default: [ + S:iceandfire_tide_purple_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:sheep_helmet, iceandfire:sheep_chestplate, iceandfire:sheep_leggings, iceandfire:sheep_boots + # + # Default: [ + S:iceandfire_sheep_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: biomancy:acolyte_armor_helmet, biomancy:acolyte_armor_chestplate, biomancy:acolyte_armor_leggings, biomancy:acolyte_armor_boots + # + # Default: [ + S:ACOLYTE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: tconstruct:travelers_helmet, tconstruct:travelers_chestplate, tconstruct:travelers_leggings, tconstruct:travelers_boots + # + # Default: [ + S:tconstruct_travelers_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_irradiated:hazmat_suit_leggings + # + # Default: [ + S:create_irradiated_hazmat_suit_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:priest_helmet, irons_spellbooks:priest_chestplate, irons_spellbooks:priest_leggings, irons_spellbooks:priest_boots + # + # Default: [ + S:PRIEST < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_elemental:fire_hat, ars_elemental:fire_robes, ars_elemental:fire_leggings, ars_elemental:fire_boots + # + # Default: [ + S:ars_elemental_fire_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:speed_boots + # + # Default: [ + S:BOOTS_OF_SPEED < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:mountain_troll_leather_helmet, iceandfire:mountain_troll_leather_chestplate, iceandfire:mountain_troll_leather_leggings, iceandfire:mountain_troll_leather_boots + # + # Default: [ + S:iceandfire_mountain_troll_leather_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:diopside_helmet, blue_skies:diopside_chestplate, blue_skies:diopside_leggings, blue_skies:diopside_boots + # + # Default: [ + S:DIOPSIDE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:spirit_smile_helmet + # + # Default: [ + S:unusualend_spirit_smile_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:chaos_helmet, soulsweapons:arkenplate + # + # Default: [ + S:CHAOS_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:slime_boots + # + # Default: [ + S:create_sa_slime_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:rocky_chestplate + # + # Default: [ + S:alexsmobs_rocky_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:diamond_helmet, minecraft:diamond_chestplate, minecraft:diamond_leggings, minecraft:diamond_boots, draconicevolution:wyvern_chestpiece, draconicevolution:draconic_chestpiece, draconicevolution:chaotic_chestpiece, productivebees:bee_nest_diamond_helmet + # + # Default: [ + S:DIAMOND < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_great_crown_helmet + # + # Default: [ + S:wrd_corrupted_great_crown_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:unsettling_kimono + # + # Default: [ + S:alexsmobs_unsettling_kimono < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_irradiated:hazmat_suit_boots + # + # Default: [ + S:create_irradiated_hazmat_suit_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonsteel_fire_helmet, iceandfire:dragonsteel_fire_chestplate, iceandfire:dragonsteel_fire_leggings, iceandfire:dragonsteel_fire_boots + # + # Default: [ + S:iceandfire_dragonsteel_fire_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mekanism:scuba_mask + # + # Default: [ + S:mekanism_scuba_mask < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:excelsius_speed_visors, cataclysm_spellbooks:excelsius_speed_chestplate + # + # Default: [ + S:EXCELSIUS_COOLDOWN_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:imperium_helmet, mysticalagriculture:imperium_chestplate, mysticalagriculture:imperium_leggings, mysticalagriculture:imperium_boots + # + # Default: [ + S:IMPERIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mekanism:jetpack + # + # Default: [ + S:mekanism_jetpack < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexscaves:diving_helmet, alexscaves:diving_chestplate, alexscaves:diving_leggings, alexscaves:diving_boots + # + # Default: [ + S:alexscaves_diving_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:bloom_stone_hat, cataclysm_spellbooks:bloom_stone_chestplate, cataclysm_spellbooks:bloom_stone_skirt, cataclysm_spellbooks:bloom_stone_greaves + # + # Default: [ + S:BOULDER_BLOSSOM_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_greatarmor_boots + # + # Default: [ + S:wrd_corrupted_greatarmor_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:spirit_vice_helmet + # + # Default: [ + S:unusualend_spirit_vice_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:deathworm_yellow_helmet, iceandfire:deathworm_yellow_chestplate, iceandfire:deathworm_yellow_leggings, iceandfire:deathworm_yellow_boots + # + # Default: [ + S:iceandfire_deathworm_yellow_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:archeologist_hat, rats:fisherman_hat, rats:pirat_hat, rats:exterminator_hat, rats:aviator_hat, rats:military_hat + # + # Default: [ + S:GENERIC_HAT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:chorus_helmet + # + # Default: [ + S:unusualend_chorus_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:flying_fish_boots + # + # Default: [ + S:alexsmobs_flying_fish_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:cursium_mage_circlet, cataclysm_spellbooks:cursium_mage_chestplate, cataclysm_spellbooks:cursium_mage_elytra, cataclysm_spellbooks:cursium_mage_skirt, cataclysm_spellbooks:cursium_mage_boots + # + # Default: [ + S:CURSIUM_WARLOCK_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:blindfold + # + # Default: [ + S:iceandfire_blindfold < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:tarnished_helmet + # + # Default: [ + S:TARNISHED < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forbidden_arcanus:draco_arcanus_helmet, forbidden_arcanus:draco_arcanus_chestplate, forbidden_arcanus:draco_arcanus_leggings, forbidden_arcanus:draco_arcanus_boots + # + # Default: [ + S:DRACO_ARCANUS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:obsidian_helmet, aether:obsidian_chestplate, aether:obsidian_leggings, aether:obsidian_boots + # + # Default: [ + S:OBSIDIAN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:infernal_sorcerer_chestplate + # + # Default: [ + S:INFERNAL_SORCERER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:soul_ingot_helmet, soulsweapons:soul_ingot_chestplate, soulsweapons:soul_ingot_leggings, soulsweapons:soul_ingot_boots + # + # Default: [ + S:SOUL_INGOT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:chaos_crown, soulsweapons:chaos_robes + # + # Default: [ + S:CHAOS_SET < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:tide_bronze_helmet, iceandfire:tide_bronze_chestplate, iceandfire:tide_bronze_leggings, iceandfire:tide_bronze_boots + # + # Default: [ + S:iceandfire_tide_bronze_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:gold_crown + # + # Default: [ + S:DEV < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_irradiated:hazmat_suit_helmet + # + # Default: [ + S:create_irradiated_hazmat_suit_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:slime_helmet + # + # Default: [ + S:create_sa_slime_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: pneumaticcraft:pneumatic_helmet, pneumaticcraft:pneumatic_chestplate, pneumaticcraft:pneumatic_leggings, pneumaticcraft:pneumatic_boots + # + # Default: [ + S:pneumaticcraft_pneumatic_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_jetpack_chestplate + # + # Default: [ + S:create_sa_brass_jetpack_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:zanite_helmet, aether:zanite_chestplate, aether:zanite_leggings, aether:zanite_boots + # + # Default: [ + S:ZANITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ad_astra:netherite_space_helmet, ad_astra:netherite_space_suit, ad_astra:netherite_space_pants, ad_astra:netherite_space_boots + # + # Default: [ + S:ad_astra_netherite_space_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexscaves:gingerbread_helmet, alexscaves:gingerbread_chestplate, alexscaves:gingerbread_leggings, alexscaves:gingerbread_boots + # + # Default: [ + S:alexscaves_gingerbread_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:terrible_helmet, aquamirae:terrible_chestplate, aquamirae:terrible_leggings, aquamirae:terrible_boots + # + # Default: [ + S:aquamirae_terrible_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:horizonite_helmet, blue_skies:horizonite_chestplate, blue_skies:horizonite_leggings, blue_skies:horizonite_boots + # + # Default: [ + S:HORIZONITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:leather_helmet, minecraft:leather_chestplate, minecraft:leather_leggings, minecraft:leather_boots, herbalbrews:witch_hat, herbalbrews:top_hat, farm_and_charm:dungarees, the_bumblezone:flower_headwear, quark:backpack, quark:forgotten_hat, wildernature:stylin_purple_hat + # + # Default: [ + S:LEATHER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:tide_green_helmet, iceandfire:tide_green_chestplate, iceandfire:tide_green_leggings, iceandfire:tide_green_boots + # + # Default: [ + S:iceandfire_tide_green_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:myrmex_jungle_helmet, iceandfire:myrmex_jungle_chestplate, iceandfire:myrmex_jungle_leggings, iceandfire:myrmex_jungle_boots + # + # Default: [ + S:iceandfire_myrmex_jungle_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: deeperdarker:warden_helmet, deeperdarker:warden_chestplate, deeperdarker:warden_leggings, deeperdarker:warden_boots + # + # Default: [ + S:WARDEN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_jetpack_chestplate + # + # Default: [ + S:create_sa_copper_jetpack_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_elemental:earth_hat, ars_elemental:earth_robes, ars_elemental:earth_leggings, ars_elemental:earth_boots + # + # Default: [ + S:ars_elemental_earth_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:crocodile_chestplate + # + # Default: [ + S:alexsmobs_crocodile_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:andesite_jetpack_chestplate + # + # Default: [ + S:create_sa_andesite_jetpack_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:remnant_helmet + # + # Default: [ + S:sons_of_sins_remnant_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:soul_robes_helmet, soulsweapons:soul_robes_chestplate, soulsweapons:soul_robes_leggings, soulsweapons:soul_robes_boots + # + # Default: [ + S:SOUL_ROBES < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:farmer_hat + # + # Default: [ + S:FARMER_HAT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: thermal:hazmat_helmet, thermal:hazmat_chestplate, thermal:hazmat_leggings, thermal:hazmat_boots + # + # Default: [ + S:thermal_hazmat_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_elemental:aqua_hat, ars_elemental:aqua_robes, ars_elemental:aqua_leggings, ars_elemental:aqua_boots + # + # Default: [ + S:ars_elemental_aqua_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aethersteel:aethersteel_armor_helmet, aethersteel:aethersteel_armor_chestplate, aethersteel:aethersteel_armor_leggings, aethersteel:aethersteel_armor_boots + # + # Default: [ + S:aethersteel_aethersteel_armor_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: additionaladditions:rose_gold_helmet, additionaladditions:rose_gold_chestplate, additionaladditions:rose_gold_leggings, additionaladditions:rose_gold_boots + # + # Default: [ + S:additionaladditions_rose_gold_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:ratlantis_helmet, rats:ratlantis_chestplate, rats:ratlantis_leggings, rats:ratlantis_boots + # + # Default: [ + S:RATLANTIS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm:cursium_helmet, cataclysm:cursium_chestplate, cataclysm:cursium_leggings, cataclysm:cursium_boots + # + # Default: [ + S:CURSIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:knightmetal_helmet, twilightforest:knightmetal_chestplate, twilightforest:knightmetal_leggings, twilightforest:knightmetal_boots + # + # Default: [ + S:ARMOR_KNIGHTLY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:excelsius_power_visors, cataclysm_spellbooks:excelsius_power_chestplate + # + # Default: [ + S:EXCELSIUS_POWER_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:spiked_turtle_shell + # + # Default: [ + S:alexsmobs_spiked_turtle_shell < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:abyssal_warlock_helmet, cataclysm_spellbooks:abyssal_warlock_mask, cataclysm_spellbooks:abyssal_warlock_chestplate, cataclysm_spellbooks:abyssal_warlock_leggings, cataclysm_spellbooks:abyssal_warlock_boots + # + # Default: [ + S:ABYSSAL_WARLOCK_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: naturesaura:infused_iron_helmet, naturesaura:infused_iron_chest, naturesaura:infused_iron_pants, naturesaura:infused_iron_shoes + # + # Default: [ + S:INFUSED < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:deathworm_red_helmet, iceandfire:deathworm_red_chestplate, iceandfire:deathworm_red_leggings, iceandfire:deathworm_red_boots + # + # Default: [ + S:iceandfire_deathworm_red_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:moose_headgear + # + # Default: [ + S:alexsmobs_moose_headgear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_copper_helmet, iceandfire:armor_copper_chestplate, iceandfire:armor_copper_leggings, iceandfire:armor_copper_boots + # + # Default: [ + S:iceandfire_armor_copper_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:plagued_helmet, irons_spellbooks:plagued_chestplate, irons_spellbooks:plagued_leggings, irons_spellbooks:plagued_boots + # + # Default: [ + S:PLAGUED < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm:ignitium_helmet, cataclysm:ignitium_chestplate, cataclysm:ignitium_elytra_chestplate, cataclysm:ignitium_leggings, cataclysm:ignitium_boots + # + # Default: [ + S:IGNITIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:abyssal_heaume, aquamirae:abyssal_brigantine, aquamirae:abyssal_leggings, aquamirae:abyssal_boots + # + # Default: [ + S:aquamirae_abyssal_heaume < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:myrmex_desert_helmet, iceandfire:myrmex_desert_chestplate, iceandfire:myrmex_desert_leggings, iceandfire:myrmex_desert_boots + # + # Default: [ + S:iceandfire_myrmex_desert_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: vinery:straw_hat, vinery:winemaker_apron, vinery:winemaker_leggings, vinery:winemaker_boots + # + # Default: [ + S:vinery_straw_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_greatarmor_chestplate + # + # Default: [ + S:wrd_corrupted_greatarmor_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:frontier_cap + # + # Default: [ + S:alexsmobs_frontier_cap < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_nouveau:arcanist_boots, ars_nouveau:arcanist_leggings, ars_nouveau:arcanist_robes, ars_nouveau:arcanist_hood + # + # Default: [ + S:ars_nouveau_arcanist_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_greatarmor_helmet_helmet + # + # Default: [ + S:wrd_corrupted_greatarmor_helmet_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: pneumaticcraft:compressed_iron_helmet, pneumaticcraft:compressed_iron_chestplate, pneumaticcraft:compressed_iron_leggings, pneumaticcraft:compressed_iron_boots + # + # Default: [ + S:pneumaticcraft_compressed_iron_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mekanism:mekasuit_helmet, mekanism:mekasuit_bodyarmor, mekanism:mekasuit_pants, mekanism:mekasuit_boots + # + # Default: [ + S:mekanism_mekasuit_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:sombrero + # + # Default: [ + S:alexsmobs_sombrero < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:aquite_helmet, blue_skies:aquite_chestplate, blue_skies:aquite_leggings, blue_skies:aquite_boots + # + # Default: [ + S:AQUITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: experienceobelisk:cognitive_helmet, experienceobelisk:cognitive_chestplate, experienceobelisk:cognitive_leggings, experienceobelisk:cognitive_boots + # + # Default: [ + S:experienceobelisk_cognitive_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:santa_hat + # + # Default: [ + S:SANTA_HAT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:terrasteel_helmet, botania:terrasteel_chestplate, botania:terrasteel_leggings, botania:terrasteel_boots, mythicbotany:alfsteel_helmet, mythicbotany:alfsteel_chestplate, mythicbotany:alfsteel_leggings, mythicbotany:alfsteel_boots + # + # Default: [ + S:TERRASTEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_boots + # + # Default: [ + S:create_sa_brass_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_amythest_helmet, iceandfire:armor_amythest_chestplate, iceandfire:armor_amythest_leggings, iceandfire:armor_amythest_boots + # + # Default: [ + S:iceandfire_armor_amythest_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:golden_helmet, minecraft:golden_chestplate, minecraft:golden_leggings, minecraft:golden_boots + # + # Default: [ + S:GOLD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: naturesaura:depth_helmet, naturesaura:depth_chest, naturesaura:depth_pants, naturesaura:depth_shoes + # + # Default: [ + S:DEPTH < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: endergetic:booflo_vest + # + # Default: [ + S:endergetic_booflo_vest < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:naga_chestplate, twilightforest:naga_leggings + # + # Default: [ + S:ARMOR_NAGA < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:remnant_boots + # + # Default: [ + S:sons_of_sins_remnant_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:pyromancer_helmet, irons_spellbooks:pyromancer_chestplate, irons_spellbooks:pyromancer_leggings, irons_spellbooks:pyromancer_boots + # + # Default: [ + S:PYROMANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_gray_helmet, iceandfire:armor_gray_chestplate, iceandfire:armor_gray_leggings, iceandfire:armor_gray_boots + # + # Default: [ + S:iceandfire_armor_gray_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:netherite_mage_helmet, irons_spellbooks:netherite_mage_chestplate, irons_spellbooks:netherite_mage_leggings, irons_spellbooks:netherite_mage_boots + # + # Default: [ + S:NETHERITE_BATTLEMAGE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexscaves:rainbounce_boots + # + # Default: [ + S:alexscaves_rainbounce_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: sons_of_sins:remnant_leggings + # + # Default: [ + S:sons_of_sins_remnant_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualend:warped_chestplate + # + # Default: [ + S:unusualend_warped_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:deathworm_white_helmet, iceandfire:deathworm_white_chestplate, iceandfire:deathworm_white_leggings, iceandfire:deathworm_white_boots + # + # Default: [ + S:iceandfire_deathworm_white_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:ironwood_helmet, twilightforest:ironwood_chestplate, twilightforest:ironwood_leggings, twilightforest:ironwood_boots + # + # Default: [ + S:ARMOR_IRONWOOD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:supremium_helmet, mysticalagriculture:supremium_chestplate, mysticalagriculture:supremium_leggings, mysticalagriculture:supremium_boots + # + # Default: [ + S:SUPREMIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wrd:corrupted_greatarmor_leggings + # + # Default: [ + S:wrd_corrupted_greatarmor_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: botania:manasteel_helmet, botania:manasteel_chestplate, botania:manasteel_leggings, botania:manasteel_boots + # + # Default: [ + S:MANASTEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:excelsius_leggings, cataclysm_spellbooks:excelsius_greaves + # + # Default: [ + S:EXCELSIUS_WARLOCK_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forbidden_arcanus:mortem_helmet, forbidden_arcanus:mortem_chestplate, forbidden_arcanus:mortem_leggings, forbidden_arcanus:mortem_boots + # + # Default: [ + S:MORTEM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:inferium_helmet, mysticalagriculture:inferium_chestplate, mysticalagriculture:inferium_leggings, mysticalagriculture:inferium_boots + # + # Default: [ + S:INFERIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:dragonsteel_lightning_helmet, iceandfire:dragonsteel_lightning_chestplate, iceandfire:dragonsteel_lightning_leggings, iceandfire:dragonsteel_lightning_boots + # + # Default: [ + S:iceandfire_dragonsteel_lightning_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:charoite_helmet, blue_skies:charoite_chestplate, blue_skies:charoite_leggings, blue_skies:charoite_boots + # + # Default: [ + S:CHAROITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: deeperdarker:resonarium_helmet, deeperdarker:resonarium_chestplate, deeperdarker:resonarium_leggings, deeperdarker:resonarium_boots + # + # Default: [ + S:RESONARIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:monstrous_wizard_hat + # + # Default: [ + S:MONSTROUS_WIZARD_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: thermal:beekeeper_helmet, thermal:beekeeper_chestplate, thermal:beekeeper_leggings, thermal:beekeeper_boots + # + # Default: [ + S:thermal_beekeeper_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: forbidden_arcanus:tyr_helmet, forbidden_arcanus:tyr_chestplate, forbidden_arcanus:tyr_leggings, forbidden_arcanus:tyr_boots + # + # Default: [ + S:TYR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_sapphire_helmet, iceandfire:armor_sapphire_chestplate, iceandfire:armor_sapphire_leggings, iceandfire:armor_sapphire_boots + # + # Default: [ + S:iceandfire_armor_sapphire_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexsmobs:centipede_leggings + # + # Default: [ + S:alexsmobs_centipede_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:top_hat + # + # Default: [ + S:TOP_HAT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:pharaoh_helmet, cataclysm_spellbooks:pharaoh_chestplate, cataclysm_spellbooks:pharaoh_leggings, cataclysm_spellbooks:pharaoh_greaves + # + # Default: [ + S:PHARAOH_MAGE_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:fiery_helmet, twilightforest:fiery_chestplate, twilightforest:fiery_leggings, twilightforest:fiery_boots + # + # Default: [ + S:ARMOR_FIERY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: candlelight:cooking_hat, candlelight:chefs_jacket, candlelight:chefs_pants, candlelight:chefs_boots, candlelight:flower_crown, candlelight:dress, candlelight:shirt, candlelight:formal_shirt, candlelight:necktie, candlelight:trousers_and_vest + # + # Default: [ + S:candlelight_cooking_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:yeti_helmet, twilightforest:yeti_chestplate, twilightforest:yeti_leggings, twilightforest:yeti_boots + # + # Default: [ + S:ARMOR_YETI < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:shadowwalker_helmet, irons_spellbooks:shadowwalker_chestplate, irons_spellbooks:shadowwalker_leggings, irons_spellbooks:shadowwalker_boots + # + # Default: [ + S:SHADOWWALKER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:sentry_boots + # + # Default: [ + S:SENTRY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:archevoker_helmet, irons_spellbooks:archevoker_chestplate, irons_spellbooks:archevoker_leggings, irons_spellbooks:archevoker_boots + # + # Default: [ + S:ARCHEVOKER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: malum:malignant_stronghold_helmet, malum:malignant_stronghold_chestplate, malum:malignant_stronghold_leggings, malum:malignant_stronghold_boots + # + # Default: [ + S:MALIGNANT_ALLOY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_elemental:air_hat, ars_elemental:air_robes, ars_elemental:air_leggings, ars_elemental:air_boots + # + # Default: [ + S:ars_elemental_air_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ars_nouveau:battlemage_boots, ars_nouveau:battlemage_leggings, ars_nouveau:battlemage_robes, ars_nouveau:battlemage_hood + # + # Default: [ + S:ars_nouveau_battlemage_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:rat_fez + # + # Default: [ + S:FEZ < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:chef_toque + # + # Default: [ + S:CHEF_TOQUE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:three_bolt_helmet, aquamirae:three_bolt_suit, aquamirae:three_bolt_leggings, aquamirae:three_bolt_boots + # + # Default: [ + S:aquamirae_three_bolt_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create:copper_backtank, create:copper_diving_helmet, create:copper_diving_boots + # + # Default: [ + S:COPPER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:phantom_helmet, twilightforest:phantom_chestplate + # + # Default: [ + S:ARMOR_PHANTOM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: ad_astra:jet_suit_helmet, ad_astra:jet_suit, ad_astra:jet_suit_pants, ad_astra:jet_suit_boots + # + # Default: [ + S:ad_astra_jet_suit_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: twilightforest:arctic_helmet, twilightforest:arctic_chestplate, twilightforest:arctic_leggings, twilightforest:arctic_boots + # + # Default: [ + S:ARMOR_ARCTIC < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_black_helmet, iceandfire:armor_black_chestplate, iceandfire:armor_black_leggings, iceandfire:armor_black_boots + # + # Default: [ + S:iceandfire_armor_black_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:awakened_supremium_helmet, mysticalagriculture:awakened_supremium_chestplate, mysticalagriculture:awakened_supremium_leggings, mysticalagriculture:awakened_supremium_boots + # + # Default: [ + S:AWAKENED_SUPREMIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hexerei:witch_helmet, hexerei:witch_chestplate, hexerei:witch_boots, hexerei:mushroom_witch_hat + # + # Default: [ + S:INFUSED_FABRIC < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm_spellbooks:ignis_helmet, cataclysm_spellbooks:ignis_chestplate, cataclysm_spellbooks:ignis_chestplate_elytra, cataclysm_spellbooks:ignis_leggings, cataclysm_spellbooks:ignis_boots + # + # Default: [ + S:IGNITIUM_WIZARD_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:copper_boots + # + # Default: [ + S:create_sa_copper_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:andesite_exoskeleton_chestplate + # + # Default: [ + S:create_sa_andesite_exoskeleton_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:armor_red_helmet, iceandfire:armor_red_chestplate, iceandfire:armor_red_leggings, iceandfire:armor_red_boots + # + # Default: [ + S:iceandfire_armor_red_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:wizard_helmet, irons_spellbooks:wizard_hat, irons_spellbooks:wizard_chestplate, irons_spellbooks:wizard_leggings, irons_spellbooks:wizard_boots + # + # Default: [ + S:WIZARD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: advanced_ae:quantum_helmet, advanced_ae:quantum_chestplate, advanced_ae:quantum_leggings, advanced_ae:quantum_boots + # + # Default: [ + S:QUANTUM_ALLOY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:plague_doctor_mask, rats:black_death_mask + # + # Default: [ + S:PLAGUE_MASK < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: alexscaves:hood_of_darkness, alexscaves:cloak_of_darkness + # + # Default: [ + S:alexscaves_hood_of_darkness < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_irradiated:hazmat_suit_chestplate + # + # Default: [ + S:create_irradiated_hazmat_suit_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: iceandfire:tide_teal_helmet, iceandfire:tide_teal_chestplate, iceandfire:tide_teal_leggings, iceandfire:tide_teal_boots + # + # Default: [ + S:iceandfire_tide_teal_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rats:rat_king_crown + # + # Default: [ + S:CROWN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: blue_skies:shadow_helmet, blue_skies:shadow_chestplate, blue_skies:shadow_leggings, blue_skies:shadow_boots + # + # Default: [ + S:SHADOW < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mysticalagriculture:prudentium_helmet, mysticalagriculture:prudentium_chestplate, mysticalagriculture:prudentium_leggings, mysticalagriculture:prudentium_boots + # + # Default: [ + S:PRUDENTIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mekanism:free_runners + # + # Default: [ + S:mekanism_free_runners < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:pumpkin_helmet, irons_spellbooks:pumpkin_chestplate, irons_spellbooks:pumpkin_leggings, irons_spellbooks:pumpkin_boots + # + # Default: [ + S:PUMPKIN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: reliquary:witch_hat + # + # Default: [ + S:reliquary_witch_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mekanism:hazmat_mask, mekanism:hazmat_gown, mekanism:hazmat_pants, mekanism:hazmat_boots + # + # Default: [ + S:mekanism_hazmat_mask < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: irons_spellbooks:electromancer_helmet, irons_spellbooks:electromancer_chestplate, irons_spellbooks:electromancer_leggings, irons_spellbooks:electromancer_boots + # + # Default: [ + S:ELECTROMANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:zinc_chestplate + # + # Default: [ + S:create_sa_zinc_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_sa:brass_chestplate + # + # Default: [ + S:create_sa_brass_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: cataclysm:bone_reptile_helmet, cataclysm:bone_reptile_chestplate + # + # Default: [ + S:BONE_REPTILE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aether:gravitite_helmet, aether:gravitite_chestplate, aether:gravitite_leggings, aether:gravitite_boots + # + # Default: [ + S:GRAVITITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:green_mushroom_cap_redone_helmet + # + # Default: [ + S:mushroomquest_green_mushroom_cap_redone_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: bloodmagic:livinghelmet, bloodmagic:livingplate, bloodmagic:livingleggings, bloodmagic:livingboots, tomeofblood:living_mage_hood, tomeofblood:living_mage_robes, tomeofblood:living_mage_leggings, tomeofblood:living_mage_boots + # + # Default: [ + S:bloodmagic_livinghelmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:cursed_wraithguard_crown, traveloptics:cursed_wraithguard_chestplate, traveloptics:cursed_wraithguard_spectral_wrapping, traveloptics:cursed_wraithguard_boots + # + # Default: [ + S:CURSED_WRAITHGUARD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:yellow_mushroom_cap_redone_helmet + # + # Default: [ + S:mushroomquest_yellow_mushroom_cap_redone_helmet < + > + S:WITHER < + > + S:CHORUS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:riptide_sovereign_hat, traveloptics:riptide_sovereign_fincloak, traveloptics:riptide_sovereign_leggings, traveloptics:riptide_sovereign_boots + # + # Default: [ + S:RIPTIDE_SOVEREIGN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: actuallyadditions:engineers_goggles_advanced, actuallyadditions:engineers_goggles + # + # Default: [ + S:GOGGLES < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:purple_mushroom_cap_redone_helmet + # + # Default: [ + S:mushroomquest_purple_mushroom_cap_redone_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualprehistory:tyrants_crown + # + # Default: [ + S:TYRANTS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualprehistory:sloth_pouch_armor + # + # Default: [ + S:SLOTH_POUCH < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualprehistory:majunga_helmet + # + # Default: [ + S:MAJUNGA < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualprehistory:austro_boots + # + # Default: [ + S:AUSTRO < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:tectonic_crest_armor_helmet, traveloptics:tectonic_crest_armor_chestplate, traveloptics:tectonic_crest_armor_leggings, traveloptics:tectonic_crest_armor_boots + # + # Default: [ + S:TECTONIC_CREST < + > + S:BURNT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:deepling_mage_armor_helmet, traveloptics:deepling_mage_armor_robe, traveloptics:deepling_mage_armor_leggings, traveloptics:deepling_mage_armor_boots + # + # Default: [ + S:DEEPLING_MAGE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: unusualprehistory:shedscale_helmet, unusualprehistory:shedscale_chestplate, unusualprehistory:shedscale_leggings, unusualprehistory:shedscale_boots + # + # Default: [ + S:SHEDSCALE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:pink_mushroom_cap_redone_helmet + # + # Default: [ + S:mushroomquest_pink_mushroom_cap_redone_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:mechanized_exoskeleton_helmet, traveloptics:mechanized_exoskeleton_chestplate, traveloptics:mechanized_exoskeleton_leggings, traveloptics:mechanized_exoskeleton_boots + # + # Default: [ + S:MECHANIZED_EXOSKELETON < + > + S:ANNIHILATOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:blank_mushroom_cap_redone_helmet + # + # Default: [ + S:mushroomquest_blank_mushroom_cap_redone_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:red_mushroom_cap_redone_helmet + # + # Default: [ + S:mushroomquest_red_mushroom_cap_redone_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railcraft:steel_boots, railcraft:steel_chestplate, railcraft:steel_helmet, railcraft:steel_leggings + # + # Default: [ + S:STEEL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:forlorn_harbinger_hood, traveloptics:forlorn_harbinger_robe, traveloptics:forlorn_harbinger_leggings, traveloptics:forlorn_harbinger_boots + # + # Default: [ + S:FORLORN_HARBINGER < + > + S:SHULKER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:aqua_mushroom_cap_redone_helmet + # + # Default: [ + S:mushroomquest_aqua_mushroom_cap_redone_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:blue_mushroom_cap_redone_helmet + # + # Default: [ + S:mushroomquest_blue_mushroom_cap_redone_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:abyssal_hide_armor_hat, traveloptics:abyssal_hide_armor_robe, traveloptics:abyssal_hide_armor_leggings, traveloptics:abyssal_hide_armor_boots + # + # Default: [ + S:ABYSSAL_HIDE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:brown_mushroom_cap_redone_helmet + # + # Default: [ + S:mushroomquest_brown_mushroom_cap_redone_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: railcraft:overalls + # + # Default: [ + S:OVERALLS < + > + S:BLASTPROOF < + > + S:CLOUDY < + > + S:MOSSY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: traveloptics:primordial_crest_armor_helmet, traveloptics:primordial_crest_armor_chestplate, traveloptics:primordial_crest_armor_leggings, traveloptics:primordial_crest_armor_boots + # + # Default: [ + S:PRIMORDIAL_CREST < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eidolon:silver_helmet, eidolon:silver_chestplate, eidolon:silver_leggings, eidolon:silver_boots + # + # Default: [ + S:eidolon_silver_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eidolon:top_hat + # + # Default: [ + S:eidolon_top_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eidolon:warlock_hat, eidolon:warlock_cloak, eidolon:warlock_boots + # + # Default: [ + S:eidolon_warlock_hat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eidolon:bonelord_helm, eidolon:bonelord_chestplate, eidolon:bonelord_greaves + # + # Default: [ + S:eidolon_bonelord_helm < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: collectors_caravan:tiki_wearable_helmet + # + # Default: [ + S:collectors_caravan_tiki_wearable_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: collectors_caravan:bone_hunter_hat_helmet + # + # Default: [ + S:collectors_caravan_bone_hunter_hat_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: collectors_caravan:tribal_mask_helmet + # + # Default: [ + S:collectors_caravan_tribal_mask_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: collectors_caravan:inuit_goggles_helmet + # + # Default: [ + S:collectors_caravan_inuit_goggles_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: collectors_caravan:paleontologist_hatt_helmet + # + # Default: [ + S:collectors_caravan_paleontologist_hatt_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: collectors_caravan:tiki_wearable_angry_helmet + # + # Default: [ + S:collectors_caravan_tiki_wearable_angry_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: collectors_caravan:bonhead_hat_1_helmet + # + # Default: [ + S:collectors_caravan_bonhead_hat_1_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: collectors_caravan:dinosssss_helmet + # + # Default: [ + S:collectors_caravan_dinosssss_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:fireblossom_battlemage_crown + # + # Default: [ + S:FIREBLOSSOM_CROWN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:flesh_mass_helmet, hazennstuff:flesh_mass_chestplate, hazennstuff:flesh_mass_leggings, hazennstuff:flesh_mass_boots + # + # Default: [ + S:SANGUINEMANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:pyrium_helmet, hazennstuff:pyrium_chestplate, hazennstuff:pyrium_leggings, hazennstuff:pyrium_boots + # + # Default: [ + S:PYRIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:legionnaire_commander_helmet, hazennstuff:legionnaire_commander_chestplate, hazennstuff:legionnaire_commander_leggings, hazennstuff:legionnaire_commander_boots + # + # Default: [ + S:LEGIONNAIRE_COMMANDER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:fireblossom_battlemage_chestplate, hazennstuff:fireblossom_battlemage_leggings, hazennstuff:fireblossom_battlemage_boots + # + # Default: [ + S:FIREBLOSSOM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:infestation_helmet, hazennstuff:infestation_chestplate, hazennstuff:infestation_leggings, hazennstuff:infestation_boots + # + # Default: [ + S:ELDRITCHMANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:alchemist_supreme_chestplate, hazennstuff:alchemist_supreme_helmet, hazennstuff:alchemist_supreme_leggings, hazennstuff:alchemist_supreme_boots + # + # Default: [ + S:EVOMANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:fireblossom_battlemage_helmet + # + # Default: [ + S:FIREBLOSSOM_HELMET < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:seraph_helmet, hazennstuff:seraph_chestplate, hazennstuff:seraph_leggings, hazennstuff:seraph_boots + # + # Default: [ + S:HOLYMANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:atlas_helmet, hazennstuff:atlas_chestplate, hazennstuff:atlas_leggings, hazennstuff:atlas_boots + # + # Default: [ + S:ATLAS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: create_things_and_misc:sticky_boots_boots + # + # Default: [ + S:create_things_and_misc_sticky_boots_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:creaking_sorcerer_helmet, hazennstuff:creaking_sorcerer_chestplate, hazennstuff:creaking_sorcerer_leggings, hazennstuff:creaking_sorcerer_boots + # + # Default: [ + S:BOTAMANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:mithril_battlemage_helmet, hazennstuff:mithril_battlemage_chestplate, hazennstuff:mithril_battlemage_leggings, hazennstuff:mithril_battlemage_boots + # + # Default: [ + S:MITHRIL_BATTLEMAGE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:ender_dragon_helmet, hazennstuff:ender_dragon_chestplate, hazennstuff:ender_dragon_leggings, hazennstuff:ender_dragon_boots + # + # Default: [ + S:ENDERMANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:legionnaire_ruler_helmet, hazennstuff:legionnaire_ruler_chestplate, hazennstuff:legionnaire_ruler_leggings, hazennstuff:legionnaire_ruler_boots + # + # Default: [ + S:LEGIONNAIRE_RULER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: hazennstuff:pyrium_battlemage_helmet, hazennstuff:pyrium_battlemage_chestplate, hazennstuff:pyrium_battlemage_leggings, hazennstuff:pyrium_battlemage_boots + # + # Default: [ + S:PYRIUM_BATTLEMAGE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: endermanoverhaul:badlands_hood, endermanoverhaul:savanna_hood, endermanoverhaul:snowy_hood + # + # Default: [ + S:endermanoverhaul_badlands_hood < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:spiny_shell_armor_chestplate + # + # Default: [ + S:born_in_chaos_v1_spiny_shell_armor_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:dark_metal_armor_chestplate + # + # Default: [ + S:born_in_chaos_v1_dark_metal_armor_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:nightmare_mantleofthe_night_chestplate + # + # Default: [ + S:born_in_chaos_v1_nightmare_mantleofthe_night_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:missionary_hat_helmet + # + # Default: [ + S:born_in_chaos_v1_missionary_hat_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:nightmare_mantleofthe_night_leggings + # + # Default: [ + S:born_in_chaos_v1_nightmare_mantleofthe_night_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:dark_metal_armor_helmet + # + # Default: [ + S:born_in_chaos_v1_dark_metal_armor_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:nightmare_mantleofthe_night_helmet + # + # Default: [ + S:born_in_chaos_v1_nightmare_mantleofthe_night_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:killer_rabbit_ears_helmet + # + # Default: [ + S:born_in_chaos_v1_killer_rabbit_ears_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:dark_metal_armor_leggings + # + # Default: [ + S:born_in_chaos_v1_dark_metal_armor_leggings < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:dark_metal_armor_boots + # + # Default: [ + S:born_in_chaos_v1_dark_metal_armor_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:lord_pumpkinheads_hat_helmet + # + # Default: [ + S:born_in_chaos_v1_lord_pumpkinheads_hat_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:nightmare_mantleofthe_night_boots + # + # Default: [ + S:born_in_chaos_v1_nightmare_mantleofthe_night_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:spiny_shell_armor_helmet + # + # Default: [ + S:born_in_chaos_v1_spiny_shell_armor_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:damned_demomans_hat_helmet + # + # Default: [ + S:born_in_chaos_v1_damned_demomans_hat_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: born_in_chaos_v1:spiritual_guide_sombrero_helmet + # + # Default: [ + S:born_in_chaos_v1_spiritual_guide_sombrero_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: accents:cakeman_plushie, accents:captain_hat, accents:christmas_hat, accents:cowboy_hat, accents:crown, accents:dragon_skull, accents:hermes_boots, accents:holstered_belt, accents:horns, accents:kasa_hat, accents:overtop_hat, accents:pickelhaube, accents:pirate_hat, accents:pumpkin_hat, accents:quiver, accents:bandolier, accents:sheathed_katana, accents:skull, accents:sombrero, accents:straw_hat, accents:top_hat, accents:wings, accents:wizard_hat, accents:king_mask, accents:wide_brim_hat, accents:tundra_hood, accents:scarf, accents:item_satchel + # + # Default: [ + S:accents_cakeman_plushie < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mowziesmobs:geomancer_beads, mowziesmobs:geomancer_robe, mowziesmobs:geomancer_belt, mowziesmobs:geomancer_sandals + # + # Default: [ + S:mowziesmobs_geomancer_beads < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mowziesmobs:sol_visage + # + # Default: [ + S:mowziesmobs_sol_visage < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mowziesmobs:umvuthana_mask_fury, mowziesmobs:umvuthana_mask_fear, mowziesmobs:umvuthana_mask_rage, mowziesmobs:umvuthana_mask_bliss, mowziesmobs:umvuthana_mask_misery, mowziesmobs:umvuthana_mask_faith + # + # Default: [ + S:mowziesmobs_umvuthana_mask_fury < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mowziesmobs:wrought_helmet + # + # Default: [ + S:mowziesmobs_wrought_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquaculture:neptunium_helmet, aquaculture:neptunium_chestplate, aquaculture:neptunium_leggings, aquaculture:neptunium_boots + # + # Default: [ + S:NEPTUNIUM < + > + S:PROMETHIUM < + > + S:immersiveengineering_armor_faraday_helmet < + > + S:immersiveengineering_armor_steel_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mushroomquest:inky_mushroom_cap_helmet + # + # Default: [ + S:mushroomquest_inky_mushroom_cap_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: allthemodium:vibranium_boots, allthemodium:vibranium_leggings, allthemodium:vibranium_chestplate, allthemodium:vibranium_helmet + # + # Default: [ + S:VIBRANIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: allthemodium:allthemodium_boots, allthemodium:allthemodium_leggings, allthemodium:allthemodium_chestplate, allthemodium:allthemodium_helmet + # + # Default: [ + S:ALLTHEMODIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: allthewizardgear:unobtainium_mage_helmet, allthewizardgear:unobtainium_mage_chestplate, allthewizardgear:unobtainium_mage_leggings, allthewizardgear:unobtainium_mage_boots + # + # Default: [ + S:UNOBTAINIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: allthearcanistgear:allthemodium_boots, allthearcanistgear:allthemodium_leggings, allthearcanistgear:allthemodium_robes, allthearcanistgear:allthemodium_hat, allthearcanistgear:vibranium_boots, allthearcanistgear:vibranium_leggings, allthearcanistgear:vibranium_robes, allthearcanistgear:vibranium_hat, allthearcanistgear:unobtainium_boots, allthearcanistgear:unobtainium_leggings, allthearcanistgear:unobtainium_robes, allthearcanistgear:unobtainium_hat + # + # Default: [ + S:allthearcanistgear_allthemodium_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: projectred_exploration:ruby_helmet, projectred_exploration:ruby_chestplate, projectred_exploration:ruby_leggings, projectred_exploration:ruby_boots + # + # Default: [ + S:projectred_exploration_ruby_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: projectred_exploration:sapphire_helmet, projectred_exploration:sapphire_chestplate, projectred_exploration:sapphire_leggings, projectred_exploration:sapphire_boots + # + # Default: [ + S:projectred_exploration_sapphire_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: projectred_exploration:peridot_helmet, projectred_exploration:peridot_chestplate, projectred_exploration:peridot_leggings, projectred_exploration:peridot_boots + # + # Default: [ + S:projectred_exploration_peridot_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: the_bumblezone:stingless_bee_helmet_1, the_bumblezone:stingless_bee_helmet_2, the_bumblezone:bumble_bee_chestplate_1, the_bumblezone:bumble_bee_chestplate_2, the_bumblezone:bumble_bee_chestplate_trans_1, the_bumblezone:bumble_bee_chestplate_trans_2, the_bumblezone:honey_bee_leggings_1, the_bumblezone:honey_bee_leggings_2, the_bumblezone:carpenter_bee_boots_1, the_bumblezone:carpenter_bee_boots_2 + # + # Default: [ + S:the_bumblezone_stingless_bee_helmet_1 < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:enhanced_withered_chest + # + # Default: [ + S:ENHANCED_WITHERED_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:enhanced_arkenplate + # + # Default: [ + S:ENHANCED_CHAOS_ARMOR < + > +} + + +formatting { + # The format string that will be used when a suffix is applied. + # Default: %s the %s + S:"Suffix Format"=%s the %s + + # The format string that will be used to indicate ownership. + # Default: %s's + S:"Ownership Format"=%s's +} + + diff --git a/minecraft/config/apotheosis/potion.cfg b/minecraft/config/apotheosis/potion.cfg new file mode 100644 index 0000000..0cdfd4e --- /dev/null +++ b/minecraft/config/apotheosis/potion.cfg @@ -0,0 +1,25 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Potion Module Configuration + +general { + # If Potion Charms will only work when in a curios slot, instead of in the inventory. + # Default: false + B:"Restrict Charms to Curios"=false + + # A list of effects that, when as charms, will be applied and reapplied at a longer threshold to avoid issues at low durations, like night vision. + # Server-authoritative. + # Default: [minecraft:night_vision], [minecraft:health_boost] + S:"Extended Potion Charms" < + minecraft:night_vision + minecraft:health_boost + > + + # A list of effects that, cannot be crafted into Potion Charms. + # Server-authoritative. + # Default: [ + S:"Blacklisted Potion Charm Effects" < + > +} + + diff --git a/minecraft/config/apotheosis/spawner.cfg b/minecraft/config/apotheosis/spawner.cfg new file mode 100644 index 0000000..009e289 --- /dev/null +++ b/minecraft/config/apotheosis/spawner.cfg @@ -0,0 +1,30 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Spawner Module Configuration + +general { + # The level of silk touch needed to harvest a spawner. Set to -1 to disable, 0 to always drop. The enchantment module can increase the max level of silk touch. + # Functionally server-authoritative, but should match on client for information. + # Default: 1; Range: [-1 ~ 127] + I:"Spawner Silk Level"=1 + + # The durability damage dealt to an item that silk touches a spawner. + # Server-authoritative. + # Default: 100; Range: [0 ~ 100000] + I:"Spawner Silk Damage"=100 + + # Whether to show info regarding the capturing enchantment in the JEI information for spawn eggs. + # Default: true + B:"Enable Capturing Enchantment JEI Info"=true +} + + +spawn_eggs { + # A list of entity registry names that cannot be applied to spawners via egg. + # Should match between client and server. + # Default: [ + S:"Banned Mobs" < + > +} + + diff --git a/minecraft/config/apotheosis/village.cfg b/minecraft/config/apotheosis/village.cfg new file mode 100644 index 0000000..5b3fbca --- /dev/null +++ b/minecraft/config/apotheosis/village.cfg @@ -0,0 +1,30 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Apotheosis Village Module Configuration + +wanderer { + # If the generic trade list will be cleared before datapack loaded trades are added. + # Server-authoritative. + # Default: false + B:"Clear Generic Trades"=false + + # If the rare trade list will be cleared before datapack loaded trades are added. + # Server-authoritative. + # Default: false + B:"Clear Rare Trades"=false + + # If the Wandering Trader can attempt to spawn underground. + # Server-authoritative. + # Default: true + B:"Underground Trader"=true +} + + +arrows { + # If explosive arrows can break blocks. + # Server-authoritative. + # Default: true + B:"Explosive Arrow Block Damage"=true +} + + diff --git a/minecraft/config/apothic_category_compat-common.toml b/minecraft/config/apothic_category_compat-common.toml new file mode 100644 index 0000000..971bc70 --- /dev/null +++ b/minecraft/config/apothic_category_compat-common.toml @@ -0,0 +1,86 @@ +# Apothic Compat: user defined loot category overrides. +# +# Maps Minecraft items (or item tags) to Apotheosis loot categories so the +# affinity system can roll the right gem/affix pools on modded gear that +# Apotheosis does not categorize on its own. Entries here are sent to +# Apotheosis via IMC at startup, alongside the mod's built in compat +# modules. Edit this file then run /apothiccompat reload (op 2) to apply +# changes without restarting the server. +# +# Built in loot category names (Apotheosis 7.4.8): +# sword, heavy_weapon, trident, bow, crossbow, shield, +# helmet, chestplate, leggings, boots, pickaxe, shovel, none +# +# Other mods can register additional categories at startup. Any name +# that resolves at apply time is accepted; unknown names are skipped +# with a warning. Known third party categories from Fallen Gems & +# Affixes: +# staffs (requires Iron's Spellbooks) +# celestial_melee (requires Celestisynth) +# celestial_ranged (requires Celestisynth) +# +# When an item is set in both adventure.cfg (Apotheosis's own Equipment +# Type Overrides) and this config, Apothic Compat's value currently wins. +# To keep an adventure.cfg value, leave that item out of this file. +# +# Keys MUST be quoted because item and tag IDs contain a ':' separator +# (namespace:path), which TOML does not allow in bare keys. + +# ---------------------------------------------------------------------- +# Categorization settings. +# +# name_based_heavy_override (default false): When enabled, items whose +# registry id contains a heavy weapon name (greatsword, claymore, +# zweihander, etc.) are categorized as HEAVY_WEAPON regardless of their +# attack speed and damage. Disable to use pure speed and damage. +# +# weapon_pickaxes_as_heavy (default true): When enabled, items in the +# dual-purpose pickaxe list (combat tools like the Void Forge, Infernal +# Forge, and Blacksmith Gavels) categorize as HEAVY_WEAPON instead of +# PICKAXE. Disable for pure PickaxeItem-class behavior. +# ---------------------------------------------------------------------- +name_based_heavy_override = false +weapon_pickaxes_as_heavy = true + +# ---------------------------------------------------------------------- +# Affix blacklist. Stops the listed affixes from rolling on newly +# generated gear (loot drops, reforging, trades, gem application). +# Existing items keep any affixes they already have; this only blocks +# future rolls. Apotheosis's own datapack affix overrides still win. +# +# value = array of affix ids, each "namespace:path" +# e.g. "apotheosis:sword/attribute/vampiric" +# +# Find affix ids from JEI tooltips on affixed gear, or from the files +# under data//affixes/ inside a mod's jar. Edit this list then +# run /apothiccompat reload (op 2) to reapply without a restart. +# +# Example: +# affix_blacklist = ["apotheosis:sword/attribute/vampiric", "apotheosis:heavy_weapon/attribute/berserking"] +# ---------------------------------------------------------------------- +affix_blacklist = [] + +# ---------------------------------------------------------------------- +# Per item overrides. +# key = full item id (namespace:path) +# value = loot category name from the list above +# +# Example: +# "ruins:greatsword" = "heavy_weapon" +# "simplyswords:greathammer" = "heavy_weapon" +# ---------------------------------------------------------------------- +[item_overrides] + +# ---------------------------------------------------------------------- +# Per tag overrides. Every item carrying the tag receives the category. +# key = full tag id (namespace:path) +# value = loot category name from the list above +# +# Tags are resolved at apply time, so datapack only tags that load with a +# world may not be visible during early startup. /apothiccompat reload +# runs after world load, so tag expansion there sees datapack tags. +# +# Example: +# "simplyswords:greathammers" = "heavy_weapon" +# ---------------------------------------------------------------------- +[tag_overrides] diff --git a/minecraft/config/apothic_filter_compat-common.toml b/minecraft/config/apothic_filter_compat-common.toml new file mode 100644 index 0000000..55e177a --- /dev/null +++ b/minecraft/config/apothic_filter_compat-common.toml @@ -0,0 +1,12 @@ + +[general] + #Master switch for the rarity mirror + enabled = true + #Top-level NBT key written to items. Client and server must match for the tooltip. + nbtKey = "apothic_rarity" + #How often to sweep player inventory in ticks + #Range: 1 ~ 200 + tickInterval = 20 + #Show the apothic_rarity NBT value as a tooltip line on items + showTooltip = true + diff --git a/minecraft/config/apothic_tooltip_cleanup-client.toml b/minecraft/config/apothic_tooltip_cleanup-client.toml new file mode 100644 index 0000000..56e885a --- /dev/null +++ b/minecraft/config/apothic_tooltip_cleanup-client.toml @@ -0,0 +1,67 @@ + +[features] + # affix display + # ============================================================ + # How many affixes show on a tooltip. + # all = show every affix + # top_n = show first N, rest under Alt + # alt_only = hide every affix unless Alt is held + affix_display_mode = "all" + # Affixes shown when mode is top_n. + #Range: 0 ~ 99 + affix_visible_count = 3 + # Sort order: default or alphabetical. + affix_sort_order = "default" + # The affix prefix and suffix Apotheosis adds to the item name (Strengthened, of the Inferno). + # show = full affixed name + # alt = base item name unless Alt is held + # delete = always the base item name + affix_prefixes_mode = "show" + # Translation key prefixes of affixes to hide. + hidden_affix_ids = [] + # affix tooltip lines + # ============================================================ + # The summary block (Cold/Fire/HP%/Spell Resistance lines). + # show = always visible + # alt = hidden unless Alt is held + # delete = always hidden, Alt has no effect + summarization_mode = "alt" + # The "ignores X% of durability damage" line. + # show = always visible + # alt = hidden unless Alt is held + # delete = always hidden, Alt has no effect + durability_bonus_mode = "alt" + # Potion style affix descriptions. + # show = always visible + # alt = hidden unless Alt is held + # delete = always hidden, Alt has no effect + potion_descriptions_mode = "show" + # The [MM:SS] cooldown markers and [Stacking] tags on affix lines. + # Only the annotations are touched, never the affix text. + # show = always visible + # alt = hidden unless Alt is held + # delete = always hidden, Alt has no effect + affix_extras_mode = "alt" + # gem display (raw gems) + # ============================================================ + # How raw gem tooltips display. + # full = original Apotheosis layout + # compact = keep the category and bonus bullets, drop the Unique tag + # ultra = one line for categories, one line for bonuses + # hidden = remove all gem info + gem_tooltip_mode = "compact" + # Gem categories to hide from 'Fits In' lists. Case insensitive. + # Example: ["Bows", "Crossbows"] to hide ranged weapons. + # No effect when gem_tooltip_mode is hidden, since that drops all gem info anyway. + hidden_gem_categories = [] + # sockets + # ============================================================ + # Merges empty sockets into one summary line. + # All empty: one line replaces the empty rows. + # Mixed: filled gems still render, empty count added below. + merge_empty_sockets = true + # Hides the APOTH_REMOVE_MARKER literal text. + # Only turn on if the marker is leaking through visibly. + # Can hide the socket UI on socketed items. + hide_apoth_marker = false + diff --git a/minecraft/config/appflux-common.toml b/minecraft/config/appflux-common.toml new file mode 100644 index 0000000..37fa9ae --- /dev/null +++ b/minecraft/config/appflux-common.toml @@ -0,0 +1,13 @@ +#FE stored per byte. +#Range: > 1 +amount = 4194304 +#The I/O limit of Flux Accessor. 0 means no limitation. +#Range: 0 ~ 2147483647 +io_limit = 0 +#Allow Flux Accessor to charge ME network with stored FE. +enable = false +#Allow ME Import Bus to pull FE. +enable_FE_pull = false +#Enable GTCEu-EU support +enable_gteu = true + diff --git a/minecraft/config/appleskin-client.toml b/minecraft/config/appleskin-client.toml index b171cd8..3ad4de7 100644 --- a/minecraft/config/appleskin-client.toml +++ b/minecraft/config/appleskin-client.toml @@ -1,24 +1,24 @@ - -[client] - #If true, shows the hunger (and saturation if showSaturationHudOverlay is true) that would be restored by food you are currently holding - showFoodValuesHudOverlay = true - #If true, shows your food exhaustion as a progress bar behind the hunger bars - showFoodExhaustionHudUnderlay = true - #Alpha value of the flashing icons at their most visible point (1.0 = fully opaque, 0.0 = fully transparent) - #Range: 0.0 ~ 1.0 - maxHudOverlayFlashAlpha = 0.65 - #If true, health/hunger overlay will shake to match Minecraft's icon animations - showVanillaAnimationsOverlay = true - #If true, adds a line that shows your hunger, saturation, and exhaustion level in the F3 debug overlay - showFoodStatsInDebugOverlay = true - #If true, shows the hunger and saturation values of food in its tooltip while holding SHIFT - showFoodValuesInTooltip = true - #If true, shows the hunger and saturation values of food in its tooltip automatically (without needing to hold SHIFT) - showFoodValuesInTooltipAlways = true - #If true, shows estimated health restored by food on the health bar - showFoodHealthHudOverlay = true - #If true, shows your current saturation level overlayed on the hunger bar - showSaturationHudOverlay = true - #If true, enables the hunger/saturation/health overlays for food in your off-hand - showFoodValuesHudOverlayWhenOffhand = true - + +[client] + #If true, shows the hunger and saturation values of food in its tooltip while holding SHIFT + showFoodValuesInTooltip = true + #If true, shows the hunger and saturation values of food in its tooltip automatically (without needing to hold SHIFT) + showFoodValuesInTooltipAlways = true + #If true, shows your current saturation level overlayed on the hunger bar + showSaturationHudOverlay = true + #If true, shows the hunger (and saturation if showSaturationHudOverlay is true) that would be restored by food you are currently holding + showFoodValuesHudOverlay = true + #If true, enables the hunger/saturation/health overlays for food in your off-hand + showFoodValuesHudOverlayWhenOffhand = true + #If true, shows your food exhaustion as a progress bar behind the hunger bars + showFoodExhaustionHudUnderlay = true + #If true, adds a line that shows your hunger, saturation, and exhaustion level in the F3 debug overlay + showFoodStatsInDebugOverlay = true + #If true, shows estimated health restored by food on the health bar + showFoodHealthHudOverlay = true + #If true, health/hunger overlay will shake to match Minecraft's icon animations + showVanillaAnimationsOverlay = true + #Alpha value of the flashing icons at their most visible point (1.0 = fully opaque, 0.0 = fully transparent) + #Range: 0.0 ~ 1.0 + maxHudOverlayFlashAlpha = 0.65 + diff --git a/minecraft/config/appliedpneumatics-common.toml b/minecraft/config/appliedpneumatics-common.toml new file mode 100644 index 0000000..dfd0fd3 --- /dev/null +++ b/minecraft/config/appliedpneumatics-common.toml @@ -0,0 +1,3 @@ +#总是显示联动内容,如1m~256m存储元件以及扩展亚马龙处理站,注意,这不会添加配方,只会使其出现在创造模式菜单。 +always_show_extended_content = false + diff --git a/minecraft/config/appliedsorting-client.toml b/minecraft/config/appliedsorting-client.toml new file mode 100644 index 0000000..c9d35d0 --- /dev/null +++ b/minecraft/config/appliedsorting-client.toml @@ -0,0 +1,8 @@ +#Overrides the AE2 sort method when set to a non-default option +#Allowed Values: DEFAULT, INTERNAL_ID, RESOURCE_LOCATION +sortOverride = "INTERNAL_ID" + +[byResourceLocation] + #Sort Minecraft items first when sorting by resource location + minecraftFirst = true + diff --git a/minecraft/config/aquaculture-common.toml b/minecraft/config/aquaculture-common.toml new file mode 100644 index 0000000..02c87ba --- /dev/null +++ b/minecraft/config/aquaculture-common.toml @@ -0,0 +1,20 @@ + +["basic options"] + "Enable weight for fish? Useful for fishing competitions" = false + "Should fish be added as compostables for the composter/worm farm? (Based on fish, or weight if enabled)" = true + "Should Aquaculture fish be able to be used to breed cats & ocelots?" = true + "Enable debug mode? (Enables additional logging)" = false + "Show Fillet recipes in JEI?" = true + #Range: 0 ~ 63 + "How many blocks below sea level Aquaculture fish can spawn" = 13 + + ["basic options"."Amount of Message In A Bottle messages"] + #Range: 0 ~ 255 + " Used to add additional custom messages" = 29 + +["neptunium options"] + "Enable recipes for Neptunium items?" = true + "Enable recipes for Neptunium armor?" = true + #Should Neptune's bounty be added as fishing loot? Very rare. + "Add Neptune's Bounty as loot?" = true + diff --git a/minecraft/config/armorposer-common.toml b/minecraft/config/armorposer-common.toml new file mode 100644 index 0000000..9783a0b --- /dev/null +++ b/minecraft/config/armorposer-common.toml @@ -0,0 +1,10 @@ + +#General settings +[General] + #Show the Armor Stand configuration GUI on shift right click + enableConfigGui = true + #Allow Armor Stand to be renamed using name tags + enableNameTags = true + #Allow scrolling to increase / decrease an angle value in the posing screen + allowScrolling = true + diff --git a/minecraft/config/ars_artifice/glyph_anguish.toml b/minecraft/config/ars_artifice/glyph_anguish.toml new file mode 100644 index 0000000..499de0c --- /dev/null +++ b/minecraft/config/ars_artifice/glyph_anguish.toml @@ -0,0 +1,23 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Damage threshold, in half-hearts + #Range: > 1 + threshold = 6 + #Damage threshold step, in half-hearts + #Range: > 1 + step = 2 + diff --git a/minecraft/config/ars_artifice/glyph_falling.toml b/minecraft/config/ars_artifice/glyph_falling.toml new file mode 100644 index 0000000..99e1e18 --- /dev/null +++ b/minecraft/config/ars_artifice/glyph_falling.toml @@ -0,0 +1,23 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Default fall distance to trigger from, in blocks + #Range: > 1 + distance = 5 + #Distance change step, in blocks + #Range: > 1 + step = 1 + diff --git a/minecraft/config/ars_artifice/glyph_interval.toml b/minecraft/config/ars_artifice/glyph_interval.toml new file mode 100644 index 0000000..31ec3f7 --- /dev/null +++ b/minecraft/config/ars_artifice/glyph_interval.toml @@ -0,0 +1,23 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Interval, in seconds + #Range: > 1 + interval = 10 + #Interval change step, in seconds + #Range: > 1 + step = 1 + diff --git a/minecraft/config/ars_artifice/glyph_landing.toml b/minecraft/config/ars_artifice/glyph_landing.toml new file mode 100644 index 0000000..c2bd215 --- /dev/null +++ b/minecraft/config/ars_artifice/glyph_landing.toml @@ -0,0 +1,23 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Default distance fall to trigger from, in blocks + #Range: > 0 + distance = 0 + #Distance increase, in blocks + #Range: > 1 + step = 1 + diff --git a/minecraft/config/ars_controle-server.toml b/minecraft/config/ars_controle-server.toml new file mode 100644 index 0000000..61771a0 --- /dev/null +++ b/minecraft/config/ars_controle-server.toml @@ -0,0 +1,12 @@ + +#Config for Warping Spell Prism +[warping_spell_prism] + #Max Source cost of Warping Spell Prism (1 Source Jar = 10000 Source) + max_cost = 5000 + #The minimum distance before Warping Spell Prism costs Source + cost_min_distance = 128 + #Source Cost per block of Warping Spell Prism + cost_per_block = 1 + #Source Cost when crossing dimensions of Warping Spell Prism + dimension_cost = 1000 + diff --git a/minecraft/config/ars_creo-common.toml b/minecraft/config/ars_creo-common.toml new file mode 100644 index 0000000..f9a4ece --- /dev/null +++ b/minecraft/config/ars_creo-common.toml @@ -0,0 +1,10 @@ +#Base speed of the wheel +#Range: > 0 +wheelBaseSpeed = 16 +#Speed of the wheel with a gold block in front +#Range: > 0 +wheelMaxSpeed = 24 +#Stress capacity of the wheel +#Range: 0.0 ~ 1.7976931348623157E308 +wheelStressCapacity = 16.0 + diff --git a/minecraft/config/ars_ocultas/base-common.toml b/minecraft/config/ars_ocultas/base-common.toml new file mode 100644 index 0000000..9831a96 --- /dev/null +++ b/minecraft/config/ars_ocultas/base-common.toml @@ -0,0 +1,3 @@ +#Conversion rate of LP into player mana +conversionRate = 10 + diff --git a/minecraft/config/artifacts/client.json5 b/minecraft/config/artifacts/client.json5 new file mode 100644 index 0000000..b2694e8 --- /dev/null +++ b/minecraft/config/artifacts/client.json5 @@ -0,0 +1,15 @@ +{ + // Whether models for gloves should be shown in first person + "showFirstPersonGloves": true, + // Whether artifacts should have tooltips explaining their effects + "showTooltips": true, + // Whether mimics can use textures from Lootr or Quark + "useModdedMimicTextures": true, + // Display artifacts on cooldown next to the hotbar + "enableCooldownOverlay": false, + /* Location of the artifact cooldown gui element + Distance from the hotbar measured in pixels + Negative values place the element left of the hotbar + */ + "cooldownOverlayOffset": 10 +} \ No newline at end of file diff --git a/minecraft/config/artifacts/common.json5 b/minecraft/config/artifacts/common.json5 new file mode 100644 index 0000000..c1db3de --- /dev/null +++ b/minecraft/config/artifacts/common.json5 @@ -0,0 +1,36 @@ +{ + // The chance everlasting beef drops when a cow or mooshroom is killed by a player + "everlastingBeefChance": 0.002, + // The chance that a skeleton, zombie or piglin spawns with an artifact equipped + "entityEquipmentChance": 0.001, + // The chance that an artifact generates in suspicious sand or gravel + "archaeologyChance": 0.0625, + // Whether the Kitty Slippers and Bunny Hoppers change the player's hurt sounds + "modifyHurtSounds": true, + "campsite": { + /* How many times a campsite will attempt to generate per chunk + Set this to 0 to prevent campsites from generating + */ + "count": 4, + // The minimum height campsites can spawn at + "minY": -60, + // The maximum height campsites can spawn at + "maxY": 40, + // Probability that a campsite has a mimic instead of a chest + "mimicChance": 0.3, + // Whether to use wooden chests from other mods when generating campsites + "useModdedChests": true, + // Whether campsites can contain blocks that emit light + "allowLightSources": true + }, + /* Affects how common artifacts are in chests. + Values above 1 will make artifacts rarer, values between 0 and 1 will make artifacts more common. + Doubling this value will make artifacts approximately twice as hard to find, and vice versa. + To prevent artifacts from appearing as chest loot, set this to 10000. + + To disable or change the effects of specific items, the /gamerule command can be used. + A list of available game rules and their effects can be found on the wiki on GitHub: + https://github.com/ochotonida/artifacts/wiki + */ + "artifactRarity": 1.0 +} \ No newline at end of file diff --git a/minecraft/config/artifacts/relics/anglers_hat.yaml b/minecraft/config/artifacts/relics/anglers_hat.yaml new file mode 100644 index 0000000..e410ca8 --- /dev/null +++ b/minecraft/config/artifacts/relics/anglers_hat.yaml @@ -0,0 +1,40 @@ +abilitiesData: + abilities: + catch: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + chance: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 0.2 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.1 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.25 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE +levelingData: + # Amount of experience required to level up to relic level 1 + initialCost: 100 + # Maximum level of the relic + maxLevel: 10 + # Increment in experience required for each subsequent level of the relic + step: 100 +lootData: + # List of key-value pairs where the key is a textual identifier for the loot table (supporting regular expressions) and the value represents the probability of generating the relic within the specified bounds + entries: + '[\w]+:chests\/[\w_\/]*(water|ocean|river|(? +} + + +combat_rules { + # The protection damage reduction formula. + # Computed after Prot Pierce and Prot Shred are applied. + # Arguments: + # 'protPoints' - The number of protection points the user has after reductions. + # Output: + # The percentage of damage taken after protection has been applied, from 0 (no damage taken) to 1 (full damage taken). + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # + # Default: 1 - min(0.025 * protPoints, 0.85) + S:"Protection Formula"=1 - min(0.025 * protPoints, 0.85) + + # The a-value formula, which computes an intermediate used in the armor formula. + # Arguments: + # 'damage' - The damage of the incoming attack. + # Output: + # The a-value, which will be supplied as an argument to the armor formula. + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # + # Default: if(damage < 20, 10, 10 + (damage - 20) / 2) + S:"A-Value Formula"=if(damage < 20, 10, 10 + (damage - 20) / 2) + + # The armor damage reduction formula. + # Computed after Armor Pierce and Armor Shred are applied. + # Arguments: + # 'a' - The a-value computed by the a-value formula. + # 'damage' - The damage of the incoming attack. + # 'armor' - The armor value of the user after reductions. + # 'toughness' - The armor toughness value of the user. + # Output: + # The percentage of damage taken after armor has been applied, from 0 (no damage taken) to 1 (full damage taken). + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # Note: + # The vanilla formula is: 1 - min(max(armor - damage / (2 + toughness / 4), armor / 5), 20) / 25 + # + # Default: a / (a + armor) + S:"Armor Formula"=a / (a + armor) +} + + diff --git a/minecraft/config/azurelib.json b/minecraft/config/azurelib.json new file mode 100644 index 0000000..859b787 --- /dev/null +++ b/minecraft/config/azurelib.json @@ -0,0 +1,37 @@ +{ + "bool": true, + "number": 15, + "longNumber": 16644564564561651, + "floatNumber": 151.3123, + "doubleNumber": 316.15646556, + "string": "random text", + "color": "#33AADD", + "color2": "#66771166", + "boolArray": [ + false, + false, + true, + false + ], + "intArray": [ + 153, + 123, + 54 + ], + "longArray": [ + 13, + 56, + 133 + ], + "floatArray": [ + 500.0, + 1561.23 + ], + "stringArray": [ + "minecraft:test" + ], + "testEnum": "C", + "nestedTest": { + "testInt": 13 + } +} \ No newline at end of file diff --git a/minecraft/config/badoptimizations.txt b/minecraft/config/badoptimizations.txt new file mode 100644 index 0000000..76ac1c8 --- /dev/null +++ b/minecraft/config/badoptimizations.txt @@ -0,0 +1,73 @@ +# BadOptimizations configuration +# Toggle and configure optimizations here. +# *All* of these require restarts. + +# Whether we should cancel updating the lightmap if not needed. +enable_lightmap_caching: true +# How much the in-game time must change in ticks (default tick rate = 1/20th of a second) +# for the lightmap to update. +# Higher values will result in less frequent updates +# to block lighting, but slightly better performance. +# Values below 2 will disable the optimization. +lightmap_time_change_needed_for_update: 80 + +# Whether the sky's color should be cached unless you're on a biome border. +enable_sky_color_caching: true +# How much the in-game time must change in ticks for the sky color to +# be recalculated when not between biome borders. Higher values will result in +# the sky updating less frequently, but slightly better performance. +# Values below 2 will all have the same effect. +skycolor_time_change_needed_for_update: 3 + +# Whether we should avoid calling debug renderers +# if there are no debug entries to render or process. +enable_debug_renderer_disable_if_not_needed: true + +# +# Micro optimizations +# + +# Whether we should avoid calling the particle manager +# and its calculations if there are no particles. +enable_particle_manager_optimization: true +# Whether we should avoid calling the toast manager if there are no toasts. +enable_toast_optimizations: true +# Whether the result of getSkyAngle should be cached +# for the entire frame during rendering. +enable_sky_angle_caching_in_worldrenderer: true +# Whether entity renderers should be stored directly in EntityType instead of a HashMap. +# If your entity-adding mod crashes with this mod, it's probably this option's fault. +enable_entity_renderer_caching: true +# Whether block entity renderers should be stored in BlockEntityType instead of a HashMap. +enable_block_entity_renderer_caching: true +# Whether entity flags should be cached instead of calling DataTracker. +# Also removes the unnecessary thread lock in DataTracker. +# Unneeded with Lithium. Has no effect in Minecraft 1.20.5+. +enable_entity_flag_caching: true +# Whether we should avoid calling FOV calculations +# if the FOV effect scale is zero. +enable_remove_redundant_fov_calculations: true +# Don't tick the tutorial if the game is not in demo mode. +enable_remove_tutorial_if_not_demo: true + +# +# Other +# + +# Whether BadOptimizations should be added onto +# the left text of the F3 menu. +show_f3_text: true + +# Some config options will be force-disabled if certain mods are present +# due to incompatibilities (e.g. entity rendering caching +# is disabled w/ Twilight Forest / BedrockSkinUtility / SkinShuffle). +# However, if you still want to use the optimizations, you can override it +# by setting this to true. Beware of crashes. And Herobrine. +ignore_mod_incompatibilities: false + +# Whether to log the entire config into console when booting up. +# If you plan on reporting an issue, please keep this on. +log_config: true + +# Do not change this +config_version: 4 diff --git a/minecraft/config/bagus_lib-client.toml b/minecraft/config/bagus_lib-client.toml new file mode 100644 index 0000000..4735a8c --- /dev/null +++ b/minecraft/config/bagus_lib-client.toml @@ -0,0 +1,7 @@ +#Enable the Mini Bagu cosmetic. [true / false] +"Enable Mini Bagu cosmetic" = false +#Enable Cooler EndPoem Feature...(Take a look the After beat the End) [true / false] +"Enable Cooler EndPoem" = true +#Enable First Person Animation(When you using model change mod. should be turn off). [true / false] +"Enable First Person Animation" = true + diff --git a/minecraft/config/bagus_lib-common.toml b/minecraft/config/bagus_lib-common.toml new file mode 100644 index 0000000..79cb5b3 --- /dev/null +++ b/minecraft/config/bagus_lib-common.toml @@ -0,0 +1,3 @@ +#Enable the camera shake for vanilla mobs. [true / false] +"Enable Shake Camera for Vanilla" = true + diff --git a/minecraft/config/balm-client.toml b/minecraft/config/balm-client.toml new file mode 100644 index 0000000..72eb966 --- /dev/null +++ b/minecraft/config/balm-client.toml @@ -0,0 +1,24 @@ +#This is an example enum property +#Allowed Values: Hello, World +exampleEnum = "Hello" +#This is an example int property +exampleInt = 42 +#This is an example int list property +exampleIntList = [12, 24] +#This is an example boolean property +exampleBoolean = true +#This is an example string property +exampleString = "Hello World" +#This is an example string list property +exampleStringList = ["Hello", "World"] +#This is an example enum list property +exampleEnumList = ["Hello", "World"] +#This is an example resource location set property +exampleResourceLocationSet = ["minecraft:diamond", "minecraft:dirt"] + +[exampleCategory] + #This is an example string inside a category + innerField = "I am inside" + #This is an example float inside a category + exampleFloat = 42.84000015258789 + diff --git a/minecraft/config/balm-common.toml b/minecraft/config/balm-common.toml new file mode 100644 index 0000000..18620b0 --- /dev/null +++ b/minecraft/config/balm-common.toml @@ -0,0 +1,24 @@ +#This is an example boolean property +exampleBoolean = true +#This is an example int property +exampleInt = 42 +#This is an example string property +exampleString = "Hello World" +#This is an example enum property +#Allowed Values: Hello, World +exampleEnum = "Hello" +#This is an example string list property +exampleStringList = ["Hello", "World"] +#This is an example int list property +exampleIntList = [12, 24] +#This is an example enum list property +exampleEnumList = ["Hello", "World"] +#This is an example resource location set property +exampleResourceLocationSet = ["minecraft:diamond", "minecraft:dirt"] + +[exampleCategory] + #This is an example string inside a category + innerField = "I am inside" + #This is an example float inside a category + exampleFloat = 42.84000015258789 + diff --git a/minecraft/config/barteringstation-client.toml b/minecraft/config/barteringstation-client.toml new file mode 100644 index 0000000..23db017 --- /dev/null +++ b/minecraft/config/barteringstation-client.toml @@ -0,0 +1,4 @@ +#Way of showing current cooldown of a bartering station. +#Allowed Values: NONE, OVERLAY, ARROWS, BOTH +cooldown_render_type = "ARROWS" + diff --git a/minecraft/config/barteringstation-server.toml b/minecraft/config/barteringstation-server.toml new file mode 100644 index 0000000..6ec4acb --- /dev/null +++ b/minecraft/config/barteringstation-server.toml @@ -0,0 +1,11 @@ +#Range on y axis bartering station should search for available piglins. +#Range: 1 ~ 96 +vertical_range = 4 +#Range on xz plane bartering station should search for available piglins. +#Range: 1 ~ 96 +horizontal_range = 12 +#Delay in ticks after a bartering station tries to give gold ingots to piglins again. The piglin inspecting the gold ingot always takes half that time, the other half is a cool-down. +#Bartering manually in vanilla always takes 120 ticks, this option doesn't change that. +#Range: > 20 +barter_delay = 300 + diff --git a/minecraft/config/bcc-common.toml b/minecraft/config/bcc-common.toml new file mode 100644 index 0000000..0993a0a --- /dev/null +++ b/minecraft/config/bcc-common.toml @@ -0,0 +1,14 @@ + +#General settings +[general] + #The CurseForge project ID for the modpack + #Range: > 0 + modpackProjectID = 363581 + #The name of the modpack + modpackName = "Monumental Experience" + #The version of the modpack + modpackVersion = "3.0.561" + #Use the metadata.json to determine the modpack version + #ONLY ENABLE THIS IF YOU KNOW WHAT YOU ARE DOING + useMetadata = false + diff --git a/minecraft/config/betteradvancements-client.toml b/minecraft/config/betteradvancements-client.toml new file mode 100644 index 0000000..f24170a --- /dev/null +++ b/minecraft/config/betteradvancements-client.toml @@ -0,0 +1,24 @@ +defaultUncompletedIconColor = "#FFFFFF" +defaultUncompletedTitleColor = "#0489C1" +defaultCompletedIconColor = "#DBA213" +defaultCompletedTitleColor = "#DBA213" +doAdvancementsBackgroundFade = true +showDebugCoordinates = false +orderTabsAlphabetically = false +#Values below 50% might give odd results, use on own risk ;) +#Range: 1 ~ 100 +uiScaling = 100 +#Lists the criteria for partially completed advancements, e.g. the biomes required for 'Adventuring Time' +# Off: Vanilla default +# Default: List which criteria you have already obtained +# Spoiler: Only reveal unobtained criteria +# All: Show both obtained and unobtained criteria +criteriaDetail = "Default" +criteriaDetailRequiresShift = false +addInventoryButton = false +defaultDrawDirectLines = false +defaultHideLines = false +defaultCompletedLineColor = "#FFFFFF" +defaultUncompletedLineColor = "#FFFFFF" +onlyUseAboveAdvancementTabs = false + diff --git a/minecraft/config/betterarcheology-common.toml b/minecraft/config/betterarcheology-common.toml new file mode 100644 index 0000000..f059241 --- /dev/null +++ b/minecraft/config/betterarcheology-common.toml @@ -0,0 +1,109 @@ +[Artifacts] + # Set to true or false to enable or disable effects. + # Allowed values: true, false - Default: true + artifactEnchantmentsEnabled = true + + [Artifacts.PenetratingStrike] + # En-/Disables the effects of the Penetrating Strike enchantment. + # Allowed values: true, false - Default: true + penetratingStrikeEnabled = true + + # Set to % of damage-reduction from Protection Enchantments that should be ignored. + # Allowed range: 0.0 ~ 1.0 - Default: 0.33 + penetratingStrikeProtectionIgnorance = 0.33 + + [Artifacts.Tunneling] + # En-/Disables the effects of the Tunneling enchantment. + # Allowed values: true, false - Default: true + tunnelingEnabled = true + + # En-/Disables the tunneling enchantment on the Axe. Already enchanted axes still work but enchantment cannot be applied to future axes. + # Allowed values: true, false - Default: false + tunnelingAxeEnabled = false + + [Artifacts.SoaringWinds] + # En-/Disables the effects of the Soaring Winds enchantment. + # Allowed values: true, false - Default: true + soaringWindsEnabled = true + + # Set to movement speed multiplier, that should be applied when starting to fly + # Allowed range: 0.1 ~ 3.0 - Default: 0.5 + soaringWindsBoost = 0.5 + +[Totems] + # En-/Disables ALL of the Totems' effects. + # Allowed values: true, false - Default: true + totemsEnabled = true + + [Totems.Radiance] + # En-/Disables ALL of the Radiance Totem's effects. + # Allowed values: true, false - Default: true + radianceTotemEnabled = true + + # En-/Disables the Radiance Totem damaging hostile mobs around it. + # Allowed values: true, false - Default: true + radianceTotemDamageEnabled = true + + # Sets the damage in 1/2 hearts that will be dealt to hostile mobs when a damage tick occurs. + # Allowed range: 1 ~ 40 - Default: 4 + radianceTotemDamage = 4 + + # Sets the average time between damage ticks of the Radiance Totem in seconds. The totem will still damage mobs randomly, but the average time between damage ticks will be this value. + # Allowed range: 1 ~ 60 - Default: 3 + radianceTotemDamageTickAverage = 3 + + # Sets the radius around the radiance totem within which entities will be affected by the glowing and damaging effects. + # Allowed range: 1 ~ 90 - Default: 10 + radianceTotemRadius = 10 + + [Totems.Torrent] + # En-/Disables the Torrent Totem's effects. + # Allowed values: true, false - Default: true + torrentTotemEnabled = true + + # Sets the relative strength of the boost the player will get when using the Torrent Totem. + # Allowed range: 0.1 ~ 3.0 - Default: 1.0 + torrentTotemBoost = 1.0 + + # En-/Disables giving a player an upwards boost when using the Torrent Totem. + # Allowed values: true, false - Default: false + torrentTotemUpwardsBoost = false + + [Totems.Growth] + # En-/Disables the Growth Totem's effects. + # Allowed values: true, false - Default: true + growthTotemEnabled = true + + # Sets the radius around the growth totem within which crops will be randomly bonemealed. + # Allowed range: 1 ~ 50 - Default: 5 + growthTotemGrowRadius = 5 + + # The growth totem uses the randomTick to determine when it should grow crops. This value determines the chance in % that a random tick actually grows crops to potentially decrease its yield. For example, a 20% chance bonemeals a crop ~10.5 times an hour + # Allowed range: 1 ~ 100 - Default: 20 + growthTotemGrowChance = 20 + +[Fossils] + # En-/Disables the effects of the Fossils like PotionEffects etc. + # Allowed values: true, false - Default: true + fossilEffectsEnabled = true + + # Range in Blocks that the Ocelot/Wolf Fossils scare their corresponding mobs away. + # Allowed range: 10 ~ 50 - Default: 20 + fossilFleeRange = 20 + + # En-/Disables the slow falling effect of the chicken fossil. + # Allowed values: true, false - Default: true + chickenFossilEffectsEnabled = true + + # En-/Disables Creepers fleeing from the ocelot fossil. + # Allowed values: true, false - Default: true + ocelotFossilEffectsEnabled = true + + # En-/Disables Skeletons fleeing from the ocelot fossil. + # Allowed values: true, false - Default: true + wolfFossilEffectsEnabled = true + + # En-/Disables the water breathing effect of the guardian fossil. + # Allowed values: true, false - Default: true + guardianFossilEffectsEnabled = true + diff --git a/minecraft/config/betterarcheology_structures/structure_settings.json5 b/minecraft/config/betterarcheology_structures/structure_settings.json5 new file mode 100644 index 0000000..0ef944c --- /dev/null +++ b/minecraft/config/betterarcheology_structures/structure_settings.json5 @@ -0,0 +1,23 @@ +/* +This config is used to tweak the spawning-behaviour certain structures from the BetterArcheology Mod +*/ +{ + // Normal buildings, ruins etc. without fossils. + "archeology_sites": { + "spacing": 32, + "separation": 16, + "salt": 990880770 + }, + // Underwater ruins similar to shipwrecks containing fossiliferous dirt. + "underwater_ruins": { + "spacing": 16, + "separation": 12, + "salt": 990880772 + }, + // Rather small fossil sites with fossiliferous dirt. + "fossil_sites": { + "spacing": 24, + "separation": 12, + "salt": 990880771 + } +} \ No newline at end of file diff --git a/minecraft/config/betterarcheology_structures/structure_toggle.json5 b/minecraft/config/betterarcheology_structures/structure_toggle.json5 new file mode 100644 index 0000000..e8b4617 --- /dev/null +++ b/minecraft/config/betterarcheology_structures/structure_toggle.json5 @@ -0,0 +1,39 @@ +/* +This config is used to enable or disable certain structures from the BetterArcheology Mod +*/ +{ + // Normal buildings, ruins etc. without fossils. + "archeology_sites": { + "archeologist_camp_grassy": true, + "archeologist_camp_redsand": true, + "archeologist_camp_sand": true, + "buried_ruins_sand": true, + "catacombs": true, + "desert_obelisk": true, + "light_temple": true, + "mesa_ruins": true, + "mott": true, + "ruins_sand": true, + "stonehenge_grassy": true, + "temple_jungle": true, + "tumulus_grassy": true + }, + // Underwater ruins similar to shipwrecks containing fossiliferous dirt. + "underwater_ruins": { + "underwater_0": true, + "underwater_1": true, + "underwater_2": true, + "underwater_3": true + }, + // Rather small fossil sites with fossiliferous dirt. + "fossil_sites": { + "fossil_chicken": true, + "fossil_chicken_birch": true, + "fossil_creeper": true, + "fossil_jungle_0": true, + "fossil_jungle_1": true, + "fossil_sheep_0": true, + "fossil_wolf": true, + "villager_grave": true + } +} \ No newline at end of file diff --git a/minecraft/config/betterchunkloading.json b/minecraft/config/betterchunkloading.json new file mode 100644 index 0000000..e7ef4a3 --- /dev/null +++ b/minecraft/config/betterchunkloading.json @@ -0,0 +1,42 @@ +{ + "enablePrediction": { + "desc:": "Enables predictive chunkloading, which predicts player movement and preloads an area in movement direction: default:true", + "enablePrediction": true + }, + "predictionLoadingSpeed": { + "desc:": "Set a modifier to prediction area loading speed, increasing the value increases the speed at which chunks load around the player. Note that faster loading also means higher impact on TPS. range: [0.01 -> 10.0], default: 1.0", + "predictionLoadingSpeed": 1.0 + }, + "predictionarea": { + "desc:": "Size of the area marked for preloading: default:7 chunks, max: 32, min: 2", + "predictionarea": 7 + }, + "enableSmartChunkLoading": { + "desc:": "Enables smart chunkloading around the player, which dynamically loads the around the player : default:true", + "enableSmartChunkLoading": true + }, + "smartChunkLoadingSpeed": { + "desc:": "Set a modifier to smart chunkloading speed, increasing the value increases the speed at which chunks load around the player. Note that faster loading also means higher impact on TPS. range: [0.01 -> 10.0], default: 1.0", + "smartChunkLoadingSpeed": 1.0 + }, + "preventWalkUnloaded": { + "desc:": "Prevents players from moving into unloaded areas on serverside, which stalls the server and forceloads the chunk: default:true", + "preventWalkUnloaded": true + }, + "enableSmartPostProcessing": { + "desc:": "Enables smart post processing, which slightly improves the general chunk loading speed by waiting with post processing(e.g. fluid updates) until neighbouring chunks are loaded: default:true", + "enableSmartPostProcessing": true + }, + "enableFasterChunkTasks": { + "desc:": "Enables faster worldgen tasks: default:false", + "enableFasterChunkTasks": false + }, + "optimizeWaiting": { + "desc:": "Optimizes time the world is stalled while waiting for a chunk: default:true", + "optimizeWaiting": true + }, + "debugLogging": { + "desc:": "Enables debug logging to show chunk loading changes: default:false", + "debugLogging": false + } +} \ No newline at end of file diff --git a/minecraft/config/bettercombat/client.json5 b/minecraft/config/bettercombat/client.json5 new file mode 100644 index 0000000..44fae48 --- /dev/null +++ b/minecraft/config/bettercombat/client.json5 @@ -0,0 +1,17 @@ +{ + "isHoldToAttackEnabled": true, + "isMiningWithWeaponsEnabled": true, + "isSwingThruGrassEnabled": true, + "isAttackInsteadOfMineWhenEnemiesCloseEnabled": true, + "isHighlightCrosshairEnabled": true, + "hudHighlightColor": 16711680, + "isShowingArmsInFirstPerson": false, + "isShowingOtherHandFirstPerson": true, + "isSweepingParticleEnabled": true, + "isTooltipAttackRangeEnabled": true, + "weaponSwingSoundVolume": 100, + "isDebugOBBEnabled": true, + "swingThruGrassBlacklist": "farmersdelight", + "mineWithWeaponBlacklist": "", + "firstPersonAnimations": "AUTO" +} \ No newline at end of file diff --git a/minecraft/config/bettercombat/fallback_compatibility.json b/minecraft/config/bettercombat/fallback_compatibility.json new file mode 100644 index 0000000..75440c6 --- /dev/null +++ b/minecraft/config/bettercombat/fallback_compatibility.json @@ -0,0 +1,116 @@ +{ + "schema_version": 1, + "blacklist_item_id_regex": "pickaxe", + "fallback_compatibility": [ + { + "item_id_regex": "claymore|great_sword|greatsword", + "weapon_attributes": "bettercombat:claymore" + }, + { + "item_id_regex": "great_hammer|greathammer|war_hammer|warhammer|maul", + "weapon_attributes": "bettercombat:hammer" + }, + { + "item_id_regex": "double_axe|doubleaxe|war_axe|waraxe|great_axe|greataxe", + "weapon_attributes": "bettercombat:double_axe" + }, + { + "item_id_regex": "scythe", + "weapon_attributes": "bettercombat:scythe" + }, + { + "item_id_regex": "halberd", + "weapon_attributes": "bettercombat:halberd" + }, + { + "item_id_regex": "glaive", + "weapon_attributes": "bettercombat:glaive" + }, + { + "item_id_regex": "spear", + "weapon_attributes": "bettercombat:spear" + }, + { + "item_id_regex": "lance", + "weapon_attributes": "bettercombat:lance" + }, + { + "item_id_regex": "anchor", + "weapon_attributes": "bettercombat:anchor" + }, + { + "item_id_regex": "battlestaff|battle_staff", + "weapon_attributes": "bettercombat:battlestaff" + }, + { + "item_id_regex": "claw", + "weapon_attributes": "bettercombat:claw" + }, + { + "item_id_regex": "fist|gauntlet", + "weapon_attributes": "bettercombat:fist" + }, + { + "item_id_regex": "trident|javelin|impaled", + "weapon_attributes": "bettercombat:trident" + }, + { + "item_id_regex": "katana", + "weapon_attributes": "bettercombat:katana" + }, + { + "item_id_regex": "rapier", + "weapon_attributes": "bettercombat:rapier" + }, + { + "item_id_regex": "sickle", + "weapon_attributes": "bettercombat:sickle" + }, + { + "item_id_regex": "soul_knife", + "weapon_attributes": "bettercombat:soul_knife" + }, + { + "item_id_regex": "dagger|knife", + "weapon_attributes": "bettercombat:dagger" + }, + { + "item_id_regex": "staff|wand|sceptre|stave|rod", + "weapon_attributes": "bettercombat:wand" + }, + { + "item_id_regex": "mace|hammer|flail", + "weapon_attributes": "bettercombat:mace" + }, + { + "item_id_regex": "axe", + "weapon_attributes": "bettercombat:axe" + }, + { + "item_id_regex": "coral_blade", + "weapon_attributes": "bettercombat:coral_blade" + }, + { + "item_id_regex": "twin_blade|twinblade", + "weapon_attributes": "bettercombat:twin_blade" + }, + { + "item_id_regex": "cutlass|scimitar|machete", + "weapon_attributes": "bettercombat:cutlass" + }, + { + "item_id_regex": "sword|blade", + "weapon_attributes": "bettercombat:sword" + } + ], + "ranged_weapons": [ + { + "item_id_regex": "two_handed_crossbow", + "weapon_attributes": "bettercombat:crossbow_two_handed_heavy" + }, + { + "item_id_regex": "two_handed_bow", + "weapon_attributes": "bettercombat:bow_two_handed_heavy" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/bettercombat/server.json5 b/minecraft/config/bettercombat/server.json5 new file mode 100644 index 0000000..712fed2 --- /dev/null +++ b/minecraft/config/bettercombat/server.json5 @@ -0,0 +1,95 @@ +{ + /* Upswing (aka windup) is the first phase of the attack (between clicking and performing the damage). + Typical duration of upswing is `weapon cooldown * 0.5`. (Weapon specific upswing values can be defined in weapon attributes) + This config allows you to change upswing duration. + Example values: + - `0.5` (default, fast paced attack initiation) upswing typically lasts 25% of the attack cooldown + - `1.0` (classic setting, realistic attack initiation) upswing typically lasts 50% of the attack cooldown + */ + "upswing_multiplier": 0.5, + // Bypass damage receive throttling of LivingEntity from player attacks. + "allow_fast_attacks": true, + // Allows client-side target search and server-side attack request execution against currently mounted entity of the player + "allow_attacking_mount": false, + // The minimum number of ticks between two attacks + "attack_interval_cap": 2, + /* Blacklist for entities that are acting as vehicle but should not be treated as protected mounts. + Classical example is an alexsmobs:crocodile attempting a death spin. + (Note all hostile mobs hittable by default, this config is to fix faulty mobs) + */ + "hostile_player_vehicles": [ + "alexsmobs:crocodile" + ], + // Allows vanilla sweeping mechanic to work and Sweeping Edge enchantment + "allow_vanilla_sweeping": false, + // Allows new sweeping mechanic (by Better Combat) to work, including Sweeping Edge enchantment + "allow_reworked_sweeping": true, + /* The more additional targets a weapon swing hits, the weaker it will get. + Entities struck (+1) in a swing more than this, won't get weakened any further. + */ + "reworked_sweeping_extra_target_count": 4, + /* Determines how weak the attack becomes when striking `reworked_sweeping_extra_target_count + 1` targets. + Example values: + - `0.5` -50% damage + */ + "reworked_sweeping_maximum_damage_penalty": 0.5, + /* The maximum level Sweeping Edge enchantment applied to the attackers weapon will restore this amount of penalty. + Example values: + - `0.5` restores 50% damage penalty when 3 levels are applied, so 16.66% when 1 level is applied + */ + "reworked_sweeping_enchant_restores": 0.5, + "reworked_sweeping_plays_sound": true, + "reworked_sweeping_emits_particles": true, + "reworked_sweeping_sound_and_particles_only_for_swords": true, + // Allows client-side target search to ignore obstacles. WARNING! Setting this to `false` significantly increases the load on clients. + "allow_attacking_thru_walls": false, + // Applies movement speed multiplier while attacking. (Min: 0, Max: 1). Use `0` for a full stop while attacking. Use `1` for no movement speed penalty + "movement_speed_while_attacking": 0.5, + // Determines if applying the movement speed multiplier while attacking is done smoothly or instantly + "movement_speed_applied_smoothly": true, + // Determines whether or not to apply movement speed reduction while attacking mounted + "movement_speed_effected_while_mounting": false, + // Attacks faster than a vanilla sword will do smaller knockback, proportionally. + "knockback_reduced_for_fast_attacks": true, + // Combo is reset after idling `combo_reset_rate * weapon_cooldown` + "combo_reset_rate": 3.0, + // Multiplier for `attack_range`, during target lookup on both sides. Large sized entities may be colliding with weapon hitbox, but center of entities can have bigger distance than `attack_range` + "target_search_range_multiplier": 2.0, + // Total multiplier, (examples: +30% = 1.3, -30% = 0.7) + "dual_wielding_attack_speed_multiplier": 1.2000000476837158, + // Total multiplier, (examples: +30% = 1.3, -30% = 0.7) + "dual_wielding_main_hand_damage_multiplier": 1.0, + // Total multiplier, (examples: +30% = 1.3, -30% = 0.7) + "dual_wielding_off_hand_damage_multiplier": 1.0, + /* Relations determine when players' undirected weapon swings (cleaves) will hurt another entity (target). + - `FRIENDLY` - The target can never be damaged by the player. + - `NEUTRAL` - The target can be damaged only if the player is directly looking at it. + - `HOSTILE` - The target can be damaged if located within the weapon swing area. + (NOTE: Vanilla sweeping can still hit targets, if not disabled via `allow_sweeping`) + + The various relation related configs are being checked in the following order: + - `player_relations` + - `player_relation_to_passives` + - `player_relation_to_hostiles` + - `player_relation_to_other` + (The first relation to be found for the target will be applied.) + */ + "player_relations": { + "minecraft:player": "NEUTRAL", + "minecraft:villager": "NEUTRAL", + "minecraft:iron_golem": "NEUTRAL", + "guardvillagers:guard": "NEUTRAL" + }, + // Relation to unspecified entities those are instance of PassiveEntity(Yarn) + "player_relation_to_passives": "HOSTILE", + // Relation to unspecified entities those are instance of HostileEntity(Yarn) + "player_relation_to_hostiles": "HOSTILE", + // Fallback relation + "player_relation_to_other": "HOSTILE", + // Try to guess and apply a preset for items without weapon attributes data file + "fallback_compatibility_enabled": true, + // Allow printing the content of weapon attributes registry + "weapon_registry_logging": false, + // Compress the weapon attributes registry for transmission + "weapon_registry_compression": true +} \ No newline at end of file diff --git a/minecraft/config/betterdeserttemples/forge-1_20/armorstands.json b/minecraft/config/betterdeserttemples/forge-1_20/armorstands.json index 4cb5228..1425c4e 100644 --- a/minecraft/config/betterdeserttemples/forge-1_20/armorstands.json +++ b/minecraft/config/betterdeserttemples/forge-1_20/armorstands.json @@ -15,36 +15,36 @@ }, "armoryChestplates": { "entries": { - "chainmail_chestplate": 0.3, - "golden_chestplate": 0.2 + "golden_chestplate": 0.2, + "chainmail_chestplate": 0.3 }, "defaultItem": "air" }, "wardrobeChestplates": { "entries": { - "chainmail_chestplate": 0.2, - "leather_chestplate": 0.4 + "leather_chestplate": 0.4, + "chainmail_chestplate": 0.2 }, "defaultItem": "air" }, "armoryLeggings": { "entries": { - "golden_leggings": 0.2, - "chainmail_leggings": 0.3 + "chainmail_leggings": 0.3, + "golden_leggings": 0.2 }, "defaultItem": "air" }, "wardrobeLeggings": { "entries": { - "leather_leggings": 0.4, - "chainmail_leggings": 0.2 + "chainmail_leggings": 0.2, + "leather_leggings": 0.4 }, "defaultItem": "air" }, "armoryBoots": { "entries": { - "golden_boots": 0.2, - "chainmail_boots": 0.3 + "chainmail_boots": 0.3, + "golden_boots": 0.2 }, "defaultItem": "air" }, diff --git a/minecraft/config/betterdeserttemples/forge-1_20/itemframes.json b/minecraft/config/betterdeserttemples/forge-1_20/itemframes.json index 8b7394b..e0422c7 100644 --- a/minecraft/config/betterdeserttemples/forge-1_20/itemframes.json +++ b/minecraft/config/betterdeserttemples/forge-1_20/itemframes.json @@ -1,30 +1,30 @@ { "armouryItems": { "entries": { - "stone_axe": 0.05, "bow": 0.1, + "name_tag": 0.05, "golden_axe": 0.1, + "golden_sword": 0.1, + "stone_axe": 0.05, "arrow": 0.05, "shield": 0.1, - "stone_sword": 0.05, - "golden_sword": 0.1, - "name_tag": 0.05 + "stone_sword": 0.05 }, "defaultItem": "air" }, "storageItems": { "entries": { - "potato": 0.2, - "cake": 0.1, + "pumpkin_seeds": 0.025, + "rabbit_foot": 0.01, + "honey_bottle": 0.1, "wheat_seeds": 0.025, "melon_seeds": 0.025, - "bread": 0.2, - "beetroot_seeds": 0.025, - "pumpkin_seeds": 0.025, - "honey_bottle": 0.1, - "slime_ball": 0.05, "cookie": 0.1, - "rabbit_foot": 0.01 + "bread": 0.2, + "potato": 0.2, + "cake": 0.1, + "slime_ball": 0.05, + "beetroot_seeds": 0.025 }, "defaultItem": "air" } diff --git a/minecraft/config/betterfortresses/forge-1_20/itemframes.json b/minecraft/config/betterfortresses/forge-1_20/itemframes.json index 09a493d..d819818 100644 --- a/minecraft/config/betterfortresses/forge-1_20/itemframes.json +++ b/minecraft/config/betterfortresses/forge-1_20/itemframes.json @@ -1,31 +1,31 @@ { "weaponItems": { "entries": { - "stone_axe": 0.025, - "netherite_sword": 0.005, "iron_sword": 0.025, - "iron_axe": 0.025, + "netherite_sword": 0.005, "golden_axe": 0.05, + "stone_axe": 0.025, "shield": 0.025, - "stone_sword": 0.025, - "golden_sword": 0.05 + "golden_sword": 0.05, + "iron_axe": 0.025, + "stone_sword": 0.025 }, "defaultItem": "air" }, "lootItems": { "entries": { - "gold_ingot": 0.1, "nether_wart": 0.1, + "gold_ingot": 0.1, "gold_nugget": 0.2 }, "defaultItem": "air" }, "studyItems": { "entries": { - "enchanted_book": 0.1, - "book": 0.4, + "writable_book": 0.1, "paper": 0.1, - "writable_book": 0.1 + "book": 0.4, + "enchanted_book": 0.1 }, "defaultItem": "air" }, diff --git a/minecraft/config/bettermodsbutton-client.toml b/minecraft/config/bettermodsbutton-client.toml new file mode 100644 index 0000000..123d878 --- /dev/null +++ b/minecraft/config/bettermodsbutton-client.toml @@ -0,0 +1,15 @@ +#Where to place mods button on main menu screen. Select "NO_CHANGE" to prevent any changes to the screen, useful for mod compatibility. +#Allowed Values: REPLACE_REALMS, LEFT_TO_REALMS, RIGHT_TO_REALMS, INSERT_BELOW_REALMS, NONE, NO_CHANGE +main_menu_mods_button = "INSERT_BELOW_REALMS" +#Add mod count to mods button. +add_mod_count = true +#Where to place mods button on pause menu screen. Select "NO_CHANGE" to prevent any changes to the screen, useful for mod compatibility. +#Allowed Values: REPLACE_FEEDBACK, REPLACE_BUGS, REPLACE_FEEDBACK_AND_BUGS, REPLACE_AND_MOVE_LAN, INSERT_AND_MOVE_LAN, INSERT_BELOW_FEEDBACK_AND_BUGS, NONE, NO_CHANGE +pause_screen_mods_button = "INSERT_BELOW_FEEDBACK_AND_BUGS" +#Show a small green orb indicating that mod updates are available. +update_notification = false +#Safe area in pixels from screen border for buttons to not be moved to prevent them from going off screen. +#Not effective for vanilla menu layouts, but can be useful when mods add buttons close to the border. +#Range: > 0 +safe_area = 24 + diff --git a/minecraft/config/betterstrongholds/forge-1_20/armorstands.json b/minecraft/config/betterstrongholds/forge-1_20/armorstands.json index f6a8977..ef161fc 100644 --- a/minecraft/config/betterstrongholds/forge-1_20/armorstands.json +++ b/minecraft/config/betterstrongholds/forge-1_20/armorstands.json @@ -1,10 +1,10 @@ { "commonHelmets": { "entries": { - "leather_helmet": 0.1, "chainmail_helmet": 0.3, - "carved_pumpkin": 0.01, - "iron_helmet": 0.3 + "iron_helmet": 0.3, + "leather_helmet": 0.1, + "carved_pumpkin": 0.01 }, "defaultItem": "air" }, @@ -17,8 +17,8 @@ }, "commonChestplates": { "entries": { - "chainmail_chestplate": 0.3, "leather_chestplate": 0.1, + "chainmail_chestplate": 0.3, "iron_chestplate": 0.3 }, "defaultItem": "air" @@ -46,8 +46,8 @@ "commonBoots": { "entries": { "leather_boots": 0.1, - "chainmail_boots": 0.3, - "iron_boots": 0.3 + "iron_boots": 0.3, + "chainmail_boots": 0.3 }, "defaultItem": "air" }, diff --git a/minecraft/config/betterstrongholds/forge-1_20/itemframes.json b/minecraft/config/betterstrongholds/forge-1_20/itemframes.json index 67df392..9137fd0 100644 --- a/minecraft/config/betterstrongholds/forge-1_20/itemframes.json +++ b/minecraft/config/betterstrongholds/forge-1_20/itemframes.json @@ -1,32 +1,32 @@ { "armouryItems": { "entries": { - "stone_axe": 0.05, - "bow": 0.1, "iron_sword": 0.1, - "iron_axe": 0.1, "golden_axe": 0.05, - "arrow": 0.05, + "name_tag": 0.05, + "stone_axe": 0.05, "shield": 0.1, - "stone_sword": 0.05, "golden_sword": 0.05, - "name_tag": 0.05 + "iron_axe": 0.1, + "arrow": 0.05, + "stone_sword": 0.05, + "bow": 0.1 }, "defaultItem": "air" }, "storageItems": { "entries": { - "cake": 0.05, - "compass": 0.05, - "wheat_seeds": 0.025, - "paper": 0.25, - "melon_seeds": 0.025, - "beetroot_seeds": 0.025, - "pumpkin_seeds": 0.025, - "slime_ball": 0.05, - "flint": 0.05, - "map": 0.25, "rabbit_foot": 0.01, + "slime_ball": 0.05, + "cake": 0.05, + "paper": 0.25, + "beetroot_seeds": 0.025, + "melon_seeds": 0.025, + "map": 0.25, + "compass": 0.05, + "pumpkin_seeds": 0.025, + "flint": 0.05, + "wheat_seeds": 0.025, "lead": 0.05 }, "defaultItem": "air" diff --git a/minecraft/config/betterstrongholds/forge-1_20/ores.json b/minecraft/config/betterstrongholds/forge-1_20/ores.json index 03a48b8..8b2da37 100644 --- a/minecraft/config/betterstrongholds/forge-1_20/ores.json +++ b/minecraft/config/betterstrongholds/forge-1_20/ores.json @@ -1,13 +1,13 @@ { "oreChances": { "entries": { - "minecraft:redstone_ore[lit=false]": 0.15, - "minecraft:diamond_ore": 0.05, + "minecraft:gold_ore": 0.2, + "minecraft:lapis_ore": 0.15, "minecraft:iron_ore": 0.2, "minecraft:emerald_ore": 0.05, - "minecraft:gold_ore": 0.2, - "minecraft:coal_ore": 0.2, - "minecraft:lapis_ore": 0.15 + "minecraft:redstone_ore[lit=false]": 0.15, + "minecraft:diamond_ore": 0.05, + "minecraft:coal_ore": 0.2 }, "defaultBlock": "minecraft:coal_ore" } diff --git a/minecraft/config/bhmenu-client.toml b/minecraft/config/bhmenu-client.toml new file mode 100644 index 0000000..e375601 --- /dev/null +++ b/minecraft/config/bhmenu-client.toml @@ -0,0 +1,53 @@ +#Your partner ID to use in during the ordering process. +#Without this you will not be credited for the purchases. +#(Your partner id is not the same as your referral link, please check your client area to find your partner id at https://www.bisecthosting.com/partners/console.php). +partner_id = "2435" +#The id of this modpack. +#(This is BH internal pack id; Find the id here: https://www.bisecthosting.com/partners/console.php) +pack_id = "25159" +#Set this to false to disable pack config screen and enable user configs instead. +#This should always be done by the pack author once they are done with configuring the pack. +#To re-enable Pack Edit Mode, please edit the config file. +pack_edit_mode = true + +[modules] + + [modules.server_creator_banner] + enabled = true + + #Modpack Configs + [modules.server_creator_banner.pack] + #The title to display at the top of the entry. + title = "Need a server?" + #The description to display below the title. + description = "Click me to get your own server!" + #Set this to true to use specific language translation keys. + #This requires a custom mod that adds resource files, such as OpenLoader. + #Use 'server_entry.title' key for the Title; + #Use 'server_entry.description' key for the Description. + use_language_files = false + + [modules.public_server_list] + enabled = true + + #Modpack Configs + [modules.public_server_list.pack] + + #Open Public Screen List Button + [modules.public_server_list.pack.open_screen_button] + #The position of the button from the left of the screen. + #Set to -1 to default. + #Range: > -1 + x = -1 + #The position of the button from the top of the screen. + #Set to -1 to default. + #Range: > -1 + y = -1 + #The width of the button. + #Set to 0 to default. + #Range: 0 ~ 400 + width = 0 + #Turn the Public Server List button into a vanilla styled one. + #Causes default vanilla graphics and might help with compatibility with other mods. + vanillaButton = false + diff --git a/minecraft/config/biggerstacks-client.toml b/minecraft/config/biggerstacks-client.toml new file mode 100644 index 0000000..4ee4ab8 --- /dev/null +++ b/minecraft/config/biggerstacks-client.toml @@ -0,0 +1,23 @@ +#Client configs +#Enable number shortening. E.g. 1000000 becomes 1M. +"Enable number shortening" = true +#The colour of the exact count tooltip shown on items. +#Available colours (case insensitive): +#aqua, +#black, +#blue, +#dark_aqua, +#dark_blue, +#dark_gray, +#dark_green, +#dark_purple, +#dark_red, +#gold, +#gray, +#green, +#light_purple, +#red, +#white, +#yellow +"Exact count number colour" = "dark_aqua" + diff --git a/minecraft/config/biggerstacks-local.toml b/minecraft/config/biggerstacks-local.toml new file mode 100644 index 0000000..2881180 --- /dev/null +++ b/minecraft/config/biggerstacks-local.toml @@ -0,0 +1,13 @@ + +[biggerstacks] + #Whether to increase max transfer rate of some mods to the new stack limit/t. + #E.g. if max stack limit is 1000, it will become 1000 items per tick (where applicable). + #How this is done will vary for each mod + #- Modular routers will require more stack upgrades + #- Pipez does not need this option, it has a config for transfer rate, which you can set to anything + #- Mekanism also has its own config value, though the logistical sorter has its extract rate increased + #- Pretty pipes has its extract rate scaled up + #- XNet can already extract a variable amount, but you will be able to go past 64 to the new maximum stack limit + #- Cyclic still extracts 1 stack (more than 64 items) per tick, but the size of the stack is adjusted + "Increase transfer rate" = true + diff --git a/minecraft/config/biggerstacks-rules.xml b/minecraft/config/biggerstacks-rules.xml new file mode 100644 index 0000000..6869179 --- /dev/null +++ b/minecraft/config/biggerstacks-rules.xml @@ -0,0 +1,20 @@ + + + + id = minecraft:enchanted_book + + + + id = minecraft:potion + id = minecraft:splash_potion + id = minecraft:lingering_potion + + + + stacksize gt 1 + + \ No newline at end of file diff --git a/minecraft/config/biomemusic.json b/minecraft/config/biomemusic.json new file mode 100644 index 0000000..b0ccc9e --- /dev/null +++ b/minecraft/config/biomemusic.json @@ -0,0 +1,65 @@ +{ + "delayModifier": { + "desc:": "Modifies the delay between songs(requires a game restart), lower = shorter delay (1.0 = vanilla). Default = 0.25", + "delayModifier": 0.35 + }, + "pitchVariance": { + "desc:": "Adds randomized pitch variance of up to the given value (e.g. 0.1), makes songs sound slightly different. default = 0", + "pitchVariance": 0.0 + }, + "musicVariance": { + "desc:": "Enables more varied music to be available for biomes chosen from similar other biomes, default = true", + "musicVariance": true + }, + "smartMusic": { + "desc:": "Enables smart stopping of music, when the biome changes or player leaves a cave/water/night is over, default = true", + "smartMusic": true + }, + "stopMusicForRecords": { + "desc:": "Enables Jukeboxes and records playing to stop the current background music, default = true", + "stopMusicForRecords": true + }, + "musicConditions": { + "desc:": "Sets the condition under which music from their respective categories is allowed to play. Required conditions need to be all met, a single matched disallowed conditions prevents it. Possible conditions are: [OVERWORLD, OTHERDIMENSIONS, CAVE, WATER, NIGHT, NETHER, END]", + "Biome": { + "requires": "[]", + "disallowed": "[]" + }, + "Cave": { + "requires": "[CAVE]", + "disallowed": "[WATER, NETHER, END]" + }, + "Night": { + "requires": "[NIGHT]", + "disallowed": "[WATER, CAVE, NETHER, END]" + }, + "Water": { + "requires": "[WATER]", + "disallowed": "[NETHER, END]" + }, + "Game": { + "requires": "[]", + "disallowed": "[WATER, NETHER, END]" + }, + "End": { + "requires": "[END]", + "disallowed": "[]" + }, + "Nether": { + "requires": "[NETHER]", + "disallowed": "[]" + } + }, + "displayMusicPlayed": { + "desc:": "Shows currently played music in chat/log, default = false", + "displayMusicPlayed": false + }, + "logloadedmusic": { + "desc:": "Prints the music files getting loaded into the latest.log, default = false", + "logloadedmusic": false + }, + "maxConcurrentSounds": { + "desc:": "Set the maximum amount of times the same sound can play at the same time. Limits the amount of lag spamming sounds can create. Default = 10", + "maxConcurrentSounds": 10 + } +} \ No newline at end of file diff --git a/minecraft/config/biomeswevegone/world_generation.json5 b/minecraft/config/biomeswevegone/world_generation.json5 new file mode 100644 index 0000000..9d1662a --- /dev/null +++ b/minecraft/config/biomeswevegone/world_generation.json5 @@ -0,0 +1,71 @@ +{ + // Which biomes are enabled, if disabled the biome will default to its vanilla counterpart for the given region + "enabled_biomes": { + "biomeswevegone:cypress_wetlands": true, + "biomeswevegone:skyris_vale": true, + "biomeswevegone:amaranth_grassland": true, + "biomeswevegone:rose_fields": true, + "biomeswevegone:enchanted_tangle": true, + "biomeswevegone:sierra_badlands": true, + "biomeswevegone:eroded_borealis": false, + "biomeswevegone:red_rock_valley": true, + "biomeswevegone:firecracker_chaparral": true, + "biomeswevegone:temperate_grove": true, + "biomeswevegone:zelkova_forest": true, + "biomeswevegone:cypress_swamplands": true, + "biomeswevegone:white_mangrove_marshes": true, + "biomeswevegone:bayou": true, + "biomeswevegone:araucaria_savanna": true, + "biomeswevegone:black_forest": true, + "biomeswevegone:prairie": true, + "biomeswevegone:shattered_glacier": true, + "biomeswevegone:frosted_taiga": true, + "biomeswevegone:dacite_shore": true, + "biomeswevegone:basalt_barrera": true, + "biomeswevegone:crimson_tundra": true, + "biomeswevegone:redwood_thicket": true, + "biomeswevegone:aspen_boreal": true, + "biomeswevegone:mojave_desert": true, + "biomeswevegone:ebony_woods": true, + "biomeswevegone:baobab_savanna": true, + "biomeswevegone:coconino_meadow": true, + "biomeswevegone:crag_gardens": true, + "biomeswevegone:pumpkin_valley": true, + "biomeswevegone:windswept_desert": true, + "biomeswevegone:canadian_shield": true, + "biomeswevegone:forgotten_forest": true, + "biomeswevegone:rugged_badlands": true, + "biomeswevegone:red_rock_peaks": true, + "biomeswevegone:allium_shrubland": true, + "biomeswevegone:dacite_ridges": true, + "biomeswevegone:maple_taiga": true, + "biomeswevegone:howling_peaks": true, + "biomeswevegone:coniferous_forest": true, + "biomeswevegone:weeping_witch_forest": true, + "biomeswevegone:orchard": true, + "biomeswevegone:dead_sea": true, + "biomeswevegone:jacaranda_jungle": true, + "biomeswevegone:fragment_jungle": true, + "biomeswevegone:lush_stacks": true, + "biomeswevegone:atacama_outback": true, + "biomeswevegone:rainbow_beach": true, + "biomeswevegone:sakura_grove": true, + "biomeswevegone:cika_woods": true, + "biomeswevegone:overgrowth_woodlands": true, + "biomeswevegone:ironwood_gour": true, + "biomeswevegone:frosted_coniferous_forest": true, + "biomeswevegone:tropical_rainforest": true, + }, + // How much each BWG region weighs. This weight applies to all 3 BWG Regions + "region_weight": 8, + // Whether to add bwg flowers and features to Vanilla Biomes (Config Option for Fabric Only) + "vanilla_additions": true, + // BWG Features that we add to Vanilla Biomes + "enabled_vanilla_additions": { + "biomeswevegone:vanilla/flower_default": true, + "biomeswevegone:vanilla/forest_flowers": true, + "biomeswevegone:palm_trees": true, + "biomeswevegone:vanilla/flower_warm": true, + "biomeswevegone:vanilla/flower_plains": true, + }, +} \ No newline at end of file diff --git a/minecraft/config/bloodmagic-client.toml b/minecraft/config/bloodmagic-client.toml new file mode 100644 index 0000000..4be68fd --- /dev/null +++ b/minecraft/config/bloodmagic-client.toml @@ -0,0 +1,9 @@ + +#Always render the beams between routing nodes. +#If disabled, the beams will only render while the Node Router is held. +[client] + alwaysRenderRoutingLines = false + #When cycling through slots, the Sigil of Holding will skip over empty slots and move to the next occupied one. + #If disabled, it will behave identically to the default hotbar. + sigilHoldingSkipsEmptySlots = false + diff --git a/minecraft/config/bloodmagic-common.toml b/minecraft/config/bloodmagic-common.toml new file mode 100644 index 0000000..4b55fca --- /dev/null +++ b/minecraft/config/bloodmagic-common.toml @@ -0,0 +1,78 @@ +#Amount of LP the Sacrificial Dagger should provide for each damage dealt. Default value 100 +#Range: 0 ~ 10000 +sacrificialDaggerConversion = 100 +#Declares the amount of LP gained per HP sacrificed for the given entity. +#Setting the value to 0 will blacklist it. +#Use the registry name of the entity followed by a ';' and then the value you want. +#Vanilla entities do not require the modid. +sacrificialValues = ["villager;100", "slime;15", "enderman;10", "cow;100", "chicken;100", "horse;100", "sheep;100", "wolf;100", "ocelot;100", "pig;100", "rabbit;100", "dummmmmmy:target_dummy;0"] +#Stops the listed entities from being used in the Well of Suffering. +#Use the registry name of the entity. Vanilla entities do not require the modid. +wellOfSuffering = ["dummmmmmy:target_dummy"] +#Declares the amount of LP gained per HP sacrificed for any entity not defined specifically. Default value 25 +#Range: 0 ~ 10000 +defaultSacrificeValue = 25 +#Amount of upgrade points the living armour has by default. Default value 100 +#Range: 0 ~ 2000000000 +default_upgrade_points = 100 +#Amount of upgrade points the living armour has when evolved. Default value 300 +#Range: 0 ~ 2000000000 +evolved_upgrade_points = 300 +#State that the dungeon spawning ritual can only be activated when using a Creative Activation Crystal. +#Used on servers for if you do not trust your players to not destroy other people's bases. +makeDungeonRitualCreativeOnly = false + +["Geode Ritual"] + activation_cost = 50000 + refresh_cost = 50 + min_raw_will = 50.0 + min_corrosive_will = 50.0 + min_destructive_will = 50.0 + min_steadfast_will = 50.0 + min_vengeful_will = 50.0 + store_cost = 1.0 + harm_cost = 0.125 + fortune_cost = 1.0 + silk_touch_cost = 1.0 + growth_cost = 0.5 + hurt_damage = 2 + #Range: 1 ~ 15 + max_budding_blocks = 7 + max_harmed = 8 + +#LP costs for sigils. For toggleable sigils, this is the upkeep cost drained every 5 seconds while active. +[sigil_cost] + #LP cost per use + #Range: 0 ~ 10000000 + air = 50 + #LP cost per use + #Range: 0 ~ 10000000 + blood_light = 10 + #LP cost per use + #Range: 0 ~ 10000000 + water = 100 + #LP cost per use + #Range: 0 ~ 10000000 + lava = 1000 + #LP cost per use + #Range: 0 ~ 10000000 + void = 50 + #LP cost per use + #Range: 0 ~ 10000000 + teleposition = 1000 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + fast_miner = 100 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + green_grove = 150 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + frost = 100 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + magnetism = 50 + #LP upkeep cost (drained every 5 seconds while active) + #Range: 0 ~ 10000000 + suppression = 400 + diff --git a/minecraft/config/blue_skies-client.toml b/minecraft/config/blue_skies-client.toml new file mode 100644 index 0000000..fa3b654 --- /dev/null +++ b/minecraft/config/blue_skies-client.toml @@ -0,0 +1,37 @@ + +[Visuals] + # + # Should blue skies override the title screen panorama. + # Default: true + custom_panorama = true + # + # Whether or not brightness should be capped when inside the dimensions for aesthetic purposes. + # Default: true + limit_brightness = true + +["Inventory Tabs"] + # + # If set to true, inventory tabs will use simple buttons that can be placed anywhere on the screen. + # Default: false + use_simple_inventory_tabs = false + + ["Inventory Tabs"."Sliding Tabs"] + # + # If set to true, inventory tabs appear on the bottom left corner instead of the bottom right. + # Default: false + left_align = false + + ["Inventory Tabs".Buttons] + # + # The x position of the inventory tabs. + # Default: -88 + x = -88 + # + # The y position of the inventory tabs. + # Default: -83 + y = -83 + # + # If set to true, inventory tabs are sorted vertically. If set to false, they are sorted horizontally. + # Default: false + is_vertical = false + diff --git a/minecraft/config/blue_skies-common.toml b/minecraft/config/blue_skies-common.toml new file mode 100644 index 0000000..5ccbe85 --- /dev/null +++ b/minecraft/config/blue_skies-common.toml @@ -0,0 +1,45 @@ + +[Debug] + # + # When loading files from datapacks, set this to true to log missing registry data for things like items. + # Default: false + log_missing_registry_data_for_datapacks = false + # + # When true, generated world regions, 1024 blocks wide, will be saved as a file to make generating chunks faster in already visited areas. If file size is a concern or issues arise, this may be disabled. + # Default: true + write_world_regions_to_disk = true + # + # When printing "Blue Skies' player capability wasn't present for...", crash the game. + # Default: false + crash_on_missing_capability_for_dungeon = false + +["Holiday Content"] + # + # Determines if Halloween cosmetic effects should happen. + # Default: true + allow_halloween_content = true + # + # Determines if Christmas cosmetic effects should happen. + # Default: true + allow_christmas_content = true + +[Gatekeeper] + # + # The emerald cost for the Zeal Lighter sold by the Gatekeeper. + # Default: 8 + zeal_lighter_cost = 8 + +["Mod Compatibility"] + # + # A list of mods that are allowed to generate features in the Everbright and Everdawn. + # This does not make them generate, it just allows them to pass the filter. + # Example: ["minecraft", "farlanders", "botania"] + # Default: [] + allowed_mods_for_feature_gen = [] + # + # A list of mobs that are allowed to spawn in the Everbright and Everdawn. + # This does not make them spawn, it just allows them to pass the filter. + # Example: ["minecraft:bee", "moolands:awful_cow", "alexs_mobs:grizzly_bear"] + # Default: [] + allowed_mobs_for_spawning = [] + diff --git a/minecraft/config/boatiview-client.toml b/minecraft/config/boatiview-client.toml new file mode 100644 index 0000000..73b7d43 --- /dev/null +++ b/minecraft/config/boatiview-client.toml @@ -0,0 +1,9 @@ + +["Client Settings"] + #Toggle whether the hand should be rendered whilst the boat is moving + showHandsInMovingBoat = true + #List of items that will make the hand display when a boat is moving + #Seperate every entry except the last one with commas + #To include all items for a particular modid use the wildcard character '*'. E.g. modid:* + itemsToShowInMovingBoat = ["minecraft:filled_map"] + diff --git a/minecraft/config/botania-client.toml b/minecraft/config/botania-client.toml new file mode 100644 index 0000000..ef27c8f --- /dev/null +++ b/minecraft/config/botania-client.toml @@ -0,0 +1,45 @@ +#Set this to false to disable seasonal features, such as halloween and christmas. +seasonalFeatures = true +#Set to false to disable Botania's messages in the F3 debug screen +debugInfo = true +#Set this to false to disable the references in the flower tooltips. (You monster D:) +references = true +#Set this to false to disable Botania's splashes in the main menu. +splashes = true + +[rendering] + #Set this to false to disable the use of shaders for some of the mod's renders. (Requires game restart) + shaders = true + #Set this to false to disable the wireframe when looking a block bound to something (spreaders, flowers, etc). + boundBlockWireframe = true + #Set this to false to disable rendering of accessories in the player. + accessories = true + #The height of the mana display bar in above the XP bar. You can change this if you have a mod that changes where the XP bar is. + #Range: > 0 + manaBarHeight = 29 + #Set this to true if you use lots of floating flowers and are experiencing rendering lag. Will disable the floating flowers' animations and render them statically for a major performance boost. Hit F3+A in-world after toggling this. + staticFloaters = true + + [rendering.fancySkybox] + #Set this to false to disable the fancy skybox in Garden of Glass + enabled = true + #Set this to true to enable the fancy skybox in non Garden of Glass worlds. (Does not require Garden of Glass loaded to use, needs 'fancySkybox.enabled' to be true as well) + normalWorlds = false + + [rendering.lexicon] + #Set this to false to disable the rotating items in the petal and rune entries in the Lexica Botania. + rotatingItems = true + #Set this to false to disable the animated 3D render for the Lexica Botania. + render_3d = true + +[particles] + #Set this to true to set the power system's particles to be a lot more subtle. Good for low-end systems, if the particles are causing lag. + powerSystem = true + #Set this to true to use a static wand beam that shows every single position of the burst, similar to the way it used to work on old Botania versions. Warning: Disabled by default because it may be laggy. + staticWandBeam = false + #The frequency in which particles spawn from normal (worldgen) mystical flowers + #Range: 4.9E-324 ~ 1.7976931348623157E308 + flowerFrequency = 0.5 + #Set this to false to disable the particles in the elven portal. + elvenPortal = true + diff --git a/minecraft/config/botania-common.toml b/minecraft/config/botania-common.toml new file mode 100644 index 0000000..9e0d3a4 --- /dev/null +++ b/minecraft/config/botania-common.toml @@ -0,0 +1,51 @@ +#Set this to false to disable the animation when an item is charging on top of a mana pool +chargeAnimation = true +#Turn this off ONLY IF you're on an extremely large world with an exaggerated count of Mana Spreaders/Mana Pools and are experiencing TPS lag. This toggles whether flowers are strict with their checking for connecting to pools/spreaders or just check whenever possible. +flowerBindingForceCheck = true +#Set to false to disable the ability for the Hand of Ender to pickpocket other players' ender chests +enderPickpocket = true +#Set this to false to disable the Mana Enchanter. Since some people find it OP or something. This only disables the entry and creation. Old ones that are already in the world will stay. +manaEnchanter = true +#Set this to false to disable the Relic System. This only disables the entries, drops and achievements. Old ones that are already in the world will stay. +relics = true +#Set this to true to invert the Ring of Magnetization's controls (from shift to stop to shift to work) +invertMagnetRing = false + +[blockBreakingParticles] + #Set this to false to remove the block breaking particles from the flowers and other items in the mod. + enabled = true + #Set this to false to remove the block breaking particles from the Terra Shatterer, as there can be a good amount in higher levels. + toolEnabled = true + +[manaSpreaders] + #Set this to true to disable the mana spreader shooting sound + silent = false + #How many ticks into the future will mana spreaders attempt to predict where mana bursts go? Setting this lower will improve spreader performance, but will cause them to not fire at targets that are too far away. + #Range: > 1 + traceTime = 400 + +[harvestLevels] + #The harvest level of the Mana Lens: Weight. 3 is diamond level. Defaults to 2 (iron level) + #Range: > 0 + weightLens = 2 + #The harvest level of the Mana Lens: Bore. 3 is diamond level. Defaults to 3 + #Range: > 0 + boreLens = 3 + +[gardenOfGlass] + #Set this to false to disable spawning with a Lexica Botania in Garden of Glass worlds, if you are modifying the modpack's progression to not start with Botania. + spawnWithLexicon = true + #The multiplier for island distances for multiplayer Garden of Glass worlds. + #Islands are placed on a grid with 256 blocks between points, with the spawn island always being placed on 256, 256. + #By default, the scale is 8, putting each island on points separated by 2048 blocks. + #Values below 4 (1024 block spacing) are not recommended due to Nether portal collisions. + #Range: 1 ~ 512 + islandScaleMultiplier = 8 + +[rannuncarpus] + #List of item registry names that will be ignored by rannuncarpuses when placing blocks. + itemBlacklist = [] + #List of mod names for rannuncarpuses to ignore. + #Ignores Storage Drawers by default due to crashes with placing drawer blocks without player involvement. + modBlacklist = ["storagedrawers"] + diff --git a/minecraft/config/botaniajei-client.toml b/minecraft/config/botaniajei-client.toml new file mode 100644 index 0000000..66f6cc9 --- /dev/null +++ b/minecraft/config/botaniajei-client.toml @@ -0,0 +1,6 @@ + +#JEI Text Color. Format: HEX or RGB (e.g 0x404040FF, 1077952767) +[colorizing] + #Range: > 0 + jeiTextColor = 0 + diff --git a/minecraft/config/botanicalmachinery/client.json5 b/minecraft/config/botanicalmachinery/client.json5 new file mode 100644 index 0000000..a36fa18 --- /dev/null +++ b/minecraft/config/botanicalmachinery/client.json5 @@ -0,0 +1,18 @@ +{ + // Should mana in GUIs be displayed with numbers? + "numericalMana": true, + + // If you turn this off, the special rendering is disabled for all machines and ignores the other config options + "AdvancedRendering": { + + "alfheimMarket": true, + "all": true, + "industrialAgglomerationFactory": true, + "mechanicalApothecary": true, + "mechanicalBrewery": true, + "mechanicalDaisy": true, + "mechanicalManaInfuser": true, + "mechanicalManaPool": true, + "mechanicalRunicAltar": true + } +} diff --git a/minecraft/config/botanicalmachinery/server.json5 b/minecraft/config/botanicalmachinery/server.json5 new file mode 100644 index 0000000..e672bbe --- /dev/null +++ b/minecraft/config/botanicalmachinery/server.json5 @@ -0,0 +1,70 @@ +{ + // This is a resource list. See https://moddingx.org/libx/org/moddingx/libx/util/data/ResourceList.html#use_resource_lists_in_configs + "autoExportAllowed": { + "allow_list": true, + "elements": [ + "ae2:pattern_provider", + "ae2:cable_bus" + ] + }, + + // The amount of mana used in alfheim market to trade items [Default: 500] + "AlfheimMarket": { + + // Minimum: 1 + "recipeCost": 500 + }, + + // The default amount of mana capacity in each machine. + "MaxManaCapacity": { + + // Minimum: 1 + "alfheimMarket": 100000, + + // Minimum: 500000 + "industrialAgglomerationFactory": 1000000, + + // Minimum: 1 + "manaBattery": 10000000, + + // Minimum: 1 + "mechanicalBrewery": 100000, + + // Minimum: 2500000 + "mechanicalManaInfuser": 5000000, + + // Minimum: 1 + "mechanicalManaPool": 100000, + + // Minimum: 1 + "mechanicalRunicAltar": 250000 + }, + + // The default duration multiplied with this will be the used working duration. + "WorkingDurationMultiplier": { + + // Range: 1 - 25 + "alfheimMarket": 1, + + // Range: 1 - 5000 + "industrialAgglomerationFactory": 1, + + // Minimum: 1 + "mechanicalApothecary": 1, + + // Range: 1 - 50 + "mechanicalBrewery": 1, + + // Minimum: 1 + "mechanicalDaisy": 1, + + // Range: 1 - 5000 + "mechanicalManaInfuser": 1, + + // Minimum: 1 + "mechanicalManaPool": 1, + + // Range: 1 - 100 + "mechanicalRunicAltar": 1 + } +} diff --git a/minecraft/config/botanypotstiers-common.toml b/minecraft/config/botanypotstiers-common.toml new file mode 100644 index 0000000..24440a2 --- /dev/null +++ b/minecraft/config/botanypotstiers-common.toml @@ -0,0 +1,27 @@ + +["Botany Pots Tiers Options"] + # + #Elite Botany Pot Speed + #Range: > 1 + eliteBotanyPotSpeed = 2 + # + #Elite Botany Pot Multiplier + #Range: > 1 + eliteBotanyPotMultiplier = 2 + # + #Ultra Botany Pot Speed + #Range: > 1 + ultraBotanyPotSpeed = 6 + # + #Ultra Botany Pot Multiplier + #Range: > 1 + ultraBotanyPotMultiplier = 6 + # + #Creative Botany Pot Speed + #Range: > 1 + creativeBotanyPotSpeed = 10 + # + #Creative Botany Pot Multiplier + #Range: > 1 + creativeBotanyPotMultiplier = 10 + diff --git a/minecraft/config/brandon3055/DraconicAdditions.cfg b/minecraft/config/brandon3055/DraconicAdditions.cfg new file mode 100644 index 0000000..200031c --- /dev/null +++ b/minecraft/config/brandon3055/DraconicAdditions.cfg @@ -0,0 +1,76 @@ +"Server" { + # This is a randomly generated ID that clients will use to map config settings from this server. + S:"serverID"="873cebd2-2dcd-4ccc-bdeb-992994531403" + + # These allow you to tweak the stats of the curios found in this mod. + "Armor Tweaks" { + # A multiplier to the amount of OP that the Infused Armor can store. + D:"infusedCapacityMultiplier"=1.0 + } + + # These allow you to tweak the stats of the curios found in this mod. + "Curios Tweaks" { + # A multiplier to the amount of OP that the Modular Necklace can store. + D:"necklaceCapacityMultiplier"=1.0 + + # A multiplier to the amount of OP that the Modular Harness can store. + D:"harnessCapacityMultiplier"=1.0 + + # Whether to allow the Modular Harness to tick it's stored machine while it's equipped. Note: this item is currently bugged and you WILL corrupt your world if you turn this on. + B:"harnessTickInCuriosSlot"=false + + # Whether to allow the Modular Harness to tick it's stored machine when it's not equipped. Note: this item is currently bugged and you WILL corrupt your world if you turn this on. + B:"harnessTickOutOfCuriosSlot"=false + } + + # These allow you to tweak the stats of the tools found in this mod. + "Tool Tweaks" { + # Sets how much RF Hermal provides when powered. + L:"hermalRFAmount"=10000 + + # Sets how much RF the chaos container should consume per tick for every bucket of chaos. + D:"chaosContainerRFMultiplier"=1.0 + } + + # Allows you to tweak various settings for Draconic Additions Modules. + "Module Tweaks" { + # The amount of half-shanks that the Chaotic Auto-Feed Module can store. + D:"chaoticFeedAmount"=1000.0 + + # The extra ticks that the Draconic Tick Accelerator provides. As the number of extra ticks go up, the RF cost increases dramatically. + I:"draconicAccelTicks"=1 + + # Same as the above, but for the Chaotic Tick Accelerator. + I:"chaoticAccelTicks"=2 + + # The maximum amount of liquid chaos each Semi-Stable Chaos Holder can contain. + I:"semiStableChaosMax"=2500 + + # The maximum amount of entropy each Semi-Stable Chaos Holder can have when modifying the amount of chaos stored. + I:"semiStableInstabilityMax"=100 + + # The maximum amount of liquid chaos each Stable Chaos Holder can contain. + I:"stableChaosMax"=1000 + + # The maximum amount of entropy each Stable Chaos Holder can have when modifying the amount of chaos stored. + I:"stableInstabilityMax"=20 + + # The maximum amount of liquid chaos each Unstable Chaos Holder can contain. + I:"unstableChaosMax"=5000 + + # The maximum amount of entropy each Unstable Chaos Holder can have when modifying the amount of chaos stored. + I:"unstableInstabilityMax"=200 + + # How many half-hearts the Chaos Injection System can extract/fill every 5 ticks. + I:"chaosInjectorRate"=2 + } + + # Allows you to tweak various things about Draconic Evolution and Draconic Additions as a whole, such as Fusion Crafting power costs. + "Misc Tweaks" { + # Allows you to multiply all Fusion Crafting OP costs across both Draconic Evolution and Draconic Additions by this amount. + D:"fusionCraftingCosts"=1.0 + + # Enables non-canon content. Not suited for general play, but content isn't unbalanced. + B:"enableMemes"=false + } +} diff --git a/minecraft/config/buildersaddition-common.toml b/minecraft/config/buildersaddition-common.toml new file mode 100644 index 0000000..37b8fdd --- /dev/null +++ b/minecraft/config/buildersaddition-common.toml @@ -0,0 +1,26 @@ + +#General Settings +[general] + #Enable storage checking for blocked access. + inv_access_block_check = true + #Whether Flint & Steel is required to light a candle. + require_flint_and_steel = true + #Whether the creation of pathblocks (added by this mod) using a shovel is enabled. + pathblock_creation_enabled = true + #Whether the creation of cracked block variants using a pickaxe is enabled. + cracked_creation_enabled = true + #If set true, pillars will connecto to all other pillar types. + pillars_connect_all = false + +#Midi Settings +[midi] + #Enable server MIDI. + midi_enable = true + #Enable MIDI input. + midi_input_enable = false + #Enable MIDI client sound. + midi_sound_enable = true + #Max number of notes played per 20 ticks. + #Range: 0 ~ 200 + midi_note_limit = 75 + diff --git a/minecraft/config/buzzier_bees-common.toml b/minecraft/config/buzzier_bees-common.toml new file mode 100644 index 0000000..c2488c9 --- /dev/null +++ b/minecraft/config/buzzier_bees-common.toml @@ -0,0 +1,9 @@ + +[items] + + [items.bone_meal] + #If tall flowers can be fertilized with Bone Meal to duplicate + "Tall flower fertilizing" = true + #If short flowers can be fertilized with Bone Meal to duplicate + "Short flower fertilizing" = true + diff --git a/minecraft/config/bwncr-common.toml b/minecraft/config/bwncr-common.toml new file mode 100644 index 0000000..89c14aa --- /dev/null +++ b/minecraft/config/bwncr-common.toml @@ -0,0 +1,16 @@ + +[General] + #Silence the server-wide Wither spawn and death broadcast sounds. + silenceWither = true + #Silence the wandering trader's ambient sound. + silenceTrader = true + #Silence the server-wide Ender Dragon Death broadcast sound. + silenceDragon = true + #Silence the server-wide Thunder broadcast sound caused by the Lightning event + silenceLightning = true + #A list of sounds to silence, discoverable with the toggle command /listen + #enter one sound event per line with no commas. + silenceUs = [""] + #If enabled the console will load up spam showing what sounds are being received and whether or not they are being canceled + debugMode = false + diff --git a/minecraft/config/camping-common.toml b/minecraft/config/camping-common.toml new file mode 100644 index 0000000..a4b3c14 --- /dev/null +++ b/minecraft/config/camping-common.toml @@ -0,0 +1,4 @@ +enableGrilling = true +enableGlint = true +enableEffect = true + diff --git a/minecraft/config/canary.properties b/minecraft/config/canary.properties new file mode 100644 index 0000000..d974709 --- /dev/null +++ b/minecraft/config/canary.properties @@ -0,0 +1,8 @@ +# This is the configuration file for Canary. +# This file exists for debugging purposes and should not be configured otherwise. +# Before configuring anything, take a backup of the worlds that will be opened. +# +# You can find information on editing this file and all the available options here: +# https://github.com/AbdElAziz333/Canary/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/minecraft/config/cataclysm.toml b/minecraft/config/cataclysm.toml new file mode 100644 index 0000000..63cc5dd --- /dev/null +++ b/minecraft/config/cataclysm.toml @@ -0,0 +1,656 @@ + +[Etc] + #Off the Custom Rendering + shadersCompat = true + #ScreenShake(on/off) + "ScreenShake(on/off)" = true + #Forced viewpoint change when hit by a grab attack + "setThirdPerson(on/off)" = true + #Forced viewpoint change when hit by a grab attack + "setFirstPerson(on/off)" = true + +["bosses Common settings"] + #custombossbar(on/off) + "custombossbar(on/off)" = true + #If the boss leaves the summoned location and there is no target, it returns to the summoned location. When set to 0, it does not return + #Range: 0 ~ 200 + ReturnHome = 20 + +["bosses Music"] + #BossMusic(on/off) + "BossMusic(on/off)" = true + #BossMusicVolume(denominator) + #Range: 1 ~ 1000000 + BossMusicVolume = 1 + #Enable separate music per boss phase + "IgnisSeparatePhaseMusic(on/off)" = true + #Enable separate music per boss phase + "EnderGuardianSeparatePhaseMusic(on/off)" = true + #Enable separate music per boss phase + "LeviathanSeparatePhaseMusic(on/off)" = true + +[Weapon] + #Armor Infinity Durability(on/off) + "Armor Infinity Durability(on/off)" = true + #Bulwark of the Flame's Cooldown + #Range: 0 ~ 1000000 + BulwarkOfTheFlameCooldown = 80 + #Gauntlet of Bulwark's Cooldown + #Range: 0 ~ 1000000 + GauntletOfBulwarkCooldown = 80 + #Infernal Forge's Cooldown + #Range: 0 ~ 1000000 + InfernalForgeCooldown = 80 + #Void Forge's Cooldown + #Range: 0 ~ 1000000 + VoidForgeCooldown = 120 + #The Incinerator's Cooldown + #Range: 0 ~ 1000000 + TheIncineratorCooldown = 400 + #Wither Assault Shoulder Weapon's Missile Cooldown + #Range: 0 ~ 1000000 + WASWMissileCooldown = 40 + #WASW's Wither Missile's Damage + #Range: 0.0 ~ 1000000.0 + "WASW's WitherMissiledamage" = 16.0 + #Wither Assault Shoulder Weapon's Howitzer Cooldown + #Range: 0 ~ 1000000 + WASWHowitzerCooldown = 100 + #Void Assault Shoulder Weapon's Cooldown + #Range: 0 ~ 1000000 + VASWCooldown = 120 + #Void Core's Cooldown + #Range: 0 ~ 1000000 + VoidCoreCooldown = 160 + #Sandstorm's cooldown + #Range: 0 ~ 1000000 + Sandstormcooldown = 300 + #Soul Render's Timer + #Range: 0 ~ 1000000 + SoulRenderCooldown = 100 + #Gauntlet of Maelstrom's Timer + #Range: 0 ~ 1000000 + gauntletofMaelstromCooldown = 180 + #The Immolator's Timer + #Range: 0 ~ 1000000 + immolatorCooldown = 300 + #Storm Bringer's LightningStorm Damage + #Range: 0.0 ~ 1000000.0 + "Ceraunus 's Lightning Storm Damage" = 6.0 + #Ceraunus's Wave Damage + #Range: 0.0 ~ 1000000.0 + "Ceraunus's Wave Damage'" = 6.0 + #Ceraunus's Cooldown + #Range: 0 ~ 1000000 + "Ceraunus Cooldown" = 150 + #Astrape's LightningStorm Damage + #Range: 0.0 ~ 1000000.0 + "Astrape's Lightning Spear Damage" = 11.0 + #Astrape's Wave Damage + #Range: 0.0 ~ 1000000.0 + "Astrape's Area Damage'" = 2.0 + #Astrape's Cooldown + #Range: 0 ~ 1000000 + "Astrape Cooldown" = 80 + +[Block] + #Cursed Tombstone Summon cooldown Minute + #Range: 1 ~ 300 + "Cursed Tombstone Summon cooldown Minute" = 1 + +["Entity damage"] + #Void Rune's Damage + #Range: 0.0 ~ 1000000.0 + Voidrunedamage = 7.0 + #Ashen Breath's Damage + #Range: 0.0 ~ 1000000.0 + Ashenbreathdamage = 4.0 + #Death Laser's Damage + #Range: 0.0 ~ 1000000.0 + DeathLaserdamage = 5.0 + #Death Laser's Hp Damage + #Range: 0.0 ~ 100.0 + DeathLaserHpdamage = 5.0 + #Player's Laser's Damage + #Range: 0.0 ~ 1000000.0 + Laserdamage = 7.0 + #Blazing Bone's Damage + #Range: 0.0 ~ 1000000.0 + BlazingBonedamage = 5.0 + #Lionfish Spike's Damage + #Range: 0.0 ~ 1000000.0 + LionfishSpikedamage = 4.0 + #Wither Howizter's Damage + #Range: 0.0 ~ 1000000.0 + WitherHowizterdamage = 8.0 + #Dimensional Rift's Damage + #Range: 0.0 ~ 1000000.0 + DimensionalRiftdamage = 10.0 + #Wither Homing Missile's Damage + #Range: 0.0 ~ 1000000.0 + WitherHomingMissiledamage = 3.0 + #Abyss Blast's Damage + #Range: 0.0 ~ 1000000.0 + AbyssBlastdamage = 10.0 + #Abyss Blast's Hp Damage + #Range: 0.0 ~ 1.0 + AbyssBlastHpdamage = 0.1 + #Abyss Orb's Damage + #Range: 0.0 ~ 1000000.0 + AbyssOrbdamage = 4.0 + #Lava bomb's Radius + #Range: 1 ~ 7 + Lavabombradius = 2 + #Amethyst Cluster's Damage + #Range: 0.0 ~ 1000000.0 + "Amethyst Cluster Damage" = 12.0 + #Sandstorm's Damage + #Range: 0.0 ~ 1000000.0 + "Sandstorm Damage" = 5.0 + #Ancient Desert Stele's Damage + #Range: 0.0 ~ 1000000.0 + "Ancient Desert Stele Damage" = 18.0 + #Player's Phantom Arrow's Damage + #Range: 0.0 ~ 1000000.0 + "Phantom Arrow Damage" = 5.0 + #Phantom Halberd's Damage + #Range: 0.0 ~ 1000000.0 + "Phantom Halberd Damage" = 12.0 + #Cursed Sandstorm's Damage + #Range: 0.0 ~ 1000000.0 + "Cursed Sandstorm Damage" = 6.0 + #Flame jet's Damage + #Range: 0.0 ~ 1000000.0 + "Flame Jet Damage" = 7.0 + #Flare Bomb's Damage + #Range: 0.0 ~ 1000000.0 + "Flare Bomb Damage" = 7.0 + +["Ender Guardian"] + #EnderGuardian's Health Multiplier + #Range: 0.0 ~ 1000000.0 + EnderGuardianHealthMultiplier = 1.0 + #EnderGuardian's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + EnderGuardianDamageMultiplier = 1.0 + #EnderGuardian's DamageCap + #Range: 0.0 ~ 1000000.0 + EnderGuardianDamageCap = 22.0 + #EnderGuardian's DamageTime + #Range: 0 ~ 100 + EnderGuardianDamageTime = 30 + #EnderGuardian's Healing with out target + #Range: 0.0 ~ 1000000.0 + EnderGuardianNatureHealing = 25.0 + #Ender guardian's block breaking ignore the MobGriefing + EnderguardianBlockBreaking = true + #Guardian's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Guardian's prevent attacks from far away Range" = 12.0 + #Guardian's gravity Punch Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's gravity Punch Hp Damage" = 0.05 + #Guardian's Teleport attack Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's Teleport attack Hp Damage" = 0.05 + #Guardian's Punch Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's knockback Hp Damage" = 0.06 + #Guardian's Uppercut Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's Uppercut Hp Damage" = 0.1 + #Guardian's RocketPunch Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's RocketPunch Hp Damage" = 0.1 + #Guardian's etc area attack Hp Damage + #Range: 0.0 ~ 1.0 + "Guardian's area attack Hp Damage" = 0.08 + #EnderGuardianBlockBreaking radius + #Range: 0 ~ 20 + "EnderGuardianBlockBreaking X" = 15 + #EnderGuardianBlockBreaking radius + #Range: 0 ~ 10 + "EnderGuardianBlockBreaking Y" = 2 + #EnderGuardianBlockBreaking radius + #Range: 0 ~ 20 + "EnderGuardianBlockBreaking Z" = 15 + +["Netherite Monstrosity"] + #Monstrosity's Lavabomb magazine. + #Range: 1 ~ 1000000 + LavabombMagazine = 3 + #Monstrosity's Lavabomb amount + #Range: 1 ~ 1000000 + Lavabombamount = 3 + #Lava Bomb of Monstrosity's Duration + #Range: 1 ~ 10000 + LavaBombDuration = 350 + #Lava Bomb of Monstrosity's additional random duration size + #Range: 1 ~ 10000 + LavaBombRandomDuration = 150 + #Monstrosity's Health Multiplier + #Range: 0.0 ~ 1000000.0 + MonstrosityHealthMultiplier = 1.0 + #Monstrosity's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + MonstrosityDamageMultiplier = 1.0 + #Monstrosity's Healing Multiplier + #Range: 0.0 ~ 1000000.0 + MonstrosityHealingMultiplier = 1.0 + # Monstrosity's Healing with out target + #Range: 0.0 ~ 1000000.0 + MonstrosityNatureHealing = 25.0 + #Monstrosity's DamageCap + #Range: 0.0 ~ 1000000.0 + MonstrosityDamageCap = 22.0 + #Monstrosity's DamageTime + #Range: 0 ~ 100 + MonstrosityDamageTime = 10 + #Monstrosity's bodyBlocking verdict + NetheritemonstrosityBodyBloking = true + #Monstrosity's attack Hp Damage + #Range: 0.0 ~ 1.0 + "Monstrosity's attack Hp Damage" = 0.08 + #Monstrosity's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Monstrosity's prevent attacks from far away Range" = 18.0 + #Monstrosity's block breaking ignore the MobGriefing + monstrosityBlockBreaking = true + +["Ender Golem"] + #Ender Golem's block breaking ignore the MobGriefing + EndergolemBlockBreaking = false + #Endergolem's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Endergolem's prevent attacks from far away Range" = 6.0 + #Golem's Health Multiplier + #Range: 0.0 ~ 1000000.0 + GolemHealthMultiplier = 1.0 + #Golem's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + GolemDamageMultiplier = 1.0 + +[Ignis] + #Ignis's Health Multiplier + #Range: 0.0 ~ 1000000.0 + IgnisHealthMultiplier = 1.0 + #Ignis's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + IgnisDamageMultiplier = 1.0 + #Ignis's Healing with out target + #Range: 0.0 ~ 1000000.0 + IgnisNatureHealing = 25.0 + #Ignis's Healing Multiplier + #Range: 0.0 ~ 1000000.0 + IgnisHealingMultiplier = 1.0 + #Ignis's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Ignis's prevent attacks from far away Range" = 15.0 + #Ignis's DamageCap + #Range: 0.0 ~ 1000000.0 + IgnisDamageCap = 20.0 + #Ignis's DamageTime + #Range: 0 ~ 100 + IgnisDamageTime = 15 + #Ignis's cracked block breaking ignore the MobGriefing + IgnisBlockBreaking = true + +[revenant] + #Revenant's Health Multiplier + #Range: 0.0 ~ 1000000.0 + RevenantHealthMultiplier = 1.0 + #Revenant's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + RevenantDamageMultiplier = 1.0 + +["The Prowler"] + #The Prowler's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "The Prowler's prevent attacks from far away Range" = 16.0 + #Prowler's Health Multiplier + #Range: 0.0 ~ 1000000.0 + ProwlerHealthMultiplier = 1.0 + #Prowler's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + ProwlerDamageMultiplier = 1.0 + +["The Harbinger"] + #Harbinger's Health Multiplier + #Range: 0.0 ~ 1000000.0 + HarbingerHealthMultiplier = 1.0 + #Harbinger's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + HarbingerDamageMultiplier = 1.0 + #Harbinger's Healing Multiplier + #Range: 0.0 ~ 1000000.0 + HarbingerHealingMultiplier = 1.0 + #Harbinger's Wither Missile's Damage + #Range: 0.0 ~ 1000000.0 + "Harbinger's WitherMissiledamage" = 8.0 + #Harbinger's laser's Damage + #Range: 0.0 ~ 1000000.0 + "Harbinger's laser damage" = 5.0 + #Harbinger's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "The Harbinger's prevent attacks from far away Range" = 35.0 + #Harbinger's DamageCap + #Range: 0.0 ~ 1000000.0 + "The Harbinger DamageCap" = 22.0 + #Harbinger's DamageTime + #Range: 0 ~ 100 + "The Harbinger DamageTime" = 12 + #Harbinger's lasers can light a fire in MobGriefing + "The Harbinger Light A Fire" = true + #The Harbinger's charge attack Hp Damage + #Range: 0.0 ~ 1.0 + "The Harbinger's charge attack Hp Damage" = 0.06 + +["The Leviathan"] + #Leviathan's Health Multiplier + #Range: 0.0 ~ 1000000.0 + LeviathanHealthMultiplier = 1.0 + #Leviathan's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + LeviathanDamageMultiplier = 1.0 + #Leviathan's Healing with out target + #Range: 0.0 ~ 1000000.0 + LeviathanNatureHealing = 25.0 + #Leviathan's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Leviathan's prevent attacks from far away Range" = 38.0 + #Leviathan's Bite Hp Damage + #Range: 0.0 ~ 1.0 + "Leviathan's Bite Hp Damage" = 0.1 + #Leviathan's Rush Hp Damage + #Range: 0.0 ~ 1.0 + "Leviathan's Rush Hp Damage" = 0.05 + #Leviathan's TailSwing Hp Damage + #Range: 0.0 ~ 1.0 + "Leviathan's TailSwing Hp Damage" = 0.08 + #Leviathan's Tentacle Hp Damage + #Range: 0.0 ~ 1.0 + "Leviathan's Tentacle Hp Damage" = 0.03 + #Leviathan's DamageCap + #Range: 0.0 ~ 1000000.0 + LeviathanDamageCap = 20.0 + #Leviathan's DamageTime + #Range: 0 ~ 100 + "Leviathan DamageTime" = 15 + #Leviathan's block breaking ignore the MobGriefing + LeviathanBlockBreaking = true + #Leviathan Immune Out of Water + LeviathanImmuneOutofWater = true + +["The Baby Leviathan"] + #BabyLeviathan's Health Multiplier + #Range: 0.0 ~ 1000000.0 + BabyLeviathanHealthMultiplier = 1.0 + #BabyLeviathan's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + BabyLeviathanDamageMultiplier = 1.0 + +["Modern Remnant"] + #Modern Remnant's Health Multiplier + #Range: 0.0 ~ 1000000.0 + ModernRemnantHealthMultiplier = 1.0 + #Modern Remnant's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + ModernRemnantDamageMultiplier = 1.0 + +["Netherite Ministrosity"] + #Ministrosity's Health Multiplier + #Range: 0.0 ~ 1000000.0 + MinistrosityHealthMultiplier = 1.0 + +["Amethyst Crab"] + #Amethyst Crab's Health Multiplier + #Range: 0.0 ~ 1000000.0 + AmethystCrabHealthMultiplier = 1.0 + #Amethyst Crab's EarthQuake Damage + #Range: 0.0 ~ 1000000.0 + AmethystCrabEarthQuakeDamage = 5.0 + #Amethyst Crab's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + AmethystCrabDamageMultiplier = 1.0 + +["Ancient Remnant"] + #Ancient Remnant's Health Multiplier + #Range: 0.0 ~ 1000000.0 + AncientRemnantHealthMultiplier = 1.0 + #Ancient Remnant's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + AncientRemnantDamageMultiplier = 1.0 + #AncientRemnant's Healing with out target + #Range: 0.0 ~ 1000000.0 + AncientRemnantNatureHealing = 25.0 + #Ancient Remnant's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Ancient Remnant's prevent attacks from far away Range" = 14.0 + #Ancient Remnant's DamageCap + #Range: 0.0 ~ 1000000.0 + AncientRemnantCap = 21.0 + #Ancient Remnant's DamageTime + #Range: 0 ~ 100 + "Ancient Remnant DamageTime" = 12 + #Ancient Remnant's block breaking ignore the MobGriefing + AncientRemnantBlockBreaking = true + #Remnant's Charge Hp Damage + #Range: 0.0 ~ 1.0 + "Remnant's Charge Hp Damage" = 0.1 + #Remnant's Hp Damage + #Range: 0.0 ~ 1.0 + "Remnant's Normal attack Hp Damage" = 0.05 + #Remnant's Stomp Hp Damage + #Range: 0.0 ~ 1.0 + "Remnant's Stomp Hp Damage" = 0.03 + #Remnant's EarthQuake Damage + #Range: 0.0 ~ 1000000.0 + "Remnant's EarthQuakeDamage" = 11.0 + +[Koboleton] + #Cause Koboleton to Drop Item In Hand Percent + #Range: 0.0 ~ 100.0 + CauseKoboletontoDropItemInHandPercent = 5.0 + +[Kobolediator] + #Kobolediator's block breaking ignore the MobGriefing + KobolediatorBlockBreaking = false + #Kobolediator's Health Multiplier + #Range: 0.0 ~ 1000000.0 + KobolediatorHealthMultiplier = 1.0 + #Kobolediator's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + KobolediatorDamageMultiplier = 1.0 + +[Wadjet] + #Wadjet's Health Multiplier + #Range: 0.0 ~ 1000000.0 + WadjetHealthMultiplier = 1.0 + #Wadjet's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + WadjetDamageMultiplier = 1.0 + +[Aptrgangr] + #Aptrgangr's Health Multiplier + #Range: 0.0 ~ 1000000.0 + AptrgangrHealthMultiplier = 1.0 + #Aptrgangr's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + AptrgangrDamageMultiplier = 1.0 + #Axe Blade's Damage + #Range: 0.0 ~ 1000000.0 + AptrgangrAxeBladeDamage = 8.0 + +[Clawdian] + #Clawdian's Health Multiplier + #Range: 0.0 ~ 1000000.0 + ClawdianHealthMultiplier = 1.0 + #Clawdian's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + ClawdianDamageMultiplier = 1.0 + +[Scylla] + #Scylla's Health Multiplier + #Range: 0.0 ~ 1000000.0 + ScyllaHealthMultiplier = 1.0 + #Scylla's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + ScyllaDamageMultiplier = 1.0 + #Scylla's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Scylla's prevent attacks from far away Range" = 10.0 + #Scylla's Spear Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's Spear Damage" = 14.0 + #Scylla's Lightning Storm + #Range: 0.0 ~ 1000000.0 + "Scylla's Lightning Storm" = 10.0 + #Scylla's Lightning Area + #Range: 0.0 ~ 1000000.0 + "Scylla's Lightning Area" = 4.0 + #Scylla's Storm Serpent + #Range: 0.0 ~ 1000000.0 + "Scylla's Snake Damage" = 16.0 + #Scylla's Anchor Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's Anchor Damage" = 16.0 + #Scylla's Healing with out target + #Range: 0.0 ~ 1000000.0 + "Scylla NatureHealing" = 25.0 + #Scylla weather change + "Scylla Weather Change" = true + #Scylla's DamageCap + #Range: 0.0 ~ 1000000.0 + "Scylla DamageCap" = 22.0 + #Scylla's DamageTime + #Range: 0 ~ 100 + "Scylla DamageTime" = 25 + #Scylla's HP Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's HP Damage" = 0.05 + #Scylla's Spin HP Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's Spin Hp Damage" = 0.07 + #Scylla's Lightning Storm HP Damage + #Range: 0.0 ~ 1000000.0 + "Scylla's Lightning Storm HP Damage" = 0.04 + +[Maledictus] + #Maledictus's Health Multiplier + #Range: 0.0 ~ 1000000.0 + MaledictusHealthMultiplier = 1.0 + #Maledictus's Damage Multiplier + #Range: 0.0 ~ 1000000.0 + MaledictusDamageMultiplier = 1.0 + #Maledictus's Immune to Long distance attack range. + #Range: 1.0 ~ 1000000.0 + "Maledictus's prevent attacks from far away Range" = 12.0 + #Maledictus's Healing with out target + #Range: 0.0 ~ 1000000.0 + MaledictusNatureHealing = 25.0 + #Maledictus's Phantom Halberd Damage + #Range: 0.0 ~ 1000000.0 + "Maledictus' Phantom Halberd Damage'" = 10.0 + #Maledictus's DamageCap + #Range: 0.0 ~ 1000000.0 + MaledictusDamageCap = 20.0 + #Maledictus's DamageTime + #Range: 0 ~ 100 + "Maledictus DamageTime" = 30 + #Maledictus's melee Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's melee Hp Damage" = 0.05 + #Maledictus's Shock wave Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's Shock Wave Hp Damage" = 0.03 + #Maledictus's AOE Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's AOE Hp Damage" = 0.15 + #Maledictus's flying Smash Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's Flying Smash Hp Damage" = 0.1 + #Maledictus's Jump Smash Hp Damage + #Range: 0.0 ~ 1.0 + "Maledictus's Jump Smash Hp Damage" = 0.08 + #Maledictus's Phantom Arrow's Damage + #Range: 0.0 ~ 1000000.0 + "Maledictus's Phantom Arrow Damage" = 5.0 + #Maledictus's cracked block breaking ignore the MobGriefing + MaledictusBlockBreaking = true + +[spawning] + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingSpawnWeight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingSpawnRolls = 30 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingBruteSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingBruteSpawnRolls = 50 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingAnglerSpawnWeight = 2 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingAnglerSpawnRolls = 30 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingPriestSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingPriestSpawnRolls = 70 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + DeeplingWarlockSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + DeeplingWarlockSpawnRolls = 70 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + CoralgolemSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + CoralgolemSpawnRolls = 70 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + AmethystCrabSpawnWeight = 1 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + AmethystCrabSpawnRolls = 20 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + KoboletonSpawnWeight = 15 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + KoboletonSpawnRolls = 1 + #Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn + #Range: 0 ~ 1000 + IgnitedBerserkerSpawnWeight = 5 + #Random roll chance to enable mob spawning. Higher number = lower chance of spawning + #Range: > 0 + IgnitedBerserkerSpawnRolls = 2 + +["World Generation"] + #Defines the area in which the structure check for height variances (1 means 9 chunks will be checked (center + area around it)) - 0 disables this check + #Range: 0 ~ 5 + cursedPyramidCheckRange = 2 + #Allowed height variance for the check - if the variance is lower than this value the structure will not spawn (has no effect if the are check is disabled) + #Range: 0 ~ 32 + cursedPyramidHeightVariance = 2 + +["Boss Respawner"] + #on/off + MonstrosityRespawner = true + #on/off + EnderGuardianRespawner = true + #on/off + HarbingerRespawner = true + #on/off + RemnantRespawner = true + #on/off + ScyllaRespawner = true + diff --git a/minecraft/config/cataclysm/amethyst_crab_spawns.json b/minecraft/config/cataclysm/amethyst_crab_spawns.json new file mode 100644 index 0000000..4c3d891 --- /dev/null +++ b/minecraft/config/cataclysm/amethyst_crab_spawns.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:lush_caves" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/cataclysm/coral_golem_spawns.json b/minecraft/config/cataclysm/coral_golem_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/minecraft/config/cataclysm/coral_golem_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/cataclysm/deepling_angler_spawns.json b/minecraft/config/cataclysm/deepling_angler_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/minecraft/config/cataclysm/deepling_angler_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/cataclysm/deepling_brute_spawns.json b/minecraft/config/cataclysm/deepling_brute_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/minecraft/config/cataclysm/deepling_brute_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/cataclysm/deepling_priest_spawns.json b/minecraft/config/cataclysm/deepling_priest_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/minecraft/config/cataclysm/deepling_priest_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/cataclysm/deepling_spawns.json b/minecraft/config/cataclysm/deepling_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/minecraft/config/cataclysm/deepling_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/cataclysm/deepling_warlock_spawns.json b/minecraft/config/cataclysm/deepling_warlock_spawns.json new file mode 100644 index 0000000..9599dbd --- /dev/null +++ b/minecraft/config/cataclysm/deepling_warlock_spawns.json @@ -0,0 +1,39 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_lukewarm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:deep_cold_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:warm_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "alexscaves:abyssal_chasm" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/cataclysm/koboleton_spawns.json b/minecraft/config/cataclysm/koboleton_spawns.json new file mode 100644 index 0000000..575bfd5 --- /dev/null +++ b/minecraft/config/cataclysm/koboleton_spawns.json @@ -0,0 +1,26 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/cataclysm_spellbooks_config.toml b/minecraft/config/cataclysm_spellbooks_config.toml new file mode 100644 index 0000000..4892c87 --- /dev/null +++ b/minecraft/config/cataclysm_spellbooks_config.toml @@ -0,0 +1,14 @@ +"Should Cataclysm bosses have ISS attributes (default value is True): " = true +"Should Shutdown spell prevent target from spell casting (default value is True): " = true +"Should Intrusion Prevent System prevent the entities from receiving projectile damage (default is True): " = true +"Should Cataclysm: Spellbooks spells cause griefing (default is True): " = true +"Should Final Rend cancel damage towards the caster when charging up the spell (default is True): " = true +"Should the Murasama lifesteal ability be enabled (default is True): " = true +"Should the Murasama mana steal ability be enabled (default is True): " = true + +["Percentage of health that should be regained for lifesteal based on max health (default is 0"] + "25 aka 25%): " = 0.25 + +["Percentage of mana that should be regained based on damage dealt for manasteal (default is 0"] + "25 aka 25%): " = 0.25 + diff --git a/minecraft/config/caupona-common.toml b/minecraft/config/caupona-common.toml new file mode 100644 index 0000000..d7edd12 --- /dev/null +++ b/minecraft/config/caupona-common.toml @@ -0,0 +1,11 @@ + +[recipe] + #Ticks before do still recipe + #Range: > 1 + StillRecipeTicks = 12000 + +[road] + #Additional speed added per tick for roads + #Range: 0.0 ~ 10.0 + roadSpeedAddtion = 2.0 + diff --git a/minecraft/config/cerulean-client.toml b/minecraft/config/cerulean-client.toml new file mode 100644 index 0000000..5a6b3db --- /dev/null +++ b/minecraft/config/cerulean-client.toml @@ -0,0 +1,8 @@ + +#. +#Client-only settings - If you're looking for general settings, look inside your world's serverconfig folder! +[client] + #. + #Example Boolean + example = true + diff --git a/minecraft/config/cerulean-common.toml b/minecraft/config/cerulean-common.toml new file mode 100644 index 0000000..1ff017e --- /dev/null +++ b/minecraft/config/cerulean-common.toml @@ -0,0 +1,4 @@ +#. +#Example Boolean!!!!!!!!!!! +example = true + diff --git a/minecraft/config/cerulean.yml b/minecraft/config/cerulean.yml new file mode 100644 index 0000000..a0bf88d --- /dev/null +++ b/minecraft/config/cerulean.yml @@ -0,0 +1,40 @@ +# Report issues on Github ${issue_tracker} +# Discuss, get help or report issues on Discord ${discord} + +# Enables debug logs +# Will worsen your performance, please do not enable if you don't need it! +debug_mode: false + +# Makes advancement checks run less often +# Disable if you have issues with advancements not processing fast enough +enable_skip_ticks: true + +# Cancels advancement check when stack becomes empty (for example, when player throws out the whole stack). +# Injects into InventoryChangeTrigger. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +ignore_triggers_for_emptied_stacks: true + +# Cancels advancement check when stack size decreases (for example, when player throws out one item from stack). +# Injects into InventoryChangeTrigger, ItemStack, AbstractContainerMenu. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +ignore_triggers_for_decreased_stacks: true + +# Optimizes advancement check for advancements that require multiple items (for example, "Cover me in debris" requires full netherite armor set). +# Injects into InventoryChangeTriggerInstance. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +optimize_multiple_predicate_trigger: true + +# Disables advancement check when you just open any container (for example, chest or backpack). +# Injects into AbstractContainerMenu. +# Disable if you have mixin conflict or problems with any container (and also report on github/discord!). +initialize_inventory_last_slots: true + +# Skips advancement check when you pick up or otherwise increase stack size if this change doesn't pass any advancement threshold. +# For example, dirt stack size increased from 52 to 53, but there's no advancement for getting 53 dirt in your modpack. +optimize_triggers_for_increased_stacks: true + +# When checking each item criterion, first check the count requirement and see if it was fulfilled before. +# For example, there is advancement for getting stone block, any amount. You have 52 dirt, and you pick up one more. There is +# no way you can the get stone advancement from this action, because it requires any amount of item, and you already had some. +# Another example: there is no way you can get the advancement for 64 emerald blocks if you don't have dirt and you pick up 5 dirt. +check_count_before_item_predicate_match: true \ No newline at end of file diff --git a/minecraft/config/chalk-client.toml b/minecraft/config/chalk-client.toml new file mode 100644 index 0000000..ce1b92c --- /dev/null +++ b/minecraft/config/chalk-client.toml @@ -0,0 +1,20 @@ + +#Rotation offsets (in degrees) for each mark. +[SymbolOffsets] + #Range: -360 ~ 360 + CenterRotationOffset = 0 + #Range: -360 ~ 360 + ArrowRotationOffset = 0 + #Range: -360 ~ 360 + CrossRotationOffset = 45 + #Range: -360 ~ 360 + CheckRotationOffset = 45 + #Range: -360 ~ 360 + SkullRotationOffset = 0 + #Range: -360 ~ 360 + HouseRotationOffset = 0 + #Range: -360 ~ 360 + HeartRotationOffset = 0 + #Range: -360 ~ 360 + PickaxeRotationOffset = 0 + diff --git a/minecraft/config/chalk-common.toml b/minecraft/config/chalk-common.toml new file mode 100644 index 0000000..61ab475 --- /dev/null +++ b/minecraft/config/chalk-common.toml @@ -0,0 +1,33 @@ +#How many marks you can draw with a single chalk. Default: 64 +#Range: > 0 +ChalkUses = 64 +#How much light glowing mark produces. Default: 5 +#Range: 0 ~ 15 +GlowingMarkLightLevel = 5 +#Controls whether glowing should be enabled in Chalk Box. +#If disabled - you will not be able to draw glowing marks with chalk box. +#Default: true +ChalkBoxGlowingEnabled = true +#How many glowing uses one glowing item will give. +#Default: 8 +#Range: 1 ~ 9999 +ChalkBoxGlowingItemUses = 8 +#If enabled, Chalks (and Chalk Boxes) will generate in Dungeons, Abandoned Mineshafts, Planes and Savanna villages, Cartographer houses +#Default: true +ShouldGenerateInChests = true + +#Enable/disable symbols and location of the advancement that will unlock that symbol. (Empty = always unlocked) +[Symbols] + SkullEnabled = true + SkullUnlockAdvancement = "chalk:adventure/get_skeleton_skull" + PickaxeEnabled = true + PickaxeUnlockAdvancement = "minecraft:story/iron_tools" + CrossEnabled = true + CrossUnlockAdvancement = "" + HouseEnabled = true + HouseUnlockAdvancement = "chalk:adventure/sleep_three_times_in_one_place" + HeartEnabled = true + HeartUnlockAdvancement = "minecraft:husbandry/tame_an_animal" + CheckEnabled = true + CheckUnlockAdvancement = "" + diff --git a/minecraft/config/charmofundying-server.toml b/minecraft/config/charmofundying-server.toml new file mode 100644 index 0000000..8440285 --- /dev/null +++ b/minecraft/config/charmofundying-server.toml @@ -0,0 +1,9 @@ +#The vertical offset for rendering the totem on the player. +#Range: -100.0 ~ 100.0 +yOffset = 0.0 +#The horizontal offset for rendering the totem on the player. +#Range: -100.0 ~ 100.0 +xOffset = 0.0 +#If enabled, renders the equipped totem on players. +renderTotem = true + diff --git a/minecraft/config/chefsdelight-common.toml b/minecraft/config/chefsdelight-common.toml new file mode 100644 index 0000000..3ab3ff7 --- /dev/null +++ b/minecraft/config/chefsdelight-common.toml @@ -0,0 +1,24 @@ + +#Increase the number to generate more structures. Set 0 to not generate. +["Configs for Chefs Delight"] + #Plains Chef House Config - Default = 5 + "Plains Chef House" = 5 + #Plains Cook House Config - Default = 2 + "Plains Cook House" = 2 + #Taiga Chef House Config - Default = 4 + "Taiga Chef House" = 4 + #Taiga Cook House Config - Default = 3 + "Taiga Cook House" = 3 + #Desert Chef House Config - Default = 5 + "Desert Chef House" = 5 + #Desert Cook House Config - Default = 3 + "Desert Cook House" = 3 + #Savanna Chef House Config - Default = 6 + "Savanna Chef House" = 6 + #Savanna Cook House Config - Default = 2 + "Savanna Cook House" = 2 + #Snowy Chef House Config - Default = 4 + "Snowy Chef House" = 4 + #Snowy Cook House Config - Default = 1 + "Snowy Cook House" = 1 + diff --git a/minecraft/config/chiselsandbits-client.toml b/minecraft/config/chiselsandbits-client.toml new file mode 100644 index 0000000..17b6f14 --- /dev/null +++ b/minecraft/config/chiselsandbits-client.toml @@ -0,0 +1,114 @@ + +[settings] + #mod.scena.config.settings.invert-pick-block-behaviour.comment + invert-pick-block-behaviour = false + + [settings.bit-bag] + #mod.scena.config.settings.bit-bag.invert-durability-bar-indication.comment + invert-durability-bar-indication = false + + [settings.placement] + + [settings.placement.render-mode] + #mod.scena.config.settings.placement.render-mode.success.comment + #Allowed Values: GHOST_BLOCK_MODEL, GHOST_BLOCK_MODEL_SOLID_COLOR, WIREFRAME + success = "GHOST_BLOCK_MODEL" + #mod.scena.config.settings.placement.render-mode.failed.comment + #Allowed Values: GHOST_BLOCK_MODEL, GHOST_BLOCK_MODEL_SOLID_COLOR, WIREFRAME + failed = "GHOST_BLOCK_MODEL_SOLID_COLOR" + + [settings.placement.color] + #mod.scena.config.settings.placement.color.success.comment + success = [0.1882352977991104, 0.47058823704719543, 0.7882353067398071, 0.7058823704719543] + #mod.scena.config.settings.placement.color.not-fitting.comment + not-fitting = [0.7176470756530762, 0.2549019753932953, 0.054901961237192154, 0.7058823704719543] + #mod.scena.config.settings.placement.color.missing-bits-or-space.comment + missing-bits-or-space = [1.0, 0.8588235378265381, 0.3450980484485626, 0.7058823704719543] + + [settings.chiseling-previews] + #mod.scena.config.settings.chiseling-previews.renderer.comment + renderer = "chiselsandbits:default" + + [settings.chiseling-previews.default] + + [settings.chiseling-previews.default.colors] + #mod.scena.config.settings.chiseling-previews.default.colors.chiseling.comment + chiseling = [0.8500000238418579, 0.0, 0.0, 0.6499999761581421] + #mod.scena.config.settings.chiseling-previews.default.colors.placement.comment + placement = [0.0, 0.8500000238418579, 0.0, 0.6499999761581421] + + [settings.chiseling-previews.debug] + #mod.scena.config.settings.chiseling-previews.debug.enabled.comment + enabled = false + + [settings.chiseling-previews.debug.mutator] + + [settings.chiseling-previews.debug.mutator.colors] + #mod.scena.config.settings.chiseling-previews.debug.mutator.colors.chiseling.comment + chiseling = [0.0, 0.0, 0.8500000238418579, 0.6499999761581421] + #mod.scena.config.settings.chiseling-previews.debug.mutator.colors.placement.comment + placement = [0.8500000238418579, 0.8500000238418579, 0.0, 0.6499999761581421] + + [settings.selected-tool-mode-icons] + #mod.scena.config.settings.selected-tool-mode-icons.renderer.comment + renderer = "chiselsandbits:group" + + [settings.clipboard] + #mod.scena.config.settings.clipboard.size.comment + #Range: 0 ~ 64 + size = 64 + #mod.scena.config.settings.clipboard.add-broken-blocks.comment + add-broken-blocks = true + #mod.scena.config.settings.clipboard.add-picked-blocks.comment + add-picked-blocks = true + + [settings.patterns] + #mod.scena.config.settings.patterns.export-path.comment + export-path = "./chiselsandbits/patterns" + + [settings.warnings] + #mod.scena.config.settings.warnings.show-cool-down-error.comment + show-cool-down-error = false + + [settings.interactions] + #mod.scena.config.settings.interactions.scrolling-changes-mode.comment + scrolling-changes-mode = true + +[performance] + + [performance.caches] + + [performance.caches.sizes] + #mod.scena.config.performance.caches.sizes.bit-storage-content-models.comment + #Range: 0 ~ 9223372036854775807 + bit-storage-content-models = 100 + #mod.scena.config.performance.caches.sizes.block-models.comment + #Range: 3500 ~ 20000 + block-models = 3500 + #mod.scena.config.performance.caches.sizes.block-faces.comment + #Range: 350000 ~ 2000000 + block-faces = 1000000 + #mod.scena.config.performance.caches.sizes.cull-testing.comment + #Range: 3500 ~ 200000 + cull-testing = 3500 + #mod.scena.config.performance.caches.sizes.stack-models.comment + #Range: 0 ~ 9223372036854775807 + stack-models = 100 + + [performance.lighting] + #mod.scena.config.performance.lighting.extract-lighting-values-from-faces.comment + extract-lighting-values-from-faces = true + #mod.scena.config.performance.lighting.extract-lighting-values-from-blockstates.comment + extract-lighting-values-from-blockstates = false + + [performance.model-building] + #mod.scena.config.performance.model-building.thread-count.comment + #Range: 1 ~ 16 + thread-count = 8 + +[gui] + + [gui.radial-menu] + #mod.scena.config.gui.radial-menu.display-mouse-indicator.comment + display-mouse-indicator = false + diff --git a/minecraft/config/chiselsandbits-common.toml b/minecraft/config/chiselsandbits-common.toml new file mode 100644 index 0000000..c7dd76e --- /dev/null +++ b/minecraft/config/chiselsandbits-common.toml @@ -0,0 +1,22 @@ + +[help] + #mod.scena.config.help.enabled-in-tooltips.comment + enabled-in-tooltips = true + +[performance] + + [performance.caches] + + [performance.caches.sizes] + #mod.scena.config.performance.caches.sizes.collision-boxes.comment + #Range: 0 ~ 9223372036854775807 + collision-boxes = 10000 + #mod.scena.config.performance.caches.sizes.class-metadata.comment + #Range: 0 ~ 9223372036854775807 + class-metadata = 10000 + + [performance.saving] + #mod.scena.config.performance.saving.thread-count.comment + #Range: 1 ~ 16 + thread-count = 8 + diff --git a/minecraft/config/chloride-client.json b/minecraft/config/chloride-client.json new file mode 100644 index 0000000..733ba1f --- /dev/null +++ b/minecraft/config/chloride-client.json @@ -0,0 +1,70 @@ +{ + "modpackMode": false, + "fullScreen": "WINDOWED", + "fpsDisplayMode": "ADVANCED", + "fpsDisplayAlign": "LEFT", + "fpsDisplayVAlign": "TOP", + "fpsDisplaySystemMode": "OFF", + "fpsDisplayMargin": 12, + "fpsDisplayVMargin": 12, + "fpsDisplayShadow": false, + "fog": true, + "blueBand": true, + "customFog": true, + "fogStart": 0, + "fogEnd": 192, + "fogShape": "CYLINDER", + "cloudsHeight": 192, + "entityNametagRendering": true, + "playerNametagRendering": true, + "itemNametagRendering": true, + "chunkFadeSpeed": "SLOW", + "darknessMode": "VANILLA", + "darknessOnFullBrightBiomes": false, + "darknessOnOverworld": true, + "darknessOnNether": false, + "darknessNetherFogBright": 0.5, + "darknessOnEnd": false, + "darknessEndFogBright": 0.5, + "darknessByDefault": false, + "darknessDimensionWhiteList": [], + "darknessOnNoSkyLight": false, + "darknessBlockLightOnly": false, + "darknessAffectedByMoonPhase": true, + "darknessNewMoonBright": 0.0, + "darknessFullMoonBright": 0.25, + "hideJREMI": false, + "hideJREMIHint": false, + "fontShadows": true, + "leavesCulling": "OFF", + "fastChests": false, + "fastBeds": false, + "rainParticles": true, + "rainDropParticles": true, + "crackingBlockParticles": true, + "destroyedBlockParticles": true, + "disabledParticles": [], + "tileEntityDistanceCulling": true, + "tileEntityCullingDistanceX": 4096, + "tileEntityCullingDistanceY": 32, + "entityDistanceCulling": true, + "entityCullingDistanceX": 4096, + "entityCullingDistanceY": 32, + "monsterDistanceCulling": false, + "monsterCullingDistanceX": 16384, + "monsterCullingDistanceY": 64, + "entityWhitelist": [ + "minecraft:ghast", + "minecraft:ender_dragon", + "iceandfire:all", + "create:all" + ], + "monsterWhitelist": [], + "tileEntityWhitelist": [ + "waterframes:all" + ], + "borderlessAttachModeF11": "ATTACH", + "fastLanguageReload": true, + "enableZoom": true, + "maxZoom": 50.0 +} \ No newline at end of file diff --git a/minecraft/config/chunksending.json b/minecraft/config/chunksending.json new file mode 100644 index 0000000..8afe89b --- /dev/null +++ b/minecraft/config/chunksending.json @@ -0,0 +1,10 @@ +{ + "maxChunksPerTick": { + "desc:": "Maximum amount of chunks sent per tick to a player, increases dynamically with size of the backlog", + "maxChunksPerTick": 5 + }, + "debugLogging": { + "desc:": "Enable debug logging to show the amount of chunks sent/queued", + "debugLogging": false + } +} \ No newline at end of file diff --git a/minecraft/config/chunky/config.json b/minecraft/config/chunky/config.json new file mode 100644 index 0000000..b6d263f --- /dev/null +++ b/minecraft/config/chunky/config.json @@ -0,0 +1,8 @@ +{ + "version": 2, + "language": "en", + "continueOnRestart": false, + "forceLoadExistingChunks": false, + "silent": false, + "updateInterval": 1 +} \ No newline at end of file diff --git a/minecraft/config/citresewn.json b/minecraft/config/citresewn.json new file mode 100644 index 0000000..28a240a --- /dev/null +++ b/minecraft/config/citresewn.json @@ -0,0 +1,7 @@ +{ + "enabled": true, + "mute_errors": false, + "mute_warns": false, + "citenchantment_scroll_multiplier": 8.0, + "cache_ms": 50 +} \ No newline at end of file diff --git a/minecraft/config/clickadv-common.toml b/minecraft/config/clickadv-common.toml new file mode 100644 index 0000000..525af62 --- /dev/null +++ b/minecraft/config/clickadv-common.toml @@ -0,0 +1,5 @@ + +["Config category"] + #By default vanilla only displays advancements in chat which get broadcasted to all online players,this setting turns on showing all advancements achieved in chat instead. That way you can findthe advancements you got easier/see better which you get. Some of these may have no actual text though because the advancement itself doesnt have any, e.g. Categories are advancements too. default = true + showAllInLocalChat = true + diff --git a/minecraft/config/clickadv.json b/minecraft/config/clickadv.json new file mode 100644 index 0000000..8b54e67 --- /dev/null +++ b/minecraft/config/clickadv.json @@ -0,0 +1,6 @@ +{ + "showAllInLocalChat": { + "desc:": " By default vanilla only displays advancements in chat which get broadcasted to all online players.Enabling this setting shows all advancements earned in chat.Some of these may be lacking text when the advancement itself does not have any, e.g. Categories are advancements too. default: true", + "showAllInLocalChat": true + } +} \ No newline at end of file diff --git a/minecraft/config/clienttweaks-common.toml b/minecraft/config/clienttweaks-common.toml new file mode 100644 index 0000000..382302a --- /dev/null +++ b/minecraft/config/clienttweaks-common.toml @@ -0,0 +1,61 @@ + +[customization] + #Items that count as torches for the offhand-torch tweak options. + torchItems = ["minecraft:torch", "minecraft:soul_torch", "tconstruct:stone_torch"] + #Items that are allowed to place torches from the offhand if offhandTorchWithToolOnly is enabled. + torchTools = ["minecraft:wooden_pickaxe", "minecraft:stone_pickaxe", "minecraft:iron_pickaxe", "minecraft:golden_pickaxe", "minecraft:diamond_pickaxe", "minecraft:netherite_pickaxe", "tconstruct:pickaxe", "tconstruct:hammer"] + #Items that count as weapons for the offhand-shield hiding tweak options. + shieldWeapons = ["tetra:modular_sword"] + #Items that count as shields for the offhand-shield hiding tweak options. + shieldItems = ["basicshields:wooden_shield", "basicshields:golden_shield", "basicshields:diamond_shield", "basicshields:netherite_shield"] + #Items that count as fireworks for the offhand-firework tweak options. + fireworkItems = ["minecraft:firework_rocket"] + #Blocks that should be protected in the prevent accidental mining tweak. + fragileBlocks = ["minecraft:budding_amethyst", "minecraft:small_amethyst_bud", "minecraft:medium_amethyst_bud", "minecraft:large_amethyst_bud"] + #Items that count as food for the offhand-torch and -use tweak options. + foodItems = ["supplementaries:lunch_basket"] + +[tweaks] + #This option will let you climb ladders automatically by just looking upwards, rather than requiring a key to be held down. + autoClimbLadder = false + #This prevents the last torch in the offhand from being placed. + doNotUseLastTorch = false + #This prevents the last durability from being used up. + doNotUseLastMending = false + #This option will hide your offhand item. It can be toggled via an optional key binding. + hideOffhandItem = false + #This option will hide your own potion particle effects for your client (other players will still see them). + hideOwnParticleEffects = false + #This option will hide your shield unless you are holding a weapon. + hideShieldUnlessHoldingWeapon = true + #This prevents torches from being placed from your offhand at all. + noOffhandTorchAtAll = false + #This prevents torches from being placed from your offhand if you have a block in your main hand. + noOffhandTorchWithBlock = true + #This prevents torches from being placed from your offhand if you have food in your main hand. + noOffhandTorchWithFood = true + #This prevents torches from being placed from your offhand if you have an empty main hand. + noOffhandTorchWithEmptyHand = false + #This prevents items from being used from your offhand if you have food in your main hand. + noOffhandUseWithFood = false + #This restricts torches to be placed from the offhand only when you're holding a tool in your main hand. + offhandTorchWithToolOnly = false + #This prevents fireworks from being launched from your offhand if you are wearing an Elytra, unless you're flying. + noOffhandFireworksWithElytra = true + #This option will disable step assist added by other mods. + disableStepAssist = false + #This option will disable log stripping. + disableLogStripping = false + #This option will disable paving when holding a block in your offhand. + disablePavingWithBlockInOffhand = true + #This adds back the master volume slider to the options screen. Saves you a click! + masterVolumeSlider = true + #This adds back the music volume slider to the options screen. Saves you a click! + musicVolumeSlider = true + #This option will make iron fences and glass panes have a bigger hitbox while placing them, making it easier to aim. + paneBuildingSupport = true + #This option makes the recipe book not shift the inventory when opened. Works best with smaller GUI scales / bigger resolutions. + noRecipeBookShifting = false + #Prevents accidental mining of certain fragile blocks like budding amethysts. + preventAccidentalMining = false + diff --git a/minecraft/config/climbladdersfast.json5 b/minecraft/config/climbladdersfast.json5 new file mode 100644 index 0000000..f2c3694 --- /dev/null +++ b/minecraft/config/climbladdersfast.json5 @@ -0,0 +1,14 @@ +{ + // True to enable ClimbLaddersFast, false to disable. This is also toggled by the toggle keybind in controls. [default = true] + "enabled": true, + // Speed for climbing up ladders [default = 0.4] + "climbUpSpeed": 0.4, + // Speed for climbing down ladders [default = 0.4] + "climbDownSpeed": 0.4, + // True to disable faster climbing on Scaffolding [default = false] + "disableScaffoldingFastClimbing": false, + // True to disable collisions with Scaffolding, allowing fast climbing down scaffolding just like ladders [default = true] + "disableScaffoldingCollision": true, + // True to disable faster climbing on vines [default = false] + "disableVinesFastClimbing": false +} \ No newline at end of file diff --git a/minecraft/config/collective/entity_names.json b/minecraft/config/collective/entity_names.json new file mode 100644 index 0000000..c7bb159 --- /dev/null +++ b/minecraft/config/collective/entity_names.json @@ -0,0 +1,5500 @@ +{ + "female_names": [ + "Aaron", + "Abbey", + "Abbie", + "Abby", + "Abigail", + "Ada", + "Adah", + "Adaline", + "Adam", + "Addie", + "Adela", + "Adelaida", + "Adelaide", + "Adele", + "Adelia", + "Adelina", + "Adeline", + "Adell", + "Adella", + "Adelle", + "Adena", + "Adina", + "Adria", + "Adrian", + "Adriana", + "Adriane", + "Adrianna", + "Adrianne", + "Adrien", + "Adriene", + "Adrienne", + "Afton", + "Agatha", + "Agnes", + "Agnus", + "Agripina", + "Agueda", + "Agustina", + "Ai", + "Aida", + "Aide", + "Aiko", + "Aileen", + "Ailene", + "Aimee", + "Aisha", + "Aja", + "Akiko", + "Akilah", + "Alaina", + "Alaine", + "Alana", + "Alane", + "Alanna", + "Alayna", + "Alba", + "Albert", + "Alberta", + "Albertha", + "Albertina", + "Albertine", + "Albina", + "Alda", + "Alease", + "Alecia", + "Aleen", + "Aleida", + "Aleisha", + "Alejandra", + "Alejandrina", + "Alena", + "Alene", + "Alesha", + "Aleshia", + "Alesia", + "Alessandra", + "Aleta", + "Aletha", + "Alethea", + "Alethia", + "Alex", + "Alexa", + "Alexander", + "Alexandra", + "Alexandria", + "Alexia", + "Alexis", + "Alfreda", + "Alfredia", + "Ali", + "Alia", + "Alica", + "Alice", + "Alicia", + "Alida", + "Alina", + "Aline", + "Alisa", + "Alise", + "Alisha", + "Alishia", + "Alisia", + "Alison", + "Alissa", + "Alita", + "Alix", + "Aliza", + "Alla", + "Alleen", + "Allegra", + "Allen", + "Allena", + "Allene", + "Allie", + "Alline", + "Allison", + "Allyn", + "Allyson", + "Alma", + "Almeda", + "Almeta", + "Alona", + "Alpha", + "Alta", + "Altagracia", + "Altha", + "Althea", + "Alva", + "Alvera", + "Alverta", + "Alvina", + "Alyce", + "Alycia", + "Alysa", + "Alyse", + "Alysha", + "Alysia", + "Alyson", + "Alyssa", + "Amada", + "Amal", + "Amalia", + "Amanda", + "Amber", + "Amberly", + "Amee", + "Amelia", + "America", + "Ami", + "Amie", + "Amiee", + "Amina", + "Amira", + "Ammie", + "Amparo", + "Amy", + "An", + "Ana", + "Anabel", + "Analisa", + "Anamaria", + "Anastacia", + "Anastasia", + "Andera", + "Andra", + "Andre", + "Andrea", + "Andree", + "Andrew", + "Andria", + "Anette", + "Angel", + "Angela", + "Angele", + "Angelena", + "Angeles", + "Angelia", + "Angelic", + "Angelica", + "Angelika", + "Angelina", + "Angeline", + "Angelique", + "Angelita", + "Angella", + "Angelo", + "Angelyn", + "Angie", + "Angila", + "Angla", + "Angle", + "Anglea", + "Anh", + "Anika", + "Anisa", + "Anisha", + "Anissa", + "Anita", + "Anitra", + "Anja", + "Anjanette", + "Anjelica", + "Ann", + "Anna", + "Annabel", + "Annabell", + "Annabelle", + "Annalee", + "Annalisa", + "Annamae", + "Annamaria", + "Annamarie", + "Anne", + "Anneliese", + "Annelle", + "Annemarie", + "Annett", + "Annetta", + "Annette", + "Annice", + "Annie", + "Annika", + "Annis", + "Annita", + "Annmarie", + "Anthony", + "Antionette", + "Antoinette", + "Antonetta", + "Antonette", + "Antonia", + "Antonietta", + "Antonina", + "Antonio", + "Anya", + "Apolonia", + "April", + "Apryl", + "Ara", + "Araceli", + "Aracelis", + "Aracely", + "Arcelia", + "Ardath", + "Ardelia", + "Ardell", + "Ardella", + "Ardelle", + "Ardis", + "Ardith", + "Aretha", + "Argelia", + "Argentina", + "Ariana", + "Ariane", + "Arianna", + "Arianne", + "Arica", + "Arie", + "Ariel", + "Arielle", + "Arla", + "Arlean", + "Arleen", + "Arlena", + "Arlene", + "Arletha", + "Arletta", + "Arlette", + "Arlinda", + "Arline", + "Arlyne", + "Armanda", + "Armandina", + "Armida", + "Arminda", + "Arnetta", + "Arnette", + "Arnita", + "Arthur", + "Artie", + "Arvilla", + "Asha", + "Ashanti", + "Ashely", + "Ashlea", + "Ashlee", + "Ashleigh", + "Ashley", + "Ashli", + "Ashlie", + "Ashly", + "Ashlyn", + "Ashton", + "Asia", + "Asley", + "Assunta", + "Astrid", + "Asuncion", + "Athena", + "Aubrey", + "Audie", + "Audra", + "Audrea", + "Audrey", + "Audria", + "Audrie", + "Audry", + "Augusta", + "Augustina", + "Augustine", + "Aundrea", + "Aura", + "Aurea", + "Aurelia", + "Aurora", + "Aurore", + "Austin", + "Autumn", + "Ava", + "Avelina", + "Avery", + "Avis", + "Avril", + "Awilda", + "Ayako", + "Ayana", + "Ayanna", + "Ayesha", + "Azalee", + "Azucena", + "Azzie", + "Babara", + "Babette", + "Bailey", + "Bambi", + "Bao", + "Barabara", + "Barb", + "Barbar", + "Barbara", + "Barbera", + "Barbie", + "Barbra", + "Bari", + "Barrie", + "Basilia", + "Bea", + "Beata", + "Beatrice", + "Beatris", + "Beatriz", + "Beaulah", + "Bebe", + "Becki", + "Beckie", + "Becky", + "Bee", + "Belen", + "Belia", + "Belinda", + "Belkis", + "Bell", + "Bella", + "Belle", + "Belva", + "Benita", + "Bennie", + "Berenice", + "Berna", + "Bernadette", + "Bernadine", + "Bernarda", + "Bernardina", + "Bernardine", + "Berneice", + "Bernetta", + "Bernice", + "Bernie", + "Berniece", + "Bernita", + "Berry", + "Berta", + "Bertha", + "Bertie", + "Beryl", + "Bess", + "Bessie", + "Beth", + "Bethanie", + "Bethann", + "Bethany", + "Bethel", + "Betsey", + "Betsy", + "Bette", + "Bettie", + "Bettina", + "Betty", + "Bettyann", + "Bettye", + "Beula", + "Beulah", + "Bev", + "Beverlee", + "Beverley", + "Beverly", + "Bianca", + "Bibi", + "Billi", + "Billie", + "Billy", + "Billye", + "Birdie", + "Birgit", + "Blair", + "Blake", + "Blanca", + "Blanch", + "Blanche", + "Blondell", + "Blossom", + "Blythe", + "Bobbi", + "Bobbie", + "Bobby", + "Bobbye", + "Bobette", + "Bok", + "Bong", + "Bonita", + "Bonnie", + "Bonny", + "Branda", + "Brande", + "Brandee", + "Brandi", + "Brandie", + "Brandon", + "Brandy", + "Breana", + "Breann", + "Breanna", + "Breanne", + "Bree", + "Brenda", + "Brenna", + "Brett", + "Brian", + "Briana", + "Brianna", + "Brianne", + "Bridget", + "Bridgett", + "Bridgette", + "Brigette", + "Brigid", + "Brigida", + "Brigitte", + "Brinda", + "Britany", + "Britney", + "Britni", + "Britt", + "Britta", + "Brittaney", + "Brittani", + "Brittanie", + "Brittany", + "Britteny", + "Brittney", + "Brittni", + "Brittny", + "Bronwyn", + "Brook", + "Brooke", + "Bruna", + "Brunilda", + "Bryanna", + "Brynn", + "Buena", + "Buffy", + "Bula", + "Bulah", + "Bunny", + "Burma", + "Caitlin", + "Caitlyn", + "Calandra", + "Calista", + "Callie", + "Camelia", + "Camellia", + "Cameron", + "Cami", + "Camie", + "Camila", + "Camilla", + "Camille", + "Cammie", + "Cammy", + "Candace", + "Candance", + "Candelaria", + "Candi", + "Candice", + "Candida", + "Candie", + "Candis", + "Candra", + "Candy", + "Candyce", + "Caprice", + "Cara", + "Caren", + "Carey", + "Cari", + "Caridad", + "Carie", + "Carin", + "Carina", + "Carisa", + "Carissa", + "Carita", + "Carl", + "Carla", + "Carlee", + "Carleen", + "Carlena", + "Carlene", + "Carletta", + "Carley", + "Carli", + "Carlie", + "Carline", + "Carlita", + "Carlos", + "Carlota", + "Carlotta", + "Carly", + "Carlyn", + "Carma", + "Carman", + "Carmel", + "Carmela", + "Carmelia", + "Carmelina", + "Carmelita", + "Carmella", + "Carmen", + "Carmina", + "Carmon", + "Carol", + "Carola", + "Carolann", + "Carole", + "Carolee", + "Carolin", + "Carolina", + "Caroline", + "Caroll", + "Carolyn", + "Carolyne", + "Carolynn", + "Caron", + "Caroyln", + "Carri", + "Carrie", + "Carrol", + "Carroll", + "Carry", + "Cary", + "Caryl", + "Carylon", + "Caryn", + "Casandra", + "Casey", + "Casie", + "Casimira", + "Cassandra", + "Cassaundra", + "Cassey", + "Cassi", + "Cassidy", + "Cassie", + "Cassondra", + "Cassy", + "Catalina", + "Catarina", + "Caterina", + "Catharine", + "Catherin", + "Catherina", + "Catherine", + "Cathern", + "Catheryn", + "Cathey", + "Cathi", + "Cathie", + "Cathleen", + "Cathrine", + "Cathryn", + "Cathy", + "Catina", + "Catrice", + "Catrina", + "Cayla", + "Cecelia", + "Cecil", + "Cecila", + "Cecile", + "Cecilia", + "Cecille", + "Cecily", + "Celena", + "Celesta", + "Celeste", + "Celestina", + "Celestine", + "Celia", + "Celina", + "Celinda", + "Celine", + "Celsa", + "Ceola", + "Chae", + "Chan", + "Chana", + "Chanda", + "Chandra", + "Chanel", + "Chanell", + "Chanelle", + "Chang", + "Chantal", + "Chantay", + "Chante", + "Chantel", + "Chantell", + "Chantelle", + "Chara", + "Charis", + "Charise", + "Charissa", + "Charisse", + "Charita", + "Charity", + "Charla", + "Charleen", + "Charlena", + "Charlene", + "Charles", + "Charlesetta", + "Charlette", + "Charlie", + "Charline", + "Charlott", + "Charlotte", + "Charlsie", + "Charlyn", + "Charmain", + "Charmaine", + "Charolette", + "Chasidy", + "Chasity", + "Chassidy", + "Chastity", + "Chau", + "Chaya", + "Chelsea", + "Chelsey", + "Chelsie", + "Cher", + "Chere", + "Cheree", + "Cherelle", + "Cheri", + "Cherie", + "Cherilyn", + "Cherise", + "Cherish", + "Cherly", + "Cherlyn", + "Cherri", + "Cherrie", + "Cherry", + "Cherryl", + "Chery", + "Cheryl", + "Cheryle", + "Cheryll", + "Cheyenne", + "Chi", + "Chia", + "Chieko", + "Chin", + "China", + "Ching", + "Chiquita", + "Chloe", + "Chong", + "Chris", + "Chrissy", + "Christa", + "Christal", + "Christeen", + "Christel", + "Christen", + "Christena", + "Christene", + "Christi", + "Christia", + "Christian", + "Christiana", + "Christiane", + "Christie", + "Christin", + "Christina", + "Christine", + "Christinia", + "Christopher", + "Christy", + "Chrystal", + "Chu", + "Chun", + "Chung", + "Ciara", + "Cicely", + "Ciera", + "Cierra", + "Cinda", + "Cinderella", + "Cindi", + "Cindie", + "Cindy", + "Cinthia", + "Cira", + "Clair", + "Claire", + "Clara", + "Clare", + "Clarence", + "Claretha", + "Claretta", + "Claribel", + "Clarice", + "Clarinda", + "Clarine", + "Claris", + "Clarisa", + "Clarissa", + "Clarita", + "Classie", + "Claude", + "Claudette", + "Claudia", + "Claudie", + "Claudine", + "Clelia", + "Clemencia", + "Clementina", + "Clementine", + "Clemmie", + "Cleo", + "Cleopatra", + "Cleora", + "Cleotilde", + "Cleta", + "Clora", + "Clorinda", + "Clotilde", + "Clyde", + "Codi", + "Cody", + "Colby", + "Coleen", + "Colene", + "Coletta", + "Colette", + "Colleen", + "Collen", + "Collene", + "Collette", + "Concepcion", + "Conception", + "Concetta", + "Concha", + "Conchita", + "Connie", + "Constance", + "Consuela", + "Consuelo", + "Contessa", + "Cora", + "Coral", + "Coralee", + "Coralie", + "Corazon", + "Cordelia", + "Cordia", + "Cordie", + "Coreen", + "Corene", + "Coretta", + "Corey", + "Cori", + "Corie", + "Corina", + "Corine", + "Corinna", + "Corinne", + "Corliss", + "Cornelia", + "Corrie", + "Corrin", + "Corrina", + "Corrine", + "Corrinne", + "Cortney", + "Cory", + "Courtney", + "Creola", + "Cris", + "Criselda", + "Crissy", + "Crista", + "Cristal", + "Cristen", + "Cristi", + "Cristie", + "Cristin", + "Cristina", + "Cristine", + "Cristy", + "Cruz", + "Crysta", + "Crystal", + "Crystle", + "Cuc", + "Curtis", + "Cyndi", + "Cyndy", + "Cynthia", + "Cyrstal", + "Cythia", + "Dacia", + "Dagmar", + "Dagny", + "Dahlia", + "Daina", + "Daine", + "Daisey", + "Daisy", + "Dakota", + "Dale", + "Dalene", + "Dalia", + "Dalila", + "Dallas", + "Damaris", + "Dan", + "Dana", + "Danae", + "Danelle", + "Danette", + "Dani", + "Dania", + "Danica", + "Daniel", + "Daniela", + "Daniele", + "Daniell", + "Daniella", + "Danielle", + "Danika", + "Danille", + "Danita", + "Dann", + "Danna", + "Dannette", + "Dannie", + "Dannielle", + "Danuta", + "Danyel", + "Danyell", + "Danyelle", + "Daphine", + "Daphne", + "Dara", + "Darby", + "Darcel", + "Darcey", + "Darci", + "Darcie", + "Darcy", + "Daria", + "Darla", + "Darleen", + "Darlena", + "Darlene", + "Darline", + "Darnell", + "Daryl", + "David", + "Davida", + "Davina", + "Dawn", + "Dawna", + "Dawne", + "Dayle", + "Dayna", + "Daysi", + "Deadra", + "Dean", + "Deana", + "Deandra", + "Deandrea", + "Deane", + "Deann", + "Deanna", + "Deanne", + "Deb", + "Debbi", + "Debbie", + "Debbra", + "Debby", + "Debera", + "Debi", + "Debora", + "Deborah", + "Debra", + "Debrah", + "Debroah", + "Dede", + "Dedra", + "Dee", + "Deeann", + "Deeanna", + "Deedee", + "Deedra", + "Deena", + "Deetta", + "Deidra", + "Deidre", + "Deirdre", + "Deja", + "Delaine", + "Delana", + "Delcie", + "Delena", + "Delfina", + "Delia", + "Delicia", + "Delila", + "Delilah", + "Delinda", + "Delisa", + "Dell", + "Della", + "Delma", + "Delmy", + "Delois", + "Deloise", + "Delora", + "Deloras", + "Delores", + "Deloris", + "Delorse", + "Delpha", + "Delphia", + "Delphine", + "Delsie", + "Delta", + "Demetra", + "Demetria", + "Demetrice", + "Demetrius", + "Dena", + "Denae", + "Deneen", + "Denese", + "Denice", + "Denise", + "Denisha", + "Denisse", + "Denita", + "Denna", + "Dennis", + "Dennise", + "Denny", + "Denyse", + "Deon", + "Deonna", + "Desirae", + "Desire", + "Desiree", + "Despina", + "Dessie", + "Destiny", + "Detra", + "Devin", + "Devon", + "Devona", + "Devora", + "Devorah", + "Dia", + "Diamond", + "Dian", + "Diana", + "Diane", + "Diann", + "Dianna", + "Dianne", + "Diedra", + "Diedre", + "Dierdre", + "Digna", + "Dimple", + "Dina", + "Dinah", + "Dinorah", + "Dion", + "Dione", + "Dionna", + "Dionne", + "Divina", + "Dixie", + "Dodie", + "Dollie", + "Dolly", + "Dolores", + "Doloris", + "Domenica", + "Dominga", + "Dominica", + "Dominique", + "Dominque", + "Domitila", + "Domonique", + "Dona", + "Donald", + "Donella", + "Donetta", + "Donette", + "Dong", + "Donita", + "Donna", + "Donnetta", + "Donnette", + "Donnie", + "Donya", + "Dora", + "Dorathy", + "Dorcas", + "Doreatha", + "Doreen", + "Dorene", + "Doretha", + "Dorethea", + "Doretta", + "Dori", + "Doria", + "Dorian", + "Dorie", + "Dorinda", + "Dorine", + "Doris", + "Dorla", + "Dorotha", + "Dorothea", + "Dorothy", + "Dorris", + "Dortha", + "Dorthea", + "Dorthey", + "Dorthy", + "Dot", + "Dottie", + "Dotty", + "Dovie", + "Dreama", + "Drema", + "Drew", + "Drucilla", + "Drusilla", + "Dulce", + "Dulcie", + "Dung", + "Dusti", + "Dusty", + "Dwana", + "Dyan", + "Earlean", + "Earleen", + "Earlene", + "Earlie", + "Earline", + "Earnestine", + "Eartha", + "Easter", + "Eboni", + "Ebonie", + "Ebony", + "Echo", + "Eda", + "Edda", + "Eddie", + "Edelmira", + "Eden", + "Edie", + "Edith", + "Edna", + "Edra", + "Edris", + "Edward", + "Edwina", + "Edyth", + "Edythe", + "Effie", + "Ehtel", + "Eileen", + "Eilene", + "Ela", + "Eladia", + "Elaina", + "Elaine", + "Elana", + "Elane", + "Elanor", + "Elayne", + "Elba", + "Elda", + "Eldora", + "Eleanor", + "Eleanora", + "Eleanore", + "Elease", + "Elena", + "Elene", + "Eleni", + "Elenor", + "Elenora", + "Elenore", + "Eleonor", + "Eleonora", + "Eleonore", + "Elfreda", + "Elfrieda", + "Elfriede", + "Elia", + "Eliana", + "Elicia", + "Elida", + "Elidia", + "Elin", + "Elina", + "Elinor", + "Elinore", + "Elisa", + "Elisabeth", + "Elise", + "Elisha", + "Elissa", + "Eliz", + "Eliza", + "Elizabet", + "Elizabeth", + "Elizbeth", + "Elizebeth", + "Elke", + "Ella", + "Ellamae", + "Ellan", + "Ellen", + "Ellena", + "Elli", + "Ellie", + "Ellis", + "Elly", + "Ellyn", + "Elma", + "Elmer", + "Elmira", + "Elna", + "Elnora", + "Elodia", + "Elois", + "Eloisa", + "Eloise", + "Elouise", + "Elsa", + "Else", + "Elsie", + "Elsy", + "Elva", + "Elvera", + "Elvia", + "Elvie", + "Elvina", + "Elvira", + "Elwanda", + "Elyse", + "Elza", + "Ema", + "Emelda", + "Emelia", + "Emelina", + "Emeline", + "Emely", + "Emerald", + "Emerita", + "Emiko", + "Emilee", + "Emilia", + "Emilie", + "Emily", + "Emma", + "Emmaline", + "Emmie", + "Emmy", + "Emogene", + "Ena", + "Enda", + "Enedina", + "Eneida", + "Enid", + "Enola", + "Enriqueta", + "Epifania", + "Era", + "Eric", + "Erica", + "Ericka", + "Erika", + "Erin", + "Erinn", + "Erlene", + "Erlinda", + "Erline", + "Erma", + "Ermelinda", + "Erminia", + "Erna", + "Ernestina", + "Ernestine", + "Eryn", + "Esmeralda", + "Esperanza", + "Essie", + "Esta", + "Estefana", + "Estela", + "Estell", + "Estella", + "Estelle", + "Ester", + "Esther", + "Estrella", + "Etha", + "Ethel", + "Ethelene", + "Ethelyn", + "Ethyl", + "Etsuko", + "Etta", + "Ettie", + "Eufemia", + "Eugena", + "Eugene", + "Eugenia", + "Eugenie", + "Eula", + "Eulah", + "Eulalia", + "Eun", + "Euna", + "Eunice", + "Eura", + "Eusebia", + "Eustolia", + "Eva", + "Evalyn", + "Evan", + "Evangelina", + "Evangeline", + "Eve", + "Evelia", + "Evelin", + "Evelina", + "Eveline", + "Evelyn", + "Evelyne", + "Evelynn", + "Evette", + "Evia", + "Evie", + "Evita", + "Evon", + "Evonne", + "Ewa", + "Exie", + "Fabiola", + "Fae", + "Fairy", + "Faith", + "Fallon", + "Fannie", + "Fanny", + "Farah", + "Farrah", + "Fatima", + "Fatimah", + "Faustina", + "Faviola", + "Fawn", + "Fay", + "Faye", + "Fe", + "Felecia", + "Felica", + "Felice", + "Felicia", + "Felicidad", + "Felicita", + "Felicitas", + "Felipa", + "Felisa", + "Felisha", + "Fermina", + "Fern", + "Fernanda", + "Fernande", + "Ferne", + "Fidela", + "Fidelia", + "Filomena", + "Fiona", + "Flavia", + "Fleta", + "Flo", + "Flor", + "Flora", + "Florance", + "Florence", + "Florencia", + "Florene", + "Florentina", + "Floretta", + "Floria", + "Florida", + "Florinda", + "Florine", + "Florrie", + "Flossie", + "Floy", + "Fonda", + "Fran", + "France", + "Francene", + "Frances", + "Francesca", + "Franchesca", + "Francie", + "Francina", + "Francine", + "Francis", + "Francisca", + "Francisco", + "Francoise", + "Frank", + "Frankie", + "Fransisca", + "Fred", + "Freda", + "Fredda", + "Freddie", + "Frederica", + "Fredericka", + "Fredia", + "Fredricka", + "Freeda", + "Freida", + "Frida", + "Frieda", + "Fumiko", + "Gabriel", + "Gabriela", + "Gabriele", + "Gabriella", + "Gabrielle", + "Gail", + "Gala", + "Gale", + "Galina", + "Garnet", + "Garnett", + "Gary", + "Gay", + "Gaye", + "Gayla", + "Gayle", + "Gaylene", + "Gaynell", + "Gaynelle", + "Gearldine", + "Gema", + "Gemma", + "Gena", + "Gene", + "Genesis", + "Geneva", + "Genevie", + "Genevieve", + "Genevive", + "Genia", + "Genie", + "Genna", + "Gennie", + "Genny", + "Genoveva", + "Georgann", + "George", + "Georgeann", + "Georgeanna", + "Georgene", + "Georgetta", + "Georgette", + "Georgia", + "Georgiana", + "Georgiann", + "Georgianna", + "Georgianne", + "Georgie", + "Georgina", + "Georgine", + "Gerald", + "Geraldine", + "Geralyn", + "Gerda", + "Geri", + "Germaine", + "Gerri", + "Gerry", + "Gertha", + "Gertie", + "Gertrud", + "Gertrude", + "Gertrudis", + "Gertude", + "Ghislaine", + "Gia", + "Gianna", + "Gidget", + "Gigi", + "Gilberte", + "Gilda", + "Gillian", + "Gilma", + "Gina", + "Ginette", + "Ginger", + "Ginny", + "Giovanna", + "Gisela", + "Gisele", + "Giselle", + "Gita", + "Giuseppina", + "Gladis", + "Glady", + "Gladys", + "Glayds", + "Glenda", + "Glendora", + "Glenn", + "Glenna", + "Glennie", + "Glennis", + "Glinda", + "Gloria", + "Glory", + "Glynda", + "Glynis", + "Golda", + "Golden", + "Goldie", + "Grace", + "Gracia", + "Gracie", + "Graciela", + "Grayce", + "Grazyna", + "Gregoria", + "Gregory", + "Greta", + "Gretchen", + "Gretta", + "Gricelda", + "Grisel", + "Griselda", + "Guadalupe", + "Gudrun", + "Guillermina", + "Gussie", + "Gwen", + "Gwenda", + "Gwendolyn", + "Gwenn", + "Gwyn", + "Gwyneth", + "Ha", + "Hae", + "Hailey", + "Haley", + "Halina", + "Halley", + "Hallie", + "Han", + "Hana", + "Hang", + "Hanh", + "Hanna", + "Hannah", + "Hannelore", + "Harmony", + "Harold", + "Harriet", + "Harriett", + "Harriette", + "Hassie", + "Hattie", + "Haydee", + "Hayley", + "Hazel", + "Heather", + "Hedwig", + "Hedy", + "Hee", + "Heide", + "Heidi", + "Heidy", + "Heike", + "Helaine", + "Helen", + "Helena", + "Helene", + "Helga", + "Hellen", + "Henrietta", + "Henriette", + "Henry", + "Herlinda", + "Herma", + "Hermelinda", + "Hermila", + "Hermina", + "Hermine", + "Herminia", + "Herta", + "Hertha", + "Hester", + "Hettie", + "Hiedi", + "Hien", + "Hilaria", + "Hilary", + "Hilda", + "Hilde", + "Hildegard", + "Hildegarde", + "Hildred", + "Hillary", + "Hilma", + "Hiroko", + "Hisako", + "Hoa", + "Holley", + "Holli", + "Hollie", + "Hollis", + "Holly", + "Honey", + "Hong", + "Hope", + "Hortencia", + "Hortense", + "Hortensia", + "Hsiu", + "Hue", + "Hui", + "Hulda", + "Huong", + "Hwa", + "Hyacinth", + "Hye", + "Hyo", + "Hyon", + "Hyun", + "Ida", + "Idalia", + "Idell", + "Idella", + "Iesha", + "Ignacia", + "Ila", + "Ilana", + "Ilda", + "Ileana", + "Ileen", + "Ilene", + "Iliana", + "Illa", + "Ilona", + "Ilse", + "Iluminada", + "Ima", + "Imelda", + "Imogene", + "In", + "Ina", + "India", + "Indira", + "Inell", + "Ines", + "Inez", + "Inga", + "Inge", + "Ingeborg", + "Inger", + "Ingrid", + "Inocencia", + "Iola", + "Iona", + "Ione", + "Ira", + "Iraida", + "Irena", + "Irene", + "Irina", + "Iris", + "Irish", + "Irma", + "Irmgard", + "Isa", + "Isabel", + "Isabell", + "Isabella", + "Isabelle", + "Isadora", + "Isaura", + "Isela", + "Isidra", + "Isis", + "Isobel", + "Iva", + "Ivana", + "Ivelisse", + "Ivette", + "Ivey", + "Ivonne", + "Ivory", + "Ivy", + "Izetta", + "Izola", + "Ja", + "Jacalyn", + "Jacelyn", + "Jacinda", + "Jacinta", + "Jack", + "Jackeline", + "Jackelyn", + "Jacki", + "Jackie", + "Jacklyn", + "Jackqueline", + "Jaclyn", + "Jacqualine", + "Jacque", + "Jacquelin", + "Jacqueline", + "Jacquelyn", + "Jacquelyne", + "Jacquelynn", + "Jacquetta", + "Jacqui", + "Jacquie", + "Jacquiline", + "Jacquline", + "Jacqulyn", + "Jada", + "Jade", + "Jadwiga", + "Jae", + "Jaime", + "Jaimee", + "Jaimie", + "Jaleesa", + "Jalisa", + "Jama", + "Jame", + "Jamee", + "James", + "Jamey", + "Jami", + "Jamie", + "Jamika", + "Jamila", + "Jammie", + "Jan", + "Jana", + "Janae", + "Janay", + "Jane", + "Janean", + "Janee", + "Janeen", + "Janel", + "Janell", + "Janella", + "Janelle", + "Janene", + "Janessa", + "Janet", + "Janeth", + "Janett", + "Janetta", + "Janette", + "Janey", + "Jani", + "Janice", + "Janie", + "Janiece", + "Janina", + "Janine", + "Janis", + "Janise", + "Janita", + "Jann", + "Janna", + "Jannet", + "Jannette", + "Jannie", + "January", + "Janyce", + "Jaqueline", + "Jaquelyn", + "Jasmin", + "Jasmine", + "Jason", + "Jaunita", + "Jay", + "Jaye", + "Jayme", + "Jaymie", + "Jayna", + "Jayne", + "Jazmin", + "Jazmine", + "Jean", + "Jeana", + "Jeane", + "Jeanelle", + "Jeanene", + "Jeanett", + "Jeanetta", + "Jeanette", + "Jeanice", + "Jeanie", + "Jeanine", + "Jeanmarie", + "Jeanna", + "Jeanne", + "Jeannetta", + "Jeannette", + "Jeannie", + "Jeannine", + "Jeffie", + "Jeffrey", + "Jen", + "Jena", + "Jenae", + "Jene", + "Jenee", + "Jenell", + "Jenelle", + "Jenette", + "Jeneva", + "Jeni", + "Jenice", + "Jenifer", + "Jeniffer", + "Jenine", + "Jenise", + "Jenna", + "Jennefer", + "Jennell", + "Jennette", + "Jenni", + "Jennie", + "Jennifer", + "Jenniffer", + "Jennine", + "Jenny", + "Jeraldine", + "Jeremy", + "Jeri", + "Jerica", + "Jerilyn", + "Jerlene", + "Jerri", + "Jerrica", + "Jerrie", + "Jerry", + "Jesenia", + "Jesica", + "Jesse", + "Jessenia", + "Jessi", + "Jessia", + "Jessica", + "Jessie", + "Jessika", + "Jestine", + "Jesus", + "Jesusa", + "Jesusita", + "Jetta", + "Jettie", + "Jewel", + "Jewell", + "Ji", + "Jill", + "Jillian", + "Jimmie", + "Jimmy", + "Jin", + "Jina", + "Jinny", + "Jo", + "Joan", + "Joana", + "Joane", + "Joanie", + "Joann", + "Joanna", + "Joanne", + "Joannie", + "Joaquina", + "Jocelyn", + "Jodee", + "Jodi", + "Jodie", + "Jody", + "Joe", + "Joeann", + "Joel", + "Joella", + "Joelle", + "Joellen", + "Joetta", + "Joette", + "Joey", + "Johana", + "Johanna", + "Johanne", + "John", + "Johna", + "Johnetta", + "Johnette", + "Johnie", + "Johnna", + "Johnnie", + "Johnny", + "Johnsie", + "Joi", + "Joie", + "Jolanda", + "Joleen", + "Jolene", + "Jolie", + "Joline", + "Jolyn", + "Jolynn", + "Jon", + "Jona", + "Jone", + "Jonell", + "Jonelle", + "Jong", + "Joni", + "Jonie", + "Jonna", + "Jonnie", + "Jordan", + "Jose", + "Josefa", + "Josefina", + "Josefine", + "Joselyn", + "Joseph", + "Josephina", + "Josephine", + "Josette", + "Joshua", + "Josie", + "Joslyn", + "Josphine", + "Jovan", + "Jovita", + "Joy", + "Joya", + "Joyce", + "Joycelyn", + "Joye", + "Juan", + "Juana", + "Juanita", + "Jude", + "Judi", + "Judie", + "Judith", + "Judy", + "Jule", + "Julee", + "Julene", + "Juli", + "Julia", + "Julian", + "Juliana", + "Juliane", + "Juliann", + "Julianna", + "Julianne", + "Julie", + "Julieann", + "Julienne", + "Juliet", + "Julieta", + "Julietta", + "Juliette", + "Julio", + "Julissa", + "June", + "Jung", + "Junie", + "Junita", + "Junko", + "Justa", + "Justin", + "Justina", + "Justine", + "Jutta", + "Ka", + "Kacey", + "Kaci", + "Kacie", + "Kacy", + "Kai", + "Kaila", + "Kaitlin", + "Kaitlyn", + "Kala", + "Kaleigh", + "Kaley", + "Kali", + "Kallie", + "Kalyn", + "Kam", + "Kamala", + "Kami", + "Kamilah", + "Kandace", + "Kandi", + "Kandice", + "Kandis", + "Kandra", + "Kandy", + "Kanesha", + "Kanisha", + "Kara", + "Karan", + "Kareen", + "Karen", + "Karena", + "Karey", + "Kari", + "Karie", + "Karima", + "Karin", + "Karina", + "Karine", + "Karisa", + "Karissa", + "Karl", + "Karla", + "Karleen", + "Karlene", + "Karly", + "Karlyn", + "Karma", + "Karmen", + "Karol", + "Karole", + "Karoline", + "Karolyn", + "Karon", + "Karren", + "Karri", + "Karrie", + "Karry", + "Kary", + "Karyl", + "Karyn", + "Kasandra", + "Kasey", + "Kasha", + "Kasi", + "Kasie", + "Kassandra", + "Kassie", + "Kate", + "Katelin", + "Katelyn", + "Katelynn", + "Katerine", + "Kathaleen", + "Katharina", + "Katharine", + "Katharyn", + "Kathe", + "Katheleen", + "Katherin", + "Katherina", + "Katherine", + "Kathern", + "Katheryn", + "Kathey", + "Kathi", + "Kathie", + "Kathleen", + "Kathlene", + "Kathline", + "Kathlyn", + "Kathrin", + "Kathrine", + "Kathryn", + "Kathryne", + "Kathy", + "Kathyrn", + "Kati", + "Katia", + "Katie", + "Katina", + "Katlyn", + "Katrice", + "Katrina", + "Kattie", + "Katy", + "Kay", + "Kayce", + "Kaycee", + "Kaye", + "Kayla", + "Kaylee", + "Kayleen", + "Kayleigh", + "Kaylene", + "Kazuko", + "Kecia", + "Keeley", + "Keely", + "Keena", + "Keesha", + "Keiko", + "Keila", + "Keira", + "Keisha", + "Keith", + "Keitha", + "Keli", + "Kelle", + "Kellee", + "Kelley", + "Kelli", + "Kellie", + "Kelly", + "Kellye", + "Kelsey", + "Kelsi", + "Kelsie", + "Kemberly", + "Kena", + "Kenda", + "Kendal", + "Kendall", + "Kendra", + "Kenia", + "Kenisha", + "Kenna", + "Kenneth", + "Kenya", + "Kenyatta", + "Kenyetta", + "Kera", + "Keren", + "Keri", + "Kerri", + "Kerrie", + "Kerry", + "Kerstin", + "Kesha", + "Keshia", + "Keturah", + "Keva", + "Kevin", + "Khadijah", + "Khalilah", + "Kia", + "Kiana", + "Kiara", + "Kiera", + "Kiersten", + "Kiesha", + "Kiley", + "Kim", + "Kimber", + "Kimberely", + "Kimberlee", + "Kimberley", + "Kimberli", + "Kimberlie", + "Kimberly", + "Kimbery", + "Kimbra", + "Kimi", + "Kimiko", + "Kina", + "Kindra", + "Kira", + "Kirby", + "Kirsten", + "Kirstie", + "Kirstin", + "Kisha", + "Kit", + "Kittie", + "Kitty", + "Kiyoko", + "Kizzie", + "Kizzy", + "Klara", + "Kori", + "Kortney", + "Kourtney", + "Kris", + "Krishna", + "Krissy", + "Krista", + "Kristal", + "Kristan", + "Kristeen", + "Kristel", + "Kristen", + "Kristi", + "Kristian", + "Kristie", + "Kristin", + "Kristina", + "Kristine", + "Kristle", + "Kristy", + "Kristyn", + "Krysta", + "Krystal", + "Krysten", + "Krystin", + "Krystina", + "Krystle", + "Krystyna", + "Kum", + "Kyla", + "Kyle", + "Kylee", + "Kylie", + "Kym", + "Kymberly", + "Kyoko", + "Kyong", + "Kyra", + "Kyung", + "Lacey", + "Lachelle", + "Laci", + "Lacie", + "Lacresha", + "Lacy", + "Ladawn", + "Ladonna", + "Lady", + "Lael", + "Lahoma", + "Lai", + "Laila", + "Laine", + "Lajuana", + "Lakeesha", + "Lakeisha", + "Lakendra", + "Lakenya", + "Lakesha", + "Lakeshia", + "Lakia", + "Lakiesha", + "Lakisha", + "Lakita", + "Lala", + "Lamonica", + "Lan", + "Lana", + "Lane", + "Lanell", + "Lanelle", + "Lanette", + "Lang", + "Lani", + "Lanie", + "Lanita", + "Lannie", + "Lanora", + "Laquanda", + "Laquita", + "Lara", + "Larae", + "Laraine", + "Laree", + "Larhonda", + "Larisa", + "Larissa", + "Larita", + "Laronda", + "Larraine", + "Larry", + "Larue", + "Lasandra", + "Lashanda", + "Lashandra", + "Lashaun", + "Lashaunda", + "Lashawn", + "Lashawna", + "Lashawnda", + "Lashay", + "Lashell", + "Lashon", + "Lashonda", + "Lashunda", + "Lasonya", + "Latanya", + "Latarsha", + "Latasha", + "Latashia", + "Latesha", + "Latia", + "Laticia", + "Latina", + "Latisha", + "Latonia", + "Latonya", + "Latoria", + "Latosha", + "Latoya", + "Latoyia", + "Latrice", + "Latricia", + "Latrina", + "Latrisha", + "Launa", + "Laura", + "Lauralee", + "Lauran", + "Laure", + "Laureen", + "Laurel", + "Lauren", + "Laurena", + "Laurence", + "Laurene", + "Lauretta", + "Laurette", + "Lauri", + "Laurice", + "Laurie", + "Laurinda", + "Laurine", + "Lauryn", + "Lavada", + "Lavelle", + "Lavenia", + "Lavera", + "Lavern", + "Laverna", + "Laverne", + "Laveta", + "Lavette", + "Lavina", + "Lavinia", + "Lavon", + "Lavona", + "Lavonda", + "Lavone", + "Lavonia", + "Lavonna", + "Lavonne", + "Lawana", + "Lawanda", + "Lawanna", + "Lawrence", + "Layla", + "Layne", + "Le", + "Lea", + "Leah", + "Lean", + "Leana", + "Leandra", + "Leann", + "Leanna", + "Leanne", + "Leanora", + "Leatha", + "Leatrice", + "Lecia", + "Leda", + "Lee", + "Leeann", + "Leeanna", + "Leeanne", + "Leena", + "Leesa", + "Leia", + "Leida", + "Leigh", + "Leigha", + "Leighann", + "Leila", + "Leilani", + "Leisa", + "Leisha", + "Lekisha", + "Lela", + "Lelah", + "Lelia", + "Lena", + "Lenita", + "Lenna", + "Lennie", + "Lenora", + "Lenore", + "Leo", + "Leola", + "Leoma", + "Leon", + "Leona", + "Leonarda", + "Leone", + "Leonia", + "Leonida", + "Leonie", + "Leonila", + "Leonor", + "Leonora", + "Leonore", + "Leontine", + "Leora", + "Leota", + "Lera", + "Lesa", + "Lesha", + "Lesia", + "Leslee", + "Lesley", + "Lesli", + "Leslie", + "Lessie", + "Lester", + "Leta", + "Letha", + "Leticia", + "Letisha", + "Letitia", + "Lettie", + "Letty", + "Lewis", + "Lexie", + "Lezlie", + "Li", + "Lia", + "Liana", + "Liane", + "Lianne", + "Libbie", + "Libby", + "Liberty", + "Librada", + "Lida", + "Lidia", + "Lien", + "Lieselotte", + "Ligia", + "Lila", + "Lili", + "Lilia", + "Lilian", + "Liliana", + "Lilla", + "Lilli", + "Lillia", + "Lilliam", + "Lillian", + "Lilliana", + "Lillie", + "Lilly", + "Lily", + "Lin", + "Lina", + "Linda", + "Lindsay", + "Lindsey", + "Lindsy", + "Lindy", + "Linette", + "Ling", + "Linh", + "Linn", + "Linnea", + "Linnie", + "Linsey", + "Lisa", + "Lisabeth", + "Lisandra", + "Lisbeth", + "Lise", + "Lisette", + "Lisha", + "Lissa", + "Lissette", + "Lita", + "Livia", + "Liz", + "Liza", + "Lizabeth", + "Lizbeth", + "Lizeth", + "Lizette", + "Lizzette", + "Lizzie", + "Loan", + "Logan", + "Loida", + "Lois", + "Loise", + "Lola", + "Lolita", + "Loma", + "Lona", + "Londa", + "Loni", + "Lonna", + "Lonnie", + "Lora", + "Loraine", + "Loralee", + "Lore", + "Lorean", + "Loree", + "Loreen", + "Lorelei", + "Loren", + "Lorena", + "Lorene", + "Lorenza", + "Loreta", + "Loretta", + "Lorette", + "Lori", + "Loria", + "Loriann", + "Lorie", + "Lorilee", + "Lorina", + "Lorinda", + "Lorine", + "Loris", + "Lorita", + "Lorna", + "Lorraine", + "Lorretta", + "Lorri", + "Lorriane", + "Lorrie", + "Lorrine", + "Lory", + "Lottie", + "Lou", + "Louann", + "Louanne", + "Louella", + "Louetta", + "Louie", + "Louis", + "Louisa", + "Louise", + "Loura", + "Lourdes", + "Lourie", + "Louvenia", + "Love", + "Lovella", + "Lovetta", + "Lovie", + "Loyce", + "Lu", + "Luana", + "Luann", + "Luanna", + "Luanne", + "Luba", + "Luci", + "Lucia", + "Luciana", + "Lucie", + "Lucienne", + "Lucila", + "Lucile", + "Lucilla", + "Lucille", + "Lucina", + "Lucinda", + "Lucrecia", + "Lucretia", + "Lucy", + "Ludie", + "Ludivina", + "Lue", + "Luella", + "Luetta", + "Luis", + "Luisa", + "Luise", + "Lula", + "Lulu", + "Luna", + "Lupe", + "Lupita", + "Lura", + "Lurlene", + "Lurline", + "Luvenia", + "Luz", + "Lyda", + "Lydia", + "Lyla", + "Lyn", + "Lynda", + "Lyndia", + "Lyndsay", + "Lyndsey", + "Lynell", + "Lynelle", + "Lynetta", + "Lynette", + "Lynn", + "Lynna", + "Lynne", + "Lynnette", + "Lynsey", + "Ma", + "Mabel", + "Mabelle", + "Mable", + "Machelle", + "Macie", + "Mackenzie", + "Macy", + "Madalene", + "Madaline", + "Madalyn", + "Maddie", + "Madelaine", + "Madeleine", + "Madelene", + "Madeline", + "Madelyn", + "Madge", + "Madie", + "Madison", + "Madlyn", + "Madonna", + "Mae", + "Maegan", + "Mafalda", + "Magali", + "Magaly", + "Magan", + "Magaret", + "Magda", + "Magdalen", + "Magdalena", + "Magdalene", + "Magen", + "Maggie", + "Magnolia", + "Mahalia", + "Mai", + "Maia", + "Maida", + "Maile", + "Maira", + "Maire", + "Maisha", + "Maisie", + "Majorie", + "Makeda", + "Malena", + "Malia", + "Malika", + "Malinda", + "Malisa", + "Malissa", + "Malka", + "Mallie", + "Mallory", + "Malorie", + "Malvina", + "Mamie", + "Mammie", + "Man", + "Mana", + "Manda", + "Mandi", + "Mandie", + "Mandy", + "Manie", + "Manuela", + "Many", + "Mao", + "Maple", + "Mara", + "Maragaret", + "Maragret", + "Maranda", + "Marcela", + "Marcelene", + "Marcelina", + "Marceline", + "Marcell", + "Marcella", + "Marcelle", + "Marcene", + "Marchelle", + "Marci", + "Marcia", + "Marcie", + "Marcy", + "Mardell", + "Maren", + "Marg", + "Margaret", + "Margareta", + "Margarete", + "Margarett", + "Margaretta", + "Margarette", + "Margarita", + "Margarite", + "Margart", + "Marge", + "Margene", + "Margeret", + "Margert", + "Margery", + "Marget", + "Margherita", + "Margie", + "Margit", + "Margo", + "Margorie", + "Margot", + "Margret", + "Margrett", + "Marguerita", + "Marguerite", + "Margurite", + "Margy", + "Marhta", + "Mari", + "Maria", + "Mariah", + "Mariam", + "Marian", + "Mariana", + "Marianela", + "Mariann", + "Marianna", + "Marianne", + "Maribel", + "Maribeth", + "Marica", + "Maricela", + "Maricruz", + "Marie", + "Mariel", + "Mariela", + "Mariella", + "Marielle", + "Marietta", + "Mariette", + "Mariko", + "Marilee", + "Marilou", + "Marilu", + "Marilyn", + "Marilynn", + "Marin", + "Marina", + "Marinda", + "Marine", + "Mario", + "Marion", + "Maris", + "Marisa", + "Marisela", + "Marisha", + "Marisol", + "Marissa", + "Marita", + "Maritza", + "Marivel", + "Marjorie", + "Marjory", + "Mark", + "Marketta", + "Markita", + "Marla", + "Marlana", + "Marleen", + "Marlen", + "Marlena", + "Marlene", + "Marlin", + "Marline", + "Marlo", + "Marlyn", + "Marlys", + "Marna", + "Marni", + "Marnie", + "Marquerite", + "Marquetta", + "Marquita", + "Marquitta", + "Marry", + "Marsha", + "Marshall", + "Marta", + "Marth", + "Martha", + "Marti", + "Martin", + "Martina", + "Martine", + "Marty", + "Marva", + "Marvel", + "Marvella", + "Marvis", + "Marx", + "Mary", + "Marya", + "Maryalice", + "Maryam", + "Maryann", + "Maryanna", + "Maryanne", + "Marybelle", + "Marybeth", + "Maryellen", + "Maryetta", + "Maryjane", + "Maryjo", + "Maryland", + "Marylee", + "Marylin", + "Maryln", + "Marylou", + "Marylouise", + "Marylyn", + "Marylynn", + "Maryrose", + "Masako", + "Matha", + "Mathilda", + "Mathilde", + "Matilda", + "Matilde", + "Matthew", + "Mattie", + "Maud", + "Maude", + "Maudie", + "Maura", + "Maureen", + "Maurice", + "Maurine", + "Maurita", + "Mavis", + "Maxie", + "Maxima", + "Maximina", + "Maxine", + "May", + "Maya", + "Maybell", + "Maybelle", + "Maye", + "Mayme", + "Mayola", + "Mayra", + "Mazie", + "Mckenzie", + "Meagan", + "Meaghan", + "Mechelle", + "Meda", + "Mee", + "Meg", + "Megan", + "Meggan", + "Meghan", + "Meghann", + "Mei", + "Melaine", + "Melani", + "Melania", + "Melanie", + "Melany", + "Melba", + "Melda", + "Melia", + "Melida", + "Melina", + "Melinda", + "Melisa", + "Melissa", + "Melissia", + "Melita", + "Mellie", + "Mellisa", + "Mellissa", + "Melodee", + "Melodi", + "Melodie", + "Melody", + "Melonie", + "Melony", + "Melva", + "Melvin", + "Melvina", + "Melynda", + "Mendy", + "Mercedes", + "Mercedez", + "Mercy", + "Meredith", + "Meri", + "Merideth", + "Meridith", + "Merilyn", + "Merissa", + "Merle", + "Merlene", + "Merlyn", + "Merna", + "Merri", + "Merrie", + "Merrilee", + "Merrill", + "Merry", + "Mertie", + "Meryl", + "Meta", + "Mi", + "Mia", + "Mica", + "Micaela", + "Micah", + "Micha", + "Michael", + "Michaela", + "Michaele", + "Michal", + "Micheal", + "Michel", + "Michele", + "Michelina", + "Micheline", + "Michell", + "Michelle", + "Michiko", + "Mickey", + "Micki", + "Mickie", + "Miesha", + "Migdalia", + "Mignon", + "Miguelina", + "Mika", + "Mikaela", + "Mike", + "Miki", + "Mikki", + "Mila", + "Milagro", + "Milagros", + "Milda", + "Mildred", + "Milissa", + "Millicent", + "Millie", + "Milly", + "Mimi", + "Min", + "Mina", + "Minda", + "Mindi", + "Mindy", + "Minerva", + "Ming", + "Minh", + "Minna", + "Minnie", + "Minta", + "Mira", + "Miranda", + "Mireille", + "Mirella", + "Mireya", + "Miriam", + "Mirian", + "Mirna", + "Mirta", + "Mirtha", + "Misha", + "Miss", + "Missy", + "Misti", + "Mistie", + "Misty", + "Mitchell", + "Mitsue", + "Mitsuko", + "Mittie", + "Mitzi", + "Mitzie", + "Miyoko", + "Modesta", + "Moira", + "Mollie", + "Molly", + "Mona", + "Monet", + "Monica", + "Monika", + "Monique", + "Monnie", + "Monserrate", + "Moon", + "Mora", + "Morgan", + "Moriah", + "Mozell", + "Mozella", + "Mozelle", + "Mui", + "Muoi", + "Muriel", + "My", + "Myesha", + "Myong", + "Myra", + "Myriam", + "Myrl", + "Myrle", + "Myrna", + "Myrta", + "Myrtice", + "Myrtie", + "Myrtis", + "Myrtle", + "Myung", + "Na", + "Nada", + "Nadene", + "Nadia", + "Nadine", + "Naida", + "Nakesha", + "Nakia", + "Nakisha", + "Nakita", + "Nam", + "Nan", + "Nana", + "Nancee", + "Nancey", + "Nanci", + "Nancie", + "Nancy", + "Nanette", + "Nannette", + "Nannie", + "Naoma", + "Naomi", + "Narcisa", + "Natacha", + "Natalia", + "Natalie", + "Natalya", + "Natasha", + "Natashia", + "Nathalie", + "Natisha", + "Natividad", + "Natosha", + "Necole", + "Neda", + "Nedra", + "Neely", + "Neida", + "Nelda", + "Nelia", + "Nelida", + "Nell", + "Nella", + "Nelle", + "Nellie", + "Nelly", + "Nena", + "Nenita", + "Neoma", + "Neomi", + "Nereida", + "Nerissa", + "Nery", + "Neta", + "Nettie", + "Neva", + "Nevada", + "Nga", + "Ngan", + "Ngoc", + "Nguyet", + "Nia", + "Nichelle", + "Nichol", + "Nichole", + "Nicholle", + "Nicki", + "Nickie", + "Nickole", + "Nicky", + "Nicol", + "Nicola", + "Nicolasa", + "Nicole", + "Nicolette", + "Nicolle", + "Nida", + "Nidia", + "Niesha", + "Nieves", + "Niki", + "Nikia", + "Nikita", + "Nikki", + "Nikole", + "Nila", + "Nilda", + "Nilsa", + "Nina", + "Ninfa", + "Nisha", + "Nita", + "Nobuko", + "Noel", + "Noelia", + "Noella", + "Noelle", + "Noemi", + "Nohemi", + "Nola", + "Noma", + "Nona", + "Nora", + "Norah", + "Noreen", + "Norene", + "Noriko", + "Norine", + "Norma", + "Norman", + "Nova", + "Novella", + "Nu", + "Nubia", + "Numbers", + "Nydia", + "Nyla", + "Obdulia", + "Ocie", + "Octavia", + "Oda", + "Odelia", + "Odell", + "Odessa", + "Odette", + "Odilia", + "Ofelia", + "Ok", + "Ola", + "Olene", + "Oleta", + "Olevia", + "Olga", + "Olimpia", + "Olinda", + "Oliva", + "Olive", + "Olivia", + "Ollie", + "Olympia", + "Oma", + "Omega", + "Ona", + "Oneida", + "Onie", + "Onita", + "Opal", + "Ophelia", + "Ora", + "Oralee", + "Oralia", + "Oretha", + "Orpha", + "Oscar", + "Ossie", + "Otelia", + "Otha", + "Otilia", + "Ouida", + "Ozell", + "Ozella", + "Ozie", + "Pa", + "Page", + "Paige", + "Palma", + "Palmira", + "Pam", + "Pamala", + "Pamela", + "Pamelia", + "Pamella", + "Pamila", + "Pamula", + "Pandora", + "Pansy", + "Paola", + "Paris", + "Parthenia", + "Particia", + "Pasty", + "Pat", + "Patience", + "Patria", + "Patrica", + "Patrice", + "Patricia", + "Patrick", + "Patrina", + "Patsy", + "Patti", + "Pattie", + "Patty", + "Paul", + "Paula", + "Paulene", + "Pauletta", + "Paulette", + "Paulina", + "Pauline", + "Paulita", + "Paz", + "Pearl", + "Pearle", + "Pearlene", + "Pearlie", + "Pearline", + "Pearly", + "Peg", + "Peggie", + "Peggy", + "Pei", + "Penelope", + "Penney", + "Penni", + "Pennie", + "Penny", + "Perla", + "Perry", + "Peter", + "Petra", + "Petrina", + "Petronila", + "Phebe", + "Phillis", + "Philomena", + "Phoebe", + "Phung", + "Phuong", + "Phylicia", + "Phylis", + "Phyliss", + "Phyllis", + "Pia", + "Piedad", + "Pilar", + "Ping", + "Pinkie", + "Piper", + "Pok", + "Polly", + "Porsche", + "Porsha", + "Portia", + "Precious", + "Pricilla", + "Princess", + "Priscila", + "Priscilla", + "Providencia", + "Prudence", + "Pura", + "Qiana", + "Queen", + "Queenie", + "Quiana", + "Quinn", + "Quyen", + "Rachael", + "Rachal", + "Racheal", + "Rachel", + "Rachele", + "Rachell", + "Rachelle", + "Racquel", + "Rae", + "Raeann", + "Raelene", + "Rafaela", + "Raguel", + "Raina", + "Raisa", + "Ramona", + "Ramonita", + "Rana", + "Ranae", + "Randa", + "Randee", + "Randi", + "Randy", + "Ranee", + "Raquel", + "Rasheeda", + "Rashida", + "Raven", + "Ray", + "Raye", + "Raylene", + "Raymond", + "Raymonde", + "Rayna", + "Rea", + "Reagan", + "Reanna", + "Reatha", + "Reba", + "Rebbeca", + "Rebbecca", + "Rebeca", + "Rebecca", + "Rebecka", + "Rebekah", + "Reda", + "Reena", + "Refugia", + "Refugio", + "Regan", + "Regena", + "Regenia", + "Regina", + "Regine", + "Reginia", + "Reiko", + "Reina", + "Reita", + "Rema", + "Remedios", + "Remona", + "Rena", + "Renae", + "Renata", + "Renate", + "Renay", + "Renda", + "Rene", + "Renea", + "Renee", + "Renetta", + "Renita", + "Renna", + "Ressie", + "Reta", + "Retha", + "Retta", + "Reva", + "Reyna", + "Reynalda", + "Rhea", + "Rheba", + "Rhiannon", + "Rhoda", + "Rhona", + "Rhonda", + "Ria", + "Ricarda", + "Richard", + "Richelle", + "Ricki", + "Rickie", + "Rikki", + "Rima", + "Rina", + "Risa", + "Rita", + "Riva", + "Rivka", + "Robbi", + "Robbie", + "Robbin", + "Robbyn", + "Robena", + "Robert", + "Roberta", + "Roberto", + "Robin", + "Robyn", + "Rochel", + "Rochell", + "Rochelle", + "Rocio", + "Rolanda", + "Rolande", + "Roma", + "Romaine", + "Romana", + "Romelia", + "Romona", + "Rona", + "Ronald", + "Ronda", + "Roni", + "Ronna", + "Ronni", + "Ronnie", + "Rory", + "Rosa", + "Rosalba", + "Rosalee", + "Rosalia", + "Rosalie", + "Rosalina", + "Rosalind", + "Rosalinda", + "Rosaline", + "Rosalva", + "Rosalyn", + "Rosamaria", + "Rosamond", + "Rosana", + "Rosann", + "Rosanna", + "Rosanne", + "Rosaria", + "Rosario", + "Rosaura", + "Rose", + "Roseann", + "Roseanna", + "Roseanne", + "Roselee", + "Roselia", + "Roseline", + "Rosella", + "Roselle", + "Roselyn", + "Rosemarie", + "Rosemary", + "Rosena", + "Rosenda", + "Rosetta", + "Rosette", + "Rosia", + "Rosie", + "Rosina", + "Rosio", + "Rosita", + "Roslyn", + "Rossana", + "Rossie", + "Rosy", + "Rowena", + "Roxana", + "Roxane", + "Roxann", + "Roxanna", + "Roxanne", + "Roxie", + "Roxy", + "Roy", + "Royce", + "Rozanne", + "Rozella", + "Rubi", + "Rubie", + "Ruby", + "Rubye", + "Rudy", + "Rufina", + "Russell", + "Ruth", + "Rutha", + "Ruthann", + "Ruthanne", + "Ruthe", + "Ruthie", + "Ryan", + "Ryann", + "Sabina", + "Sabine", + "Sabra", + "Sabrina", + "Sacha", + "Sachiko", + "Sade", + "Sadie", + "Sadye", + "Sage", + "Salena", + "Salina", + "Salley", + "Sallie", + "Sally", + "Salome", + "Sam", + "Samantha", + "Samara", + "Samatha", + "Samella", + "Samira", + "Sammie", + "Sammy", + "Samuel", + "Sana", + "Sanda", + "Sandee", + "Sandi", + "Sandie", + "Sandra", + "Sandy", + "Sang", + "Sanjuana", + "Sanjuanita", + "Sanora", + "Santa", + "Santana", + "Santina", + "Santos", + "Sara", + "Sarah", + "Sarai", + "Saran", + "Sari", + "Sarina", + "Sarita", + "Sasha", + "Saturnina", + "Sau", + "Saundra", + "Savanna", + "Savannah", + "Scarlet", + "Scarlett", + "Scott", + "Scottie", + "Sean", + "Season", + "Sebrina", + "See", + "Seema", + "Selena", + "Selene", + "Selina", + "Selma", + "Sena", + "Senaida", + "September", + "Serafina", + "Serena", + "Serina", + "Serita", + "Setsuko", + "Sha", + "Shae", + "Shaina", + "Shakia", + "Shakira", + "Shakita", + "Shala", + "Shalanda", + "Shalon", + "Shalonda", + "Shameka", + "Shamika", + "Shan", + "Shana", + "Shanae", + "Shanda", + "Shandi", + "Shandra", + "Shane", + "Shaneka", + "Shanel", + "Shanell", + "Shanelle", + "Shani", + "Shanice", + "Shanika", + "Shaniqua", + "Shanita", + "Shanna", + "Shannan", + "Shannon", + "Shanon", + "Shanta", + "Shantae", + "Shantay", + "Shante", + "Shantel", + "Shantell", + "Shantelle", + "Shanti", + "Shaquana", + "Shaquita", + "Shara", + "Sharan", + "Sharda", + "Sharee", + "Sharell", + "Sharen", + "Shari", + "Sharice", + "Sharie", + "Sharika", + "Sharilyn", + "Sharita", + "Sharla", + "Sharleen", + "Sharlene", + "Sharmaine", + "Sharolyn", + "Sharon", + "Sharonda", + "Sharri", + "Sharron", + "Sharyl", + "Sharyn", + "Shasta", + "Shaun", + "Shauna", + "Shaunda", + "Shaunna", + "Shaunta", + "Shaunte", + "Shavon", + "Shavonda", + "Shavonne", + "Shawana", + "Shawanda", + "Shawanna", + "Shawn", + "Shawna", + "Shawnda", + "Shawnee", + "Shawnna", + "Shawnta", + "Shay", + "Shayla", + "Shayna", + "Shayne", + "Shea", + "Sheba", + "Sheena", + "Sheila", + "Sheilah", + "Shela", + "Shelba", + "Shelby", + "Shelia", + "Shella", + "Shelley", + "Shelli", + "Shellie", + "Shelly", + "Shemeka", + "Shemika", + "Shena", + "Shenika", + "Shenita", + "Shenna", + "Shera", + "Sheree", + "Sherell", + "Sheri", + "Sherice", + "Sheridan", + "Sherie", + "Sherika", + "Sherill", + "Sherilyn", + "Sherise", + "Sherita", + "Sherlene", + "Sherley", + "Sherly", + "Sherlyn", + "Sheron", + "Sherrell", + "Sherri", + "Sherrie", + "Sherril", + "Sherrill", + "Sherron", + "Sherry", + "Sherryl", + "Shery", + "Sheryl", + "Sheryll", + "Shiela", + "Shila", + "Shiloh", + "Shin", + "Shira", + "Shirely", + "Shirl", + "Shirlee", + "Shirleen", + "Shirlene", + "Shirley", + "Shirly", + "Shizue", + "Shizuko", + "Shona", + "Shonda", + "Shondra", + "Shonna", + "Shonta", + "Shoshana", + "Shu", + "Shyla", + "Sibyl", + "Sidney", + "Sierra", + "Signe", + "Sigrid", + "Silva", + "Silvana", + "Silvia", + "Sima", + "Simona", + "Simone", + "Simonne", + "Sina", + "Sindy", + "Siobhan", + "Sirena", + "Siu", + "Sixta", + "Skye", + "Slyvia", + "So", + "Socorro", + "Sofia", + "Soila", + "Sol", + "Solange", + "Soledad", + "Somer", + "Sommer", + "Son", + "Sona", + "Sondra", + "Song", + "Sonia", + "Sonja", + "Sonya", + "Soo", + "Sook", + "Soon", + "Sophia", + "Sophie", + "Soraya", + "Sparkle", + "Spring", + "Stacee", + "Stacey", + "Staci", + "Stacia", + "Stacie", + "Stacy", + "Star", + "Starla", + "Starr", + "Stasia", + "Stefani", + "Stefania", + "Stefanie", + "Stefany", + "Steffanie", + "Stella", + "Stepanie", + "Stephaine", + "Stephane", + "Stephani", + "Stephania", + "Stephanie", + "Stephany", + "Stephen", + "Stephenie", + "Stephine", + "Stephnie", + "Steven", + "Stevie", + "Stormy", + "Su", + "Suanne", + "Sudie", + "Sue", + "Sueann", + "Suellen", + "Suk", + "Sulema", + "Sumiko", + "Summer", + "Sun", + "Sunday", + "Sung", + "Sunni", + "Sunny", + "Sunshine", + "Susan", + "Susana", + "Susann", + "Susanna", + "Susannah", + "Susanne", + "Susie", + "Susy", + "Suzan", + "Suzann", + "Suzanna", + "Suzanne", + "Suzette", + "Suzi", + "Suzie", + "Suzy", + "Svetlana", + "Sybil", + "Syble", + "Sydney", + "Sylvia", + "Sylvie", + "Synthia", + "Syreeta", + "Ta", + "Tabatha", + "Tabetha", + "Tabitha", + "Tai", + "Taina", + "Taisha", + "Tajuana", + "Takako", + "Takisha", + "Talia", + "Talisha", + "Talitha", + "Tam", + "Tama", + "Tamala", + "Tamar", + "Tamara", + "Tamatha", + "Tambra", + "Tameika", + "Tameka", + "Tamekia", + "Tamela", + "Tamera", + "Tamesha", + "Tami", + "Tamica", + "Tamie", + "Tamika", + "Tamiko", + "Tamisha", + "Tammara", + "Tammera", + "Tammi", + "Tammie", + "Tammy", + "Tamra", + "Tana", + "Tandra", + "Tandy", + "Taneka", + "Tanesha", + "Tangela", + "Tania", + "Tanika", + "Tanisha", + "Tanja", + "Tanna", + "Tanya", + "Tara", + "Tarah", + "Taren", + "Tari", + "Tarra", + "Tarsha", + "Taryn", + "Tasha", + "Tashia", + "Tashina", + "Tasia", + "Tatiana", + "Tatum", + "Tatyana", + "Taunya", + "Tawana", + "Tawanda", + "Tawanna", + "Tawna", + "Tawny", + "Tawnya", + "Taylor", + "Tayna", + "Teena", + "Tegan", + "Teisha", + "Telma", + "Temeka", + "Temika", + "Tempie", + "Temple", + "Tena", + "Tenesha", + "Tenisha", + "Tennie", + "Tennille", + "Teodora", + "Teofila", + "Tequila", + "Tera", + "Tereasa", + "Teresa", + "Terese", + "Teresia", + "Teresita", + "Teressa", + "Teri", + "Terica", + "Terina", + "Terisa", + "Terra", + "Terrell", + "Terresa", + "Terri", + "Terrie", + "Terrilyn", + "Terry", + "Tesha", + "Tess", + "Tessa", + "Tessie", + "Thalia", + "Thanh", + "Thao", + "Thea", + "Theda", + "Thelma", + "Theo", + "Theodora", + "Theola", + "Theresa", + "Therese", + "Theresia", + "Theressa", + "Thersa", + "Thi", + "Thomas", + "Thomasena", + "Thomasina", + "Thomasine", + "Thora", + "Thresa", + "Thu", + "Thuy", + "Tia", + "Tiana", + "Tianna", + "Tiara", + "Tien", + "Tiera", + "Tierra", + "Tiesha", + "Tifany", + "Tiffaney", + "Tiffani", + "Tiffanie", + "Tiffany", + "Tiffiny", + "Tijuana", + "Tilda", + "Tillie", + "Timika", + "Timothy", + "Tina", + "Tinisha", + "Tiny", + "Tisa", + "Tish", + "Tisha", + "Tobi", + "Tobie", + "Toby", + "Toccara", + "Toi", + "Tomasa", + "Tomeka", + "Tomi", + "Tomika", + "Tomiko", + "Tommie", + "Tommy", + "Tommye", + "Tomoko", + "Tona", + "Tonda", + "Tonette", + "Toni", + "Tonia", + "Tonie", + "Tonisha", + "Tonita", + "Tonja", + "Tony", + "Tonya", + "Tora", + "Tori", + "Torie", + "Torri", + "Torrie", + "Tory", + "Tosha", + "Toshia", + "Toshiko", + "Tova", + "Towanda", + "Toya", + "Tracee", + "Tracey", + "Traci", + "Tracie", + "Tracy", + "Tran", + "Trang", + "Travis", + "Treasa", + "Treena", + "Trena", + "Tresa", + "Tressa", + "Tressie", + "Treva", + "Tricia", + "Trina", + "Trinh", + "Trinidad", + "Trinity", + "Trish", + "Trisha", + "Trista", + "Tristan", + "Troy", + "Trudi", + "Trudie", + "Trudy", + "Trula", + "Tu", + "Tula", + "Tuyet", + "Twana", + "Twanda", + "Twanna", + "Twila", + "Twyla", + "Tyesha", + "Tyisha", + "Tyler", + "Tynisha", + "Tyra", + "Ula", + "Ulrike", + "Un", + "Una", + "Ursula", + "Usha", + "Ute", + "Vada", + "Val", + "Valarie", + "Valda", + "Valencia", + "Valene", + "Valentina", + "Valentine", + "Valeri", + "Valeria", + "Valerie", + "Valery", + "Vallie", + "Valorie", + "Valrie", + "Van", + "Vanda", + "Vanesa", + "Vanessa", + "Vanetta", + "Vania", + "Vanita", + "Vanna", + "Vannesa", + "Vannessa", + "Vashti", + "Vasiliki", + "Veda", + "Velda", + "Velia", + "Vella", + "Velma", + "Velva", + "Velvet", + "Vena", + "Venessa", + "Venetta", + "Venice", + "Venita", + "Vennie", + "Venus", + "Veola", + "Vera", + "Verda", + "Verdell", + "Verdie", + "Verena", + "Vergie", + "Verla", + "Verlene", + "Verlie", + "Verline", + "Verna", + "Vernell", + "Vernetta", + "Vernia", + "Vernice", + "Vernie", + "Vernita", + "Vernon", + "Verona", + "Veronica", + "Veronika", + "Veronique", + "Versie", + "Vertie", + "Vesta", + "Veta", + "Vi", + "Vicenta", + "Vickey", + "Vicki", + "Vickie", + "Vicky", + "Victor", + "Victoria", + "Victorina", + "Vida", + "Viki", + "Vikki", + "Vilma", + "Vina", + "Vincenza", + "Vinita", + "Vinnie", + "Viola", + "Violet", + "Violeta", + "Violette", + "Virgen", + "Virgie", + "Virgil", + "Virgina", + "Virginia", + "Vita", + "Viva", + "Vivan", + "Vivian", + "Viviana", + "Vivien", + "Vivienne", + "Voncile", + "Vonda", + "Vonnie", + "Wai", + "Walter", + "Waltraud", + "Wan", + "Wanda", + "Waneta", + "Wanetta", + "Wanita", + "Wava", + "Wei", + "Wen", + "Wendi", + "Wendie", + "Wendolyn", + "Wendy", + "Wenona", + "Wesley", + "Whitley", + "Whitney", + "Wilda", + "Wilhelmina", + "Wilhemina", + "Willa", + "Willena", + "Willene", + "Willetta", + "Willette", + "Willia", + "William", + "Willie", + "Williemae", + "Willodean", + "Willow", + "Wilma", + "Windy", + "Winifred", + "Winnie", + "Winnifred", + "Winona", + "Winter", + "Wonda", + "Wynell", + "Wynona", + "Xenia", + "Xiao", + "Xiomara", + "Xochitl", + "Xuan", + "Yadira", + "Yaeko", + "Yael", + "Yahaira", + "Yajaira", + "Yan", + "Yang", + "Yanira", + "Yasmin", + "Yasmine", + "Yasuko", + "Yee", + "Yelena", + "Yen", + "Yer", + "Yesenia", + "Yessenia", + "Yetta", + "Yevette", + "Yi", + "Ying", + "Yoko", + "Yolanda", + "Yolande", + "Yolando", + "Yolonda", + "Yon", + "Yong", + "Yoshie", + "Yoshiko", + "Youlanda", + "Young", + "Yu", + "Yuette", + "Yuk", + "Yuki", + "Yukiko", + "Yuko", + "Yulanda", + "Yun", + "Yung", + "Yuonne", + "Yuri", + "Yuriko", + "Yvette", + "Yvone", + "Yvonne", + "Zada", + "Zaida", + "Zana", + "Zandra", + "Zelda", + "Zella", + "Zelma", + "Zena", + "Zenaida", + "Zenia", + "Zenobia", + "Zetta", + "Zina", + "Zita", + "Zoe", + "Zofia", + "Zoila", + "Zola", + "Zona", + "Zonia", + "Zora", + "Zoraida", + "Zula", + "Zulema", + "Zulma" + ], + "male_names": [ + "Aaron", + "Abdul", + "Abe", + "Abel", + "Abraham", + "Abram", + "Adalberto", + "Adam", + "Adan", + "Adolfo", + "Adolph", + "Adrian", + "Agustin", + "Ahmad", + "Ahmed", + "Al", + "Alan", + "Albert", + "Alberto", + "Alden", + "Aldo", + "Alec", + "Alejandro", + "Alex", + "Alexander", + "Alexis", + "Alfonso", + "Alfonzo", + "Alfred", + "Alfredo", + "Ali", + "Allan", + "Allen", + "Alonso", + "Alonzo", + "Alphonse", + "Alphonso", + "Alton", + "Alva", + "Alvaro", + "Alvin", + "Amado", + "Ambrose", + "Amos", + "Anderson", + "Andre", + "Andrea", + "Andreas", + "Andres", + "Andrew", + "Andy", + "Angel", + "Angelo", + "Anibal", + "Anthony", + "Antione", + "Antoine", + "Anton", + "Antone", + "Antonia", + "Antonio", + "Antony", + "Antwan", + "Archie", + "Arden", + "Ariel", + "Arlen", + "Arlie", + "Armand", + "Armando", + "Arnold", + "Arnoldo", + "Arnulfo", + "Aron", + "Arron", + "Art", + "Arthur", + "Arturo", + "Asa", + "Ashley", + "Aubrey", + "August", + "Augustine", + "Augustus", + "Aurelio", + "Austin", + "Avery", + "Barney", + "Barrett", + "Barry", + "Bart", + "Barton", + "Basil", + "Beau", + "Ben", + "Benedict", + "Benito", + "Benjamin", + "Bennett", + "Bennie", + "Benny", + "Benton", + "Bernard", + "Bernardo", + "Bernie", + "Berry", + "Bert", + "Bertram", + "Bill", + "Billie", + "Billy", + "Blaine", + "Blair", + "Blake", + "Bo", + "Bob", + "Bobbie", + "Bobby", + "Booker", + "Boris", + "Boyce", + "Boyd", + "Brad", + "Bradford", + "Bradley", + "Bradly", + "Brady", + "Brain", + "Branden", + "Brandon", + "Brant", + "Brendan", + "Brendon", + "Brent", + "Brenton", + "Bret", + "Brett", + "Brian", + "Brice", + "Britt", + "Brock", + "Broderick", + "Brooks", + "Bruce", + "Bruno", + "Bryan", + "Bryant", + "Bryce", + "Bryon", + "Buck", + "Bud", + "Buddy", + "Buford", + "Burl", + "Burt", + "Burton", + "Buster", + "Byron", + "Caleb", + "Calvin", + "Cameron", + "Carey", + "Carl", + "Carlo", + "Carlos", + "Carlton", + "Carmelo", + "Carmen", + "Carmine", + "Carol", + "Carrol", + "Carroll", + "Carson", + "Carter", + "Cary", + "Casey", + "Cecil", + "Cedric", + "Cedrick", + "Cesar", + "Chad", + "Chadwick", + "Chance", + "Chang", + "Charles", + "Charley", + "Charlie", + "Chas", + "Chase", + "Chauncey", + "Chester", + "Chet", + "Chi", + "Chong", + "Chris", + "Christian", + "Christoper", + "Christopher", + "Chuck", + "Chung", + "Clair", + "Clarence", + "Clark", + "Claud", + "Claude", + "Claudio", + "Clay", + "Clayton", + "Clement", + "Clemente", + "Cleo", + "Cletus", + "Cleveland", + "Cliff", + "Clifford", + "Clifton", + "Clint", + "Clinton", + "Clyde", + "Cody", + "Colby", + "Cole", + "Coleman", + "Colin", + "Collin", + "Colton", + "Columbus", + "Connie", + "Conrad", + "Cordell", + "Corey", + "Cornelius", + "Cornell", + "Cortez", + "Cory", + "Courtney", + "Coy", + "Craig", + "Cristobal", + "Cristopher", + "Cruz", + "Curt", + "Curtis", + "Cyril", + "Cyrus", + "Dale", + "Dallas", + "Dalton", + "Damian", + "Damien", + "Damion", + "Damon", + "Dan", + "Dana", + "Dane", + "Danial", + "Daniel", + "Danilo", + "Dannie", + "Danny", + "Dante", + "Darell", + "Daren", + "Darin", + "Dario", + "Darius", + "Darnell", + "Daron", + "Darrel", + "Darrell", + "Darren", + "Darrick", + "Darrin", + "Darron", + "Darryl", + "Darwin", + "Daryl", + "Dave", + "David", + "Davis", + "Dean", + "Deandre", + "Deangelo", + "Dee", + "Del", + "Delbert", + "Delmar", + "Delmer", + "Demarcus", + "Demetrius", + "Denis", + "Dennis", + "Denny", + "Denver", + "Deon", + "Derek", + "Derick", + "Derrick", + "Deshawn", + "Desmond", + "Devin", + "Devon", + "Dewayne", + "Dewey", + "Dewitt", + "Dexter", + "Dick", + "Diego", + "Dillon", + "Dino", + "Dion", + "Dirk", + "Domenic", + "Domingo", + "Dominic", + "Dominick", + "Dominique", + "Don", + "Donald", + "Dong", + "Donn", + "Donnell", + "Donnie", + "Donny", + "Donovan", + "Donte", + "Dorian", + "Dorsey", + "Doug", + "Douglas", + "Douglass", + "Doyle", + "Drew", + "Duane", + "Dudley", + "Duncan", + "Dustin", + "Dusty", + "Dwain", + "Dwayne", + "Dwight", + "Dylan", + "Earl", + "Earle", + "Earnest", + "Ed", + "Eddie", + "Eddy", + "Edgar", + "Edgardo", + "Edison", + "Edmond", + "Edmund", + "Edmundo", + "Eduardo", + "Edward", + "Edwardo", + "Edwin", + "Efrain", + "Efren", + "Elbert", + "Elden", + "Eldon", + "Eldridge", + "Eli", + "Elias", + "Elijah", + "Eliseo", + "Elisha", + "Elliot", + "Elliott", + "Ellis", + "Ellsworth", + "Elmer", + "Elmo", + "Eloy", + "Elroy", + "Elton", + "Elvin", + "Elvis", + "Elwood", + "Emanuel", + "Emerson", + "Emery", + "Emil", + "Emile", + "Emilio", + "Emmanuel", + "Emmett", + "Emmitt", + "Emory", + "Enoch", + "Enrique", + "Erasmo", + "Eric", + "Erich", + "Erick", + "Erik", + "Erin", + "Ernest", + "Ernesto", + "Ernie", + "Errol", + "Ervin", + "Erwin", + "Esteban", + "Ethan", + "Eugene", + "Eugenio", + "Eusebio", + "Evan", + "Everett", + "Everette", + "Ezekiel", + "Ezequiel", + "Ezra", + "Fabian", + "Faustino", + "Fausto", + "Federico", + "Felipe", + "Felix", + "Felton", + "Ferdinand", + "Fermin", + "Fernando", + "Fidel", + "Filiberto", + "Fletcher", + "Florencio", + "Florentino", + "Floyd", + "Forest", + "Forrest", + "Foster", + "Frances", + "Francesco", + "Francis", + "Francisco", + "Frank", + "Frankie", + "Franklin", + "Franklyn", + "Fred", + "Freddie", + "Freddy", + "Frederic", + "Frederick", + "Fredric", + "Fredrick", + "Freeman", + "Fritz", + "Gabriel", + "Gail", + "Gale", + "Galen", + "Garfield", + "Garland", + "Garret", + "Garrett", + "Garry", + "Garth", + "Gary", + "Gaston", + "Gavin", + "Gayle", + "Gaylord", + "Genaro", + "Gene", + "Geoffrey", + "George", + "Gerald", + "Geraldo", + "Gerard", + "Gerardo", + "German", + "Gerry", + "Gil", + "Gilbert", + "Gilberto", + "Gino", + "Giovanni", + "Giuseppe", + "Glen", + "Glenn", + "Gonzalo", + "Gordon", + "Grady", + "Graham", + "Graig", + "Grant", + "Granville", + "Greg", + "Gregg", + "Gregorio", + "Gregory", + "Grover", + "Guadalupe", + "Guillermo", + "Gus", + "Gustavo", + "Guy", + "Hai", + "Hal", + "Hank", + "Hans", + "Harlan", + "Harland", + "Harley", + "Harold", + "Harris", + "Harrison", + "Harry", + "Harvey", + "Hassan", + "Hayden", + "Haywood", + "Heath", + "Hector", + "Henry", + "Herb", + "Herbert", + "Heriberto", + "Herman", + "Herschel", + "Hershel", + "Hilario", + "Hilton", + "Hipolito", + "Hiram", + "Hobert", + "Hollis", + "Homer", + "Hong", + "Horace", + "Horacio", + "Hosea", + "Houston", + "Howard", + "Hoyt", + "Hubert", + "Huey", + "Hugh", + "Hugo", + "Humberto", + "Hung", + "Hunter", + "Hyman", + "Ian", + "Ignacio", + "Ike", + "Ira", + "Irvin", + "Irving", + "Irwin", + "Isaac", + "Isaiah", + "Isaias", + "Isiah", + "Isidro", + "Ismael", + "Israel", + "Isreal", + "Issac", + "Ivan", + "Ivory", + "Jacinto", + "Jack", + "Jackie", + "Jackson", + "Jacob", + "Jacques", + "Jae", + "Jaime", + "Jake", + "Jamaal", + "Jamal", + "Jamar", + "Jame", + "Jamel", + "James", + "Jamey", + "Jamie", + "Jamison", + "Jan", + "Jared", + "Jarod", + "Jarred", + "Jarrett", + "Jarrod", + "Jarvis", + "Jason", + "Jasper", + "Javier", + "Jay", + "Jayson", + "Jc", + "Jean", + "Jed", + "Jeff", + "Jefferey", + "Jefferson", + "Jeffery", + "Jeffrey", + "Jeffry", + "Jerald", + "Jeramy", + "Jere", + "Jeremiah", + "Jeremy", + "Jermaine", + "Jerold", + "Jerome", + "Jeromy", + "Jerrell", + "Jerrod", + "Jerrold", + "Jerry", + "Jess", + "Jesse", + "Jessie", + "Jesus", + "Jewel", + "Jewell", + "Jim", + "Jimmie", + "Jimmy", + "Joan", + "Joaquin", + "Jody", + "Joe", + "Joel", + "Joesph", + "Joey", + "John", + "Johnathan", + "Johnathon", + "Johnie", + "Johnnie", + "Johnny", + "Johnson", + "Jon", + "Jonah", + "Jonas", + "Jonathan", + "Jonathon", + "Jordan", + "Jordon", + "Jorge", + "Jose", + "Josef", + "Joseph", + "Josh", + "Joshua", + "Josiah", + "Jospeh", + "Josue", + "Juan", + "Jude", + "Judson", + "Jules", + "Julian", + "Julio", + "Julius", + "Junior", + "Justin", + "Kareem", + "Karl", + "Kasey", + "Keenan", + "Keith", + "Kelley", + "Kelly", + "Kelvin", + "Ken", + "Kendall", + "Kendrick", + "Keneth", + "Kenneth", + "Kennith", + "Kenny", + "Kent", + "Kenton", + "Kermit", + "Kerry", + "Keven", + "Kevin", + "Kieth", + "Kim", + "King", + "Kip", + "Kirby", + "Kirk", + "Korey", + "Kory", + "Kraig", + "Kris", + "Kristofer", + "Kristopher", + "Kurt", + "Kurtis", + "Kyle", + "Lacy", + "Lamar", + "Lamont", + "Lance", + "Landon", + "Lane", + "Lanny", + "Larry", + "Lauren", + "Laurence", + "Lavern", + "Laverne", + "Lawerence", + "Lawrence", + "Lazaro", + "Leandro", + "Lee", + "Leif", + "Leigh", + "Leland", + "Lemuel", + "Len", + "Lenard", + "Lenny", + "Leo", + "Leon", + "Leonard", + "Leonardo", + "Leonel", + "Leopoldo", + "Leroy", + "Les", + "Lesley", + "Leslie", + "Lester", + "Levi", + "Lewis", + "Lincoln", + "Lindsay", + "Lindsey", + "Lino", + "Linwood", + "Lionel", + "Lloyd", + "Logan", + "Lon", + "Long", + "Lonnie", + "Lonny", + "Loren", + "Lorenzo", + "Lou", + "Louie", + "Louis", + "Lowell", + "Loyd", + "Lucas", + "Luciano", + "Lucien", + "Lucio", + "Lucius", + "Luigi", + "Luis", + "Luke", + "Lupe", + "Luther", + "Lyle", + "Lyman", + "Lyndon", + "Lynn", + "Lynwood", + "Mac", + "Mack", + "Major", + "Malcolm", + "Malcom", + "Malik", + "Man", + "Manual", + "Manuel", + "Marc", + "Marcel", + "Marcelino", + "Marcellus", + "Marcelo", + "Marco", + "Marcos", + "Marcus", + "Margarito", + "Maria", + "Mariano", + "Mario", + "Marion", + "Mark", + "Markus", + "Marlin", + "Marlon", + "Marquis", + "Marshall", + "Martin", + "Marty", + "Marvin", + "Mary", + "Mason", + "Mathew", + "Matt", + "Matthew", + "Maurice", + "Mauricio", + "Mauro", + "Max", + "Maximo", + "Maxwell", + "Maynard", + "Mckinley", + "Mel", + "Melvin", + "Merle", + "Merlin", + "Merrill", + "Mervin", + "Micah", + "Michael", + "Michal", + "Michale", + "Micheal", + "Michel", + "Mickey", + "Miguel", + "Mike", + "Mikel", + "Milan", + "Miles", + "Milford", + "Millard", + "Milo", + "Milton", + "Minh", + "Miquel", + "Mitch", + "Mitchel", + "Mitchell", + "Modesto", + "Mohamed", + "Mohammad", + "Mohammed", + "Moises", + "Monroe", + "Monte", + "Monty", + "Morgan", + "Morris", + "Morton", + "Mose", + "Moses", + "Moshe", + "Murray", + "Myles", + "Myron", + "Napoleon", + "Nathan", + "Nathanael", + "Nathanial", + "Nathaniel", + "Neal", + "Ned", + "Neil", + "Nelson", + "Nestor", + "Neville", + "Newton", + "Nicholas", + "Nick", + "Nickolas", + "Nicky", + "Nicolas", + "Nigel", + "Noah", + "Noble", + "Noe", + "Noel", + "Nolan", + "Norbert", + "Norberto", + "Norman", + "Normand", + "Norris", + "Numbers", + "Octavio", + "Odell", + "Odis", + "Olen", + "Olin", + "Oliver", + "Ollie", + "Omar", + "Omer", + "Oren", + "Orlando", + "Orval", + "Orville", + "Oscar", + "Osvaldo", + "Oswaldo", + "Otha", + "Otis", + "Otto", + "Owen", + "Pablo", + "Palmer", + "Paris", + "Parker", + "Pasquale", + "Pat", + "Patricia", + "Patrick", + "Paul", + "Pedro", + "Percy", + "Perry", + "Pete", + "Peter", + "Phil", + "Philip", + "Phillip", + "Pierre", + "Porfirio", + "Porter", + "Preston", + "Prince", + "Quentin", + "Quincy", + "Quinn", + "Quintin", + "Quinton", + "Rafael", + "Raleigh", + "Ralph", + "Ramiro", + "Ramon", + "Randal", + "Randall", + "Randell", + "Randolph", + "Randy", + "Raphael", + "Rashad", + "Raul", + "Ray", + "Rayford", + "Raymon", + "Raymond", + "Raymundo", + "Reed", + "Refugio", + "Reggie", + "Reginald", + "Reid", + "Reinaldo", + "Renaldo", + "Renato", + "Rene", + "Reuben", + "Rex", + "Rey", + "Reyes", + "Reynaldo", + "Rhett", + "Ricardo", + "Rich", + "Richard", + "Richie", + "Rick", + "Rickey", + "Rickie", + "Ricky", + "Rico", + "Rigoberto", + "Riley", + "Rob", + "Robbie", + "Robby", + "Robert", + "Roberto", + "Robin", + "Robt", + "Rocco", + "Rocky", + "Rod", + "Roderick", + "Rodger", + "Rodney", + "Rodolfo", + "Rodrick", + "Rodrigo", + "Rogelio", + "Roger", + "Roland", + "Rolando", + "Rolf", + "Rolland", + "Roman", + "Romeo", + "Ron", + "Ronald", + "Ronnie", + "Ronny", + "Roosevelt", + "Rory", + "Rosario", + "Roscoe", + "Rosendo", + "Ross", + "Roy", + "Royal", + "Royce", + "Ruben", + "Rubin", + "Rudolf", + "Rudolph", + "Rudy", + "Rueben", + "Rufus", + "Rupert", + "Russ", + "Russel", + "Russell", + "Rusty", + "Ryan", + "Sal", + "Salvador", + "Salvatore", + "Sam", + "Sammie", + "Sammy", + "Samual", + "Samuel", + "Sandy", + "Sanford", + "Sang", + "Santiago", + "Santo", + "Santos", + "Saul", + "Scot", + "Scott", + "Scottie", + "Scotty", + "Sean", + "Sebastian", + "Sergio", + "Seth", + "Seymour", + "Shad", + "Shane", + "Shannon", + "Shaun", + "Shawn", + "Shayne", + "Shelby", + "Sheldon", + "Shelton", + "Sherman", + "Sherwood", + "Shirley", + "Shon", + "Sid", + "Sidney", + "Silas", + "Simon", + "Sol", + "Solomon", + "Son", + "Sonny", + "Spencer", + "Stacey", + "Stacy", + "Stan", + "Stanford", + "Stanley", + "Stanton", + "Stefan", + "Stephan", + "Stephen", + "Sterling", + "Steve", + "Steven", + "Stevie", + "Stewart", + "Stuart", + "Sung", + "Sydney", + "Sylvester", + "Tad", + "Tanner", + "Taylor", + "Ted", + "Teddy", + "Teodoro", + "Terence", + "Terrance", + "Terrell", + "Terrence", + "Terry", + "Thad", + "Thaddeus", + "Thanh", + "Theo", + "Theodore", + "Theron", + "Thomas", + "Thurman", + "Tim", + "Timmy", + "Timothy", + "Titus", + "Tobias", + "Toby", + "Tod", + "Todd", + "Tom", + "Tomas", + "Tommie", + "Tommy", + "Toney", + "Tony", + "Tory", + "Tracey", + "Tracy", + "Travis", + "Trent", + "Trenton", + "Trevor", + "Trey", + "Trinidad", + "Tristan", + "Troy", + "Truman", + "Tuan", + "Ty", + "Tyler", + "Tyree", + "Tyrell", + "Tyron", + "Tyrone", + "Tyson", + "Ulysses", + "Val", + "Valentin", + "Valentine", + "Van", + "Vance", + "Vaughn", + "Vern", + "Vernon", + "Vicente", + "Victor", + "Vince", + "Vincent", + "Vincenzo", + "Virgil", + "Virgilio", + "Vito", + "Von", + "Wade", + "Waldo", + "Walker", + "Wallace", + "Wally", + "Walter", + "Walton", + "Ward", + "Warner", + "Warren", + "Waylon", + "Wayne", + "Weldon", + "Wendell", + "Werner", + "Wes", + "Wesley", + "Weston", + "Whitney", + "Wilber", + "Wilbert", + "Wilbur", + "Wilburn", + "Wiley", + "Wilford", + "Wilfred", + "Wilfredo", + "Will", + "Willard", + "William", + "Williams", + "Willian", + "Willie", + "Willis", + "Willy", + "Wilmer", + "Wilson", + "Wilton", + "Winford", + "Winfred", + "Winston", + "Wm", + "Woodrow", + "Wyatt", + "Xavier", + "Yong", + "Young", + "Zachariah", + "Zachary", + "Zachery", + "Zack", + "Zackary", + "Zane" + ] +} \ No newline at end of file diff --git a/minecraft/config/colossalchests-common.toml b/minecraft/config/colossalchests-common.toml new file mode 100644 index 0000000..e16c544 --- /dev/null +++ b/minecraft/config/colossalchests-common.toml @@ -0,0 +1,53 @@ + +[general] + + [general.general] + #Always create full creative-mode chests when formed. Should not be used in survival worlds! + creativeChests = false + #If the interface input overlay should always be rendered on chests. + alwaysShowInterfaceOverlay = true + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorDiamond = 4.0 + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorObsidian = 4.0 + #If items should be ejected from the chests if one of the structure blocks are removed. + ejectItemsOnDestroy = false + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorIron = 2.0 + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorWood = 1.0 + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorCopper = 1.666 + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorGold = 3.0 + #If the higher tier metal variants (including diamond and obsidian) can be crafted. + metalVariants = true + #Multiplier for the number of inventory slots for this chest material. + chestInventoryMaterialFactorSilver = 2.666 + #If the lid should open when accessing the chest GUI. + visuallyOpen = true + + [general.colossal_chest] + #If the chest should visually open when someone uses it. + chestAnimation = true + +[core] + + [core.general] + #If mod compatibility loader should crash hard if errors occur in that process. + crashOnModCompatCrash = false + #Maximum buffer byte size for adaptive inventory slots fragmentation. + maxPacketBufferSize = 20000 + #If the recipe loader should crash when finding invalid recipes. + crashOnInvalidRecipe = false + #If an anonymous mod startup analytics request may be sent to our analytics service. + analytics = true + #If the version checker should be enabled. + versionChecker = true + +[machine] + + [machine.colossal_chest] + #The maximum size a colossal chest can have. + maxSize = 20 + diff --git a/minecraft/config/commoncapabilities-common.toml b/minecraft/config/commoncapabilities-common.toml new file mode 100644 index 0000000..ac3db3c --- /dev/null +++ b/minecraft/config/commoncapabilities-common.toml @@ -0,0 +1,19 @@ + +[core] + + [core.general] + #If mod compatibility loader should crash hard if errors occur in that process. + crashOnModCompatCrash = false + #If the recipe loader should crash when finding invalid recipes. + crashOnInvalidRecipe = false + #If an anonymous mod startup analytics request may be sent to our analytics service. + analytics = true + #If the version checker should be enabled. + versionChecker = true + +[machine] + + [machine.general] + #The NBT Paths that should be filtered away when checking equality. + ignoreNbtPathsForEqualityFilters = ["$.ForgeCaps[\"astralsorcery:cap_item_amulet_holder\"]", "$.binding", "$.energy"] + diff --git a/minecraft/config/compactmachines-common.toml b/minecraft/config/compactmachines-common.toml new file mode 100644 index 0000000..732782b --- /dev/null +++ b/minecraft/config/compactmachines-common.toml @@ -0,0 +1,6 @@ + +#Recipes and Integrations +[recipes] + #Enable vanilla-style recipes. + vanillaRecipes = true + diff --git a/minecraft/config/compressedcreativity-client.toml b/minecraft/config/compressedcreativity-client.toml new file mode 100644 index 0000000..f5646ad --- /dev/null +++ b/minecraft/config/compressedcreativity-client.toml @@ -0,0 +1,15 @@ + +#Upgrades settings +[upgrades] + + #Mechanical visor + [upgrades.mechanical_visor] + #If Block Tracker should also check if actual tooltip is provided + block_tracker_advanced_check = false + #Tooltip mode + #Allowed Values: CLASSIC, WIDGET, BOTH, NONE + tooltip_mode = "CLASSIC" + #Block Tracker mode + #Allowed Values: ALL, GOGGLES, TOOLTIP, MIN + block_tracker_mode = "ALL" + diff --git a/minecraft/config/compressiumblocks.json b/minecraft/config/compressiumblocks.json new file mode 100644 index 0000000..830caec --- /dev/null +++ b/minecraft/config/compressiumblocks.json @@ -0,0 +1,227 @@ +[ + { + "name": "cobblestone", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:cobblestone", + "particlePath": "minecraft:block/cobblestone", + "baseBlockModel": "minecraft:block/cobblestone", + "type": "block" + }, + { + "name": "stone", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:stone", + "particlePath": "minecraft:block/stone", + "baseBlockModel": "minecraft:block/stone", + "type": "block" + }, + { + "name": "sand", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:sand", + "particlePath": "minecraft:block/sand", + "baseBlockModel": "minecraft:block/sand", + "type": "falling" + }, + { + "name": "gravel", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:gravel", + "particlePath": "minecraft:block/gravel", + "baseBlockModel": "minecraft:block/gravel", + "type": "falling" + }, + { + "name": "netherrack", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:netherrack", + "particlePath": "minecraft:block/netherrack", + "baseBlockModel": "minecraft:block/netherrack", + "type": "nether_rack" + }, + { + "name": "snow", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:snow_block", + "particlePath": "minecraft:block/snow", + "baseBlockModel": "minecraft:block/snow_block", + "type": "powered" + }, + { + "name": "soulsand", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:soul_sand", + "particlePath": "minecraft:block/soul_sand", + "baseBlockModel": "minecraft:block/soul_sand", + "type": "soul_sand" + }, + { + "name": "iron", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:iron_block", + "particlePath": "minecraft:block/iron_block", + "baseBlockModel": "minecraft:block/iron_block", + "type": "block" + }, + { + "name": "gold", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:gold_block", + "particlePath": "minecraft:block/gold_block", + "baseBlockModel": "minecraft:block/gold_block", + "type": "block" + }, + { + "name": "diamond", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:diamond_block", + "particlePath": "minecraft:block/diamond_block", + "baseBlockModel": "minecraft:block/diamond_block", + "type": "block" + }, + { + "name": "emerald", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:emerald_block", + "particlePath": "minecraft:block/emerald_block", + "baseBlockModel": "minecraft:block/emerald_block", + "type": "block" + }, + { + "name": "clay", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:clay", + "particlePath": "minecraft:block/clay", + "baseBlockModel": "minecraft:block/clay", + "type": "block" + }, + { + "name": "netherite", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:netherite_block", + "particlePath": "minecraft:block/netherite_block", + "baseBlockModel": "minecraft:block/netherite_block", + "type": "block" + }, + { + "name": "dirt", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:dirt", + "particlePath": "minecraft:block/dirt", + "baseBlockModel": "minecraft:block/dirt", + "type": "block" + }, + { + "name": "coal", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:coal_block", + "particlePath": "minecraft:block/coal_block", + "baseBlockModel": "minecraft:block/coal_block", + "type": "block" + }, + { + "name": "redsand", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:red_sand", + "particlePath": "minecraft:block/red_sand", + "baseBlockModel": "minecraft:block/red_sand", + "type": "falling" + }, + { + "name": "endstone", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:end_stone", + "particlePath": "minecraft:block/end_stone", + "baseBlockModel": "minecraft:block/end_stone", + "type": "block" + }, + { + "name": "obsidian", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:obsidian", + "particlePath": "minecraft:block/obsidian", + "baseBlockModel": "minecraft:block/obsidian", + "type": "block" + }, + { + "name": "lapis", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:lapis_block", + "particlePath": "minecraft:block/lapis_block", + "baseBlockModel": "minecraft:block/lapis_block", + "type": "block" + }, + { + "name": "quartz", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:quartz_block", + "particlePath": "minecraft:block/quartz_block_side", + "baseBlockModel": "minecraft:block/quartz_block", + "type": "block" + }, + { + "name": "redstone", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:redstone_block", + "particlePath": "minecraft:block/redstone_block", + "baseBlockModel": "minecraft:block/redstone_block", + "type": "powered" + }, + { + "name": "andesite", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:andesite", + "particlePath": "minecraft:block/andesite", + "baseBlockModel": "minecraft:block/andesite", + "type": "block" + }, + { + "name": "diorite", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:diorite", + "particlePath": "minecraft:block/diorite", + "baseBlockModel": "minecraft:block/diorite", + "type": "block" + }, + { + "name": "copper", + "nestedDepth": 9, + "isBlockOf": false, + "baseResourceLocation": "minecraft:copper_block", + "particlePath": "minecraft:block/copper_block", + "baseBlockModel": "minecraft:block/copper_block", + "type": "block" + }, + { + "name": "granite", + "nestedDepth": 9, + "isBlockOf": true, + "baseResourceLocation": "minecraft:granite", + "particlePath": "minecraft:block/granite", + "baseBlockModel": "minecraft:block/granite", + "type": "block" + } +] \ No newline at end of file diff --git a/minecraft/config/computercraft-client.toml b/minecraft/config/computercraft-client.toml new file mode 100644 index 0000000..edc87f0 --- /dev/null +++ b/minecraft/config/computercraft-client.toml @@ -0,0 +1,13 @@ +#The renderer to use for monitors. Generally this should be kept at "best" - if +#monitors have performance issues, you may wish to experiment with alternative +#renderers. +#Allowed Values: BEST, TBO, VBO +monitor_renderer = "BEST" +#The maximum distance monitors will render at. This defaults to the standard tile +#entity limit, but may be extended if you wish to build larger monitors. +#Range: 16 ~ 1024 +monitor_distance = 64 +#The delay in seconds after which we'll notify about unhandled imports. Set to 0 to disable. +#Range: 0 ~ 60 +upload_nag_delay = 5 + diff --git a/minecraft/config/connectivity.json b/minecraft/config/connectivity.json new file mode 100644 index 0000000..dc6f58b --- /dev/null +++ b/minecraft/config/connectivity.json @@ -0,0 +1,40 @@ +{ + "disableLoginLimits": { + "desc:": "Should login packet size limits be disabled? Error:(IOException(\"Payload may not be larger than 1048576 bytes\")) default:true", + "disableLoginLimits": true + }, + "disablePacketLimits": { + "desc:": "Should play packet size limits be disabled? Error:(Badly compressed packet) default:true", + "disablePacketLimits": true + }, + "disableChatVerificationDisconnect": { + "desc:": "(Clientside) Disables players disconnecting on chat message verification problems,(enable debugPrintMessages to see the message causing issues). default:true", + "disableChatVerificationDisconnect": true + }, + "debugPrintMessages": { + "desc:": "Enable addition debug logging for networking errors. default:false", + "debugPrintMessages": false + }, + "logintimeout": { + "desc:": "Set the max login timeout in seconds. default = 120", + "logintimeout": 120 + }, + "disconnectTimeout": { + "desc:": "Set the ingame disconnect timeout for disconnecting players. Default = 60sec", + "disconnectTimeout": 60 + }, + "packetHistoryMinutes": { + "desc:": "Set the amount of minutes for which network packet history data is saved. Default = 5 minutes", + "packetHistoryMinutes": 5 + }, + "malformedtraffic": { + "desc:": "Detection and blocking of malformed and/or malicious traffic", + "enabled": true, + "proxies:": "Add your proxy IP to the whitelist below, if you're using one(e.g. velocity) to avoid blocking the proxy's ip. Format: [\"127.0.0.1\", \"128.0.01\"] without the \\ ", + "proxywhitelist": [] + }, + "showFullResourceLocationException": { + "desc:": "Enable to see the full log output for all resource location exceptions. Default = false", + "showFullResourceLocationException": false + } +} \ No newline at end of file diff --git a/minecraft/config/constructionwand-client.toml b/minecraft/config/constructionwand-client.toml new file mode 100644 index 0000000..dbe89c4 --- /dev/null +++ b/minecraft/config/constructionwand-client.toml @@ -0,0 +1,16 @@ + +#This is the Client config for ConstructionWand. +#If you're not familiar with Forge's new split client/server config, let me explain: +#Client config is stored in the /config folder and only contains client specific settings like graphics and keybinds. +#Mod behavior is configured in the Server config, which is world-specific and thus located +#in the /saves/myworld/serverconfig folder. If you want to change the serverconfig for all +#new worlds, copy the config files in the /defaultconfigs folder. +[keys] + #Key code of OPTKEY (Default: Left Control). Look up key codes under https://www.glfw.org/docs/3.3/group__keys.html + #Range: 0 ~ 350 + OptKey = 341 + #Press SNEAK+OPTKEY instead of SNEAK for changing wand mode/direction lock + ShiftOpt = false + #Press SNEAK+OPTKEY instead of SNEAK for opening wand GUI + ShiftOptGUI = true + diff --git a/minecraft/config/cookingforblockheads-common.toml b/minecraft/config/cookingforblockheads-common.toml new file mode 100644 index 0000000..5b61eda --- /dev/null +++ b/minecraft/config/cookingforblockheads-common.toml @@ -0,0 +1,23 @@ +#Set this to true if you'd like the oven to only accept cooking oil as fuel (requires Pam's Harvestcraft) +ovenRequiresCookingOil = false +#Set to false if you don't want ingredients to be marked with a special icon in the recipe book. +showIngredientIcon = true +#The amount of milk the cow in a jar generates per tick. +cowJarMilkPerTick = 1 +#Ex Compressum compatibility. Multiplier applied to the milk per tick for Compressed Cow in a Jar. +compressedCowJarMilkMultiplier = 9.0 +#Set this to true if you'd like the sink to require water to be piped in, instead of providing infinite of it. +sinkRequiresWater = false +#Set this to true if you'd like to disallow automation of the oven (pipes and such won't be able to insert/extract) +disallowOvenAutomation = false +#The cooking time multiplier for the cooking oven. Higher values means it will take longer. +ovenCookTimeMultiplier = 1.0 +#Toasting toasted bread again will turn into charcoal (only if no other mod adding toast is present). Set to false to disable. +allowVeryToastedBread = true +#If true, a cow can be squished into a Milk Jar by dropping an anvil on top. +cowJarEnabled = true +#Enabling this will make the kitchen counters have twice as much inventory space. +largeCounters = false +#The fuel multiplier for the cooking oven. Higher values means fuel lasts longer, 1.0 is furnace default. +ovenFuelTimeMultiplier = 0.33000001311302185 + diff --git a/minecraft/config/corail_recycler-common.toml b/minecraft/config/corail_recycler-common.toml new file mode 100644 index 0000000..b217885 --- /dev/null +++ b/minecraft/config/corail_recycler-common.toml @@ -0,0 +1,19 @@ + +[General] + #only_user_recipes [false/true|default:false] + only_user_recipes = false + #recycle_magic_item [false/true|default:true] + recycle_magic_item = true + #recycle_enchanted_book [false/true|default:true] + recycle_enchanted_book = true + #chance_loss [0..100|default:0] + #Range: 0 ~ 100 + chance_loss = 0 + #allow_sound [false/true|default:true] + allow_sound = true + #time_to_recycle [60..10000|default:100] + #Range: 60 ~ 10000 + time_to_recycle = 100 + #Automation stops after a delay without processing [false/true|default:true] + permanent_automation = true + diff --git a/minecraft/config/corail_recycler-server.toml b/minecraft/config/corail_recycler-server.toml new file mode 100644 index 0000000..b30e00a --- /dev/null +++ b/minecraft/config/corail_recycler-server.toml @@ -0,0 +1,7 @@ + +[General] + #allow_automation [false/true|default:true] + Allow_automation = true + #The button discover doesn't require permission 2 [false/true|default:false] + permanent_discover_button = false + diff --git a/minecraft/config/corail_recycler/denied_recipes.json b/minecraft/config/corail_recycler/denied_recipes.json new file mode 100644 index 0000000..6f9f08e --- /dev/null +++ b/minecraft/config/corail_recycler/denied_recipes.json @@ -0,0 +1,15 @@ +[ + "minecraft:magma_block", + "minecraft:blaze_powder", + "minecraft:ender_eye", + "minecraft:fire_charge", + "minecraft:sugar", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:cake", + "minecraft:granite", + "minecraft:paper", + "corail_recycler:recycler", + "minecraft:red_nether_bricks", + "minecraft:magma_cream" +] \ No newline at end of file diff --git a/minecraft/config/corail_recycler/grind_list.json b/minecraft/config/corail_recycler/grind_list.json new file mode 100644 index 0000000..1072a89 --- /dev/null +++ b/minecraft/config/corail_recycler/grind_list.json @@ -0,0 +1,34 @@ +[ + { + "left": "minecraft:amethyst_block:1", + "right": "minecraft:amethyst_shard:4" + }, + { + "left": "minecraft:copper_ingot:1", + "right": "corail_recycler:copper_nugget:9" + }, + { + "left": "minecraft:netherite_ingot:1", + "right": "corail_recycler:netherite_nugget:9" + }, + { + "left": "minecraft:diamond:1", + "right": "corail_recycler:diamond_shard:9" + }, + { + "left": "minecraft:iron_ingot:1", + "right": "minecraft:iron_nugget:9" + }, + { + "left": "minecraft:gold_ingot:1", + "right": "minecraft:gold_nugget:9" + }, + { + "left": "minecraft:leather:1", + "right": "minecraft:rabbit_hide:4" + }, + { + "left": "minecraft:oak_planks:1", + "right": "minecraft:stick:4" + } +] \ No newline at end of file diff --git a/minecraft/config/corail_recycler/user_defined_recipes.json b/minecraft/config/corail_recycler/user_defined_recipes.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/corail_recycler/user_defined_recipes.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/cosmeticarmorreworked-client.toml b/minecraft/config/cosmeticarmorreworked-client.toml new file mode 100644 index 0000000..1bc2704 --- /dev/null +++ b/minecraft/config/cosmeticarmorreworked-client.toml @@ -0,0 +1,28 @@ + +#These settings only affects client +[Client] + #Whether or not to hide the button for opening CosmeticArmorInventory + CosArmorGuiButton_Hidden = false + #The horizontal pixel distance from the origin point of player inventory gui + #Range: > -2147483648 + CosArmorGuiButton_Left = 65 + #The vertical pixel distance from the origin point of player inventoy gui + #Range: > -2147483648 + CosArmorGuiButton_Top = 67 + #Whether or not to hide the button for toggling the mod temporarily on client side + CosArmorToggleButton_Hidden = false + #The horizontal pixel distance from the origin point of player inventory gui + #Range: > -2147483648 + CosArmorToggleButton_Left = 59 + #The vertical pixel distance from the origin point of player inventory gui + #Range: > -2147483648 + CosArmorToggleButton_Top = 72 + #Whether or not to hide the button for opening CosmeticArmorInventory in CreativeInventory + CosArmorCreativeGuiButton_Hidden = false + #The horizontal pixel distance from the origin point of creative inventory gui + #Range: > -2147483648 + CosArmorCreativeGuiButton_Left = 95 + #The vertical pixel distance from the origin point of creative inventoy gui + #Range: > -2147483648 + CosArmorCreativeGuiButton_Top = 38 + diff --git a/minecraft/config/cosmeticarmorreworked-common.toml b/minecraft/config/cosmeticarmorreworked-common.toml new file mode 100644 index 0000000..92a472f --- /dev/null +++ b/minecraft/config/cosmeticarmorreworked-common.toml @@ -0,0 +1,10 @@ + +#These settings affects both server and client +[Common] + #Whether or not to keep items in cosmetic armor slots in the event of player death + CosArmorKeepThroughDeath = false + #Whether or not to disable the RecipeBook in the CosmeticArmorInventory + CosArmorDisableRecipeBook = false + #Whether or not to disable the coshat command + CosArmorDisableCosHatCommand = false + diff --git a/minecraft/config/craftingtweaks-common.toml b/minecraft/config/craftingtweaks-common.toml new file mode 100644 index 0000000..e820bf4 --- /dev/null +++ b/minecraft/config/craftingtweaks-common.toml @@ -0,0 +1,20 @@ + +[common] + #Set this to false if you want the (de)compress feature to work outside of crafting GUIs (only works if installed on server while in the player inventory) + compressRequiresCraftingGrid = true + #A list of modid:name entries that will not be crafted by the compress key. + compressDenylist = ["minecraft:sandstone", "minecraft:iron_trapdoor"] + +[client] + #If set to true, right-clicking the result slot in a crafting table will craft a full stack. + rightClickCraftsStack = true + #We both know JEI is much better. This option hides Vanilla's crafting book button instead of moving it. + hideVanillaCraftingGuide = false + #Use an alternative client-side balancing algorithm. It might be faster, or it might be slower, depending on the input. Try it if regular client-side balancing is causing lagspikes. + hyperOptimizedClientsideBalancing = false + #Set to 'DEFAULT' to enable both buttons and hotkeys. Set to 'BUTTONS' to enable buttons only. Set to 'HOTKEYS' to enable hotkeys only. Set to 'DISABLED' to disable completely. + #Allowed Values: DEFAULT, BUTTONS, HOTKEYS, DISABLED + mode = "DEFAULT" + #Add mod ids here of mods that you wish to disable Crafting Tweaks support for. + disabledAddons = [] + diff --git a/minecraft/config/crash_assistant/config.toml b/minecraft/config/crash_assistant/config.toml new file mode 100644 index 0000000..74fa25b --- /dev/null +++ b/minecraft/config/crash_assistant/config.toml @@ -0,0 +1,379 @@ + +#General settings of Crash Assistant mod. +[general] + #Link which will be opened in browser on request_help_button pressed. + #If equals CHANGE_ME, will open Forge/NeoForge/Fabric/Quilt discord link. Names of communities/channels also will be used not from config, but according to this link. + #Must start with 'https://' or 'www.' + help_link = "https://discord.com/invite/rPrzCTWJ8w" + #With this option, you can select the formulation of the GUI (e.g., in the help buttons, title). + #Currently supported: + # - DISCORD: Uses terminology like 'join the Discord' and 'post in #channel'. + # - GITHUB: Uses terminology like 'visit the GitHub' and 'post into a new issue'. + formulation_type = "DISCORD" + #Anyways log will be uploaded to mclo.gs, but with this option you can wrap link to gnomebot.dev for better formatting. + #If help_link equals 'CHANGE_ME', this value will be ignored and gnomebot.dev used. + #Supported values: mclo.gs / gnomebot.dev + upload_to = "gnomebot.dev" + #Show gui on minecraft crashed on modloading and FML error screen displayed. + show_on_fml_error_screen = true + #Close old CrashAssistantApp if it's still running when starting a new instance of Minecraft, to avoid confusing player with window from old crash. + kill_old_app = true + #If options.txt doesn't exist, the default language will be used. + default_lang = "en_us" + #By default, crash assistant will get the value for the current language from the overrides folder, then from the jar. + #By changing this option, it will first try to get it from the current overrides, then (if no override exists for this language) + #from the override for the language specified here, and only then from the jar language. + #Use "NONE" to disable this feature. Or language key, like "en_us" to enable it. + priority_lang_for_overrides = "NONE" + #By changing this value you can disable creating "crash_assistant_localization_overrides" folder and placing "README.md" file there. + generate_localization_overrides_folder_with_readme = true + #By default our process is scanning for terminated processes(they can appear with delay) and after finish of scan enabling upload buttons. + #This option can prevent this and enable individual upload buttons immediately after crash. + #However can confuse users and make them clicking individual upload buttons instead of Upload All Button. + prevent_upload_buttons_delay = false + #Before uploading the first log, requires the user to accept the privacy policy. + #Disabling this option may be illegal in some countries if you are modpack creator. Disable at your own risk. + enable_privacy_policy_acceptance = true + #Unfortunately mclogs censoring ip-like versions as has no way to determine if it's version or IP. + #This will prevent this by replacing dot's in them to dot-like symbol. + #Anti censoring only versions, IP's are kept censored. + enable_mclogs_anti_ip_like_version_censorer = true + #Prevents creating "crash_assistant" folder in the logs folder. + #So this option prevents our app logging at all. + #HIGHLY UNRECOMMENDED to disable! Contains many useful info. + prevent_generating_crash_assistant_app_logs = false + #Generates "logs/stderr_stream.log" with stderr stream. + #Since many launchers are not saving this info, which is extremely helpful for debugging some crashes. + #As only where crash reason is present. Keeps original stream untouched, just logs it to a file. + generate_own_launcher_log = true + #If true, Crash Assistant will pop up even if the presence of win_event log is the only sign of a crash. + #Can be false positive for some users, since they can have some unrelated spam in the windows event error log. + win_event_is_crash = false + #Here you can change priority for logs. + #For example if you want crash report to be shown earlier than latest.log in the available logs list. + #Supported values: https://github.com/KostromDan/Crash-Assistant/blob/1.19-1.20.1/app/src/main/java/dev/kostromdan/mods/crash_assistant/app/logs_analyser/LogType.java + #Usage: ["CRASH_REPORT", "LOG"] + logs_priority_overrides = [] + #List of blacklisted log files (checked with startswith()). This files won't show in GUI logs list. + blacklisted_logs = [] + +#A simplified GUI that hides the logs list until the user opts into Expert Mode. +[simple_mode] + #If enabled, the GUI starts in simple mode with logs hidden and a single "Show Logs (Expert Mode)" button. + #Disabled by default. + enabled = false + #If true, modpack creators always see the Expert Mode with logs visible, even if simple mode is enabled. + prevent_for_modpack_creators = true + #If true, hides the mod list changes section while simple mode is active. + hide_modlist_section = false + +#Here you can change text of lang placeHolders. +#Also you can change any text in lang files. +#You don't need to modify jar. You can change it in config/crash_assistant/lang. For more info read README.md file located where. +[text] + #$CONFIG.text.support_name$ in lang files will be replaced with this value. + #For example this placeHolder used in: "Request help in the $CONFIG.text.support_name$" + #Recommended values: "Modpack-X Discord", "Modpack-X GitHub repository", etc. + support_name = "Everlasting Creativity Discord" + #$CONFIG.text.support_place$ in lang files will be replaced with this value. + #Recommended values: "#support channel". + #In case of formulation type `GITHUB` won't be used. + support_place = "#Bug-Reports channel" + #$CONFIG.text.modpack_name$ in lang files will be replaced with this value. + #For example this placeHolder used in: "Oops, $CONFIG.text.modpack_name$ crashed!" + #Supports Better Compatibility Checker integration. You can use $BCC.modpackName$, $BCC.modpackVersion$, etc and it will be replaced with value from BCC config. + modpack_name = "Monumental Experience - 1.20.1" + +#Settings of message generated by Upload all button +[generated_message] + #Add prefix before filename. + #This can prevent too small, hard to hit on mobile links. + #Recommended values: "### ". + prefix = "### " + #Separator between logs. + #If you want vertical logs, use "\n$PREFIX$". + logs_separator = " | " + #Adds line in log list about this Intel processor can be corrupted. + intel_corrupted_notification = true + #Adds line in log list about piracy/offline mode or if check failed. + piracy_notification = true + #If the modpack is created for a non-English-speaking audience, сhange this to the language the modpack is designed for. + #This lang will be used only for generating message by "Upload all..." button.Do not modify this value if there's a chance that the generated message will be sent to English-speaking communities. + generated_msg_lang = "en_us" + #This text will be under "$CONFIG.text.modpack_name$ crashed!" in generated message by Upload all button. + #You can include: + # * some form, which users should fill out. + # * additional information like Minecraft version, etc. + text_under_crashed = "Please mention your modpack version when uploading, along with what you were doing prior to the crash" + #With this option you can notify user about something related with posting generated message. + #For example if they need to fill some option from "text_under_crashed", etc. + #Supports html formatting, placeholders. + #Leave empty to prevent showing this warning message. + warning_after_upload_all_button_press = "" + #Puts problematic frame from hs_err to message. + put_problematic_frame_to_message = true + #Puts analysis result(names of crash reasons) to message, instead of just count. + put_analysis_result_to_message = true + #Color modified mods count/analysis in msg with ANSI. + #Can be needed to be disabled if issues are reported to something not supporting ANSI codeblocks, like GitHub. + #If you disable this option, you may also want to remove "ansi" from "generated_message.ansi_block_pattern". + color_message = true + #Structure of the generated message. + #Variables: + #$HEADER$ - Title and upload link + #$TEXT_UNDER_CRASHED$ - Custom text from config + #$PREFIX$ - The prefix string + #$LOGS$ - The joined logs + #$PROBLEMATIC_FRAME$ - hs_err frame + #$ANALYSIS_RESULT$ - Analysis results + #$MODLIST_DIFF$ - Modlist changes + message_structure = "$HEADER$$TEXT_UNDER_CRASHED$$PREFIX$$LOGS$\n$PROBLEMATIC_FRAME$$ANALYSIS_RESULT$$MODLIST_DIFF$" + #Pattern for a single log line. + #Variables: $LOG_NAME$, $FILE_NAME$, $LINK$. + log_line_pattern = "$LOG_NAME$[$FILE_NAME$](<$LINK$>)" + #Pattern for a split log line (too large for single upload). + #Variables: $LOG_NAME$, $FILE_NAME$, $LINK_FIRST_LINES$, $LINK_LAST_LINES$, $TOO_BIG_REASONS$. + log_line_split_pattern = "$LOG_NAME$[$FILE_NAME$ $MSG_LANG.gui.split_log_dialog_head$](<$LINK_FIRST_LINES$>) / [$MSG_LANG.gui.split_log_dialog_tail$](<$LINK_LAST_LINES$>) $TOO_BIG_REASONS$" + #Pattern for ModList Diff and Analysis Results blocks. + #Variables: $PREFIX$, $HEADER$, $CONTENT$. + #If 'color_message' is false, remove 'ansi'. + ansi_block_pattern = "$PREFIX$$HEADER$\n```ansi\n$CONTENT$\n```" + #Pattern for formatting the problematic frame from hs_err. + #Variables: $CONTENT$ + problematic_frame_pattern = "```java\n$CONTENT$\n```" + #Pattern for simple link notifications (e.g. Intel fix, Piracy check, KubeJS scripts). + #Variables: $TEXT$, $LINK$ + link_notification_pattern = "[$TEXT$](<$LINK$>)" + #Pattern for the header of the modlist diff block (containing the link). + #Variables: $PART1$ (text before link), $PART2$ (text after link), $LINK$. + modlist_header_pattern = "[$PART1$](<$LINK$>)$PART2$" + +#Settings of links copied by Upload and copy link buttons +[copied_links] + #With this option, you can customize how single links from individual upload buttons are copied, there + #log of small size was uploaded to a single link. + #For example, leave just $LINK$ to copy just link. + single_link = "$LOG_NAME$$FILE_NAME$: $LINK$" + #With this option, you can customize how links from individual upload buttons are copied, there + #log was split to the 2 parts (head and tail, due to too large size for single upload), but user only decided to copy only one of them (not message with both). + single_link_split = "$LOG_NAME$$FILE_NAME$($HEAD_OR_TAIL$): $LINK$ $TOO_BIG_REASONS$" + #With this option, you can customize how links from individual upload buttons are copied, there + #log was split to the 2 parts (head and tail, due to too large size for single upload), but user decided to copy message with both. + both_links_split = "$LOG_NAME$[$FILE_NAME$ $MSG_LANG.gui.split_log_dialog_head$](<$LINK_FIRST_LINES$>) / [$MSG_LANG.gui.split_log_dialog_tail$](<$LINK_LAST_LINES$>) $TOO_BIG_REASONS$" + #If enabled, disables the head/tail selection dialog for split logs on individual uploads and always copies message with both links. + skip_split_dialog = false + +#Settings of modlist feature. +#Adds in generated msg block about which mods modpack user added/removed/updated. +#Also you can see diff by running '/crash_assistant modlist diff' command. +[modpack_modlist] + #Enable feature. + enabled = true + #nicknames of players, who considered as modpack creator. + #Only this players can overwrite modlist.json + #If this feature is enabled and this array is empty, will be appended with nickname of current player. + #----------------------------------------------------------------------------------------------------- + #Warning! This is not displayed anywhere, it's just tech param used for modlist feature to work correctly. + #Here must be actual nicknames of people who work with the modpack and publishing releases! + #----------------------------------------------------------------------------------------------------- + modpack_creators = ["ModernGamingWorld"] + #If enabled, modlist.json will be overwritten on every launch(first tick of TitleScreen), + #then game is launched by modpack creator. + #So you won't forget to save it before publishing. + #If you want to save manually: disable this and use '/crash_assistant modlist save' command. + auto_update = true + #If enabled, will add resourcepacks to modlist.json + #After filename where will be ' (resourcepack)' suffix. + add_resourcepacks = false + #If enabled, will add datapacks to modlist.json + #After filename where will be ' (datapacks)' suffix. + add_datapacks = false + #If enabled, will add modloader jar name to modlist, to easily track if user changed version of modloader. + add_modloader_jar_name = true + #If enabled, will add generated modlist.txt, with names of all mods / modids / mixin configs / jarjar mods info to logs. + add_modlist_txt_as_log = true + +#Settings of too many changes warning feature. +#Notifies end users of the modpack and saying they made too many changes to the modpack. +#Not displayed to the modpack creators. +[too_many_changes_warning] + #Set to the positive integer to enable feature. Set to negative integer to disable. + #How many changes end user should make for warning to be displayed. + count = -1 + #With this option, you can select the formulation of this warning, currently supported: + # - NOTIFY: Just saying to the end user that what they made many changes and adding random mods or clicking + #the "Update All" button is not a good idea without proper testing. It is expected to crash. + # - DROP_SUPPORT: Saying what you are not providing support for that amount of changes, suggesting the end user to + #re-install modpack or they are on their own with that amount of changes. + formulation_type = "NOTIFY" + +#Settings of analysis feature. +#Analysing logs for most common reasons of crashes and displaying recommendations with fixes. +[analysis] + #Enable feature. + enabled = true + #By default if CA work in modpack mode and ran by the end user it won't display analysis if it blames mod which was part of original modpack. + #And will blame only mods which were added/updated by end users. By enabling this option you can bypass this and it will blame any mods. + trigger_on_original_modpack_mods = false + #Delay in seconds for the OK button when a crash reason is shown for the first time. + #Helps to ensure the user reads the recommendation. + #Set to 0 or -1 to disable the delay. + first_show_delay = 10 + #Here you can disable some Analysis by class names. + #List of them can be found here: dev.kostromdan.mods.crash_assistant.app.logs_analyser.crash_reasons + #For example "Create6Addons" + blacklisted_reasons = [] + +#Settings of analysis tools feature. +#Here you can enable or disable showing some analysis tools for end user. +[analysis_tools] + #Enable feature. + enabled = true + #Here you can disable some Analysis tools by class names. + #List of them can be found here: dev.kostromdan.mods.crash_assistant.app.gui.analysis + #For example "MCreatorModDetectorGUI" + blacklisted_tools = [] + +#Settings of '/crash_assistant crash' command feature. +[crash_command] + #Enable feature. + enabled = true + #To ensure the user really wants to crash the game, the command needs to be run again within this amount of seconds. + #Set to <= 0 to disable the confirmation. + seconds = 10 + +#Settings of notifying about intel corrupted processors. +[intel_corrupted] + #Enable feature. + enabled = true + +#Settings of notifying about piracy/offline mode. +[piracy] + #Enable feature. + #Note: This option is ignored if general.help_link is default (CHANGE_ME). + #Notifies if in your community (Discord/GitHub) piracy is not supported. Recommended to enable for modpacks. + enabled = false + #Delay in seconds for the OK button when piracy warning is shown. + #Set to 0 or -1 to disable the delay. + delay = 10 + +[greeting] + #You don't need to touch this option. + #On first world join of modpack creator if set to false shows greeting, then self enables. + shown_greeting = true + +#Settings of scripting feature. +#Allows you to add custom scripts for log analysis. +#Scripts should be placed in config/crash_assistant/scripts/log_analysis folder. +[scripts] + #Enable feature. + enabled = true + #Enable Scripts IDE in the GUI. + ide_enabled = true + #By changing this value you can disable creating "scripts" folder and placing example scripts there. + generate_scripts_folder_with_example = true + #If enabled, "logs/crash_assistant/startup_scripts.log" is added to the logs list only when it contains [ERROR]. + #If it has no errors, its contents are written into "crash_assistant_app.log" instead. + #If app logging is disabled, the startup scripts log is kept as a separate log file. + attach_startup_scripts_log_only_on_error = true + +#You can customise GUI with this options. +[gui_customisation] + #Name of a FlatLaf IntelliJ Themes file in config/crash_assistant folder or core theme name. + #If file doesn't exist and no core theme matches, themes will be disabled and Standard Swing look and feel used. + #Supported core themes: 'FlatLightLaf', 'FlatDarkLaf', 'FlatIntelliJLaf', 'FlatDarculaLaf', 'FlatMacLightLaf', 'FlatMacDarkLaf'. + #Supports any IntelliJ Theme file with '.theme.json' extension. + #If you prefer standard Swing look and feel, use 'Swing'. + #Look out our guide about theme support: https://github.com/KostromDan/Crash-Assistant/blob/pages/guides/Theme%20Support/Getting%20Started.md + theme_file_name = "FlatLightLaf" + #Will hide Upload All Button from GUI. + disable_upload_all_button = false + #Append comment text with notice about sending screenshot of this gui tells nothing to modpack creators. + show_dont_send_screenshot_of_gui_notice = true + #Animate border to request user attention even more. + screenshot_of_gui_notice_animated_border = true + #You can make Upload All Button bigger/smaller to request user attention. + #Default Swing font size is 12, Default for this button in crash assistant is 16. + #Not recommended to set it more than 16, as it will affect the increase of GUI size because all text won't fit. + upload_all_button_font_size = 16 + #Same as upload_all_button_font_size, but for Request Help button. + request_help_button_font_size = 16 + #Same as upload_all_button_font_size, but for the Simple Mode toggle button. + simple_mode_button_font_size = 16 + #You can change Upload All Button color to request user attention. + #format is "R_G_B", range is 0-255, for example "255_0_0" is red color. Use "default" to use default swing color. + #Default for this button is "0_178_0" (dark green color). + upload_all_button_foreground_color = "0_178_0" + #Same as upload_all_button_foreground_color, but for Request Help button. + #Default for this button is "0_0_178" (dark blue color). + request_help_button_foreground_color = "0_0_178" + #Same as upload_all_button_foreground_color, but for the Simple Mode toggle button. + simple_mode_button_foreground_color = "0_0_178" + #Same as upload_all_button_font_size, but for Auto-Fix button (in integrated GPU warning). + auto_fix_button_font_size = 16 + #Same as upload_all_button_foreground_color, but for Auto-Fix button (in integrated GPU warning). + #Default for this button is "0_178_0" (dark green color). + auto_fix_button_foreground_color = "0_178_0" + #Same as upload_all_button_foreground_color, but for the Yes button in the privacy policy acceptance dialog. + #Default for this button is "0_178_0" (dark green color). + privacy_policy_yes_button_foreground_color = "0_178_0" + #Same as upload_all_button_foreground_color, but for the No button in the privacy policy acceptance dialog. + #Default for this button is "255_0_0" (red color). + privacy_policy_no_button_foreground_color = "255_0_0" + #Color of the animated border for the screenshot notice. + #format is "R_G_B", range is 0-255, for example "255_0_0" is red color. + #Default for this is "255_0_0" (red color). + screenshot_of_gui_notice_animated_border_color = "255_0_0" + #Color of the text for the screenshot notice (inside the animated border). + #format is "R_G_B", range is 0-255, for example "255_0_0" is red color. + #Default for this is "255_0_0" (red color). + screenshot_of_gui_notice_text_color = "255_0_0" + #Color of the button blinking on success action (e.g. upload all finished). + #format is "R_G_B", range is 0-255. + #Default is "100_255_100" (light green). + blinking_button_success_color = "100_255_100" + #Color of the button blinking on attention request (e.g. click on link in description). + #format is "R_G_B", range is 0-255. + #Default is "100_100_255" (light blue). + blinking_button_attention_color = "100_100_255" + #Color of the button blinking on error (e.g. failed upload). + #format is "R_G_B", range is 0-255. + #Default is "255_100_100" (light red). + blinking_button_error_color = "255_100_100" + #Path to a modpack logo to display in the top of the GUI. + #Path is relative to the Minecraft instance folder. Leave empty to disable. + #WARNING: use only '/' path separator. '\' will corrupt config! + modpack_logo_path = "" + #If true, the logo will be larger, Replacing a some of `don't send screenshot` notice. + #If false, it will be smaller and logo will be end right where the `don't send screenshot` notice starts. + #You should try both, but most likely: + #- If you have some long text in the discord/github name, you will love the small one. + #- If the text is short, you will love the large one. + modpack_logo_large_mode = false + #Limit modpack logo height. Default is -1, which means it's calculated automatically. + #By default, this should not be needed. But if you have heavily customized GUI or using + #a rectangle logo instead of square, you may want to decrease its size, so this option could be needed in such case. + limit_modpack_logo_height = -1 + #This option would be needed only if you limited modpack logo height. + #Otherwise, the logo will consume all available horizontal space. + #If true, the logo will be centered. If false, it will be aligned to the top. + modpack_logo_aligned_center = true + +#Checks crash_assistant compatibility with other incompatible mods. +#Highly unrecommended to disable! +[compatibility] + #Enable feature. + enabled = true + +#Options to help debug the Crash Assistant. +[debug] + #Debug option to crash immediately after Crash Assistant launched its process to conveniently debug it, configure it without need to manually crash. + crash_after_init = false + +#Options to configure patches made by Crash Assistant. +[patches] + #Fixes vanilla crash MC-307905 during crash report generation when StackTraceElement#getFileName() returns null. + #Without this fix, crash report generation itself crashes under some rare conditions, preventing the original crash report from being created. + #This patch does not change the report contents; it only allows the crash report to be generated successfully. + MC307905 = true + diff --git a/minecraft/config/crash_assistant/crash_assistant_localization_overrides/README.md b/minecraft/config/crash_assistant/crash_assistant_localization_overrides/README.md new file mode 100644 index 0000000..9642954 --- /dev/null +++ b/minecraft/config/crash_assistant/crash_assistant_localization_overrides/README.md @@ -0,0 +1,56 @@ +# Localizing and Customizing Crash Assistant + +Hello, localizers and modpack creators! + +This guide explains how to contribute new translations to the mod and how to customize the text for your own modpack. + +## Contributing New Translations + +We welcome contributions for new languages or improvements to existing ones! + +To contribute, please create a **Pull Request** on our official GitHub repository with your new or modified language +files. + +* **GitHub Repository:** + [https://github.com/KostromDan/Crash-Assistant/](https://github.com/KostromDan/Crash-Assistant/) +* **Language File Location:** The source files are located at + `common_config/src/main/resources/crash_assistant_localization` in the repository. + +--- + +## Customizing Text for Your Modpack + +If you want to change any text in the mod for your modpack, please **do not edit the JAR file directly**. Instead, use +the built-in override system. + +### How to Override Text + +1. Navigate to the `config/crash_assistant/crash_assistant_localization_overrides/` directory in your Minecraft + instance. +2. Create a JSON file named after the language you want to modify (e.g., `en_us.json`, `ru_ru.json`, etc.). +3. Inside this file, you only need to add the keys and values for the text you wish to change. Any key you define here + will take precedence over the default text packed inside the mod. + +This method is perfect for tweaking a few lines of text or even adding a completely new, unsupported language to your +modpack. + +### Priority Language Overrides + +You can use the `general.priority_lang_for_overrides` config option to specify a primary language for your custom text. + +* **How it works:** If you set this option to `"en_us"`, any custom text you place in the `en_us.json` override file + will be used as the default for **all other languages**, unless a specific override for that key exists in their + respective language files (e.g., in `de_de.json`). This is useful for ensuring your custom messages appear + consistently for all users, regardless of their selected language. + +### Configuration Options + +* You can prevent the `crash_assistant_localization_overrides` folder and this README file from being generated by + setting `general.generate_localization_overrides_folder_with_readme` to `false`. + +### ⚠️ Important Warning + +Standard Minecraft localization methods, such as **resource packs** or scripting mods like **KubeJS**, +**will not work**. Crash Assistant uses its own internal system to load language files to ensure it can display +messages correctly, even when the main game has crashed or hasn't fully loaded. +Please use the override folder as described above. \ No newline at end of file diff --git a/minecraft/config/crash_assistant/modlist.json b/minecraft/config/crash_assistant/modlist.json new file mode 100644 index 0000000..934aee7 --- /dev/null +++ b/minecraft/config/crash_assistant/modlist.json @@ -0,0 +1,4551 @@ +{ + "fmlloader-1.20.1-47.4.13.jar (modloader)": { + "jarName": "fmlloader-1.20.1-47.4.13.jar (modloader)", + "modId": "forge", + "version": "fmlloader-1.20.1-47.4.13.jar" + }, + "[1.20.1] SecurityCraft v1.10.1.jar": { + "jarName": "[1.20.1] SecurityCraft v1.10.1.jar", + "modId": "securitycraft", + "version": "1.10.1", + "curseForgeHash": 1962493880, + "modrinthHash": "98e4af60aa0f272105b7ffcdf154d7ab670a73bc" + }, + "[1.20.1][Forge] RPG-HUD-3.10.3.jar": { + "jarName": "[1.20.1][Forge] RPG-HUD-3.10.3.jar", + "modId": "rpghud", + "version": "3.10.3", + "curseForgeHash": 2502544722, + "modrinthHash": "9850b832e940dbfb281b66dc72be3eb56642bc84" + }, + "[forge]ctov-3.4.14.jar": { + "jarName": "[forge]ctov-3.4.14.jar", + "modId": "ctov", + "version": "3.4.14", + "curseForgeHash": 97454121, + "modrinthHash": "8fa73fd4c5ae58636e159e54321651adf555ac44" + }, + "abnormals_delight-1.20.1-5.0.1.jar": { + "jarName": "abnormals_delight-1.20.1-5.0.1.jar", + "modId": "abnormals_delight", + "version": "5.0.1", + "curseForgeHash": 1403379155, + "modrinthHash": "51592012aebc640000ca7a4bf9a03e74718a9761" + }, + "accessories-neoforge-1.0.0-beta.48+1.20.1.jar": { + "jarName": "accessories-neoforge-1.0.0-beta.48+1.20.1.jar", + "modId": "accessories", + "version": "1.0.0-beta48+1.20.1", + "curseForgeHash": 326780004, + "modrinthHash": "22d8aed468ce41b78389b801cec1cd33faa5edb5" + }, + "ActuallySubtractions-1.20.1-1.2.14.19+mc1.20.1.jar": { + "jarName": "ActuallySubtractions-1.20.1-1.2.14.19+mc1.20.1.jar", + "modId": "actuallyadditions", + "version": "1.2.14.19+mc1.20.1", + "curseForgeHash": 1339992047, + "modrinthHash": "e4a802e1fe9b2ff1c2f8f865ef361a0a08272bdb" + }, + "Ad-Astra-Giselle-Addon-forge-1.20.1-6.20.jar": { + "jarName": "Ad-Astra-Giselle-Addon-forge-1.20.1-6.20.jar", + "modId": "ad_astra_giselle_addon", + "version": "6.20", + "curseForgeHash": 2593954164, + "modrinthHash": "ce565f1dca2cb257b5ff089fc59755c714762424" + }, + "ad_astra-forge-1.20.1-1.15.20.jar": { + "jarName": "ad_astra-forge-1.20.1-1.15.20.jar", + "modId": "ad_astra", + "version": "1.15.20", + "curseForgeHash": 2713479490, + "modrinthHash": "537ac3e358a97efd7b03648a9bfd7b11f1ae7ff7" + }, + "adaptiveoptimization-8.5.0.jar": { + "jarName": "adaptiveoptimization-8.5.0.jar", + "modId": "adaptive_optimization", + "version": "8.5.0", + "curseForgeHash": 3461140775, + "modrinthHash": "fbbb2789f9dd1022c5da51f20c62a01620308720" + }, + "additional_lights-1.20.1-2.1.7.jar": { + "jarName": "additional_lights-1.20.1-2.1.7.jar", + "modId": "additional_lights", + "version": "2.1.7", + "curseForgeHash": 2473757863, + "modrinthHash": "b8ce072a8ce63e903fda4138b03179b504058335" + }, + "AdditionalBanners-Forge-1.20.1-14.0.4.jar": { + "jarName": "AdditionalBanners-Forge-1.20.1-14.0.4.jar", + "modId": "additionalbanners", + "version": "14.0.4", + "curseForgeHash": 4236484932, + "modrinthHash": "3cf4302c01eb9869504171471c8d25b0f60fae76" + }, + "additionallanterns-1.1.2-forge-mc1.20.2.jar": { + "jarName": "additionallanterns-1.1.2-forge-mc1.20.2.jar", + "modId": "additionallanterns", + "version": "1.1.2", + "curseForgeHash": 2668775500, + "modrinthHash": "c30053984d1d0e329ae92db99bd6c1b0ee60d6e5" + }, + "AdditionalStructures-1.20.x-(v.4.2.2).jar": { + "jarName": "AdditionalStructures-1.20.x-(v.4.2.2).jar", + "modId": "additionalstructures", + "version": "4.2.2", + "curseForgeHash": 1992702640, + "modrinthHash": "b0a03635fe02ecafdbf60782a5c6459149bf7f2a" + }, + "addonslib-1.20.1-1.7.jar": { + "jarName": "addonslib-1.20.1-1.7.jar", + "modId": "addonslib", + "version": "1.20.1-1.7", + "curseForgeHash": 350641165, + "modrinthHash": "bbb64c2bb543cb300920e7f17c05da1462fc5fcb" + }, + "AdvancedBackups-forge-1.20-3.7.1.jar": { + "jarName": "AdvancedBackups-forge-1.20-3.7.1.jar", + "modId": "advancedbackups", + "version": "3.7.1", + "curseForgeHash": 3451060389, + "modrinthHash": "319af993d90dd5413ec7b75e859b1f0a0cf5377b" + }, + "AdvancedPeripherals-1.20.1-0.7.46r.jar": { + "jarName": "AdvancedPeripherals-1.20.1-0.7.46r.jar", + "modId": "advancedperipherals", + "version": "0.7.46r", + "curseForgeHash": 3542595224, + "modrinthHash": "c9118e3bf16fae2c025a9a6398204e7ee84b3521" + }, + "AdvancementPlaques-1.20.1-forge-1.6.9.jar": { + "jarName": "AdvancementPlaques-1.20.1-forge-1.6.9.jar", + "modId": "advancementplaques", + "version": "1.6.9", + "curseForgeHash": 3976605015, + "modrinthHash": "6e7b01db61f9646977bd06e9d85492a667d4a8bd" + }, + "AEInfinityBooster-1.20.1-1.0.0+51.jar": { + "jarName": "AEInfinityBooster-1.20.1-1.0.0+51.jar", + "modId": "aeinfinitybooster", + "version": "1.20.1-1.0.0+51", + "curseForgeHash": 3802249709, + "modrinthHash": "75a5e5d6b656034f0e33f627899c58de5b7c6e12" + }, + "AI-Improvements-1.20-0.5.2.jar": { + "jarName": "AI-Improvements-1.20-0.5.2.jar", + "modId": "aiimprovements", + "version": "0.5.2", + "curseForgeHash": 2983526960, + "modrinthHash": "11ad483d1fd1f7ebd84b4940b1dc0926b3e9daa8" + }, + "aiotbotania-1.20.1-4.0.6.jar": { + "jarName": "aiotbotania-1.20.1-4.0.6.jar", + "modId": "aiotbotania", + "version": "1.20.1-4.0.6", + "curseForgeHash": 4183126651, + "modrinthHash": "b8150764c16fe4674f6b5b50dd37b76cbed8b1b3" + }, + "alexscaves-2.0.2.jar": { + "jarName": "alexscaves-2.0.2.jar", + "modId": "alexscaves", + "version": "2.0.2", + "curseForgeHash": 3087031510, + "modrinthHash": "a1e5c7b7c7eadda4c8e954acbcbaf75a7b500d53" + }, + "alexsdelight-1.5.jar": { + "jarName": "alexsdelight-1.5.jar", + "modId": "alexsdelight", + "version": "1.5", + "curseForgeHash": 710839485, + "modrinthHash": "ef7049ba6f16df22c8d98dd4dad2d9dc2aa6b6ba" + }, + "alexsmobs-1.22.9.jar": { + "jarName": "alexsmobs-1.22.9.jar", + "modId": "alexsmobs", + "version": "1.22.9", + "curseForgeHash": 1000930585, + "modrinthHash": "dbf93d2f1da19e16739e91e8ea0fc6f4bc2f228f" + }, + "allthearcanistgear-1.20.1-20.0.0.jar": { + "jarName": "allthearcanistgear-1.20.1-20.0.0.jar", + "modId": "allthearcanistgear", + "version": "1.20.1-20.0.0", + "curseForgeHash": 250534355, + "modrinthHash": "55546a1c3bbd2ff35424572657006ff68557bcaf" + }, + "AllTheCompatibility-1.20.x-(v.2.3.3).jar": { + "jarName": "AllTheCompatibility-1.20.x-(v.2.3.3).jar", + "modId": "allthecompatibility", + "version": "2.3.3", + "curseForgeHash": 1006113122, + "modrinthHash": "1edf69bb90189e9b484d4f91adb8a7c48ce5acfc" + }, + "alltheleaks-1.1.1+1.20.1-forge.jar": { + "jarName": "alltheleaks-1.1.1+1.20.1-forge.jar", + "modId": "alltheleaks", + "version": "1.1.1+1.20.1-forge", + "curseForgeHash": 1225915087, + "modrinthHash": "3c43c2e76093dc7ef5ad6e456d20da9674c653aa" + }, + "allthemodium-1.20.1-47.1.25-2.5.7.jar": { + "jarName": "allthemodium-1.20.1-47.1.25-2.5.7.jar", + "modId": "allthemodium", + "version": "2.5.7", + "curseForgeHash": 1713342053, + "modrinthHash": "c67fb337f052705a34de76252149224e2e62c2f2" + }, + "alltheores-1.20.1-47.1.3-2.2.4.jar": { + "jarName": "alltheores-1.20.1-47.1.3-2.2.4.jar", + "modId": "alltheores", + "version": "2.2.4", + "curseForgeHash": 2672921062, + "modrinthHash": "acb6b854e441014ad864c10ff2f42444e8754ebb" + }, + "allurement-1.20.1-4.0.0.jar": { + "jarName": "allurement-1.20.1-4.0.0.jar", + "modId": "allurement", + "version": "4.0.0", + "curseForgeHash": 1569512323, + "modrinthHash": "1687ae1c9475c70f4044e7b381aa8df1c4249e1e" + }, + "almostunified-forge-1.20.1-0.10.1.jar": { + "jarName": "almostunified-forge-1.20.1-0.10.1.jar", + "modId": "almostunified", + "version": "1.20.1-0.10.1", + "curseForgeHash": 3878434749, + "modrinthHash": "908bb8c851a38e2ad4f3e5965b1b9a6668070d66" + }, + "amendments-1.20-2.2.3.jar": { + "jarName": "amendments-1.20-2.2.3.jar", + "modId": "amendments", + "version": "1.20-2.2.3", + "curseForgeHash": 4226975037, + "modrinthHash": "70f46de146e959d6abb4346a0ac7dfb04475d239" + }, + "Amplified_Nether_1.21.x_v1.2.13.jar": { + "jarName": "Amplified_Nether_1.21.x_v1.2.13.jar", + "modId": "amplified_nether", + "version": "1.2.13", + "curseForgeHash": 304603595, + "modrinthHash": "ef86ba786d7e836047c482be388e5b2ecc640594" + }, + "ancientreforging-1.3.jar": { + "jarName": "ancientreforging-1.3.jar", + "modId": "ancientreforging", + "version": "1.3", + "curseForgeHash": 1445945241, + "modrinthHash": "a8228b33fb8de97c2c71dc3c5657aa9b91ad336f" + }, + "Apotheosis-1.20.1-7.4.8.jar": { + "jarName": "Apotheosis-1.20.1-7.4.8.jar", + "modId": "apotheosis", + "version": "7.4.8", + "curseForgeHash": 4213312087, + "modrinthHash": "e508c4724a24f0c80836818fcdd3df6424b1fc40" + }, + "ApotheoticAdditionsV2.2.2.jar": { + "jarName": "ApotheoticAdditionsV2.2.2.jar", + "modId": "apotheotic_additions", + "version": "2.2.2", + "curseForgeHash": 3519302367, + "modrinthHash": "cf32d7493c7b14bf62e8a6ead615c299d8001cb0" + }, + "Apothic Amendments - Enchanting - 0.1.4.jar": { + "jarName": "Apothic Amendments - Enchanting - 0.1.4.jar", + "modId": "apothic_amendments__enchanting", + "version": "0.1.4", + "curseForgeHash": 838719464, + "modrinthHash": "0893b0b741180f923a9692335ce7c8ff7407d88a" + }, + "Apothic Supplementaries - Enchanting - 0.1.2a.jar": { + "jarName": "Apothic Supplementaries - Enchanting - 0.1.2a.jar", + "modId": "apothic_sups_enchanting", + "version": "0.1.2", + "curseForgeHash": 767659476, + "modrinthHash": "c8130c5ec886dcf116155b4e8b65549bd4a0afdb" + }, + "ApothicAttributes-1.20.1-1.3.7.jar": { + "jarName": "ApothicAttributes-1.20.1-1.3.7.jar", + "modId": "attributeslib", + "version": "1.3.7", + "curseForgeHash": 2709009994, + "modrinthHash": "1dc0744d17f0861fe6b067798d39abce9d8e0e86" + }, + "ApothicCurios-1.20.1-1.0.3e.jar": { + "jarName": "ApothicCurios-1.20.1-1.0.3e.jar", + "modId": "apothiccurios", + "version": "1.0.3e", + "curseForgeHash": 3703138644, + "modrinthHash": "77427f10fdce834ce1f54492556f7a10c2f41a03" + }, + "appleskin-forge-mc1.20.1-2.5.1.jar": { + "jarName": "appleskin-forge-mc1.20.1-2.5.1.jar", + "modId": "appleskin", + "version": "2.5.1+mc1.20.1", + "curseForgeHash": 1671637789, + "modrinthHash": "81919356f84eab14258db98924b66c3c38e372b1" + }, + "applied-botanics-forge-1.5.1.jar": { + "jarName": "applied-botanics-forge-1.5.1.jar", + "modId": "appbot", + "version": "1.5.1", + "curseForgeHash": 264508624, + "modrinthHash": "dbc71f3d820ac117c17b56e9ad57e3290d17a8ee" + }, + "Applied-Mekanistics-1.4.3.jar": { + "jarName": "Applied-Mekanistics-1.4.3.jar", + "modId": "appmek", + "version": "1.4.3", + "curseForgeHash": 3642703755, + "modrinthHash": "8b37889d94b6c1ae5cd31ddde379a1c323c3c501" + }, + "appliedcooking-4.0.0.jar": { + "jarName": "appliedcooking-4.0.0.jar", + "modId": "appliedcooking", + "version": "4.0.0", + "curseForgeHash": 3197758077, + "modrinthHash": "a034d84dee09bdc9985a49b241cb26cfbfc8564a" + }, + "appliedenergistics2-forge-15.4.10.jar": { + "jarName": "appliedenergistics2-forge-15.4.10.jar", + "modId": "ae2", + "version": "15.4.10", + "curseForgeHash": 3615341742, + "modrinthHash": "ac255a120499f79f8deade474da09e3c00ff9bad" + }, + "AppliedFlux-1.20-1.3.4-forge.jar": { + "jarName": "AppliedFlux-1.20-1.3.4-forge.jar", + "modId": "appflux", + "version": "1.20-1.3.4-forge", + "curseForgeHash": 2903189147, + "modrinthHash": "ac024806f4f64ac1dde06e52b875fb133d3254c8" + }, + "appliedsorting-forge-1.20.1-v1.0.0.jar": { + "jarName": "appliedsorting-forge-1.20.1-v1.0.0.jar", + "modId": "appliedsorting", + "version": "1.0.0", + "curseForgeHash": 2630496724, + "modrinthHash": "402b5ede805eef537f54baae5b69d9b44f54b1d2" + }, + "Aquaculture-1.20.1-2.5.7.jar": { + "jarName": "Aquaculture-1.20.1-2.5.7.jar", + "modId": "aquaculture", + "version": "2.5.7", + "curseForgeHash": 3842956886, + "modrinthHash": "308a0e92401e29bdb9cae24532a3b07a1bf6e757" + }, + "aquaculturedelight-1.1.1-forge-1.20.1.jar": { + "jarName": "aquaculturedelight-1.1.1-forge-1.20.1.jar", + "modId": "aquaculturedelight", + "version": "1.1.1", + "curseForgeHash": 1933590206, + "modrinthHash": "e20e281d1d8909d334a331e110ad091d4b03027f" + }, + "architectury-9.2.14-forge.jar": { + "jarName": "architectury-9.2.14-forge.jar", + "modId": "architectury", + "version": "9.2.14", + "curseForgeHash": 98480002, + "modrinthHash": "a52918a500ff421180a1cbd1a0cabee712134ec4" + }, + "ArmorPoser-forge-1.20.1-2.2.2.jar": { + "jarName": "ArmorPoser-forge-1.20.1-2.2.2.jar", + "modId": "armorposer", + "version": "2.2.2", + "curseForgeHash": 2148018136, + "modrinthHash": "6e53a700a6df1c1c5c93f746c62210acf1d450de" + }, + "ars_additions-1.20.1-1.6.7.jar": { + "jarName": "ars_additions-1.20.1-1.6.7.jar", + "modId": "ars_additions", + "version": "1.20.1-1.6.7", + "curseForgeHash": 931716635, + "modrinthHash": "bd6ee7e36d0255c8b9da2840a97fafddebf1bc81" + }, + "ars_artifice-1.20.1-2.0.4.jar": { + "jarName": "ars_artifice-1.20.1-2.0.4.jar", + "modId": "ars_artifice", + "version": "1.20.1-2.0.4", + "curseForgeHash": 2324986642, + "modrinthHash": "ff7a0837e2d75ba1faa1cda0fac94bd6a64af639" + }, + "ars_creo-1.20.1-4.3.0.jar": { + "jarName": "ars_creo-1.20.1-4.3.0.jar", + "modId": "ars_creo", + "version": "4.3.0", + "curseForgeHash": 3299023172, + "modrinthHash": "f622f585fb6421897b0f7c5859731188f7239a01" + }, + "ars_elemental-1.20.1-0.6.7.8.jar": { + "jarName": "ars_elemental-1.20.1-0.6.7.8.jar", + "modId": "ars_elemental", + "version": "0.6.7.8", + "curseForgeHash": 4289995767, + "modrinthHash": "fedd4064ac48108ce56f87f89478a2783c8f26bd" + }, + "ars_instrumentum-1.20.1-4.1.0.jar": { + "jarName": "ars_instrumentum-1.20.1-4.1.0.jar", + "modId": "ars_instrumentum", + "version": "4.0.0", + "curseForgeHash": 3151001138, + "modrinthHash": "a34ae3fdcd96757ae2eabd29618b65556e4ebed4" + }, + "ars_nouveau-1.20.1-4.12.7-all.jar": { + "jarName": "ars_nouveau-1.20.1-4.12.7-all.jar", + "modId": "ars_nouveau", + "version": "4.12.7", + "curseForgeHash": 685417741, + "modrinthHash": "6c23a97d771ea7ad43bee9bd71d2f2a1f2084170" + }, + "ars_ocultas-1.20.1-1.2.2-all.jar": { + "jarName": "ars_ocultas-1.20.1-1.2.2-all.jar", + "modId": "ars_ocultas", + "version": "1.2.2", + "curseForgeHash": 1660394212, + "modrinthHash": "4c10eb7caf380ffaf7ab1317d9783bf4340ac964" + }, + "arseng-1.2.0.jar": { + "jarName": "arseng-1.2.0.jar", + "modId": "arseng", + "version": "1.2.0", + "curseForgeHash": 3147537475, + "modrinthHash": "0866c840609d8872e84a4d52bbb2542699e88755" + }, + "artifacts-forge-9.5.16.jar": { + "jarName": "artifacts-forge-9.5.16.jar", + "modId": "artifacts", + "version": "9.5.16", + "curseForgeHash": 2795611176, + "modrinthHash": "41b0751ec3f1410f1bee668f4e68e4c5c43f8fac" + }, + "ash_api-forge-3.0.2+1.20.1.jar": { + "jarName": "ash_api-forge-3.0.2+1.20.1.jar", + "modId": "ash_api", + "version": "3.0.2+1.20.1", + "curseForgeHash": 1756517472, + "modrinthHash": "0a5feb163e20658b41413350ba4469987079529a" + }, + "athena-forge-1.20.1-3.1.2.jar": { + "jarName": "athena-forge-1.20.1-3.1.2.jar", + "modId": "athena", + "version": "3.1.2", + "curseForgeHash": 3211401917, + "modrinthHash": "2acee24454af859988a691f0506271a465f68f7b" + }, + "AttributeFix-Forge-1.20.1-21.0.4.jar": { + "jarName": "AttributeFix-Forge-1.20.1-21.0.4.jar", + "modId": "attributefix", + "version": "21.0.4", + "curseForgeHash": 381211649, + "modrinthHash": "6eb69343eb21d38f95d1b1d00e6bc777bdb336fa" + }, + "AutoRegLib-1.8.2-55.jar": { + "jarName": "AutoRegLib-1.8.2-55.jar", + "modId": "autoreglib", + "version": "1.8.2-55", + "curseForgeHash": 3080214567, + "modrinthHash": "342cac5511fe7009a260bc0a25fee777179ba530" + }, + "azurelib-neo-1.20.1-3.0.27.jar": { + "jarName": "azurelib-neo-1.20.1-3.0.27.jar", + "modId": "azurelib", + "version": "3.0.27", + "curseForgeHash": 1534041846, + "modrinthHash": "73704059b2587cb940c14f96daecc855917537a6" + }, + "bagus_lib-1.20.1-5.6.1.jar": { + "jarName": "bagus_lib-1.20.1-5.6.1.jar", + "modId": "bagus_lib", + "version": "1.20.1-5.6.1", + "curseForgeHash": 705045697, + "modrinthHash": "d62b6b77efc3c6a25eb72b2f7bcf53b6d09d47ba" + }, + "balm-forge-1.20.1-7.3.37-all.jar": { + "jarName": "balm-forge-1.20.1-7.3.37-all.jar", + "modId": "balm", + "version": "7.3.37", + "curseForgeHash": 3384992026, + "modrinthHash": "bb7af11fd4bc2e76fce98f90c752279ae381b934" + }, + "BambooEverything-forge-3.0.3+mc1.20.1.jar": { + "jarName": "BambooEverything-forge-3.0.3+mc1.20.1.jar", + "modId": "bambooeverything", + "version": "3.0.3+mc1.20.1", + "curseForgeHash": 807383975, + "modrinthHash": "ddc5738ccf252c7bc29841439b0a6ced9bdf5a1c" + }, + "Barnyard Computers.jar": { + "jarName": "Barnyard Computers.jar", + "modId": "computercraft", + "version": "1.116.2", + "curseForgeHash": 2363224050, + "modrinthHash": "338a34d426d8932349939739991e857e116d20c8" + }, + "BarteringStation-v8.0.0-1.20.1-Forge.jar": { + "jarName": "BarteringStation-v8.0.0-1.20.1-Forge.jar", + "modId": "barteringstation", + "version": "8.0.0", + "curseForgeHash": 3156024669, + "modrinthHash": "85668fe9a01aab770ca502e72b5d5bbcf9e6e25b" + }, + "beautify-2.0.2.jar": { + "jarName": "beautify-2.0.2.jar", + "modId": "beautify", + "version": "2.0.2", + "curseForgeHash": 4228223791, + "modrinthHash": "497ab2ebccbf89f15845428cf0e26ca5d9c4ce76" + }, + "bellsandwhistles-0.4.5-1.20.x-Create6.0+.jar": { + "jarName": "bellsandwhistles-0.4.5-1.20.x-Create6.0+.jar", + "modId": "bellsandwhistles", + "version": "0.4.3-1.20.x", + "curseForgeHash": 3648417572, + "modrinthHash": "2487eea5f1368d70e16c7c6a08c18be3b5d3c0d0" + }, + "Better_Dogs_X_Doggy_Talents_Next_v1.2.2 [Forge] - [1.20-1.20.1].jar": { + "jarName": "Better_Dogs_X_Doggy_Talents_Next_v1.2.2 [Forge] - [1.20-1.20.1].jar", + "modId": "betterdogs_dtn", + "version": "1.2.2", + "curseForgeHash": 389061402, + "modrinthHash": "56f07df677ee7d80dd5d7939335470aeeb86a3c7" + }, + "BetterAdvancements-Forge-1.20.1-0.4.2.25.jar": { + "jarName": "BetterAdvancements-Forge-1.20.1-0.4.2.25.jar", + "modId": "betteradvancements", + "version": "0.4.2.25", + "curseForgeHash": 2448644593, + "modrinthHash": "c747ebbb7654b67c2b62b669605bcda041970ca4" + }, + "BetterAnimationsCollection-v8.0.1-1.20.1-Forge.jar": { + "jarName": "BetterAnimationsCollection-v8.0.1-1.20.1-Forge.jar", + "modId": "betteranimationscollection", + "version": "8.0.1", + "curseForgeHash": 2902820614, + "modrinthHash": "015971d9ebfda64bc11ebc9e251704469fb467c0" + }, + "BetterCompatibilityChecker-forge-4.0.8+mc1.20.1.jar": { + "jarName": "BetterCompatibilityChecker-forge-4.0.8+mc1.20.1.jar", + "modId": "bcc", + "version": "4.0.8", + "curseForgeHash": 2251038378, + "modrinthHash": "c5407cfd0b38d8db6d6f1c0088397f4c5616c7ae" + }, + "BetterF3-7.0.2-Forge-1.20.1.jar": { + "jarName": "BetterF3-7.0.2-Forge-1.20.1.jar", + "modId": "betterf3", + "version": "7.0.2", + "curseForgeHash": 3838314854, + "modrinthHash": "b65cba59e87dc6c6d1aa9c47f09b9996b4e5075d" + }, + "betterjukebox-1.20-1.3.jar": { + "jarName": "betterjukebox-1.20-1.3.jar", + "modId": "betterjukebox", + "version": "1.20-1.3", + "curseForgeHash": 2701653468, + "modrinthHash": "0a38291a1ae09f8af41e684315542a81bb66d95f" + }, + "BetterModsButton-v8.0.2-1.20.1-Forge.jar": { + "jarName": "BetterModsButton-v8.0.2-1.20.1-Forge.jar", + "modId": "bettermodsbutton", + "version": "8.0.2", + "curseForgeHash": 3567419935, + "modrinthHash": "74eec3644288d57ad1c64fff2551ca82d0b959c0" + }, + "BetterThirdPerson-Forge-1.20-1.9.0.jar": { + "jarName": "BetterThirdPerson-Forge-1.20-1.9.0.jar", + "modId": "betterthirdperson", + "version": "1.9.0", + "curseForgeHash": 3277503590, + "modrinthHash": "0b0a3ff3b244fa191b3f9580547071dee46f7276" + }, + "betterwithminecolonies-1.20-1.19.19.jar": { + "jarName": "betterwithminecolonies-1.20-1.19.19.jar", + "modId": "betterwithminecolonies", + "version": "1.20-1.19.19", + "curseForgeHash": 494519323, + "modrinthHash": "5f42a706edf58a7b978f318f24cf39752597576a" + }, + "BHMenu-Forge-1.20.1-2.4.3.jar": { + "jarName": "BHMenu-Forge-1.20.1-2.4.3.jar", + "modId": "bhmenu", + "version": "2.4.3", + "curseForgeHash": 404663436, + "modrinthHash": "bb4d7c697ef9b0445d02c817d43b07c4efc62a5c" + }, + "biomemusic-1.20.1-3.5.jar": { + "jarName": "biomemusic-1.20.1-3.5.jar", + "modId": "biomemusic", + "version": "1.20.1-3.5", + "curseForgeHash": 756474654, + "modrinthHash": "435a1fcffc252591d0f5b7ff95e8fca8a71ccb59" + }, + "BiomesOPlenty-forge-1.20.1-19.0.0.96.jar": { + "jarName": "BiomesOPlenty-forge-1.20.1-19.0.0.96.jar", + "modId": "biomesoplenty", + "version": "19.0.0.96", + "curseForgeHash": 1672303396, + "modrinthHash": "957adcd274e7c64853c93293976ecdd388a3b7fe" + }, + "blockui-1.20.1-1.0.192-snapshot.jar": { + "jarName": "blockui-1.20.1-1.0.192-snapshot.jar", + "modId": "blockui", + "version": "1.20.1-1.0.192-snapshot", + "curseForgeHash": 432611238, + "modrinthHash": "88450411efd8f8e6b2b35d0c930b82193ac2cc94" + }, + "bloodmagic-1.20.1-3.3.5-47.jar": { + "jarName": "bloodmagic-1.20.1-3.3.5-47.jar", + "modId": "bloodmagic", + "version": "3.3.5-47", + "curseForgeHash": 3100438522, + "modrinthHash": "ae2451fcb27f75421337d38d3a13f3e5f4b6dd71" + }, + "blue_skies-1.20.1-1.3.31.jar": { + "jarName": "blue_skies-1.20.1-1.3.31.jar", + "modId": "blue_skies", + "version": "1.3.31", + "curseForgeHash": 605837218, + "modrinthHash": "9d86230565f9262e845da2065f138e470eaed44c" + }, + "blueflame-1.20.0-1.0.3.jar": { + "jarName": "blueflame-1.20.0-1.0.3.jar", + "modId": "blueflame", + "version": "1.20.0-1.0.3", + "curseForgeHash": 855888267, + "modrinthHash": "4399f987dbf59bbb4e8bf23d8eedb9ab8ba67555" + }, + "blueprint-1.20.1-7.1.3.jar": { + "jarName": "blueprint-1.20.1-7.1.3.jar", + "modId": "blueprint", + "version": "7.1.3", + "curseForgeHash": 2155548073, + "modrinthHash": "fdf9cb568546e80485ea4402a39656ed9acfa991" + }, + "Boat-Item-View-Forge-1.20.1-0.0.5.jar": { + "jarName": "Boat-Item-View-Forge-1.20.1-0.0.5.jar", + "modId": "boatiview", + "version": "0.0.5", + "curseForgeHash": 458574617, + "modrinthHash": "8367bf496550dff3c9ed957df134201d550700fc" + }, + "BoatBreakFix-Universal-1.0.2.jar": { + "jarName": "BoatBreakFix-Universal-1.0.2.jar", + "modId": "boatbreakfix", + "version": "1.0.2", + "curseForgeHash": 838996730, + "modrinthHash": "f0bc583479532b7a83cded5ac86f0b3622c69558" + }, + "boatload-1.20.1-5.0.1.jar": { + "jarName": "boatload-1.20.1-5.0.1.jar", + "modId": "boatload", + "version": "5.0.1", + "curseForgeHash": 2947606906, + "modrinthHash": "7e04920780f58a0556f88f9934797deb2107641a" + }, + "Bookshelf-Forge-1.20.1-20.2.13.jar": { + "jarName": "Bookshelf-Forge-1.20.1-20.2.13.jar", + "modId": "bookshelf", + "version": "20.2.13", + "curseForgeHash": 2325681367, + "modrinthHash": "c53d9eb5ce9e8ef0f2ea9b11e478d84ce958c3e5" + }, + "Botania-1.20.1-450-FORGE.jar": { + "jarName": "Botania-1.20.1-450-FORGE.jar", + "modId": "botania", + "version": "1.20.1-450-FORGE", + "curseForgeHash": 4219100928, + "modrinthHash": "637e1d7ac69d89f17aea813e0b43f2ee806e3b14" + }, + "botaniawootaddon-20.1.1.2.jar": { + "jarName": "botaniawootaddon-20.1.1.2.jar", + "modId": "botaniawootaddon", + "version": "20.1.1.2", + "curseForgeHash": 2541220697, + "modrinthHash": "6c7b3af17be30b4555a57096741b2d955fc7162b" + }, + "BotanicalMachinery-1.20.1-3.0.7.jar": { + "jarName": "BotanicalMachinery-1.20.1-3.0.7.jar", + "modId": "botanicalmachinery", + "version": "1.20.1-3.0.7", + "curseForgeHash": 3771271684, + "modrinthHash": "07a81bd2f02eadb025911f356ffe325f342a99b8" + }, + "BotanyPots-Forge-1.20.1-13.0.41.jar": { + "jarName": "BotanyPots-Forge-1.20.1-13.0.41.jar", + "modId": "botanypots", + "version": "13.0.41", + "curseForgeHash": 1171169333, + "modrinthHash": "0b536c6238a1708a6b98cbc84df0f01845036a36" + }, + "BotanyPotsTiers-Forge-1.20.1-6.0.2.jar": { + "jarName": "BotanyPotsTiers-Forge-1.20.1-6.0.2.jar", + "modId": "botanypotstiers", + "version": "6.0.1", + "curseForgeHash": 1722371455, + "modrinthHash": "3ee7a8d8af480f807a8849693c4b46ec21a5d454" + }, + "BotanyTrees-Forge-1.20.1-9.0.19.jar": { + "jarName": "BotanyTrees-Forge-1.20.1-9.0.19.jar", + "modId": "botanytrees", + "version": "9.0.19", + "curseForgeHash": 756910688, + "modrinthHash": "7c5a1417b5d65cf53ecdb9fab6a1cdbf3eb8943b" + }, + "botarium-forge-1.20.1-2.3.4.jar": { + "jarName": "botarium-forge-1.20.1-2.3.4.jar", + "modId": "botarium", + "version": "2.3.4", + "curseForgeHash": 752547332, + "modrinthHash": "a6928cb03b7c5f81900d3d3c8e8c8f6a89a51a5b" + }, + "Bountiful-6.0.4+1.20.1-forge.jar": { + "jarName": "Bountiful-6.0.4+1.20.1-forge.jar", + "modId": "bountiful", + "version": "6.0.4+1.20.1", + "curseForgeHash": 3861227374, + "modrinthHash": "3627112f17aeef9018d98883a2469e7f90afc3c4" + }, + "BrandonsCore-1.20.1-3.2.1.302-universal.jar": { + "jarName": "BrandonsCore-1.20.1-3.2.1.302-universal.jar", + "modId": "brandonscore", + "version": "3.2.1.302", + "curseForgeHash": 3830798605, + "modrinthHash": "1378ba5f84267c18f945c52d787ac86e40d6c241" + }, + "buildersaddition-1.20.1-20230928a.jar": { + "jarName": "buildersaddition-1.20.1-20230928a.jar", + "modId": "buildersaddition", + "version": "1.20.1-20230928a", + "curseForgeHash": 3672714795, + "modrinthHash": "a3d968f02a05dd28298ab08e835becc283c7a732" + }, + "buildinggadgets2-1.0.8.jar": { + "jarName": "buildinggadgets2-1.0.8.jar", + "modId": "buildinggadgets2", + "version": "1.0.8", + "curseForgeHash": 71960834, + "modrinthHash": "d06a806e8ca84a9e96a69c32da4b43226a51e0c9" + }, + "buzzier_bees-1.20.1-6.0.1.jar": { + "jarName": "buzzier_bees-1.20.1-6.0.1.jar", + "modId": "buzzier_bees", + "version": "6.0.1", + "curseForgeHash": 1646987732, + "modrinthHash": "d92322f51b864a40a6230cfb20692c0a98039917" + }, + "bwncr-forge-1.20.1-3.17.2.jar": { + "jarName": "bwncr-forge-1.20.1-3.17.2.jar", + "modId": "bwncr", + "version": "3.17.2", + "curseForgeHash": 1080357654, + "modrinthHash": "fb22bf4c7293cd1791f172918ae81863ed1e81dd" + }, + "bygonenether-1.3.2-1.20.x.jar": { + "jarName": "bygonenether-1.3.2-1.20.x.jar", + "modId": "bygonenether", + "version": "1.3.2", + "curseForgeHash": 3349407418, + "modrinthHash": "529e31d2877b87a8bf006f590513a33ab6b73171" + }, + "caelus-forge-3.2.0+1.20.1.jar": { + "jarName": "caelus-forge-3.2.0+1.20.1.jar", + "modId": "caelus", + "version": "3.2.0+1.20.1", + "curseForgeHash": 2212904341, + "modrinthHash": "fa834f140bf7dce7b67c29b46cb531f4309d3209" + }, + "carryon-forge-1.20.1-2.1.2.7.jar": { + "jarName": "carryon-forge-1.20.1-2.1.2.7.jar", + "modId": "carryon", + "version": "2.1.2.7", + "curseForgeHash": 1899432453, + "modrinthHash": "9999714ca3dd2f2401f0396ca44f3b27c3784c4f" + }, + "CataclysmWeaponery2.0-1.20.1.jar": { + "jarName": "CataclysmWeaponery2.0-1.20.1.jar", + "modId": "cataclysm_weaponery", + "version": "2.0", + "curseForgeHash": 880341699, + "modrinthHash": "333dfefa2885966000bcd5a883962cb8ce2ed986" + }, + "caupona-1.20.1-0.4.14.jar": { + "jarName": "caupona-1.20.1-0.4.14.jar", + "modId": "caupona", + "version": "1.20.1-0.4.14", + "curseForgeHash": 1366412227, + "modrinthHash": "18a7d7e0e1847a52dd71648de56b3f0bf54fca2f" + }, + "cerulean-forge-1.0.0-1.20.1.jar": { + "jarName": "cerulean-forge-1.0.0-1.20.1.jar", + "modId": "cerulean", + "version": "1.0.0", + "curseForgeHash": 38317000, + "modrinthHash": "57697d040d21348173b4c06cb8fcb8536746525b" + }, + "chalk-1.20.1-1.6.7.jar": { + "jarName": "chalk-1.20.1-1.6.7.jar", + "modId": "chalk", + "version": "1.6.7", + "curseForgeHash": 2339474770, + "modrinthHash": "42f34947910ca428497fac0bf2566a45959a51a5" + }, + "charginggadgets-1.11.0.jar": { + "jarName": "charginggadgets-1.11.0.jar", + "modId": "charginggadgets", + "version": "1.11.0", + "curseForgeHash": 2049146312, + "modrinthHash": "22b62a40bbac0a7ccf9b982e63a492a23e9da294" + }, + "chat_heads-0.14.2-forge-1.20.jar": { + "jarName": "chat_heads-0.14.2-forge-1.20.jar", + "modId": "chat_heads", + "version": "0.14.2", + "curseForgeHash": 1586719138, + "modrinthHash": "0410ab9636c69324e3671012af64c7743f6d6079" + }, + "chefsdelight-1.0.4-forge-1.20.1.jar": { + "jarName": "chefsdelight-1.0.4-forge-1.20.1.jar", + "modId": "chefsdelight", + "version": "1.0.4-forge-1.20.1", + "curseForgeHash": 1077997583, + "modrinthHash": "4bb324dcad6b13df4ecbfa4d9c46664a5ee8da6f" + }, + "chipped-forge-1.20.1-3.0.7.jar": { + "jarName": "chipped-forge-1.20.1-3.0.7.jar", + "modId": "chipped", + "version": "3.0.7", + "curseForgeHash": 3175573632, + "modrinthHash": "25ee2a0846059d8f21d28b94b7e0229b60cb5499" + }, + "chisels-and-bits-forge-1.4.148.jar": { + "jarName": "chisels-and-bits-forge-1.4.148.jar", + "modId": "chiselsandbits", + "version": "1.4.148", + "curseForgeHash": 1050479973, + "modrinthHash": "bff153dc16b26a0d4f0e8ccc27b2e0fc2dc89355" + }, + "chunksending-1.20.1-2.8.jar": { + "jarName": "chunksending-1.20.1-2.8.jar", + "modId": "chunksending", + "version": "1.20.1-2.8", + "curseForgeHash": 2023370360, + "modrinthHash": "befdcf1c0177c8dd97d68ebb3c5c5581065caefe" + }, + "Chunky-1.3.146.jar": { + "jarName": "Chunky-1.3.146.jar", + "modId": "chunky", + "version": "1.3.146", + "curseForgeHash": 4160167965, + "modrinthHash": "0b782d12b4ac3b03a94c28f32e9b2d5587d1dd50" + }, + "citadel-2.6.2-1.20.1.jar": { + "jarName": "citadel-2.6.2-1.20.1.jar", + "modId": "citadel", + "version": "2.6.2", + "curseForgeHash": 633471506, + "modrinthHash": "06866f4005d3f6ba63ac01f715b352842d809bbd" + }, + "citresewn-1.20.1-5.jar": { + "jarName": "citresewn-1.20.1-5.jar", + "modId": "citresewn", + "version": "1.20.1-5", + "curseForgeHash": 3126551083, + "modrinthHash": "496393d1fc170bafccd6016cd5d93ab52b4a101c" + }, + "clickadv-1.20.1-3.8.jar": { + "jarName": "clickadv-1.20.1-3.8.jar", + "modId": "clickadv", + "version": "1.20.1-3.8", + "curseForgeHash": 2514218813, + "modrinthHash": "a348e4418676ed8b1ffea6c54755f1ee8656f559" + }, + "clientcrafting-1.20.1-1.8.jar": { + "jarName": "clientcrafting-1.20.1-1.8.jar", + "modId": "clientcrafting", + "version": "1.20.1-1.8", + "curseForgeHash": 3348388076, + "modrinthHash": "2cd821e69e88d3eda2c144b268c25b361ded3d9a" + }, + "ClimateRivers-v20.1.0-1.20.1-Forge.jar": { + "jarName": "ClimateRivers-v20.1.0-1.20.1-Forge.jar", + "modId": "climaterivers", + "version": "20.1.0", + "curseForgeHash": 1186715260, + "modrinthHash": "2e7a9b02a1dfdc4279330ae5c4ff8c4c269bd27d" + }, + "climbladdersfast-4.0-1.20.1-forge.jar": { + "jarName": "climbladdersfast-4.0-1.20.1-forge.jar", + "modId": "climbladdersfast", + "version": "4.0-1.20.1", + "curseForgeHash": 2405526113, + "modrinthHash": "47c03c101c3e4385813bc03533a49aa2b579315c" + }, + "cloth-config-11.1.136-forge.jar": { + "jarName": "cloth-config-11.1.136-forge.jar", + "modId": "cloth_config", + "version": "11.1.136", + "curseForgeHash": 635589968, + "modrinthHash": "c65d07748acc57ceb45d53b3964368b84f34d54f" + }, + "Clumps-forge-1.20.1-12.0.0.4.jar": { + "jarName": "Clumps-forge-1.20.1-12.0.0.4.jar", + "modId": "clumps", + "version": "12.0.0.4", + "curseForgeHash": 1243520454, + "modrinthHash": "97cc669f68dbe812cb77cc3631339334fc28b877" + }, + "CodeChickenLib-1.20.1-4.4.0.516-universal.jar": { + "jarName": "CodeChickenLib-1.20.1-4.4.0.516-universal.jar", + "modId": "codechickenlib", + "version": "4.4.0.516", + "curseForgeHash": 1091903728, + "modrinthHash": "f9b90ff58442b5967366fd90d24980a34540518d" + }, + "cofh_core-1.20.1-11.0.2.56.jar": { + "jarName": "cofh_core-1.20.1-11.0.2.56.jar", + "modId": "cofh_core", + "version": "11.0.2", + "curseForgeHash": 3041669468, + "modrinthHash": "6f7c0056fece31bf393df450d79482810ed444af" + }, + "Cognition-v2.4.10-1.20.1.jar": { + "jarName": "Cognition-v2.4.10-1.20.1.jar", + "modId": "experienceobelisk", + "version": "2.4.10-1.20.1", + "curseForgeHash": 460002533, + "modrinthHash": "c9bdd2705d6362daf99df0721e13af9de70c3ba7" + }, + "collective-1.20.1-8.13.jar": { + "jarName": "collective-1.20.1-8.13.jar", + "modId": "collective", + "version": "8.13", + "curseForgeHash": 1813952632, + "modrinthHash": "74b917dd99cd97b2f0480628a1b56958f5e0f5ad" + }, + "Colony4ComputerCraft-1.20.1-2.6.5.jar": { + "jarName": "Colony4ComputerCraft-1.20.1-2.6.5.jar", + "modId": "colony4cc", + "version": "2.6.5", + "curseForgeHash": 2387740468, + "modrinthHash": "acf0063ce3b758a6d3085680053bb53e8158c4b7" + }, + "ColossalChests-1.20.1-1.8.7.jar": { + "jarName": "ColossalChests-1.20.1-1.8.7.jar", + "modId": "colossalchests", + "version": "1.8.7", + "curseForgeHash": 3002999108, + "modrinthHash": "24680641388ba52fb7a878c36052ac228e9124ee" + }, + "comforts-forge-6.4.0+1.20.1.jar": { + "jarName": "comforts-forge-6.4.0+1.20.1.jar", + "modId": "comforts", + "version": "6.4.0+1.20.1", + "curseForgeHash": 940613798, + "modrinthHash": "e7b9fe89566bb1ee013e33745f22f309f679536e" + }, + "CommonCapabilities-1.20.1-2.9.11.jar": { + "jarName": "CommonCapabilities-1.20.1-2.9.11.jar", + "modId": "commoncapabilities", + "version": "2.9.11", + "curseForgeHash": 1042174266, + "modrinthHash": "ab2cd0f0a409ea6f9b2f9bb67a57f3fe7077fd8b" + }, + "compactmachines-forge-6.0.3.jar": { + "jarName": "compactmachines-forge-6.0.3.jar", + "modId": "compactmachines", + "version": "6.0.3", + "curseForgeHash": 4043423958, + "modrinthHash": "41debe12bc7b013c39998788ed02ee971a11518f" + }, + "compressedcreativity-1.20.1-0.2.0-all.jar": { + "jarName": "compressedcreativity-1.20.1-0.2.0-all.jar", + "modId": "compressedcreativity", + "version": "1.20.1-0.2.0", + "curseForgeHash": 269814092, + "modrinthHash": "0a87cacce547e6d96364b5376e0b415c90f17b59" + }, + "Compressium-3.0.2-build.12+mc1.20.jar": { + "jarName": "Compressium-3.0.2-build.12+mc1.20.jar", + "modId": "compressium", + "version": "3.0.2-build.12+mc1.20", + "curseForgeHash": 1256419564, + "modrinthHash": "921ea7b44b455ce13f378822f3bf4dd3634ef445" + }, + "ConfiguredDefaults-v8.0.4-1.20.1-Forge.jar": { + "jarName": "ConfiguredDefaults-v8.0.4-1.20.1-Forge.jar", + "curseForgeHash": 664193113, + "modrinthHash": "4ce4e836cc837a9b99dd1a9119260c640a4b5240" + }, + "connectedglass-1.1.14-forge-mc1.20.1.jar": { + "jarName": "connectedglass-1.1.14-forge-mc1.20.1.jar", + "modId": "connectedglass", + "version": "1.1.14", + "curseForgeHash": 3100432402, + "modrinthHash": "2f65edcf4faed33979d5dec81597b472abf17325" + }, + "connectivity-1.20.1-7.6.jar": { + "jarName": "connectivity-1.20.1-7.6.jar", + "modId": "connectivity", + "version": "1.20.1-7.6", + "curseForgeHash": 2626029621, + "modrinthHash": "ae69a0712c73411a2d804eec7abce271529e273d" + }, + "constructionwand-1.20.1-2.11.jar": { + "jarName": "constructionwand-1.20.1-2.11.jar", + "modId": "constructionwand", + "version": "1.20.1-2.11", + "curseForgeHash": 1817683668, + "modrinthHash": "80bd5223cd8984dc1038cb9f2d1cb6b97f31998a" + }, + "Controlling-forge-1.20.1-12.0.2.jar": { + "jarName": "Controlling-forge-1.20.1-12.0.2.jar", + "modId": "controlling", + "version": "12.0.2", + "curseForgeHash": 2144346557, + "modrinthHash": "f6d3cdd3ec68c5590cf5b2e89c38dbf031824bfd" + }, + "cookingforblockheads-forge-1.20.1-16.0.14.jar": { + "jarName": "cookingforblockheads-forge-1.20.1-16.0.14.jar", + "modId": "cookingforblockheads", + "version": "16.0.14", + "curseForgeHash": 3678624810, + "modrinthHash": "9e04a8ec055d2124baeb9ea4c3f52a32d7c19d1b" + }, + "Corgilib-Forge-1.20.1-4.0.3.4.jar": { + "jarName": "Corgilib-Forge-1.20.1-4.0.3.4.jar", + "modId": "corgilib", + "version": "4.0.3.4", + "curseForgeHash": 3208777550, + "modrinthHash": "4b08e5f8f2580842eacd5388458a0b52411a9fb2" + }, + "cornexpansion-forge-1.0.4.jar": { + "jarName": "cornexpansion-forge-1.0.4.jar", + "modId": "cornexpansion", + "version": "1.0.4", + "curseForgeHash": 709377786, + "modrinthHash": "261f42595a1061c8d4f47d5d906f55f756f20b57" + }, + "coroutil-forge-1.20.1-1.3.7.jar": { + "jarName": "coroutil-forge-1.20.1-1.3.7.jar", + "modId": "coroutil", + "version": "1.20.1-1.3.7", + "curseForgeHash": 1380297823, + "modrinthHash": "7f5f0b62a638b6053c95919cbe8c2bea2e0c93d0" + }, + "cosmeticarmorreworked-1.20.1-v1a.jar": { + "jarName": "cosmeticarmorreworked-1.20.1-v1a.jar", + "modId": "cosmeticarmorreworked", + "version": "1.20.1-v1a", + "curseForgeHash": 3614955629, + "modrinthHash": "afd9fa3fe95e8c086e8d439df403ed1e5ea5cbea" + }, + "cpapireforged-1.0.4.jar": { + "jarName": "cpapireforged-1.0.4.jar", + "modId": "cpapireforged", + "version": "1.0.4", + "curseForgeHash": 1913263977, + "modrinthHash": "687eb7776b582f7c388fe9ee69545f06d814fa4a" + }, + "craftingtweaks-forge-1.20.1-18.2.6.jar": { + "jarName": "craftingtweaks-forge-1.20.1-18.2.6.jar", + "modId": "craftingtweaks", + "version": "18.2.6", + "curseForgeHash": 4101757481, + "modrinthHash": "a4742067cceea47f4f8f7d25822b0ff8a8fa6268" + }, + "CrashAssistant-forge-1.19-1.20.1-1.10.28.jar": { + "jarName": "CrashAssistant-forge-1.19-1.20.1-1.10.28.jar", + "modId": "crash_assistant", + "version": "1.10.28", + "curseForgeHash": 2399972476, + "modrinthHash": "ff33e66ea1d828f0a5de39cf31d765e75d0a3859" + }, + "crashutilities-8.1.4.jar": { + "jarName": "crashutilities-8.1.4.jar", + "modId": "crashutilities", + "version": "8.1.4", + "curseForgeHash": 987823812, + "modrinthHash": "e3c00b7591fd5ea99cfbb853b9369fb999d68ed0" + }, + "CraterLib-Forge-1.20-3.0.1.jar": { + "jarName": "CraterLib-Forge-1.20-3.0.1.jar", + "modId": "craterlib", + "version": "3.0.1", + "curseForgeHash": 930381941, + "modrinthHash": "fc59868e0f67363ba19d76e7edd63bfcc57ac470" + }, + "create-1.20.1-6.0.8.jar": { + "jarName": "create-1.20.1-6.0.8.jar", + "modId": "create", + "version": "6.0.8", + "curseForgeHash": 2156032012, + "modrinthHash": "b13d912b9247a38d66d11598c121442585a1c1e9" + }, + "create-new-age-1.1.7e+forge-mc1.20.1.jar": { + "jarName": "create-new-age-1.1.7e+forge-mc1.20.1.jar", + "modId": "create_new_age", + "version": "1.1.7e+mc1.20.1", + "curseForgeHash": 1269484777, + "modrinthHash": "8f5ed6c35a47690e4c886b744c0cbf6152a55197" + }, + "create_alexscaves_compat-1.5.1.jar": { + "jarName": "create_alexscaves_compat-1.5.1.jar", + "modId": "create_alexscaves_compat", + "version": "1.5.1", + "curseForgeHash": 3348066012, + "modrinthHash": "ed9c2f1d15c0ccd06b96b080c48e2e91d064c151" + }, + "create_central_kitchen-1.20.1-for-create-6.0.6-1.4.3b.jar": { + "jarName": "create_central_kitchen-1.20.1-for-create-6.0.6-1.4.3b.jar", + "modId": "create_central_kitchen", + "version": "1.4.3b", + "curseForgeHash": 849639998, + "modrinthHash": "4e1048ce2b5453d657b42ea5dcec5ada1842b0ea" + }, + "create_enchantment_industry-1.3.3-for-create-6.0.6.jar": { + "jarName": "create_enchantment_industry-1.3.3-for-create-6.0.6.jar", + "modId": "create_enchantment_industry", + "version": "1.3.3-for-create-6.0.6", + "curseForgeHash": 2699166003, + "modrinthHash": "06fbad254100a7c9fcf829e1e33c5348d9799a87" + }, + "create_kart-2.3.0-forge-1.20.1.jar": { + "jarName": "create_kart-2.3.0-forge-1.20.1.jar", + "modId": "create_kart", + "version": "2.3.0", + "curseForgeHash": 2945967539, + "modrinthHash": "bfcd48e4ff7ebd21f5a30521131682d068eaca32" + }, + "create_oppenheimered-1.0.5.jar": { + "jarName": "create_oppenheimered-1.0.5.jar", + "modId": "create_oppenheimered", + "version": "1.0.5", + "curseForgeHash": 3137910038, + "modrinthHash": "64f6342985f5dfc7810f5d717707174eef0a32dd" + }, + "create_power_loader-2.0.3-mc1.20.1.jar": { + "jarName": "create_power_loader-2.0.3-mc1.20.1.jar", + "modId": "create_power_loader", + "version": "2.0.3-mc1.20.1", + "curseForgeHash": 1916729514, + "modrinthHash": "6b638fb67730d8429ec64fb43e20ad651f2e49b6" + }, + "createaddition-1.20.1-1.3.3.jar": { + "jarName": "createaddition-1.20.1-1.3.3.jar", + "modId": "createaddition", + "version": "1.20.1-1.3.3", + "curseForgeHash": 3687173912, + "modrinthHash": "c7d464c451fdc2979bc29a67d7eec2a30858af12" + }, + "createchromaticreturn-1.5.2.jar": { + "jarName": "createchromaticreturn-1.5.2.jar", + "modId": "createchromaticreturn", + "version": "1.0.0", + "curseForgeHash": 1646219778, + "modrinthHash": "49a0f7f8843a51b535e10214cff2f8e32c7321c7" + }, + "createdeco-2.0.3-1.20.1-forge.jar": { + "jarName": "createdeco-2.0.3-1.20.1-forge.jar", + "modId": "createdeco", + "version": "2.0.3-1.20.1-forge", + "curseForgeHash": 1368200461, + "modrinthHash": "54c8ad5686b846310bca9e69982a455e668dede3" + }, + "CreativeCore_FORGE_v2.12.32_mc1.20.1.jar": { + "jarName": "CreativeCore_FORGE_v2.12.32_mc1.20.1.jar", + "modId": "creativecore", + "version": "2.12.32", + "curseForgeHash": 4224935666, + "modrinthHash": "d49e8c29748677d0a530432f1c1bda4e9865da00" + }, + "Croptopia-1.20.1-FORGE-3.0.4.jar": { + "jarName": "Croptopia-1.20.1-FORGE-3.0.4.jar", + "modId": "croptopia", + "version": "3.0.4", + "curseForgeHash": 4197678212, + "modrinthHash": "2008e6887b9490c491ddb471e87cfb6d26684dc5" + }, + "CroptopiaAdditions-1.20.1-FORGE-2.4.jar": { + "jarName": "CroptopiaAdditions-1.20.1-FORGE-2.4.jar", + "modId": "croptopia_additions", + "version": "2.4", + "curseForgeHash": 1773758289, + "modrinthHash": "9acd76c4a33dc2f013be2fcce148bb38101cce77" + }, + "Cucumber-1.20.1-7.0.16.jar": { + "jarName": "Cucumber-1.20.1-7.0.16.jar", + "modId": "cucumber", + "version": "7.0.16", + "curseForgeHash": 1548502984, + "modrinthHash": "88a9ec30e4acb5c80a3ae060ad70b79e945293c6" + }, + "culinaryconstruct-forge-5.2.1+1.20.1.jar": { + "jarName": "culinaryconstruct-forge-5.2.1+1.20.1.jar", + "modId": "culinaryconstruct", + "version": "5.2.1+1.20.1", + "curseForgeHash": 2164128605, + "modrinthHash": "a3117ff1bc66b6b19d045a90aba6654cbfd047ca" + }, + "culturaldelights-0.16.5.jar": { + "jarName": "culturaldelights-0.16.5.jar", + "modId": "culturaldelights", + "version": "0.16.5", + "curseForgeHash": 163995674, + "modrinthHash": "39350afa0143814e53b9b049fe7b0af26f15ca98" + }, + "cupboard-1.20.1-2.7.jar": { + "jarName": "cupboard-1.20.1-2.7.jar", + "modId": "cupboard", + "version": "1.20.1-2.7", + "curseForgeHash": 4091473499, + "modrinthHash": "204bc8aa83e8a685f64311b72d55505ab2eca867" + }, + "curios-forge-5.14.1+1.20.1.jar": { + "jarName": "curios-forge-5.14.1+1.20.1.jar", + "modId": "curios", + "version": "5.14.1+1.20.1", + "curseForgeHash": 1288931317, + "modrinthHash": "452175b95ad3db6ff58bb8968f6bf7a9d1e0f480" + }, + "curiotiab-1.20.1-2.0.2.jar": { + "jarName": "curiotiab-1.20.1-2.0.2.jar", + "modId": "curiotiab", + "version": "1.20.1-2.0.2", + "curseForgeHash": 1300660324, + "modrinthHash": "5404d0801442ea4f8dab5f7e3b24f3449b190d0b" + }, + "CutThrough-v8.0.2-1.20.1-Forge.jar": { + "jarName": "CutThrough-v8.0.2-1.20.1-Forge.jar", + "modId": "cutthrough", + "version": "8.0.2", + "curseForgeHash": 2905559912, + "modrinthHash": "47b151e9a38fa6052671cc74bb21ffd7a8494d41" + }, + "cyclepaintings-1.20.1-4.1.jar": { + "jarName": "cyclepaintings-1.20.1-4.1.jar", + "modId": "cyclepaintings", + "version": "4.1", + "curseForgeHash": 1316390564, + "modrinthHash": "25b415defaafb5ca55326a144d9df34706c4a076" + }, + "Cyclic-1.20.1-1.13.6.jar": { + "jarName": "Cyclic-1.20.1-1.13.6.jar", + "modId": "cyclic", + "version": "1.13.6", + "curseForgeHash": 1921639291, + "modrinthHash": "e1069785a0914062754a3aafc906cd774176fe57" + }, + "CyclopsCore-1.20.1-1.21.3.jar": { + "jarName": "CyclopsCore-1.20.1-1.21.3.jar", + "modId": "cyclopscore", + "version": "1.21.3", + "curseForgeHash": 3238461391, + "modrinthHash": "271553b8a4f1e05d46607479bbef4d7fd9167034" + }, + "DarkPaintings-Forge-1.20.1-17.0.5.jar": { + "jarName": "DarkPaintings-Forge-1.20.1-17.0.5.jar", + "modId": "darkpaintings", + "version": "17.0.5", + "curseForgeHash": 738739809, + "modrinthHash": "46c2762720a82045c3f412dfd231e32d4445f4a3" + }, + "decorative_blocks-forge-1.20.1-4.1.3.jar": { + "jarName": "decorative_blocks-forge-1.20.1-4.1.3.jar", + "modId": "decorative_blocks", + "version": "4.1.3", + "curseForgeHash": 3674225232, + "modrinthHash": "10263d3e99807662ff065edce0e470fe62e84b30" + }, + "deeperdarker-forge-1.20.1-1.3.3.jar": { + "jarName": "deeperdarker-forge-1.20.1-1.3.3.jar", + "modId": "deeperdarker", + "version": "1.3.3", + "curseForgeHash": 4225744846, + "modrinthHash": "12f95fa85c62123140d1962702a97a3bb746bbf5" + }, + "Delightful-1.20.1-3.7.6.jar": { + "jarName": "Delightful-1.20.1-3.7.6.jar", + "modId": "delightful", + "version": "3.7.6", + "curseForgeHash": 3096765174, + "modrinthHash": "e474f9de02552d2361f15e1422316950b1172bf8" + }, + "delightfulburgers-1.20.1.jar": { + "jarName": "delightfulburgers-1.20.1.jar", + "modId": "delightfulburgers", + "version": "1.20.1", + "curseForgeHash": 2265258349, + "modrinthHash": "6cb9c2a1486e63b9a7225c8ea02654a0d9b84ee4" + }, + "delightfulsandwich-1.20.1.jar": { + "jarName": "delightfulsandwich-1.20.1.jar", + "modId": "delightfulsandwich", + "version": "1.20.1", + "curseForgeHash": 2985055453, + "modrinthHash": "ebd56e042a32bf9adaa696b2f548b0171d8672ff" + }, + "desiredservers-forge-1.20.1-1.2.1.jar": { + "jarName": "desiredservers-forge-1.20.1-1.2.1.jar", + "modId": "desiredservers", + "version": "1.2.1", + "curseForgeHash": 1184457266, + "modrinthHash": "cfe4aba9f76cc9e61914f9fe420377da78e82e48" + }, + "despawntweaks-forge-1.0.0-1.20.1.jar": { + "jarName": "despawntweaks-forge-1.0.0-1.20.1.jar", + "modId": "despawntweaks", + "version": "1.0.0", + "curseForgeHash": 2704256710, + "modrinthHash": "2a46154c5b58aa803aca4eb0a0e9682557e4422f" + }, + "deuf-1.20.1-1.3.jar": { + "jarName": "deuf-1.20.1-1.3.jar", + "modId": "deuf", + "version": "1.20.1-1.3", + "curseForgeHash": 1267037426, + "modrinthHash": "4f96406c6257d46f579a97223e30dd5e93359cfc" + }, + "DiagonalFences-v8.1.5-1.20.1-Forge.jar": { + "jarName": "DiagonalFences-v8.1.5-1.20.1-Forge.jar", + "modId": "diagonalfences", + "version": "8.1.5", + "curseForgeHash": 44817309, + "modrinthHash": "3c3266729f531939a9aba47e28fe910875a78755" + }, + "DiagonalWalls-v8.0.4-1.20.1-Forge.jar": { + "jarName": "DiagonalWalls-v8.0.4-1.20.1-Forge.jar", + "modId": "diagonalwalls", + "version": "8.0.4", + "curseForgeHash": 2877859085, + "modrinthHash": "cada35009f4f268d1685be9ce888b610b1ae607d" + }, + "DiagonalWindows-v8.1.5-1.20.1-Forge.jar": { + "jarName": "DiagonalWindows-v8.1.5-1.20.1-Forge.jar", + "modId": "diagonalwindows", + "version": "8.1.5", + "curseForgeHash": 3746526332, + "modrinthHash": "6f5be5f5491f63d84f15461fb5d877ba4d3870cd" + }, + "Dimensional-Paintings-1.20.1-2.1.1.jar": { + "jarName": "Dimensional-Paintings-1.20.1-2.1.1.jar", + "modId": "dimpaintings", + "version": "2.1.1", + "curseForgeHash": 3880531682, + "modrinthHash": "12aecfdc666f26473b1598efb8e2886144ad43cd" + }, + "doaddonfluids-forge-1.3.0.jar": { + "jarName": "doaddonfluids-forge-1.3.0.jar", + "modId": "doaddonfluids", + "version": "1.3.0", + "curseForgeHash": 1644919229, + "modrinthHash": "bdcc3c1f696e7c5d4e2f09c4bc2714fd729e695a" + }, + "DoggyTalentsNext-1.20.1-1.18.64.jar": { + "jarName": "DoggyTalentsNext-1.20.1-1.18.64.jar", + "modId": "doggytalents", + "version": "1.18.64", + "curseForgeHash": 2577943469, + "modrinthHash": "53126db6b4eb306e0690be851dcf72992815c863" + }, + "domum_ornamentum-1.20.1-1.0.292-snapshot-universal.jar": { + "jarName": "domum_ornamentum-1.20.1-1.0.292-snapshot-universal.jar", + "modId": "domum_ornamentum", + "version": "1.20.1-1.0.292-snapshot", + "curseForgeHash": 2581620858, + "modrinthHash": "1b3b96dda8dd4541afba652c7a975ba439fc1026" + }, + "doom-neo-1.20.1-7.0.13.jar": { + "jarName": "doom-neo-1.20.1-7.0.13.jar", + "modId": "doom", + "version": "7.0.13", + "curseForgeHash": 2883856728, + "modrinthHash": "888949720845fcd92e730b5801c211acdccdc391" + }, + "Draconic-Additions-1.20.1-2.4.1.5-universal.jar": { + "jarName": "Draconic-Additions-1.20.1-2.4.1.5-universal.jar", + "modId": "draconicadditions", + "version": "2.4.1.5", + "curseForgeHash": 2723935865, + "modrinthHash": "6590f5e4f048119612d3a9864e6a3c4559f952b5" + }, + "Draconic-Evolution-1.20.1-3.1.2.621-universal.jar": { + "jarName": "Draconic-Evolution-1.20.1-3.1.2.621-universal.jar", + "modId": "draconicevolution", + "version": "3.1.2.621", + "curseForgeHash": 4020746928, + "modrinthHash": "8abd0ee849f9654ec91d3ecbd115e2c296f08c73" + }, + "DrawersTooltip-1.20.1-forge-8.0.0.jar": { + "jarName": "DrawersTooltip-1.20.1-forge-8.0.0.jar", + "modId": "drawerstooltip", + "version": "8.0.0", + "curseForgeHash": 3841198744, + "modrinthHash": "1af87c87a1f9810eedd06515d41015e97ec862d4" + }, + "drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar": { + "jarName": "drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", + "modId": "drippyloadingscreen", + "version": "3.0.12", + "curseForgeHash": 3761180237, + "modrinthHash": "ea21436917b84780835b041cd27b7f86679dc6a1" + }, + "DTNPaletteOfPaws-1.20.1-1.3.0.jar": { + "jarName": "DTNPaletteOfPaws-1.20.1-1.3.0.jar", + "modId": "dtnpaletteofpaws", + "version": "1.3.0", + "curseForgeHash": 2091130240, + "modrinthHash": "f415c1469f2b75cb946de64c04cf5c61e0c66389" + }, + "Dungeon Crawl-1.20.1-2.3.15.jar": { + "jarName": "Dungeon Crawl-1.20.1-2.3.15.jar", + "modId": "dungeoncrawl", + "version": "2.3.15", + "curseForgeHash": 3170941169, + "modrinthHash": "e17ebc9be0b3f0646f2de10563b72827442cc866" + }, + "DungeonsArise-1.20.x-2.1.58-release.jar": { + "jarName": "DungeonsArise-1.20.x-2.1.58-release.jar", + "modId": "dungeons_arise", + "version": "2.1.58-1.20.x", + "curseForgeHash": 3675819829, + "modrinthHash": "30b4520e4fab40a6bb6153a2c72e34bcb721f0a5" + }, + "DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar": { + "jarName": "DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar", + "modId": "dungeons_arise_seven_seas", + "version": "1.0.2", + "curseForgeHash": 3551540601, + "modrinthHash": "0390b912cc5534bbe0f01853337d777453ca08de" + }, + "durabilitytooltip-1.1.6-forge-mc1.20.jar": { + "jarName": "durabilitytooltip-1.1.6-forge-mc1.20.jar", + "modId": "durabilitytooltip", + "version": "1.1.6", + "curseForgeHash": 725455096, + "modrinthHash": "e2ad1faa1f9764cf444851d6e4b700d1cc5f6ead" + }, + "easy-piglins-forge-1.20.1-1.1.0.jar": { + "jarName": "easy-piglins-forge-1.20.1-1.1.0.jar", + "modId": "easy_piglins", + "version": "1.20.1-1.1.0", + "curseForgeHash": 937373428, + "modrinthHash": "7f2cb8ff843bfbc4cd033dcf29b3f7a7eea4f1c6" + }, + "easy-villagers-forge-1.20.1-1.1.39.jar": { + "jarName": "easy-villagers-forge-1.20.1-1.1.39.jar", + "modId": "easy_villagers", + "version": "1.20.1-1.1.39", + "curseForgeHash": 1207518506, + "modrinthHash": "5b264d682b070eaea1b6d14c67f075a2e5d40156" + }, + "easy_mob_farm-forge-1.20.1-10.3.0.jar": { + "jarName": "easy_mob_farm-forge-1.20.1-10.3.0.jar", + "modId": "easy_mob_farm", + "version": "10.3.0", + "curseForgeHash": 516979629, + "modrinthHash": "1cd8bc7e2baa04d1cddf5f062eda62f0cede9fa8" + }, + "EasyShulkerBoxes-v8.0.2-1.20.1-Forge.jar": { + "jarName": "EasyShulkerBoxes-v8.0.2-1.20.1-Forge.jar", + "modId": "easyshulkerboxes", + "version": "8.0.2", + "curseForgeHash": 2149531480, + "modrinthHash": "c5245255c422afa2d627e89bbbf4a2f1d5d721e8" + }, + "eccentrictome-1.20.1-1.10.4.jar": { + "jarName": "eccentrictome-1.20.1-1.10.4.jar", + "modId": "eccentrictome", + "version": "1.20.1-1.10.4", + "curseForgeHash": 1765323921, + "modrinthHash": "3a2b7285e080bde8bc3f378c5c36414a8a217529" + }, + "EdivadLib-1.20.1-2.0.1.jar": { + "jarName": "EdivadLib-1.20.1-2.0.1.jar", + "modId": "edivadlib", + "version": "2.0.1", + "curseForgeHash": 2063375693, + "modrinthHash": "7c4d3b7f341554e5a09c4fa289519a5d9b090b62" + }, + "EffectDescriptions-v8.0.2-1.20.1-Forge.jar": { + "jarName": "EffectDescriptions-v8.0.2-1.20.1-Forge.jar", + "modId": "effectdescriptions", + "version": "8.0.2", + "curseForgeHash": 543173379, + "modrinthHash": "88c15335c1b1a03e22ed7cbf62d511f6dd0e6877" + }, + "eidolon_repraised-1.20.1-0.3.9.6.jar": { + "jarName": "eidolon_repraised-1.20.1-0.3.9.6.jar", + "modId": "eidolon", + "version": "0.3.9.6", + "curseForgeHash": 3347370155, + "modrinthHash": "352fe2a89ef12756ab274a8db2e7ae5965f4846c" + }, + "elevatorid-1.20.1-1.9.1-forge.jar": { + "jarName": "elevatorid-1.20.1-1.9.1-forge.jar", + "modId": "elevatorid", + "version": "1.20.1-1.9.1-forge", + "curseForgeHash": 445403790, + "modrinthHash": "9117fbb20ce0b3b9abd25e19b3d5987a53be30c9" + }, + "EnchantingInfuser-v8.0.3-1.20.1-Forge.jar": { + "jarName": "EnchantingInfuser-v8.0.3-1.20.1-Forge.jar", + "modId": "enchantinginfuser", + "version": "8.0.3", + "curseForgeHash": 861262244, + "modrinthHash": "d939ec7d3771062f24a44ee1fdfa17e476e51634" + }, + "enchantwithmob-1.20.1-11.17.1.jar": { + "jarName": "enchantwithmob-1.20.1-11.17.1.jar", + "modId": "enchantwithmob", + "version": "1.20.1-11.17.1", + "curseForgeHash": 83538037, + "modrinthHash": "4526ac5fd57b2a37cb35047a67e4573f925bf439" + }, + "enderchests-forge-1.20.1-1.4.jar": { + "jarName": "enderchests-forge-1.20.1-1.4.jar", + "modId": "enderchests", + "version": "1.20.1-1.4", + "curseForgeHash": 239785972, + "modrinthHash": "bf9dc6fc028bfbfd0658659591329073f157aac6" + }, + "endergetic-1.20.1-5.0.1.jar": { + "jarName": "endergetic-1.20.1-5.0.1.jar", + "modId": "endergetic", + "version": "5.0.1", + "curseForgeHash": 1680342716, + "modrinthHash": "6b555cbb2582c2580a9ac646abd5da2b4449837c" + }, + "EnderIO-1.20.1-6.2.16-beta-all.jar": { + "jarName": "EnderIO-1.20.1-6.2.16-beta-all.jar", + "modId": "enderio", + "version": "6.2.16-beta", + "curseForgeHash": 2074588032, + "modrinthHash": "f75ddee7d531efa47c91799539099935a6d3f927" + }, + "endersdelight-forge-1.20.1-1.1.3.jar": { + "jarName": "endersdelight-forge-1.20.1-1.1.3.jar", + "modId": "endersdelight", + "version": "1.1.3", + "curseForgeHash": 2261303872, + "modrinthHash": "c318ed189e2e39a7770c61618a2f221ceef99359" + }, + "endertanks-forge-1.20.1-1.5.jar": { + "jarName": "endertanks-forge-1.20.1-1.5.jar", + "modId": "endertanks", + "version": "1.20.1-1.5", + "curseForgeHash": 4174025529, + "modrinthHash": "d7089e5621f8c5ee050402700aa2a3ccd195eaa7" + }, + "endrem_forge-5.3.3-R-1.20.1.jar": { + "jarName": "endrem_forge-5.3.3-R-1.20.1.jar", + "modId": "endrem", + "version": "5.3.3-R-1.20.1", + "curseForgeHash": 1533249056, + "modrinthHash": "b4df41de8439e834a493fe59842709ef33ecfa82" + }, + "EngineeredSchematics-1.2.3.jar": { + "jarName": "EngineeredSchematics-1.2.3.jar", + "modId": "engineered_schematics", + "version": "1.2.3", + "curseForgeHash": 3641160401, + "modrinthHash": "95471cae625ab0b61eab8f6e3667325d17e0979a" + }, + "Engineers Delight 1.20.1 B.1.4.jar": { + "jarName": "Engineers Delight 1.20.1 B.1.4.jar", + "modId": "tmted", + "version": "1.0.4", + "curseForgeHash": 4260948053, + "modrinthHash": "9e10c79c3d1075fb4dcfebfc45582af656b55a90" + }, + "EnigmaticLegacy-2.30.1.jar": { + "jarName": "EnigmaticLegacy-2.30.1.jar", + "modId": "enigmaticlegacy", + "version": "2.30.1", + "curseForgeHash": 2723526890, + "modrinthHash": "8aa671114aee6d8ec1e3aac5c13dab84224bf2bb" + }, + "entangled-1.3.20-forge-mc1.20.4.jar": { + "jarName": "entangled-1.3.20-forge-mc1.20.4.jar", + "modId": "entangled", + "version": "1.3.20", + "curseForgeHash": 969608969, + "modrinthHash": "a72c3f8828a2c922c11676a9908e609a75b35b6e" + }, + "entityculling-forge-1.9.4-mc1.20.1.jar": { + "jarName": "entityculling-forge-1.9.4-mc1.20.1.jar", + "modId": "entityculling", + "version": "1.9.4", + "curseForgeHash": 744623401, + "modrinthHash": "2b19c5c38f88285aed2aad6a61eb622003540ee5" + }, + "environmental-1.20.1-4.1.2.jar": { + "jarName": "environmental-1.20.1-4.1.2.jar", + "modId": "environmental", + "version": "4.1.2", + "curseForgeHash": 3954662022, + "modrinthHash": "2c110c43d77841924bb2cf08ae7656a104f951f9" + }, + "EpheroLib-1.20.1-FORGE-1.2.0.jar": { + "jarName": "EpheroLib-1.20.1-FORGE-1.2.0.jar", + "modId": "epherolib", + "version": "0.1.2", + "curseForgeHash": 1652112087, + "modrinthHash": "1eca21b906d38321bf60919dd3b12d160e5e6935" + }, + "EquipmentCompare-1.20.1-forge-1.3.7.jar": { + "jarName": "EquipmentCompare-1.20.1-forge-1.3.7.jar", + "modId": "equipmentcompare", + "version": "1.3.7", + "curseForgeHash": 4045814777, + "modrinthHash": "ef4b24935e3fe8c9b811c4942c6f03e32405f4ca" + }, + "essentials-1.20.1-2.16.0.jar": { + "jarName": "essentials-1.20.1-2.16.0.jar", + "modId": "essentials", + "version": "1.20.1-2.16.0", + "curseForgeHash": 3526550341, + "modrinthHash": "51624cbd509a58bf22b232817b2ecef8e2ff1155" + }, + "EuphoriaPatcher-1.7.8-r5.6.1-forge.jar": { + "jarName": "EuphoriaPatcher-1.7.8-r5.6.1-forge.jar", + "modId": "euphoria_patcher", + "version": "1.7.8-r5.6.1-forge", + "curseForgeHash": 519356418, + "modrinthHash": "641fe3d45531371214d3e8601cb22188aa9bc203" + }, + "ExplorersCompass-1.20.1-1.3.3-forge.jar": { + "jarName": "ExplorersCompass-1.20.1-1.3.3-forge.jar", + "modId": "explorerscompass", + "version": "1.20.1-1.3.3-forge", + "curseForgeHash": 2164055151, + "modrinthHash": "4c327f26a44ab8d80d73961ff12700d120c4610c" + }, + "ExtendedAE-1.20-1.4.9-forge.jar": { + "jarName": "ExtendedAE-1.20-1.4.9-forge.jar", + "modId": "expatternprovider", + "version": "1.20-1.4.9-forge", + "curseForgeHash": 2620237685, + "modrinthHash": "55a8c773659036176142242ded460a4b88ee6fb0" + }, + "ExtendedCrafting-1.20.1-6.0.10.jar": { + "jarName": "ExtendedCrafting-1.20.1-6.0.10.jar", + "modId": "extendedcrafting", + "version": "6.0.10", + "curseForgeHash": 981922003, + "modrinthHash": "5f57644549744e4c54d717b51661b1de765f7492" + }, + "ExtraBounties-universal.jar": { + "jarName": "ExtraBounties-universal.jar", + "modId": "extrabounties", + "version": "1.3.7", + "curseForgeHash": 869714430, + "modrinthHash": "8819e846c08e615f0457ca17825dd99935e1bdf9" + }, + "ExtraDisks-1.20.1-3.0.3.jar": { + "jarName": "ExtraDisks-1.20.1-3.0.3.jar", + "modId": "extradisks", + "version": "1.20.1-3.0.3", + "curseForgeHash": 3257451826, + "modrinthHash": "51f3fcd4f8e340bb3ee773f8bb50f42a1d58f248" + }, + "ExtraStorage-1.20.1-4.0.7.jar": { + "jarName": "ExtraStorage-1.20.1-4.0.7.jar", + "modId": "extrastorage", + "version": "4.0.7", + "curseForgeHash": 4160331617, + "modrinthHash": "ba1f5826f8f5d0772c9adf46fbe93befcdd5796a" + }, + "ExtremeReactors2-1.20.1-2.0.97.jar": { + "jarName": "ExtremeReactors2-1.20.1-2.0.97.jar", + "modId": "bigreactors", + "version": "1.20.1-2.0.97", + "curseForgeHash": 3247288539, + "modrinthHash": "0e7877f58d4f1fcec50742f30aaace2053e00bc6" + }, + "ExtremeSoundMuffler-3.49.2-forge-1.20.1.jar": { + "jarName": "ExtremeSoundMuffler-3.49.2-forge-1.20.1.jar", + "modId": "extremesoundmuffler", + "version": "3.48", + "curseForgeHash": 382750826, + "modrinthHash": "3b73ae534ff7e4f9c65e78c1f868655a23ab90c7" + }, + "fallingleaves-1.20.1-2.1.2.jar": { + "jarName": "fallingleaves-1.20.1-2.1.2.jar", + "modId": "fallingleaves", + "version": "2.1.2", + "curseForgeHash": 3577225291, + "modrinthHash": "b890536f44a5c0a49f2b1f4af91c17d948b4ef4d" + }, + "FallingTree-1.20.1-4.3.4.jar": { + "jarName": "FallingTree-1.20.1-4.3.4.jar", + "modId": "fallingtree", + "version": "4.3.4", + "curseForgeHash": 3175903473, + "modrinthHash": "44d15ae2074b761597e8b8de5846cb2f98f64d25" + }, + "fancymenu_forge_3.7.0_MC_1.20.1.jar": { + "jarName": "fancymenu_forge_3.7.0_MC_1.20.1.jar", + "modId": "fancymenu", + "version": "3.7.0", + "curseForgeHash": 1154675355, + "modrinthHash": "f33a40f7d33585e781d90d00d156178e369ae8ed" + }, + "farmers-cutting-biomes-o-plenty-1.1.0-1.20.1.jar": { + "jarName": "farmers-cutting-biomes-o-plenty-1.1.0-1.20.1.jar", + "modId": "mr_farmers_cuttingbiomesoplenty", + "version": "1.1.0-1.20.1", + "curseForgeHash": 1062419778, + "modrinthHash": "68a9cb87b8eaf5d11545ebc7379c38ca3c57c491" + }, + "farmers-cutting-blue-skies-1.20.1-1.0.jar": { + "jarName": "farmers-cutting-blue-skies-1.20.1-1.0.jar", + "modId": "mr_farmers_cuttingblueskies", + "version": "1.20.1-1.0", + "curseForgeHash": 3258880785, + "modrinthHash": "ee7587818768e9b92ba5db185944158275946511" + }, + "farmers-cutting-oh-the-biomes-weve-gone-1.20.1-1.1-forge.jar": { + "jarName": "farmers-cutting-oh-the-biomes-weve-gone-1.20.1-1.1-forge.jar", + "modId": "mr_farmers_cuttingohthebiomeswevegone", + "version": "1.20.1-1.1-forge", + "curseForgeHash": 3531248351, + "modrinthHash": "dbede4c292dfa8d9d00331feb80cdd42b15c3ef8" + }, + "farmers-cutting-quark-1.0.0.jar": { + "jarName": "farmers-cutting-quark-1.0.0.jar", + "modId": "fcquark", + "version": "1.0.0", + "curseForgeHash": 529432515, + "modrinthHash": "18a1195147afd6a75b2df0a649ccadc21acbe5ab" + }, + "farmers-cutting-twilight-forest-1.20.1-1.0.jar": { + "jarName": "farmers-cutting-twilight-forest-1.20.1-1.0.jar", + "modId": "mr_farmers_cuttingtwilightforest", + "version": "1.20.1-1.0", + "curseForgeHash": 426880873, + "modrinthHash": "1d8e912d2e7cb6d91d97cccdd5e4f0d54140cd12" + }, + "farmers_croptopia-1.20.1-3.2.0.jar": { + "jarName": "farmers_croptopia-1.20.1-3.2.0.jar", + "modId": "farmers_croptopia", + "version": "3.2.0", + "curseForgeHash": 2477882914, + "modrinthHash": "b0ae79739380da17e8854c889b0674579c6f97df" + }, + "FarmersDelight-1.20.1-1.2.9.jar": { + "jarName": "FarmersDelight-1.20.1-1.2.9.jar", + "modId": "farmersdelight", + "version": "1.20.1-1.2.9", + "curseForgeHash": 4034486801, + "modrinthHash": "ca9417c369e75d38dacdac59937223e5f6adcc18" + }, + "farmersrespite-1.20.1-2.1.2.jar": { + "jarName": "farmersrespite-1.20.1-2.1.2.jar", + "modId": "farmersrespite", + "version": "1.20.1-2.1", + "curseForgeHash": 1362409908, + "modrinthHash": "9ae5bc246cb1a8f3573ab685a4e9ddfaf869e2de" + }, + "FarmersStructures-1.0.4-1.20.jar": { + "jarName": "FarmersStructures-1.0.4-1.20.jar", + "modId": "farmers_structures", + "version": "1.0.4", + "curseForgeHash": 3441116480, + "modrinthHash": "efdf64144852cb4c79396ba1303a3752ad023818" + }, + "farmingforblockheads-forge-1.20.1-14.0.4.jar": { + "jarName": "farmingforblockheads-forge-1.20.1-14.0.4.jar", + "modId": "farmingforblockheads", + "version": "14.0.4", + "curseForgeHash": 3410925093, + "modrinthHash": "c9443039b15b8c1e1bcfe32ccf5fca78234d209b" + }, + "farsight-1.20.1-4.5.jar": { + "jarName": "farsight-1.20.1-4.5.jar", + "modId": "farsight_view", + "version": "1.20.1-4.5", + "curseForgeHash": 597355476, + "modrinthHash": "985eb925a7d8e3d3eca79f7759f59d0af09e3831" + }, + "fast-ip-ping-v1.0.8-mc1.20.4-forge.jar": { + "jarName": "fast-ip-ping-v1.0.8-mc1.20.4-forge.jar", + "modId": "fastipping", + "version": "1.0.8", + "curseForgeHash": 3575355395, + "modrinthHash": "ceeeae222c51ae100e5126c4a5a7a05f4f3f4712" + }, + "fastasyncworldsave-1.20.1-2.6.jar": { + "jarName": "fastasyncworldsave-1.20.1-2.6.jar", + "modId": "fastasyncworldsave", + "version": "1.20.1-2.6", + "curseForgeHash": 1473382339, + "modrinthHash": "3a3180f5fc9d1209ca0ad69084afe8ee42ba44d6" + }, + "fastboot-1.20.x-1.2.jar": { + "jarName": "fastboot-1.20.x-1.2.jar", + "modId": "fastboot", + "version": "1.2", + "curseForgeHash": 3152139061, + "modrinthHash": "0820d6611bdf664cc84bf351089e75998a9f1962" + }, + "FastItemFrames-v20.1.5-1.20.1-Forge.jar": { + "jarName": "FastItemFrames-v20.1.5-1.20.1-Forge.jar", + "modId": "fastitemframes", + "version": "20.1.5", + "curseForgeHash": 1923091494, + "modrinthHash": "5ab6e361d3a68159ac0d5d252c6558d355e564af" + }, + "fastloading-0.0.2-1.20.1.jar": { + "jarName": "fastloading-0.0.2-1.20.1.jar", + "modId": "fastloading", + "version": "0.0.2", + "curseForgeHash": 3023800863, + "modrinthHash": "240ab381f1760b6162248def88f4cd98e240e657" + }, + "fastpaintings-1.20-1.2.7.jar": { + "jarName": "fastpaintings-1.20-1.2.7.jar", + "modId": "fastpaintings", + "version": "1.20-1.2.7", + "curseForgeHash": 2325891344, + "modrinthHash": "036137a54b8f503794cf38296ff4c7fbf2e9d5cc" + }, + "FastSuite-1.20.1-5.1.0.jar": { + "jarName": "FastSuite-1.20.1-5.1.0.jar", + "modId": "fastsuite", + "version": "5.1.0", + "curseForgeHash": 2667792324, + "modrinthHash": "3a759dce0ddc91e299027faa800c0ee40ab90de8" + }, + "Feature-Recycler-forge-1.0.1.jar": { + "jarName": "Feature-Recycler-forge-1.0.1.jar", + "modId": "featurerecycler", + "version": "1.0.1", + "curseForgeHash": 2272344332, + "modrinthHash": "09cc3ac393731861427da593a54fe5628d44eab7" + }, + "ferritecore-6.0.1-forge.jar": { + "jarName": "ferritecore-6.0.1-forge.jar", + "modId": "ferritecore", + "version": "6.0.1", + "curseForgeHash": 2683111440, + "modrinthHash": "417fb6ce8f52abf40bd9d0390371790f9576f8ba" + }, + "findme-3.2.3-forge.jar": { + "jarName": "findme-3.2.3-forge.jar", + "modId": "findme", + "version": "3.2.3", + "curseForgeHash": 2689955963, + "modrinthHash": "7b46df9e34d81bb678e9547a662cca15a04855e5" + }, + "fish_of_thieves-mc1.20.1-v3.2.0-forge.jar": { + "jarName": "fish_of_thieves-mc1.20.1-v3.2.0-forge.jar", + "modId": "fishofthieves", + "version": "3.2.0", + "curseForgeHash": 2635466430, + "modrinthHash": "b4283074784343f7bf927695767c96674f38e85b" + }, + "flatbedrock-forge-3.0.1-build.18+mc1.20.1.jar": { + "jarName": "flatbedrock-forge-3.0.1-build.18+mc1.20.1.jar", + "modId": "flatbedrock", + "version": "3.0.1-build.18+mc1.20.1", + "curseForgeHash": 1076346081, + "modrinthHash": "b1e341f7a1530e04de418728a8cbddc696421df9" + }, + "flib-1.20.1-0.0.15.jar": { + "jarName": "flib-1.20.1-0.0.15.jar", + "modId": "flib", + "version": "0.0.15", + "curseForgeHash": 331502093, + "modrinthHash": "39a45a151ca3843d03f25a5a038139a63a858489" + }, + "flickerfix-1.20.1-4.0.1.jar": { + "jarName": "flickerfix-1.20.1-4.0.1.jar", + "modId": "flickerfix", + "version": "4.0.1", + "curseForgeHash": 761957548, + "modrinthHash": "ffcf6207d71ba069a8baf18f6ac4ee8668376490" + }, + "FluxNetworks-1.20.1-7.2.1.15.jar": { + "jarName": "FluxNetworks-1.20.1-7.2.1.15.jar", + "modId": "fluxnetworks", + "version": "7.2.1.15", + "curseForgeHash": 1230147309, + "modrinthHash": "65cea2d3da2a6d6fd274ef1dad37a516466be22c" + }, + "foolproof-forge-1.0.4-1.20.1.jar": { + "jarName": "foolproof-forge-1.0.4-1.20.1.jar", + "modId": "foolproof", + "version": "1.0.4", + "curseForgeHash": 425144973, + "modrinthHash": "a20b213fe0f3b9e80f7b04159bd4a8a347cd061e" + }, + "forbidden_arcanus-1.20.1-2.2.6.jar": { + "jarName": "forbidden_arcanus-1.20.1-2.2.6.jar", + "modId": "forbidden_arcanus", + "version": "1.20.1-2.2.6", + "curseForgeHash": 820985474, + "modrinthHash": "eefcb28a80c6a8e42d452b2caf232a49a40f7b3c" + }, + "forcecraft-1.20.1-4.2.5.jar": { + "jarName": "forcecraft-1.20.1-4.2.5.jar", + "modId": "forcecraft", + "version": "4.2.5", + "curseForgeHash": 3358449281, + "modrinthHash": "360eff2e47fe982fbb582c615ec60a99ac69a701" + }, + "forestry-1.20.1-2.8.0.jar": { + "jarName": "forestry-1.20.1-2.8.0.jar", + "modId": "forestry", + "version": "2.8.0", + "curseForgeHash": 3724509207, + "modrinthHash": "f4e1227919787edd79791a4c6962e5082d20df83" + }, + "forestryworktabledisplay-1.20.1-1.0.0.jar": { + "jarName": "forestryworktabledisplay-1.20.1-1.0.0.jar", + "modId": "forestryworktabledisplay", + "version": "1.20.1-1.0.0", + "curseForgeHash": 1537993313, + "modrinthHash": "6803aac09e2f033673377c741a92eda4d2895098" + }, + "forge-runiclib-1.20.1-4.3.7.jar": { + "jarName": "forge-runiclib-1.20.1-4.3.7.jar", + "modId": "runiclib", + "version": "4.3.7", + "curseForgeHash": 2065393792, + "modrinthHash": "6001d68ec8058350c50e851b04440511c2ea5051" + }, + "FramedBlocks-9.4.3.jar": { + "jarName": "FramedBlocks-9.4.3.jar", + "modId": "framedblocks", + "version": "9.4.3", + "curseForgeHash": 380347176, + "modrinthHash": "740c0feaab75455f32df7e137389f77c83fb490c" + }, + "framework-forge-1.20.1-0.7.15.jar": { + "jarName": "framework-forge-1.20.1-0.7.15.jar", + "modId": "framework", + "version": "0.7.15", + "curseForgeHash": 2701140336, + "modrinthHash": "0963ba5c19634030dbf1358b5c5f5fb341fede73" + }, + "freecam-forge-1.2.1+1.20.jar": { + "jarName": "freecam-forge-1.2.1+1.20.jar", + "modId": "freecam", + "version": "1.2.1+1.20", + "curseForgeHash": 3214134417, + "modrinthHash": "e4224b56750a1fe3956ae73a65f4470be3e0df3b" + }, + "ftb-chunks-forge-2001.3.6.jar": { + "jarName": "ftb-chunks-forge-2001.3.6.jar", + "modId": "ftbchunks", + "version": "2001.3.6", + "curseForgeHash": 3415363214, + "modrinthHash": "7fde7917655a3356cab92f17ad2bca34962c4928" + }, + "ftb-chunks-modded-1.20+1.1.9.jar": { + "jarName": "ftb-chunks-modded-1.20+1.1.9.jar", + "modId": "ftbchunks_modded", + "version": "1.1.9", + "curseForgeHash": 2478382749, + "modrinthHash": "1bc2a017122a70b043e22b5f709c9de500262542" + }, + "ftb-essentials-forge-2001.2.3.jar": { + "jarName": "ftb-essentials-forge-2001.2.3.jar", + "modId": "ftbessentials", + "version": "2001.2.3", + "curseForgeHash": 1973516826, + "modrinthHash": "460ec092156d6b457bd91dc463ac1ee49e22442d" + }, + "ftb-filter-system-forge-20.0.1.jar": { + "jarName": "ftb-filter-system-forge-20.0.1.jar", + "modId": "ftbfiltersystem", + "version": "20.0.1", + "curseForgeHash": 2703039268, + "modrinthHash": "812de9759fe87cb405e14cbb0fe5b72a7ee11f42" + }, + "ftb-library-forge-2001.2.12.jar": { + "jarName": "ftb-library-forge-2001.2.12.jar", + "modId": "ftblibrary", + "version": "2001.2.12", + "curseForgeHash": 3807919150, + "modrinthHash": "7f36ec4af42ad1d69872c58022e93a9d1b9c82b7" + }, + "ftb-pack-companion-20.1.1+mc1.20.1.jar": { + "jarName": "ftb-pack-companion-20.1.1+mc1.20.1.jar", + "modId": "ftbpc", + "version": "20.1.1+mc1.20.1", + "curseForgeHash": 260162470, + "modrinthHash": "4b9dad314075ef422cbefc9e023dcba1e8c4842e" + }, + "ftb-quests-forge-2001.4.17.jar": { + "jarName": "ftb-quests-forge-2001.4.17.jar", + "modId": "ftbquests", + "version": "2001.4.17", + "curseForgeHash": 1887235832, + "modrinthHash": "f7e4fec8991ce2b036ed4628e01fb48446a25ec7" + }, + "ftb-ranks-forge-2001.1.7.jar": { + "jarName": "ftb-ranks-forge-2001.1.7.jar", + "modId": "ftbranks", + "version": "2001.1.7", + "curseForgeHash": 1064675696, + "modrinthHash": "1ef101b4c5991cc239d9b56a95500e3b404228f7" + }, + "ftb-teams-forge-2001.3.1.jar": { + "jarName": "ftb-teams-forge-2001.3.1.jar", + "modId": "ftbteams", + "version": "2001.3.1", + "curseForgeHash": 1240744296, + "modrinthHash": "c2af94e0b86631cb75daa8de2377ff72527651ca" + }, + "ftb-ultimine-forge-2001.1.7.jar": { + "jarName": "ftb-ultimine-forge-2001.1.7.jar", + "modId": "ftbultimine", + "version": "2001.1.7", + "curseForgeHash": 2751984927, + "modrinthHash": "3cbefa29b387cebb85022cb0ff838fd54b67cf82" + }, + "ftb-xmod-compat-forge-2.1.3.jar": { + "jarName": "ftb-xmod-compat-forge-2.1.3.jar", + "modId": "ftbxmodcompat", + "version": "2.1.3", + "curseForgeHash": 2853914731, + "modrinthHash": "0584f628d2bc6a612d79dee368324357ebae1423" + }, + "FTBQuestsOptimizer-forge-2.0.5-1.20.1.jar": { + "jarName": "FTBQuestsOptimizer-forge-2.0.5-1.20.1.jar", + "modId": "ftbqoptimizer", + "version": "2.0.5-1.20.1", + "curseForgeHash": 1224825820, + "modrinthHash": "18458645cbc3436142332eeab910e679f13a76b9" + }, + "fusion-1.2.11c-forge-mc1.20.1.jar": { + "jarName": "fusion-1.2.11c-forge-mc1.20.1.jar", + "modId": "fusion", + "version": "1.2.11+c", + "curseForgeHash": 2434900653, + "modrinthHash": "f665d7798eee078084585238ec53b745d0093c76" + }, + "fzzy_config-0.7.4+1.20.1+forge.jar": { + "jarName": "fzzy_config-0.7.4+1.20.1+forge.jar", + "modId": "fzzy_config", + "version": "0.7.4+1.20.1+forge", + "curseForgeHash": 4069840182, + "modrinthHash": "b0213984f7591c3d1ec4ab5eebd87c605728d451" + }, + "gatewaysmg1.20.1-1.1.1.jar": { + "jarName": "gatewaysmg1.20.1-1.1.1.jar", + "modId": "moregateways", + "version": "1.1.1", + "curseForgeHash": 3315436283, + "modrinthHash": "b8b4bf20a3320b27895868e3ceaf5b8e88bca50f" + }, + "GatewaysToEternity-1.20.1-4.2.6.jar": { + "jarName": "GatewaysToEternity-1.20.1-4.2.6.jar", + "modId": "gateways", + "version": "4.2.6", + "curseForgeHash": 505703889, + "modrinthHash": "ed2158bade0615c90d50474e2cbf0b32b5eeee61" + }, + "geckolib-forge-1.20.1-4.8.2.jar": { + "jarName": "geckolib-forge-1.20.1-4.8.2.jar", + "modId": "geckolib", + "version": "4.8.2", + "curseForgeHash": 1555934041, + "modrinthHash": "395a9f21a36dc8466d67c2af67a904e7013460d1" + }, + "gendustry-1.20.1-1.0.3.jar": { + "jarName": "gendustry-1.20.1-1.0.3.jar", + "modId": "gendustry", + "version": "1.0.3", + "curseForgeHash": 3288566770, + "modrinthHash": "c82a32511e1e146ad34382cc856b6832f6a13928" + }, + "glassential-forge-1.20.1-2.0.0.jar": { + "jarName": "glassential-forge-1.20.1-2.0.0.jar", + "modId": "glassential", + "version": "1.20.1-2.0.0", + "curseForgeHash": 2549017454, + "modrinthHash": "c15f3308eca074f8aa79ecf9f945994e490759e0" + }, + "GlitchCore-forge-1.20.1-0.0.1.1.jar": { + "jarName": "GlitchCore-forge-1.20.1-0.0.1.1.jar", + "modId": "glitchcore", + "version": "0.0.1.1", + "curseForgeHash": 3328741320, + "modrinthHash": "1a0aaf7c33b9acb26bf75899a43e8941cac1f6e7" + }, + "Glodium-1.20-1.5-forge.jar": { + "jarName": "Glodium-1.20-1.5-forge.jar", + "modId": "glodium", + "version": "1.20-1.5-forge", + "curseForgeHash": 3834018600, + "modrinthHash": "c7534db3248adfcf39a6158b423dfc9bfc99a378" + }, + "Gobber2-Forge-1.20.1-2.8.9.jar": { + "jarName": "Gobber2-Forge-1.20.1-2.8.9.jar", + "modId": "gobber2", + "version": "2.8.9", + "curseForgeHash": 3225930265, + "modrinthHash": "6a5a8164526940325355bda87b89045ce3f4eeef" + }, + "gobberdelight-2.1.0-forge-1.20.1.jar": { + "jarName": "gobberdelight-2.1.0-forge-1.20.1.jar", + "modId": "gobberdelight", + "version": "2.1.0", + "curseForgeHash": 1181327481, + "modrinthHash": "4b9349c7373c5c6ea281af5fdf8dbf159c7f3ce8" + }, + "GPUTape-1.18x-1.21x-1.0.5.1-forge.jar": { + "jarName": "GPUTape-1.18x-1.21x-1.0.5.1-forge.jar", + "modId": "gpu_tape", + "version": "1.0.5", + "curseForgeHash": 1515487199, + "modrinthHash": "db4a84db628dd668e08898e42e881615d34f0629" + }, + "gravelminer-forge-1.20-16.0.2.jar": { + "jarName": "gravelminer-forge-1.20-16.0.2.jar", + "modId": "gravelminer", + "version": "16.0.2", + "curseForgeHash": 1363619587, + "modrinthHash": "a92cd51f6d26a472ab78960a75f54fd6f72bfd25" + }, + "GrimoireOfGaia4-1.20.1-4.0.0-alpha.12.jar": { + "jarName": "GrimoireOfGaia4-1.20.1-4.0.0-alpha.12.jar", + "modId": "grimoireofgaia", + "version": "4.0.0-alpha.12", + "curseForgeHash": 381490933, + "modrinthHash": "1415b43d534f8de2eb41d169333d617bd5ee328c" + }, + "guardvillagers-1.20.1-1.6.15.jar": { + "jarName": "guardvillagers-1.20.1-1.6.15.jar", + "modId": "guardvillagers", + "version": "1.20.1-1.6.15", + "curseForgeHash": 1040376273, + "modrinthHash": "66b15837d31461f75817773e9226e50f851ea07e" + }, + "guideme-20.1.14.jar": { + "jarName": "guideme-20.1.14.jar", + "modId": "guideme", + "version": "20.1.14", + "curseForgeHash": 768472251, + "modrinthHash": "57d883148f04989128505a1bd8919629440f714f" + }, + "handcrafted-forge-1.20.1-3.0.6.jar": { + "jarName": "handcrafted-forge-1.20.1-3.0.6.jar", + "modId": "handcrafted", + "version": "3.0.6", + "curseForgeHash": 2938560098, + "modrinthHash": "f1b9a009529134c736c59d6d192d53a4a25e5e5f" + }, + "HangGlider-v8.0.1-1.20.1-Forge.jar": { + "jarName": "HangGlider-v8.0.1-1.20.1-Forge.jar", + "modId": "hangglider", + "version": "8.0.1", + "curseForgeHash": 2214578654, + "modrinthHash": "e4a5deeb545db6853ae4d668d0751228e641fc61" + }, + "healingcampfire-1.20.1-6.2.jar": { + "jarName": "healingcampfire-1.20.1-6.2.jar", + "modId": "healingcampfire", + "version": "6.2", + "curseForgeHash": 2137815228, + "modrinthHash": "12ece5053d1a95133dca38627d256f90cc94b3aa" + }, + "hexerei-0.4.2.3.jar": { + "jarName": "hexerei-0.4.2.3.jar", + "modId": "hexerei", + "version": "1.20.1-0.4.2.3", + "curseForgeHash": 1466839477, + "modrinthHash": "01d67f2c92aecb2e72eba3d37b7571e3ffe7297b" + }, + "HorseExpert-v8.1.1-1.20.1-Forge.jar": { + "jarName": "HorseExpert-v8.1.1-1.20.1-Forge.jar", + "modId": "horseexpert", + "version": "8.1.1", + "curseForgeHash": 824644901, + "modrinthHash": "84585fe2422165be38aa54cdedc1d39264a693a5" + }, + "Iceberg-1.20.1-forge-1.1.25.jar": { + "jarName": "Iceberg-1.20.1-forge-1.1.25.jar", + "modId": "iceberg", + "version": "1.1.25", + "curseForgeHash": 263977206, + "modrinthHash": "d551ff55814cfb01403b812459ee5a02b020d87b" + }, + "idle_boost-forge-1.2.0+1.20.1.jar": { + "jarName": "idle_boost-forge-1.2.0+1.20.1.jar", + "modId": "idle_boost", + "version": "1.2.0+1.20.1", + "curseForgeHash": 2415097384, + "modrinthHash": "2cb64010b264717174eabc1c547b6c5b1bc051d8" + }, + "ifwootaddon-20.1.1.1.jar": { + "jarName": "ifwootaddon-20.1.1.1.jar", + "modId": "ifwootaddon", + "version": "20.1.1.1", + "curseForgeHash": 582109189, + "modrinthHash": "ab29774e4dc5f58cab116a69c28a802de6b20609" + }, + "IllagerInvasion-v8.0.7-1.20.1-Forge.jar": { + "jarName": "IllagerInvasion-v8.0.7-1.20.1-Forge.jar", + "modId": "illagerinvasion", + "version": "8.0.7", + "curseForgeHash": 881429781, + "modrinthHash": "103953f4bf3d5a4a344ec5317d510ac90a25badc" + }, + "illagerwarship-1.0.1-forge-1.20.1.jar": { + "jarName": "illagerwarship-1.0.1-forge-1.20.1.jar", + "modId": "illagerwarship", + "version": "1.0.1", + "curseForgeHash": 2894428309, + "modrinthHash": "af3007f8cd07698286324bb3b555b5de2f84761a" + }, + "immersive_aircraft-1.4.0+1.20.1-forge.jar": { + "jarName": "immersive_aircraft-1.4.0+1.20.1-forge.jar", + "modId": "immersive_aircraft", + "version": "1.4.0+1.20.1", + "curseForgeHash": 506637697, + "modrinthHash": "64e6c792c5208005ee6b099e8fb7d2738873737d" + }, + "immersive_optimization-forge-1.20.1-0.1.0.jar": { + "jarName": "immersive_optimization-forge-1.20.1-0.1.0.jar", + "modId": "immersive_optimization", + "version": "0.1.0", + "curseForgeHash": 4155670972, + "modrinthHash": "58a2e199bf7992edb6ac765e7694be96cb53efde" + }, + "ImmersiveEngineering-1.20.1-10.2.0-183.jar": { + "jarName": "ImmersiveEngineering-1.20.1-10.2.0-183.jar", + "modId": "immersiveengineering", + "version": "1.20.1-10.2.0-183", + "curseForgeHash": 1984535685, + "modrinthHash": "b6e403e0e5be1802268be366ad1a7791f07fb793" + }, + "immersivelanterns-forge-1.0.6-1.20.1.jar": { + "jarName": "immersivelanterns-forge-1.0.6-1.20.1.jar", + "modId": "immersivelanterns", + "version": "1.0.6", + "curseForgeHash": 558359038, + "modrinthHash": "9d24f9e23742f962864aefc96d817f12b6382a5e" + }, + "immersivemessages-forge-1.0.18-1.20.1.jar": { + "jarName": "immersivemessages-forge-1.0.18-1.20.1.jar", + "modId": "immersivemessages", + "version": "1.0.18", + "curseForgeHash": 3668268472, + "modrinthHash": "61ce58279c764ab212ee816a6d66fc26dd6a8ba3" + }, + "immersivetips-forge-1.0.2-1.20.1.jar": { + "jarName": "immersivetips-forge-1.0.2-1.20.1.jar", + "modId": "immersivetips", + "version": "1.0.1", + "curseForgeHash": 3708903924, + "modrinthHash": "95f152bbdd66e7530cf5db568eb614e3efb1cc96" + }, + "incontrol-1.20-9.4.5.jar": { + "jarName": "incontrol-1.20-9.4.5.jar", + "modId": "incontrol", + "version": "1.20-9.4.5", + "curseForgeHash": 100988980, + "modrinthHash": "4329f881cf52b6a8fd6b22d369eaa64e2fa0d60d" + }, + "industrial-foregoing-1.20.1-3.5.21.jar": { + "jarName": "industrial-foregoing-1.20.1-3.5.21.jar", + "modId": "industrialforegoing", + "version": "3.5.21", + "curseForgeHash": 1153262941, + "modrinthHash": "bb88528b286ccd4aae1fe06654f4d8eb0879c8a8" + }, + "industrial-foregoing-souls-1.20.1-1.0.9.jar": { + "jarName": "industrial-foregoing-souls-1.20.1-1.0.9.jar", + "modId": "industrialforegoingsouls", + "version": "1.20.1-1.0.9", + "curseForgeHash": 4084034641, + "modrinthHash": "b6b007c9a8f66927a1add7386e2a8b171c4418df" + }, + "industrialforestry-0.3.jar": { + "jarName": "industrialforestry-0.3.jar", + "modId": "industrialforestry", + "version": "0.3", + "curseForgeHash": 4052466715, + "modrinthHash": "32d76c986916ac5ca1e6fe269344826dda712fce" + }, + "inventorypets-1.20.1-2.2.1.jar": { + "jarName": "inventorypets-1.20.1-2.2.1.jar", + "modId": "inventorypets", + "version": "2.2.1", + "curseForgeHash": 2703724566, + "modrinthHash": "8d761d506385ff0478fbd473686002c8ec57700c" + }, + "InventoryProfilesNext-forge-1.20-1.10.19.jar": { + "jarName": "InventoryProfilesNext-forge-1.20-1.10.19.jar", + "modId": "inventoryprofilesnext", + "version": "1.10.19", + "curseForgeHash": 499959538, + "modrinthHash": "432f4b107b13818bd2c1d16dccc9212da61e2a17" + }, + "Iron Bushes 1.0.0 - 1.20.1.jar": { + "jarName": "Iron Bushes 1.0.0 - 1.20.1.jar", + "modId": "iron_bushes", + "version": "1.0.0", + "curseForgeHash": 427491835, + "modrinthHash": "482e8c01df2fbe610bbcad01a020598659a37bf5" + }, + "ironbows-1.20.1-FORGE-1.10.jar": { + "jarName": "ironbows-1.20.1-FORGE-1.10.jar", + "modId": "ironbows", + "version": "1.20.1-FORGE-1.10", + "curseForgeHash": 1241574793, + "modrinthHash": "b4b941c763929c92d8073e0d7a1903e5f19b7efe" + }, + "ironchest-1.20.1-14.4.4.jar": { + "jarName": "ironchest-1.20.1-14.4.4.jar", + "modId": "ironchest", + "version": "1.20.1-14.4.4", + "curseForgeHash": 4008180508, + "modrinthHash": "4b2dd0f581e40f8bd6f6e63b2d84c06dfde2c4eb" + }, + "ironcoals-4.1.6.jar": { + "jarName": "ironcoals-4.1.6.jar", + "modId": "ironcoals", + "version": "4.1.6", + "curseForgeHash": 1149597914, + "modrinthHash": "9b6399a8080b0100bcba73fea00886065fe0ecb6" + }, + "ironfurnaces-1.20.1-4.1.7.jar": { + "jarName": "ironfurnaces-1.20.1-4.1.7.jar", + "modId": "ironfurnaces", + "version": "4.1.7", + "curseForgeHash": 1438395495, + "modrinthHash": "dcd45919351a57ae16a6be8381bb0cd0e59e24f1" + }, + "IronJetpacks-1.20.1-7.0.9.jar": { + "jarName": "IronJetpacks-1.20.1-7.0.9.jar", + "modId": "ironjetpacks", + "version": "7.0.9", + "curseForgeHash": 633801556, + "modrinthHash": "b1fdcfdd48ac4519ea95cb3b8dbaacc5cf819b20" + }, + "item-filters-forge-2001.1.0-build.59.jar": { + "jarName": "item-filters-forge-2001.1.0-build.59.jar", + "modId": "itemfilters", + "version": "2001.1.0-build.59", + "curseForgeHash": 3667785910, + "modrinthHash": "55a7f032c59489eca96069a7841601de2ff97590" + }, + "itemcollectors-1.1.11-forge-mc1.20.2.jar": { + "jarName": "itemcollectors-1.1.11-forge-mc1.20.2.jar", + "modId": "itemcollectors", + "version": "1.1.11", + "curseForgeHash": 2581606623, + "modrinthHash": "e21fee36e0facf98c00da27da63928cca45dcddf" + }, + "ItemProductionLib-1.20.1-1.0.2a-all.jar": { + "jarName": "ItemProductionLib-1.20.1-1.0.2a-all.jar", + "modId": "itemproductionlib", + "version": "1.0.2a", + "curseForgeHash": 3254084875, + "modrinthHash": "d991e54d59d675ff77794dcb7d23b79736c6c253" + }, + "Jade-1.20.1-Forge-11.13.2.jar": { + "jarName": "Jade-1.20.1-Forge-11.13.2.jar", + "modId": "jade", + "version": "11.13.2+forge", + "curseForgeHash": 305733389, + "modrinthHash": "1997e5fe2db3a0575ca79bfe4720019f01fd2b8c" + }, + "JadeAddons-1.20.1-Forge-5.5.0.jar": { + "jarName": "JadeAddons-1.20.1-Forge-5.5.0.jar", + "modId": "jadeaddons", + "version": "5.5.0+forge", + "curseForgeHash": 3691760882, + "modrinthHash": "5e74e87f61cf05c18457f09dfa1cb70332b6b777" + }, + "JadeColonies-1.20.1-1.4.2.jar": { + "jarName": "JadeColonies-1.20.1-1.4.2.jar", + "modId": "jadecolonies", + "version": "1.4.2", + "curseForgeHash": 1425467730, + "modrinthHash": "2758989a557e37bb12d6bf5bac88bc47a57f1e2f" + }, + "jamlib-forge-1.3.5+1.20.1.jar": { + "jarName": "jamlib-forge-1.3.5+1.20.1.jar", + "modId": "jamlib", + "version": "1.3.5+1.20.1", + "curseForgeHash": 1772241613, + "modrinthHash": "6d5ffd184496a979a54a92be86139e4afabbb580" + }, + "jeed-1.20-2.2.5.jar": { + "jarName": "jeed-1.20-2.2.5.jar", + "modId": "jeed", + "version": "1.20-2.2.5", + "curseForgeHash": 2697066173, + "modrinthHash": "9f6b1884ad8b81c0e8796daf7871eeb54271f27b" + }, + "jei-1.20.1-forge-15.20.0.128.jar": { + "jarName": "jei-1.20.1-forge-15.20.0.128.jar", + "modId": "jei", + "version": "15.20.0.128", + "curseForgeHash": 175268787, + "modrinthHash": "6d6ab556c4b47b63354f30939bbc5f1025ff689e" + }, + "jeiintegration_1.20.1-10.0.0.jar": { + "jarName": "jeiintegration_1.20.1-10.0.0.jar", + "modId": "jeiintegration", + "version": "10.0.0", + "curseForgeHash": 2865180976, + "modrinthHash": "0aa9c598105938ee0be35f1c1b31ab5d936b0ef6" + }, + "jerintegration-5.5.0.jar": { + "jarName": "jerintegration-5.5.0.jar", + "modId": "jerintegration", + "version": "5.5.0", + "curseForgeHash": 3819506178, + "modrinthHash": "1f2efe883bbb1df0e1e61e6b2b8468a5868dd759" + }, + "jmi-forge-1.20.1-0.14-48.jar": { + "jarName": "jmi-forge-1.20.1-0.14-48.jar", + "modId": "jmi", + "version": "1.20.1-0.14-48", + "curseForgeHash": 2213068568, + "modrinthHash": "f2be323d589b953eaa303f8b74913831a5a9b77b" + }, + "journeymap-1.20.1-5.10.3-forge.jar": { + "jarName": "journeymap-1.20.1-5.10.3-forge.jar", + "modId": "journeymap", + "version": "5.10.3", + "curseForgeHash": 146159728, + "modrinthHash": "d0bbe7c23049892b154b6417904dd027fb53a37a" + }, + "jumpoverfences-forge-1.20.1-1.3.1.jar": { + "jarName": "jumpoverfences-forge-1.20.1-1.3.1.jar", + "modId": "jumpoverfences", + "version": "1.3.1", + "curseForgeHash": 2097588703, + "modrinthHash": "48ab84f3de13f87924b595bcd0d12e94114699b8" + }, + "justenoughbreeding-forge-1.20-1.20.1-2.4.0.jar": { + "jarName": "justenoughbreeding-forge-1.20-1.20.1-2.4.0.jar", + "modId": "justenoughbreeding", + "version": "2.4.0", + "curseForgeHash": 4045880327, + "modrinthHash": "16df344e610669c76dc4b6e3d081b343379025ec" + }, + "JustEnoughMekanismMultiblocks-1.20.1-4.15.jar": { + "jarName": "JustEnoughMekanismMultiblocks-1.20.1-4.15.jar", + "modId": "jei_mekanism_multiblocks", + "version": "4.15", + "curseForgeHash": 1044969071, + "modrinthHash": "5ce7e013d8ecb49be14fbb239e465ce42dc9e32e" + }, + "JustEnoughProfessions-forge-1.20.1-3.0.1.jar": { + "jarName": "JustEnoughProfessions-forge-1.20.1-3.0.1.jar", + "modId": "justenoughprofessions", + "version": "3.0.1", + "curseForgeHash": 105446657, + "modrinthHash": "19dc0c1f9f0a97fae7037f271651300b6850fb92" + }, + "JustEnoughResources-1.20.1-1.4.0.247.jar": { + "jarName": "JustEnoughResources-1.20.1-1.4.0.247.jar", + "modId": "jeresources", + "version": "1.4.0.247", + "curseForgeHash": 3560569568, + "modrinthHash": "2747c58f439c37a01139d35cab59ca1a54114009" + }, + "Kambrik-6.1.1+1.20.1-forge.jar": { + "jarName": "Kambrik-6.1.1+1.20.1-forge.jar", + "modId": "kambrik", + "version": "6.1.1+1.20.1", + "curseForgeHash": 1481151549, + "modrinthHash": "48cdc22a0f6698c9059f437538e5546f74900541" + }, + "kleeslabs-forge-1.20.1-15.0.9.jar": { + "jarName": "kleeslabs-forge-1.20.1-15.0.9.jar", + "modId": "kleeslabs", + "version": "15.0.9", + "curseForgeHash": 3524388746, + "modrinthHash": "c61a556c8b3a032f0e381512ed3539dc16d3bf1e" + }, + "konkrete_forge_1.8.0_MC_1.20-1.20.1.jar": { + "jarName": "konkrete_forge_1.8.0_MC_1.20-1.20.1.jar", + "modId": "konkrete", + "version": "1.8.0", + "curseForgeHash": 3537653842, + "modrinthHash": "2019d821bed9071daabed43979433a5473ceee49" + }, + "kotlinforforge-4.12.0-all.jar": { + "jarName": "kotlinforforge-4.12.0-all.jar", + "curseForgeHash": 2392977662, + "modrinthHash": "962fdb760409d6d71cbf079235f1ca94e3863a22" + }, + "kubejs-create-forge-2001.3.0-build.8.jar": { + "jarName": "kubejs-create-forge-2001.3.0-build.8.jar", + "modId": "kubejs_create", + "version": "2001.3.0-build.8", + "curseForgeHash": 1559520977, + "modrinthHash": "cbeb6643d1cea979a7e01c87cfb08b9210a1c393" + }, + "kubejs-forge-2001.6.5-build.16.jar": { + "jarName": "kubejs-forge-2001.6.5-build.16.jar", + "modId": "kubejs", + "version": "2001.6.5-build.16", + "curseForgeHash": 2938549854, + "modrinthHash": "93fcf0eacc5dc08a4f719eaaed1dc93f0dc80f66" + }, + "L_Enders_Cataclysm-3.16.jar": { + "jarName": "L_Enders_Cataclysm-3.16.jar", + "modId": "cataclysm", + "version": "3.16", + "curseForgeHash": 1522118722, + "modrinthHash": "25d84c486a817ba54362ea1f4b82b6d3802cc074" + }, + "LeaveMyBarsAlone-v8.0.0-1.20.1-Forge.jar": { + "jarName": "LeaveMyBarsAlone-v8.0.0-1.20.1-Forge.jar", + "modId": "leavemybarsalone", + "version": "8.0.0", + "curseForgeHash": 168702818, + "modrinthHash": "d4b545c4ed05152acb920396de9600938cd01962" + }, + "LeavesBeGone-v8.0.0-1.20.1-Forge.jar": { + "jarName": "LeavesBeGone-v8.0.0-1.20.1-Forge.jar", + "modId": "leavesbegone", + "version": "8.0.0", + "curseForgeHash": 1376471928, + "modrinthHash": "c5043f862be7db76892c7c0c95d02fa3f8332af0" + }, + "LegendaryTooltips-1.20.1-forge-1.4.5.jar": { + "jarName": "LegendaryTooltips-1.20.1-forge-1.4.5.jar", + "modId": "legendarytooltips", + "version": "1.4.5", + "curseForgeHash": 3172844775, + "modrinthHash": "7d83a56572d333ea352706872f565b8b8537085c" + }, + "letsdo-API-forge-1.2.15-forge.jar": { + "jarName": "letsdo-API-forge-1.2.15-forge.jar", + "modId": "doapi", + "version": "1.2.15", + "curseForgeHash": 2024374848, + "modrinthHash": "a261043a45097d861a13a63ebdbb0ca350e06a63" + }, + "letsdo-applewood-forge-1.0.6.jar": { + "jarName": "letsdo-applewood-forge-1.0.6.jar", + "modId": "applewood", + "version": "1.0.6", + "curseForgeHash": 1804929530, + "modrinthHash": "fe6b2c1341640306f6d65541d1f8c092371ba366" + }, + "letsdo-bakery-forge-2.0.6.jar": { + "jarName": "letsdo-bakery-forge-2.0.6.jar", + "modId": "bakery", + "version": "2.0.6", + "curseForgeHash": 2240408187, + "modrinthHash": "75f35ba47c07d4af5b8b4e05fcffb74fc1583685" + }, + "letsdo-beachparty-forge-2.0.3.jar": { + "jarName": "letsdo-beachparty-forge-2.0.3.jar", + "modId": "beachparty", + "version": "2.0.3", + "curseForgeHash": 3455434390, + "modrinthHash": "7348f2a932c425a23c8950cb2956e11c32afb340" + }, + "letsdo-bloomingnature-forge-1.0.12.jar": { + "jarName": "letsdo-bloomingnature-forge-1.0.12.jar", + "modId": "bloomingnature", + "version": "1.0.12", + "curseForgeHash": 1593487584, + "modrinthHash": "360727042ae8579f5cdc95650953b39ea30fabfa" + }, + "letsdo-brewery-forge-2.0.6.jar": { + "jarName": "letsdo-brewery-forge-2.0.6.jar", + "modId": "brewery", + "version": "2.0.6", + "curseForgeHash": 2892597364, + "modrinthHash": "ce364781ec9accfdd5bb04f8280ffb542243b1ae" + }, + "letsdo-camping-forge-1.0.4.jar": { + "jarName": "letsdo-camping-forge-1.0.4.jar", + "modId": "camping", + "version": "1.0.4", + "curseForgeHash": 440568818, + "modrinthHash": "c4dd8af89d99efcb4a8726dc8b755390434e46fc" + }, + "letsdo-candlelight-forge-2.0.5.jar": { + "jarName": "letsdo-candlelight-forge-2.0.5.jar", + "modId": "candlelight", + "version": "2.0.5", + "curseForgeHash": 3734629786, + "modrinthHash": "67b5560125db588cb1d87c042cc9dce9833861d7" + }, + "letsdo-farm_and_charm-forge-1.0.14.jar": { + "jarName": "letsdo-farm_and_charm-forge-1.0.14.jar", + "modId": "farm_and_charm", + "version": "1.0.14", + "curseForgeHash": 2838165625, + "modrinthHash": "4db017c18fff8356e1aa5f0e9c683f1af30bec2b" + }, + "letsdo-furniture-forge-1.0.4.jar": { + "jarName": "letsdo-furniture-forge-1.0.4.jar", + "modId": "furniture", + "version": "1.0.4", + "curseForgeHash": 2441938769, + "modrinthHash": "272cdaa252b23888ad7fae6959bdfe89317a35bd" + }, + "letsdo-herbalbrews-forge-1.0.12.jar": { + "jarName": "letsdo-herbalbrews-forge-1.0.12.jar", + "modId": "herbalbrews", + "version": "1.0.12", + "curseForgeHash": 2611086057, + "modrinthHash": "3de7feb383868a0db45351580d6ef5b05b776f16" + }, + "letsdo-meadow-forge-1.3.25.jar": { + "jarName": "letsdo-meadow-forge-1.3.25.jar", + "modId": "meadow", + "version": "1.3.25", + "curseForgeHash": 3645580272, + "modrinthHash": "da7d934ff35f03279bee6597362f30d2aea7462f" + }, + "letsdo-nethervinery-forge-1.2.19.jar": { + "jarName": "letsdo-nethervinery-forge-1.2.19.jar", + "modId": "nethervinery", + "version": "1.2.19", + "curseForgeHash": 3088291310, + "modrinthHash": "6df80983483698e392179d4eab3e75e4afdc22b7" + }, + "letsdo-vinery-forge-1.4.41.jar": { + "jarName": "letsdo-vinery-forge-1.4.41.jar", + "modId": "vinery", + "version": "1.4.41", + "curseForgeHash": 3539383664, + "modrinthHash": "68ed3fa9524bef601064f49f60a30423db2f8fdc" + }, + "letsdo-wildernature-forge-1.0.6.jar": { + "jarName": "letsdo-wildernature-forge-1.0.6.jar", + "modId": "wildernature", + "version": "1.0.6", + "curseForgeHash": 2328166172, + "modrinthHash": "815dee091892877bfdbb11b330ea2a304937b779" + }, + "libertyvillagers-2.0.0+forge+1.20.1.jar": { + "jarName": "libertyvillagers-2.0.0+forge+1.20.1.jar", + "modId": "libertyvillagers", + "version": "2.0.0+forge+1.20.1", + "curseForgeHash": 1712003149, + "modrinthHash": "e871b8087dfb7c287d0dc9baafb695941d73d809" + }, + "libIPN-forge-1.20-4.0.2.jar": { + "jarName": "libIPN-forge-1.20-4.0.2.jar", + "modId": "libipn", + "version": "4.0.2", + "curseForgeHash": 3322103168, + "modrinthHash": "3e7c7fcdc037a6ae3d9146e718d87fc83f88f6d5" + }, + "LibX-1.20.1-5.0.14.jar": { + "jarName": "LibX-1.20.1-5.0.14.jar", + "modId": "libx", + "version": "1.20.1-5.0.14", + "curseForgeHash": 1104941069, + "modrinthHash": "d75610b0c34626cea8b1155a47d28333cc1f58a2" + }, + "lightspeed-1.20.1-1.1.2hotfix.jar": { + "jarName": "lightspeed-1.20.1-1.1.2hotfix.jar", + "modId": "lightspeed", + "version": "1.20.1-1.1.2hotfix", + "curseForgeHash": 3681148281, + "modrinthHash": "9d9ac4e588d27bc51b33498172e95539d03f9381" + }, + "lionfishapi-2.4-Fix.jar": { + "jarName": "lionfishapi-2.4-Fix.jar", + "modId": "lionfishapi", + "version": "2.4-Fix", + "curseForgeHash": 3375534118, + "modrinthHash": "b198f38fb27dfc6db490b496d56aa1622d5a5b87" + }, + "lithostitched-forge-1.20.1-1.4.11.jar": { + "jarName": "lithostitched-forge-1.20.1-1.4.11.jar", + "modId": "lithostitched", + "version": "1.4.11", + "curseForgeHash": 940772176, + "modrinthHash": "d1a755de84ee5d8910ff1e65e815473056e93ece" + }, + "lmft-1.0.4+1.20.1-forge.jar": { + "jarName": "lmft-1.0.4+1.20.1-forge.jar", + "modId": "lmft", + "version": "1.0.4+1.20.1", + "curseForgeHash": 1956694745, + "modrinthHash": "e44a12eb51813b16faaab89b8073ec63c746c1b0" + }, + "Log-Begone-Forge-1.20.1-1.0.8.jar": { + "jarName": "Log-Begone-Forge-1.20.1-1.0.8.jar", + "modId": "logbegone", + "version": "1.0.8", + "curseForgeHash": 123853733, + "modrinthHash": "3b9f1c7fea5e0bdbc6f06429e147bd0a7c08663d" + }, + "LongerChatHistory-1.3-Forge.jar": { + "jarName": "LongerChatHistory-1.3-Forge.jar", + "modId": "longerchathistory", + "version": "1.3", + "curseForgeHash": 1497798873, + "modrinthHash": "717d1e68336519f97b7676322c98c9afe72651a0" + }, + "lootbundles-1.20.1-1.0.6.jar": { + "jarName": "lootbundles-1.20.1-1.0.6.jar", + "modId": "lootbundles", + "version": "1.20.1-1.0.6", + "curseForgeHash": 1608667373, + "modrinthHash": "27960df5ddb50e7e931ef64b4a47824083fff4f3" + }, + "lootr-forge-1.20-0.7.35.94.jar": { + "jarName": "lootr-forge-1.20-0.7.35.94.jar", + "modId": "lootr", + "version": "0.7.35.94", + "curseForgeHash": 1036440574, + "modrinthHash": "1ec77a7df8adbf3290a296bf25b8f99f37a60020" + }, + "majrusz-library-forge-1.20.1-7.0.8.jar": { + "jarName": "majrusz-library-forge-1.20.1-7.0.8.jar", + "modId": "majruszlibrary", + "version": "7.0.8", + "curseForgeHash": 2744375869, + "modrinthHash": "be0e1b5808206abcc2ff6a369ce0c2ba53968c55" + }, + "majruszs-difficulty-forge-1.20.1-1.9.10.jar": { + "jarName": "majruszs-difficulty-forge-1.20.1-1.9.10.jar", + "modId": "majruszsdifficulty", + "version": "1.9.10", + "curseForgeHash": 1868859216, + "modrinthHash": "18495da41285e8450d1b5fcd066816f6cf55f3a7" + }, + "majruszs-enchantments-forge-1.20.1-1.10.8.jar": { + "jarName": "majruszs-enchantments-forge-1.20.1-1.10.8.jar", + "modId": "majruszsenchantments", + "version": "1.10.8", + "curseForgeHash": 1349262555, + "modrinthHash": "f40859a5dbf2d98ebc3b5628678aa15a5bb8518a" + }, + "Mantle-1.20.1-1.11.95.jar": { + "jarName": "Mantle-1.20.1-1.11.95.jar", + "modId": "mantle", + "version": "1.11.95", + "curseForgeHash": 3506656992, + "modrinthHash": "c996d73b647357d87b2467482b82847cd60de2ac" + }, + "matc-1.6.0.jar": { + "jarName": "matc-1.6.0.jar", + "modId": "matc", + "version": "1.6.0", + "curseForgeHash": 3278335348, + "modrinthHash": "72939caf824d582106b6e06e12efb7bcf35bcd64" + }, + "MaxHealthFix-Forge-1.20.1-12.0.3.jar": { + "jarName": "MaxHealthFix-Forge-1.20.1-12.0.3.jar", + "modId": "maxhealthfix", + "version": "12.0.3", + "curseForgeHash": 1020227340, + "modrinthHash": "c4194bac838c5346708c70724ca4a095f89d6312" + }, + "mcjtylib-1.20-8.0.7.jar": { + "jarName": "mcjtylib-1.20-8.0.7.jar", + "modId": "mcjtylib", + "version": "1.20-8.0.7", + "curseForgeHash": 2441497196, + "modrinthHash": "3e50e0dafdbb0b1197dc7a958b86ca033abaca7d" + }, + "mcw-bridges-3.1.0-mc1.20.1forge.jar": { + "jarName": "mcw-bridges-3.1.0-mc1.20.1forge.jar", + "modId": "mcwbridges", + "version": "3.1.0", + "curseForgeHash": 3236722038, + "modrinthHash": "7a94bff9e9c2408c6c36e64d5c911e5759cddc10" + }, + "mcw-doors-1.1.2-mc1.20.1forge.jar": { + "jarName": "mcw-doors-1.1.2-mc1.20.1forge.jar", + "modId": "mcwdoors", + "version": "1.1.2", + "curseForgeHash": 50528805, + "modrinthHash": "731069f0a9c1377da0681415b6523e71439ae014" + }, + "mcw-furniture-3.4.1-mc1.20.1forge.jar": { + "jarName": "mcw-furniture-3.4.1-mc1.20.1forge.jar", + "modId": "mcwfurnitures", + "version": "3.4.1", + "curseForgeHash": 3002367686, + "modrinthHash": "c05189646bbde5c0d4486b93de0d707115f8445c" + }, + "mcw-holidays-1.1.2-mc1.20.1forge.jar": { + "jarName": "mcw-holidays-1.1.2-mc1.20.1forge.jar", + "modId": "mcwholidays", + "version": "1.1.2", + "curseForgeHash": 1543334407, + "modrinthHash": "dd125b79755ebd99aac3354b4670a5dd3c8086bd" + }, + "mcw-lights-1.1.5-mc1.20.1forge.jar": { + "jarName": "mcw-lights-1.1.5-mc1.20.1forge.jar", + "modId": "mcwlights", + "version": "1.1.5", + "curseForgeHash": 435653484, + "modrinthHash": "76dde38745ad436f2784f71939dc0941d7d51c6e" + }, + "mcw-mcwfences-1.2.1-mc1.20.1forge.jar": { + "jarName": "mcw-mcwfences-1.2.1-mc1.20.1forge.jar", + "modId": "mcwfences", + "version": "1.2.1", + "curseForgeHash": 2042722927, + "modrinthHash": "d24bc6e1ba7f04e058db019ae5ca3d10edd9510a" + }, + "mcw-mcwpaths-1.1.1-mc1.20.1forge.jar": { + "jarName": "mcw-mcwpaths-1.1.1-mc1.20.1forge.jar", + "modId": "mcwpaths", + "version": "1.1.1", + "curseForgeHash": 261300804, + "modrinthHash": "821e5f406afa53a5c1d3346a20efb0ec7be97997" + }, + "mcw-mcwstairs-1.0.2-mc1.20.1forge.jar": { + "jarName": "mcw-mcwstairs-1.0.2-mc1.20.1forge.jar", + "modId": "mcwstairs", + "version": "1.0.2", + "curseForgeHash": 3066463414, + "modrinthHash": "8f3a8271e43b53171c3a4d4827415bebd06775d9" + }, + "mcw-mcwwindows-2.4.2-mc1.20.1forge.jar": { + "jarName": "mcw-mcwwindows-2.4.2-mc1.20.1forge.jar", + "modId": "mcwwindows", + "version": "2.4.2", + "curseForgeHash": 850156298, + "modrinthHash": "214da89b2153d496343bde8626283975e358edbd" + }, + "mcw-paintings-1.0.5-1.20.1forge.jar": { + "jarName": "mcw-paintings-1.0.5-1.20.1forge.jar", + "modId": "mcwpaintings", + "version": "1.0.5", + "curseForgeHash": 1641446767, + "modrinthHash": "47455c48ff84c0ba42936a95a1bb3709689e24cf" + }, + "mcw-roofs-2.3.2-mc1.20.1forge.jar": { + "jarName": "mcw-roofs-2.3.2-mc1.20.1forge.jar", + "modId": "mcwroofs", + "version": "2.3.2", + "curseForgeHash": 2960892629, + "modrinthHash": "2b02beb2bd177aa695dc6fc030fc3bb230ca96b1" + }, + "mcw-trapdoors-1.1.5-mc1.20.1forge.jar": { + "jarName": "mcw-trapdoors-1.1.5-mc1.20.1forge.jar", + "modId": "mcwtrpdoors", + "version": "1.1.5", + "curseForgeHash": 3391452202, + "modrinthHash": "1b3b4b40041346b19bc9ab280b288a9f6b77b513" + }, + "mcwabnormals-1.20.1-1.5.jar": { + "jarName": "mcwabnormals-1.20.1-1.5.jar", + "modId": "mcwabnormals", + "version": "1.20.1-1.5", + "curseForgeHash": 1946788699, + "modrinthHash": "a20b057283aa01aa5706366f52d63df607811480" + }, + "mcwbiomesoplenty-1.20.1-1.5.jar": { + "jarName": "mcwbiomesoplenty-1.20.1-1.5.jar", + "modId": "mcwbiomesoplenty", + "version": "1.20.1-1.5", + "curseForgeHash": 1103290918, + "modrinthHash": "f7f4eecbaa6956c24e6c9c142447835104969cea" + }, + "mcwbyg-1.20.1-1.5.jar": { + "jarName": "mcwbyg-1.20.1-1.5.jar", + "modId": "mcwbyg", + "version": "1.20.1-1.5", + "curseForgeHash": 3601388421, + "modrinthHash": "b33445312ab4f2ef04eb1738d4500ff51829e136" + }, + "mcwquark-1.20.1-1.6.1.jar": { + "jarName": "mcwquark-1.20.1-1.6.1.jar", + "modId": "mcwquark", + "version": "1.20.1-1.6.1", + "curseForgeHash": 544857138, + "modrinthHash": "aa21e83867b990620935e11cd628e21b4dca348c" + }, + "Measurements-forge-1.20.1-2.0.1.jar": { + "jarName": "Measurements-forge-1.20.1-2.0.1.jar", + "modId": "measurements", + "version": "2.0.1", + "curseForgeHash": 230863047, + "modrinthHash": "8b98cf208b3b21f4996d86fc9c6960b192da77f7" + }, + "MEED-1.20.1-7.5.jar": { + "jarName": "MEED-1.20.1-7.5.jar", + "modId": "meed", + "version": "7.2.0", + "curseForgeHash": 396963999, + "modrinthHash": "de91288dc0a259c63715b1dfa21585a4a87e33af" + }, + "mekalus-mc1.20.1-1.8.0.1.jar": { + "jarName": "mekalus-mc1.20.1-1.8.0.1.jar", + "modId": "oculus", + "version": "1.8.0.1", + "curseForgeHash": 266349607, + "modrinthHash": "64cda2a07ae9a7d129e50f2319aa1d45fa9772c4" + }, + "Mekanism-1.20.1-10.4.16.80.jar": { + "jarName": "Mekanism-1.20.1-10.4.16.80.jar", + "modId": "mekanism", + "version": "10.4.16", + "curseForgeHash": 2493616045, + "modrinthHash": "b7f12ae710888b01746507a0aa8cb375f5897158" + }, + "MekanismGenerators-1.20.1-10.4.16.80.jar": { + "jarName": "MekanismGenerators-1.20.1-10.4.16.80.jar", + "modId": "mekanismgenerators", + "version": "10.4.16", + "curseForgeHash": 146659146, + "modrinthHash": "53fa707fd204ca1dd099a08995c2197145ff9a36" + }, + "melody_forge_1.0.3_MC_1.20.1-1.20.4.jar": { + "jarName": "melody_forge_1.0.3_MC_1.20.1-1.20.4.jar", + "modId": "melody", + "version": "1.0.2", + "curseForgeHash": 841420877, + "modrinthHash": "e0942d396a70c09038e6c2e5e1da6505178249b8" + }, + "minecolonies-1.20.1-1.1.1154.jar": { + "jarName": "minecolonies-1.20.1-1.1.1154.jar", + "modId": "minecolonies", + "version": "1.20.1-1.1.1154", + "curseForgeHash": 4084455729, + "modrinthHash": "7d3fbbc5e35e5238d9cfbaefeae0270e8b4b62d8" + }, + "MineColonies_Compatibility-1.20.1-2.104.jar": { + "jarName": "MineColonies_Compatibility-1.20.1-2.104.jar", + "modId": "minecolonies_compatibility", + "version": "2.104", + "curseForgeHash": 2594480277, + "modrinthHash": "f692b8a9fcab220d551d589cccfed27d7e75dcf5" + }, + "MineColonies_LetsDo-1.20.1-1.13.jar": { + "jarName": "MineColonies_LetsDo-1.20.1-1.13.jar", + "modId": "minecolonies_letsdo", + "version": "1.13", + "curseForgeHash": 2085555580, + "modrinthHash": "3cc8109284395bb0d14dadef7d1552607c82289a" + }, + "MineColonies_Tweaks-1.20.1-2.93-all.jar": { + "jarName": "MineColonies_Tweaks-1.20.1-2.93-all.jar", + "modId": "minecolonies_tweaks", + "version": "2.93", + "curseForgeHash": 3128742056, + "modrinthHash": "c1b0dcfff3e55e1f6fcf20484b89e9f3151c60d3" + }, + "mininggadgets-1.15.6.jar": { + "jarName": "mininggadgets-1.15.6.jar", + "modId": "mininggadgets", + "version": "1.15.6", + "curseForgeHash": 1136982280, + "modrinthHash": "79cfc6e0afc3ed3fc86bbda274ef3fccdc8260dd" + }, + "mobees-1.20.1-0.1.5.jar": { + "jarName": "mobees-1.20.1-0.1.5.jar", + "modId": "mobees", + "version": "0.1.5", + "curseForgeHash": 865179698, + "modrinthHash": "934ada91b88a9de8ab76adffcf8799e1c5a37811" + }, + "mobtimizations-forge-1.20.1-1.0.0.jar": { + "jarName": "mobtimizations-forge-1.20.1-1.0.0.jar", + "modId": "mobtimizations", + "version": "1.20.1-1.0.0", + "curseForgeHash": 3869691106, + "modrinthHash": "1e7de73072e0adc9f09494cd79a79b1db030c293" + }, + "modernfix-forge-5.25.2+mc1.20.1.jar": { + "jarName": "modernfix-forge-5.25.2+mc1.20.1.jar", + "modId": "modernfix", + "version": "5.25.2+mc1.20.1", + "curseForgeHash": 3074548209, + "modrinthHash": "4069534174e618393f0c14d9dc61ac27a04bb992" + }, + "modernworldcreation_forge_2.0.2_MC_1.20.1.jar": { + "jarName": "modernworldcreation_forge_2.0.2_MC_1.20.1.jar", + "modId": "modernworldcreation", + "version": "2.0.2", + "curseForgeHash": 1188134735, + "modrinthHash": "3168946d2cdfa583c7fc822be552faff54694222" + }, + "modonomicon-1.20.1-forge-1.79.2.jar": { + "jarName": "modonomicon-1.20.1-forge-1.79.2.jar", + "modId": "modonomicon", + "version": "1.79.2", + "curseForgeHash": 2761737060, + "modrinthHash": "9d55f629c8a9b0ea1912051fe04b16400c640944" + }, + "modular-routers-12.1.1+mc1.20.1.jar": { + "jarName": "modular-routers-12.1.1+mc1.20.1.jar", + "modId": "modularrouters", + "version": "12.1.1+mc1.20.1", + "curseForgeHash": 3942063405, + "modrinthHash": "037b801a55ca30952b98c427a77ac206cb1248c3" + }, + "moonlight-1.20-2.16.19-forge.jar": { + "jarName": "moonlight-1.20-2.16.19-forge.jar", + "modId": "moonlight", + "version": "1.20-2.16.19", + "curseForgeHash": 2861614006, + "modrinthHash": "de55e348bdf3a3ac7520fde157654d615967f9b1" + }, + "More Villager Trades 1.0.0 - 1.20.1.jar": { + "jarName": "More Villager Trades 1.0.0 - 1.20.1.jar", + "modId": "more_villager_trades", + "version": "1.0.0", + "curseForgeHash": 3690258113, + "modrinthHash": "5d249d314f6893da39aa372b7ce5f229323c7763" + }, + "More Wandering Trades 1.0.0 - 1.20.1.jar": { + "jarName": "More Wandering Trades 1.0.0 - 1.20.1.jar", + "modId": "more_wandering_trades", + "version": "1.0.0", + "curseForgeHash": 430306737, + "modrinthHash": "485000b16984877955c6691bbce2cabbacb2bde9" + }, + "moredragoneggs-4.0.jar": { + "jarName": "moredragoneggs-4.0.jar", + "modId": "moredragoneggs", + "version": "4.0", + "curseForgeHash": 3402123077, + "modrinthHash": "22122de407d0df09a0f36c580ed56c22faa52551" + }, + "MoreMekanismProcessing-1.20.1-4.4.jar": { + "jarName": "MoreMekanismProcessing-1.20.1-4.4.jar", + "modId": "moremekanismprocessing", + "version": "4.4", + "curseForgeHash": 3239386429, + "modrinthHash": "3747ce0a3dbe3704e364db209e4f39e03c88c28f" + }, + "moreoverlays-1.24.1-mc1.20.1-forge.jar": { + "jarName": "moreoverlays-1.24.1-mc1.20.1-forge.jar", + "modId": "moreoverlays", + "version": "1.24.1", + "curseForgeHash": 1634234225, + "modrinthHash": "f34bd1fde7a4b458493ddf464b4fb94c6108edf7" + }, + "morevillagers-forge-1.20.1-5.0.0.jar": { + "jarName": "morevillagers-forge-1.20.1-5.0.0.jar", + "modId": "morevillagers", + "version": "5.0.0", + "curseForgeHash": 3130635981, + "modrinthHash": "a6a22e3c7e6ca4a389ce72f82c90144f0a485cf5" + }, + "MouseTweaks-forge-mc1.20.1-2.25.1.jar": { + "jarName": "MouseTweaks-forge-mc1.20.1-2.25.1.jar", + "modId": "mousetweaks", + "version": "2.25.1", + "curseForgeHash": 3001740257, + "modrinthHash": "d751153e722a4e014691c83f39f5b07c6ec5333c" + }, + "multipiston-1.20-0.0.47-snapshot.jar": { + "jarName": "multipiston-1.20-0.0.47-snapshot.jar", + "modId": "multipiston", + "version": "1.20-0.0.47-snapshot", + "curseForgeHash": 1241393134, + "modrinthHash": "11b4ee209c6fba7991f25c50c0cd6376c1362dbf" + }, + "MyNethersDelight-1.20.1-0.1.8.jar": { + "jarName": "MyNethersDelight-1.20.1-0.1.8.jar", + "modId": "mynethersdelight", + "version": "1.20.1-1.7.5", + "curseForgeHash": 2898891119, + "modrinthHash": "b5b78ac524f17ba19242d7778c321ff10476eb9c" + }, + "MysticalAdaptations-1.20.1-1.0.1.jar": { + "jarName": "MysticalAdaptations-1.20.1-1.0.1.jar", + "modId": "mysticaladaptations", + "version": "1.20.1-1.0.1", + "curseForgeHash": 2930776260, + "modrinthHash": "1bc3c63ba8e1b3aea1fa0f3589dd215d246ac089" + }, + "MysticalAgradditions-1.20.1-7.0.12.jar": { + "jarName": "MysticalAgradditions-1.20.1-7.0.12.jar", + "modId": "mysticalagradditions", + "version": "7.0.12", + "curseForgeHash": 3659467713, + "modrinthHash": "b4fcc78796a6e1f637523298cf7b3fe7f1dd3ed9" + }, + "MysticalAgriculture-1.20.1-7.0.23.jar": { + "jarName": "MysticalAgriculture-1.20.1-7.0.23.jar", + "modId": "mysticalagriculture", + "version": "7.0.23", + "curseForgeHash": 66321020, + "modrinthHash": "fd242367e58ddd84558e97e4ff0a7c48bb817059" + }, + "mysticmonstrosityfixes-18.0.0.jar": { + "jarName": "mysticmonstrosityfixes-18.0.0.jar", + "modId": "mysticmonstrosityfixes", + "version": "18.0.0", + "curseForgeHash": 2357608930, + "modrinthHash": "3b5779d080f4935ffc8d25ce364bbc680c03cd0f" + }, + "MythicBotany-1.20.1-4.0.4.jar": { + "jarName": "MythicBotany-1.20.1-4.0.4.jar", + "modId": "mythicbotany", + "version": "1.20.1-4.0.4", + "curseForgeHash": 1631813257, + "modrinthHash": "b616c118d611459a0711931c51c9c4d41408abb4" + }, + "NastyMobs-1.20-1.0.12.jar": { + "jarName": "NastyMobs-1.20-1.0.12.jar", + "modId": "nasty", + "version": "1.0.12", + "curseForgeHash": 1693587371, + "modrinthHash": "f236014509936a3673c240f6b7445bd97c9295cf" + }, + "naturalist-5.0pre5+forge-1.20.1.jar": { + "jarName": "naturalist-5.0pre5+forge-1.20.1.jar", + "modId": "naturalist", + "version": "5.0pre5", + "curseForgeHash": 888228621, + "modrinthHash": "bc2c527dd52a1e6a92a3e34db1a88742e8e7d596" + }, + "NaturesAura-39.4.jar": { + "jarName": "NaturesAura-39.4.jar", + "modId": "naturesaura", + "version": "39.4", + "curseForgeHash": 2086622523, + "modrinthHash": "c0f6e2421088f06abf5c1be2f49f39639552b1d0" + }, + "NaturesCompass-1.20.1-1.11.2-forge.jar": { + "jarName": "NaturesCompass-1.20.1-1.11.2-forge.jar", + "modId": "naturescompass", + "version": "1.20.1-1.11.2-forge", + "curseForgeHash": 3701495044, + "modrinthHash": "31ae930cdbb34e8e05e1954cfb2fee3a3813e850" + }, + "netherportalfix-forge-1.20-13.0.1.jar": { + "jarName": "netherportalfix-forge-1.20-13.0.1.jar", + "modId": "netherportalfix", + "version": "13.0.1", + "curseForgeHash": 3930406358, + "modrinthHash": "b110e4590177475dcde70dd9dafd5257116ad9f8" + }, + "NightConfigFixes-v8.0.0-1.20.1-Forge.jar": { + "jarName": "NightConfigFixes-v8.0.0-1.20.1-Forge.jar", + "modId": "nightconfigfixes", + "version": "8.0.0", + "curseForgeHash": 3316370206, + "modrinthHash": "2de80b00fc76c2cc850512a2d7b9301282d79ce1" + }, + "no-report-button-forge-1.5.0.jar": { + "jarName": "no-report-button-forge-1.5.0.jar", + "modId": "noreportbutton", + "version": "1.5.0", + "curseForgeHash": 2308404376, + "modrinthHash": "d05c3ed9409e02cd5c0285bbcf54844505eccf37" + }, + "NoChatReports-FORGE-1.20.1-v2.2.2.jar": { + "jarName": "NoChatReports-FORGE-1.20.1-v2.2.2.jar", + "modId": "nochatreports", + "version": "1.20.1-v2.2.2", + "curseForgeHash": 393521612, + "modrinthHash": "069396e689ae887d065c8d61b7945e685fbcc65b" + }, + "noportals-1.0.3.jar": { + "jarName": "noportals-1.0.3.jar", + "modId": "noportals", + "version": "1.0.3", + "curseForgeHash": 630354107, + "modrinthHash": "c813fed42a9025c5e161869d745442749a463777" + }, + "nostartupmessages-1.0.1.jar": { + "jarName": "nostartupmessages-1.0.1.jar", + "modId": "nostartupmessages", + "version": "1.0.1", + "curseForgeHash": 849745109, + "modrinthHash": "f3c5a3cc7fa289b86213285ea9a8485a9d51d788" + }, + "notenoughanimations-forge-1.11.1-mc1.20.1.jar": { + "jarName": "notenoughanimations-forge-1.11.1-mc1.20.1.jar", + "modId": "notenoughanimations", + "version": "1.11.1", + "curseForgeHash": 1394524316, + "modrinthHash": "9aa8917d7c0a5311dc495da3c720434de49e0e24" + }, + "notenoughwands-1.20-6.0.2.jar": { + "jarName": "notenoughwands-1.20-6.0.2.jar", + "modId": "notenoughwands", + "version": "1.20-6.0.2", + "curseForgeHash": 2946646312, + "modrinthHash": "0107e6811d729ed451951683af1c3943c14646bf" + }, + "novillagerdm-1.20.1-5.0.0.jar": { + "jarName": "novillagerdm-1.20.1-5.0.0.jar", + "modId": "novillagerdm", + "version": "5.0.0", + "curseForgeHash": 3066673915, + "modrinthHash": "ff69fd8513b7eed4f20eb270838ce684add2706c" + }, + "Nullscape_1.20.x_v1.2.8.jar": { + "jarName": "Nullscape_1.20.x_v1.2.8.jar", + "modId": "nullscape", + "version": "1.2.8", + "curseForgeHash": 2335606410, + "modrinthHash": "e4afd980e788f1861d8a8263bc700312667df977" + }, + "nyfsspiders-forge-1.20.1-2.1.2.jar": { + "jarName": "nyfsspiders-forge-1.20.1-2.1.2.jar", + "modId": "nyfsspiders", + "version": "2.1.2", + "curseForgeHash": 41477965, + "modrinthHash": "ba2947447be921dc8ab904402cacbc4cd746dcbb" + }, + "occultism-1.20.1-1.155.0.jar": { + "jarName": "occultism-1.20.1-1.155.0.jar", + "modId": "occultism", + "version": "1.155.0", + "curseForgeHash": 1667529240, + "modrinthHash": "9529a8b5b0afa9e2e85ea887e7a9036916b03d21" + }, + "oceansdelight-1.0.2-1.20.jar": { + "jarName": "oceansdelight-1.0.2-1.20.jar", + "modId": "oceansdelight", + "version": "1.0.2-1.20", + "curseForgeHash": 1513167691, + "modrinthHash": "32af985453bde77bfa56d59cdfb11cab5662c8e1" + }, + "OctoLib-FORGE-0.5.0.1+1.20.1.jar": { + "jarName": "OctoLib-FORGE-0.5.0.1+1.20.1.jar", + "modId": "octolib", + "version": "0.5.0.1", + "curseForgeHash": 2265070471, + "modrinthHash": "9eab28baff36942e1c924489e34753df10f40208" + }, + "Oh-The-Biomes-Weve-Gone-Forge-1.7.4.jar": { + "jarName": "Oh-The-Biomes-Weve-Gone-Forge-1.7.4.jar", + "modId": "biomeswevegone", + "version": "1.7.4", + "curseForgeHash": 3226300198, + "modrinthHash": "168e2c7f7105bc578e05f0a347856438b5d9f4a6" + }, + "Oh-The-Trees-Youll-Grow-forge-1.20.1-1.4.2.jar": { + "jarName": "Oh-The-Trees-Youll-Grow-forge-1.20.1-1.4.2.jar", + "modId": "ohthetreesyoullgrow", + "version": "1.4.2", + "curseForgeHash": 1866446875, + "modrinthHash": "215d11414c4f9c425efd46b01c4dd1ff8698c217" + }, + "okzoomer-forge-1.20-3.0.1.jar": { + "jarName": "okzoomer-forge-1.20-3.0.1.jar", + "modId": "okzoomer", + "version": "3.0.1", + "curseForgeHash": 1528846358, + "modrinthHash": "6d4ca82545806195782e88196b5f21a6fbdbecb6" + }, + "opolisutilities-1.20.1-2.11.4.jar": { + "jarName": "opolisutilities-1.20.1-2.11.4.jar", + "modId": "opolisutilities", + "version": "1.20.1-2.11.4", + "curseForgeHash": 2549125205, + "modrinthHash": "107fb23bb78bb0c54e3c042be51762df3e8684f7" + }, + "OverflowingBars-v8.0.1-1.20.1-Forge.jar": { + "jarName": "OverflowingBars-v8.0.1-1.20.1-Forge.jar", + "modId": "overflowingbars", + "version": "8.0.1", + "curseForgeHash": 1976454581, + "modrinthHash": "047ac47549ae0a21b05f70d74bcf436ee0221eef" + }, + "packetfixer-3.3.1-1.18-1.20.4-merged.jar": { + "jarName": "packetfixer-3.3.1-1.18-1.20.4-merged.jar", + "modId": "packetfixer", + "version": "3.3.1", + "curseForgeHash": 2235595709, + "modrinthHash": "0bef29023c8cadb2934d78a8b0066b49d4460974" + }, + "Paintings-forge-1.20.1-11.0.0.2.jar": { + "jarName": "Paintings-forge-1.20.1-11.0.0.2.jar", + "modId": "paintings", + "version": "11.0.0.2", + "curseForgeHash": 679010450, + "modrinthHash": "7616deeb511132de1c071a47bd6811b8e7a8d7e0" + }, + "Paraglider-forge-20.1.3.jar": { + "jarName": "Paraglider-forge-20.1.3.jar", + "modId": "paraglider", + "version": "20.1.3", + "curseForgeHash": 4171088984, + "modrinthHash": "51fdf94686fc847515e6de8a6c9fd4dab3466ea5" + }, + "particle_core-0.2.6+1.20.1+forge.jar": { + "jarName": "particle_core-0.2.6+1.20.1+forge.jar", + "modId": "particle_core", + "version": "0.2.6+1.20.1+forge", + "curseForgeHash": 4189650687, + "modrinthHash": "91f302ab9b85016aeb3a9a0e85b80650a1d2e984" + }, + "PassiveSkillTree-1.20.1-BETA-0.7.3a-all.jar": { + "jarName": "PassiveSkillTree-1.20.1-BETA-0.7.3a-all.jar", + "modId": "skilltree", + "version": "0.7.3a", + "curseForgeHash": 1796474250, + "modrinthHash": "e04bf1dccc78319e30818c9e9b6c3b2483a7a437" + }, + "passiveskilltreeadditions-1.1.2.jar": { + "jarName": "passiveskilltreeadditions-1.1.2.jar", + "modId": "passiveskilltreeadditions", + "version": "1.1.2", + "curseForgeHash": 796011107, + "modrinthHash": "f388a16e9c7b7ee673492cba2787367e532ff636" + }, + "Patchouli-1.20.1-84.1-FORGE.jar": { + "jarName": "Patchouli-1.20.1-84.1-FORGE.jar", + "modId": "patchouli", + "version": "1.20.1-84.1-FORGE", + "curseForgeHash": 3571975239, + "modrinthHash": "e91d2e2f251375d647d592b670ea6f310c2554eb" + }, + "Paxi-1.20-Forge-4.0.jar": { + "jarName": "Paxi-1.20-Forge-4.0.jar", + "modId": "paxi", + "version": "1.20-Forge-4.0", + "curseForgeHash": 2589375317, + "modrinthHash": "a3a7008e07a27b3c831af7e4c82fbbc10a4da328" + }, + "PickleTweaks-1.20.1-8.0.6.jar": { + "jarName": "PickleTweaks-1.20.1-8.0.6.jar", + "modId": "pickletweaks", + "version": "8.0.6", + "curseForgeHash": 1319664602, + "modrinthHash": "7db62aea5e2b03b3611d9174bb93bb3b56a0e971" + }, + "PickUpNotifier-v8.0.0-1.20.1-Forge.jar": { + "jarName": "PickUpNotifier-v8.0.0-1.20.1-Forge.jar", + "modId": "pickupnotifier", + "version": "8.0.0", + "curseForgeHash": 1083059147, + "modrinthHash": "378cc9730d1f11cd4c50add96263baccacdb4942" + }, + "Ping-Wheel-1.12.0-forge-1.20.1.jar": { + "jarName": "Ping-Wheel-1.12.0-forge-1.20.1.jar", + "modId": "pingwheel", + "version": "1.12.0", + "curseForgeHash": 3218231824, + "modrinthHash": "295637cddcc338a7741cd7891929b1ff99706da2" + }, + "pipez-forge-1.20.1-1.2.26.jar": { + "jarName": "pipez-forge-1.20.1-1.2.26.jar", + "modId": "pipez", + "version": "1.20.1-1.2.26", + "curseForgeHash": 2816103325, + "modrinthHash": "1c32e2fff406f1e8ee6b0689eca257f6bc28e4c7" + }, + "Placebo-1.20.1-8.6.3.jar": { + "jarName": "Placebo-1.20.1-8.6.3.jar", + "modId": "placebo", + "version": "8.6.3", + "curseForgeHash": 3174429337, + "modrinthHash": "e85f53de2e582a79ce25ff1df1e7b5b5fc08440f" + }, + "pneumaticcraft-repressurized-6.0.22+mc1.20.1.jar": { + "jarName": "pneumaticcraft-repressurized-6.0.22+mc1.20.1.jar", + "modId": "pneumaticcraft", + "version": "6.0.22+mc1.20.1", + "curseForgeHash": 2025326866, + "modrinthHash": "cbe2d3c5df7c2770ac59eb6f02489d8917627c03" + }, + "polyeng-forge-0.1.1-1.20.1.jar": { + "jarName": "polyeng-forge-0.1.1-1.20.1.jar", + "modId": "polyeng", + "version": "0.1.1-1.20.1", + "curseForgeHash": 1862397942, + "modrinthHash": "4617a4de40edda9a480ea0c33ba03e97d4a3ae1a" + }, + "polymorph-forge-0.49.10+1.20.1.jar": { + "jarName": "polymorph-forge-0.49.10+1.20.1.jar", + "modId": "polymorph", + "version": "0.49.10+1.20.1", + "curseForgeHash": 3179981898, + "modrinthHash": "e4afd6f512cc06311320357ed974cee586e031c3" + }, + "prefab-1.10.0.1.jar": { + "jarName": "prefab-1.10.0.1.jar", + "modId": "prefab", + "version": "1.10.0.1", + "curseForgeHash": 4189876791, + "modrinthHash": "a1b04571bda501cb059dbb14d79eaa466b2a5e15" + }, + "prettybeaches-forge-1.20-11.0.1.jar": { + "jarName": "prettybeaches-forge-1.20-11.0.1.jar", + "modId": "prettybeaches", + "version": "11.0.1", + "curseForgeHash": 2425756633, + "modrinthHash": "30903d8b3341608e237bda61d668252b6fa6bce4" + }, + "Prism-1.20.1-forge-1.0.5.jar": { + "jarName": "Prism-1.20.1-forge-1.0.5.jar", + "modId": "prism", + "version": "1.0.5", + "curseForgeHash": 1812222466, + "modrinthHash": "bcb4bbb1052f49ed4fe6e7d5d7f91f68d45c3fe3" + }, + "projectvibrantjourneys-1.20.1-6.2.0.jar": { + "jarName": "projectvibrantjourneys-1.20.1-6.2.0.jar", + "modId": "projectvibrantjourneys", + "version": "1.20.1-6.2.0", + "curseForgeHash": 1108644726, + "modrinthHash": "b7af434368a43d35104848ab80dc16c8b524958e" + }, + "PuzzlesLib-v8.1.33-1.20.1-Forge.jar": { + "jarName": "PuzzlesLib-v8.1.33-1.20.1-Forge.jar", + "modId": "puzzleslib", + "version": "8.1.33", + "curseForgeHash": 3151848185, + "modrinthHash": "285b7c7616971338ccbe0022c9ea0f8ad3036aaf" + }, + "Quark-4.0-462.jar": { + "jarName": "Quark-4.0-462.jar", + "modId": "quark", + "version": "4.0-462", + "curseForgeHash": 4061553554, + "modrinthHash": "9b0fb82995622a0070c00827c698c43b49d9d14b" + }, + "quark_delight_1.0.0_forge_1.20.1.jar": { + "jarName": "quark_delight_1.0.0_forge_1.20.1.jar", + "modId": "quarkdelight", + "version": "1.0.0", + "curseForgeHash": 2365785991, + "modrinthHash": "06e0c415a201f80969fdf8ff0eb1f07c8c7a5751" + }, + "quickstack-1.20.1-1.jar": { + "jarName": "quickstack-1.20.1-1.jar", + "modId": "quickstack", + "version": "1.20.1-1", + "curseForgeHash": 1436660289, + "modrinthHash": "4236786bdc4d9415e6d45236800fd8a6113ec2a1" + }, + "raccompat-1.20.1-0.1.3.jar": { + "jarName": "raccompat-1.20.1-0.1.3.jar", + "modId": "raccompat", + "version": "0.1.3", + "curseForgeHash": 1366248117, + "modrinthHash": "3e7613883e6f356fedb8b91bf9bce8ef40a4c857" + }, + "Raided-1.20.1-0.1.6.jar": { + "jarName": "Raided-1.20.1-0.1.6.jar", + "modId": "raided", + "version": "0.1.6", + "curseForgeHash": 3463425124, + "modrinthHash": "5a4a06aad79930b3b6b0192575ae3da132bbb929" + }, + "ramcompat-1.20.1-0.1.4.jar": { + "jarName": "ramcompat-1.20.1-0.1.4.jar", + "modId": "ramcompat", + "version": "0.1.4", + "curseForgeHash": 3835055730, + "modrinthHash": "6475d3d9eed8ede0a2e9356aacc6a81bf713de2a" + }, + "rangedpumps-1.1.0.jar": { + "jarName": "rangedpumps-1.1.0.jar", + "modId": "rangedpumps", + "version": "1.1.0", + "curseForgeHash": 3695537277, + "modrinthHash": "3e297ddd6fbcb86eef7efbb62026732d982fa8bd" + }, + "rarcompat-1.20.1-0.5.jar": { + "jarName": "rarcompat-1.20.1-0.5.jar", + "modId": "rarcompat", + "version": "0.5", + "curseForgeHash": 3336012854, + "modrinthHash": "a6d83f41f0bff392fec5db7e392d57d8b0c818e0" + }, + "rebind_narrator-1.20.1-forge-2025.12.23.jar": { + "jarName": "rebind_narrator-1.20.1-forge-2025.12.23.jar", + "modId": "rebind_narrator", + "version": "2025.12.23", + "curseForgeHash": 1167828803, + "modrinthHash": "3fcdb8a5d4967511cdcc6c3d66e264261a203aa4" + }, + "rebornstorage-1.20.1-5.0.7.jar": { + "jarName": "rebornstorage-1.20.1-5.0.7.jar", + "modId": "rebornstorage", + "version": "5.0.7", + "curseForgeHash": 3495727082, + "modrinthHash": "51d8387240b7c2ebca45937126cdaa0c3d682e17" + }, + "rechiseled-1.1.6-forge-mc1.20.jar": { + "jarName": "rechiseled-1.1.6-forge-mc1.20.jar", + "modId": "rechiseled", + "version": "1.1.6", + "curseForgeHash": 2324078007, + "modrinthHash": "cacec8ace7987d33e76873bf574704aea7564a4e" + }, + "redirected-forge-1.0.0-1.20.1.jar": { + "jarName": "redirected-forge-1.0.0-1.20.1.jar", + "modId": "redirected", + "version": "1.0.0", + "curseForgeHash": 1715840423, + "modrinthHash": "804cb20635bec6d708617fb22e6bd62bed27a7a7" + }, + "redstonepen-1.20.1-neoforge-1.3.33.jar": { + "jarName": "redstonepen-1.20.1-neoforge-1.3.33.jar", + "modId": "redstonepen", + "version": "1.3.33", + "curseForgeHash": 3334231929, + "modrinthHash": "54318a6cc3fbe4fcb829daac215e3a5834696cdd" + }, + "refinedcooking-4.0.0.jar": { + "jarName": "refinedcooking-4.0.0.jar", + "modId": "refinedcooking", + "version": "4.0.0", + "curseForgeHash": 1279563632, + "modrinthHash": "a67202a1ea133c8a8f154a4498ff7a6bc7629f8e" + }, + "refinedpolymorph-0.1.1-1.20.1.jar": { + "jarName": "refinedpolymorph-0.1.1-1.20.1.jar", + "modId": "refinedpolymorph", + "version": "0.1.1-1.20.1", + "curseForgeHash": 2414262943, + "modrinthHash": "6268974fcb84a01d52b70a78232c2bd6f2a450f8" + }, + "refinedstorage-1.12.4.jar": { + "jarName": "refinedstorage-1.12.4.jar", + "modId": "refinedstorage", + "version": "1.12.4", + "curseForgeHash": 2357723047, + "modrinthHash": "ff9e83c81344d0bfe9e0bb53c6df00c7e0a39cf5" + }, + "refinedstorageaddons-0.10.0.jar": { + "jarName": "refinedstorageaddons-0.10.0.jar", + "modId": "refinedstorageaddons", + "version": "0.10.0", + "curseForgeHash": 2072148048, + "modrinthHash": "829c7270a3fad543e441a18b5b9f27fd30824086" + }, + "refurbished_furniture-forge-1.20.1-1.0.20.jar": { + "jarName": "refurbished_furniture-forge-1.20.1-1.0.20.jar", + "modId": "refurbished_furniture", + "version": "1.0.20", + "curseForgeHash": 2067768782, + "modrinthHash": "ffb68135b88bdbb25224378c76daf922c3f4c322" + }, + "relics-1.20.1-0.8.0.11.jar": { + "jarName": "relics-1.20.1-0.8.0.11.jar", + "modId": "relics", + "version": "0.8.0.11", + "curseForgeHash": 3684028936, + "modrinthHash": "7cae606158a0ddcecd0c68c1d82a29ad89da6ce2" + }, + "reliquary-1.20.1-2.0.55.1326.jar": { + "jarName": "reliquary-1.20.1-2.0.55.1326.jar", + "modId": "reliquary", + "version": "2.0.55.1326", + "curseForgeHash": 201138875, + "modrinthHash": "7519bbf049234c365dacfbf70f7ec0b18d5f29da" + }, + "repurposed_structures-7.1.19+1.20.1-forge.jar": { + "jarName": "repurposed_structures-7.1.19+1.20.1-forge.jar", + "modId": "repurposed_structures", + "version": "7.1.19+1.20.1-forge", + "curseForgeHash": 530060868, + "modrinthHash": "8605ad00f483bb6d6ac0afc5b1c7b07a5cd5c476" + }, + "resourcefulconfig-forge-1.20.1-2.1.3.jar": { + "jarName": "resourcefulconfig-forge-1.20.1-2.1.3.jar", + "modId": "resourcefulconfig", + "version": "2.1.3", + "curseForgeHash": 2554742015, + "modrinthHash": "597d40920dcc935f963842c817dcc4901862ab14" + }, + "resourcefullib-forge-1.20.1-2.1.29.jar": { + "jarName": "resourcefullib-forge-1.20.1-2.1.29.jar", + "modId": "resourcefullib", + "version": "2.1.29", + "curseForgeHash": 4227743239, + "modrinthHash": "6fc590a7c56a720fec57e290cbb0a106efbb3ffa" + }, + "ResourcePackOverrides-v8.0.3-1.20.1-Forge.jar": { + "jarName": "ResourcePackOverrides-v8.0.3-1.20.1-Forge.jar", + "modId": "resourcepackoverrides", + "version": "8.0.3", + "curseForgeHash": 1924006328, + "modrinthHash": "fa3d92461bceb63439d33ab634e894d4b342599c" + }, + "rftoolsbase-1.20-5.0.6.jar": { + "jarName": "rftoolsbase-1.20-5.0.6.jar", + "modId": "rftoolsbase", + "version": "1.20-5.0.6", + "curseForgeHash": 44285320, + "modrinthHash": "255c0ab024a5e94deffece648b8aa1237f88c05b" + }, + "rftoolsbuilder-1.20-6.0.8.jar": { + "jarName": "rftoolsbuilder-1.20-6.0.8.jar", + "modId": "rftoolsbuilder", + "version": "1.20-6.0.8", + "curseForgeHash": 513514871, + "modrinthHash": "cadf134d25f2e05c8d05961a5cbbce2c003de9cd" + }, + "rftoolscontrol-1.20-7.0.3.jar": { + "jarName": "rftoolscontrol-1.20-7.0.3.jar", + "modId": "rftoolscontrol", + "version": "1.20-7.0.3", + "curseForgeHash": 1970022193, + "modrinthHash": "69c4cc728950225154c03af8814347a90d660ab3" + }, + "rftoolspower-1.20-6.0.2.jar": { + "jarName": "rftoolspower-1.20-6.0.2.jar", + "modId": "rftoolspower", + "version": "1.20-6.0.2", + "curseForgeHash": 3686373352, + "modrinthHash": "928e3528e941383c29574a17f8acef7a8110fe0c" + }, + "rftoolsstorage-1.20-5.0.3.jar": { + "jarName": "rftoolsstorage-1.20-5.0.3.jar", + "modId": "rftoolsstorage", + "version": "1.20-5.0.3", + "curseForgeHash": 1082529755, + "modrinthHash": "d0d93b857720a4f5165ae0c6c9c37b6cbad4a631" + }, + "rftoolsutility-1.20-6.0.6.jar": { + "jarName": "rftoolsutility-1.20-6.0.6.jar", + "modId": "rftoolsutility", + "version": "1.20-6.0.6", + "curseForgeHash": 1963288469, + "modrinthHash": "b5691e6cfec16a6ef8a7cfd195636f99419e1b61" + }, + "rhino-forge-2001.2.3-build.10.jar": { + "jarName": "rhino-forge-2001.2.3-build.10.jar", + "modId": "rhino", + "version": "2001.2.3-build.10", + "curseForgeHash": 1432081092, + "modrinthHash": "c83c9b719a6bab33fbd2b3f2f680eb3adbfc1aa1" + }, + "rpc-1.1.2+1.20.1-forge.jar": { + "jarName": "rpc-1.1.2+1.20.1-forge.jar", + "modId": "rpc", + "version": "1.1.2", + "curseForgeHash": 3860008368, + "modrinthHash": "19e88579617d599eb4d9389980c4323395be196e" + }, + "RSInfinityBooster-1.20.1-1.0+41.jar": { + "jarName": "RSInfinityBooster-1.20.1-1.0+41.jar", + "modId": "rsinfinitybooster", + "version": "1.20.1-1.0+41", + "curseForgeHash": 1919665588, + "modrinthHash": "fa5d1ae8a115998067e6805c9748cbce64ab960a" + }, + "rsrequestify-1.20.1-2.3.3.jar": { + "jarName": "rsrequestify-1.20.1-2.3.3.jar", + "modId": "rsrequestify", + "version": "2.3.3", + "curseForgeHash": 1752869679, + "modrinthHash": "37366658f7e22f061f9adae8675f518512d15858" + }, + "saturn-mc1.20.1-0.1.3.jar": { + "jarName": "saturn-mc1.20.1-0.1.3.jar", + "modId": "saturn", + "version": "0.1.3", + "curseForgeHash": 1313951597, + "modrinthHash": "ad93f99d46714c46aaa6a4409aeca506e9fcac99" + }, + "Searchables-forge-1.20.1-1.0.3.jar": { + "jarName": "Searchables-forge-1.20.1-1.0.3.jar", + "modId": "searchables", + "version": "1.0.3", + "curseForgeHash": 3171281796, + "modrinthHash": "ed5a23ec30c90fd06b3f1d8140614028e1fafaee" + }, + "seasonhud-forge-1.20.1-1.13.16.jar": { + "jarName": "seasonhud-forge-1.20.1-1.13.16.jar", + "modId": "seasonhud", + "version": "1.13.16", + "curseForgeHash": 2661527333, + "modrinthHash": "8702a279e62350826e02a3627eb8f327eb5a82b7" + }, + "sebastrnlib-4.0.0.jar": { + "jarName": "sebastrnlib-4.0.0.jar", + "modId": "sebastrnlib", + "version": "4.0.0", + "curseForgeHash": 3930982305, + "modrinthHash": "9cfed6776ff5ccda300dd0cee610dddb68c5fa15" + }, + "separatedleaves-2.6.0-forge-1.20.4.jar": { + "jarName": "separatedleaves-2.6.0-forge-1.20.4.jar", + "modId": "separatedleaves", + "version": "2.6.0", + "curseForgeHash": 821490409, + "modrinthHash": "55272591938acc2879279823f973e10f08ae6663" + }, + "SereneSeasons-forge-1.20.1-9.1.0.2.jar": { + "jarName": "SereneSeasons-forge-1.20.1-9.1.0.2.jar", + "modId": "sereneseasons", + "version": "9.1.0.2", + "curseForgeHash": 3988457144, + "modrinthHash": "706d3eaf79ce5b33a30f3ad1aaa88a2a4483abf6" + }, + "sereneseasonsfix-1.20.2-1.1.1.0.jar": { + "jarName": "sereneseasonsfix-1.20.2-1.1.1.0.jar", + "modId": "sereneseasonsfix", + "version": "1.1.1.0", + "curseForgeHash": 3474390785, + "modrinthHash": "a3eac70c904b86ca496665e081dd555e01d409e8" + }, + "serializationisbad-1.5.jar": { + "jarName": "serializationisbad-1.5.jar", + "curseForgeHash": 2639762045, + "modrinthHash": "38a2714ddaf8b2a844ba4007a665371039db2bac" + }, + "ServerConfigCleaner-1.1-1.17.1.jar": { + "jarName": "ServerConfigCleaner-1.1-1.17.1.jar", + "modId": "serverconfigcleaner", + "version": "1.0", + "curseForgeHash": 783505742, + "modrinthHash": "df1108943e408ee805b9e25a5fd99a918b45813d" + }, + "serverconfigupdater-4.0.2.jar": { + "jarName": "serverconfigupdater-4.0.2.jar", + "modId": "serverconfigupdater", + "version": "4.0.2", + "curseForgeHash": 2237725843, + "modrinthHash": "0c54df6e2916e6bd0743e5650df303cdedff885b" + }, + "servercore-forge-1.5.2+1.20.1.jar": { + "jarName": "servercore-forge-1.5.2+1.20.1.jar", + "modId": "servercore", + "version": "1.5.2+1.20.1", + "curseForgeHash": 3446581747, + "modrinthHash": "75c6418edc76da55ec89f417e8c43c9d1873fceb" + }, + "ServerTabInfo-1.20-1.3.8.jar": { + "jarName": "ServerTabInfo-1.20-1.3.8.jar", + "modId": "servertabinfo", + "version": "1.3.8", + "curseForgeHash": 2580356858, + "modrinthHash": "4a7f87be6a109a4bcc503228534a64d87678dbc0" + }, + "shetiphiancore-forge-1.20.1-1.5.jar": { + "jarName": "shetiphiancore-forge-1.20.1-1.5.jar", + "modId": "shetiphiancore", + "version": "1.20.1-1.5", + "curseForgeHash": 1700915937, + "modrinthHash": "14057b5970e04af3dfa07690b3fc85b628f2184d" + }, + "Shrink-1.20.1-1.4.5.jar": { + "jarName": "Shrink-1.20.1-1.4.5.jar", + "modId": "shrink", + "version": "1.4.5", + "curseForgeHash": 1065816328, + "modrinthHash": "f14fb093062f193d758cd90acffae0ce1c461dc2" + }, + "shut_up_gl_error-forge-2.0.0+1.20.1.jar": { + "jarName": "shut_up_gl_error-forge-2.0.0+1.20.1.jar", + "modId": "shut_up_gl_error", + "version": "2.0.0+1.20.1", + "curseForgeHash": 1793963872, + "modrinthHash": "77d3a15f84c953156c14dff48f9e19fa48ad7c1d" + }, + "SimpleRPC-4.0.5.jar": { + "jarName": "SimpleRPC-4.0.5.jar", + "modId": "simplerpc", + "version": "4.0.5", + "curseForgeHash": 2346985665, + "modrinthHash": "6ec6f18ac26b82101e5d78974a541f3dff6ca1c4" + }, + "simplylight-1.20.1-1.4.6-build.50.jar": { + "jarName": "simplylight-1.20.1-1.4.6-build.50.jar", + "modId": "simplylight", + "version": "1.20.1-1.4.6-build.50", + "curseForgeHash": 2677835492, + "modrinthHash": "cfd851ffd2c3b451a96a19207dc6e084c1dfec73" + }, + "skinlayers3d-forge-1.10.1-mc1.20.1.jar": { + "jarName": "skinlayers3d-forge-1.10.1-mc1.20.1.jar", + "modId": "skinlayers3d", + "version": "1.10.1", + "curseForgeHash": 262111728, + "modrinthHash": "896aed39ccc8ecf13936b0b60c9fd55a92a18a6b" + }, + "SkyVillages-1.0.4-1.19.2-1.20.1-forge-release.jar": { + "jarName": "SkyVillages-1.0.4-1.19.2-1.20.1-forge-release.jar", + "modId": "skyvillages", + "version": "1.0.4", + "curseForgeHash": 4064246031, + "modrinthHash": "3f7b0e8594556cd861c3c3bd470f5f41da250784" + }, + "smallships-forge-1.20.1-2.0.0-b1.4.jar": { + "jarName": "smallships-forge-1.20.1-2.0.0-b1.4.jar", + "modId": "smallships", + "version": "2.0.0-b1.4", + "curseForgeHash": 3450945761, + "modrinthHash": "9998ddc8a278e0b87ab642d289ae2a1e3dbebef6" + }, + "SmartBrainLib-forge-1.20.1-1.15.jar": { + "jarName": "SmartBrainLib-forge-1.20.1-1.15.jar", + "modId": "smartbrainlib", + "version": "1.15", + "curseForgeHash": 2122967881, + "modrinthHash": "d278b6ca36075c4d097677345a25751f9aeed3c1" + }, + "smarterfarmers-1.20-2.1.2.jar": { + "jarName": "smarterfarmers-1.20-2.1.2.jar", + "modId": "smarterfarmers", + "version": "1.20-2.1.2", + "curseForgeHash": 555316449, + "modrinthHash": "03bae1d509d5a9644bf2ef955fefb2e6b78fc861" + }, + "smoothchunk-1.20.1-4.1.jar": { + "jarName": "smoothchunk-1.20.1-4.1.jar", + "modId": "smoothchunk", + "version": "1.20.1-4.1", + "curseForgeHash": 2007224494, + "modrinthHash": "3e142e4a2e12db1c9a3777879cc021aff49da088" + }, + "Snad-20.1.0.jar": { + "jarName": "Snad-20.1.0.jar", + "modId": "snad", + "version": "20.1.0", + "curseForgeHash": 1391578814, + "modrinthHash": "84c931e90770cd7ae90a4f2986f0fd3805c60a34" + }, + "snowundertrees-1.20.1-1.4.12.jar": { + "jarName": "snowundertrees-1.20.1-1.4.12.jar", + "modId": "snowundertrees", + "version": "1.4.12", + "curseForgeHash": 165537190, + "modrinthHash": "0fc0abf8969c10ebf127cb18a81a7420f489f138" + }, + "sodiumdynamiclights-forge-1.0.10-1.20.1.jar": { + "jarName": "sodiumdynamiclights-forge-1.0.10-1.20.1.jar", + "modId": "sodiumdynamiclights", + "version": "1.0.9", + "curseForgeHash": 4061843185, + "modrinthHash": "d27524e85bed0f0af83c03be46f9ca3eb02a1be9" + }, + "sodiumoptionsapi-forge-1.0.10-1.20.1.jar": { + "jarName": "sodiumoptionsapi-forge-1.0.10-1.20.1.jar", + "modId": "sodiumoptionsapi", + "version": "1.0.10", + "curseForgeHash": 2197810606, + "modrinthHash": "7529fbf938787ed13a251cbf40936f8c29ec4b6c" + }, + "sodiumoptionsmodcompat-forge-1.0.0-1.20.1.jar": { + "jarName": "sodiumoptionsmodcompat-forge-1.0.0-1.20.1.jar", + "modId": "sodiumoptionsmodcompat", + "version": "1.0.0", + "curseForgeHash": 1062903518, + "modrinthHash": "214e96498ac1c840e3eee553fc69ba721e4f9a64" + }, + "SoLOnion_FORGE_v1.4.5_mc1.20.1.jar": { + "jarName": "SoLOnion_FORGE_v1.4.5_mc1.20.1.jar", + "modId": "solonion", + "version": "1.4.5", + "curseForgeHash": 2423313053, + "modrinthHash": "1c8a22b8e1da93feb9a1c0e5a2c57dc805db9df7" + }, + "sophisticatedbackpacks-1.20.1-3.24.16.1471.jar": { + "jarName": "sophisticatedbackpacks-1.20.1-3.24.16.1471.jar", + "modId": "sophisticatedbackpacks", + "version": "3.24.16.1471", + "curseForgeHash": 538481828, + "modrinthHash": "d477ec3578d23c87ff3c4ceec42608b8cbd73f77" + }, + "sophisticatedbackpackscreateintegration-1.20.1-0.1.5.30.jar": { + "jarName": "sophisticatedbackpackscreateintegration-1.20.1-0.1.5.30.jar", + "modId": "sophisticatedbackpackscreateintegration", + "version": "0.1.5.30", + "curseForgeHash": 2371828629, + "modrinthHash": "5597cce58d4c3529574c12ef6d39932c600bcdc1" + }, + "sophisticatedcore-1.20.1-1.2.115.1333.jar": { + "jarName": "sophisticatedcore-1.20.1-1.2.115.1333.jar", + "modId": "sophisticatedcore", + "version": "1.2.115.1333", + "curseForgeHash": 108812079, + "modrinthHash": "5de1250247496abefe93f88717a6c81aa55d2a4c" + }, + "sophisticatedstorage-1.20.1-1.4.17.1406.jar": { + "jarName": "sophisticatedstorage-1.20.1-1.4.17.1406.jar", + "modId": "sophisticatedstorage", + "version": "1.4.17.1406", + "curseForgeHash": 1255965603, + "modrinthHash": "e006e041b486c309cf33faac908383efd8744c4f" + }, + "sophisticatedstoragecreateintegration-1.20.1-0.1.14.55.jar": { + "jarName": "sophisticatedstoragecreateintegration-1.20.1-0.1.14.55.jar", + "modId": "sophisticatedstoragecreateintegration", + "version": "0.1.14.55", + "curseForgeHash": 3548738783, + "modrinthHash": "361046e6e27a4a60a2558a15356036e5bd7723b6" + }, + "sophisticatedstorageinmotion-1.20.1-0.10.25.156.jar": { + "jarName": "sophisticatedstorageinmotion-1.20.1-0.10.25.156.jar", + "modId": "sophisticatedstorageinmotion", + "version": "0.10.25.156", + "curseForgeHash": 977179293, + "modrinthHash": "1e585ae028fe057358c3fcc160c27a4c8cbc8821" + }, + "sparsestructuresreforged-1.20.1-0.0.1.jar": { + "jarName": "sparsestructuresreforged-1.20.1-0.0.1.jar", + "modId": "sparsestructuresreforged", + "version": "1.20.1-0.0.1", + "curseForgeHash": 4065351442, + "modrinthHash": "06ff9088a1ffce096b4826337cd571c5517a3a8b" + }, + "StorageDrawers-forge-1.20.1-12.14.3.jar": { + "jarName": "StorageDrawers-forge-1.20.1-12.14.3.jar", + "modId": "storagedrawers", + "version": "12.14.3", + "curseForgeHash": 1405447780, + "modrinthHash": "afca74c6e18883632e74e15a549004bfca245a90" + }, + "StorageDrawersExtras-1.20.1-12.1.0.jar": { + "jarName": "StorageDrawersExtras-1.20.1-12.1.0.jar", + "modId": "storagedrawersextra", + "version": "12.1.0", + "curseForgeHash": 2653650583, + "modrinthHash": "f195afd9d9010b9e7f4da314eb2d44f75c8af671" + }, + "strainers-1.20.1-1.7.4.jar": { + "jarName": "strainers-1.20.1-1.7.4.jar", + "modId": "strainers", + "version": "1.20.1-1.7.4", + "curseForgeHash": 4067933701, + "modrinthHash": "fe5a53e46a410c55a9aa9c20dbfde2854dde260d" + }, + "strongerfarmland-1.20.1-1.1.1.jar": { + "jarName": "strongerfarmland-1.20.1-1.1.1.jar", + "modId": "strongfarmland", + "version": "1.1.1", + "curseForgeHash": 4172755184, + "modrinthHash": "68032f49de97a1a511e9ed3edeef4a6c7f95105c" + }, + "structure_gel-1.20.1-2.16.2.jar": { + "jarName": "structure_gel-1.20.1-2.16.2.jar", + "modId": "structure_gel", + "version": "2.16.2", + "curseForgeHash": 504700493, + "modrinthHash": "ec8c59d2a69eca3249a8da673f572b40b6d59895" + }, + "structure_layout_optimizer-forge-1.0.11.jar": { + "jarName": "structure_layout_optimizer-forge-1.0.11.jar", + "modId": "structure_layout_optimizer", + "version": "1.0.11", + "curseForgeHash": 315474361, + "modrinthHash": "c2f2d42c987a611c6a14769ec02099e3439dc0f3" + }, + "StructureCompass-1.20.1-2.2.0.jar": { + "jarName": "StructureCompass-1.20.1-2.2.0.jar", + "modId": "structurecompass", + "version": "2.2.0", + "curseForgeHash": 3606793408, + "modrinthHash": "1050dc8d1f0881806b881f652fdef8d2f7207668" + }, + "structureessentials-1.20.1-4.8.jar": { + "jarName": "structureessentials-1.20.1-4.8.jar", + "modId": "structureessentials", + "version": "1.20.1-4.8", + "curseForgeHash": 4108207651, + "modrinthHash": "1f94d509a6c25fa85b748d3cc3015bbbb977a948" + }, + "structurize-1.20.1-1.0.793-snapshot.jar": { + "jarName": "structurize-1.20.1-1.0.793-snapshot.jar", + "modId": "structurize", + "version": "1.20.1-1.0.793-snapshot", + "curseForgeHash": 175407067, + "modrinthHash": "b67e87b62675bbdef22f48c8405b52015e7c75ff" + }, + "stylecolonies-1.20.1-1.15.48.jar": { + "jarName": "stylecolonies-1.20.1-1.15.48.jar", + "modId": "stylecolonies", + "version": "1.20.1-1.15.48", + "curseForgeHash": 3873765355, + "modrinthHash": "531685dd53b6200e034c1ca3ca34c25c92435620" + }, + "StylishEffects-v8.0.2-1.20.1-Forge.jar": { + "jarName": "StylishEffects-v8.0.2-1.20.1-Forge.jar", + "modId": "stylisheffects", + "version": "8.0.2", + "curseForgeHash": 1489066515, + "modrinthHash": "90f812020dcbbd854d4e3bab25237250f2e5f84e" + }, + "SuggestionProviderFix-1.20.1-1.0.0.jar": { + "jarName": "SuggestionProviderFix-1.20.1-1.0.0.jar", + "modId": "suggestionproviderfix", + "version": "1.20.1-1.0.0", + "curseForgeHash": 3630635312, + "modrinthHash": "7d9a74cce4109782f092b701b1d8135fab8c8ce8" + }, + "supermartijn642configlib-1.1.8-forge-mc1.20.jar": { + "jarName": "supermartijn642configlib-1.1.8-forge-mc1.20.jar", + "modId": "supermartijn642configlib", + "version": "1.1.8", + "curseForgeHash": 3016368264, + "modrinthHash": "f80f9eed728966adcfbcc848633e789645057281" + }, + "supermartijn642corelib-1.1.18-forge-mc1.20.1.jar": { + "jarName": "supermartijn642corelib-1.1.18-forge-mc1.20.1.jar", + "modId": "supermartijn642corelib", + "version": "1.1.18", + "curseForgeHash": 4078642907, + "modrinthHash": "d37e1148b512c67cee704635b4f07d1f9ea8c31c" + }, + "supplementaries-1.20-3.1.41.jar": { + "jarName": "supplementaries-1.20-3.1.41.jar", + "modId": "supplementaries", + "version": "1.20-3.1.41", + "curseForgeHash": 1016895938, + "modrinthHash": "9ab9dd5ffed81cbb547facf2849920af99bf96c3" + }, + "suppsquared-1.20-1.1.28.jar": { + "jarName": "suppsquared-1.20-1.1.28.jar", + "modId": "suppsquared", + "version": "1.20-1.1.28", + "curseForgeHash": 3696326942, + "modrinthHash": "fce110da725de7754d524d0fb61aed1bd7dac448" + }, + "sushigocrafting-1.20.1-0.5.3.jar": { + "jarName": "sushigocrafting-1.20.1-0.5.3.jar", + "modId": "sushigocrafting", + "version": "0.5.3", + "curseForgeHash": 3961570715, + "modrinthHash": "abd15442389827d9196c2dc703a62cbe0a2f1090" + }, + "swplanets-forge-1.20.1-1.4.6.1.jar": { + "jarName": "swplanets-forge-1.20.1-1.4.6.1.jar", + "modId": "swplanets", + "version": "1.4.4", + "curseForgeHash": 3860153099, + "modrinthHash": "957abe8b00f3a46e7f16588244ea9e69493d6d02" + }, + "syncfix-0.0.4.jar": { + "jarName": "syncfix-0.0.4.jar", + "modId": "sync_fix", + "version": "0.0.4", + "curseForgeHash": 730235826, + "modrinthHash": "9bd56b3c02eeacfcd50e743e8083385500c32400" + }, + "TCIntegrations-1.20.1-2.0.25.17.jar": { + "jarName": "TCIntegrations-1.20.1-2.0.25.17.jar", + "modId": "tcintegrations", + "version": "2.0.25.17", + "curseForgeHash": 4110757323, + "modrinthHash": "71cd2d7f0fbc9dc2d2b66d48b35bbf4d87871c49" + }, + "tconjei-1.20.1-1.5.1.jar": { + "jarName": "tconjei-1.20.1-1.5.1.jar", + "modId": "tconjei", + "version": "1.5.1", + "curseForgeHash": 3176535884, + "modrinthHash": "66f0c2598bb2653bb58e9793b79442ace3a31e30" + }, + "TConstruct-1.20.1-3.11.0.148.jar": { + "jarName": "TConstruct-1.20.1-3.11.0.148.jar", + "modId": "tconstruct", + "version": "3.11.0.148", + "curseForgeHash": 1211285478, + "modrinthHash": "95d252248011babf7580cd65322cfceb255d4dc3" + }, + "temporalapi-1.6.7.jar": { + "jarName": "temporalapi-1.6.7.jar", + "modId": "temporalapi", + "version": "1.6.7", + "curseForgeHash": 4001230168, + "modrinthHash": "ad7e62754b33f930ecc4270475fe3b9b78eb70e3" + }, + "TerraBlender-forge-1.20.1-3.0.1.10.jar": { + "jarName": "TerraBlender-forge-1.20.1-3.0.1.10.jar", + "modId": "terrablender", + "version": "3.0.1.10", + "curseForgeHash": 921691151, + "modrinthHash": "3bd99fb59e8b06b04e78b5153790c1e08b2be5dc" + }, + "Terralith_1.20.x_v2.5.4.jar": { + "jarName": "Terralith_1.20.x_v2.5.4.jar", + "modId": "terralith", + "version": "2.5.4", + "curseForgeHash": 1222598727, + "modrinthHash": "79e1409b8db4ce86df9d6d6730f09c4bd8860a30" + }, + "the_bumblezone-7.9.7+1.20.1-forge.jar": { + "jarName": "the_bumblezone-7.9.7+1.20.1-forge.jar", + "modId": "the_bumblezone", + "version": "7.9.7+1.20.1-forge", + "curseForgeHash": 2246977879, + "modrinthHash": "408cc87db35f0bbb752d010be093249e3ce30e44" + }, + "The_Graveyard_3.1_(FORGE)_for_1.20.1.jar": { + "jarName": "The_Graveyard_3.1_(FORGE)_for_1.20.1.jar", + "modId": "graveyard", + "version": "3.1", + "curseForgeHash": 617006471, + "modrinthHash": "11ae4c94aa94b38b78cf9b901dad4612b679f8ac" + }, + "The_Undergarden-1.20.1-0.8.14.jar": { + "jarName": "The_Undergarden-1.20.1-0.8.14.jar", + "modId": "undergarden", + "version": "0.8.14", + "curseForgeHash": 1819346941, + "modrinthHash": "d823f6da5ea81ee09df8038dc5645986b184a451" + }, + "thermal_cultivation-1.20.1-11.0.1.24.jar": { + "jarName": "thermal_cultivation-1.20.1-11.0.1.24.jar", + "modId": "thermal_cultivation", + "version": "11.0.1", + "curseForgeHash": 404709720, + "modrinthHash": "1973b5142aedca44aefa66d2406643e7d00205c7" + }, + "thermal_dynamics-1.20.1-11.0.1.23.jar": { + "jarName": "thermal_dynamics-1.20.1-11.0.1.23.jar", + "modId": "thermal_dynamics", + "version": "11.0.1", + "curseForgeHash": 2431474114, + "modrinthHash": "7a9b3691dfca81e52d3e34738c6bc0a98b58bf93" + }, + "thermal_expansion-1.20.1-11.0.1.29.jar": { + "jarName": "thermal_expansion-1.20.1-11.0.1.29.jar", + "modId": "thermal_expansion", + "version": "11.0.1", + "curseForgeHash": 3774115469, + "modrinthHash": "c79fe5b922653d109cdcee45f4bca24c86daf6c0" + }, + "thermal_foundation-1.20.1-11.0.6.70.jar": { + "jarName": "thermal_foundation-1.20.1-11.0.6.70.jar", + "modId": "thermal_foundation", + "version": "11.0.6", + "curseForgeHash": 2161569538, + "modrinthHash": "7c1fbd79c9bda7478560faa886eaadf0dd8d181f" + }, + "thermal_innovation-1.20.1-11.0.1.23.jar": { + "jarName": "thermal_innovation-1.20.1-11.0.1.23.jar", + "modId": "thermal_innovation", + "version": "11.0.1", + "curseForgeHash": 1823920333, + "modrinthHash": "5c6881416ff4fb116d05f4a48acf12b30f10af82" + }, + "thermal_integration-1.20.1-11.0.1.27.jar": { + "jarName": "thermal_integration-1.20.1-11.0.1.27.jar", + "modId": "thermal_integration", + "version": "11.0.1", + "curseForgeHash": 3150558073, + "modrinthHash": "8d6ecb5e6c8b7dc0a95eeaba012c6bcd1b75e77d" + }, + "thermal_locomotion-1.20.1-11.0.1.19.jar": { + "jarName": "thermal_locomotion-1.20.1-11.0.1.19.jar", + "modId": "thermal_locomotion", + "version": "11.0.1", + "curseForgeHash": 168620138, + "modrinthHash": "f39c3b75c4a34bc838c1abcc1ba88a8e724b11ec" + }, + "THEUNDEADREVAMPED_1.9M_1.20.1.jar": { + "jarName": "THEUNDEADREVAMPED_1.9M_1.20.1.jar", + "modId": "undead_revamp2", + "version": "1.0.1", + "curseForgeHash": 1188939492, + "modrinthHash": "362c8874a7899a7eec9c1e108020d01ffd58b7eb" + }, + "time-in-a-bottle-4.0.4-mc1.20.1.jar": { + "jarName": "time-in-a-bottle-4.0.4-mc1.20.1.jar", + "modId": "tiab", + "version": "4.0.4-mc1.20.1", + "curseForgeHash": 1703249646, + "modrinthHash": "25a1aef5ed1984104835bcfb5d03027d32ce856b" + }, + "TipTheScales-forge-1.20.1-9.0.0.1.jar": { + "jarName": "TipTheScales-forge-1.20.1-9.0.0.1.jar", + "modId": "tipthescales", + "version": "9.0.0.1", + "curseForgeHash": 206809867, + "modrinthHash": "fce3cbb3b72fa2b805b4097d4d63d9b8fb896a9e" + }, + "titanium-1.20.1-3.8.32.jar": { + "jarName": "titanium-1.20.1-3.8.32.jar", + "modId": "titanium", + "version": "3.8.32", + "curseForgeHash": 921711792, + "modrinthHash": "4672c64a8019e81a4a6c8239f20661d5edbd5da1" + }, + "ToastControl-1.20.1-8.0.3.jar": { + "jarName": "ToastControl-1.20.1-8.0.3.jar", + "modId": "toastcontrol", + "version": "8.0.3", + "curseForgeHash": 2054440897, + "modrinthHash": "e9ef48672f01b076ea3b8c7c5e6a139c2491a67c" + }, + "tombstone-1.20.1-9.0.9.jar": { + "jarName": "tombstone-1.20.1-9.0.9.jar", + "modId": "tombstone", + "version": "9.0.9", + "curseForgeHash": 4192848824, + "modrinthHash": "24d376e3f0aed78aa38d8010e097be856220fc3c" + }, + "tomeofblood-1.20.1-0.4.4-all.jar": { + "jarName": "tomeofblood-1.20.1-0.4.4-all.jar", + "modId": "tomeofblood", + "version": "0.4.4", + "curseForgeHash": 4271555680, + "modrinthHash": "f903ce85902a87b3d38466f5d5bf4b4654a20bc6" + }, + "toms_storage-1.20-1.7.1.jar": { + "jarName": "toms_storage-1.20-1.7.1.jar", + "modId": "toms_storage", + "version": "1.7.1", + "curseForgeHash": 793745760, + "modrinthHash": "8b70aed9e35ad78fdc2f9fcb94a29dc64ba8d757" + }, + "toms_trading_network-1.20-0.3.1.jar": { + "jarName": "toms_trading_network-1.20-0.3.1.jar", + "modId": "toms_trading_network", + "version": "0.3.1", + "curseForgeHash": 24298672, + "modrinthHash": "1d643fa8915032807d658c55056d738cbe5da20e" + }, + "toofast-1.20-0.4.3.5.jar": { + "jarName": "toofast-1.20-0.4.3.5.jar", + "modId": "toofast", + "version": "0.4.3.5", + "curseForgeHash": 165753123, + "modrinthHash": "a6163b39827b483fb2976c916d99fce6cbf247a9" + }, + "ToolBelt-1.20.1-1.20.02.jar": { + "jarName": "ToolBelt-1.20.1-1.20.02.jar", + "modId": "toolbelt", + "version": "1.20.02", + "curseForgeHash": 3460520715, + "modrinthHash": "3e4e2d2e3ee9486de4c6b64bcf8f25d87d55fc92" + }, + "ToolStats-Forge-1.20.1-16.0.9.jar": { + "jarName": "ToolStats-Forge-1.20.1-16.0.9.jar", + "modId": "toolstats", + "version": "16.0.9", + "curseForgeHash": 571919565, + "modrinthHash": "8d3b590f6b16a149d19e406571e5a6a33db30074" + }, + "torchmaster-20.1.9.jar": { + "jarName": "torchmaster-20.1.9.jar", + "modId": "torchmaster", + "version": "20.1.9", + "curseForgeHash": 1441746516, + "modrinthHash": "9a7f4ffdfe0dfe0a8071ac6501e52b1b4e208758" + }, + "totw_additions-1.3.1-1.20.x-forge.jar": { + "jarName": "totw_additions-1.3.1-1.20.x-forge.jar", + "modId": "totw_additions", + "version": "1.3.1", + "curseForgeHash": 872450312, + "modrinthHash": "0473e5e041bf9b2925be16834d30a0ed75cb551b" + }, + "totw_modded-forge-1.20.1-1.0.6.jar": { + "jarName": "totw_modded-forge-1.20.1-1.0.6.jar", + "modId": "totw_modded", + "version": "1.0.6", + "curseForgeHash": 3625746178, + "modrinthHash": "72d92991bd2ee954653b70d4080091e1ca379002" + }, + "Towers of the Wild Modded - Extra Towers 1.20.1 - 1.21(.1) 1.0.8.jar": { + "jarName": "Towers of the Wild Modded - Extra Towers 1.20.1 - 1.21(.1) 1.0.8.jar", + "modId": "mr_towers_ofthewildmoddedextratowers", + "version": "1.0.8", + "curseForgeHash": 1720933038, + "modrinthHash": "0a255f4f915a6e21c25d336440f5d0725acf5467" + }, + "towntalk-1.20.1-1.1.0.jar": { + "jarName": "towntalk-1.20.1-1.1.0.jar", + "modId": "towntalk", + "version": "1.1.0", + "curseForgeHash": 464681538, + "modrinthHash": "03e6488b9e762888d1d187d5cf73a60695b63c52" + }, + "trading_floor-forge-1.20.1-2.0.5.jar": { + "jarName": "trading_floor-forge-1.20.1-2.0.5.jar", + "modId": "trading_floor", + "version": "2.0.5", + "curseForgeHash": 1195395991, + "modrinthHash": "073fe2c4b902975332190f16160ec418494f641a" + }, + "TradingPost-v8.0.2-1.20.1-Forge.jar": { + "jarName": "TradingPost-v8.0.2-1.20.1-Forge.jar", + "modId": "tradingpost", + "version": "8.0.2", + "curseForgeHash": 942342802, + "modrinthHash": "b5cfd0afd134d118124fb12f5e605574938ddffd" + }, + "transparent-forge-8.0.1+1.20.1.jar": { + "jarName": "transparent-forge-8.0.1+1.20.1.jar", + "modId": "transparent", + "version": "8.0.1+1.20.1", + "curseForgeHash": 3730664513, + "modrinthHash": "8a8e2f2206459828f986a5e353424ed10f25081a" + }, + "trashcans-1.0.18b-forge-mc1.20.jar": { + "jarName": "trashcans-1.0.18b-forge-mc1.20.jar", + "modId": "trashcans", + "version": "1.0.18b", + "curseForgeHash": 257456827, + "modrinthHash": "4bc991b861a981921d06b731368239ce6ea571d3" + }, + "trashslot-forge-1.20.1-15.1.3.jar": { + "jarName": "trashslot-forge-1.20.1-15.1.3.jar", + "modId": "trashslot", + "version": "15.1.3", + "curseForgeHash": 327495488, + "modrinthHash": "16fa6a3e069a1ca53752b55d79bef87b463f2e60" + }, + "treasuredistance-1.20-1.2.jar": { + "jarName": "treasuredistance-1.20-1.2.jar", + "modId": "treasuredistance", + "version": "1.20-1.2", + "curseForgeHash": 636825256, + "modrinthHash": "736d49f14ee48422f6209807c5285e787355d785" + }, + "twilight_forest_final_boss-2.0.2+4.3.1893+1.20.1.jar": { + "jarName": "twilight_forest_final_boss-2.0.2+4.3.1893+1.20.1.jar", + "modId": "twilight_forest_final_boss", + "version": "2.0.2", + "curseForgeHash": 1882687209, + "modrinthHash": "02042cb27f77a2b8f55b0b3362f813501fbd2658" + }, + "TwilightCaveFix-1.0.0.jar": { + "jarName": "TwilightCaveFix-1.0.0.jar", + "modId": "twilightfixes", + "version": "1.0.0", + "curseForgeHash": 2610667961, + "modrinthHash": "b29635e4f8413cf5f0ef24c884377dcb5e0ca9dc" + }, + "twilightdelight-2.0.17.jar": { + "jarName": "twilightdelight-2.0.17.jar", + "modId": "twilightdelight", + "version": "2.0.17", + "curseForgeHash": 3145484038, + "modrinthHash": "8fee2ecc50a8ae5f71bfb0e0230ac594634c64da" + }, + "twilightforest-1.20.1-4.3.2508-universal.jar": { + "jarName": "twilightforest-1.20.1-4.3.2508-universal.jar", + "modId": "twilightforest", + "version": "4.3.2508", + "curseForgeHash": 3280984966, + "modrinthHash": "fa3b506a45d3e9c465551cd533fd50c899496e9f" + }, + "txnilib-forge-1.0.24-1.20.1.jar": { + "jarName": "txnilib-forge-1.0.24-1.20.1.jar", + "modId": "txnilib", + "version": "1.0.24", + "curseForgeHash": 1205222699, + "modrinthHash": "a1e16b7d61f0f16a162d429ee1eab9b4e3eeb9ef" + }, + "undergardendelight-1.1.2-forge-1.20.1.jar": { + "jarName": "undergardendelight-1.1.2-forge-1.20.1.jar", + "modId": "undergardendelight", + "version": "1.1.2", + "curseForgeHash": 705587993, + "modrinthHash": "2daeeeedb2251ef8202d68b586072e8262d4bee7" + }, + "unifyeverything-1.20.1-1.0.2.9.jar": { + "jarName": "unifyeverything-1.20.1-1.0.2.9.jar", + "modId": "unifyeverything", + "version": "1.0.2.9", + "curseForgeHash": 1866400951, + "modrinthHash": "9756781358351f03410a98ec3584cd731589c282" + }, + "upgrade_aquatic-1.20.1-6.0.3.jar": { + "jarName": "upgrade_aquatic-1.20.1-6.0.3.jar", + "modId": "upgrade_aquatic", + "version": "6.0.3", + "curseForgeHash": 3590089434, + "modrinthHash": "8745e0f1c1371fe5c028aa7397e4de1a0c4220f6" + }, + "valhelsia_core-forge-1.20.1-1.1.2.jar": { + "jarName": "valhelsia_core-forge-1.20.1-1.1.2.jar", + "modId": "valhelsia_core", + "version": "1.1.2", + "curseForgeHash": 3501322756, + "modrinthHash": "5e88feef805d15ffbe3c0918f53d6ed213a7dc6a" + }, + "villagernames-1.20.1-8.2.jar": { + "jarName": "villagernames-1.20.1-8.2.jar", + "modId": "villagernames", + "version": "8.2", + "curseForgeHash": 3705955661, + "modrinthHash": "249a964cc0f21c5c4dc339f4b2221eeebd6e1b4b" + }, + "VillagersPlus_3.1_(FORGE)_for_1.20.1.jar": { + "jarName": "VillagersPlus_3.1_(FORGE)_for_1.20.1.jar", + "modId": "villagersplus", + "version": "3.1", + "curseForgeHash": 829195885, + "modrinthHash": "062d0d77120a1d76605657ce4ec1ec364851a112" + }, + "VisualWorkbench-v8.0.1-1.20.1-Forge.jar": { + "jarName": "VisualWorkbench-v8.0.1-1.20.1-Forge.jar", + "modId": "visualworkbench", + "version": "8.0.1", + "curseForgeHash": 2699356434, + "modrinthHash": "563804910a7ebb1082c1eedca363b16e2c572459" + }, + "watut-forge-1.20.1-1.2.3.jar": { + "jarName": "watut-forge-1.20.1-1.2.3.jar", + "modId": "watut", + "version": "1.20.1-1.2.3", + "curseForgeHash": 3519258904, + "modrinthHash": "d376debf1f96f37dbedf56919baeb7da2dcef9ab" + }, + "waystones-forge-1.20.1-14.1.17.jar": { + "jarName": "waystones-forge-1.20.1-14.1.17.jar", + "modId": "waystones", + "version": "14.1.17", + "curseForgeHash": 2179640189, + "modrinthHash": "0572e124fa1af248b5b978d7c615fb31629103e5" + }, + "wda-questline-1.20.1-1.0.0.jar": { + "jarName": "wda-questline-1.20.1-1.0.0.jar", + "modId": "wda_questline", + "version": "1.1.0", + "curseForgeHash": 2600442701, + "modrinthHash": "707e8b4dd8976634d3c6eee99dec542b4c82fcdf" + }, + "weather2-1.20.1-2.8.3.jar": { + "jarName": "weather2-1.20.1-2.8.3.jar", + "modId": "weather2", + "version": "1.20.1-2.8.3", + "curseForgeHash": 336607239, + "modrinthHash": "4ec7a372945874dd734a20fa61574f08d2b6763a" + }, + "wfc-1.4.1-1.20.1-forge.jar": { + "jarName": "wfc-1.4.1-1.20.1-forge.jar", + "modId": "wfc", + "version": "1.4.0", + "curseForgeHash": 3194423046, + "modrinthHash": "a59c06ce0e7f3b6e29fd425d4b5379fce3555381" + }, + "wirelesschargers-1.0.10-forge-mc1.20.4.jar": { + "jarName": "wirelesschargers-1.0.10-forge-mc1.20.4.jar", + "modId": "wirelesschargers", + "version": "1.0.10", + "curseForgeHash": 2071123159, + "modrinthHash": "a0291477907c8a8ac90cf884d5dff2962c44afc8" + }, + "WitherSkeletonTweaks-1.20.1-9.1.0.jar": { + "jarName": "WitherSkeletonTweaks-1.20.1-9.1.0.jar", + "modId": "wstweaks", + "version": "9.1.0", + "curseForgeHash": 2736596712, + "modrinthHash": "e5c31395e10d9e858ca1fde42d35113945bfb658" + }, + "woot-revived-20.1.1.7.jar": { + "jarName": "woot-revived-20.1.1.7.jar", + "modId": "woot_revived", + "version": "20.1.1.7", + "curseForgeHash": 334181816, + "modrinthHash": "ce32fa979263bf6ff39d622dbcd746352347621f" + }, + "xenon-0.3.31+mc1.20.1.jar": { + "jarName": "xenon-0.3.31+mc1.20.1.jar", + "modId": "xenon", + "version": "0.3.31", + "curseForgeHash": 2118394053, + "modrinthHash": "93e7c3938f88dbd24591412033572f42f90d3cb4" + }, + "xnet-1.20-6.1.6.jar": { + "jarName": "xnet-1.20-6.1.6.jar", + "modId": "xnet", + "version": "1.20-6.1.6", + "curseForgeHash": 2010299816, + "modrinthHash": "9e0f612a08e1211010cbef71b95846989042fe2c" + }, + "xnetgases-1.20.1-5.1.4.jar": { + "jarName": "xnetgases-1.20.1-5.1.4.jar", + "modId": "xnetgases", + "version": "5.1.4", + "curseForgeHash": 153626574, + "modrinthHash": "7a686d07aeab7d89c876a9e6f90f53514f43a107" + }, + "YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.jar": { + "jarName": "YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.jar", + "modId": "yeetusexperimentus", + "version": "2.3.1-build.6+mc1.20.1", + "curseForgeHash": 1963019301, + "modrinthHash": "6efdaf5d213f779e51aa84631a5f06a306351e75" + }, + "YungsApi-1.20-Forge-4.0.6.jar": { + "jarName": "YungsApi-1.20-Forge-4.0.6.jar", + "modId": "yungsapi", + "version": "1.20-Forge-4.0.6", + "curseForgeHash": 2072489450, + "modrinthHash": "af584b690f5646c6032002b58abc4591beed3833" + }, + "YungsBetterDesertTemples-1.20-Forge-3.0.3.jar": { + "jarName": "YungsBetterDesertTemples-1.20-Forge-3.0.3.jar", + "modId": "betterdeserttemples", + "version": "1.20-Forge-3.0.3", + "curseForgeHash": 3061133685, + "modrinthHash": "31b386b2dbaa4933e0a10ccdfb25f56da16931a6" + }, + "YungsBetterDungeons-1.20-Forge-4.0.4.jar": { + "jarName": "YungsBetterDungeons-1.20-Forge-4.0.4.jar", + "modId": "betterdungeons", + "version": "1.20-Forge-4.0.4", + "curseForgeHash": 1320004755, + "modrinthHash": "67a9e1c2ff126ab54cea8e0709d178915243039e" + }, + "YungsBetterJungleTemples-1.20-Forge-2.0.5.jar": { + "jarName": "YungsBetterJungleTemples-1.20-Forge-2.0.5.jar", + "modId": "betterjungletemples", + "version": "1.20-Forge-2.0.5", + "curseForgeHash": 2549372144, + "modrinthHash": "0b3c8556983895fea980247bb4d437ca535e7259" + }, + "YungsBetterMineshafts-1.20-Forge-4.0.4.jar": { + "jarName": "YungsBetterMineshafts-1.20-Forge-4.0.4.jar", + "modId": "bettermineshafts", + "version": "1.20-Forge-4.0.4", + "curseForgeHash": 1016555382, + "modrinthHash": "e2cbc574807a994bb9610184eb4bbfe29a6c0774" + }, + "YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar": { + "jarName": "YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar", + "modId": "betteroceanmonuments", + "version": "1.20-Forge-3.0.4", + "curseForgeHash": 1334321869, + "modrinthHash": "d8e74ed19903752a97ed0e1d2b1a8bf378bc252f" + }, + "YungsBetterStrongholds-1.20-Forge-4.0.3.jar": { + "jarName": "YungsBetterStrongholds-1.20-Forge-4.0.3.jar", + "modId": "betterstrongholds", + "version": "1.20-Forge-4.0.3", + "curseForgeHash": 3427826798, + "modrinthHash": "3730238c56edca4bb5b2238e1314aec572ced385" + }, + "YungsBetterWitchHuts-1.20-Forge-3.0.3.jar": { + "jarName": "YungsBetterWitchHuts-1.20-Forge-3.0.3.jar", + "modId": "betterwitchhuts", + "version": "1.20-Forge-3.0.3", + "curseForgeHash": 1089403503, + "modrinthHash": "71fee574f920c6b05004f100ba07e9b8d5844169" + }, + "YungsBridges-1.20-Forge-4.0.3.jar": { + "jarName": "YungsBridges-1.20-Forge-4.0.3.jar", + "modId": "yungsbridges", + "version": "1.20-Forge-4.0.3", + "curseForgeHash": 2453817392, + "modrinthHash": "88467fe87b95e6cf7a432822033cf74dd8586254" + }, + "YungsCaveBiomes-1.20.1-Forge-2.0.5.jar": { + "jarName": "YungsCaveBiomes-1.20.1-Forge-2.0.5.jar", + "modId": "yungscavebiomes", + "version": "1.20.1-Forge-2.0.5", + "curseForgeHash": 2133725597, + "modrinthHash": "c0a57a7d5a0cea0297f82a482490fc1e7933695f" + }, + "YungsExtras-1.20-Forge-4.0.3.jar": { + "jarName": "YungsExtras-1.20-Forge-4.0.3.jar", + "modId": "yungsextras", + "version": "1.20-Forge-4.0.3", + "curseForgeHash": 946802158, + "modrinthHash": "4b2e632353a95c16a080c2e64c426480a139fbd6" + }, + "ZeroCore2-1.20.1-2.1.48.jar": { + "jarName": "ZeroCore2-1.20.1-2.1.48.jar", + "modId": "zerocore", + "version": "1.20.1-2.1.48", + "curseForgeHash": 1259600739, + "modrinthHash": "d60df80acecc27e20401065a252773f86b08e9de" + }, + "Zeta-1.0-31.jar": { + "jarName": "Zeta-1.0-31.jar", + "modId": "zeta", + "version": "1.0-31", + "curseForgeHash": 2553435270, + "modrinthHash": "8c4a8ef0444b53ff408d5b89126285031081d92f" + } +} \ No newline at end of file diff --git a/minecraft/config/crash_assistant/scripts/log_analysis/example.jexl b/minecraft/config/crash_assistant/scripts/log_analysis/example.jexl new file mode 100644 index 0000000..a38b939 --- /dev/null +++ b/minecraft/config/crash_assistant/scripts/log_analysis/example.jexl @@ -0,0 +1,50 @@ +// This is an example script for Crash Assistant. +// It detects if the crash was triggered manually by the user (F3 + C). + +// You can use the 'Analysis' object to add warnings. +// If you want your custom warning to be localized, you can use the "config/crash_assistant/crash_assistant_localization_overrides" folder. +// Your custom keys with the prefix 'custom.' will NOT be automatically cleared as unused. +// Example: Analysis.addWarning(log, LanguageProvider.get("custom.manual_crash")); + +// Full documentation and more examples: https://github.com/KostromDan/Crash-Assistant/blob/pages/guides/Scripting%20Support/Getting%20Started.md + +// Request specific log types for analysis. +var requested_logs = LogsList.getLogs(CRASH_REPORT); +// You can request multiple log types: var requested_logs = LogsList.getLogs(LOG, CRASH_REPORT, HS_ERR, STDERR_STREAM) +// Warning: if you want to analyze WIN_EVENT log type, due to them coming with a delay, they are not available on the first launch of the script. +// In such a case, you must allow your script to run on second-time analysis calls (when the log is added later): Analysis.markRunAlways() + +for (log : requested_logs) { + var log_text = log.getReader().getAllLinesString(); + // If you want to get lines as a List, not a single String, you can use: log.getReader().getAllLinesList() + // If you want to get not the entire log, but the last 100 lines as a List, you can use: log.getReader().getLastNLines(100); or the first lines: log.getReader().getFirstNLines(10) + + // You can use standard Java regex classes (Pattern, Matcher) if you need to extract specific data (like a version number) from the log. + // However, if you just need a simple true/false check, you can use the 'RegexChecker' utility for convenience. + // It can check multiple patterns at once. + // RegexChecker.logContainsOneOfPatterns returns true if ANY of the patterns match. + // You can give this function any number of patterns. + var pattern1 = "Description: Manually triggered debug crash"; + var pattern2 = "Caused by: java\\.lang\\.Throwable: Manually triggered debug crash"; + + if (RegexChecker.logContainsOneOfPatterns(log, pattern1, pattern2)) { + // If you don't want to use localization, you can just pass a raw string (supports HTML tags and formatting): + // Analysis.addWarning(log, "Manual crash detected!"); + + // Using internal localization key shipped with mod: + var warn = Analysis.addWarning(log, LanguageProvider.get("custom.manual_crash")); + // Now the String received from LanguageProvider.get("custom.manual_crash") will be displayed to the user as a warning. + // If you don't need the additional options below, you can call Analysis.addWarning(...) without assigning it to a variable. + + // You can add a 'don't show again' checkbox, so the user can prevent this warning from showing in the future. + // Needs a unique key, by which it'll recognize this 'don't show again' choice from others. + warn.withDontShowAgain("manual_crash_warning"); + + // If you want to ensure the user will read the warning, you can set a delay in seconds for the OK button, so the user can't immediately close it. + // We set it to 0 because we don't want one and it's just an example. + warn.withOkDelay(0); + + // You can set the priority for this warning. Warnings with higher priority are shown first. + warn.withPriority(10001); + } +} diff --git a/minecraft/config/crash_assistant/scripts/startup/example.jexl b/minecraft/config/crash_assistant/scripts/startup/example.jexl new file mode 100644 index 0000000..c0b820a --- /dev/null +++ b/minecraft/config/crash_assistant/scripts/startup/example.jexl @@ -0,0 +1,96 @@ +// This is an example script for Crash Assistant. +// It designed to demonstrate abilities of startup scripts and by default warn about over allocation of ram (more than system can provide). +// With startup scripts you can do including but not limited: +// - Analyse ram alloction. +// - Analyse jvm / minecraft args. +// - Analyse modlist for incompatible / removed neccery mods. +// Full documentation and more examples: https://github.com/KostromDan/Crash-Assistant/blob/pages/guides/Scripting%20Support/Getting%20Started.md + + +// --- Configuration Area --- +var MIN_CRITICAL_GB = 4.0; +var MIN_RECOMMENDED_GB = 8.0; +var MAX_RECOMMENDED_GB = 12.0; +// -------------------------- + +// Most options are commented out. Please uncomment them to enable them. + +var xmxBytes = MemoryUtils.getJvmMaxHeapBytes(); +var xmxGB = MemoryUtils.bytesToGigabytes(xmxBytes); +var formattedXmx = MemoryUtils.formatMemorySize(xmxBytes); + +// 1. Critical Minimum Check +//if (xmxGB < MIN_CRITICAL_GB) { +// var msg = LanguageProvider.get("custom.critical_min"); +// msg = msg.replace("$XMX$", formattedXmx); +// msg = msg.replace("$MIN_RECOMMENDED$", MIN_RECOMMENDED_GB.toString()); +// var warn = Startup.addBootWarning(msg); +// warn.withMemoryAllocationGuide(); +//} + +// 2. Minimum Recommended Check +//else if (xmxGB < MIN_RECOMMENDED_GB) { +// var msg = LanguageProvider.get("custom.min_recommended"); +// msg = msg.replace("$XMX$", formattedXmx); +// msg = msg.replace("$MIN_RECOMMENDED$", MIN_RECOMMENDED_GB.toString()); +// var lowMemWarn = Startup.addBootWarning(msg); +// lowMemWarn.withDontShowAgain("low_memory_check"); +// lowMemWarn.withMemoryAllocationGuide(); +//} + +// 3. Excessive Allocation Check +// Warning starts exactly when Xmx exceeds MAX_RECOMMENDED_GB. +//if (xmxGB > MAX_RECOMMENDED_GB) { +// var msg = LanguageProvider.get("custom.excessive_allocation"); +// msg = msg.replace("$XMX$", formattedXmx); +// msg = msg.replace("$MIN_RECOMMENDED$", MIN_RECOMMENDED_GB.toString()); +// msg = msg.replace("$MAX_RECOMMENDED$", MAX_RECOMMENDED_GB.toString()); +// var excessiveMemWarn = Startup.addBootWarning(msg); +// excessiveMemWarn.withDontShowAgain("excessive_memory_check"); +// excessiveMemWarn.withMemoryAllocationGuide(); +//} + +// 4. Over-Allocation vs Total Capacity Check (Hardware Limit) +var totalSystemCapacity = MemoryUtils.getSystemTotalMemoryBytes() + MemoryUtils.getSystemTotalSwapBytes(); +var exceedsTotalSystemCapacity = xmxBytes > totalSystemCapacity; +if (exceedsTotalSystemCapacity) { + var msg = LanguageProvider.get("custom.over_allocation"); + msg = msg.replace("$XMX$", formattedXmx); + msg = msg.replace("$TOTAL_CAPACITY$", MemoryUtils.formatMemorySize(totalSystemCapacity)); + var warn = Startup.addBootWarning(msg); + warn.withMemoryAllocationGuide(); +} + +// 5. High System Load Check (Current Capacity) +var systemAvailable = MemoryUtils.getSystemFreeMemoryBytes() + MemoryUtils.getSystemFreeSwapBytes(); +var jvmAllocated = MemoryUtils.getJvmAllocatedMemoryBytes(); +var stillNeeded = xmxBytes - jvmAllocated; + +if (PlatformHelp.isWindows() && !exceedsTotalSystemCapacity && xmxBytes > 0 && stillNeeded > 0 && systemAvailable < stillNeeded) { + var msg = LanguageProvider.get("custom.high_system_load"); + msg = msg.replace("$XMX$", formattedXmx); + msg = msg.replace("$AVAILABLE$", MemoryUtils.formatMemorySize(systemAvailable)); + var highLoadWarn = Startup.addBootWarning(msg); + highLoadWarn.withDontShowAgain("high_system_load_check"); + highLoadWarn.withMemoryAllocationGuide(); +} + +// 6. Windows Swap/Pagefile Check +//if (PlatformHelp.isWindows() && MemoryUtils.getSystemTotalSwapBytes() == 0) { +// var msg = LanguageProvider.get("custom.windows_no_swap"); +// msg = msg.replace("$XMX$", formattedXmx); +// var noSwapWarn = Startup.addBootWarning(msg); +// noSwapWarn.withDontShowAgain("windows_no_swap_check"); +// noSwapWarn.withMemoryAllocationGuide(); +//} + +// 7. Large Heap / ZGC Advice +//var jvmArgs = ArgUtils.getSafeJvmArgs(); +//var launchArgs = ArgUtils.getSafeLaunchArgs(); +//if (xmxGB > 12.0 && !jvmArgs.contains("-XX:+UseZGC")) { +// var msg = LanguageProvider.get("custom.large_heap_zgc"); +// msg = msg.replace("$XMX$", formattedXmx); +// var zgcWarn = Startup.addBootWarning(msg); +// zgcWarn.withDontShowAgain("zgc_recommendation_check"); +// zgcWarn.withJvmArgsGuide(); +//} diff --git a/minecraft/config/create-client.toml b/minecraft/config/create-client.toml new file mode 100644 index 0000000..2f3ed10 --- /dev/null +++ b/minecraft/config/create-client.toml @@ -0,0 +1,133 @@ + +#. +#Client-only settings - If you're looking for general settings, look inside your worlds serverconfig folder! +[client] + #. + #Show item descriptions on Shift and controls on Ctrl. + enableTooltips = true + #. + #Display a tooltip when looking at overstressed components. + enableOverstressedTooltip = true + #. + #Log a stack-trace when rendering issues happen within a moving contraption. + explainRenderErrors = false + #. + #Higher density means more spawned particles. + #Range: 0.0 ~ 1.0 + fanParticleDensity = 0.25 + #. + #[in Blocks] + #Maximum Distance to the player at which items in Blocks' filter slots will be displayed + #Range: 1.0 ~ 3.4028234663852886E38 + filterItemRenderDistance = 6.0 + #. + #Choose the menu row that the Create config button appears on in the main menu + #Set to 0 to disable the button altogether + #Range: 0 ~ 4 + mainMenuConfigButtonRow = 2 + #. + #Offset the Create config button in the main menu by this many pixels on the X axis + #The sign (-/+) of this value determines what side of the row the button appears on (left/right) + #Range: > -2147483648 + mainMenuConfigButtonOffsetX = -4 + #. + #Choose the menu row that the Create config button appears on in the in-game menu + #Set to 0 to disable the button altogether + #Range: 0 ~ 5 + ingameMenuConfigButtonRow = 3 + #. + #Offset the Create config button in the in-game menu by this many pixels on the X axis + #The sign (-/+) of this value determines what side of the row the button appears on (left/right) + #Range: > -2147483648 + ingameMenuConfigButtonOffsetX = -4 + #. + #Setting this to true will prevent Create from sending you a warning when playing with Fabulous graphics enabled + ignoreFabulousWarning = false + #. + #Disable to prevent being rotated while seated on a Moving Contraption + rotateWhenSeated = true + + #. + #Configure your vision range when submerged in Create's custom fluids + [client.fluidFogSettings] + #. + #The vision range through honey will be multiplied by this factor + #Range: 0.125 ~ 256.0 + honey = 1.0 + #. + #The vision range though chocolate will be multiplied by this factor + #Range: 0.125 ~ 256.0 + chocolate = 1.0 + + #. + #Settings for the Goggle Overlay + [client.goggleOverlay] + #. + #Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay + #Range: > -2147483648 + overlayOffsetX = 20 + #. + #Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay + #Range: > -2147483648 + overlayOffsetY = 0 + #. + #Enable this to use your custom colors for the Goggle- and Hover- Overlay + customColorsOverlay = false + #. + #The custom background color to use for the Goggle- and Hover- Overlays, if enabled + #[in Hex: #AaRrGgBb] + #[@cui:IntDisplay:#] + #Range: > -2147483648 + customBackgroundOverlay = -267386864 + #. + #The custom top color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled + #[in Hex: #AaRrGgBb] + #[@cui:IntDisplay:#] + #Range: > -2147483648 + customBorderTopOverlay = 1347420415 + #. + #The custom bot color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled + #[in Hex: #AaRrGgBb] + #[@cui:IntDisplay:#] + #Range: > -2147483648 + customBorderBotOverlay = 1344798847 + + #. + #Sound settings + [client.sound] + #. + #Make cogs rumble and machines clatter. + enableAmbientSounds = true + #. + #Maximum volume modifier of Ambient noise + #Range: 0.0 ~ 1.0 + ambientVolumeCap = 0.10000000149011612 + + #. + #Mod Integration and JEI + [client.jeiIntegration] + #. + #Whether to auto-update the JEI search when searching in the stock keeper UI + syncJeiSearch = true + + #. + #Railway related settings + [client.trains] + #. + #How far away the Camera should zoom when seated on a train + #Range: 0.0 ~ 3.4028234663852886E38 + mountedZoomMultiplier = 3.0 + #. + #Display nodes and edges of a Railway Network while f3 debug mode is active + showTrackGraphOnF3 = false + #. + #Additionally display materials of a Rail Network while f3 debug mode is active + showExtendedTrackGraphOnF3 = false + #. + #Display Track Networks and Trains on supported map mods + showTrainMapOverlay = true + #. + #Track Network Color on maps + #Allowed Values: RED, GREY, WHITE + trainMapColorTheme = "RED" + diff --git a/minecraft/config/create-common.toml b/minecraft/config/create-common.toml new file mode 100644 index 0000000..792792f --- /dev/null +++ b/minecraft/config/create-common.toml @@ -0,0 +1,9 @@ + +#. +#Modify Create's impact on your terrain +[worldgen] + #. + #. + #Prevents all worldgen added by Create from taking effect + disableWorldGen = false + diff --git a/minecraft/config/create-stuff-additions.toml b/minecraft/config/create-stuff-additions.toml new file mode 100644 index 0000000..3678c3e --- /dev/null +++ b/minecraft/config/create-stuff-additions.toml @@ -0,0 +1,35 @@ + +["Jetpack Height Restriction"] + brassJetpackMaxHeight = 28.0 + andesiteJetpackMaxHeight = 18.0 + copperJetpackMaxHeight = 18.0 + netheriteJetpackMaxHeight = 28.0 + enableAboveCloudEnchant = false + +["Jetpack/Grapplin Speed"] + brassJetpackSpeed = 0.06 + andesiteJetpackSpeed = 0.08 + copperJetpackSpeed = 0.02 + netheriteJetpackSpeed = 0.08 + grapplinWhiskSpeed = 0.2 + +["Fuel/Water Capacity"] + gadgetCapacity = 1600.0 + smallTankCapacity = 800.0 + mediumTankCapacity = 1600.0 + largeTankCapacity = 3200.0 + +[Enchantments] + enableDiggingEnchant = true + enableImpactEnchant = true + enableGravityGunEnchant = true + enableHellfireEnchant = true + enableChunkEaterEnchant = true + +["Drone Module"] + enableDrillDroneModule = true + enableFanDroneModule = true + enableMagnetDroneModule = true + enableVaultDroneModule = true + MagnetModuleBlockLimitation = false + diff --git a/minecraft/config/create_better_motors-common.toml b/minecraft/config/create_better_motors-common.toml new file mode 100644 index 0000000..0765c0d --- /dev/null +++ b/minecraft/config/create_better_motors-common.toml @@ -0,0 +1,249 @@ + +#General configuration for Create: Better Motors +#Messages +[Messages] + #Enable or disable update messages. + messages_enabled = false + +#Accumulator +[accumulator] + #Max input in FE/t + #Range: > 0 + max_input = 800000 + #Max output in FE/t + #Range: > 0 + max_output = 800000 + +#Wires +[wires] + #Heavy Connector max input in FE/t + #Range: > 0 + max_input = 90000 + #Heavy Connector max output in FE/t + #Range: > 0 + max_output = 90000 + #Heavy Connector max length in blocks + #Range: 0 ~ 256 + max_length = 48 + +#starter_motor +[starter_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 100000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 960 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 35768 + #Enable motor audio + audio_enabled = true + +#basic_motor +[basic_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 100000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 1920 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 75768 + #Enable motor audio + audio_enabled = true + +#hardened_motor +[hardened_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 100000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 3840 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 161536 + #Enable motor audio + audio_enabled = true + +#blazing_motor +[blazing_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 500000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 7680 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 253072 + #Enable motor audio + audio_enabled = true + +#niotic_motor +[niotic_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 600000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 19360 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 710144 + #Enable motor audio + audio_enabled = true + +#spirited_motor +[spirited_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 80000 + #Internal FE capacity + #Range: > 0 + capacity = 700000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 41720 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 1298288 + #Enable motor audio + audio_enabled = true + +#nitro_motor +[nitro_motor] + #Motor RPM range + #Range: > 1 + rpm_range = 256 + #Minimum FE/t consumption + #Range: > 0 + min_consumption = 8 + #Max FE/t input + #Range: > 0 + max_input = 85000 + #Internal FE capacity + #Range: > 0 + capacity = 800000 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 72440 + #Max stress in SU at 256 RPM + #Range: > 0 + max_stress = 2499576 + #Enable motor audio + audio_enabled = true + +#andesite_alternator +[andesite_alternator] + #Alternator max FE/t output + #Range: > 0 + max_output = 5000 + #Alternator FE capacity + #Range: > 0 + capacity = 5000 + #Efficiency (0.0 - 1.0) + #Range: 0.01 ~ 1.0 + efficiency = 0.85 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 1260 + #Max stress at 256 RPM + #Range: > 0 + max_stress = 35768 + #Enable alternator audio + audio_enabled = true + +#copper_alternator +[copper_alternator] + #Alternator max FE/t output + #Range: > 0 + max_output = 5000 + #Alternator FE capacity + #Range: > 0 + capacity = 5000 + #Efficiency (0.0 - 1.0) + #Range: 0.01 ~ 1.0 + efficiency = 0.9 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 2400 + #Max stress at 256 RPM + #Range: > 0 + max_stress = 75384 + #Enable alternator audio + audio_enabled = true + +#brass_alternator +[brass_alternator] + #Alternator max FE/t output + #Range: > 0 + max_output = 10000 + #Alternator FE capacity + #Range: > 0 + capacity = 10000 + #Efficiency (0.0 - 1.0) + #Range: 0.01 ~ 1.0 + efficiency = 0.9 + #FE/t at 256 RPM + #Range: > 0 + fe_at_max_rpm = 4240 + #Max stress at 256 RPM + #Range: > 0 + max_stress = 159708 + #Enable alternator audio + audio_enabled = true + diff --git a/minecraft/config/create_central_kitchen-common.toml b/minecraft/config/create_central_kitchen-common.toml new file mode 100644 index 0000000..6cada1c --- /dev/null +++ b/minecraft/config/create_central_kitchen-common.toml @@ -0,0 +1,37 @@ + +#. +#Config for Automation related components +[automation] + #. + #. + #Whether allowing Deployers to perform Cutting Board Recipes + enableCuttingBoardDeploying = true + #. + #List of Block Entities that can be boosted when placed on Blaze Stove + boostingCookerList = ["farmersdelight:cooking_pot", "farmersdelight:skillet"] + +#. +#Config for Integration with other mods +[integration] + #. + #. + #Whether replacing vanilla and modded pies into Farmer's Delight style + #[@cui:RequiresReload:both] + enablePieOverhaul = true + #. + #Pie items in this list will not be included in pie overhaul + #[@cui:RequiresReload:both] + pieOverhaulBlackList = [] + #. + #For harvester to function properly, turning on this support will cause the collision shape of the overweight crop block to disappear. + #[@cui:RequiresReload:server] + enableHarvesterSupportForOverweightFarming = true + #. + #Basket of Farmers Delight has a 8 ticks transfer cooldown. Disable the cooldown for better automation. + #[@cui:RequiresReload:server] + disableTransferCooldownForFarmersDelightBasket = true + #. + #For harvester to function properly, turning on this support will cause the collision shape of Coffee Bush and Tea Bush block to disappear. + #[@cui:RequiresReload:server] + enableHarvesterSupportForFarmersRespite = true + diff --git a/minecraft/config/create_hypertube-client.toml b/minecraft/config/create_hypertube-client.toml new file mode 100644 index 0000000..7f1812e --- /dev/null +++ b/minecraft/config/create_hypertube-client.toml @@ -0,0 +1,6 @@ + +#Change these settings to customize the client-side behavior of the mod. +[Gameplay] + #Allow first-person view inside the tube. Default is false for better experience. + allowFPVInsideTheTube = false + diff --git a/minecraft/config/create_item_silo.toml b/minecraft/config/create_item_silo.toml new file mode 100644 index 0000000..94a177d --- /dev/null +++ b/minecraft/config/create_item_silo.toml @@ -0,0 +1,5 @@ + +[setVaultLimit] + siloLimit = 3200.0 + ableSiloPlacing = true + diff --git a/minecraft/config/create_kart-client.toml b/minecraft/config/create_kart-client.toml new file mode 100644 index 0000000..f8c3d8a --- /dev/null +++ b/minecraft/config/create_kart-client.toml @@ -0,0 +1,35 @@ + +["General Settings"] + #Defines the maximum speed of the kart. (Default value: 0.25) + "Mouvement Speed" = 0.25 + #Defines the rotational force of the kart. (Default value: 3.0) + "Rotation Streng" = 3.0 + #Define the number of blocks that will be climbed by the kart. (Default value: 1.0) + "Max Up Step" = 1.0 + +["Movement Settings"] + #changes the way the kart is steered for old movements before 2.0 + #be careful if this parameter is set to true, the left and right animations of the kart are deactivated because they are useless + #(true = Old movement / false = New movement) + "Old Movement" = false + +["Fuel Settings"] + #Define the fuel consumption for a traveling 1 block. (Default value: 5.0) + # [Preview setting stats] + # WARN: NOT EXACT AMOUNT + # + # Consumption Traveled + #1.0 fuel/block -> 22000 block + #2.0 fuel/block -> 11000 block + #4.0 fuel/block -> 5500 block + #5.0 fuel/block -> 4400 block (default) + #10.0 fuel/block -> 2200 block + #15.0 fuel/block -> 1650 block + #20.0 fuel/block -> 1100 block + # + "Fuel Consumption" = 5.0 + #Changes the fuel overlay display to a minimal version + #WARN: Only the fuel shortage popup is affected by this setting, the coal bar and the value below it do not change. + #(true = Minimal Overlay / false = Default Overlay) + "Minimal Overlay" = false + diff --git a/minecraft/config/create_new_age-client.toml b/minecraft/config/create_new_age-client.toml new file mode 100644 index 0000000..30f32f4 --- /dev/null +++ b/minecraft/config/create_new_age-client.toml @@ -0,0 +1,8 @@ +#Choose how many wire sections are rendered in one meter (block). +#Decreasing this value can theoretically improve performance +#Range: > 1 +wireSectionsPerMeter = 10 +#...wire thickness... +#Range: 0.0 ~ 1.7976931348623157E308 +wireThickness = 0.03 + diff --git a/minecraft/config/create_new_age-common.toml b/minecraft/config/create_new_age-common.toml new file mode 100644 index 0000000..bba522a --- /dev/null +++ b/minecraft/config/create_new_age-common.toml @@ -0,0 +1,96 @@ +#Responsible for how much energy is generated per 1 stress unit in a tick +#Default value is supposed to be compatible with default configuration of Create: Crafts and Additions +#Range: 0.0 ~ 1.7976931348623157E308 +suToEnergy = 0.029296875 +#How many coils can the carbon brushes collect energy from +#Range: > 0 +maxCoils = 8 +#How many reactor rods can a fuel inserter or a heat vent have in a single direction +#Range: > 0 +maxRodsInDirection = 32 +#Multiplier of wire conductivity +#Range: 0.0 ~ 1.7976931348623157E308 +conductivityMultiplier = 1.0 +#Maximum depth of network pathfinding +#Range: > 1 +maxPathfindingDepth = 24 +#Multiplier of energising speed +#Range: 0.0 ~ 1.7976931348623157E308 +energiserSpeedMultiplier = 1.0 +#Multiplier for the temperature at which components overheat. Set to -1 to disable overheating. +#Range: -1.0 ~ 1.7976931348623157E308 +overheatingMultiplier = 1.0 +#Multiplier for how much heat pipes obtain from passive heat sources like Lava or even Boilers. +#Range: 0.0 ~ 1.7976931348623157E308 +passiveHeatSourceMultiplier = 1.0 +#How much heat do pipes lose per second. +#Range: 0.0 ~ 1.7976931348623157E308 +passivePipeHeatLoss = 1.0 +#Multiplier for how much heat a boiler needs. +#Range: 0.0 ~ 1.7976931348623157E308 +boilerRequiredHeatMultiplier = 1.0 +#How much heat per tick a nuclear reactor rod generate. +#Range: 0.0 ~ 1.7976931348623157E308 +ReactorRodHeat = 30.0 +#How much heat per tick a nuclear reactor rod loses above the 16000*overheatingMultiplier. +#Range: 0.0 ~ 1.7976931348623157E308 +ReactorRodHeatLoss = 25.0 +#Multiplier for how much heat solar panels output. +#Range: 0.0 ~ 1.7976931348623157E308 +solarPanelHeatMultiplier = 1.0 +#Maximum wire length +#Range: > 1 +maxWireLength = 16 + +[Motors] + #Maximum motor SU multiplier + #Range: 0.0 ~ 1.7976931348623157E308 + motorSuMultiplier = 1.0 + #Internal energy capacity of a basic motor + #Range: > 1 + basicMotorCapacity = 16000 + #Internal energy capacity of an advanced motor + #Range: > 1 + advancedMotorCapacity = 64000 + #Internal energy capacity of a reinforced motor + #Range: > 1 + reinforcedMotorCapacity = 128000 + #Top Speed of a basic motor + #Range: 1.0 ~ 1.7976931348623157E308 + basicMotorSpeed = 128.0 + #Top Speed of an advanced motor + #Range: 1.0 ~ 1.7976931348623157E308 + advancedMotorSpeed = 256.0 + #Top Speed of a reinforced motor + #Range: 1.0 ~ 1.7976931348623157E308 + reinforcedMotorSpeed = 256.0 + #Generated SU of a basic motor + #Range: 1.0 ~ 1.7976931348623157E308 + basicMotorStress = 512.0 + #Generated SU of an advanced motor + #Range: 1.0 ~ 1.7976931348623157E308 + advancedMotorStress = 2048.0 + #Generated SU of a reinforced motor + #Range: 1.0 ~ 1.7976931348623157E308 + reinforcedMotorStress = 8192.0 + +["Motor Extensions"] + #Power Multiplier of a basic motor extension + #Range: 1.0 ~ 1.7976931348623157E308 + basicMotorExtensionMultiplier = 2.0 + #Power Multiplier of a basic motor extension + #Range: 1.0 ~ 1.7976931348623157E308 + advancedMotorExtensionMultiplier = 8.0 + #Extra energy capacity of a basic motor extension + #Range: > 1 + basicMotorExtensionExtraCapacity = 64000 + #Extra energy capacity of an advanced motor extension + #Range: > 1 + advancedMotorExtensionExtraCapacity = 256000 + #Basic motor extension scroll step + #Range: > 1 + basicMotorExtensionScrollStep = 1 + #Advanced motor extension scroll step + #Range: > 1 + advancedMotorExtensionScrollStep = 8 + diff --git a/minecraft/config/createaddition-common.toml b/minecraft/config/createaddition-common.toml new file mode 100644 index 0000000..fbf27b0 --- /dev/null +++ b/minecraft/config/createaddition-common.toml @@ -0,0 +1,150 @@ + +#Make sure config changes are duplicated on both Clients and the Server when running a dedicated Server, +# as the config isnt synced between Clients and Server. +#General Settings +[general] + #Forge Energy conversion rate (in FE/t at 256 RPM, value is the FE/t generated and consumed is at 256rpm). + #Range: > 0 + fe_at_max_rpm = 480 + #Max stress for the Alternator and Electric Motor (in SU at 256 RPM). + #Range: > 0 + max_stress = 16384 + #If audio should be enabled or not. + audio_enabled = true + +#Electric Motor +[electric_motor] + #Electric Motor min/max RPM. + #Range: > 1 + motor_rpm_range = 256 + #Electric Motor minimum required energy consumption in FE/t. + #Range: > 0 + motor_min_consumption = 8 + #Electric Motor max input in FE (Energy transfer not consumption). + #Range: > 0 + motor_max_input = 5000 + #Electric Motor internal capacity in FE. + #Range: > 0 + motor_capacity = 5000 + +#Alternator +[alternator] + #Alternator max input in FE (Energy transfer, not generation). + #Range: > 0 + generator_max_output = 5000 + #Alternator internal capacity in FE. + #Range: > 0 + generator_capacity = 5000 + #Alternator efficiency relative to base conversion rate. + #Range: 0.01 ~ 1.0 + generator_efficiency = 0.75 + +#Rolling Mill +[rolling_mill] + #Rolling Mill duration in ticks. + #Range: > 0 + rolling_mill_processing_duration = 120 + #Rolling Mill base stress impact. + #Range: 0 ~ 1024 + rolling_mill_stress = 8 + +#Wires +[wires] + #Small Connector max input in FE/t (Energy transfer). + #Range: > 0 + small_connector_max_input = 1000 + #Small Connector max output in FE/t (Energy transfer). + #Range: > 0 + small_connector_max_output = 1000 + #Small Connector max wire length in blocks. + #Range: 0 ~ 256 + small_connector_wire_length = 16 + #Small Connector With Light energy consumption in FE/t. + #Range: > 0 + small_light_connector_consumption = 1 + #Large Connector max input in FE/t (Energy transfer). + #Range: > 0 + large_connector_max_input = 5000 + #Large Connector max output in FE/t (Energy transfer). + #Range: > 0 + large_connector_max_output = 5000 + #Large Connector max wire length in blocks. + #Range: 0 ~ 256 + large_connector_wire_length = 32 + #Ignore checking if block face can support connector. + connector_ignore_face_check = true + #Allows blocks attached to a connector to freely pass energy to and from the connector network. + connector_allow_passive_io = true + +#Accumulator +[accumulator] + #Accumulator max input in FE/t (Energy transfer). + #Range: > 0 + accumulator_max_input = 5000 + #Accumulator max output in FE/t (Energy transfer). + #Range: > 0 + accumulator_max_output = 5000 + #Accumulator internal capacity per block in FE. + #Range: > 0 + accumulator_capacity = 2000000 + #Accumulator max multiblock height. + #Range: 1 ~ 8 + accumulator_max_height = 5 + #Accumulator max multiblock width. + #Range: 1 ~ 8 + accumulator_max_width = 3 + +#Portable Energy Interface +[portable_energy_interface] + #PEI max input in FE/t (Energy transfer). + #Range: > 0 + pei_max_input = 5000 + #PEI max output in FE/t (Energy transfer). + #Range: > 0 + pei_max_output = 5000 + +#Tesla Coil +[tesla_coil] + #Tesla Coil max input in FE/t (Energy transfer). + #Range: > 0 + tesla_coil_max_input = 10000 + #Tesla Coil charge rate in FE/t. + #Range: > 0 + tesla_coil_charge_rate = 5000 + #Tesla Coil charge rate in FE/t for recipes. + #Range: > 0 + tesla_coil_recipe_charge_rate = 2000 + #Tesla Coil internal capacity in FE. + #Range: > 0 + tesla_coil_capacity = 40000 + #Energy consumed when Tesla Coil is fired (in FE). + #Range: > 0 + tesla_coil_hurt_energy_required = 1000 + #Hurt range (in blocks/meters). + #Range: > 0 + tesla_coil_hurt_range = 3 + #Damaged dealt to mobs when Tesla Coil is fired (in half hearts). + #Range: > 0 + tesla_coil_hurt_mob = 3 + #The duration of the Shocked effect for mobs (in ticks). + #Range: > 0 + tesla_coil_effect_time_mob = 20 + #Damaged dealt to players when Tesla Coil is fired (in half hearts). + #Range: > 0 + tesla_coil_hurt_player = 2 + #The duration of the Shocked effect for players (in ticks). + #Range: > 0 + tesla_coil_effect_time_player = 20 + #Tesla Coil fire interval (in ticks). + #Range: > 0 + tesla_coil_fire_cooldown = 20 + +#Misc +[misc] + #Diamond Grit Sandpaper durability (number of uses). + #Range: > 3 + diamond_grit_sandpaper_uses = 1024 + #Barbed Wire Damage. + #Range: 0.0 ~ 3.4028234663852886E38 + barbed_wire_damage = 2.0 + diff --git a/minecraft/config/createdieselgenerators-client.toml b/minecraft/config/createdieselgenerators-client.toml new file mode 100644 index 0000000..3f2a795 --- /dev/null +++ b/minecraft/config/createdieselgenerators-client.toml @@ -0,0 +1,9 @@ + +["Client Configs"] + #Fuel type tooltip on Buckets + "Fuel tooltips" = true + #Whenever Diesel Engines display in JEI + "Diesel Engine JEI Config" = true + #Diesel Engines emit sounds on trains + "Diesel Engines emit sounds on trains" = true + diff --git a/minecraft/config/createdieselgenerators-common.toml b/minecraft/config/createdieselgenerators-common.toml new file mode 100644 index 0000000..13e3734 --- /dev/null +++ b/minecraft/config/createdieselgenerators-common.toml @@ -0,0 +1,11 @@ + +["Common Config"] + #Capacity of Tools requiring Fluids in mB + "Capacity of Tools requiring Fluids" = 200 + #Tool Capacity Enchantment Capacity Addition in mB + "Capacity Addition of Tools with Capacity Enchantment" = 100 + #Canister Capacity in mB + "Capacity of Canisters" = 4000 + #Canister Capacity Enchantment Capacity Addition in mB + "Capacity Addition of Capacity Enchantment in Canisters" = 1000 + diff --git a/minecraft/config/createsolar-common.toml b/minecraft/config/createsolar-common.toml new file mode 100644 index 0000000..448353b --- /dev/null +++ b/minecraft/config/createsolar-common.toml @@ -0,0 +1,78 @@ +#Solar Panel settings +#Maximum FE generated in one update interval at full sunlight (default 250 = 12.5 FE/T). +#Range: 1 ~ 500 +max_output = 250 +#How many ticks between energy updates (default 20 = 1 second). +#Range: 1 ~ 100 +update_interval = 20 +#Internal energy buffer capacity (FE). Default 1000. +#Range: 1 ~ 1000000 +max_energy_stored = 1000 +#Number of ticks to skip after placement or chunk reload (prevents race conditions). Default 5. +#Range: 0 ~ 100 +startup_delay_ticks = 5 +#Altitude Dependence settings (disabled by default) +#Whether solar panel output depends on altitude. Default false. +altitude_dependence_enabled = false +#Minimum Y level for altitude calculation (lowest altitude, default -64). +#Range: -64 ~ 320 +altitude_min_y = -64 +#Maximum Y level for altitude calculation (highest altitude, default 61). +#Range: -64 ~ 320 +altitude_max_y = 61 +#Output multiplier at minimum altitude (default 0.5 = 50% efficiency). +#Range: 0.0 ~ 1.0 +altitude_min_factor = 0.5 +#Output multiplier at maximum altitude (default 1.0 = 100% efficiency). +#Range: 0.0 ~ 1.0 +altitude_max_factor = 1.0 +#Temperature Dependence settings (disabled by default) +#Whether solar panel output depends on biome temperature. Default false. +temperature_dependence_enabled = false +#Biome temperature at which TEMP_MIN_FACTOR applies. Default 0.0 (cold). +#Range: -0.5 ~ 2.0 +temperature_min_value = 0.0 +#Biome temperature at which TEMP_MAX_FACTOR applies. Default 1.2 (hot). +#Range: -0.5 ~ 2.0 +temperature_max_value = 1.2 +#Output multiplier at TEMP_MIN_VALUE. Default 0.7 = 70%. +#Range: 0.0 ~ 1.0 +temperature_min_factor = 0.7 +#Output multiplier at TEMP_MAX_VALUE. Default 1.0 = 100%. +#Range: 0.0 ~ 1.0 +temperature_max_factor = 1.0 +#Sculk Panel settings (generates XP at night) +#Maximum XP generated in one update interval at peak night (default 10). +#Range: 1 ~ 500 +sculk_max_xp = 10 +#How many ticks between XP updates (default 20 = 1 second). +#Range: 1 ~ 100 +sculk_update_interval = 20 +#Internal XP buffer capacity. Default 10000. +#Range: 1 ~ 100000 +sculk_max_xp_stored = 10000 +#Growth Lamp settings (bonemeal based, balanced) +#Effect radius in blocks (max 10). Default 5. +#Range: 1 ~ 10 +growthLampRadius = 5 +#Ticks between bonemeal attempts. Default 40 (2 seconds). +#Range: 10 ~ 200 +growthLampInterval = 40 +#Number of random blocks to try per interval. Default 10. +#Range: 1 ~ 20 +growthLampBlocksPerInterval = 10 +#Chance (0.0-1.0) that a selected block actually receives bonemeal. Default 0.25. +#Range: 0.0 ~ 1.0 +growthLampBonemealChance = 0.25 +#Ticks to wait after lamp becomes lit before first bonemeal. Default 60 (3 seconds). +#Range: 0 ~ 100 +growthLampInitialDelay = 60 +#Growth Lamp filter settings +#Filter mode: ALLOWLIST = only bonemeal blocks that match the filter lists; BLOCKLIST = bonemeal everything EXCEPT blocks that match the filter lists. Default BLOCKLIST. +#Allowed Values: ALLOWLIST, BLOCKLIST +growthLampFilterMode = "BLOCKLIST" +#List of block IDs to either allow (if ALLOWLIST mode) or block (if BLOCKLIST mode). +growthLampFilterBlocks = ["minecraft:grass_block", "minecraft:grass", "minecraft:fern"] +#List of block tags (format: 'namespace:path') to either allow or block, depending on mode. +growthLampFilterTags = [] + diff --git a/minecraft/config/creeperoverhaul.jsonc b/minecraft/config/creeperoverhaul.jsonc new file mode 100644 index 0000000..f084a61 --- /dev/null +++ b/minecraft/config/creeperoverhaul.jsonc @@ -0,0 +1,42 @@ +{ + // Changes the Creeper Overhaul creepers to destroy blocks or not. + "destroyBlocks": true, + "client": { + // Change the Vanilla Creeper to a new and improved texture with better animations. + "replaceDefaultCreeper": false + }, + "spawning": { + // Change the Creeper Overhaul creepers to spawn or not. + "allowSpawning": true, + // Change the Jungle Creeper to spawn or not. + "allowJungleCreeperSpawning": true, + // Change the Bamboo Creeper to spawn or not. + "allowBambooCreeperSpawning": true, + // Change the Desert Creeper to spawn or not. + "allowDesertCreeperSpawning": true, + // Change the Badlands Creeper to spawn or not. + "allowBadlandsCreeperSpawning": true, + // Change the Hills Creeper to spawn or not. + "allowHillsCreeperSpawning": true, + // Change the Savannah Creeper to spawn or not. + "allowSavannahCreeperSpawning": true, + // Change the Mushroom Creeper to spawn or not. + "allowMushroomCreeperSpawning": true, + // Change the Swamp Creeper to spawn or not. + "allowSwampCreeperSpawning": true, + // Change the Dripstone Creeper to spawn or not. + "allowDripstoneCreeperSpawning": true, + // Change the Cave Creeper to spawn or not. + "allowCaveCreeperSpawning": true, + // Change the Dark Oak Creeper to spawn or not. + "allowDarkOakCreeperSpawning": true, + // Change the Spruce Creeper to spawn or not. + "allowSpruceCreeperSpawning": true, + // Change the Beach Creeper to spawn or not. + "allowBeachCreeperSpawning": true, + // Change the Snowy Creeper to spawn or not. + "allowSnowyCreeperSpawning": true, + // Change the Ocean Creeper to spawn or not. + "allowOceanCreeperSpawning": true + } +} \ No newline at end of file diff --git a/minecraft/config/cristellib/minecraftED.json5 b/minecraft/config/cristellib/minecraftED.json5 new file mode 100644 index 0000000..3d86d2c --- /dev/null +++ b/minecraft/config/cristellib/minecraftED.json5 @@ -0,0 +1,75 @@ +/* + This config file makes it possible to switch off any Minecraft structure. + To disable a structure, simply set the value of that structure to "false". + To change the rarity of a structure category, use the other file in the folder. +*/ +{ + "igloos": { + "igloo": true + }, + "desert_pyramids": { + "desert_pyramid": true + }, + "end_cities": { + "end_city": true + }, + "ocean_ruins": { + "ocean_ruin_cold": true, + "ocean_ruin_warm": true + }, + "shipwrecks": { + "shipwreck": true, + "shipwreck_beached": true + }, + "woodland_mansions": { + "mansion": true + }, + "ancient_cities": { + "ancient_city": true + }, + "buried_treasures": { + "buried_treasure": true + }, + "villages": { + "village_plains": true, + "village_desert": true, + "village_savanna": true, + "village_snowy": true, + "village_taiga": true + }, + "nether_complexes": { + "fortress": true, + "bastion_remnant": true + }, + "ocean_monuments": { + "monument": true + }, + "jungle_temples": { + "jungle_pyramid": true + }, + "nether_fossils": { + "nether_fossil": true + }, + "mineshafts": { + "mineshaft": true, + "mineshaft_mesa": true + }, + "pillager_outposts": { + "pillager_outpost": true + }, + "swamp_huts": { + "swamp_hut": true + }, + "strongholds": { + "stronghold": true + }, + "ruined_portals": { + "ruined_portal": true, + "ruined_portal_desert": true, + "ruined_portal_jungle": true, + "ruined_portal_swamp": true, + "ruined_portal_mountain": true, + "ruined_portal_ocean": true, + "ruined_portal_nether": true + } +} \ No newline at end of file diff --git a/minecraft/config/cristellib/minecraftP.json5 b/minecraft/config/cristellib/minecraftP.json5 new file mode 100644 index 0000000..3d62c1e --- /dev/null +++ b/minecraft/config/cristellib/minecraftP.json5 @@ -0,0 +1,96 @@ +/* +This config file makes it possible to change the spacing, separation, salt (and frequency) of Minecraft's structure sets. + SPACING --- controls how far a structure can be from others of its kind + SEPARATION --- controls how close to each other two structures of the same type can be. +KEEP IN MIND THAT SPACING ALWAYS NEEDS TO BE HIGHER THAN SEPARATION. +*/ +{ + "igloos": { + "spacing": 32, + "separation": 8, + "salt": 14357618 + }, + "desert_pyramids": { + "spacing": 32, + "separation": 8, + "salt": 14357617 + }, + "end_cities": { + "spacing": 20, + "separation": 11, + "salt": 10387313 + }, + "ocean_ruins": { + "spacing": 20, + "separation": 8, + "salt": 14357621 + }, + "shipwrecks": { + "spacing": 24, + "separation": 4, + "salt": 165745295 + }, + "woodland_mansions": { + "spacing": 80, + "separation": 20, + "salt": 10387319 + }, + "ancient_cities": { + "spacing": 24, + "separation": 8, + "salt": 20083232 + }, + "buried_treasures": { + "spacing": 1, + "separation": 0, + "frequency": 0.01, + "salt": 0 + }, + "villages": { + "spacing": 34, + "separation": 8, + "salt": 10387312 + }, + "nether_complexes": { + "spacing": 27, + "separation": 4, + "salt": 30084232 + }, + "ocean_monuments": { + "spacing": 32, + "separation": 5, + "salt": 10387313 + }, + "jungle_temples": { + "spacing": 32, + "separation": 8, + "salt": 14357619 + }, + "nether_fossils": { + "spacing": 2, + "separation": 1, + "salt": 14357921 + }, + "mineshafts": { + "spacing": 1, + "separation": 0, + "frequency": 0.004, + "salt": 0 + }, + "pillager_outposts": { + "spacing": 32, + "separation": 8, + "frequency": 0.2, + "salt": 165745296 + }, + "swamp_huts": { + "spacing": 32, + "separation": 8, + "salt": 14357620 + }, + "ruined_portals": { + "spacing": 40, + "separation": 15, + "salt": 34222645 + } +} \ No newline at end of file diff --git a/minecraft/config/crittersandcompanions-common.toml b/minecraft/config/crittersandcompanions-common.toml new file mode 100644 index 0000000..1ed3443 --- /dev/null +++ b/minecraft/config/crittersandcompanions-common.toml @@ -0,0 +1,17 @@ + +[necklace] + #Range: 0.0 ~ 1.0 + swim_sped = 0.20000000298023224 + #Range: 0.0 ~ 1.0 + drowned_range_debuff = 0.10000000149011612 + #Range: 0.0 ~ 1.0 + guardian_range_debuff = 0.10000000149011612 + +[grappling_hook] + #Range: 0.0 ~ 10.0 + launch_speed = 1.0 + #Range: 1.0 ~ 1000.0 + max_speed = 4.0 + #Range: 4.0 ~ 128.0 + max_distance = 32.0 + diff --git a/minecraft/config/croptopia/croptopia_v3.conf b/minecraft/config/croptopia/croptopia_v3.conf new file mode 100644 index 0000000..7ffabd5 --- /dev/null +++ b/minecraft/config/croptopia/croptopia_v3.conf @@ -0,0 +1,426 @@ +# Determines if croptopia salt will generate in rivers. Defaults to true +generateSaltInWorld = true +treeConfig=[ + { + acceptableBiomes=[ + "byg:orchard", + "minecraft:flower_forest", + "byg:aspen_forest", + "minecraft:plains", + "minecraft:forest", + "minecraft:sunflower_plains", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:birch_taiga", + "terralith:blooming_valley", + "terralith:blooming_plateau", + "terralith:highlands", + "terralith:steppe" + ] + featureName="orange_tree_placed" + }, + { + acceptableBiomes=[ + "byg:tropical_rainforest", + "minecraft:sparse_jungle", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + ] + featureName="dragonfruit_tree_placed" + }, + { + acceptableBiomes=[ + "byg:tropical_rainforest", + "minecraft:sparse_jungle", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + "terralith:blooming_valley" + ] + featureName="kumquat_tree_placed" + }, + { + acceptableBiomes=[ + "byg:tropical_rainforest", + "minecraft:sparse_jungle", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + ] + featureName="banana_tree_placed" + }, + { + acceptableBiomes=[ + "traverse:autumnal_woods", + "minecraft:flower_forest", + "byg:autumnal_forest", + "byg:aspen_forest", + "traverse:autumnal_wooded_hills", + "byg:jacaranda_forest", + "byg:autumnal_taiga", + "traverse:wooded_plateau", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "byg:orchard", + "traverse:woodlands", + "traverse:wooded_island", + "minecraft:forest" + ] + featureName="plum_tree_placed" + }, + { + acceptableBiomes=[ + "byg:tropical_rainforest", + "minecraft:sparse_jungle", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + ] + featureName="date_tree_placed" + }, + { + acceptableBiomes=[ + "minecraft:dark_forest", + "byg:weeping_witch_forest", + "byg:dacite_ridges", + "byg:ebony_woods", + "byg:maple_taiga", + "byg:twilight_meadow" + ] + featureName="cashew_tree_placed" + }, + { + acceptableBiomes=[ + "byg:tropical_rainforest", + "minecraft:sparse_jungle", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + ] + featureName="mango_tree_placed" + }, + { + acceptableBiomes=[ + "byg:tropical_rainforest", + "minecraft:sparse_jungle", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + ] + featureName="coconut_tree_placed" + }, + { + acceptableBiomes=[ + "byg:orchard", + "minecraft:flower_forest", + "byg:aspen_forest", + "minecraft:forest", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley" + ] + featureName="apricot_tree_placed" + }, + { + acceptableBiomes=[ + "byg:tropical_rainforest", + "minecraft:sparse_jungle", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + ] + featureName="nutmeg_tree_placed" + }, + { + acceptableBiomes=[ + "traverse:autumnal_woods", + "byg:orchard", + "minecraft:flower_forest", + "byg:autumnal_forest", + "byg:aspen_forest", + "traverse:autumnal_wooded_hills", + "byg:jacaranda_forest", + "byg:autumnal_taiga", + "minecraft:forest", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley" + ] + featureName="persimmon_tree_placed" + }, + { + acceptableBiomes=[ + "minecraft:dark_forest", + "byg:weeping_witch_forest", + "byg:dacite_ridges", + "byg:ebony_woods", + "byg:maple_taiga", + "byg:twilight_meadow" + ] + featureName="almond_tree_placed" + }, + { + acceptableBiomes=[ + "byg:orchard", + "minecraft:flower_forest", + "byg:aspen_forest", + "minecraft:forest", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:birch_taiga", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley" + ] + featureName="avocado_tree_placed" + }, + { + acceptableBiomes=[ + "byg:tropical_rainforest", + "minecraft:sparse_jungle", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + ] + featureName="fig_tree_placed" + }, + { + acceptableBiomes=[ + "minecraft:sparse_jungle", + "byg:white_mangrove_marshes", + "byg:tropical_rainforest", + "byg:temperate_rainforest", + "byg:cypress_swamplands", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "traverse:lush_swamp", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + ] + featureName="cinnamon_tree_placed" + }, + { + acceptableBiomes=[ + "minecraft:plains", + "minecraft:sunflower_plains", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley", + "terralith:blooming_plateau", + "terralith:highlands", + "terralith:steppe" + ] + featureName="peach_tree_placed" + }, + { + acceptableBiomes=[ + "traverse:wooded_island", + "minecraft:plains", + "minecraft:sunflower_plains", + "traverse:wooded_plateau", + "byg:prairie", + "traverse:woodlands", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley", + "terralith:blooming_plateau", + "terralith:highlands", + "terralith:steppe" + ] + featureName="apple_tree_placed" + }, + { + acceptableBiomes=[ + "traverse:autumnal_woods", + "byg:orchard", + "minecraft:flower_forest", + "byg:autumnal_forest", + "byg:aspen_forest", + "traverse:autumnal_wooded_hills", + "byg:jacaranda_forest", + "byg:autumnal_taiga", + "minecraft:forest", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley" + ] + featureName="pear_tree_placed" + }, + { + acceptableBiomes=[ + "byg:tropical_rainforest", + "minecraft:sparse_jungle", + "byg:tropical_islands", + "minecraft:jungle", + "traverse:mini_jungle", + "byg:crag_gardens", + "terralith:amethyst_canyon", + "terralith:amethyst_rainforest", + "terralith:jungle_mountains", + "terralith:tropical_jungle", + ] + featureName="grapefruit_tree_placed" + }, + { + acceptableBiomes=[ + "byg:orchard", + "minecraft:flower_forest", + "byg:aspen_forest", + "minecraft:forest", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley", + "terralith:steppe" + ] + featureName="starfruit_tree_placed" + }, + { + acceptableBiomes=[ + "byg:orchard", + "minecraft:flower_forest", + "byg:aspen_forest", + "minecraft:forest", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley" + ] + featureName="nectarine_tree_placed" + }, + { + acceptableBiomes=[ + "byg:orchard", + "minecraft:flower_forest", + "byg:aspen_forest", + "minecraft:forest", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley" + ] + featureName="lemon_tree_placed" + }, + { + acceptableBiomes=[ + "byg:orchard", + "minecraft:flower_forest", + "byg:aspen_forest", + "byg:cherry_blossom_forest", + "traverse:woodlands", + "traverse:wooded_island", + "minecraft:forest", + "traverse:wooded_plateau", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley" + ] + featureName="cherry_tree_placed" + }, + { + acceptableBiomes=[ + "byg:orchard", + "minecraft:flower_forest", + "byg:aspen_forest", + "minecraft:forest", + "minecraft:windswept_forest", + "byg:red_oak_forest", + "terralith:blooming_valley", + "terralith:lavender_forest", + "terralith:sakura_grove", + "terralith:sakura_valley" + ] + featureName="lime_tree_placed" + }, + { + acceptableBiomes=[ + "minecraft:dark_forest", + "byg:weeping_witch_forest", + "byg:dacite_ridges", + "byg:ebony_woods", + "byg:maple_taiga", + "byg:twilight_meadow", + "terralith:birch_taiga", + ] + featureName="pecan_tree_placed" + }, + { + acceptableBiomes=[ + "minecraft:dark_forest", + "byg:weeping_witch_forest", + "byg:dacite_ridges", + "byg:ebony_woods", + "byg:maple_taiga", + "byg:twilight_meadow", + "terralith:birch_taiga", + "terralith:steppe" + ] + featureName="walnut_tree_placed" + } +] diff --git a/minecraft/config/culinaryconstruct-server.toml b/minecraft/config/culinaryconstruct-server.toml new file mode 100644 index 0000000..18b0d8f --- /dev/null +++ b/minecraft/config/culinaryconstruct-server.toml @@ -0,0 +1,14 @@ +#Maximum amount of food from eating a single sandwich. +#Range: 1 ~ 100 +maxFoodPerSandwich = 10 +#If greater than -1, players cannot use ingredients with greater saturation than this amount. +#Range: -1.0 ~ 100.0 +maxIngredientSaturation = -1.0 +#If greater than -1, players cannot use ingredients with greater food than this amount. +#Range: -1 ~ 100 +maxIngredientFood = -1 +#Items or tags that cannot be used as ingredients. +ingredientBlacklist = [] +#If enabled, shows food and saturation amounts in the extended tooltip. +showNutritionInfo = false + diff --git a/minecraft/config/cull-less-leaves.json b/minecraft/config/cull-less-leaves.json new file mode 100644 index 0000000..e713995 --- /dev/null +++ b/minecraft/config/cull-less-leaves.json @@ -0,0 +1,4 @@ +{ + "enabled": true, + "depth": 4 +} \ No newline at end of file diff --git a/minecraft/config/cumulus_menus-client.toml b/minecraft/config/cumulus_menus-client.toml new file mode 100644 index 0000000..93b2ec3 --- /dev/null +++ b/minecraft/config/cumulus_menus-client.toml @@ -0,0 +1,9 @@ + +[Menu] + #Determines whether the Menu API is enabled or not + "Enable Menu API" = true + #Sets the current active menu title screen + "Active Menu" = "cumulus_menus:minecraft" + #Adds a button to the top right of the main menu screen to open a menu selection screen + "Enables menu selection button" = true + diff --git a/minecraft/config/curiotiab-client.toml b/minecraft/config/curiotiab-client.toml new file mode 100644 index 0000000..2121201 --- /dev/null +++ b/minecraft/config/curiotiab-client.toml @@ -0,0 +1,16 @@ + +#curiotiab's Client Config Settings +[settings] + #Use 'TIAB Curio' Header in Overlay + useheader = true + #Define what you want shown on Overlay. Use only One: 'TOTAL', 'CURRENT', OR 'BOTH' + #Current -> Shows time stored currently on bottle + #Total -> Shows total Accumulated time on bottle + #Both -> Shows both Total and Current time + #Allowed Values: TOTAL, CURRENT, BOTH + overlaymode = "BOTH" + +[guipostion] + x = 5 + y = 5 + diff --git a/minecraft/config/cutthrough-client.toml b/minecraft/config/cutthrough-client.toml new file mode 100644 index 0000000..4479d64 --- /dev/null +++ b/minecraft/config/cutthrough-client.toml @@ -0,0 +1,3 @@ +#Only allow targeting alive entities, as opposed to entities that have already died and only remain to render a death animation. Greatly helps in combat as dead entities will no longer absorb hits. +target_alive_only = true + diff --git a/minecraft/config/cyclepaintings.json5 b/minecraft/config/cyclepaintings.json5 new file mode 100644 index 0000000..7fb2e4e --- /dev/null +++ b/minecraft/config/cyclepaintings.json5 @@ -0,0 +1,6 @@ +{ + // Split by a , (comma). The paintings to ignore during the cycle. You can either input an entire mod's prefix (only the part before the : (colon)) or the entire line found via 'showRegisteredPaintingsDebug'. + "ignorePaintingsInCycleResourceLocation": "infernalexp,", + // When enabled, prints all paintings registered to the console. With this you can find which to add to the 'ignorePaintingsInCycleResourceLocationPrefix' config. + "showRegisteredPaintingsDebug": false +} \ No newline at end of file diff --git a/minecraft/config/cyclic-client.toml b/minecraft/config/cyclic-client.toml new file mode 100644 index 0000000..48284a7 --- /dev/null +++ b/minecraft/config/cyclic-client.toml @@ -0,0 +1,56 @@ + +##################################################################################### +#Client-side properties +##################################################################################### +[cyclic] + + ##################################################################################### + #Block Rendering properties. Color MUST have one # symbol and then six spots after so #000000 up to #FFFFFF + ##################################################################################### + [cyclic.blocks] + + [cyclic.blocks.text] + # True means this will hide the fluid contents chat message (right click) on relevant blocks (pylon, fluid generator, fluid hopper, solidifier, sprinkler, tank, cask) + FluidContents = true + + [cyclic.blocks.colors] + # Specify hex color of preview mode. default #00EE00 + harvester = "#00EE00" + # Specify hex color of preview mode. default #11BB00 + forester = "#11BB00" + # Specify hex color of preview mode. default #444044 + collector_item = "#444044" + # Specify hex color of preview mode. default #AA0011 + dropper = "#AA0011" + # Specify hex color of preview mode. default #00AA00 + detector_item = "#00AA00" + # Specify hex color of preview mode. default #404040 + peat_farm = "#404040" + # Specify hex color of preview mode. default #444044 + collector_fluid = "#444044" + # Specify hex color of preview mode. default #0000AA + miner = "#0000AA" + # Specify hex color of preview mode. default #FF0000 + structure = "#FF0000" + # Specify hex color of preview mode. default #00FF00 + detector_entity = "#00FF00" + + ##################################################################################### + #Item Rendering properties. Color MUST have one # symbol and then six spots after so #000000 up to #FFFFFF + ##################################################################################### + [cyclic.items] + + [cyclic.items.colors] + # Specify hex color of preview mode. default #FFC800 + shape_data = "#FFC800" + # Specify hex color of preview mode. default #0000FF + replace_scepter = "#FFFF00" + # Specify hex color of preview mode. default #0000FF + offset_scepter = "#00FF00" + # Specify hex color of preview mode. default #0000FF + build_scepter = "#0000FF" + # Specify hex color of preview mode for the GPS data card. default #0000FF + location = "#0000FF" + # Specify hex color of preview mode. default #0000FF + randomize_scepter = "#00EE00" + diff --git a/minecraft/config/cyclic.toml b/minecraft/config/cyclic.toml new file mode 100644 index 0000000..9d4f039 --- /dev/null +++ b/minecraft/config/cyclic.toml @@ -0,0 +1,810 @@ + +##################################################################################### +#Features with configurable properties are split into categories +##################################################################################### +[cyclic] + + ##################################################################################### + # Configs make sure players will not be able to craft any in survival (api only allows me to disable original base level potion, stuff like splash/tipped arrows are out of my control, for futher steps i suggest modpacks hide them from JEI as well if desired, or bug Mojang to implement JSON brewing stand recipes) + ##################################################################################### + [cyclic.potion] + + [cyclic.potion.antigravity] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.flight] + # Set false to disable the base recipe + enabled = false + + [cyclic.potion.blind] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.attack_range] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.reach_distance] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.butterfingers] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.waterwalk] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.haste] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.stun] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.resistance] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.hunger] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.snowwalk] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.gravity] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.frost_walker] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.magnetic] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.wither] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.levitation] + # Set false to disable the base recipe + enabled = true + + [cyclic.potion.swimspeed] + # Set false to disable the base recipe + enabled = true + + ##################################################################################### + # Enchantment related configs (if disabled, they may still show up as NBT on books and such but have functions disabled and are not obtainable in survival) + ##################################################################################### + [cyclic.enchantment] + + [cyclic.enchantment.traveler] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.reach] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.beekeeper] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.experience_boost] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.launch] + # (Multijump) Set false to disable Multi Jump enchantment + enabled = true + + [cyclic.enchantment.ender] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.disarm] + # Set false to stop enchantment from working + enabled = true + # Enchant level drop rate. % = drop + (level-1)*drop + #Range: 1 ~ 100 + percentPerLevel = 15 + # Mobs in this list cannot be disarmed and have their weapon stolen by the disarm enchantment + ingoredMobs = ["alexsmobs:mimicube"] + + [cyclic.enchantment.excavate] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.magnet] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.multishot] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.beheading] + # Beheading enchant add player skin head drop, add any mob id and any skin + EntityMHF = ["minecraft:blaze:MHF_Blaze", "minecraft:cat:MHF_Ocelot", "minecraft:cave_spider:MHF_CaveSpider", "minecraft:chicken:MHF_Chicken", "minecraft:cow:MHF_Cow", "minecraft:enderman:MHF_Enderman", "minecraft:ghast:MHF_Ghast", "minecraft:iron_golem:MHF_Golem", "minecraft:magma_cube:MHF_LavaSlime", "minecraft:mooshroom:MHF_MushroomCow", "minecraft:ocelot:MHF_Ocelot", "minecraft:pig:MHF_Pig", "minecraft:zombie_pigman:MHF_PigZombie", "minecraft:sheep:MHF_Sheep", "minecraft:slime:MHF_Slime", "minecraft:spider:MHF_Spider", "minecraft:squid:MHF_Squid", "minecraft:villager:MHF_Villager", "minecraft:witch:MHF_Witch", "minecraft:wolf:MHF_Wolf", "minecraft:guardian:MHF_Guardian", "minecraft:elder_guardian:MHF_Guardian", "minecraft:snow_golem:MHF_SnowGolem", "minecraft:silverfish:MHF_Silverfish", "minecraft:endermite:MHF_Endermite"] + # Percentage increase per level of enchant. Formula [percent + (level - 1) * per_level] + #Range: 1 ~ 99 + per_level = 25 + # Base perecentage chance to drop a head on kill + #Range: 1 ~ 99 + percent = 20 + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.quickshot] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.venom] + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.life_leech] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.curse] + # (Gloom) Set false to stop enchantment from working + enabled = true + # Set list of effects for Gloom enchant (cyclic:curse) to ignore and not use these + ignored = ["minecraft:bad_omen", "minecraft:nausea", "botania:clear"] + + [cyclic.enchantment.auto_smelt] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.growth] + # Radius increase per level. Actual radius is (this * level + 1) + #Range: 1 ~ 16 + radius = 2 + # Set false to stop enchantment from working + enabled = true + # Height of growth enchantment range + #Range: 0 ~ 16 + height = 2 + # Max number of crops grown per growth per level. Actual is (level * this + 4 bonus when its raining) + #Range: 1 ~ 16 + limit = 4 + # Chance of trying to grow per tick / 100 + #Range: 1 ~ 100 + percent = 4 + # If true only players can use this (false allows anything with hands ie armor stands, zombies, etc) + player_only = false + + [cyclic.enchantment.step] + # Set false to stop enchantment from working + enabled = false + + [cyclic.enchantment.laststand] + # How many ticks of Absorption hearts given on trigger, 0 to disable + #Range: 0 ~ 9999 + potion_ticks = 600 + # Base XP cost to activate at level 1 (level 2 is this/2) + #Range: 1 ~ 9999 + xp_cost = 50 + # How many ticks of cooldown, 0 to disable + #Range: 0 ~ 99999 + cooldown = 20 + # Set false to stop enchantment from working + enabled = true + + [cyclic.enchantment.steady] + # Set false to stop enchantment from working + enabled = true + + ##################################################################################### + # Worldgen settings + ##################################################################################### + [cyclic.worldgen] + + [cyclic.worldgen.flowers] + # Do the four generate in the world. If false, the 4 flower blocks and 3 features (flower_all, flower_tulip_ flower_lime) will still be registered and can be used externally (data packs etc), but the mod will not use the features to generate/place flowers in world-generation + enabled = false + + [cyclic.worldgen.cyan_podzol_legacy] + # Enable the legacy feature that will spawn a Cyan flower when bonemeal is used on Podzol + enabled = false + + ##################################################################################### + # Block specific configs + ##################################################################################### + [cyclic.blocks] + # If true, then all potions marked as harmful/negative will be used in addition to the 'anti_beacon.potion_list' for cures and immunities (used by both sponge and artemisbeacon). + harmful_potions = false + # Allows the dimensional Transfer Nodes to cross dimensions (no chunk loading is done, you have to do that on your own); This affects blocks cyclic:wireless_energy, cyclic:wireless_item, cyclic:wireless_fluid, cyclic:wireless_transmitter; If you change it to false it will only work if the target is in the same dimension. + wireless_transfer_dimensional = true + + [cyclic.blocks.peace_candle] + # Reach of the candle for spawn prevention + #Range: 0 ~ 64 + radius = 32 + # Height reach of the candle for spawn prevention + #Range: 0 ~ 512 + height = 4 + + [cyclic.blocks.altar_destruction] + # Reach for explosion prevention + #Range: 1 ~ 128 + radius = 32 + # Height for explosion prevention + #Range: 1 ~ 512 + height = 8 + + # Ender Anchor settings + [cyclic.blocks.eye_teleport] + # Maximum distance to activate + #Range: 2 ~ 256 + range = 128 + # Exp cost on teleport + #Range: 0 ~ 500 + exp = 0 + # Hunger cost on teleport + #Range: 0 ~ 20 + hunger = 1 + # Tick delay between checks, faster checks can consume server resources (1 means check every tick; 20 means only check once per second) + #Range: 1 ~ 20 + frequency = 5 + + [cyclic.blocks.disenchanter] + # Power per use disenchanter + #Range: > 0 + energy_cost = 2500 + # Cost of (or payment for if negative) per enchanted book generated + #Range: -1000 ~ 16000 + fluid_cost = 100 + + [cyclic.blocks.anvil] + # Power per repair anvil + #Range: > 0 + energy_cost = 250 + + [cyclic.blocks.dropper] + # Power per use dropper + #Range: > 0 + energy_cost = 50 + + [cyclic.blocks.water_candle] + # Reach of the candle + #Range: 1 ~ 64 + radius = 8 + # Tick rate of the candle + #Range: > 1 + tick_rate = 60 + + [cyclic.blocks.teleport] + # Power per use + #Range: > 0 + energy_cost = 400 + # Power per use while crossing dimensions + #Range: > 0 + energy_cost_xdim = 8000 + + [cyclic.blocks.sound] + # Sound Recorder - how far out does it listen to record sounds + #Range: 1 ~ 64 + radius = 8 + + # battery settings + [cyclic.blocks.battery] + # RF/t charging rate for the battery item slot + #Range: > 1 + charge = 8000 + # Maximum storage capacity; default 6400000 [warning: energy contents of items in world may be reset when changing this value] + #Range: > 1 + capacity = 6400000 + + [cyclic.blocks.generator_fuel] + # RF energy per tick generated while burning furnace fuel in this machine. Burn time in ticks is the same as furnace values, so 1 coal = 1600 ticks + #Range: > 1 + rf_per_tick = 80 + + [cyclic.blocks.peat_farm] + # Power per use peat_farm + #Range: > 0 + energy_cost = 500 + + [cyclic.blocks.miner] + # Power per use miner + #Range: > 0 + energy_cost = 10 + + # fisher settings + [cyclic.blocks.fisher] + # Chance to Fish from nearby water. Smaller values is slower fish + #Range: 1.0E-6 ~ 0.999 + chance = 0.06 + # Radius to Fish from nearby water + #Range: 1 ~ 32 + radius = 12 + + [cyclic.blocks.harvester] + # Power per use harvester + #Range: > 0 + energy_cost = 250 + + [cyclic.blocks.forester] + # Power per use forester + #Range: > 0 + energy_cost = 50 + + [cyclic.blocks.crafter] + # Power per use crafter + #Range: > 0 + energy_cost = 500 + + [cyclic.blocks.sponge_lava] + # Reach of the sponge + #Range: 1 ~ 64 + radius = 8 + + [cyclic.blocks.anvil_void] + # Payment per void action, if not zero + #Range: > 0 + fluid_cost = 25 + + # Ender Trigger settings + [cyclic.blocks.eye_redstone] + # Maximum distance to activate + #Range: 2 ~ 256 + range = 32 + # Tick delay between checks, faster checks can consume server resources (1 means check every tick; 20 means only check once per second) + #Range: 1 ~ 20 + frequency = 5 + + [cyclic.blocks.peat] + # Chance that Peat Bog converts to Peat when wet (is multiplied by the number of surrounding water blocks) + #Range: 0.0010000000474974513 ~ 1.0 + conversion_chance = 0.07999999821186066 + + [cyclic.blocks.no_soliciting] + # Reach of the no_soliciting for spawn prevention + #Range: 0 ~ 64 + radius = 32 + # Height reach of the no_soliciting for spawn prevention + #Range: 0 ~ 512 + height = 4 + + # Sprinkler settings + [cyclic.blocks.sprinkler] + # Tick rate. 20 will fire one block per second + #Range: 1 ~ 20 + ticks = 20 + # Radius + #Range: 1 ~ 32 + radius = 4 + # Water consumption + #Range: 0 ~ 1000 + water = 5 + + # experience_pylon settings + [cyclic.blocks.experience_pylon] + # Radius to pickup xp orbs + #Range: 1 ~ 64 + radius = 16 + + # soundproofing settings + [cyclic.blocks.soundproofing] + # Radius of sound proofing (distance from each block that it will listen) + #Range: 1 ~ 16 + radius = 6 + + [cyclic.blocks.cables] + + [cyclic.blocks.cables.fluid] + # How many buckets of buffer fluid the fluid cable can hold (for each direction. for example 2 here means 2000ub in each face) + #Range: 1 ~ 32 + buffer = 16 + # How many fluid units per tick can flow through these cables each tick (1 bucket = 1000) including normal flow and extraction mode + #Range: > 100 + flow = 1000 + + [cyclic.blocks.cables.energy] + # How much buffer the energy cables hold (must not be smaller than flow) + #Range: > 1 + buffer = 32000 + # How fast energy flows in these cables (must not be greater than buffer) + #Range: > 100 + flow = 1000 + + [cyclic.blocks.generator_food] + # RF energy per tick generated while burning food in this machine + #Range: > 1 + rf_per_tick = 60 + # This [factor * (item.food + item.saturation) = ticks] results in the number of ticks food will burn at. IE Bread has (5 + 0.6) with factor 100, will burn for 560 ticks. + #Range: > 1 + ticks_per_food = 100 + + [cyclic.blocks.magnet_block] + # Reach for magnet distance to find items + #Range: 1 ~ 128 + radius = 16 + + [cyclic.blocks.packager] + # Power per recipe in the packager + #Range: > 0 + energy_cost = 50 + + [cyclic.blocks.collector_fluid] + # Power per use collector_fluid + #Range: > 0 + energy_cost = 500 + + [cyclic.blocks.structure] + # Power per tick while in use + #Range: > 0 + energy_cost = 10 + + # Ender shelf settings + [cyclic.blocks.ender_shelf] + # Controller Max distance to search (using manhattan distance) + #Range: 1 ~ 256 + controller_distance = 64 + # Each shelf has five rows. Set the number of books stored per row here + #Range: 1 ~ 1024 + books_per_row = 256 + + [cyclic.blocks.uncraft] + # Power per use uncraft + #Range: > 0 + energy_cost = 1000 + + [cyclic.blocks.generator_solar] + # Ticks between power gen interval. Example: 40 ticks is 2 seconds. 0 means every tick it generates + #Range: > 0 + ticks = 60 + # Base level of solar power generation (affected by weather contitions). + #Range: > 1 + energy = 4 + + [cyclic.blocks.beacon] + # Power per tick while in use + #Range: 0 ~ 64000 + energy_cost = 0 + + [cyclic.blocks.anvil_magma] + # Cost of magma fluid per action + #Range: 1 ~ 64000 + fluid_cost = 100 + + [cyclic.blocks.terra_preta] + # Growth interval in ticks (100 would be every 5 seconds). + #Range: 1 ~ 64000 + growth_interval = 100 + # Chance that the crop will grow after the interval + #Range: 0.0 ~ 1.0 + growth_chance = 0.5 + # growth height above the soil + #Range: 2 ~ 32 + height = 8 + + [cyclic.blocks.uncrafter] + # When searching for a recipe, does it ignore all NBT values (such as enchantments, RepairCost, Damage, etc). For example, if false it will not uncraft damaged or enchanted items + nbt_ignored = false + # Ticks used for each uncraft + #Range: 1 ~ 9999 + ticks = 60 + # ITEM IDS HERE. Block ALL recipes that output this item, no matter which recipe they use + ignore_list = ["minecraft:elytra", "minecraft:tipped_arrow", "minecraft:magma_block", "minecraft:stick", "spectrite:spectrite_arrow", "spectrite:spectrite_arrow_special", "techreborn:uumatter", "projecte:*"] + # RECIPE IDS HERE. Block these recipe ids from being reversed, but do not block all recipes for this output item + ignore_recipes = ["minecraft:white_dye_from_lily_of_the_valley", "minecraft:orange_dye_from_orange_tulip", "minecraft:magenta_dye_from_allium", "minecraft:magenta_dye_from_lilac", "minecraft:light_blue_dye_from_blue_orchid", "minecraft:yellow_dye_from_sunflower", "minecraft:yellow_dye_from_dandelion", "minecraft:pink_dye_from_peony", "minecraft:pink_dye_from_pink_tulip", "minecraft:light_gray_dye_from_oxeye_daisy", "minecraft:light_gray_dye_from_azure_bluet", "minecraft:light_gray_dye_from_white_tulip", "minecraft:blue_dye_from_cornflower", "minecraft:red_dye_from_poppy", "minecraft:red_dye_from_rose_bush", "minecraft:red_dye_from_tulip", "minecraft:black_dye_from_wither_rose", "minecraft:blue_dye", "minecraft:black_dye", "minecraft:brown_dye", "botania:cobweb", "minecraft:magma_cream", "minecraft:beacon", "minecraft:stick_from_bamboo_item", "minecraft:netherite_ingot_from_netherite_block", "mysticalagriculture:essence*", "mysticalagriculture:farmland_till", "refinedstorage:coloring_recipes*", "forcecraft:transmutation*", "cyclic:flower_purple_tulip", "cyclic:flower_absalon_tulip", "cyclic:flower_cyan", "cyclic:flower_lime_carnation", "cyclic:fireball", "cyclic:shapeless/spark"] + + [cyclic.blocks.anti_beacon] + # List of extra effects to clear. supports wildcard such as 'cyclic:*'. (This list is is used even if harmful_potions=false or true both) + potion_list = [] + # Ticks to fire anti beacon and remove effects from entities (20 = 1 second). Does not affect potion immunity which applies regardless of ticks. This only used if you gain a potion effect out of range and then walk into range, so keep this large. + #Range: 20 ~ 9999 + ticks = 200 + # Radius to protect players and entities from potion effects being applied (used by both sponge and artemisbeacon). + #Range: 1 ~ 128 + radius = 16 + + [cyclic.blocks.user] + # Power per use user + #Range: > 0 + energy_cost = 0 + + # terra_glass settings + [cyclic.blocks.terra_glass] + # ticks between growth cycles + #Range: 1 ~ 10000 + timer = 100 + # growth height below the glass + #Range: 0 ~ 32 + height = 8 + + [cyclic.blocks.facades] + # + # These blocks are not allowed to be used as Facades for blocks because they look weird (used by cables and Glowstone Facade and Soundproofing Facade and others). If you want to ignore one entire mod use an entry like this : storagenetwork:* + itemsNotAllowed = ["minecraft:ladder", "minecraft:double_plant", "minecraft:waterlily", "minecraft:torch", "minecraft:*_torch", "minecraft:redstone", "minecraft:iron_bars", "minecraft:chest", "minecraft:ender_chest", "minecraft:sculk_vein", "minecraft:string", "minecraft:vine", "minecraft:rail", "minecraft:*_rail", "minecraft:brewing_stand", "minecraft:*_dripleaf", "minecraft:*_pane", "minecraft:*_sapling", "minecraft:*_sign", "minecraft:*_door", "minecraft:*_banner", "minecraft:*_shulker_box", "cyclic:*_pipe", "cyclic:*_bars", "storagenetwork:*"] + + [cyclic.blocks.facades.cables] + # + # Allow cables to have blocks placed in them as facades (sneak-left-click to set; use empty hand to remove). Set to false to disable facades + enabled = true + + # battery_clay settings + [cyclic.blocks.battery_clay] + # Maximum storage capacity; default 16000 [warning: energy contents of items in world may be reset when changing this value] + #Range: > 1 + capacity = 16000 + + ##################################################################################### + # Logging related configs + ##################################################################################### + [cyclic.logging] + # Unblock info logs; very spammy; can be useful for testing certain issues + info = false + + ##################################################################################### + # Item specific configs + ##################################################################################### + [cyclic.items] + + ##################################################################################### + # scythe_harvest settings. note radius is halved while player is sneaking + ##################################################################################### + [cyclic.items.scythe_harvest] + # Radius defines how far it reaches (for example radius 6 is 13x13 square) + #Range: 0 ~ 32 + radius = 6 + + # apple_ender settings + [cyclic.items.apple_ender] + # Which structure tags are looked for + structure_tags = ["minecraft:eye_of_ender_located", "minecraft:on_woodland_explorer_maps", "minecraft:on_ocean_explorer_maps", "minecraft:village"] + # How many results the client will see + #Range: 1 ~ 60 + printed = 5 + + [cyclic.items.spawner_seeker] + # Range in all directions to search for spawner + #Range: 1 ~ 256 + range = 64 + + [cyclic.items.wand_hypno] + # Range to search out enemies for this multi-target attack + #Range: 1 ~ 256 + range = 16 + # Energy cost per item use + #Range: 1 ~ 50000 + energy = 500 + + [cyclic.items.shield_leather] + # How much weaker than the regular shield is this item (used to calculate damage blocked) + #Range: 0 ~ 100 + blocked_damage_percent = 20 + + ##################################################################################### + # spell_water settings + ##################################################################################### + [cyclic.items.spell_water] + # Radius defines how far it reaches + #Range: 0 ~ 32 + radius = 3 + + ##################################################################################### + # scythe_leaves settings. note radius is halved while player is sneaking + ##################################################################################### + [cyclic.items.scythe_leaves] + # Radius defines how far it reaches (for example radius 6 is 13x13 square) + #Range: 0 ~ 32 + radius = 6 + + ##################################################################################### + # Caving Torch Charm settings + ##################################################################################### + [cyclic.items.caving_torch] + # Light level at which to start placing down a torch + #Range: 0 ~ 14 + light_limit = 7 + #Light level of the current block after placing down a torch. Must be greater than light_limit + #Higher values means torches will be placed closer to you. Lower values means torches will overlap less, + #but might result in small dark spots between torches + #Range: 1 ~ 14 + light_target = 10 + # Whether to prioritise placing torches on walls + prefer_walls = true + # Which wall to place torches on when digging a 1-wide tunnel + #True means left, False means right + prefer_left_wall = false + + ##################################################################################### + # scythe_brush settings. note radius is halved while player is sneaking + ##################################################################################### + [cyclic.items.scythe_brush] + # Radius defines how far it reaches (for example radius 6 is 13x13 square) + #Range: 0 ~ 32 + radius = 6 + + [cyclic.items.charm_torch] + # Light level limit for placing torches + #Range: 0 ~ 15 + light_level = 9 + + ##################################################################################### + # Obsidian gear settings + ##################################################################################### + [cyclic.items.obsidian] + # Weapon damage + #Range: 0.10000000149011612 ~ 99.0 + damage = 10.5 + # Damage Reduction + #Range: 1 ~ 99 + chest = 11 + # Damage Reduction + #Range: 1 ~ 99 + boots = 7 + # Armor toughness + #Range: 0.10000000149011612 ~ 99.0 + toughness = 6.0 + # Damage Reduction + #Range: 1 ~ 99 + helm = 7 + # Damage Reduction + #Range: 1 ~ 99 + leg = 10 + + # Sack of Holding settings + [cyclic.items.tile_transporter] + # Block these from being picked up + disable_pickup = ["parabox:parabox", "extracells:fluidcrafter", "extracells:ecbaseblock", "extracells:fluidfiller", "exnihilosequentia:*", "refinedstorage:*", "tconstruct:seared_fuel_tank", "tconstruct:smeltery_controller", "tconstruct:seared_drain", "tconstruct:seared_fuel_gauge", "tconstruct:seared_ingot_tank", "tconstruct:seared_ingot_gauge", "tconstruct:seared_melter", "tconstruct:seared_heater", "tconstruct:scorched_drain", "tconstruct:scorched_duct", "tconstruct:scorched_chute", "tconstruct:foundry_controller", "tconstruct:scorched_alloyer", "rftoolspower:cell3", "rftoolspower:cell2", "rftoolspower:cell1", "rftoolspower:cell3", "rftoolspower:cell2", "rftoolspower:cell1"] + # Override chest placement when a 1/2 split chest is picked up, and set placed block as a singleton chests (prevents visual glitch of the open-sided half chest). Set to false to restore old behavior and allow the split-chest placement. + overrideChestSingle = true + + [cyclic.items.charm_luck] + # Boost given by item charm_luck + #Range: 0 ~ 100 + boost = 10 + + [cyclic.items.prospector] + # Ore Prospector radius around player to search for ores + #Range: 1 ~ 256 + range = 32 + # Ore Prospector height around player to search for ores + #Range: 1 ~ 128 + height = 8 + + [cyclic.items.chorus_flight] + # Seconds of flight per chorus_flight + #Range: 1 ~ 20000 + ticks = 1200 + + [cyclic.items.monster_ball] + # Entity ids that cannot be picked up with the Monster all + ignore_list = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:warden"] + + # Heart items + [cyclic.items.heart] + # Maximum number of hearts that can be attained (including initial 10) + #Range: 1 ~ 200 + maximum = 1 + # Experience given when eating a poisoned heart + #Range: 0 ~ 99999 + experience = 500 + + ##################################################################################### + # scythe_forage settings. note radius is halved while player is sneaking + ##################################################################################### + [cyclic.items.scythe_forage] + # Radius defines how far it reaches (for example radius 6 is 13x13 square) + #Range: 0 ~ 32 + radius = 6 + + [cyclic.items.shield_wood] + # How much weaker than the regular shield is this item (used to calculate damage blocked) + #Range: 0 ~ 100 + blocked_damage_percent = 60 + + [cyclic.items.chorus_spectral] + # Seconds of noClip per chorus_spectral + #Range: 1 ~ 20000 + ticks = 600 + + ##################################################################################### + # spell_ice settings + ##################################################################################### + [cyclic.items.spell_ice] + # Radius defines how far it reaches + #Range: 0 ~ 32 + radius = 3 + + [cyclic.items.wand_missile] + # Range to search out enemies for this attack + #Range: 1 ~ 512 + range = 64 + # Energy cost per item use + #Range: 1 ~ 50000 + energy = 150 + + [cyclic.items.charm_attack_speed] + # Boost given by item charm_attackspeed + #Range: 0.0 ~ 2.0 + boost = 0.5 + + [cyclic.items.charm_speed] + # Boost given by item charm_speed + #Range: 0.0 ~ 2.0 + boost = 0.5 + + [cyclic.items.shield_flint] + # What % chance does this have to apply thorns damage against ranged non-explosive attackers + #Range: 0 ~ 100 + damage = 50 + # How much weaker than the regular shield is this item (used to calculate damage blocked) + #Range: 0 ~ 100 + blocked_damage_percent = 30 + + # Wand settings + [cyclic.items.teleport_wand] + # Maximum distance to activate + #Range: 8 ~ 1024 + range = 256 + + ##################################################################################### + # Emerald gear settings + ##################################################################################### + [cyclic.items.emerald] + # Weapon damage + #Range: 0.10000000149011612 ~ 99.0 + damage = 4.5 + # Damage Reduction + #Range: 1 ~ 99 + chest = 9 + # Damage Reduction + #Range: 1 ~ 99 + boots = 4 + # Armor toughness + #Range: 0.10000000149011612 ~ 99.0 + toughness = 3.0 + # Damage Reduction + #Range: 1 ~ 99 + helm = 4 + # Damage Reduction + #Range: 1 ~ 99 + leg = 7 + + [cyclic.items.laser_cannon] + # Maximum range to hit target + #Range: 1 ~ 9999 + range = 6000 + # Damage dealt at point blank range + #Range: > 1 + damage_close = 20 + # Damage dealt when firing at range + #Range: > 1 + damage_far = 12 + # Energy cost per firing; only drained when living targets are hit + #Range: > 1 + energy = 10 + # Render the laser beam even when there is no living target (used to be hardcoded as false, so change this back to restore legacy behavior) + render_misses = true + + ##################################################################################### + # Edit the permissions of all commands added by the mod. false means anyone can use, true means only OP players can use + ##################################################################################### + [cyclic.command] + # True means only players with OP can use this /cyclic command + dev = false + # True means only players with OP can use this /cyclic command + ping = false + # True means only players with OP can use this /cyclic command + health = true + # True means only players with OP can use this /cyclic command + gethome = false + # True means only players with OP can use this /cyclic command + home = true + # True means only players with OP can use this /cyclic command + hunger = true + diff --git a/minecraft/config/cyclopscore-common.toml b/minecraft/config/cyclopscore-common.toml new file mode 100644 index 0000000..76eb9d1 --- /dev/null +++ b/minecraft/config/cyclopscore-common.toml @@ -0,0 +1,23 @@ + +[core] + + [core.general] + #If mod compatibility loader should crash hard if errors occur in that process. + crashOnModCompatCrash = false + #Set 'true' to enable development debug mode. This will result in a lower performance! + debug = false + #The anonymous id used by the analytics service. + anonymousAnalyticsID = "b7bdb86a-1d72-45f6-977e-f20566994ce8" + #If the recipe loader should crash when finding invalid recipes. + crashOnInvalidRecipe = false + #If an anonymous mod startup analytics request may be sent to our analytics service. + analytics = true + #If the version checker should be enabled. + versionChecker = true + +[general] + + [general.general] + #If a button should be added to the main menu to open a dev world (shift-click creates a new world). + devWorldButton = false + diff --git a/minecraft/config/daily_rewards-common.toml b/minecraft/config/daily_rewards-common.toml new file mode 100644 index 0000000..99972a5 --- /dev/null +++ b/minecraft/config/daily_rewards-common.toml @@ -0,0 +1,148 @@ + +#Daily Rewards (General configuration) +[General] + #Automatically reward players after the rewardTimePerDay is reached. (e.g. 30 minutes). If disabled the reward command needs to be executed manually to reward the players. + automaticRewardPlayers = true + #Automatically reward players with specials after the rewardTimePerDay is reached. (e.g. 30 minutes). If disabled the reward command needs to be executed manually to reward the players. + automaticRewardSpecialPlayers = true + #Time in minutes the players needs to be online on the server before receiving a reward for the day. + #Range: 1 ~ 1440 + rewardTimePerDay = 30 + #Shows a unclaimed rewards message when a player joins the server (if there are unclaimed rewards). + showUnclaimedRewardsOnPlayerJoin = true + #Shows a unclaimed special rewards message when a player joins the server (if there are unclaimed special rewards). + showUnclaimedRewardsSpecialOnPlayerJoin = true + #Shows a message when a player receives a reward. + showReceivedRewardMessage = true + #Shows a message when a player receives a special reward. + showReceivedRewardSpecialMessage = true + #Shows a message with the reward claim command to claim rewards. + showRewardClaimCommandMessage = true + #Shows the rewards menu when a player joins the server (if there are unclaimed rewards). + showRewardMenuOnPlayerJoin = false + #Type of the reward screen. + #Allowed Values: COMPACT, DEFAULT_OVERVIEW, SPECIAL_OVERVIEW + rewardScreenType = "COMPACT" + +["Fill Items"] + #Use fill items if there are not enough valid items for a month. (e.g. if there are only 2 items for a month and the player claims 3 rewards, the 3rd reward will be a fill item) + useFillItems = true + #List of normal fill items which are used in the case we have not enough valid items for a month. + normalFillItems = ["minecraft:cooked_beef:16", "minecraft:iron_ingot:8", "minecraft:oak_log:16", "minecraft:white_wool:4", "minecraft:gold_ingot:8", "minecraft:wheat_seeds:16", "minecraft:pumpkin_seeds:16", "minecraft:melon_seeds:16", "minecraft:beetroot_seeds:16", "minecraft:arrow:32"] + #List of rare fill items which are used in the case we have not enough valid items for a month. + rareFillItems = ["minecraft:diamond", "minecraft:quartz:3", "minecraft:spyglass"] + #The chance to use a rare item instead of a regular one. e.g. 7 means every 7th items could be a rare item. (0 = disabled) + #Range: 0 ~ 100 + rareFillItemsChance = 7 + #List of loot bag fill items which are used in the case we have not enough valid items for a month. + lootBagFillItems = ["lootbagmod:lootbag"] + #The chance to use a loot bag item instead of a regular one. e.g. 15 means every 15th items could be a loot bag item. (0 = disabled) + #Range: 0 ~ 100 + lootBagFillItemsChance = 15 + +["Rewards Items"] + #Shuffle the rewards items instead of using the defined order. + shuffleRewardsItems = true + #Shuffle the special rewards items instead of using the defined order. + shuffleRewardsSpecialItems = false + #Preview the upcoming rewards items for the next days. + previewRewardsItems = true + #Preview the upcoming special rewards items for the next days. + previewRewardsSpecialItems = true + + ["Rewards Items"."January Rewards Items"] + #List of rewards items for January + rewardsJanuaryItems = ["minecraft:oak_log:32", "minecraft:cooked_salmon:16", "minecraft:white_wool:16", "minecraft:cake:1"] + #Single reward item or list of special streak rewards items for January. (Only used if rewardsJanuarySpecialItemsNeededDays is greater than 0) + rewardsJanuarySpecialItems = ["minecraft:cooked_salmon:1", "minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for January. (Use empty list to allow all players to get special rewards items for January) + rewardsJanuarySpecialUsers = [""] + + ["Rewards Items"."February Rewards Items"] + #List of rewards items for February + rewardsFebruaryItems = [] + #Single reward item or list of special streak rewards items for February. (Only used if rewardsFebruarySpecialItemsNeededDays is greater than 0) + rewardsFebruarySpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for February. (Use empty list to allow all players to get special rewards items for February) + rewardsFebruarySpecialUsers = [""] + + ["Rewards Items"."March Rewards Items"] + #List of rewards items for March + rewardsMarchItems = [] + #Single reward item or list of special streak rewards items for March. (Only used if rewardsMarchSpecialItemsNeededDays is greater than 0) + rewardsMarchSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for March. (Use empty list to allow all players to get special rewards items for March) + rewardsMarchSpecialUsers = [""] + + ["Rewards Items"."April Rewards Items"] + #List of rewards items for April + rewardsAprilItems = [] + #Single reward item or list of special streak rewards items for April. (Only used if rewardsAprilSpecialItemsNeededDays is greater than 0) + rewardsAprilSpecialItems = ["minecraft:eggs:1", "minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for April. (Use empty list to allow all players to get special rewards items for April) + rewardsAprilSpecialUsers = [""] + + ["Rewards Items"."May Rewards Items"] + #List of rewards items for May + rewardsMayItems = ["minecraft:egg:16"] + #Single reward item or list of special streak rewards items for May. (Only used if rewardsMaySpecialItemsNeededDays is greater than 0) + rewardsMaySpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for May. (Use empty list to allow all players to get special rewards items for May) + rewardsMaySpecialUsers = [""] + + ["Rewards Items"."June Rewards Items"] + #List of rewards items for June + rewardsJuneItems = [] + #Single reward item or list of special streak rewards items for June. (Only used if rewardsJuneSpecialItemsNeededDays is greater than 0) + rewardsJuneSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for June. (Use empty list to allow all players to get special rewards items for June) + rewardsJuneSpecialUsers = [""] + + ["Rewards Items"."July Rewards Items"] + #List of rewards items for July + rewardsJulyItems = [] + #Single reward item or list of special streak rewards items for July. (Only used if rewardsJulySpecialItemsNeededDays is greater than 0) + rewardsJulySpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for July. (Use empty list to allow all players to get special rewards items for July) + rewardsJulySpecialUsers = [""] + + ["Rewards Items"."August Rewards Items"] + #List of rewards items for August + rewardsAugustItems = [] + #Single reward item or list of special streak rewards items for August. (Only used if rewardsAugustSpecialItemsNeededDays is greater than 0) + rewardsAugustSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for August. (Use empty list to allow all players to get special rewards items for August) + rewardsAugustSpecialUsers = [""] + + ["Rewards Items"."September Rewards Items"] + #List of rewards items for September + rewardsSeptemberItems = [] + #Single reward item or list of special streak rewards items for September. (Only used if rewardsSeptemberSpecialItemsNeededDays is greater than 0) + rewardsSeptemberSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for September. (Use empty list to allow all players to get special rewards items for September) + rewardsSeptemberSpecialUsers = [""] + + ["Rewards Items"."October Rewards Items"] + #List of rewards items for October + rewardsOctoberItems = [] + #Single reward item or list of special streak rewards items for October. (Only used if rewardsOctoberSpecialItemsNeededDays is greater than 0) + rewardsOctoberSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for October. (Use empty list to allow all players to get special rewards items for October) + rewardsOctoberSpecialUsers = [""] + + ["Rewards Items"."November Rewards Items"] + #List of rewards items for November + rewardsNovemberItems = [] + #Single reward item or list of special streak rewards items for November. (Only used if rewardsNovemberSpecialItemsNeededDays is greater than 0) + rewardsNovemberSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for November. (Use empty list to allow all players to get special rewards items for November) + rewardsNovemberSpecialUsers = [""] + + ["Rewards Items"."December Rewards Items"] + #List of rewards items for December + rewardsDecemberItems = ["minecraft:firework_rocket:32"] + #Single reward item or list of special streak rewards items for December. (Only used if rewardsDecemberSpecialItemsNeededDays is greater than 0) + rewardsDecemberSpecialItems = ["minecraft:cake:1", "minecraft:cookie:1"] + #List of users which will get the special rewards items for December. (Use empty list to allow all players to get special rewards items for December) + rewardsDecemberSpecialUsers = [""] + diff --git a/minecraft/config/darkdoppelganger-common.toml b/minecraft/config/darkdoppelganger-common.toml new file mode 100644 index 0000000..7e81753 --- /dev/null +++ b/minecraft/config/darkdoppelganger-common.toml @@ -0,0 +1,56 @@ + +#Dark Doppelganger Configuration +[dark_doppelganger] + #Health of the Dark Doppelganger + #Range: 1.0 ~ 100000.0 + health = 6000.0 + #Attack Damage of the Dark Doppelganger + #Range: 1.0 ~ 100.0 + attack_damage = 20.0 + #Movement Speed of the Dark Doppelganger + #Range: 0.1 ~ 1.0 + movement_speed = 0.2 + #Knockback Resistance of the Dark Doppelganger + #Range: 0.0 ~ 1.0 + knockback_resistance = 0.6 + #Armor of the Dark Doppelganger + #Range: 0.0 ~ 100.0 + armor = 20.0 + #Follow Range of the Dark Doppelganger + #Range: 1.0 ~ 128.0 + follow_range = 64.0 + #Hard mode of the Dark Doppelganger + hard_mode = false + #Maximum damage the Dark Doppelganger can take from a single hit. + #Set to 0 to disable the cap. + #Range: 0.0 ~ 100000.0 + damage_cap_per_hit = 150.0 + #Multiplier applied to all of the Dark Doppelganger's spell power attributes + #after copying them from the summoner. + #1.0 = same as player, 1.5 = +50%, 2.0 = double, etc. + #Range: 0.0 ~ 10.0 + spell_power_multiplier = 1.25 + #List of banned armor items (e.g., modid:item_name or modid:*) that should not be copied to the Dark Doppelganger + banned_armor = ["cataclysm:cursium_helmet", "cataclysm:cursium_chestplate", "cataclysm:cursium_leggings", "cataclysm:cursium_boots", "mycoolmod:*"] + #List of all spells the Dark Doppelganger can use in the final phase (Hard mode must be enabled) + final_phase_spells = ["irons_spellbooks:eldritch_blast", "irons_spellbooks:ray_of_frost", "traveloptics:tidal_grasp", "irons_spellbooks:abyssal_shroud", "traveloptics:shadowed_miasma"] + +#Minion Configuration +[minion] + #Range: 1.0 ~ 1000.0 + health = 40.0 + #Range: 0.1 ~ 100.0 + attack_damage = 6.0 + #Range: 0.01 ~ 1.0 + movement_speed = 0.28 + #Range: 0.0 ~ 100.0 + armor = 4.0 + #Spell used for the minion's SpellBarrageGoal (string id) + barrage_spell = "irons_spellbooks:devour" + #List of spells the minion can use (string ids). + #These will be shuffled and split into groups for the Warlock attack goal. + spells = ["irons_spellbooks:guiding_bolt", "irons_spellbooks:blood_needles", "irons_spellbooks:blood_slash", "irons_spellbooks:fang_ward", "irons_spellbooks:gust", "irons_spellbooks:burning_dash", "irons_spellbooks:blight", "irons_spellbooks:invisibility"] + #Health of spell-created minion summon + #Range: 1.0 ~ 1000.0 + spell_minion_health = 200.0 + diff --git a/minecraft/config/delightful-common.toml b/minecraft/config/delightful-common.toml new file mode 100644 index 0000000..9105736 --- /dev/null +++ b/minecraft/config/delightful-common.toml @@ -0,0 +1,207 @@ + +# Let's Configure Delightful +[Knives] + adamantium_knife = true + alf_knife = true + allthemodium_knife = true + aluminum_knife = true + amethyst_knife = false + black_opal_knife = true + blazing_knife = true + bone_knife = true + brass_knife = true + bronze_knife = true + certus_quartz_knife = true + cloggrum_knife = true + constantan_knife = true + copper_knife = false + draco_arcanus_knife = true + electrum_knife = true + elementium_knife = true + emerald_knife = false + enderite_knife = true + experience_knife = true + fiery_knife = true + fluix_knife = true + forgotten_knife = true + froststeel_knife = true + gilded_netherite_knife = true + gilded_quartz_knife = true + gravitite_knife = true + holystone_knife = true + infused_veridium_knife = true + invar_knife = true + ironwood_knife = true + kiwano_knife = true + knightmetal_knife = true + lapis_lazuli_knife = false + large_amethyst_knife = true + lead_knife = true + leaf_knife = true + living_knife = true + manasteel_knife = true + mythril_knife = true + necronium_knife = true + nether_quartz_knife = false + netherite_opal_knife = true + nickel_knife = true + obsidian_infused_enderite_knife = true + onyx_knife = true + osmium_knife = true + pearlescent_knife = true + phoenix_knife = true + refined_glowstone_knife = true + refined_obsidian_knife = true + resonarium_knife = true + rose_gold_knife = true + silver_knife = true + sinisite_knife = true + skyjade_knife = true + skyroot_knife = true + soul_steel_knife = true + steel_knife = true + steeleaf_knife = true + stratus_knife = true + terra_knife = true + thyrium_knife = true + tin_knife = true + utherium_knife = true + valkyrum_knife = true + veridium_knife = true + warden_knife = true + zanite_knife = true + zinc_knife = true + +["Baked Good Overhauls"] + blueberry_pie_slice = true + chorus_pie_slice = true + gloomgourd_pie_slice = true + green_apple_pie_slice = true + mulberry_pie_slice = true + passion_fruit_tart_slice = true + source_berry_pie_slice = true + mutton_pie_slice = true + #Use a mixin to remove food properties from pie items (tag #farmersdelight:pies)? + pie_edible_mixin = true + +["Registry & Recipes"] + acorn = true + acorn_sack = true + animal_fat = true + animal_oil_bottle = true + azalea_tea = true + baklava = true + baklava_slice = true + baobab_fruit_crate = true + basalt_cabinet = true + bastion_fruit_crate = true + berry_matcha_latte = true + blueberry_sack = true + bombegranate_crate = true + cactus_chili = true + cactus_flesh = true + cactus_soup = true + cactus_soup_cup = true + cactus_steak = true + cantaloupe = true + cantaloupe_bread = true + cantaloupe_gummy = true + cantaloupe_popsicle = true + cantaloupe_seeds = true + cantaloupe_slice = true + cheeseburger = true + chopped_clover = true + chorus_muffin = true + chunkwich = true + coconut_curry = true + cooked_goat = true + cooked_marshmallow_stick = true + cooked_venison_chops = true + crab_rangoon = true + deluxe_cheeseburger = true + ender_nectar = true + field_salad = true + frostaya_crate = true + glow_jam_jar = true + green_apple_crate = true + green_tea_leaf = true + honey_glazed_walnut = true + jam_jar = true + lavender_tea = true + marshmallow_stick = true + matcha = true + matcha_gummy = true + matcha_ice_cream = true + matcha_ice_cream_block = true + matcha_latte = true + matcha_milkshake = true + mendosteen_crate = true + mini_melon = true + nut_butter_and_jam_sandwich = true + nut_butter_bottle = true + nut_dough = true + prickly_pear_juice = true + quartz_cabinet = true + raw_goat = true + roasted_acorn = true + rock_candy = true + salmonberries = true + salmonberry_gummy = true + salmonberry_ice_cream = true + salmonberry_ice_cream_block = true + salmonberry_milkshake = true + salmonberry_pie = true + salmonberry_pie_slice = true + salmonberry_pips = true + salmonberry_sack = true + sinigang = true + smore = true + source_berry_cookie = true + source_berry_gummy = true + source_berry_ice_cream = true + source_berry_ice_cream_block = true + source_berry_milkshake = true + stuffed_cantaloupe = true + stuffed_cantaloupe_block = true + venison_chops = true + venison_stew = true + venison_stew_cup = true + wild_salmonberries = true + wrapped_cantaloupe = true + yucca_fruit_crate = true + glow_jam_cookie = true + glow_jam_cookie_tile_slab = true + glow_jam_cookie_tile_stairs = true + glow_jam_cookie_tile_wall = true + glow_jam_cookie_tiles = true + source_berry_cookie_tile_slab = true + source_berry_cookie_tile_stairs = true + source_berry_cookie_tile_wall = true + source_berry_cookie_tiles = true + long_prickly_pear_juice = true + roe_blini = true + salmon_and_roe_blini = true + sinigang_cup = true + aged_roe = true + caviar = true + debug_blueberry_pie = true + debug_chorus_pie = true + debug_gloomgourd_pie = true + debug_green_apple_pie = true + debug_mulberry_pie = true + debug_mutton_pie = true + debug_passion_fruit_tart = true + debug_source_berry_pie = true + roe_roll = true + sturgeon_roe = true + +[Behavior] + #Allow cooking milk from nuts + nut_milk = true + #Allow cooking honey from honey and clovers + clover_honey = false + #Give items that are sliced off of blocks directly to player's inventory instead of dropping + give_sliced_directly = false + #Allow sliced melons to be juiced in-world (right click) + melon_juicing = true + diff --git a/minecraft/config/desiredservers/desiredservers.json b/minecraft/config/desiredservers/desiredservers.json new file mode 100644 index 0000000..2ff7921 --- /dev/null +++ b/minecraft/config/desiredservers/desiredservers.json @@ -0,0 +1,7 @@ +[ + { + "serverName": "Official Server", + "serverIP": "MonumentalExperience2.modded.fun", + "forceResourcePack": "true" + } +] \ No newline at end of file diff --git a/minecraft/config/despawntweaks-common.toml b/minecraft/config/despawntweaks-common.toml new file mode 100644 index 0000000..37078a5 --- /dev/null +++ b/minecraft/config/despawntweaks-common.toml @@ -0,0 +1,16 @@ +#. +#Turn this off to disable the despawn of mobs spawned by spawners +allowMobsSpawnedBySpawnersToDespawn = true +#. +#Turn this off to disable the despawn optimizations. +enableLetMeDespawnOptimization = true +#. +#Turn this off to disable the equipments drop on mobs despawn +allowEquipmentDrops = true +#. +#If you add modIDs to this list, only mobs in the structures of the mods will be affected by DespawnTweaker. +StructuresMods = [] +#. +#If you add sturctures registry names to list, only mobs in the structures will be affected by DespawnTweaker. +Structures = [] + diff --git a/minecraft/config/difficultraids/general.toml b/minecraft/config/difficultraids/general.toml new file mode 100644 index 0000000..3febef0 --- /dev/null +++ b/minecraft/config/difficultraids/general.toml @@ -0,0 +1,597 @@ + +["Wave Amounts"] + #Going higher than 7 without adding raiders via a datapack will result in a crash. This is a known issue. + #Number of waves in a Raid on Easy difficulty. + #Range: > 1 + waveCountEasy = 3 + #Number of waves in a Raid on Normal difficulty. + #Range: > 1 + waveCountNormal = 5 + #Number of waves in a Raid on Hard difficulty. + #Range: > 1 + waveCountHard = 7 + #Advanced config. Only edit if you're working with the datapack configuration! + #Determines how the mod will handle the case where a raider does not have a spawn count defined for a wave. + #This can happen if the number of waves is changed, but the spawn counts list for a raider is not updated. + #ZERO: The raider will not spawn if it does not have a spawn count defined for the current wave. + #REPEAT: The raider will spawn with the last wave's (whatever the last registered wave is for it) spawn count for the current wave. + #Allowed Values: ZERO, REPEAT + arrayOverflowMode = "ZERO" + #If enabled, this will make it so that if a raider is not registered implicitly by DifficultRaids, or a datapack, it will not spawn in higher difficulty raids. + #This can be used if you want full control over raid spawns, and do not want other mods to inject their raiders if not registered by DifficultRaids or a datapack. + restrictiveMode = false + +["Raid Mechanics"] + #Search radius of the Bell when hit. + #WARNING: This can cause a decent bit of lag at high radius values because it will search more and more blocks around the village center. + #Vanilla Minecraft uses a radius of 48 blocks. + #Range: 0.0 ~ 2.147483647E9 + bellSearchRadius = 256.0 + #Toggles whether arrows fired by Raiders (such as Pillagers) can deal damage to other Raiders. + friendlyFireArrowsEnabled = false + +[UI] + #If there are fewer raiders alive than this threshold, they will be highlighted permanently. Set to 0 to disable highlighting. + #Range: > 0 + highlightThreshold = 3 + #Toggles whether Boss Bars for Elite Raiders/Bosses will show up during Raids. + #Disabling this will disable every boss bars added by Difficult Raids. + #Enabling this will create Boss Event Bars for: + #DifficultRaids: Nuaos, Xydrax, Voldon, Modur + #Illage & Spillage: Freakager, Magispeller, Spiritcaller + #Dungeons Mobs: Redstone Golem + #Leo's Illagers: Lightningcaller, Clownager + #You can customize each boss bars below. + bossBarsEnabled = true + #Determines if wave information will show up in the Raid Event title. + showWaveInformation = true + +["Insanity Mode"] + #Activate Insanity mode. + #'Detecting hundreds of raiders in the region. Are you certain whatever you're doing is worth it?' + insanityMode = false + #The multiplier for the number of raiders spawned in Insanity mode. + #This gets applied on top of whatever difficulty a Raid is at. This will not apply to Default Raids. + #Range: 1.0 ~ 1.7976931348623157E308 + insanityCountMultiplier = 3.0 + #Toggles whether or not to display 'Insane' on the raid + displayInsanityMode = true + +#Customize which Raiders will show up in Raids. A game restart is required. +["Enabled Raiders"] + + ["Enabled Raiders"."Vanilla Raiders"] + enableVindicators = true + enableEvokers = true + enablePillagers = true + enableWitches = true + enableRavagers = true + + ["Enabled Raiders".DifficultRaids] + enableIllusioners = true + enableWarriors = true + enableDarts = true + enableConductors = true + enableNecromancers = true + enableShamans = true + enableTanks = true + enableAssassins = true + enableFrostmages = true + enableAshenmancers = true + + ["Enabled Raiders"."Requires HuntersReturn"] + enableHunters = true + + ["Enabled Raiders"."Requires EnchantWithMob"] + enableEnchanters = true + + ["Enabled Raiders"."Requires It Takes a Pillage"] + enableArchers = true + enableSkirmishers = true + enableLegioners = true + + ["Enabled Raiders"."Requires Illage & Spillage"] + enableIgniters = true + enableTwittollagers = true + enablePreservers = true + enableAbsorbers = true + enableCrocofangs = true + enableEngineers = true + enableMagispellers = true + enableSpiritcallers = true + enableFreakagers = true + enableBossRandomizers = true + + ["Enabled Raiders"."Requires Savage and Ravage"] + enableGriefers = true + enableExecutioners = true + enableTricksters = true + enableSavageRavageIceologers = true + + ["Enabled Raiders"."Requires Leo's Illagers"] + enableShieldVindicator = true + enableLightningCaller = true + enableClownager = true + enableConfuser = true + enableMeteoriteCaller = true + enableSnowolager = true + enableNecromancerLeo = true + enableSummoner = true + enableTroublemaker = true + + ["Enabled Raiders"."Requires Dungeon Mobs"] + enableMountaineers = true + enableRoyalGuards = true + enableGeomancers = true + enableMages = true + enableDungeonMobsIceologers = true + enableWindcallers = true + enableSquallGolems = true + enableRedstoneGolems = true + + ["Enabled Raiders"."Requires The Conjurer"] + enableConjurer = false + + ["Enabled Raiders"."Requires Necromancer Mod Port"] + enableModNecromancer = true + + ["Enabled Raiders"."Requires Werden's Illagers +"] + enableSinister = true + enableShadomancer = true + enableRhinager = true + + ["Enabled Raiders"."Requires Guard Illagers"] + enableGuardillager = true + + ["Enabled Raiders"."Requires MobZ"] + enableSpiderMage = true + enableZombieMage = true + enablePillagerBoss = true + enableMobZIllusioner = true + enableBabyRavager = true + + ["Enabled Raiders"."Requires Illager Invasion"] + enablePovoker = true + enableInquisitor = true + enableMarauder = true + enableBasher = true + enableFirecaller = true + enableInvasionNecromancer = true + enableAlchemist = true + enableSorcerer = true + enableArchivist = true + enableInvoker = true + + ["Enabled Raiders"."Requires Goety"] + #Those settings can be overwritten by Goety + enableWarlock = true + enableMaverick = true + enableHeretic = true + enablePiker = true + enableRipper = true + enableCrusher = true + enableStorm_caster = true + enableCryologer = true + enablePreacher = true + enableConquillager = true + enableInquillager = true + enableEnvioker = true + enableGoetySorcerer = true + enableMinister = true + enableTrampler = true + enableVizier = false + enableApostle = false + #If you enable Redstone Golem and Redstone Monstrosity, make sure to enable them in Goety config + enableRedstoneGolemGoety = false + enableRedstoneMonstrosity = false + enableCrone = false + + ["Enabled Raiders"."Requires The Summoner Illager Port"] + enableSummoner = true + enableSummonerBoss = true + + ["Enabled Raiders"."Requires Bones Update"] + enableBonesNecromancer = true + + ["Enabled Raiders"."Requires Illager Additions"] + #Those settings can be overwritten by Illager Additions + enableRoyalGuardSpear = true + enableSpearman = true + enableSamurai = true + enableBeamloger = true + #If you enable Cowboy or Shogun, make sure to enable them in Illager Additions config + enableCowboy = false + enableShogun = false + + ["Enabled Raiders"."Requires The Modifiger"] + enableModifiger = true + + ["Enabled Raiders"."Requires Musketeer Illager"] + enableMarksman = true + + ["Enabled Raiders"."Requires The Masquerader"] + #If you change the spawn rate of this mob, make sure no other bosses from Illage & Spillage spawn in the same wave, or they will have infinite force field. + enableMasquerader = true + + ["Enabled Raiders"."Requires Bagus Mob"] + enableTengu = true + enableNinjar = true + + ["Enabled Raiders"."Requires Illager Revolution"] + enableBeastTamer = true + enableBladeKnight = true + enableScavenger = true + enableSoulSage = true + enableAcolyte = false + enableBulkwark = false + + ["Enabled Raiders"."Requires Raided"] + enableRaidedNecromancer = true + enableRaidedElectromancer = true + enableSavager = true + enableIncinerator = true + enableRaidedInquisitor = true + + ["Enabled Raiders"."Requires More Illagers"] + enableGunillager = true + enableIlligeve = true + enableSurpriser = true + enableRocketillager = true + enableCreepillager = true + enableMonsterillager = true + + ["Enabled Raiders"."Requires Slash Illager"] + enableBladeMaster = true + + ["Enabled Raiders"."Requires Friends & Foes"] + enableFriendsAndFoesIceologer = true + + ["Enabled Raiders"."Requires Mo' Features"] + enablePillagerBrute = true + + ["Enabled Raiders"."Requires Brazier"] + enableCrazed = false + + ["Enabled Raiders"."Requires Ravage & Cabbage"] + enableCabbager = true + + ["Enabled Raiders"."Requires CrimsonSteve's more mobs"] + enablePhamtomTamer = true + enableTRabus = true + enableCyborgVindicator = true + enableCrudeRedstoneGolem = true + enableCrudeRedstoneMonstrosity = true + enableCrimsonStevesRedstoneMonstrosity = true + enableMiniCrudeRedstoneGolem = true + + ["Enabled Raiders"."Requires All Bark, All Bite"] + enableHoundmaster = true + + ["Enabled Raiders"."Requires Karate Illager"] + enableKarateIllager = true + + ["Enabled Raiders"."Requires Illager Brute"] + enableIllagerBrute = true + + ["Enabled Raiders"."Requires Sorcerer Illager"] + enableSorcererIllager = true + + ["Enabled Raiders"."Requires Wandering Illager"] + enableWanderingIllager = true + + ["Enabled Raiders"."Requires Expado's Illagers"] + enableBrasher = true + enableBluntologer = true + enableCleavager = true + enableSpearologer = true + enableJuggernaut = true + enableBludgeoner = true + enableGrindicator = true + + ["Enabled Raiders"."Requires Francis Illagers"] + enablePatrologer = true + enableChefager = true + enableFrancisGrindicator = true + enableFrancisMage = true + enableChefologer = true + enablePyrobandit = true + enableFireologer = true + enableVrincitador = true + enableSandologer = true + enableGrummicator = true + + ["Enabled Raiders"."Requires Earth Mobs"] + enableVilerWitch = true + + ["Enabled Raiders"."Requires Illager World War"] + enablePillagerCar = true + enableArmedSoldier = true + enableVindicatorFlameThrower = true + enableAssaultPillager = true + enablePlanePillager = true + enableCannonPillager = true + + ["Enabled Raiders"."Requires Colds: Wandering Trader"] + enableWanderingTraitor = true + + ["Enabled Raiders"."Requires Just Illagers"] + enableDruski = true + enableLacher = true + enableCrisko = true + enableBlaker = true + enableToxicist = true + enableRevenant = true + enableAmpi = true + + ["Enabled Raiders"."Requires Illager Universe"] + enableUpgrader = true + enableUpgraderGold = true + enableUpgraderDiamond = true + enableShadowGoar = true + enablePrinzologer = true + enableCallologer = true + + ["Enabled Raiders"."Requires Pillager Boss"] + enablePillagerBossMod = true + + ["Enabled Raiders"."Requires Virtuso's Grand Battle"] + enableVirtuosoOfVariety = true + + ["Enabled Raiders"."Requires Mischief Illagers"] + enableMischiever = true + enableWithermancer = true + enableDoodler = true + enableFangclaw = true + enableSparkologer = true + enableLibravoker = true + enableBubbleologer = true + enableBassBlaster = true + enableImprecator = true + enableMagnetizer = true + enablePhotographer = true + enablePartyger = true + + ["Enabled Raiders"."Requires Pillagers Plus"] + enableSwordPillager = true + enableSpearIllager = true + enableHogRider = true + + ["Enabled Raiders"."Requires Immersive Engineering"] + enableCommando = true + enableFusilier = true + enableBulwark = true + + ["Enabled Raiders"."Requires Kamilskis Additions"] + enableBalloonPillager = true + enableSilverfishWrangler = true + + ["Enabled Raiders"."Requires Born in Chaos"] + enableMissionary = true + + ["Enabled Raiders"."Requires Eidolon: Repraised"] + enableEidolonNecromancer = true + + ["Enabled Raiders"."Requires From the Shadows"] + enableCleric = true + + ["Enabled Raiders"."Requires Rats"] + enablePiedPiper = true + + ["Enabled Raiders"."Requires Wild Delight"] + enableWildChef = true + + ["Enabled Raiders"."Requires Jerotes Village"] + #Everything is disabled in Jerotes Village config + #If you want to enable something, enable it here and in Jerotes Village config + enableTrumpeter = false + enableBlaster = false + enableDefector = false + enableMapmaker = false + enablebannerBearer = false + enableJerotesExecutioner = false + enableExplorer = false + enableSlaverySupervisor = false + enableCycloner = false + enableJavelinThrower = false + enableZombieKeeper = false + enableWildFinder = false + enableSubmariner = false + enableSpirve = false + enableTeleporter = false + enableLampWizard = false + enableBitterColdSorcerer = false + enableFireSpitter = false + enablePurpleSandWitch = false + enableWitchScholar = false + enableAxCrazy = false + enablePurpleSandHag = false + enableNecromancyWarlock = false + enableGaviler = false + enableBigWitch = false + enableFirepowerPourer = false + enableOminousBannerProjection = false + enableCohortHag = false + + ["Enabled Raiders"."Requires NO IXAPI"] + #Those settings can be overwritten by NO.IXAPI + enableBugler = true + enableArmorer = true + enableBiologist = true + enableAPIHunter = true + enableMourner = true + #If you enable the following mobs, make sure to enable them in NO.IXAPI config + enableAbomination = false + enableDrunkenness = false + enableFlagman = false + enableIntruder = false + enableGraveKeeper = false + + ["Enabled Raiders"."Requires Roost2"] + enableRoostRider = true + + ["Enabled Raiders"."Requires Snow's Bosses: Mechasent"] + enableMechasent = true + + ["Enabled Raiders"."Requires Ben's Sharks"] + enableThalassoger = true + + ["Enabled Raiders"."Requires Illager Expansions"] + enableEliteVindicator = true + enableRetaliator = true + enableCrindicator = true + enableElitePillager = true + enableRavagerRider = true + + ["Enabled Raiders"."Requires Gloom Raiders"] + enableNun = true + enableShylock = false + enableNewDramatist = true + enableSpellSword = true + enablePsychcW = true + enablePsychicM = true + enableHeadsman = true + enableNewBigNun = false + enableAwakenEarl = false + enableDramatist = false + enableEarl = true + enableFlyEarl = false + + ["Enabled Raiders"."Requires Ocean World"] + enableOceanologer = true + + ["Enabled Raiders"."Requires Multiverse"] + enableConqueror = false + enableTraveler = false + + ["Enabled Raiders"."Requires Porchers"] + enableBlower = true + enableStabber = true + enableHarvester = true + + ["Enabled Raiders"."Requires Mecha Pillager Boss"] + enableMechaPillager = true + enableMechaVindicator = true + + ["Enabled Raiders"."Requires The Resiliance of the Raiders"] + enableResilianceCrusher = true + enableClashager = true + enableShiverger = true + + ["Enabled Raiders"."Requires The Resistance Of Illagers"] + enableGuardian = true + enableAssailant = true + enableHarrier = true + + ["Enabled Raiders"."Requires The Vindication Of Illagers"] + enableVindicationPreacher = true + enableBlackmaster = true + enablePlanner = true + enableVisologer = true + enableVindicationIntruder = true + enableVoltologer = true + enableSmither = true + enableRager = true + enablePatrolCaptain = true + enableRaiderRandomizer = true + + ["Enabled Raiders"."Requires Goety Awaken"] + enableVindicatorChef = false + enableHostileRoyalGuard = false + enableTowerWitch = false + + ["Enabled Raiders"."Requires Simple Musket"] + enableMusketPillager = true + + ["Enabled Raiders"."Requires Leos Bosses"] + enableAncientSorcerer = false + + ["Enabled Raiders"."Requires Flame Forge"] + enableChrimsonveil = true + + ["Enabled Raiders"."Requires Sieging of the Illagers"] + enableWarlord = true + enableWizard = true + enablePileDriver = true + enableWarlordRavager = false + enableDestructor = true + enableGiantsager = true + + ["Enabled Raiders"."Requires Invade"] + enableFollower = false + + ["Enabled Raiders"."Requires Illage Art"] + enablePioneer = false + enableSpitter = false + enableIllagerTactician = false + enableKeyHolder = true + enableTheFireKing = true + enableSpiderSummoner = true + enableFloatingElder = true + enableCalamityNurse = true + enableGrandArchmage = true + enableChurchWizard = true + + ["Enabled Raiders"."Requires Fathomless Crimson"] + enableBishop = true + + ["Enabled Raiders"."Requires Wan Ancient Beasts"] + enableTamer = true + + ["Enabled Raiders"."Requires Better Raiders"] + enableBower = true + enableDogger = true + enableRaider = true + enableSupport = true + enablePhantom = true + + ["Enabled Raiders"."Requires Canibalism"] + enableButcher = true + + ["Enabled Raiders"."Requires HuaCheng's More Illagers"] + enableCapitalist = true + enableCrasher = true + enableHugeCrasher = true + enableMiniOrganGuard = true + enableOrganGuard = true + enableHcRedstoneGolem = true + enableAbyssologer = false + + ["Enabled Raiders"."Requires Goety Hostility"] + enableGHVindicatorChef = true + enableGHGeomancer = true + enableGHIceologer = true + enableGHSquallGolem = true + enableGHWindCaller = true + enableGH_Mountaineer = true + + ["Enabled Raiders"."Requires Raids:Enhanced"] + enableRaiderBlimp = true + enableGolemOfLastResort = true + enableRaiderDrill = true + enableZapper = true + + ["Enabled Raiders"."Requires Chill Thrill"] + enableCTIceologer = true + +["BOSS BARS"] + #Enabling this will create Boss Event Bars for Modur + ModurBossBars = true + #Enabling this will create Boss Event Bars for Nuaos + NuaosBossBar = true + #Enabling this will create Boss Event Bars for Voldon + VoldonBossBar = true + #Enabling this will create Boss Event Bars for Xydrax + XydraxBossBar = true + #Enabling this will create Boss Event Bars for Clownager + ClownagerBossBar = true + #Enabling this will create Boss Event Bars for Freakager + FreakagerBossBar = true + #Enabling this will create Boss Event Bars for Lightning Caller + LightningCallerBossBar = true + #Enabling this will create Boss Event Bars for Magispeller + MagispellerBossBar = true + #Enabling this will create Boss Event Bars for Dungeon Mobs Redstone Golem + DMRedstoneGolemBossBar = true + #Enabling this will create Boss Event Bars for Spiritcaller + SpiritcallerBossBar = true + diff --git a/minecraft/config/difficultraids/raid-default.toml b/minecraft/config/difficultraids/raid-default.toml new file mode 100644 index 0000000..c0a5644 --- /dev/null +++ b/minecraft/config/difficultraids/raid-default.toml @@ -0,0 +1,500 @@ + +#Note: Changing values in this config will have no impact on the game. Default Raids are Vanilla and do not feature anything from this mod. The config file exists for consistency within the code. +# +["General Settings"] + #Determines if Elite Raiders will show up in Raids. + elitesEnabled = true + #Extra health that Raiders will receive per additional player in the Raid. 0 to disable Raiders receiving extra health. + #Range: 0.0 ~ 1.7976931348623157E308 + playerHealthBoostAmount = 2.0 + +["Vindicator Settings"] + #Level of Sharpness that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_sharpnessLevel = 0 + #Level of Critical Burst that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalBurstLevel = 0 + #Level of Critical Strike that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalStrikeLevel = 0 + #Chance that a Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + vindicator_axeDropChance = 0.0 + +["Evoker Settings"] + #Damage dealt by Evoker Fangs. + #Range: 0.0 ~ 1.7976931348623157E308 + evoker_fangDamage = 6.0 + +["Pillager Settings"] + #Level of Power that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_powerLevel = 1 + #Level of Quick Charge that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_quickChargeLevel = 1 + #Chance that a Pillager's crossbow will be enchanted with Multishot. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_multishotChance = 0.25 + #Chance that a Pillager will drop their crossbow upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_crossbowDropChance = 0.0 + +["Ravager Settings"] + #Damage dealt by Ravagers. The base damage will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_damageMultiplier = 1.0499999523162842 + #Speed of Ravagers. The base speed will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_speedMultiplier = 1.0499999523162842 + +["Warrior Settings"] + #Level of Sharpness that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_sharpnessLevel = 0 + #Chance that a Warrior's sword will be enchanted with Fire Aspect. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_fireAspectChance = 0.0 + #Level of Fire Aspect that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_fireAspectLevel = 0 + #Chance that a Warrior's sword will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_knockbackChance = 0.0 + #Level of Knockback that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_knockbackLevel = 0 + #Level of Critical Strike that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_criticalStrikeLevel = 0 + #Chance that a Warrior will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_swordDropChance = 0.0 + +["Dart Settings"] + #Level of Sharpness that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_sharpnessLevel = 1 + #Level of Knockback that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_knockbackLevel = 2 + #Chance that a Dart will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + dart_swordDropChance = 0.1 + +["Conductor Settings"] + #Damage dealt by a Conductor's Concentrated Bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_concentratedBoltDamage = 19.0 + #Number of lightning strikes that a Conductor will summon when using the Generic Lightning attack. + #Range: > 0 + conductor_genericLightningStrikeCount = 4 + #Damage dealt by a Conductor's Generic Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_genericLightningDamage = 8.0 + #Whether Conductors will summon an extra ring of lightning bolts when using their Ring Lightning attack. + conductor_ringExtraBolts = false + #Damage dealt by each lightning bolt in a Conductor's Ring Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_ringLightningDamage = 2.0 + +["Necromancer Settings"] + #Percentage of damage taken that Necromancers will occasionally reflect onto alive minions. + #Range: 0.0 ~ 1.0 + necromancer_reflectedDamagePercentage = 0.4000000059604645 + #Number of minions that Necromancers will summon at a time. + #Range: > 0 + necromancer_minionChargeSummonCount = 1 + #Maximum level of Protection that Necromancer minions' armor will be enchanted with. + #Range: > 0 + necromancer_minionMaxProtectionLevel = 2 + #Number of skeletons that will spawn in a horde. + #Range: > 0 + necromancer_hordeSize = 10 + #Number of ticks that a horde will remain alive for. + #Range: > 0 + necromancer_hordeLifetime = 300 + +["Shaman Settings"] + #Duration (in ticks) of Invisibility Shamans can apply to themselves. + #Range: > 0 + shaman_invisibilityDuration = 60 + #Maximum number of debuff effects Shamans can apply to players with each attack. + #Range: > 0 + shaman_debuffCount = 1 + #Chance (from 0 to 1) of Shamans applying an additional debuff effect to players with each attack. + #If successful, this chance will be checked again to add another debuff, up to the specified maximum. + #Range: 0.0 ~ 1.0 + shaman_additionalDebuffChance = 0.20000000298023224 + #Duration (in ticks) of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffDuration = 80 + #Amplifier of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffAmplifier = 0 + #Radius (in blocks) of the Resistance and Strength effects Shamans can apply to ally Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + shaman_allyBuffRadius = 8.0 + #Duration (in ticks) of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceDuration = 140 + #Amplifier of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceAmplifier = 0 + #Duration (in ticks) of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthDuration = 140 + #Amplifier of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthAmplifier = 0 + +["Tank Settings"] + #Extra armor points Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmor = 7.5 + #Extra armor toughness Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmorToughness = 0.0 + #Chance for Tanks to spawn with armor enchanted with Thorns. + #Range: 0.0 ~ 1.0 + tank_thornsChance = 0.0 + +["Assassin Settings"] + #Cooldown (in ticks) after an Assassin locks onto a target, before they go invisible again. + #Range: > 0 + assassin_invisibilityCooldown = 3600 + #Cooldown (in ticks) after an Assassin teleports to a target, before they can teleport again. + #Range: > 0 + assassin_teleportCooldown = 3600 + +["Frostmage Settings"] + #Radius of the aura around Frostmages in which enemies will be slowed. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_slownessAuraRadius = 4.0 + #Damage dealt by each snowball in the Frostmages' Barrage attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_barrageSnowballDamage = 1.7999999523162842 + #Duration (in ticks) of the Frostmages' Barrage attack. + #Range: > 0 + frostmage_barrageDuration = 40 + #Damage dealt by each snowball in the Frostmages' Snowball Blast attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_snowballBlastDamage = 4.0 + #Duration (in ticks) of the Frostmages' Freeze attack. + #Range: > 0 + frostmage_freezeDuration = 40 + +["Ashenmancer Settings"] + #Maximum number of Ashenmancer minions that can be spawned at once. + #Range: > 0 + ashenmancer_maxMinionCount = 2 + #Maximum level of Protection that Ashenmancer minions can have on their armor. + #Range: > 0 + ashenmancer_minionMaxProtectionLevel = 2 + #Maximum level of Sharpness that Ashenmancer minions can have on their swords. + #Range: > 0 + ashenmancer_minionMaxSharpnessLevel = 3 + #Whether or not Ashenmancer minions are allowed to grief blocks. Enabling this will cause Ashenmancer wither skulls to explode. + ashenmancer_allowMobGriefing = false + #Damage dealt by the Wither effect applied by Ashenmancer Wither Skulls. Warning: This ignores armor! + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_witherSkullWitherTickDamage = 1.0 + #Duration (in ticks) of the Ashenmancer's Ashenado. + #Range: > 0 + ashenmancer_ashenadoDuration = 200 + #Force applied by the Ashenmancer's Pusher Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_pusherSkullForce = 1.5 + #Duration (in ticks) enemies will be set on fire by the Ashenmancer's Flamer Wither Skulls. + #Range: > 0 + ashenmancer_flamerSkullFireDuration = 100 + #Number of Wither Skulls that will be fired by the Ashenmancer's Multishot Wither Skull attack. + #Range: > 0 + ashenmancer_multishotSkullCount = 3 + #Speed of the Ashenmancer's Speeder Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_speederSkullSpeed = 1.149999976158142 + #Duration (in ticks) enemies will be affected with Darkness by the Ashenmancer's Blinder Wither Skulls. + #Range: > 0 + ashenmancer_blinderSkullBlindnessDuration = 60 + #Total number of Wither Skulls fired during the Ashenmancer's Turret attack. + #Range: > 0 + ashenmancer_turretSkullCount = 16 + #Interval (in ticks) between each Wither Skull fired during the Ashenmancer's Turret attack. Warning: This can cause a lot of lag at short intervals! + #Range: > 1 + ashenmancer_turretInterval = 15 + +["Elite Raiders"] + + ["Elite Raiders"."Nuaos Settings"] + #Multiplier on the damage Nuaos takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + nuaos_friendlyDamageReduction = 0.4 + #Level of Sharpness that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_sharpnessLevel = 2 + #Level of Critical Strike that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalStrikeLevel = 0 + #Level of Critical Burst that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalBurstLevel = 5 + #Chance that Nuaos will drop his sword. 0 to disable. + #Range: 0.0 ~ 1.0 + nuaos_swordDropChance = 0.25 + #Amount of damage Nuaos can charge before he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_maxChargeDamage = 50.0 + #Radius of the shockwave Nuaos creates when he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_shockwaveRadius = 4.0 + #Radius of the constant aura Nuaos creates around himself, buffing nearby Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_buffAuraRadius = 8.0 + #Amplifier of Strength that Raiders within Nuaos' aura will receive. 0 to disable. + #Range: > 0 + nuaos_buffAuraStrengthLevel = 1 + #Damage multiplier that Nuaos receives when he is charged, depending on the charge amount. + #The list is in order: [No Charge, Low Charge, High Charge, Max Charge]. + nuaos_chargedDamageBoost = [1.0, 1.25, 1.75, 2.25] + #Whether Nuaos' stored charge should decay over time (if Nuaos is not actively taking damage). + nuaos_chargeDecay = true + + ["Elite Raiders"."Xydrax Settings"] + #Multiplier on the damage Xydrax takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + xydrax_friendlyDamageReduction = 0.4 + #Interval (in ticks) between each pull event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexPullInterval = 20 + #Force applied during Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexForce = 1.25 + #Interval (in ticks) between each damage event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexDamageInterval = 40 + #Base damage dealt by Xydrax's vortex attack at each threshold. + #The list is in this order: [ <1 block, <2 blocks, <5 blocks, >=5 blocks ]. + xydrax_vortexDamageThresholds = [17.5, 10.0, 4.0, 1.0] + #Multiplier on the damage dealt by Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexDamageMultiplier = 1.0 + #Lifetime of one of Xydrax's wind columns (in ticks). + #The first element is the minimum life, the second element is the maximum life. The actual lifetime will be randomly selected between the two values when summoned. + xydrax_windColumnLifetime = [100, 300] + #Lifetime of Xydrax's vortex (in ticks). + #Range: > 0 + xydrax_vortexLifetime = 240 + #Duration (in ticks) of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseDuration = 200 + #Amplifier of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseAmplifier = 1 + + ["Elite Raiders"."Modur Settings"] + #Multiplier on the damage Modur takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_friendlyDamageReduction = 0.4 + #Multiplier on the damage Modur takes from projectiles. 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_projectileDamageReduction = 0.8 + #Damage dealt by Modur's basic lightning strike ranged attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_basicLightningStrikeDamage = 5.0 + #Number of lightning strikes Modur summons per tick during his storm attack. + #Warning: This can be very loud if set too high! + #Range: > 0 + modur_stormStrikesPerTick = 1 + #Damage dealt by each lightning strike during Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormStrikeDamage = 10.0 + #Duration of Modur's storm attack, in ticks. + #Range: > 0 + modur_stormDuration = 140 + #Radius of Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormRadius = 12.0 + #Number of lightning strikes that comprise Modur's charged bolt attack. + #Warning: These will all happen simultaneously, so this can be very loud if set too high! + #Range: > 0 + modur_chargedBoltCount = 10 + #Damage dealt by each lightning strike in Modur's charged bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_chargedBoltDamage = 25.0 + #Damage dealt by lightning strikes during Modur's homing bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_homingBoltDamage = 8.0 + #Duration of Modur's homing bolt attack. + #Range: > 0 + modur_homingBoltTime = 80 + #Damage dealt by lightning strikes during Modur's lightning zap attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_zapDamage = 12.0 + + ["Elite Raiders"."Voldon Settings"] + #Cooldown (in ticks) after all Voldon's familiars are dead. Voldon will not summon more familiars until this cooldown is over. + #Range: > 0 + voldon_familiarSummonCooldown = 300 + #Multiplier on the damage Voldon takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + voldon_friendlyDamageReduction = 0.4 + #Number of fireballs Voldon will shoot at once during his fireball attack. + #Range: > 0 + voldon_fireballCount = 4 + #Duration (in ticks) of the buff Voldon gives himself after sacrificing a familiar. + #Range: > 0 + voldon_sacrificeBuffDuration = 400 + #Number of familiars Voldon will summon at once. + #Range: > 0 + voldon_familiarSummonCount = 4 + #Whether Voldon's familiars will give the entity that killed them the weakness effect. + voldon_familiarWeaknessOnDeath = true + #Multiplier on the damage Voldon's familiars deal. 1 to remove this feature. + #Range: 0.0 ~ 1.7976931348623157E308 + voldon_familiarAttackDamageMultiplier = 1.25 + #Multiplier on the health Voldon's familiars have. 1 to remove this feature. + #Range: 0.01 ~ 1.7976931348623157E308 + voldon_familiarHealthMultiplier = 1.0 + +[Compatibility] + + #REQUIRES 'Hunters Return' + [Compatibility."Hunter Illager Settings"] + #Level of Power that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPowerLevel = 2 + #Level of Sharpness that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordSharpnessLevel = 2 + #Chance that Hunter bows will be enchanted with Punch. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_bowPunchChance = 0.25 + #Level of Punch that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPunchLevel = 1 + #Chance that Hunter swords will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_swordKnockbackChance = 0.25 + #Level of Knockback that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordKnockbackLevel = 1 + #Chance that Hunter boomerangs will be enchanted with Loyalty. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_boomerangLoyaltyChance = 0.33 + #Level of Sharpness that Hunter boomerangs will be enchanted with. 0 to disable. + #Range: > 0 + hunter_boomerangSharpnessLevel = 1 + #Number of cooked food items that Hunters will be given. + #Range: > 0 + hunter_foodCount = 6 + #Chance that Hunters will be given Golden Apples rather than their normal cooked food item. + #Range: 0.0 ~ 1.0 + hunter_foodGoldenAppleChance = 0.15 + #Chance that Hunters will drop their main hand item (bow or sword) when killed. + #Range: 0.0 ~ 1.0 + hunter_mainItemDropChance = 0.25 + #Chance that Hunters will drop their boomerang when killed. + #Range: 0.0 ~ 1.0 + hunter_boomerangDropChance = 0.5 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Archer Settings"] + #Level of Power that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPowerLevel = 1 + #Level of Punch that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPunchLevel = 0 + #Chance that Archers will drop their bow when killed. + #Range: 0.0 ~ 1.0 + archer_bowDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Skirmisher Settings"] + #Level of Sharpness that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeSharpnessLevel = 2 + #Level of Critical Burst that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalBurstLevel = 0 + #Level of Critical Strike that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalStrikeLevel = 1 + #Chance that Skirmishers will drop their axe when killed. + #Range: 0.0 ~ 1.0 + skirmisher_axeDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Legioner Settings"] + #Level of Sharpness that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordSharpnessLevel = 1 + #Level of Fire Aspect that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordFireAspectLevel = 0 + #Level of Knockback that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordKnockbackLevel = 0 + #Level of Critical Strike that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordCriticalStrikeLevel = 0 + #Chance that Legioners will drop their sword when killed. + #Range: 0.0 ~ 1.0 + legioner_swordDropChance = 0.25 + + #REQUIRES 'Savage and Ravage' + [Compatibility."Executioner Settings"] + #Level of Sharpness that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverSharpnessLevel = 3 + #Level of Critical Burst that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverCriticalBurstLevel = 5 + #Chance that Executioners will drop their cleaver when killed. + #Range: 0.0 ~ 1.0 + executioner_cleaverDropChance = 0.15000000596046448 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Mountaineer Settings"] + #Level of Sharpness that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickSharpnessLevel = 1 + #Level of Critical Burst that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickCriticalBurstLevel = 3 + #Chance that Mountaineers will drop their pick when killed. + #Range: 0.0 ~ 1.0 + mountaineer_pickDropChance = 0.25 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Royal Guard Settings"] + #Level of Sharpness that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeSharpnessLevel = 3 + #Level of Critical Burst that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalBurstLevel = 5 + #Level of Critical Strike that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalStrikeLevel = 2 + #Chance that Royal Guards will drop their axe when killed. + #Range: 0.0 ~ 1.0 + royalguard_axeDropChance = 0.08500000089406967 + + #REQUIRES 'Leo's Illagers' + [Compatibility."Vindicator With Shield Settings"] + #Level of Sharpness that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_sharpnessLevel = 0 + #Level of Critical Burst that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalBurstLevel = 0 + #Level of Critical Strike that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalStrikeLevel = 0 + #Chance that a Shielded Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + shieldVindicator_axeDropChance = 0.0 + diff --git a/minecraft/config/difficultraids/raid-grandmaster.toml b/minecraft/config/difficultraids/raid-grandmaster.toml new file mode 100644 index 0000000..7e07029 --- /dev/null +++ b/minecraft/config/difficultraids/raid-grandmaster.toml @@ -0,0 +1,500 @@ + +#Edit config values for Grandmaster Raids. +# +["General Settings"] + #Determines if Elite Raiders will show up in Raids. + elitesEnabled = true + #Extra health that Raiders will receive per additional player in the Raid. 0 to disable Raiders receiving extra health. + #Range: 0.0 ~ 1.7976931348623157E308 + playerHealthBoostAmount = 2.0 + +["Vindicator Settings"] + #Level of Sharpness that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_sharpnessLevel = 5 + #Level of Critical Burst that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalBurstLevel = 6 + #Level of Critical Strike that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalStrikeLevel = 2 + #Chance that a Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + vindicator_axeDropChance = 0.0 + +["Evoker Settings"] + #Damage dealt by Evoker Fangs. + #Range: 0.0 ~ 1.7976931348623157E308 + evoker_fangDamage = 18.0 + +["Pillager Settings"] + #Level of Power that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_powerLevel = 5 + #Level of Quick Charge that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_quickChargeLevel = 5 + #Chance that a Pillager's crossbow will be enchanted with Multishot. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_multishotChance = 1.0 + #Chance that a Pillager will drop their crossbow upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_crossbowDropChance = 0.0 + +["Ravager Settings"] + #Damage dealt by Ravagers. The base damage will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_damageMultiplier = 2.0 + #Speed of Ravagers. The base speed will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_speedMultiplier = 1.5 + +["Warrior Settings"] + #Level of Sharpness that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_sharpnessLevel = 3 + #Chance that a Warrior's sword will be enchanted with Fire Aspect. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_fireAspectChance = 1.0 + #Level of Fire Aspect that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_fireAspectLevel = 3 + #Chance that a Warrior's sword will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_knockbackChance = 1.0 + #Level of Knockback that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_knockbackLevel = 3 + #Level of Critical Strike that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_criticalStrikeLevel = 4 + #Chance that a Warrior will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_swordDropChance = 0.0 + +["Dart Settings"] + #Level of Sharpness that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_sharpnessLevel = 4 + #Level of Knockback that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_knockbackLevel = 5 + #Chance that a Dart will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + dart_swordDropChance = 0.1 + +["Conductor Settings"] + #Damage dealt by a Conductor's Concentrated Bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_concentratedBoltDamage = 30.0 + #Number of lightning strikes that a Conductor will summon when using the Generic Lightning attack. + #Range: > 0 + conductor_genericLightningStrikeCount = 10 + #Damage dealt by a Conductor's Generic Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_genericLightningDamage = 15.0 + #Whether Conductors will summon an extra ring of lightning bolts when using their Ring Lightning attack. + conductor_ringExtraBolts = true + #Damage dealt by each lightning bolt in a Conductor's Ring Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_ringLightningDamage = 10.0 + +["Necromancer Settings"] + #Percentage of damage taken that Necromancers will occasionally reflect onto alive minions. + #Range: 0.0 ~ 1.0 + necromancer_reflectedDamagePercentage = 0.75 + #Number of minions that Necromancers will summon at a time. + #Range: > 0 + necromancer_minionChargeSummonCount = 3 + #Maximum level of Protection that Necromancer minions' armor will be enchanted with. + #Range: > 0 + necromancer_minionMaxProtectionLevel = 5 + #Number of skeletons that will spawn in a horde. + #Range: > 0 + necromancer_hordeSize = 30 + #Number of ticks that a horde will remain alive for. + #Range: > 0 + necromancer_hordeLifetime = 900 + +["Shaman Settings"] + #Duration (in ticks) of Invisibility Shamans can apply to themselves. + #Range: > 0 + shaman_invisibilityDuration = 120 + #Maximum number of debuff effects Shamans can apply to players with each attack. + #Range: > 0 + shaman_debuffCount = 3 + #Chance (from 0 to 1) of Shamans applying an additional debuff effect to players with each attack. + #If successful, this chance will be checked again to add another debuff, up to the specified maximum. + #Range: 0.0 ~ 1.0 + shaman_additionalDebuffChance = 0.75 + #Duration (in ticks) of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffDuration = 200 + #Amplifier of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffAmplifier = 2 + #Radius (in blocks) of the Resistance and Strength effects Shamans can apply to ally Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + shaman_allyBuffRadius = 16.0 + #Duration (in ticks) of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceDuration = 300 + #Amplifier of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceAmplifier = 2 + #Duration (in ticks) of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthDuration = 300 + #Amplifier of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthAmplifier = 3 + +["Tank Settings"] + #Extra armor points Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmor = 20.0 + #Extra armor toughness Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmorToughness = 15.0 + #Chance for Tanks to spawn with armor enchanted with Thorns. + #Range: 0.0 ~ 1.0 + tank_thornsChance = 0.8 + +["Assassin Settings"] + #Cooldown (in ticks) after an Assassin locks onto a target, before they go invisible again. + #Range: > 0 + assassin_invisibilityCooldown = 600 + #Cooldown (in ticks) after an Assassin teleports to a target, before they can teleport again. + #Range: > 0 + assassin_teleportCooldown = 600 + +["Frostmage Settings"] + #Radius of the aura around Frostmages in which enemies will be slowed. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_slownessAuraRadius = 6.0 + #Damage dealt by each snowball in the Frostmages' Barrage attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_barrageSnowballDamage = 3.0 + #Duration (in ticks) of the Frostmages' Barrage attack. + #Range: > 0 + frostmage_barrageDuration = 180 + #Damage dealt by each snowball in the Frostmages' Snowball Blast attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_snowballBlastDamage = 14.0 + #Duration (in ticks) of the Frostmages' Freeze attack. + #Range: > 0 + frostmage_freezeDuration = 100 + +["Ashenmancer Settings"] + #Maximum number of Ashenmancer minions that can be spawned at once. + #Range: > 0 + ashenmancer_maxMinionCount = 6 + #Maximum level of Protection that Ashenmancer minions can have on their armor. + #Range: > 0 + ashenmancer_minionMaxProtectionLevel = 6 + #Maximum level of Sharpness that Ashenmancer minions can have on their swords. + #Range: > 0 + ashenmancer_minionMaxSharpnessLevel = 6 + #Whether or not Ashenmancer minions are allowed to grief blocks. Enabling this will cause Ashenmancer wither skulls to explode. + ashenmancer_allowMobGriefing = false + #Damage dealt by the Wither effect applied by Ashenmancer Wither Skulls. Warning: This ignores armor! + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_witherSkullWitherTickDamage = 7.0 + #Duration (in ticks) of the Ashenmancer's Ashenado. + #Range: > 0 + ashenmancer_ashenadoDuration = 600 + #Force applied by the Ashenmancer's Pusher Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_pusherSkullForce = 5.0 + #Duration (in ticks) enemies will be set on fire by the Ashenmancer's Flamer Wither Skulls. + #Range: > 0 + ashenmancer_flamerSkullFireDuration = 320 + #Number of Wither Skulls that will be fired by the Ashenmancer's Multishot Wither Skull attack. + #Range: > 0 + ashenmancer_multishotSkullCount = 9 + #Speed of the Ashenmancer's Speeder Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_speederSkullSpeed = 2.0 + #Duration (in ticks) enemies will be affected with Darkness by the Ashenmancer's Blinder Wither Skulls. + #Range: > 0 + ashenmancer_blinderSkullBlindnessDuration = 160 + #Total number of Wither Skulls fired during the Ashenmancer's Turret attack. + #Range: > 0 + ashenmancer_turretSkullCount = 48 + #Interval (in ticks) between each Wither Skull fired during the Ashenmancer's Turret attack. Warning: This can cause a lot of lag at short intervals! + #Range: > 1 + ashenmancer_turretInterval = 12 + +["Elite Raiders"] + + ["Elite Raiders"."Nuaos Settings"] + #Multiplier on the damage Nuaos takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + nuaos_friendlyDamageReduction = 0.4 + #Level of Sharpness that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_sharpnessLevel = 5 + #Level of Critical Strike that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalStrikeLevel = 3 + #Level of Critical Burst that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalBurstLevel = 10 + #Chance that Nuaos will drop his sword. 0 to disable. + #Range: 0.0 ~ 1.0 + nuaos_swordDropChance = 0.25 + #Amount of damage Nuaos can charge before he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_maxChargeDamage = 50.0 + #Radius of the shockwave Nuaos creates when he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_shockwaveRadius = 7.0 + #Radius of the constant aura Nuaos creates around himself, buffing nearby Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_buffAuraRadius = 12.0 + #Amplifier of Strength that Raiders within Nuaos' aura will receive. 0 to disable. + #Range: > 0 + nuaos_buffAuraStrengthLevel = 3 + #Damage multiplier that Nuaos receives when he is charged, depending on the charge amount. + #The list is in order: [No Charge, Low Charge, High Charge, Max Charge]. + nuaos_chargedDamageBoost = [1.0, 1.25, 1.75, 2.25] + #Whether Nuaos' stored charge should decay over time (if Nuaos is not actively taking damage). + nuaos_chargeDecay = true + + ["Elite Raiders"."Xydrax Settings"] + #Multiplier on the damage Xydrax takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + xydrax_friendlyDamageReduction = 0.4 + #Interval (in ticks) between each pull event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexPullInterval = 20 + #Force applied during Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexForce = 5.0 + #Interval (in ticks) between each damage event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexDamageInterval = 40 + #Base damage dealt by Xydrax's vortex attack at each threshold. + #The list is in this order: [ <1 block, <2 blocks, <5 blocks, >=5 blocks ]. + xydrax_vortexDamageThresholds = [17.5, 10.0, 4.0, 1.0] + #Multiplier on the damage dealt by Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexDamageMultiplier = 2.0 + #Lifetime of one of Xydrax's wind columns (in ticks). + #The first element is the minimum life, the second element is the maximum life. The actual lifetime will be randomly selected between the two values when summoned. + xydrax_windColumnLifetime = [300, 500] + #Lifetime of Xydrax's vortex (in ticks). + #Range: > 0 + xydrax_vortexLifetime = 600 + #Duration (in ticks) of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseDuration = 800 + #Amplifier of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseAmplifier = 4 + + ["Elite Raiders"."Modur Settings"] + #Multiplier on the damage Modur takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_friendlyDamageReduction = 0.4 + #Multiplier on the damage Modur takes from projectiles. 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_projectileDamageReduction = 0.8 + #Damage dealt by Modur's basic lightning strike ranged attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_basicLightningStrikeDamage = 20.0 + #Number of lightning strikes Modur summons per tick during his storm attack. + #Warning: This can be very loud if set too high! + #Range: > 0 + modur_stormStrikesPerTick = 2 + #Damage dealt by each lightning strike during Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormStrikeDamage = 30.0 + #Duration of Modur's storm attack, in ticks. + #Range: > 0 + modur_stormDuration = 400 + #Radius of Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormRadius = 25.0 + #Number of lightning strikes that comprise Modur's charged bolt attack. + #Warning: These will all happen simultaneously, so this can be very loud if set too high! + #Range: > 0 + modur_chargedBoltCount = 10 + #Damage dealt by each lightning strike in Modur's charged bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_chargedBoltDamage = 100.0 + #Damage dealt by lightning strikes during Modur's homing bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_homingBoltDamage = 20.0 + #Duration of Modur's homing bolt attack. + #Range: > 0 + modur_homingBoltTime = 300 + #Damage dealt by lightning strikes during Modur's lightning zap attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_zapDamage = 22.0 + + ["Elite Raiders"."Voldon Settings"] + #Cooldown (in ticks) after all Voldon's familiars are dead. Voldon will not summon more familiars until this cooldown is over. + #Range: > 0 + voldon_familiarSummonCooldown = 300 + #Multiplier on the damage Voldon takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + voldon_friendlyDamageReduction = 0.4 + #Number of fireballs Voldon will shoot at once during his fireball attack. + #Range: > 0 + voldon_fireballCount = 6 + #Duration (in ticks) of the buff Voldon gives himself after sacrificing a familiar. + #Range: > 0 + voldon_sacrificeBuffDuration = 1200 + #Number of familiars Voldon will summon at once. + #Range: > 0 + voldon_familiarSummonCount = 12 + #Whether Voldon's familiars will give the entity that killed them the weakness effect. + voldon_familiarWeaknessOnDeath = true + #Multiplier on the damage Voldon's familiars deal. 1 to remove this feature. + #Range: 0.0 ~ 1.7976931348623157E308 + voldon_familiarAttackDamageMultiplier = 3.0 + #Multiplier on the health Voldon's familiars have. 1 to remove this feature. + #Range: 0.01 ~ 1.7976931348623157E308 + voldon_familiarHealthMultiplier = 2.5 + +[Compatibility] + + #REQUIRES 'Hunters Return' + [Compatibility."Hunter Illager Settings"] + #Level of Power that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPowerLevel = 5 + #Level of Sharpness that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordSharpnessLevel = 5 + #Chance that Hunter bows will be enchanted with Punch. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_bowPunchChance = 1.0 + #Level of Punch that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPunchLevel = 3 + #Chance that Hunter swords will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_swordKnockbackChance = 1.0 + #Level of Knockback that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordKnockbackLevel = 3 + #Chance that Hunter boomerangs will be enchanted with Loyalty. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_boomerangLoyaltyChance = 1.0 + #Level of Sharpness that Hunter boomerangs will be enchanted with. 0 to disable. + #Range: > 0 + hunter_boomerangSharpnessLevel = 5 + #Number of cooked food items that Hunters will be given. + #Range: > 0 + hunter_foodCount = 20 + #Chance that Hunters will be given Golden Apples rather than their normal cooked food item. + #Range: 0.0 ~ 1.0 + hunter_foodGoldenAppleChance = 0.75 + #Chance that Hunters will drop their main hand item (bow or sword) when killed. + #Range: 0.0 ~ 1.0 + hunter_mainItemDropChance = 0.25 + #Chance that Hunters will drop their boomerang when killed. + #Range: 0.0 ~ 1.0 + hunter_boomerangDropChance = 0.5 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Archer Settings"] + #Level of Power that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPowerLevel = 5 + #Level of Punch that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPunchLevel = 2 + #Chance that Archers will drop their bow when killed. + #Range: 0.0 ~ 1.0 + archer_bowDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Skirmisher Settings"] + #Level of Sharpness that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeSharpnessLevel = 5 + #Level of Critical Burst that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalBurstLevel = 6 + #Level of Critical Strike that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalStrikeLevel = 2 + #Chance that Skirmishers will drop their axe when killed. + #Range: 0.0 ~ 1.0 + skirmisher_axeDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Legioner Settings"] + #Level of Sharpness that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordSharpnessLevel = 3 + #Level of Fire Aspect that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordFireAspectLevel = 3 + #Level of Knockback that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordKnockbackLevel = 3 + #Level of Critical Strike that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordCriticalStrikeLevel = 3 + #Chance that Legioners will drop their sword when killed. + #Range: 0.0 ~ 1.0 + legioner_swordDropChance = 0.25 + + #REQUIRES 'Savage and Ravage' + [Compatibility."Executioner Settings"] + #Level of Sharpness that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverSharpnessLevel = 5 + #Level of Critical Burst that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverCriticalBurstLevel = 10 + #Chance that Executioners will drop their cleaver when killed. + #Range: 0.0 ~ 1.0 + executioner_cleaverDropChance = 0.15000000596046448 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Mountaineer Settings"] + #Level of Sharpness that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickSharpnessLevel = 4 + #Level of Critical Burst that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickCriticalBurstLevel = 8 + #Chance that Mountaineers will drop their pick when killed. + #Range: 0.0 ~ 1.0 + mountaineer_pickDropChance = 0.25 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Royal Guard Settings"] + #Level of Sharpness that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeSharpnessLevel = 5 + #Level of Critical Burst that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalBurstLevel = 10 + #Level of Critical Strike that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalStrikeLevel = 4 + #Chance that Royal Guards will drop their axe when killed. + #Range: 0.0 ~ 1.0 + royalguard_axeDropChance = 0.08500000089406967 + + #REQUIRES 'Leo's Illagers' + [Compatibility."Vindicator With Shield Settings"] + #Level of Sharpness that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_sharpnessLevel = 5 + #Level of Critical Burst that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalBurstLevel = 6 + #Level of Critical Strike that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalStrikeLevel = 2 + #Chance that a Shielded Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + shieldVindicator_axeDropChance = 0.0 + diff --git a/minecraft/config/difficultraids/raid-hero.toml b/minecraft/config/difficultraids/raid-hero.toml new file mode 100644 index 0000000..f4466b0 --- /dev/null +++ b/minecraft/config/difficultraids/raid-hero.toml @@ -0,0 +1,500 @@ + +#Edit config values for Hero Raids. +# +["General Settings"] + #Determines if Elite Raiders will show up in Raids. + elitesEnabled = true + #Extra health that Raiders will receive per additional player in the Raid. 0 to disable Raiders receiving extra health. + #Range: 0.0 ~ 1.7976931348623157E308 + playerHealthBoostAmount = 2.0 + +["Vindicator Settings"] + #Level of Sharpness that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_sharpnessLevel = 2 + #Level of Critical Burst that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalBurstLevel = 0 + #Level of Critical Strike that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalStrikeLevel = 1 + #Chance that a Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + vindicator_axeDropChance = 0.0 + +["Evoker Settings"] + #Damage dealt by Evoker Fangs. + #Range: 0.0 ~ 1.7976931348623157E308 + evoker_fangDamage = 7.0 + +["Pillager Settings"] + #Level of Power that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_powerLevel = 1 + #Level of Quick Charge that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_quickChargeLevel = 1 + #Chance that a Pillager's crossbow will be enchanted with Multishot. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_multishotChance = 0.25 + #Chance that a Pillager will drop their crossbow upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_crossbowDropChance = 0.0 + +["Ravager Settings"] + #Damage dealt by Ravagers. The base damage will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_damageMultiplier = 1.0499999523162842 + #Speed of Ravagers. The base speed will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_speedMultiplier = 1.0499999523162842 + +["Warrior Settings"] + #Level of Sharpness that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_sharpnessLevel = 1 + #Chance that a Warrior's sword will be enchanted with Fire Aspect. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_fireAspectChance = 0.0 + #Level of Fire Aspect that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_fireAspectLevel = 0 + #Chance that a Warrior's sword will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_knockbackChance = 0.0 + #Level of Knockback that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_knockbackLevel = 0 + #Level of Critical Strike that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_criticalStrikeLevel = 0 + #Chance that a Warrior will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_swordDropChance = 0.0 + +["Dart Settings"] + #Level of Sharpness that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_sharpnessLevel = 1 + #Level of Knockback that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_knockbackLevel = 2 + #Chance that a Dart will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + dart_swordDropChance = 0.1 + +["Conductor Settings"] + #Damage dealt by a Conductor's Concentrated Bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_concentratedBoltDamage = 19.0 + #Number of lightning strikes that a Conductor will summon when using the Generic Lightning attack. + #Range: > 0 + conductor_genericLightningStrikeCount = 4 + #Damage dealt by a Conductor's Generic Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_genericLightningDamage = 8.0 + #Whether Conductors will summon an extra ring of lightning bolts when using their Ring Lightning attack. + conductor_ringExtraBolts = false + #Damage dealt by each lightning bolt in a Conductor's Ring Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_ringLightningDamage = 2.0 + +["Necromancer Settings"] + #Percentage of damage taken that Necromancers will occasionally reflect onto alive minions. + #Range: 0.0 ~ 1.0 + necromancer_reflectedDamagePercentage = 0.4000000059604645 + #Number of minions that Necromancers will summon at a time. + #Range: > 0 + necromancer_minionChargeSummonCount = 1 + #Maximum level of Protection that Necromancer minions' armor will be enchanted with. + #Range: > 0 + necromancer_minionMaxProtectionLevel = 2 + #Number of skeletons that will spawn in a horde. + #Range: > 0 + necromancer_hordeSize = 10 + #Number of ticks that a horde will remain alive for. + #Range: > 0 + necromancer_hordeLifetime = 300 + +["Shaman Settings"] + #Duration (in ticks) of Invisibility Shamans can apply to themselves. + #Range: > 0 + shaman_invisibilityDuration = 60 + #Maximum number of debuff effects Shamans can apply to players with each attack. + #Range: > 0 + shaman_debuffCount = 1 + #Chance (from 0 to 1) of Shamans applying an additional debuff effect to players with each attack. + #If successful, this chance will be checked again to add another debuff, up to the specified maximum. + #Range: 0.0 ~ 1.0 + shaman_additionalDebuffChance = 0.20000000298023224 + #Duration (in ticks) of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffDuration = 80 + #Amplifier of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffAmplifier = 0 + #Radius (in blocks) of the Resistance and Strength effects Shamans can apply to ally Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + shaman_allyBuffRadius = 8.0 + #Duration (in ticks) of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceDuration = 140 + #Amplifier of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceAmplifier = 0 + #Duration (in ticks) of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthDuration = 140 + #Amplifier of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthAmplifier = 0 + +["Tank Settings"] + #Extra armor points Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmor = 11.0 + #Extra armor toughness Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmorToughness = 0.0 + #Chance for Tanks to spawn with armor enchanted with Thorns. + #Range: 0.0 ~ 1.0 + tank_thornsChance = 0.0 + +["Assassin Settings"] + #Cooldown (in ticks) after an Assassin locks onto a target, before they go invisible again. + #Range: > 0 + assassin_invisibilityCooldown = 3600 + #Cooldown (in ticks) after an Assassin teleports to a target, before they can teleport again. + #Range: > 0 + assassin_teleportCooldown = 3600 + +["Frostmage Settings"] + #Radius of the aura around Frostmages in which enemies will be slowed. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_slownessAuraRadius = 4.0 + #Damage dealt by each snowball in the Frostmages' Barrage attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_barrageSnowballDamage = 1.7999999523162842 + #Duration (in ticks) of the Frostmages' Barrage attack. + #Range: > 0 + frostmage_barrageDuration = 40 + #Damage dealt by each snowball in the Frostmages' Snowball Blast attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_snowballBlastDamage = 4.0 + #Duration (in ticks) of the Frostmages' Freeze attack. + #Range: > 0 + frostmage_freezeDuration = 40 + +["Ashenmancer Settings"] + #Maximum number of Ashenmancer minions that can be spawned at once. + #Range: > 0 + ashenmancer_maxMinionCount = 2 + #Maximum level of Protection that Ashenmancer minions can have on their armor. + #Range: > 0 + ashenmancer_minionMaxProtectionLevel = 2 + #Maximum level of Sharpness that Ashenmancer minions can have on their swords. + #Range: > 0 + ashenmancer_minionMaxSharpnessLevel = 3 + #Whether or not Ashenmancer minions are allowed to grief blocks. Enabling this will cause Ashenmancer wither skulls to explode. + ashenmancer_allowMobGriefing = false + #Damage dealt by the Wither effect applied by Ashenmancer Wither Skulls. Warning: This ignores armor! + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_witherSkullWitherTickDamage = 1.0 + #Duration (in ticks) of the Ashenmancer's Ashenado. + #Range: > 0 + ashenmancer_ashenadoDuration = 200 + #Force applied by the Ashenmancer's Pusher Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_pusherSkullForce = 1.5 + #Duration (in ticks) enemies will be set on fire by the Ashenmancer's Flamer Wither Skulls. + #Range: > 0 + ashenmancer_flamerSkullFireDuration = 100 + #Number of Wither Skulls that will be fired by the Ashenmancer's Multishot Wither Skull attack. + #Range: > 0 + ashenmancer_multishotSkullCount = 3 + #Speed of the Ashenmancer's Speeder Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_speederSkullSpeed = 1.149999976158142 + #Duration (in ticks) enemies will be affected with Darkness by the Ashenmancer's Blinder Wither Skulls. + #Range: > 0 + ashenmancer_blinderSkullBlindnessDuration = 60 + #Total number of Wither Skulls fired during the Ashenmancer's Turret attack. + #Range: > 0 + ashenmancer_turretSkullCount = 16 + #Interval (in ticks) between each Wither Skull fired during the Ashenmancer's Turret attack. Warning: This can cause a lot of lag at short intervals! + #Range: > 1 + ashenmancer_turretInterval = 15 + +["Elite Raiders"] + + ["Elite Raiders"."Nuaos Settings"] + #Multiplier on the damage Nuaos takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + nuaos_friendlyDamageReduction = 0.4 + #Level of Sharpness that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_sharpnessLevel = 2 + #Level of Critical Strike that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalStrikeLevel = 0 + #Level of Critical Burst that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalBurstLevel = 5 + #Chance that Nuaos will drop his sword. 0 to disable. + #Range: 0.0 ~ 1.0 + nuaos_swordDropChance = 0.25 + #Amount of damage Nuaos can charge before he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_maxChargeDamage = 50.0 + #Radius of the shockwave Nuaos creates when he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_shockwaveRadius = 4.0 + #Radius of the constant aura Nuaos creates around himself, buffing nearby Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_buffAuraRadius = 8.0 + #Amplifier of Strength that Raiders within Nuaos' aura will receive. 0 to disable. + #Range: > 0 + nuaos_buffAuraStrengthLevel = 1 + #Damage multiplier that Nuaos receives when he is charged, depending on the charge amount. + #The list is in order: [No Charge, Low Charge, High Charge, Max Charge]. + nuaos_chargedDamageBoost = [1.0, 1.25, 1.75, 2.25] + #Whether Nuaos' stored charge should decay over time (if Nuaos is not actively taking damage). + nuaos_chargeDecay = true + + ["Elite Raiders"."Xydrax Settings"] + #Multiplier on the damage Xydrax takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + xydrax_friendlyDamageReduction = 0.4 + #Interval (in ticks) between each pull event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexPullInterval = 20 + #Force applied during Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexForce = 1.75 + #Interval (in ticks) between each damage event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexDamageInterval = 40 + #Base damage dealt by Xydrax's vortex attack at each threshold. + #The list is in this order: [ <1 block, <2 blocks, <5 blocks, >=5 blocks ]. + xydrax_vortexDamageThresholds = [17.5, 10.0, 4.0, 1.0] + #Multiplier on the damage dealt by Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexDamageMultiplier = 1.0 + #Lifetime of one of Xydrax's wind columns (in ticks). + #The first element is the minimum life, the second element is the maximum life. The actual lifetime will be randomly selected between the two values when summoned. + xydrax_windColumnLifetime = [140, 340] + #Lifetime of Xydrax's vortex (in ticks). + #Range: > 0 + xydrax_vortexLifetime = 400 + #Duration (in ticks) of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseDuration = 200 + #Amplifier of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseAmplifier = 1 + + ["Elite Raiders"."Modur Settings"] + #Multiplier on the damage Modur takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_friendlyDamageReduction = 0.4 + #Multiplier on the damage Modur takes from projectiles. 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_projectileDamageReduction = 0.8 + #Damage dealt by Modur's basic lightning strike ranged attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_basicLightningStrikeDamage = 7.0 + #Number of lightning strikes Modur summons per tick during his storm attack. + #Warning: This can be very loud if set too high! + #Range: > 0 + modur_stormStrikesPerTick = 1 + #Damage dealt by each lightning strike during Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormStrikeDamage = 10.0 + #Duration of Modur's storm attack, in ticks. + #Range: > 0 + modur_stormDuration = 140 + #Radius of Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormRadius = 12.0 + #Number of lightning strikes that comprise Modur's charged bolt attack. + #Warning: These will all happen simultaneously, so this can be very loud if set too high! + #Range: > 0 + modur_chargedBoltCount = 10 + #Damage dealt by each lightning strike in Modur's charged bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_chargedBoltDamage = 25.0 + #Damage dealt by lightning strikes during Modur's homing bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_homingBoltDamage = 8.0 + #Duration of Modur's homing bolt attack. + #Range: > 0 + modur_homingBoltTime = 80 + #Damage dealt by lightning strikes during Modur's lightning zap attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_zapDamage = 12.0 + + ["Elite Raiders"."Voldon Settings"] + #Cooldown (in ticks) after all Voldon's familiars are dead. Voldon will not summon more familiars until this cooldown is over. + #Range: > 0 + voldon_familiarSummonCooldown = 300 + #Multiplier on the damage Voldon takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + voldon_friendlyDamageReduction = 0.4 + #Number of fireballs Voldon will shoot at once during his fireball attack. + #Range: > 0 + voldon_fireballCount = 4 + #Duration (in ticks) of the buff Voldon gives himself after sacrificing a familiar. + #Range: > 0 + voldon_sacrificeBuffDuration = 400 + #Number of familiars Voldon will summon at once. + #Range: > 0 + voldon_familiarSummonCount = 4 + #Whether Voldon's familiars will give the entity that killed them the weakness effect. + voldon_familiarWeaknessOnDeath = true + #Multiplier on the damage Voldon's familiars deal. 1 to remove this feature. + #Range: 0.0 ~ 1.7976931348623157E308 + voldon_familiarAttackDamageMultiplier = 1.25 + #Multiplier on the health Voldon's familiars have. 1 to remove this feature. + #Range: 0.01 ~ 1.7976931348623157E308 + voldon_familiarHealthMultiplier = 1.0 + +[Compatibility] + + #REQUIRES 'Hunters Return' + [Compatibility."Hunter Illager Settings"] + #Level of Power that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPowerLevel = 2 + #Level of Sharpness that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordSharpnessLevel = 2 + #Chance that Hunter bows will be enchanted with Punch. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_bowPunchChance = 0.25 + #Level of Punch that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPunchLevel = 1 + #Chance that Hunter swords will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_swordKnockbackChance = 0.25 + #Level of Knockback that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordKnockbackLevel = 1 + #Chance that Hunter boomerangs will be enchanted with Loyalty. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_boomerangLoyaltyChance = 0.33 + #Level of Sharpness that Hunter boomerangs will be enchanted with. 0 to disable. + #Range: > 0 + hunter_boomerangSharpnessLevel = 1 + #Number of cooked food items that Hunters will be given. + #Range: > 0 + hunter_foodCount = 6 + #Chance that Hunters will be given Golden Apples rather than their normal cooked food item. + #Range: 0.0 ~ 1.0 + hunter_foodGoldenAppleChance = 0.15 + #Chance that Hunters will drop their main hand item (bow or sword) when killed. + #Range: 0.0 ~ 1.0 + hunter_mainItemDropChance = 0.25 + #Chance that Hunters will drop their boomerang when killed. + #Range: 0.0 ~ 1.0 + hunter_boomerangDropChance = 0.5 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Archer Settings"] + #Level of Power that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPowerLevel = 1 + #Level of Punch that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPunchLevel = 0 + #Chance that Archers will drop their bow when killed. + #Range: 0.0 ~ 1.0 + archer_bowDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Skirmisher Settings"] + #Level of Sharpness that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeSharpnessLevel = 2 + #Level of Critical Burst that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalBurstLevel = 0 + #Level of Critical Strike that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalStrikeLevel = 1 + #Chance that Skirmishers will drop their axe when killed. + #Range: 0.0 ~ 1.0 + skirmisher_axeDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Legioner Settings"] + #Level of Sharpness that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordSharpnessLevel = 1 + #Level of Fire Aspect that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordFireAspectLevel = 0 + #Level of Knockback that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordKnockbackLevel = 0 + #Level of Critical Strike that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordCriticalStrikeLevel = 0 + #Chance that Legioners will drop their sword when killed. + #Range: 0.0 ~ 1.0 + legioner_swordDropChance = 0.25 + + #REQUIRES 'Savage and Ravage' + [Compatibility."Executioner Settings"] + #Level of Sharpness that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverSharpnessLevel = 3 + #Level of Critical Burst that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverCriticalBurstLevel = 5 + #Chance that Executioners will drop their cleaver when killed. + #Range: 0.0 ~ 1.0 + executioner_cleaverDropChance = 0.15000000596046448 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Mountaineer Settings"] + #Level of Sharpness that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickSharpnessLevel = 1 + #Level of Critical Burst that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickCriticalBurstLevel = 3 + #Chance that Mountaineers will drop their pick when killed. + #Range: 0.0 ~ 1.0 + mountaineer_pickDropChance = 0.25 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Royal Guard Settings"] + #Level of Sharpness that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeSharpnessLevel = 3 + #Level of Critical Burst that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalBurstLevel = 5 + #Level of Critical Strike that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalStrikeLevel = 2 + #Chance that Royal Guards will drop their axe when killed. + #Range: 0.0 ~ 1.0 + royalguard_axeDropChance = 0.08500000089406967 + + #REQUIRES 'Leo's Illagers' + [Compatibility."Vindicator With Shield Settings"] + #Level of Sharpness that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_sharpnessLevel = 2 + #Level of Critical Burst that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalBurstLevel = 0 + #Level of Critical Strike that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalStrikeLevel = 1 + #Chance that a Shielded Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + shieldVindicator_axeDropChance = 0.0 + diff --git a/minecraft/config/difficultraids/raid-legend.toml b/minecraft/config/difficultraids/raid-legend.toml new file mode 100644 index 0000000..ab6cc74 --- /dev/null +++ b/minecraft/config/difficultraids/raid-legend.toml @@ -0,0 +1,500 @@ + +#Edit config values for Legend Raids. +# +["General Settings"] + #Determines if Elite Raiders will show up in Raids. + elitesEnabled = true + #Extra health that Raiders will receive per additional player in the Raid. 0 to disable Raiders receiving extra health. + #Range: 0.0 ~ 1.7976931348623157E308 + playerHealthBoostAmount = 2.0 + +["Vindicator Settings"] + #Level of Sharpness that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_sharpnessLevel = 3 + #Level of Critical Burst that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalBurstLevel = 2 + #Level of Critical Strike that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalStrikeLevel = 1 + #Chance that a Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + vindicator_axeDropChance = 0.0 + +["Evoker Settings"] + #Damage dealt by Evoker Fangs. + #Range: 0.0 ~ 1.7976931348623157E308 + evoker_fangDamage = 9.0 + +["Pillager Settings"] + #Level of Power that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_powerLevel = 2 + #Level of Quick Charge that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_quickChargeLevel = 2 + #Chance that a Pillager's crossbow will be enchanted with Multishot. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_multishotChance = 0.33000001311302185 + #Chance that a Pillager will drop their crossbow upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_crossbowDropChance = 0.0 + +["Ravager Settings"] + #Damage dealt by Ravagers. The base damage will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_damageMultiplier = 1.25 + #Speed of Ravagers. The base speed will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_speedMultiplier = 1.149999976158142 + +["Warrior Settings"] + #Level of Sharpness that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_sharpnessLevel = 1 + #Chance that a Warrior's sword will be enchanted with Fire Aspect. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_fireAspectChance = 0.25 + #Level of Fire Aspect that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_fireAspectLevel = 1 + #Chance that a Warrior's sword will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_knockbackChance = 0.0 + #Level of Knockback that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_knockbackLevel = 1 + #Level of Critical Strike that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_criticalStrikeLevel = 0 + #Chance that a Warrior will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_swordDropChance = 0.0 + +["Dart Settings"] + #Level of Sharpness that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_sharpnessLevel = 2 + #Level of Knockback that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_knockbackLevel = 3 + #Chance that a Dart will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + dart_swordDropChance = 0.1 + +["Conductor Settings"] + #Damage dealt by a Conductor's Concentrated Bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_concentratedBoltDamage = 20.0 + #Number of lightning strikes that a Conductor will summon when using the Generic Lightning attack. + #Range: > 0 + conductor_genericLightningStrikeCount = 6 + #Damage dealt by a Conductor's Generic Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_genericLightningDamage = 10.0 + #Whether Conductors will summon an extra ring of lightning bolts when using their Ring Lightning attack. + conductor_ringExtraBolts = true + #Damage dealt by each lightning bolt in a Conductor's Ring Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_ringLightningDamage = 5.0 + +["Necromancer Settings"] + #Percentage of damage taken that Necromancers will occasionally reflect onto alive minions. + #Range: 0.0 ~ 1.0 + necromancer_reflectedDamagePercentage = 0.4000000059604645 + #Number of minions that Necromancers will summon at a time. + #Range: > 0 + necromancer_minionChargeSummonCount = 1 + #Maximum level of Protection that Necromancer minions' armor will be enchanted with. + #Range: > 0 + necromancer_minionMaxProtectionLevel = 3 + #Number of skeletons that will spawn in a horde. + #Range: > 0 + necromancer_hordeSize = 15 + #Number of ticks that a horde will remain alive for. + #Range: > 0 + necromancer_hordeLifetime = 400 + +["Shaman Settings"] + #Duration (in ticks) of Invisibility Shamans can apply to themselves. + #Range: > 0 + shaman_invisibilityDuration = 80 + #Maximum number of debuff effects Shamans can apply to players with each attack. + #Range: > 0 + shaman_debuffCount = 1 + #Chance (from 0 to 1) of Shamans applying an additional debuff effect to players with each attack. + #If successful, this chance will be checked again to add another debuff, up to the specified maximum. + #Range: 0.0 ~ 1.0 + shaman_additionalDebuffChance = 0.30000001192092896 + #Duration (in ticks) of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffDuration = 100 + #Amplifier of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffAmplifier = 0 + #Radius (in blocks) of the Resistance and Strength effects Shamans can apply to ally Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + shaman_allyBuffRadius = 10.0 + #Duration (in ticks) of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceDuration = 180 + #Amplifier of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceAmplifier = 0 + #Duration (in ticks) of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthDuration = 180 + #Amplifier of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthAmplifier = 1 + +["Tank Settings"] + #Extra armor points Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmor = 15.0 + #Extra armor toughness Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmorToughness = 0.0 + #Chance for Tanks to spawn with armor enchanted with Thorns. + #Range: 0.0 ~ 1.0 + tank_thornsChance = 0.1 + +["Assassin Settings"] + #Cooldown (in ticks) after an Assassin locks onto a target, before they go invisible again. + #Range: > 0 + assassin_invisibilityCooldown = 2400 + #Cooldown (in ticks) after an Assassin teleports to a target, before they can teleport again. + #Range: > 0 + assassin_teleportCooldown = 2400 + +["Frostmage Settings"] + #Radius of the aura around Frostmages in which enemies will be slowed. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_slownessAuraRadius = 4.5 + #Damage dealt by each snowball in the Frostmages' Barrage attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_barrageSnowballDamage = 2.200000047683716 + #Duration (in ticks) of the Frostmages' Barrage attack. + #Range: > 0 + frostmage_barrageDuration = 60 + #Damage dealt by each snowball in the Frostmages' Snowball Blast attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_snowballBlastDamage = 6.5 + #Duration (in ticks) of the Frostmages' Freeze attack. + #Range: > 0 + frostmage_freezeDuration = 60 + +["Ashenmancer Settings"] + #Maximum number of Ashenmancer minions that can be spawned at once. + #Range: > 0 + ashenmancer_maxMinionCount = 3 + #Maximum level of Protection that Ashenmancer minions can have on their armor. + #Range: > 0 + ashenmancer_minionMaxProtectionLevel = 3 + #Maximum level of Sharpness that Ashenmancer minions can have on their swords. + #Range: > 0 + ashenmancer_minionMaxSharpnessLevel = 4 + #Whether or not Ashenmancer minions are allowed to grief blocks. Enabling this will cause Ashenmancer wither skulls to explode. + ashenmancer_allowMobGriefing = false + #Damage dealt by the Wither effect applied by Ashenmancer Wither Skulls. Warning: This ignores armor! + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_witherSkullWitherTickDamage = 2.0 + #Duration (in ticks) of the Ashenmancer's Ashenado. + #Range: > 0 + ashenmancer_ashenadoDuration = 320 + #Force applied by the Ashenmancer's Pusher Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_pusherSkullForce = 2.0 + #Duration (in ticks) enemies will be set on fire by the Ashenmancer's Flamer Wither Skulls. + #Range: > 0 + ashenmancer_flamerSkullFireDuration = 160 + #Number of Wither Skulls that will be fired by the Ashenmancer's Multishot Wither Skull attack. + #Range: > 0 + ashenmancer_multishotSkullCount = 5 + #Speed of the Ashenmancer's Speeder Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_speederSkullSpeed = 1.350000023841858 + #Duration (in ticks) enemies will be affected with Darkness by the Ashenmancer's Blinder Wither Skulls. + #Range: > 0 + ashenmancer_blinderSkullBlindnessDuration = 80 + #Total number of Wither Skulls fired during the Ashenmancer's Turret attack. + #Range: > 0 + ashenmancer_turretSkullCount = 24 + #Interval (in ticks) between each Wither Skull fired during the Ashenmancer's Turret attack. Warning: This can cause a lot of lag at short intervals! + #Range: > 1 + ashenmancer_turretInterval = 15 + +["Elite Raiders"] + + ["Elite Raiders"."Nuaos Settings"] + #Multiplier on the damage Nuaos takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + nuaos_friendlyDamageReduction = 0.4 + #Level of Sharpness that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_sharpnessLevel = 3 + #Level of Critical Strike that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalStrikeLevel = 0 + #Level of Critical Burst that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalBurstLevel = 6 + #Chance that Nuaos will drop his sword. 0 to disable. + #Range: 0.0 ~ 1.0 + nuaos_swordDropChance = 0.25 + #Amount of damage Nuaos can charge before he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_maxChargeDamage = 50.0 + #Radius of the shockwave Nuaos creates when he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_shockwaveRadius = 4.0 + #Radius of the constant aura Nuaos creates around himself, buffing nearby Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_buffAuraRadius = 8.0 + #Amplifier of Strength that Raiders within Nuaos' aura will receive. 0 to disable. + #Range: > 0 + nuaos_buffAuraStrengthLevel = 1 + #Damage multiplier that Nuaos receives when he is charged, depending on the charge amount. + #The list is in order: [No Charge, Low Charge, High Charge, Max Charge]. + nuaos_chargedDamageBoost = [1.0, 1.25, 1.75, 2.25] + #Whether Nuaos' stored charge should decay over time (if Nuaos is not actively taking damage). + nuaos_chargeDecay = true + + ["Elite Raiders"."Xydrax Settings"] + #Multiplier on the damage Xydrax takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + xydrax_friendlyDamageReduction = 0.4 + #Interval (in ticks) between each pull event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexPullInterval = 20 + #Force applied during Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexForce = 2.5 + #Interval (in ticks) between each damage event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexDamageInterval = 40 + #Base damage dealt by Xydrax's vortex attack at each threshold. + #The list is in this order: [ <1 block, <2 blocks, <5 blocks, >=5 blocks ]. + xydrax_vortexDamageThresholds = [17.5, 10.0, 4.0, 1.0] + #Multiplier on the damage dealt by Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexDamageMultiplier = 1.0499999523162842 + #Lifetime of one of Xydrax's wind columns (in ticks). + #The first element is the minimum life, the second element is the maximum life. The actual lifetime will be randomly selected between the two values when summoned. + xydrax_windColumnLifetime = [180, 340] + #Lifetime of Xydrax's vortex (in ticks). + #Range: > 0 + xydrax_vortexLifetime = 400 + #Duration (in ticks) of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseDuration = 400 + #Amplifier of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseAmplifier = 2 + + ["Elite Raiders"."Modur Settings"] + #Multiplier on the damage Modur takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_friendlyDamageReduction = 0.4 + #Multiplier on the damage Modur takes from projectiles. 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_projectileDamageReduction = 0.8 + #Damage dealt by Modur's basic lightning strike ranged attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_basicLightningStrikeDamage = 12.0 + #Number of lightning strikes Modur summons per tick during his storm attack. + #Warning: This can be very loud if set too high! + #Range: > 0 + modur_stormStrikesPerTick = 1 + #Damage dealt by each lightning strike during Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormStrikeDamage = 15.0 + #Duration of Modur's storm attack, in ticks. + #Range: > 0 + modur_stormDuration = 240 + #Radius of Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormRadius = 18.0 + #Number of lightning strikes that comprise Modur's charged bolt attack. + #Warning: These will all happen simultaneously, so this can be very loud if set too high! + #Range: > 0 + modur_chargedBoltCount = 10 + #Damage dealt by each lightning strike in Modur's charged bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_chargedBoltDamage = 40.0 + #Damage dealt by lightning strikes during Modur's homing bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_homingBoltDamage = 11.0 + #Duration of Modur's homing bolt attack. + #Range: > 0 + modur_homingBoltTime = 140 + #Damage dealt by lightning strikes during Modur's lightning zap attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_zapDamage = 15.0 + + ["Elite Raiders"."Voldon Settings"] + #Cooldown (in ticks) after all Voldon's familiars are dead. Voldon will not summon more familiars until this cooldown is over. + #Range: > 0 + voldon_familiarSummonCooldown = 300 + #Multiplier on the damage Voldon takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + voldon_friendlyDamageReduction = 0.4 + #Number of fireballs Voldon will shoot at once during his fireball attack. + #Range: > 0 + voldon_fireballCount = 4 + #Duration (in ticks) of the buff Voldon gives himself after sacrificing a familiar. + #Range: > 0 + voldon_sacrificeBuffDuration = 500 + #Number of familiars Voldon will summon at once. + #Range: > 0 + voldon_familiarSummonCount = 6 + #Whether Voldon's familiars will give the entity that killed them the weakness effect. + voldon_familiarWeaknessOnDeath = true + #Multiplier on the damage Voldon's familiars deal. 1 to remove this feature. + #Range: 0.0 ~ 1.7976931348623157E308 + voldon_familiarAttackDamageMultiplier = 1.75 + #Multiplier on the health Voldon's familiars have. 1 to remove this feature. + #Range: 0.01 ~ 1.7976931348623157E308 + voldon_familiarHealthMultiplier = 1.0 + +[Compatibility] + + #REQUIRES 'Hunters Return' + [Compatibility."Hunter Illager Settings"] + #Level of Power that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPowerLevel = 3 + #Level of Sharpness that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordSharpnessLevel = 3 + #Chance that Hunter bows will be enchanted with Punch. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_bowPunchChance = 0.5 + #Level of Punch that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPunchLevel = 1 + #Chance that Hunter swords will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_swordKnockbackChance = 0.5 + #Level of Knockback that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordKnockbackLevel = 1 + #Chance that Hunter boomerangs will be enchanted with Loyalty. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_boomerangLoyaltyChance = 0.45 + #Level of Sharpness that Hunter boomerangs will be enchanted with. 0 to disable. + #Range: > 0 + hunter_boomerangSharpnessLevel = 2 + #Number of cooked food items that Hunters will be given. + #Range: > 0 + hunter_foodCount = 8 + #Chance that Hunters will be given Golden Apples rather than their normal cooked food item. + #Range: 0.0 ~ 1.0 + hunter_foodGoldenAppleChance = 0.2 + #Chance that Hunters will drop their main hand item (bow or sword) when killed. + #Range: 0.0 ~ 1.0 + hunter_mainItemDropChance = 0.25 + #Chance that Hunters will drop their boomerang when killed. + #Range: 0.0 ~ 1.0 + hunter_boomerangDropChance = 0.5 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Archer Settings"] + #Level of Power that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPowerLevel = 3 + #Level of Punch that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPunchLevel = 0 + #Chance that Archers will drop their bow when killed. + #Range: 0.0 ~ 1.0 + archer_bowDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Skirmisher Settings"] + #Level of Sharpness that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeSharpnessLevel = 3 + #Level of Critical Burst that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalBurstLevel = 2 + #Level of Critical Strike that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalStrikeLevel = 1 + #Chance that Skirmishers will drop their axe when killed. + #Range: 0.0 ~ 1.0 + skirmisher_axeDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Legioner Settings"] + #Level of Sharpness that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordSharpnessLevel = 1 + #Level of Fire Aspect that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordFireAspectLevel = 1 + #Level of Knockback that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordKnockbackLevel = 1 + #Level of Critical Strike that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordCriticalStrikeLevel = 0 + #Chance that Legioners will drop their sword when killed. + #Range: 0.0 ~ 1.0 + legioner_swordDropChance = 0.25 + + #REQUIRES 'Savage and Ravage' + [Compatibility."Executioner Settings"] + #Level of Sharpness that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverSharpnessLevel = 4 + #Level of Critical Burst that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverCriticalBurstLevel = 6 + #Chance that Executioners will drop their cleaver when killed. + #Range: 0.0 ~ 1.0 + executioner_cleaverDropChance = 0.15000000596046448 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Mountaineer Settings"] + #Level of Sharpness that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickSharpnessLevel = 2 + #Level of Critical Burst that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickCriticalBurstLevel = 5 + #Chance that Mountaineers will drop their pick when killed. + #Range: 0.0 ~ 1.0 + mountaineer_pickDropChance = 0.25 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Royal Guard Settings"] + #Level of Sharpness that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeSharpnessLevel = 4 + #Level of Critical Burst that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalBurstLevel = 6 + #Level of Critical Strike that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalStrikeLevel = 3 + #Chance that Royal Guards will drop their axe when killed. + #Range: 0.0 ~ 1.0 + royalguard_axeDropChance = 0.08500000089406967 + + #REQUIRES 'Leo's Illagers' + [Compatibility."Vindicator With Shield Settings"] + #Level of Sharpness that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_sharpnessLevel = 3 + #Level of Critical Burst that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalBurstLevel = 2 + #Level of Critical Strike that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalStrikeLevel = 1 + #Chance that a Shielded Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + shieldVindicator_axeDropChance = 0.0 + diff --git a/minecraft/config/difficultraids/raid-master.toml b/minecraft/config/difficultraids/raid-master.toml new file mode 100644 index 0000000..3bc2fe2 --- /dev/null +++ b/minecraft/config/difficultraids/raid-master.toml @@ -0,0 +1,500 @@ + +#Edit config values for Master Raids. +# +["General Settings"] + #Determines if Elite Raiders will show up in Raids. + elitesEnabled = true + #Extra health that Raiders will receive per additional player in the Raid. 0 to disable Raiders receiving extra health. + #Range: 0.0 ~ 1.7976931348623157E308 + playerHealthBoostAmount = 2.0 + +["Vindicator Settings"] + #Level of Sharpness that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_sharpnessLevel = 4 + #Level of Critical Burst that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalBurstLevel = 3 + #Level of Critical Strike that Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + vindicator_criticalStrikeLevel = 2 + #Chance that a Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + vindicator_axeDropChance = 0.0 + +["Evoker Settings"] + #Damage dealt by Evoker Fangs. + #Range: 0.0 ~ 1.7976931348623157E308 + evoker_fangDamage = 13.0 + +["Pillager Settings"] + #Level of Power that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_powerLevel = 4 + #Level of Quick Charge that Pillager crossbows will be enchanted with. 0 to disable. + #Range: > 0 + pillager_quickChargeLevel = 4 + #Chance that a Pillager's crossbow will be enchanted with Multishot. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_multishotChance = 0.5 + #Chance that a Pillager will drop their crossbow upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + pillager_crossbowDropChance = 0.0 + +["Ravager Settings"] + #Damage dealt by Ravagers. The base damage will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_damageMultiplier = 1.5 + #Speed of Ravagers. The base speed will be multiplied by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + ravager_speedMultiplier = 1.25 + +["Warrior Settings"] + #Level of Sharpness that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_sharpnessLevel = 2 + #Chance that a Warrior's sword will be enchanted with Fire Aspect. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_fireAspectChance = 0.5 + #Level of Fire Aspect that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_fireAspectLevel = 2 + #Chance that a Warrior's sword will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_knockbackChance = 0.20000000298023224 + #Level of Knockback that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_knockbackLevel = 2 + #Level of Critical Strike that Warrior swords will be enchanted with. 0 to disable. + #Range: > 0 + warrior_criticalStrikeLevel = 2 + #Chance that a Warrior will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + warrior_swordDropChance = 0.0 + +["Dart Settings"] + #Level of Sharpness that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_sharpnessLevel = 3 + #Level of Knockback that Dart swords will be enchanted with. 0 to disable. + #Range: > 0 + dart_knockbackLevel = 4 + #Chance that a Dart will drop their sword. 0 to disable. + #Range: 0.0 ~ 1.0 + dart_swordDropChance = 0.1 + +["Conductor Settings"] + #Damage dealt by a Conductor's Concentrated Bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_concentratedBoltDamage = 24.0 + #Number of lightning strikes that a Conductor will summon when using the Generic Lightning attack. + #Range: > 0 + conductor_genericLightningStrikeCount = 8 + #Damage dealt by a Conductor's Generic Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_genericLightningDamage = 12.0 + #Whether Conductors will summon an extra ring of lightning bolts when using their Ring Lightning attack. + conductor_ringExtraBolts = true + #Damage dealt by each lightning bolt in a Conductor's Ring Lightning attack. + #Range: 0.0 ~ 1.7976931348623157E308 + conductor_ringLightningDamage = 7.0 + +["Necromancer Settings"] + #Percentage of damage taken that Necromancers will occasionally reflect onto alive minions. + #Range: 0.0 ~ 1.0 + necromancer_reflectedDamagePercentage = 0.5 + #Number of minions that Necromancers will summon at a time. + #Range: > 0 + necromancer_minionChargeSummonCount = 2 + #Maximum level of Protection that Necromancer minions' armor will be enchanted with. + #Range: > 0 + necromancer_minionMaxProtectionLevel = 4 + #Number of skeletons that will spawn in a horde. + #Range: > 0 + necromancer_hordeSize = 20 + #Number of ticks that a horde will remain alive for. + #Range: > 0 + necromancer_hordeLifetime = 600 + +["Shaman Settings"] + #Duration (in ticks) of Invisibility Shamans can apply to themselves. + #Range: > 0 + shaman_invisibilityDuration = 100 + #Maximum number of debuff effects Shamans can apply to players with each attack. + #Range: > 0 + shaman_debuffCount = 2 + #Chance (from 0 to 1) of Shamans applying an additional debuff effect to players with each attack. + #If successful, this chance will be checked again to add another debuff, up to the specified maximum. + #Range: 0.0 ~ 1.0 + shaman_additionalDebuffChance = 0.5 + #Duration (in ticks) of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffDuration = 120 + #Amplifier of the random debuff effect Shamans can apply to players. + #Range: > 0 + shaman_debuffAmplifier = 1 + #Radius (in blocks) of the Resistance and Strength effects Shamans can apply to ally Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + shaman_allyBuffRadius = 12.0 + #Duration (in ticks) of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceDuration = 220 + #Amplifier of the Resistance effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyResistanceAmplifier = 2 + #Duration (in ticks) of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthDuration = 220 + #Amplifier of the Strength effect Shamans can apply to ally Raiders. + #Range: > 0 + shaman_allyStrengthAmplifier = 2 + +["Tank Settings"] + #Extra armor points Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmor = 20.0 + #Extra armor toughness Tanks receive. + #Range: 0.0 ~ 1.7976931348623157E308 + tank_extraArmorToughness = 0.0 + #Chance for Tanks to spawn with armor enchanted with Thorns. + #Range: 0.0 ~ 1.0 + tank_thornsChance = 0.3 + +["Assassin Settings"] + #Cooldown (in ticks) after an Assassin locks onto a target, before they go invisible again. + #Range: > 0 + assassin_invisibilityCooldown = 1200 + #Cooldown (in ticks) after an Assassin teleports to a target, before they can teleport again. + #Range: > 0 + assassin_teleportCooldown = 1200 + +["Frostmage Settings"] + #Radius of the aura around Frostmages in which enemies will be slowed. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_slownessAuraRadius = 5.0 + #Damage dealt by each snowball in the Frostmages' Barrage attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_barrageSnowballDamage = 2.799999952316284 + #Duration (in ticks) of the Frostmages' Barrage attack. + #Range: > 0 + frostmage_barrageDuration = 120 + #Damage dealt by each snowball in the Frostmages' Snowball Blast attack. + #Range: 0.0 ~ 1.7976931348623157E308 + frostmage_snowballBlastDamage = 10.0 + #Duration (in ticks) of the Frostmages' Freeze attack. + #Range: > 0 + frostmage_freezeDuration = 80 + +["Ashenmancer Settings"] + #Maximum number of Ashenmancer minions that can be spawned at once. + #Range: > 0 + ashenmancer_maxMinionCount = 4 + #Maximum level of Protection that Ashenmancer minions can have on their armor. + #Range: > 0 + ashenmancer_minionMaxProtectionLevel = 4 + #Maximum level of Sharpness that Ashenmancer minions can have on their swords. + #Range: > 0 + ashenmancer_minionMaxSharpnessLevel = 5 + #Whether or not Ashenmancer minions are allowed to grief blocks. Enabling this will cause Ashenmancer wither skulls to explode. + ashenmancer_allowMobGriefing = false + #Damage dealt by the Wither effect applied by Ashenmancer Wither Skulls. Warning: This ignores armor! + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_witherSkullWitherTickDamage = 4.0 + #Duration (in ticks) of the Ashenmancer's Ashenado. + #Range: > 0 + ashenmancer_ashenadoDuration = 440 + #Force applied by the Ashenmancer's Pusher Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_pusherSkullForce = 3.0 + #Duration (in ticks) enemies will be set on fire by the Ashenmancer's Flamer Wither Skulls. + #Range: > 0 + ashenmancer_flamerSkullFireDuration = 240 + #Number of Wither Skulls that will be fired by the Ashenmancer's Multishot Wither Skull attack. + #Range: > 0 + ashenmancer_multishotSkullCount = 7 + #Speed of the Ashenmancer's Speeder Wither Skulls. + #Range: 0.0 ~ 1.7976931348623157E308 + ashenmancer_speederSkullSpeed = 1.75 + #Duration (in ticks) enemies will be affected with Darkness by the Ashenmancer's Blinder Wither Skulls. + #Range: > 0 + ashenmancer_blinderSkullBlindnessDuration = 120 + #Total number of Wither Skulls fired during the Ashenmancer's Turret attack. + #Range: > 0 + ashenmancer_turretSkullCount = 32 + #Interval (in ticks) between each Wither Skull fired during the Ashenmancer's Turret attack. Warning: This can cause a lot of lag at short intervals! + #Range: > 1 + ashenmancer_turretInterval = 12 + +["Elite Raiders"] + + ["Elite Raiders"."Nuaos Settings"] + #Multiplier on the damage Nuaos takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + nuaos_friendlyDamageReduction = 0.4 + #Level of Sharpness that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_sharpnessLevel = 4 + #Level of Critical Strike that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalStrikeLevel = 1 + #Level of Critical Burst that Nuaos' sword will be enchanted with. 0 to disable. + #Range: > 0 + nuaos_criticalBurstLevel = 8 + #Chance that Nuaos will drop his sword. 0 to disable. + #Range: 0.0 ~ 1.0 + nuaos_swordDropChance = 0.25 + #Amount of damage Nuaos can charge before he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_maxChargeDamage = 50.0 + #Radius of the shockwave Nuaos creates when he explodes. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_shockwaveRadius = 5.0 + #Radius of the constant aura Nuaos creates around himself, buffing nearby Raiders. + #Range: 0.0 ~ 1.7976931348623157E308 + nuaos_buffAuraRadius = 10.0 + #Amplifier of Strength that Raiders within Nuaos' aura will receive. 0 to disable. + #Range: > 0 + nuaos_buffAuraStrengthLevel = 2 + #Damage multiplier that Nuaos receives when he is charged, depending on the charge amount. + #The list is in order: [No Charge, Low Charge, High Charge, Max Charge]. + nuaos_chargedDamageBoost = [1.0, 1.25, 1.75, 2.25] + #Whether Nuaos' stored charge should decay over time (if Nuaos is not actively taking damage). + nuaos_chargeDecay = true + + ["Elite Raiders"."Xydrax Settings"] + #Multiplier on the damage Xydrax takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + xydrax_friendlyDamageReduction = 0.4 + #Interval (in ticks) between each pull event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexPullInterval = 20 + #Force applied during Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexForce = 3.75 + #Interval (in ticks) between each damage event of Xydrax's vortex attack. + #Range: > 1 + xydrax_vortexDamageInterval = 40 + #Base damage dealt by Xydrax's vortex attack at each threshold. + #The list is in this order: [ <1 block, <2 blocks, <5 blocks, >=5 blocks ]. + xydrax_vortexDamageThresholds = [17.5, 10.0, 4.0, 1.0] + #Multiplier on the damage dealt by Xydrax's vortex attack. + #Range: 0.0 ~ 1.7976931348623157E308 + xydrax_vortexDamageMultiplier = 1.2000000476837158 + #Lifetime of one of Xydrax's wind columns (in ticks). + #The first element is the minimum life, the second element is the maximum life. The actual lifetime will be randomly selected between the two values when summoned. + xydrax_windColumnLifetime = [200, 400] + #Lifetime of Xydrax's vortex (in ticks). + #Range: > 0 + xydrax_vortexLifetime = 600 + #Duration (in ticks) of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseDuration = 600 + #Amplifier of the Curse of the Winds effect applied by Xydrax's barrage attack. + #Range: > 0 + xydrax_barrageCurseAmplifier = 3 + + ["Elite Raiders"."Modur Settings"] + #Multiplier on the damage Modur takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_friendlyDamageReduction = 0.4 + #Multiplier on the damage Modur takes from projectiles. 1 to remove this feature. + #Range: 0.0 ~ 1.0 + modur_projectileDamageReduction = 0.8 + #Damage dealt by Modur's basic lightning strike ranged attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_basicLightningStrikeDamage = 16.0 + #Number of lightning strikes Modur summons per tick during his storm attack. + #Warning: This can be very loud if set too high! + #Range: > 0 + modur_stormStrikesPerTick = 2 + #Damage dealt by each lightning strike during Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormStrikeDamage = 20.0 + #Duration of Modur's storm attack, in ticks. + #Range: > 0 + modur_stormDuration = 320 + #Radius of Modur's storm attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_stormRadius = 20.0 + #Number of lightning strikes that comprise Modur's charged bolt attack. + #Warning: These will all happen simultaneously, so this can be very loud if set too high! + #Range: > 0 + modur_chargedBoltCount = 10 + #Damage dealt by each lightning strike in Modur's charged bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_chargedBoltDamage = 60.0 + #Damage dealt by lightning strikes during Modur's homing bolt attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_homingBoltDamage = 15.0 + #Duration of Modur's homing bolt attack. + #Range: > 0 + modur_homingBoltTime = 200 + #Damage dealt by lightning strikes during Modur's lightning zap attack. + #Range: 0.0 ~ 1.7976931348623157E308 + modur_zapDamage = 18.0 + + ["Elite Raiders"."Voldon Settings"] + #Cooldown (in ticks) after all Voldon's familiars are dead. Voldon will not summon more familiars until this cooldown is over. + #Range: > 0 + voldon_familiarSummonCooldown = 300 + #Multiplier on the damage Voldon takes from player-friendly mobs (Iron Golems & Guards). 1 to remove this feature. + #Range: 0.0 ~ 1.0 + voldon_friendlyDamageReduction = 0.4 + #Number of fireballs Voldon will shoot at once during his fireball attack. + #Range: > 0 + voldon_fireballCount = 5 + #Duration (in ticks) of the buff Voldon gives himself after sacrificing a familiar. + #Range: > 0 + voldon_sacrificeBuffDuration = 800 + #Number of familiars Voldon will summon at once. + #Range: > 0 + voldon_familiarSummonCount = 8 + #Whether Voldon's familiars will give the entity that killed them the weakness effect. + voldon_familiarWeaknessOnDeath = true + #Multiplier on the damage Voldon's familiars deal. 1 to remove this feature. + #Range: 0.0 ~ 1.7976931348623157E308 + voldon_familiarAttackDamageMultiplier = 2.4000000953674316 + #Multiplier on the health Voldon's familiars have. 1 to remove this feature. + #Range: 0.01 ~ 1.7976931348623157E308 + voldon_familiarHealthMultiplier = 2.0 + +[Compatibility] + + #REQUIRES 'Hunters Return' + [Compatibility."Hunter Illager Settings"] + #Level of Power that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPowerLevel = 4 + #Level of Sharpness that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordSharpnessLevel = 4 + #Chance that Hunter bows will be enchanted with Punch. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_bowPunchChance = 0.75 + #Level of Punch that Hunter bows will be enchanted with. 0 to disable. + #Range: > 0 + hunter_bowPunchLevel = 2 + #Chance that Hunter swords will be enchanted with Knockback. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_swordKnockbackChance = 0.75 + #Level of Knockback that Hunter swords will be enchanted with. 0 to disable. + #Range: > 0 + hunter_swordKnockbackLevel = 2 + #Chance that Hunter boomerangs will be enchanted with Loyalty. 0 to disable. + #Range: 0.0 ~ 1.0 + hunter_boomerangLoyaltyChance = 0.75 + #Level of Sharpness that Hunter boomerangs will be enchanted with. 0 to disable. + #Range: > 0 + hunter_boomerangSharpnessLevel = 3 + #Number of cooked food items that Hunters will be given. + #Range: > 0 + hunter_foodCount = 10 + #Chance that Hunters will be given Golden Apples rather than their normal cooked food item. + #Range: 0.0 ~ 1.0 + hunter_foodGoldenAppleChance = 0.4 + #Chance that Hunters will drop their main hand item (bow or sword) when killed. + #Range: 0.0 ~ 1.0 + hunter_mainItemDropChance = 0.25 + #Chance that Hunters will drop their boomerang when killed. + #Range: 0.0 ~ 1.0 + hunter_boomerangDropChance = 0.5 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Archer Settings"] + #Level of Power that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPowerLevel = 4 + #Level of Punch that Archer bows will be enchanted with. 0 to disable. + #Range: > 0 + archer_bowPunchLevel = 1 + #Chance that Archers will drop their bow when killed. + #Range: 0.0 ~ 1.0 + archer_bowDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Skirmisher Settings"] + #Level of Sharpness that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeSharpnessLevel = 4 + #Level of Critical Burst that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalBurstLevel = 3 + #Level of Critical Strike that Skirmisher axes will be enchanted with. 0 to disable. + #Range: > 0 + skirmisher_axeCriticalStrikeLevel = 2 + #Chance that Skirmishers will drop their axe when killed. + #Range: 0.0 ~ 1.0 + skirmisher_axeDropChance = 0.33000001311302185 + + #REQUIRES 'It Takes a Pillage' + [Compatibility."Legioner Settings"] + #Level of Sharpness that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordSharpnessLevel = 2 + #Level of Fire Aspect that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordFireAspectLevel = 2 + #Level of Knockback that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordKnockbackLevel = 2 + #Level of Critical Strike that Legioner swords will be enchanted with. 0 to disable. + #Range: > 0 + legioner_swordCriticalStrikeLevel = 1 + #Chance that Legioners will drop their sword when killed. + #Range: 0.0 ~ 1.0 + legioner_swordDropChance = 0.25 + + #REQUIRES 'Savage and Ravage' + [Compatibility."Executioner Settings"] + #Level of Sharpness that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverSharpnessLevel = 4 + #Level of Critical Burst that Executioner cleavers will be enchanted with. 0 to disable. + #Range: > 0 + executioner_cleaverCriticalBurstLevel = 8 + #Chance that Executioners will drop their cleaver when killed. + #Range: 0.0 ~ 1.0 + executioner_cleaverDropChance = 0.15000000596046448 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Mountaineer Settings"] + #Level of Sharpness that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickSharpnessLevel = 3 + #Level of Critical Burst that Mountaineer picks will be enchanted with. 0 to disable. + #Range: > 0 + mountaineer_pickCriticalBurstLevel = 6 + #Chance that Mountaineers will drop their pick when killed. + #Range: 0.0 ~ 1.0 + mountaineer_pickDropChance = 0.25 + + #REQUIRES 'Dungeon Mobs' + [Compatibility."Royal Guard Settings"] + #Level of Sharpness that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeSharpnessLevel = 4 + #Level of Critical Burst that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalBurstLevel = 8 + #Level of Critical Strike that Royal Guard axes will be enchanted with. 0 to disable. + #Range: > 0 + royalguard_axeCriticalStrikeLevel = 4 + #Chance that Royal Guards will drop their axe when killed. + #Range: 0.0 ~ 1.0 + royalguard_axeDropChance = 0.08500000089406967 + + #REQUIRES 'Leo's Illagers' + [Compatibility."Vindicator With Shield Settings"] + #Level of Sharpness that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_sharpnessLevel = 4 + #Level of Critical Burst that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalBurstLevel = 3 + #Level of Critical Strike that Shielded Vindicator axes will be enchanted with. 0 to disable. + #Range: > 0 + shieldVindicator_criticalStrikeLevel = 2 + #Chance that a Shielded Vindicator will drop their axe upon death. 0 to disable. + #Range: 0.0 ~ 1.0 + shieldVindicator_axeDropChance = 0.0 + diff --git a/minecraft/config/dimpaintings-common.toml b/minecraft/config/dimpaintings-common.toml new file mode 100644 index 0000000..bece36b --- /dev/null +++ b/minecraft/config/dimpaintings-common.toml @@ -0,0 +1,16 @@ + +#General settings +[General] + #Dictates if the overworld painting will teleport you back to your spawnpoint / bed (Similar to teleporting from the End to the Overworld) + overworldToBed = false + #Dictates the max Y at which the Nether Painting will place you in the Nether + #[For a vanilla nether it's recommended to keep the value between 10 and 120 + #[51 = Spawn in a bubble at Y 50 if nothing] (Default: 120) + #Range: -2048 ~ 2048 + netherMaxY = 120 + #Amount of seconds between being able to teleport (Default: 4) + #Range: > 0 + teleportCooldown = 4 + #Disable nether portal creation (Default: false) + disableNetherPortal = false + diff --git a/minecraft/config/dimthread-common.toml b/minecraft/config/dimthread-common.toml new file mode 100644 index 0000000..55a5d24 --- /dev/null +++ b/minecraft/config/dimthread-common.toml @@ -0,0 +1,13 @@ +#Define the initial thread count number of threads +#If the value is 6, new worlds will start with 6 thread counts as a initial value +#This is useful for modpacks with dimensional mods, instead of fallback on default's 3 you can configure how many can use +#ADVICE: Gamerule and this config is capped to max available processors of the server +#if you set the value above available processors, forge will set it back to defaults 3 +#This was done to prevent users gameplay got slowed by not having enough threads +#Range: 2 ~ 16 +default_gamerule_threads = 3 +#WARNING: very VERY EXPERIMENTAL, do not use it (except if you want world corruption) +#This feature is intended to ignore crashes ticking levels, for the good sake of not have to restart your entire server +#Have i mentioned IS EXPERIMENTAL? +ignore_tick_crash = false + diff --git a/minecraft/config/doapi/recipebook.json5 b/minecraft/config/doapi/recipebook.json5 new file mode 100644 index 0000000..90a7ae6 --- /dev/null +++ b/minecraft/config/doapi/recipebook.json5 @@ -0,0 +1,15 @@ +/* +Do Api Config + +======= +Links: +CurseForge: https://www.curseforge.com/minecraft/mc-mods/do-api +Modrinth: https://modrinth.com/mod/do-api +GitHub: https://github.com/Cristelknight999/DoAPI +*/ +{ + // Is the recipe book open + "recipe_book_open": false, + // Only show craftable items + "craftable_toggle": true +} \ No newline at end of file diff --git a/minecraft/config/does_it_tick-common.toml b/minecraft/config/does_it_tick-common.toml new file mode 100644 index 0000000..f483046 --- /dev/null +++ b/minecraft/config/does_it_tick-common.toml @@ -0,0 +1,42 @@ + +#Does It Tick? +["Living Entities Tick Settings"] + #If you disable this, entities will not stop ticking when they'are far from you, this mod may be useless for you too + OptimizeEntitiesTicking = true + #Range: > 1 + LivingEntitiesMaxHorizontalTickDistance = 64 + #Range: > 1 + LivingEntitiesMaxVerticalTickDistance = 32 + #If you don't want an entity to be affected by the optimization, you can write its registry name down here. + EntitiesWhitelist = ["minecraft:ender_dragon", "minecraft:ghast", "minecraft:wither", "minecraft:player", "alexsmobs:void_worm", "alexsmobs:void_worm_part", "alexsmobs:spectre", "twilightforest:naga", "twilightforest:lich", "twilightforest:yeti", "twilightforest:snow_queen", "twilightforest:minoshroom", "twilightforest:hydra", "twilightforest:knight_phantom", "twilightforest:ur_ghast", "atum:pharaoh", "mowziesmobs:barako", "mowziesmobs:ferrous_wroughtnaut", "mowziesmobs:frostmaw", "mowziesmobs:naga", "aoa3:skeletron", "aoa3:smash", "aoa3:baroness", "aoa3:clunkhead", "aoa3:corallus", "aoa3:cotton_candor", "aoa3:craexxeus", "aoa3:xxeus", "aoa3:creep", "aoa3:crystocore", "aoa3:dracyon", "aoa3:graw", "aoa3:gyro", "aoa3:hive_king", "aoa3:kajaros", "aoa3:miskel", "aoa3:harkos", "aoa3:raxxan", "aoa3:okazor", "aoa3:king_bambambam", "aoa3:king_shroomus", "aoa3:kror", "aoa3:mechbot", "aoa3:nethengeic_wither", "aoa3:red_guardian", "aoa3:blue_guardian", "aoa3:green_guardian", "aoa3:yellow_guardian", "aoa3:rock_rider", "aoa3:shadowlord", "aoa3:tyrosaur", "aoa3:vinecorne", "aoa3:visualent", "aoa3:voxxulon", "aoa3:bane", "aoa3:elusive", "gaiadimension:malachite_drone", "gaiadimension:malachite_guard", "blue_skies:alchemist", "blue_skies:arachnarch", "blue_skies:starlit_crusher", "blue_skies:summoner", "stalwart_dungeons:awful_ghast", "stalwart_dungeons:nether_keeper", "stalwart_dungeons:shelterer_without_armor", "dungeonsmod:extrapart", "dungeonsmod:king", "dungeonsmod:deserted", "dungeonsmod:crawler", "dungeonsmod:ironslime", "dungeonsmod:kraken", "dungeonsmod:voidmaster", "dungeonsmod:lordskeleton", "dungeonsmod:winterhunter", "dungeonsmod:sun", "forestcraft:beequeen", "forestcraft:iguana_king", "forestcraft:cosmic_fiend", "forestcraft:nether_scourge", "cataclysm:ender_golem", "cataclysm:ender_guardian", "cataclysm:ignis", "cataclysm:ignited_revenant", "cataclysm:netherite_monstrosity", "iceandfire:fire_dragon", "iceandfire:ice_dragon", "iceandfire:lightning_dragon", "iceandfire:dragon_multipart"] + #If you don't want entities of a mod to be affected by the optimization, you can write its modid down here + EntitiesModIDWhiteList = ["create", "witherstormmod"] + #With this turned on, all the raider won't stop ticking in raid chunks even if they are far from players (well this is not perfect as the raiders may walk out of the raid range) + TickRaidersInRaid = true + #Similar with entity whitelist, but only take effect in raid. + RaidEntitiesWhiteList = ["minecraft:witch", "minecraft:vex"] + #Similar with entity modID whitelist, but only take effect in raid + RaidEntitiesModIDWhiteList = [] + #Leave this empty for applying to all the dimensions + #Entities in these dimensions will be affected by the optimization + DimensionWhitelist = [] + #If this is enabled, tickable check will run a lot faster, but the entity will not die out of range + IgnoreDeadEntities = false + #If this is enabled, this mod will only work on passive entities. + IgnoreHostileEntities = false + #If this is enabled, this mod will only work on hostile entities. + IgnorePassiveEntities = false + +["Item Entities Tick Settings"] + #Slow down item entities' ticking speed by 1/4 + OptimizeItemMovement = false + #If you don't want to let a specific item entity in the world to be effected by the optimization, you can write its registry name down here. + #Require 'OptimizeItemMovement' to be true + ItemWhiteList = ["minecraft:cobblestone"] + +[Misc] + DisableOnClient = true + SendWarningMessageWhenPlayerLogIn = true + #If you disable this, entities near player bases may be affected. + DisableInActiveChunks = true + diff --git a/minecraft/config/doggytalents-client.toml b/minecraft/config/doggytalents-client.toml new file mode 100644 index 0000000..74cedc8 --- /dev/null +++ b/minecraft/config/doggytalents-client.toml @@ -0,0 +1,139 @@ + +["Dog Render"] + #Enables the particle effect on Full Kami dogs. + enable_kami_particles = false + #Disable this if you want to force all PackPuppy Dog to not render their Chest. + render_chest = true + #Enable this if you prefer to have The Classical Skin rendered on all dog regardless. + always_render_classical = false + #When enabled, Dogs will show injured texture while incapacitated. + render_incapacitated_overlay = true + #When sneaking, a part of the dog's name will be rendered with a certain color + #, the length of the part is based on the health percentage the dog has left + render_health_in_name = true + #Configure what will be displayed in the middle of + #each of the info section (e.g Hunger, Gender, Mode) when rendering + #the Dog Status String located above the main Dog Name String. + dog_info_seperator = " · " + #Configure the format that will be used to display hunger value + #when rendering the Dog Status String located above the main + #Dog Name String. + dog_info_hunger_format = "%d" + #Render a universal dog inventory access button in your inventory gui. + #If this is turned off, you can still access the button via the dog's + #GUI in Talents > Pack Puppy. + dog_inv_button_in_inv = true + #Set a custom position for the universal dog inventory access button here. + #Can be utilized when the button overlaps with another mod's GUI feature or you + #simply prefer it being in a different position. + #This option only affects the Survival inventory screen. + #The position is the offset of the button is the offset from the top left corner + #of the box wrapping the whole inventory gui. + #Range: -500 ~ 500 + dog_inv_button_in_inv_x = 78 + #Range: -500 ~ 500 + dog_inv_button_in_inv_y = 48 + #If the default incapacitated texture proof too many graphics. + #You can substitute this friendlier texture instead. + render_incap_txt_less_graphic = false + #Render the dogs' name whose owner is not you with a different color. + render_diffowner_name_different = true + #Do not render dogs' names whose owner is not you. + render_diffowner_name_dont = false + #Always render dog nametags regardless even if the player blocks it by F1 mode. + always_render_dog_name = false + #Attempt to block third parties from rendering overlays that may conflict + #with DT's built-in tag. It is recommended that this be achieved via the target third-party's + #configurations if they have the option to disable nametag overlay for certain mobs + #(Which they should). This option should only be used as the last resort. + block_third_party_nametag = false + #By default, a copy of the Classical (Vanilla Wolf Texture) provided by the mod + #is used to render The Classical Skin, this is to avoid conflicts with resource packs + #like Fresh Animations which are directly using the in-game wolf texture. Turning this on + #will make DTN directly reference the in-game texture. + use_vanilla_res_for_classical = false + #Show a fun icon on world loading screen. + world_load_icon = true + #Move the world load icon to the right corner. + world_load_icon_r = false + #Set the world load icon offset from the corner. + #Range: -500 ~ 500 + world_load_icon_x = 0 + #Range: -500 ~ 500 + world_load_icon_y = 0 + #DTN's fun little world loading icon will occasionally + #show Ammy instead of Classical Pale. Disable this + #to force the icon to always show Classical Pale. + ammy_spinna = true + #Determine if dogs will render their armor. + render_armor = true + #Determine if dogs still render with a red overlay upon hurt like they usually do. + #This can be toggled on if the user prefers to not have the red overlay and relies on the animation + #to indicate hurting. + block_red_overlay_when_hurt = false + #Display extra smoke when the dog is on fire. + display_smoke_when_on_fire = true + #By default, dogs will render items in their mouth, regardless of models. + #This can be disabled if you prefer not to render it on some + #less compatible model. + mouth_item_force_render = true + #Specify the max latency allowed before force adjusting the animation time + #client side to sync with server's animation time. The unit is in ticks. + #Provide a non positive integer to disable this. Value from 0 to 7 both inclusive will be defaulted to 7. + #Range: > -2147483648 + max_animation_latency_allowed = 10 + #Currently, DTN is utilizing a new system for rendering Doggy Armor's Armor + #which allows DTN to directly use any texture which the armor item provided + #for the player, thus better replicating third-party armor. Set this to true + #if you prefer to use the old system instead. + use_legacy_dog_armor_render = false + #By default, DTN will try querying models from third parties designed for the player when + #rendering helmet on the Dog. Disable this to force DTN to use either vanilla's player model or + #DTN provided model designed for Dogs (specified by the below option). + use_third_party_player_helmet_model = false + #By default, if there is no custom Helmet Armor model for the Helmet Item, + #DTN will use its own helmet armor model designed for DTN Dog to + #render it on the Dog's head. Enable this to make DTN reuse the player's Helmet Model instead. + use_player_helmet_model_by_default = false + #Enable this to allow every World which is running on this Minecraft + #instance's Integrated Server to provide new players with a Starter Bundle + #regardless of the world's serverconfig. + enable_starter_bundle_by_default = false + #Some special Dog Variants may display some special effects + #clientside. Set this to false to disable this behaviour. + dog_variant_client_effect = true + #Disable this to prevent Radio Collars from being rendered in case if + #the server requires those or Locator Orb to be present to be tracked + #using the Canine Tracker and you prefer to make the tracker invisible. + render_radio_collar = true + #Always render Overlay Accessories on Dogs as Translucent + #This is to prevent Special Variant's overlay to override on the Overlay Accessories + translucent_all_overlay = true + #Enable this to hide Wolf Mount Dog's Status Overlay when riding it. + hide_wolf_mount_status = false + #Enable this to hide Wolf Mount Dog's Status Overlay when riding it in Creative. + hide_wolf_mount_status_creative = true + #Use DTN's Dedicated Wolf Mount Overlay when riding the Dog to show its + #status. This will takes up two health lines and will render where + #the Vanilla Vehicle Health is and instead of it. + dtn_wolf_mount_overlay = true + #Force DTN's Dedicated Wolf Mount Overlay to always render Dog + #Health and Dog Hunger in percentages. + #When disabled, these entries will be rendered as their absolute + #values and only if the max values of these entries exceed 3 digits, + #they will be rendered as percentages. + dtn_wolf_mount_overlay_percent = true + #By default, DTN will render your Dogs' Names through walls. Disable + #this to make Owned Dogs' Names no longer visible through walls. + show_dog_name_thru_wall = true + #Enable this if you want to automatically clear the Dog Bed Model + #Cache every time Tags is updated on client side. + dog_bed_clear_cache_auto = false + #Configure the maximum value of Dog Bed variants that will be rendered. + #If the amount of Dog Bed variants rendered exceeds this limit, + #other variants will be rendered as the default variant. + #To reset the cache, do a resource reload (F3+T). + #Set this option to any value less than zero to remove the limit. + #Range: > -2147483648 + max_dog_bed_model_cache = 65536 + diff --git a/minecraft/config/doggytalents-dog_custom_skins_client.toml b/minecraft/config/doggytalents-dog_custom_skins_client.toml new file mode 100644 index 0000000..a793f97 --- /dev/null +++ b/minecraft/config/doggytalents-dog_custom_skins_client.toml @@ -0,0 +1,14 @@ +#Specify the Strategy to be used when picking which Dog Custom Skin +#will not be loaded clientside. The entry for these lists is +#required to be the texture's path in ResourceLocation format +#(e.g. doggytalents:textures/entity/dog/custom/arcanine_shiro.png). +#Your client do need to be restarted for any changes to take places. +#0: Allow all +#1: Allow all except blacklisted +#2: Disallow all except whitelisted +#Other: Defaulted to 0 +#Range: > -2147483648 +strategy = 0 +whitelisted_id = [] +blacklisted_id = [] + diff --git a/minecraft/config/doubledoors.json5 b/minecraft/config/doubledoors.json5 new file mode 100644 index 0000000..98c687d --- /dev/null +++ b/minecraft/config/doubledoors.json5 @@ -0,0 +1,15 @@ +{ + // Whether the recursive opening feature should be enabled. This allows you to for example build a giant door with trapdoors which will all open at the same time, as long as they are connected. The 'recursiveOpeningMaxBlocksDistance' config option determines how far the function should search. + "enableRecursiveOpening": true, + // How many blocks the recursive function should search when 'enableRecursiveOpening' is enabled. + // min: 1, max: 64 + "recursiveOpeningMaxBlocksDistance": 10, + // When enables, the mod works with double doors. + "enableDoors": true, + // When enables, the mod works with double fence gates. + "enableFenceGates": false, + // When enables, the mod works with double trapdoors. + "enableTrapdoors": false, + // Checks if there are other mods loaded with double door functionality, such as Quark. If found, it edits a line in their config to disable double doors. Fixes doors not opening due to code being ran twice. + "enableModIncompatibilityCheck": true +} \ No newline at end of file diff --git a/minecraft/config/dungeon_crawl.toml b/minecraft/config/dungeon_crawl.toml new file mode 100644 index 0000000..c466683 --- /dev/null +++ b/minecraft/config/dungeon_crawl.toml @@ -0,0 +1,58 @@ + +["Miscellaneous Settings"] + #----------------------------------------------------------------------------------------------------+ + # Enables the dungeon crawl developer tools. Do not use this for normal gameplay. + # + enable_tools = false + #----------------------------------------------------------------------------------------------------+ + # Enables extended debug logging to help detecting errors. Enabled by default. + # + extended_debug = true + +["World Generation"] + #----------------------------------------------------------------------------------------------------+ + # When enabled, the dungeons will ignore caves instead of trying to adjust to them (by not generating specific blocks). + # + solid = false + #----------------------------------------------------------------------------------------------------+ + # Whether falling blocks like sand or gravel should drop down after being placed during dungeon generation. + # + tick_falling_blocks = true + +["Dungeon Settings"] + #----------------------------------------------------------------------------------------------------+ + # Whether the dungeons should have secret rooms or not. + # + secret_rooms = true + #----------------------------------------------------------------------------------------------------+ + # + #Whether the dungeons should generate at a fixed height or not. Enable this if the dungeons are generating too high. + fixed_generation_height = false + #----------------------------------------------------------------------------------------------------+ + # Whether loot tables of certain spawner entities should be overwritten. + # For example, wither skeletons from dungeon spawners will never drop skulls if this is enabled. + # + overwrite_entity_loot_tables = true + #----------------------------------------------------------------------------------------------------+ + # Whether the hell stage should be built with blocks from the overworld instead from the nether. + # + no_nether_blocks = false + #----------------------------------------------------------------------------------------------------+ + # The activation range for the spawners in the dungeons. + # + #Range: 1 ~ 64 + spawner_activation_range = 12 + #----------------------------------------------------------------------------------------------------+ + # The number of different entities per spawner. Increasing the number increases the diversity of the monster equipment. + # + #Range: 1 ~ 128 + spawner_entities = 6 + #----------------------------------------------------------------------------------------------------+ + # Whether custom mob spawners with equipment, etc.. should be used. + # + custom_spawners = true + #----------------------------------------------------------------------------------------------------+ + # Whether mobs from spawners should despawn naturally or not. + # + natural_despawn = true + diff --git a/minecraft/config/durabilitytooltip-common.toml b/minecraft/config/durabilitytooltip-common.toml new file mode 100644 index 0000000..6a08094 --- /dev/null +++ b/minecraft/config/durabilitytooltip-common.toml @@ -0,0 +1,29 @@ +[Client] + # What should be the style of the tooltip? 'numbers' means 'Durability: 30 / 100', 'text' means 'Durability: pristine/slight damaged/nearly broken', 'bar' means 'Durability: [███▒▒▒▒▒▒▒]' + # Allowed values: BAR, NUMBERS, TEXT - Default: NUMBERS + tooltipStyle = "NUMBERS" + + # Should the tooltip include the 'Durability:' hint? + # Allowed values: true, false - Default: true + showTooltipHint = true + + # What colors should be used for the reactive part (numbers/text/bar characters) of the tooltip? 'base' means use the base color, 'gold' means always gold, 'varying' means green/orange/red depending on remaining durability. + # Allowed values: BASE, GOLD, VARYING - Default: VARYING + tooltipColorStyle = "VARYING" + + # What should be the base text color of the tooltip? + # Allowed values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE, OBFUSCATED, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC, RESET - Default: GRAY + baseTooltipColor = "GRAY" + + # Should the durability tooltip only be shown on vanilla tools? + # Allowed values: true, false - Default: false + onlyVanillaTools = false + + # Should the durability tooltip be shown when a tool is not damaged? + # Allowed values: true, false - Default: true + showWhenFull = true + + # Which mods should be blacklisted? Items from blacklisted mods won't show the durability tooltip. + # Allowed length: 0 ~ 100 - Default: 'tconstruct,supplementaries' + blackListedMods = "tconstruct,supplementaries" + diff --git a/minecraft/config/dynamic_fps.json b/minecraft/config/dynamic_fps.json new file mode 100644 index 0000000..fb9a4e0 --- /dev/null +++ b/minecraft/config/dynamic_fps.json @@ -0,0 +1,18 @@ +{ + "enabled": true, + "unfocused": { + "frame_rate_target": 30, + "volume_multiplier": 0.5, + "run_garbage_collector": false + }, + "hidden": { + "frame_rate_target": 1, + "volume_multiplier": 0.0, + "run_garbage_collector": true + }, + "abandoned": { + "frame_rate_target": 1, + "volume_multiplier": 0.0, + "run_garbage_collector": true + } +} diff --git a/minecraft/config/dynamic_lights_reforged.toml b/minecraft/config/dynamic_lights_reforged.toml new file mode 100644 index 0000000..f91c83d --- /dev/null +++ b/minecraft/config/dynamic_lights_reforged.toml @@ -0,0 +1,11 @@ + +#Dynamic Lights Settings +[Settings] + + [Settings."Lighting Settings"] + "Dynamic TileEntity Lighting" = false + "Only Update On Position Change" = true + #Allowed Values: OFF, SLOW, FAST, REALTIME + "Quality Mode (OFF, SLOW, FAST, REALTIME)" = "SLOW" + "Dynamic Entity Lighting" = true + diff --git a/minecraft/config/easy_mob_farm/entity_scaling.cfg b/minecraft/config/easy_mob_farm/entity_scaling.cfg new file mode 100644 index 0000000..6b4f3ae --- /dev/null +++ b/minecraft/config/easy_mob_farm/entity_scaling.cfg @@ -0,0 +1,10 @@ +#Entity Scaling Configuration +# +# This configuration overwrites the automatic calculated scaling factors for entity types. +# The scaling factors are used to adjust the size of the entity to match the size of mob farm. +# This is useful for entities with extra large wings or other body parts. +# +# The format is as follows: +# - : +#Wed May 14 19:35:16 CDT 2025 +iceandfire\:fire_dragon=3.5 diff --git a/minecraft/config/easy_mob_farm/mob_capture_card.cfg b/minecraft/config/easy_mob_farm/mob_capture_card.cfg new file mode 100644 index 0000000..fb3a242 --- /dev/null +++ b/minecraft/config/easy_mob_farm/mob_capture_card.cfg @@ -0,0 +1,32 @@ +#Mob Capture Card Configuration +# +# This configuration file allows you to define the general settings for the Mob Capture Cards. +# +# Allow and Deny list +# ------------------- +# If you want to allow or deny specific mobs, you can use the allow and deny list. +# Keep in mind that if you add a mob to the allow list, all other mobs will be denied by default. +# There are two separate lists for kill and fishing drops. +# +# Example for allow only specific mobs: +# mobCaptureCardKillDropAllowList=minecraft:zombie,minecraft:skeleton +# mobCaptureCardKillDropDenyList= +# mobCaptureCardFishingDropAllowList=minecraft:cod,minecraft:salmon +# mobCaptureCardFishingDropDenyList= +# +# Example for deny specific mobs: +# mobCaptureCardKillDropAllowList= +# mobCaptureCardKillDropDenyList=minecraft:ender_dragon,minecraft:wither +# mobCaptureCardFishingDropAllowList= +# mobCaptureCardFishingDropDenyList=minecraft:squid,minecraft:turtle +#Sun Mar 16 22:05:22 CDT 2025 +mobCaptureCardFishingDropChance=0.15 +mobCaptureCardFishingDropAllowList= +dropMobCaptureCardOnFishing=true +requirePlayerKill=true +mobCaptureCardFishingDropDenyList= +mobCaptureCardKillDropAllowList= +mobCaptureCardKillDropDenyList= +mobCaptureCardKillDropChance=0.1 +mobCaptureCardFoilDropChance=0.01 +dropMobCaptureCardOnKill=true diff --git a/minecraft/config/easy_mob_farm/mob_capture_card_models.cfg b/minecraft/config/easy_mob_farm/mob_capture_card_models.cfg new file mode 100644 index 0000000..7ade37f --- /dev/null +++ b/minecraft/config/easy_mob_farm/mob_capture_card_models.cfg @@ -0,0 +1,76 @@ +#Mob Capture Card Models Configuration +# +# This configuration file allows you to define the models for the Mob Capture Cards. +# +# The format is as follows: +# - = +# - :: = +# - :: = +# - :::: = +# +# Example: +# - minecraft:zombie = easy_mob_farm:item/mob_capture_card/minecraft/zombie +# - minecraft:zombie::blue = easy_mob_farm:item/mob_capture_card/minecraft/zombie_blue +# - minecraft:zombie::old::blue = easy_mob_farm:item/mob_capture_card/minecraft/zombie_old_blue +# +# The mods tries to load and bake the models for the Mob Capture Cards based on the configuration. +# However, if the model is not found, the default model will be used. +#Wed May 14 19:34:08 CDT 2025 +minecraft\:pillager=easy_mob_farm\:item/mob_capture_card/minecraft/pillager +minecraft\:cat\:\:jellie=easy_mob_farm\:item/mob_capture_card/minecraft/cat_jellie +minecraft\:cat\:\:red=easy_mob_farm\:item/mob_capture_card/minecraft/cat_red +minecraft\:sheep\:\:pink=easy_mob_farm\:item/mob_capture_card/minecraft/sheep_pink +minecraft\:glow_squid=easy_mob_farm\:item/mob_capture_card/minecraft/glow_squid +minecraft\:guardian=easy_mob_farm\:item/mob_capture_card/minecraft/guardian +minecraft\:warden=easy_mob_farm\:item/mob_capture_card/minecraft/warden +minecraft\:wither=easy_mob_farm\:item/mob_capture_card/minecraft/wither +minecraft\:frog\:\:temperate=easy_mob_farm\:item/mob_capture_card/minecraft/frog_temperate +minecraft\:phantom=easy_mob_farm\:item/mob_capture_card/minecraft/phantom +minecraft\:zombified_piglin=easy_mob_farm\:item/mob_capture_card/minecraft/zombified_piglin +minecraft\:cat\:\:siamese=easy_mob_farm\:item/mob_capture_card/minecraft/cat_siamese +minecraft\:witch=easy_mob_farm\:item/mob_capture_card/minecraft/witch +minecraft\:cat\:\:white=easy_mob_farm\:item/mob_capture_card/minecraft/cat_white +minecraft\:sheep\:\:brown=easy_mob_farm\:item/mob_capture_card/minecraft/sheep_brown +minecraft\:wither_skeleton=easy_mob_farm\:item/mob_capture_card/minecraft/wither_skeleton +minecraft\:cat\:\:calico=easy_mob_farm\:item/mob_capture_card/minecraft/cat_calico +minecraft\:sheep\:\:white=easy_mob_farm\:item/mob_capture_card/minecraft/sheep_white +minecraft\:pig=easy_mob_farm\:item/mob_capture_card/minecraft/pig +minecraft\:frog=easy_mob_farm\:item/mob_capture_card/minecraft/frog +minecraft\:husk=easy_mob_farm\:item/mob_capture_card/minecraft/husk +minecraft\:iron_golem=easy_mob_farm\:item/mob_capture_card/minecraft/iron_golem +minecraft\:turtle=easy_mob_farm\:item/mob_capture_card/minecraft/turtle +minecraft\:sheep=easy_mob_farm\:item/mob_capture_card/minecraft/sheep +minecraft\:ender_dragon=easy_mob_farm\:item/mob_capture_card/minecraft/ender_dragon +minecraft\:piglin=easy_mob_farm\:item/mob_capture_card/minecraft/piglin +minecraft\:enderman=easy_mob_farm\:item/mob_capture_card/minecraft/enderman +minecraft\:frog\:\:cold=easy_mob_farm\:item/mob_capture_card/minecraft/frog_cold +minecraft\:blaze=easy_mob_farm\:item/mob_capture_card/minecraft/blaze +minecraft\:cod=easy_mob_farm\:item/mob_capture_card/minecraft/cod +minecraft\:skeleton=easy_mob_farm\:item/mob_capture_card/minecraft/skeleton +minecraft\:squid=easy_mob_farm\:item/mob_capture_card/minecraft/squid +minecraft\:sheep\:\:red=easy_mob_farm\:item/mob_capture_card/minecraft/sheep_red +minecraft\:cat\:\:all_black=easy_mob_farm\:item/mob_capture_card/minecraft/cat_all_black +minecraft\:cow=easy_mob_farm\:item/mob_capture_card/minecraft/cow +minecraft\:cat\:\:black=easy_mob_farm\:item/mob_capture_card/minecraft/cat_black +minecraft\:magma_cube=easy_mob_farm\:item/mob_capture_card/minecraft/magma_cube +minecraft\:cat\:\:ragdoll=easy_mob_farm\:item/mob_capture_card/minecraft/cat_ragdoll +minecraft\:piglin_brute=easy_mob_farm\:item/mob_capture_card/minecraft/piglin_brute +minecraft\:spider=easy_mob_farm\:item/mob_capture_card/minecraft/spider +minecraft\:creeper=easy_mob_farm\:item/mob_capture_card/minecraft/creeper +minecraft\:frog\:\:warm=easy_mob_farm\:item/mob_capture_card/minecraft/frog_warm +minecraft\:bee=easy_mob_farm\:item/mob_capture_card/minecraft/bee +minecraft\:evoker=easy_mob_farm\:item/mob_capture_card/minecraft/evoker +minecraft\:slime=easy_mob_farm\:item/mob_capture_card/minecraft/slime +minecraft\:cat\:\:persian=easy_mob_farm\:item/mob_capture_card/minecraft/cat_persian +minecraft\:cat\:\:british_shorthair=easy_mob_farm\:item/mob_capture_card/minecraft/cat_british_shorthair +minecraft\:sheep\:\:blue=easy_mob_farm\:item/mob_capture_card/minecraft/sheep_blue +minecraft\:villager=easy_mob_farm\:item/mob_capture_card/minecraft/villager +minecraft\:chicken=easy_mob_farm\:item/mob_capture_card/minecraft/chicken +minecraft\:zombie=easy_mob_farm\:item/mob_capture_card/minecraft/zombie +minecraft\:drowned=easy_mob_farm\:item/mob_capture_card/minecraft/drowned +minecraft\:sheep\:\:gray=easy_mob_farm\:item/mob_capture_card/minecraft/sheep_gray +minecraft\:sheep\:\:light_gray=easy_mob_farm\:item/mob_capture_card/minecraft/sheep_light_gray +minecraft\:cat\:\:tabby=easy_mob_farm\:item/mob_capture_card/minecraft/cat_tabby +minecraft\:zombie_villager=easy_mob_farm\:item/mob_capture_card/minecraft/zombie_villager +minecraft\:rabbit=easy_mob_farm\:item/mob_capture_card/minecraft/rabbit +minecraft\:sheep\:\:black=easy_mob_farm\:item/mob_capture_card/minecraft/sheep_black diff --git a/minecraft/config/easy_mob_farm/mob_capture_card_rarity.cfg b/minecraft/config/easy_mob_farm/mob_capture_card_rarity.cfg new file mode 100644 index 0000000..6dd515a --- /dev/null +++ b/minecraft/config/easy_mob_farm/mob_capture_card_rarity.cfg @@ -0,0 +1,61 @@ +#Mob Capture Card Rarity Configuration +# +# This configuration file allows you to define the rarity for the Mob Capture Cards. +# +# The format is as follows: +# - = Rarity +# +# Example: +# - minecraft:zombie = COMMON +# +# Supported rarities are: +# - COMMON +# - UNCOMMON +# - RARE +# - EPIC +#Sun Mar 16 22:05:22 CDT 2025 +minecraft\:pillager=COMMON +minecraft\:zombified_villager=UNCOMMON +minecraft\:blaze=RARE +minecraft\:skeleton=COMMON +minecraft\:elder_guardian=EPIC +minecraft\:ravager=RARE +minecraft\:squid=COMMON +minecraft\:ghast=RARE +minecraft\:strider=RARE +minecraft\:guardian=RARE +minecraft\:cow=COMMON +minecraft\:vindicator=RARE +minecraft\:magma_cube=RARE +minecraft\:spider=COMMON +minecraft\:piglin_brute=EPIC +minecraft\:creeper=COMMON +minecraft\:warden=EPIC +minecraft\:wither=EPIC +minecraft\:horse=COMMON +minecraft\:evoker=UNCOMMON +minecraft\:slime=UNCOMMON +minecraft\:polar_bear=UNCOMMON +minecraft\:cat=COMMON +minecraft\:bat=COMMON +minecraft\:illusioner=EPIC +minecraft\:phantom=RARE +minecraft\:zombified_piglin=UNCOMMON +minecraft\:witch=COMMON +minecraft\:wither_skeleton=EPIC +minecraft\:fox=UNCOMMON +minecraft\:pig=COMMON +minecraft\:llama=UNCOMMON +minecraft\:husk=UNCOMMON +minecraft\:sheep=COMMON +minecraft\:ender_dragon=EPIC +minecraft\:shulker=RARE +minecraft\:cave_spider=UNCOMMON +minecraft\:villager=COMMON +minecraft\:enderman=UNCOMMON +minecraft\:stray=UNCOMMON +minecraft\:chicken=COMMON +minecraft\:zombie=COMMON +minecraft\:drowned=COMMON +minecraft\:wolf=COMMON +minecraft\:panda=UNCOMMON diff --git a/minecraft/config/easy_mob_farm/mob_catcher.cfg b/minecraft/config/easy_mob_farm/mob_catcher.cfg new file mode 100644 index 0000000..7f65c07 --- /dev/null +++ b/minecraft/config/easy_mob_farm/mob_catcher.cfg @@ -0,0 +1,46 @@ +#Mob Catcher Configuration +# +# This configuration file allows you to define the general settings for the Mob Catcher. +# +# Allow and Deny list +# ------------------- +# If you want to allow or deny specific mobs, you can use the allow and deny list. +# Keep in mind that if you add a mob to the allow list, all other mobs will be denied by default. +# Additionally mobs on the allow list will be catchable even if their size is bigger than the maximum size. +# +# Each Mob Catcher has it own allow and deny list, so you can define different settings for each Mob Catcher. +# +# Example for allow only specific mobs: +# EnduringCaptureNet:AllowList=minecraft:cow,minecraft:sheep,minecraft:chicken +# +# Example for deny specific mobs: +# VoidBindingChain:DenyList=minecraft:endermite,minecraft:ender_dragon,minecraft:wither +#Sun Mar 16 22:05:22 CDT 2025 +EnduringCaptureNet\:Enabled=true +VoidBindingChain\:MaxEntityHeightToCapture=6.0 +EnduringCaptureNet\:MaxEntityWidthToCapture=0.9 +IronboundContainmentCage\:RequiredHealthPercentageToCapture=0.25 +EnduringCaptureNet\:DenyList= +IronboundContainmentCage\:Enabled=true +IronboundContainmentCage\:MaxEntityHeightToCapture=2.0 +MysticBindingCrystal\:AllowList= +IronboundContainmentCage\:MaxEntityWidthToCapture=1.5 +VoidBindingChain\:MaxDurability=16 +MysticBindingCrystal\:Enabled=true +IronboundContainmentCage\:MaxDurability=32 +MysticBindingCrystal\:MaxEntityWidthToCapture=3.0 +MysticBindingCrystal\:MaxDurability=32 +VoidBindingChain\:MaxEntityWidthToCapture=4.0 +EnduringCaptureNet\:MaxDurability=64 +EnduringCaptureNet\:AllowList= +VoidBindingChain\:AllowList= +IronboundContainmentCage\:DenyList= +VoidBindingChain\:DenyList= +EnduringCaptureNet\:RequiredHealthPercentageToCapture=0.5 +MysticBindingCrystal\:DenyList= +IronboundContainmentCage\:AllowList= +MysticBindingCrystal\:MaxEntityHeightToCapture=4.0 +MysticBindingCrystal\:RequiredHealthPercentageToCapture=0.25 +VoidBindingChain\:Enabled=true +VoidBindingChain\:RequiredHealthPercentageToCapture=0.2 +EnduringCaptureNet\:MaxEntityHeightToCapture=1.4 diff --git a/minecraft/config/easy_mob_farm/mob_farm.cfg b/minecraft/config/easy_mob_farm/mob_farm.cfg new file mode 100644 index 0000000..1afe696 --- /dev/null +++ b/minecraft/config/easy_mob_farm/mob_farm.cfg @@ -0,0 +1,108 @@ +#Mob Farm Configuration +# +# This configuration file allows you to define the general settings for the Mob Farms. +# +# Configuration Options: +# ---------------------- +# farmProgressingTime: Time in ticks for farm progression (default: 6000 = 5 minutes) +# +# tier0progressionUpgradeSpeed: Speed bonus for tier 0 farms (default: 0) +# tier1progressionUpgradeSpeed: Speed bonus for tier 1 farms (default: 2) +# tier2progressionUpgradeSpeed: Speed bonus for tier 2 farms (default: 4) +# tier3progressionUpgradeSpeed: Speed bonus for tier 3 farms (default: 6) +# +# experienceDropChance: Chance for experience drops (1 in x chance, default: 5) +# speedEnhancementUpgradeSpeed: Speed bonus from speed enhancement upgrades (default: 6) +# +# Enhancement Power Configuration: +# lootEnhancementAdditionalRolls: Additional loot rolls from loot enhancement (default: 1, set 0 to disable) +# luckEnhancementAdditionalLuck: Additional luck from luck enhancement (default: 1.0, set 0 to disable) +# speedEnhancementUpgradeSpeed: Speed bonus from speed enhancement upgrades (default: 6, set 0 to disable) +# swordEnhancementAdditionalLuck: Additional luck from sword enhancement (default: 0.5) +# knifeEnhancementAdditionalLuck: Additional luck from knife enhancement (default: 0.25) +# +# Duplicate Enhancement Limits: +# tier0MaxSpeedEnhancements: Maximum speed enhancements for tier 0 farms (default: 4) +# tier1MaxSpeedEnhancements: Maximum speed enhancements for tier 1 farms (default: 4) +# tier2MaxSpeedEnhancements: Maximum speed enhancements for tier 2 farms (default: 4) +# tier3MaxSpeedEnhancements: Maximum speed enhancements for tier 3 farms (default: 4) +# tier0MaxLootEnhancements: Maximum loot enhancements for tier 0 farms (default: 4) +# tier1MaxLootEnhancements: Maximum loot enhancements for tier 1 farms (default: 4) +# tier2MaxLootEnhancements: Maximum loot enhancements for tier 2 farms (default: 4) +# tier3MaxLootEnhancements: Maximum loot enhancements for tier 3 farms (default: 4) +# tier0MaxLuckEnhancements: Maximum luck enhancements for tier 0 farms (default: 4) +# tier1MaxLuckEnhancements: Maximum luck enhancements for tier 1 farms (default: 4) +# tier2MaxLuckEnhancements: Maximum luck enhancements for tier 2 farms (default: 4) +# tier3MaxLuckEnhancements: Maximum luck enhancements for tier 3 farms (default: 4) +# +# Enhancement Enable/Disable (set to false to disable the enhancement and hide its recipe): +# enableSpeedEnhancement: Enable speed enhancement (default: true) +# enableLootEnhancement: Enable loot enhancement (default: true) +# enableLuckEnhancement: Enable luck enhancement (default: true) +# enableSwordEnhancement: Enable sword enhancement (default: true) +# enableKnifeEnhancement: Enable knife enhancement (default: true) +# enableExperienceEnhancement: Enable experience enhancement (default: true) +# enableEggCollectorEnhancement: Enable egg collector enhancement (default: true) +# enableHoneyExtractorEnhancement: Enable honey extractor enhancement (default: true) +# enableHoneyHarvesterFrameEnhancement: Enable honey harvester frame enhancement (default: true) +# enableMilkExtractorEnhancement: Enable milk extractor enhancement (default: true) +# enablePollenTrapEnhancement: Enable pollen trap enhancement (default: true) +# enableSheepEnhancement: Enable sheep enhancement (default: true) +# enableFrogCatalystEnhancement: Enable frog catalyst enhancement (default: true) +# +# progressingRequiresOwnerToBeOnline: Whether farms only work when owner is online (default: false) +# luckyDropFarmLuckPercentage: Luck percentage for lucky drop farms (default: 95) +# enforceLogicalTierProgression: Whether farms must be upgraded in order (default: false) +# enableMobFarmUpgradeRecipes: Enable recipes to upgrade existing mob farms (default: true) +# +# enableItemBuffer: Enable temporary item buffer when output slots are full (default: true) +# maxBufferSize: Maximum number of items in buffer (default: 128) +# bufferProcessInterval: Ticks between buffer processing attempts (default: 20) +# maxBonusDropMultiplier: Maximum multiplier for bonus drop amounts vs stack size (default: 100) +# dropItemsToWorldWhenBufferFull: Drop items to world when buffer is full (default: false) +#Wed Jun 24 14:18:44 CDT 2026 +bufferProcessInterval=20 +dropItemsToWorldWhenBufferFull=false +enableEggCollectorEnhancement=true +enableExperienceEnhancement=true +enableFrogCatalystEnhancement=true +enableHoneyExtractorEnhancement=true +enableHoneyHarvesterFrameEnhancement=true +enableItemBuffer=true +enableKnifeEnhancement=true +enableLootEnhancement=true +enableLuckEnhancement=true +enableMilkExtractorEnhancement=true +enableMobFarmUpgradeRecipes=true +enablePollenTrapEnhancement=true +enableSheepEnhancement=true +enableSpeedEnhancement=true +enableSwordEnhancement=true +enforceLogicalTierProgression=false +experienceDropChance=5 +farmProgressingTime=6000 +knifeEnhancementAdditionalLuck=0.25 +lootEnhancementAdditionalRolls=1 +luckEnhancementAdditionalLuck=1.0 +luckyDropFarmLuckPercentage=95 +maxBonusDropMultiplier=100 +maxBufferSize=128 +progressingRequiresOwnerToBeOnline=false +speedEnhancementUpgradeSpeed=6 +swordEnhancementAdditionalLuck=0.5 +tier0MaxLootEnhancements=4 +tier0MaxLuckEnhancements=4 +tier0MaxSpeedEnhancements=4 +tier0progressionUpgradeSpeed=0 +tier1MaxLootEnhancements=4 +tier1MaxLuckEnhancements=4 +tier1MaxSpeedEnhancements=4 +tier1progressionUpgradeSpeed=3 +tier2MaxLootEnhancements=4 +tier2MaxLuckEnhancements=4 +tier2MaxSpeedEnhancements=4 +tier2progressionUpgradeSpeed=6 +tier3MaxLootEnhancements=4 +tier3MaxLuckEnhancements=4 +tier3MaxSpeedEnhancements=4 +tier3progressionUpgradeSpeed=9 diff --git a/minecraft/config/easy_mob_farm/mob_farm_bonus.cfg b/minecraft/config/easy_mob_farm/mob_farm_bonus.cfg new file mode 100644 index 0000000..ffa564d --- /dev/null +++ b/minecraft/config/easy_mob_farm/mob_farm_bonus.cfg @@ -0,0 +1,83 @@ +#Mob Farm Bonus Configuration +# +# This configuration file allows you to define the bonus drops for the Mob Farms. +# +#The format is as follows: +#- :::: = :::: +# +#Example: +#- bee_hive_farm::0::minecraft:bee = minecraft:honeycomb::1::20 +#- bee_hive_farm::1::minecraft:bee = minecraft:honeycomb::1::15 +#- bee_hive_farm::2::minecraft:bee = minecraft:honeycomb::1::10 +#- bee_hive_farm::3::minecraft:bee = minecraft:honeycomb::1::5 +# +#To disable a bonus drop for a default definition, set the amount to 0. +#Sun Mar 16 22:05:22 CDT 2025 +swamp_farm\:\:1\:\:minecraft\:witch=minecraft\:redstone\:\:1\:\:15 +animal_plains_farm\:\:3\:\:minecraft\:sheep=minecraft\:white_wool\:\:1\:\:5 +monster_plains_cave_farm\:\:1\:\:minecraft\:zombie=minecraft\:rotten_flesh\:\:1\:\:15 +ocean_farm\:\:2\:\:minecraft\:squid=minecraft\:ink_sac\:\:1\:\:10 +nether_fortress_farm\:\:0\:\:minecraft\:blaze=minecraft\:blaze_rod\:\:1\:\:20 +iron_golem_farm\:\:0\:\:minecraft\:iron_golem=minecraft\:iron_ingot\:\:1\:\:20 +ocean_farm\:\:2\:\:minecraft\:cod=minecraft\:cod\:\:1\:\:10 +jungle_farm\:\:1\:\:minecraft\:parrot=minecraft\:feather\:\:1\:\:15 +swamp_farm\:\:2\:\:minecraft\:witch=minecraft\:redstone\:\:1\:\:10 +ocean_farm\:\:1\:\:minecraft\:squid=minecraft\:ink_sac\:\:1\:\:15 +jungle_farm\:\:1\:\:minecraft\:panda=minecraft\:bamboo\:\:1\:\:15 +swamp_farm\:\:0\:\:minecraft\:frog=minecraft\:slime_ball\:\:1\:\:20 +animal_plains_farm\:\:2\:\:minecraft\:sheep=minecraft\:white_wool\:\:1\:\:10 +animal_plains_farm\:\:3\:\:minecraft\:chicken=minecraft\:egg\:\:1\:\:5 +animal_plains_farm\:\:1\:\:minecraft\:sheep=minecraft\:white_wool\:\:1\:\:15 +iron_golem_farm\:\:1\:\:minecraft\:iron_golem=minecraft\:iron_ingot\:\:1\:\:15 +swamp_farm\:\:3\:\:minecraft\:frog=minecraft\:slime_ball\:\:1\:\:5 +nether_fortress_farm\:\:1\:\:minecraft\:blaze=minecraft\:blaze_rod\:\:1\:\:15 +bee_hive_farm\:\:2\:\:minecraft\:bee=minecraft\:honeycomb\:\:1\:\:10 +desert_farm\:\:1\:\:minecraft\:husk=minecraft\:sand\:\:1\:\:15 +jungle_farm\:\:0\:\:minecraft\:panda=minecraft\:bamboo\:\:1\:\:20 +nether_fortress_farm\:\:0\:\:minecraft\:magma_cube=minecraft\:magma_cream\:\:1\:\:20 +jungle_farm\:\:2\:\:minecraft\:parrot=minecraft\:feather\:\:1\:\:10 +swamp_farm\:\:2\:\:minecraft\:frog=minecraft\:slime_ball\:\:1\:\:10 +animal_plains_farm\:\:0\:\:minecraft\:chicken=minecraft\:egg\:\:1\:\:20 +nether_fortress_farm\:\:3\:\:minecraft\:blaze=minecraft\:blaze_rod\:\:1\:\:5 +animal_plains_farm\:\:1\:\:minecraft\:chicken=minecraft\:egg\:\:1\:\:15 +ocean_farm\:\:0\:\:minecraft\:squid=minecraft\:ink_sac\:\:1\:\:20 +animal_plains_farm\:\:1\:\:minecraft\:cow=minecraft\:leather\:\:1\:\:15 +ocean_farm\:\:0\:\:minecraft\:cod=minecraft\:cod\:\:1\:\:20 +desert_farm\:\:0\:\:minecraft\:husk=minecraft\:sand\:\:1\:\:20 +monster_plains_cave_farm\:\:0\:\:minecraft\:zombie=minecraft\:rotten_flesh\:\:1\:\:20 +desert_farm\:\:3\:\:minecraft\:husk=minecraft\:sand\:\:1\:\:5 +desert_farm\:\:2\:\:minecraft\:rabbit=minecraft\:rabbit_hide\:\:1\:\:10 +animal_plains_farm\:\:2\:\:minecraft\:cow=minecraft\:leather\:\:1\:\:10 +jungle_farm\:\:3\:\:minecraft\:panda=minecraft\:bamboo\:\:1\:\:5 +ocean_farm\:\:3\:\:minecraft\:squid=minecraft\:ink_sac\:\:1\:\:5 +jungle_farm\:\:3\:\:minecraft\:parrot=minecraft\:feather\:\:1\:\:5 +desert_farm\:\:3\:\:minecraft\:rabbit=minecraft\:rabbit_hide\:\:1\:\:5 +ocean_farm\:\:1\:\:minecraft\:cod=minecraft\:cod\:\:1\:\:15 +ocean_farm\:\:3\:\:minecraft\:cod=minecraft\:cod\:\:1\:\:5 +animal_plains_farm\:\:3\:\:minecraft\:cow=minecraft\:leather\:\:1\:\:5 +nether_fortress_farm\:\:3\:\:minecraft\:magma_cube=minecraft\:magma_cream\:\:1\:\:5 +desert_farm\:\:2\:\:minecraft\:husk=minecraft\:sand\:\:1\:\:10 +bee_hive_farm\:\:3\:\:minecraft\:bee=minecraft\:honeycomb\:\:1\:\:5 +swamp_farm\:\:2\:\:minecraft\:slime=minecraft\:slime_ball\:\:1\:\:10 +swamp_farm\:\:1\:\:minecraft\:frog=minecraft\:slime_ball\:\:1\:\:15 +bee_hive_farm\:\:1\:\:minecraft\:bee=minecraft\:honeycomb\:\:1\:\:15 +swamp_farm\:\:0\:\:minecraft\:slime=minecraft\:slime_ball\:\:1\:\:20 +desert_farm\:\:1\:\:minecraft\:rabbit=minecraft\:rabbit_hide\:\:1\:\:15 +animal_plains_farm\:\:0\:\:minecraft\:cow=minecraft\:leather\:\:1\:\:20 +animal_plains_farm\:\:2\:\:minecraft\:chicken=minecraft\:egg\:\:1\:\:10 +swamp_farm\:\:3\:\:minecraft\:slime=minecraft\:slime_ball\:\:1\:\:5 +bee_hive_farm\:\:0\:\:minecraft\:bee=minecraft\:honeycomb\:\:1\:\:20 +jungle_farm\:\:2\:\:minecraft\:panda=minecraft\:bamboo\:\:1\:\:10 +swamp_farm\:\:3\:\:minecraft\:witch=minecraft\:redstone\:\:1\:\:5 +animal_plains_farm\:\:0\:\:minecraft\:sheep=minecraft\:white_wool\:\:1\:\:20 +nether_fortress_farm\:\:2\:\:minecraft\:blaze=minecraft\:blaze_rod\:\:1\:\:10 +nether_fortress_farm\:\:1\:\:minecraft\:magma_cube=minecraft\:magma_cream\:\:1\:\:15 +iron_golem_farm\:\:2\:\:minecraft\:iron_golem=minecraft\:iron_ingot\:\:1\:\:10 +monster_plains_cave_farm\:\:3\:\:minecraft\:zombie=minecraft\:rotten_flesh\:\:1\:\:5 +desert_farm\:\:0\:\:minecraft\:rabbit=minecraft\:rabbit_hide\:\:1\:\:20 +swamp_farm\:\:0\:\:minecraft\:witch=minecraft\:redstone\:\:1\:\:20 +iron_golem_farm\:\:3\:\:minecraft\:iron_golem=minecraft\:iron_ingot\:\:1\:\:5 +monster_plains_cave_farm\:\:2\:\:minecraft\:zombie=minecraft\:rotten_flesh\:\:1\:\:10 +nether_fortress_farm\:\:2\:\:minecraft\:magma_cube=minecraft\:magma_cream\:\:1\:\:10 +jungle_farm\:\:0\:\:minecraft\:parrot=minecraft\:feather\:\:1\:\:20 +swamp_farm\:\:1\:\:minecraft\:slime=minecraft\:slime_ball\:\:1\:\:15 diff --git a/minecraft/config/easy_mob_farm/requires_animation_tick.cfg b/minecraft/config/easy_mob_farm/requires_animation_tick.cfg new file mode 100644 index 0000000..2a890b1 --- /dev/null +++ b/minecraft/config/easy_mob_farm/requires_animation_tick.cfg @@ -0,0 +1,10 @@ +#Requires Animation Tick Configuration +# +# This configuration file lists the known entities which requires an animation tick. +# +# The format is as follows: +# - : +#Mon Mar 24 23:27:42 CDT 2025 +iceandfire\:lightning_dragon=true +iceandfire\:fire_dragon=true +iceandfire\:ice_dragon=true diff --git a/minecraft/config/easy_mob_farm/requires_killed_by_player.cfg b/minecraft/config/easy_mob_farm/requires_killed_by_player.cfg new file mode 100644 index 0000000..10af72c --- /dev/null +++ b/minecraft/config/easy_mob_farm/requires_killed_by_player.cfg @@ -0,0 +1,42 @@ +#Requires Killed By Player Configuration +# +# This configuration file lists the known entities which requires "killed_by_player" for looting. +# +# The format is as follows: +# - : +#Mon Mar 24 23:27:42 CDT 2025 +minecraft\:blaze=true +iceandfire\:siren=true +minecraft\:elder_guardian=true +iceandfire\:hydra=true +minecraft\:guardian=true +minecraft\:vindicator=true +iceandfire\:cockatrice=true +minecraft\:spider=true +iceandfire\:troll=true +iceandfire\:hippocampus=true +minecraft\:evoker=true +iceandfire\:pixie=true +iceandfire\:dread_lich=true +minecraft\:phantom=true +minecraft\:zombified_piglin=true +iceandfire\:lightning_dragon=true +iceandfire\:stymphalian_bird=true +iceandfire\:amphithere=true +minecraft\:wither_skeleton=true +iceandfire\:sea_serpent=true +minecraft\:husk=true +iceandfire\:hippogryph=true +minecraft\:cave_spider=true +iceandfire\:cyclops=true +iceandfire\:ghost=true +minecraft\:stray=true +iceandfire\:deathworm=true +minecraft\:zombie=true +iceandfire\:fire_dragon=true +minecraft\:drowned=true +iceandfire\:gorgon=true +minecraft\:zombie_villager=true +iceandfire\:ice_dragon=true +iceandfire\:mymex=true +minecraft\:rabbit=true diff --git a/minecraft/config/easy_villagers-client.toml b/minecraft/config/easy_villagers-client.toml new file mode 100644 index 0000000..bd1fa3f --- /dev/null +++ b/minecraft/config/easy_villagers-client.toml @@ -0,0 +1,18 @@ + +[villager] + #If villagers should be able to be picked up by sneaking and right-clicking + sneak_pick_up = true + #The volume of every villager related sound in this mod + #Range: 0.0 ~ 1.0 + volume = 1.0 + #The location of the cycle trades button + #Allowed Values: TOP_LEFT, TOP_RIGHT, NONE + cycle_trades_button_location = "TOP_LEFT" + #Disables rendering any contents of the villager blocks when set to false + #Set to false if you have performance issues with the mod + render_block_contents = true + #The distance in blocks at which the block contents are rendered + #This has no effect if 'render_block_contents' is disabled + #Range: 1 ~ 256 + block_render_distance = 32 + diff --git a/minecraft/config/eccentrictome-common.toml b/minecraft/config/eccentrictome-common.toml new file mode 100644 index 0000000..3aae9ff --- /dev/null +++ b/minecraft/config/eccentrictome-common.toml @@ -0,0 +1,20 @@ + +#Common configuration settings +[common] + #Allow all items to be added + allitems = false + #Disable overlay previewing tome conversion + disable_overlay = false + #Whitelisted items + items = ["tconstruct:materials_and_you", "tconstruct:puny_smelting", "tconstruct:mighty_smelting", "tconstruct:fantastic_foundry", "tconstruct:tinkers_gadgetry", "integrateddynamics:on_the_dynamics_of_integration", "evilcraft:origins_of_darkness", "cookingforblockheads:no_filter_edition", "alexsmobs:animal_dictionary", "occultism:dictionary_of_spirits", "theoneprobe:probenote", "compactmachines:personal_shrinking_device", "draconicevolution:info_tablet", "iceandfire:bestiary", "rootsclassic:runic_tablet", "enigmaticlegacy:the_acknowledgment", "ad_astra:astrodux", "wizards_reborn:arcanemicon"] + #Whitelisted names + names = ["book", "tome", "lexicon", "nomicon", "manual", "knowledge", "pedia", "compendium", "guide", "codex", "journal", "enchiridion", "grimoire"] + #Mod aliases + aliases = ["mythicbotany=botania", "integratedtunnels=integrateddynamics", "integratedterminals=integrateddynamics", "integratedcrafting=integrateddynamics", "rftoolsbuilder=rftoolsbase", "rftoolscontrol=rftoolsbase", "rftoolsdim=rftoolsbase", "rftoolspower=rftoolsbase", "rftoolsstorage=rftoolsbase", "rftoolsutility=rftoolsbase", "rftoolspower=rftoolsbase", "deepresonance=rftoolsbase", "xnet=rftoolsbase", "mysticalaggraditions=mysticalagriculture"] + #Blacklisted mods + exclude = [] + #Blacklisted items + exclude_items = ["apotheosis:boots_tome", "apotheosis:bow_tome", "apotheosis:chestplate_tome", "apotheosis:fishing_tome", "apotheosis:helmet_tome", "apotheosis:leggings_tome", "apotheosis:other_tome", "apotheosis:pickaxe_tome", "apotheosis:scrap_tome", "apotheosis:weapon_tome", "ars_nouveau:annotated_codex", "blue_skies:blue_journal", "darkutils:book_galactic", "darkutils:book_runelic", "darkutils:book_restore", "darkutils:tome_enchanting", "darkutils:tome_illager", "darkutils:tome_pigpen", "darkutils:tome_runelic", "darkutils:tome_sga", "darkutils:tome_shadows", "minecolonies:ancienttome", "minecraft:book", "minecraft:enchanted_book", "occultism:book_of_binding_afrit", "occultism:book_of_binding_bound_afrit", "occultism:book_of_binding_bound_djinni", "occultism:book_of_binding_bound_foliot", "occultism:book_of_binding_bound_marid", "occultism:book_of_binding_djinni", "occultism:book_of_binding_foliot", "occultism:book_of_binding_marid", "occultism:book_of_calling_djinni_manage_machine", "occultism:book_of_calling_foliot_cleaner", "occultism:book_of_calling_foliot_lumberjack", "occultism:book_of_calling_foliot_transport_items", "projecte:tome", "quark:ancient_tome", "tombstone:book_of_disenchantment", "tombstone:book_of_recycling", "tombstone:book_of_repairing", "tombstone:book_of_magic_impregnation"] + #Whitelisted item tags + include_item_tags = [] + diff --git a/minecraft/config/effectdescriptions-client.toml b/minecraft/config/effectdescriptions-client.toml new file mode 100644 index 0000000..6af6c37 --- /dev/null +++ b/minecraft/config/effectdescriptions-client.toml @@ -0,0 +1,21 @@ +#Add the internal id of an effect to effect widget tooltips. +add_internal_id_to_widget_tooltips = false +#Add the effect name and duration to every effect widget tooltip, even if the widget already contains both. +always_add_effect_name_to_tooltips = true +#Amount of spaces to add at the beginning of an effect description. +#Range: > 0 +description_indentation = 0 +#Items that should support descriptions for the effects on their inventory tooltip. +#Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. +effect_description_items_raw = ["minecraft:potion", "minecraft:splash_potion", "minecraft:lingering_potion", "minecraft:tipped_arrow", "minecraft:suspicious_stew"] +#Only reveal effect descriptions for items while any shift key is held. +hold_shift_for_item_descriptions = false +#Add effect descriptions to effect widget tooltips in the survival and creative inventory screens. +add_descriptions_to_widget_tooltips = true +#Add the name of the mod that added an effect to effect widget tooltips. +add_mod_name_to_widget_tooltips = false +#Add effect descriptions to item tooltips. +add_descriptions_to_item_tooltips = false +#Add attributes granted by an effect to effect widget tooltips. +add_attributes_to_widget_tooltips = true + diff --git a/minecraft/config/eidolon-client.toml b/minecraft/config/eidolon-client.toml new file mode 100644 index 0000000..819cf6f --- /dev/null +++ b/minecraft/config/eidolon-client.toml @@ -0,0 +1,15 @@ + +#Graphics settings +[graphics] + #Enable better particle/effect layering. + #Fixes particles and effects rendering behind clouds and weather. + #NOTE: Does NOT work with fabulous graphics mode. + betterLayering = true + +#UI settings +[ui] + #Onscreen positioning of the magic power meter. + manaBarPosition = "top" + #Orientation of the magic power meter. + manaBarOrientation = "default" + diff --git a/minecraft/config/eidolon-common.toml b/minecraft/config/eidolon-common.toml new file mode 100644 index 0000000..8c9d222 --- /dev/null +++ b/minecraft/config/eidolon-common.toml @@ -0,0 +1,21 @@ + +#Generic settings +[generic] + #Duration in ticks of each step of a crucible recipe. + #Range: 20 ~ 1200 + crucibleStepDuration = 100 + #Makes it so that the Crucible will not fizzle out unless the recipe has failed, giving players more time to organize and plan their next step and behave more like a turn-based recipe. + turnBasedCrucible = false + #For turn-based Crucible, duration in ticks between each recipe check once the step duration expired. + crucibleBackoff = 40 + #Maximum amount of ethereal health (soul half-hearts) an entity can have at once. + #Range: 0 ~ 1000 + maxEtherealHealth = 60 + +#Soul Enchanter +[soulEnchanter] + #How often the Soul Enchanter can apply enchantments on an item (a value below 0 means unlimited) + soulEnchanterMaximumUses = -1 + #How many enchantments the item is allowed to have to be applicable for soul enchanting (a value below 0 means unlimited) + soulEnchanterMaximumEnchantments = -1 + diff --git a/minecraft/config/eidolon/basic_incense.toml b/minecraft/config/eidolon/basic_incense.toml new file mode 100644 index 0000000..a3d6227 --- /dev/null +++ b/minecraft/config/eidolon/basic_incense.toml @@ -0,0 +1,16 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 0 +#Cooldown for this prayer spell +#Range: > 21000 +cooldown = 21000 +#Base reputation gained from this prayer spell +#Range: > 0 +base_reputation = 1 +#Altar Power multiplier for reputation gained with this prayer spell +#Range: 0.0 ~ 1.7976931348623157E308 +power_multiplier = 0.25 + diff --git a/minecraft/config/eidolon/create_water.toml b/minecraft/config/eidolon/create_water.toml new file mode 100644 index 0000000..7ace8d4 --- /dev/null +++ b/minecraft/config/eidolon/create_water.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 10 + diff --git a/minecraft/config/eidolon/cure_zombie.toml b/minecraft/config/eidolon/cure_zombie.toml new file mode 100644 index 0000000..69f1e52 --- /dev/null +++ b/minecraft/config/eidolon/cure_zombie.toml @@ -0,0 +1,16 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 20 +#Cooldown for this prayer spell +#Range: > 21000 +cooldown = 21000 +#Base reputation gained from this prayer spell +#Range: > 0 +base_reputation = 8 +#Altar Power multiplier for reputation gained with this prayer spell +#Range: 0.0 ~ 1.7976931348623157E308 +power_multiplier = 1.25 + diff --git a/minecraft/config/eidolon/dark_animal_sacrifice.toml b/minecraft/config/eidolon/dark_animal_sacrifice.toml new file mode 100644 index 0000000..2ea384b --- /dev/null +++ b/minecraft/config/eidolon/dark_animal_sacrifice.toml @@ -0,0 +1,16 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 0 +#Cooldown for this prayer spell +#Range: > 21000 +cooldown = 21000 +#Base reputation gained from this prayer spell +#Range: > 0 +base_reputation = 3 +#Altar Power multiplier for reputation gained with this prayer spell +#Range: 0.0 ~ 1.7976931348623157E308 +power_multiplier = 0.5 + diff --git a/minecraft/config/eidolon/dark_prayer.toml b/minecraft/config/eidolon/dark_prayer.toml new file mode 100644 index 0000000..a3d6227 --- /dev/null +++ b/minecraft/config/eidolon/dark_prayer.toml @@ -0,0 +1,16 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 0 +#Cooldown for this prayer spell +#Range: > 21000 +cooldown = 21000 +#Base reputation gained from this prayer spell +#Range: > 0 +base_reputation = 1 +#Altar Power multiplier for reputation gained with this prayer spell +#Range: 0.0 ~ 1.7976931348623157E308 +power_multiplier = 0.25 + diff --git a/minecraft/config/eidolon/dark_touch.toml b/minecraft/config/eidolon/dark_touch.toml new file mode 100644 index 0000000..c51b29f --- /dev/null +++ b/minecraft/config/eidolon/dark_touch.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 20 + diff --git a/minecraft/config/eidolon/dark_villager_sacrifice.toml b/minecraft/config/eidolon/dark_villager_sacrifice.toml new file mode 100644 index 0000000..a693a11 --- /dev/null +++ b/minecraft/config/eidolon/dark_villager_sacrifice.toml @@ -0,0 +1,16 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 0 +#Cooldown for this prayer spell +#Range: > 21000 +cooldown = 21000 +#Base reputation gained from this prayer spell +#Range: > 0 +base_reputation = 6 +#Altar Power multiplier for reputation gained with this prayer spell +#Range: 0.0 ~ 1.7976931348623157E308 +power_multiplier = 1.0 + diff --git a/minecraft/config/eidolon/darklight_chant.toml b/minecraft/config/eidolon/darklight_chant.toml new file mode 100644 index 0000000..a2a48fa --- /dev/null +++ b/minecraft/config/eidolon/darklight_chant.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 3 + diff --git a/minecraft/config/eidolon/enthrall_spell.toml b/minecraft/config/eidolon/enthrall_spell.toml new file mode 100644 index 0000000..df8751d --- /dev/null +++ b/minecraft/config/eidolon/enthrall_spell.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 50 + diff --git a/minecraft/config/eidolon/fire_chant.toml b/minecraft/config/eidolon/fire_chant.toml new file mode 100644 index 0000000..a9bc852 --- /dev/null +++ b/minecraft/config/eidolon/fire_chant.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 5 +#The cost of casting this spell +#Range: > 0 +cost = 10 + diff --git a/minecraft/config/eidolon/frost_touch.toml b/minecraft/config/eidolon/frost_touch.toml new file mode 100644 index 0000000..c51b29f --- /dev/null +++ b/minecraft/config/eidolon/frost_touch.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 20 + diff --git a/minecraft/config/eidolon/holy_touch.toml b/minecraft/config/eidolon/holy_touch.toml new file mode 100644 index 0000000..c51b29f --- /dev/null +++ b/minecraft/config/eidolon/holy_touch.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 20 + diff --git a/minecraft/config/eidolon/lay_on_hands.toml b/minecraft/config/eidolon/lay_on_hands.toml new file mode 100644 index 0000000..65a2ec6 --- /dev/null +++ b/minecraft/config/eidolon/lay_on_hands.toml @@ -0,0 +1,16 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 15 +#Base healing amount +#Range: 1 ~ 100 +base_heal = 5 +#Reputation gained from healing other entities +#Range: 1 ~ 100 +rep_from_heal = 3 +#Devotion to extra healing ratio +#Range: 0.0 ~ 1.0 +devotion_to_heal = 0.05 + diff --git a/minecraft/config/eidolon/light_chant.toml b/minecraft/config/eidolon/light_chant.toml new file mode 100644 index 0000000..a2a48fa --- /dev/null +++ b/minecraft/config/eidolon/light_chant.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 3 + diff --git a/minecraft/config/eidolon/light_prayer.toml b/minecraft/config/eidolon/light_prayer.toml new file mode 100644 index 0000000..a3d6227 --- /dev/null +++ b/minecraft/config/eidolon/light_prayer.toml @@ -0,0 +1,16 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 0 +#Cooldown for this prayer spell +#Range: > 21000 +cooldown = 21000 +#Base reputation gained from this prayer spell +#Range: > 0 +base_reputation = 1 +#Altar Power multiplier for reputation gained with this prayer spell +#Range: 0.0 ~ 1.7976931348623157E308 +power_multiplier = 0.25 + diff --git a/minecraft/config/eidolon/reinforce_armor.toml b/minecraft/config/eidolon/reinforce_armor.toml new file mode 100644 index 0000000..df8751d --- /dev/null +++ b/minecraft/config/eidolon/reinforce_armor.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 50 + diff --git a/minecraft/config/eidolon/smite_chant.toml b/minecraft/config/eidolon/smite_chant.toml new file mode 100644 index 0000000..62c20e2 --- /dev/null +++ b/minecraft/config/eidolon/smite_chant.toml @@ -0,0 +1,10 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 40 +#The amount of damage dealt by the spell +#Range: 1.0 ~ 2.147483647E9 +damage = 10.0 + diff --git a/minecraft/config/eidolon/sunder_armor.toml b/minecraft/config/eidolon/sunder_armor.toml new file mode 100644 index 0000000..df8751d --- /dev/null +++ b/minecraft/config/eidolon/sunder_armor.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 50 + diff --git a/minecraft/config/eidolon/undead_lure.toml b/minecraft/config/eidolon/undead_lure.toml new file mode 100644 index 0000000..df8751d --- /dev/null +++ b/minecraft/config/eidolon/undead_lure.toml @@ -0,0 +1,7 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 50 + diff --git a/minecraft/config/eidolon/zombify_villager.toml b/minecraft/config/eidolon/zombify_villager.toml new file mode 100644 index 0000000..69f1e52 --- /dev/null +++ b/minecraft/config/eidolon/zombify_villager.toml @@ -0,0 +1,16 @@ +#The delay in ticks before the spell is cast +#Range: > 0 +delay = 10 +#The cost of casting this spell +#Range: > 0 +cost = 20 +#Cooldown for this prayer spell +#Range: > 21000 +cooldown = 21000 +#Base reputation gained from this prayer spell +#Range: > 0 +base_reputation = 8 +#Altar Power multiplier for reputation gained with this prayer spell +#Range: 0.0 ~ 1.7976931348623157E308 +power_multiplier = 1.25 + diff --git a/minecraft/config/enchantinginfuser-server.toml b/minecraft/config/enchantinginfuser-server.toml new file mode 100644 index 0000000..59ee366 --- /dev/null +++ b/minecraft/config/enchantinginfuser-server.toml @@ -0,0 +1,204 @@ + +[advanced_infuser] + #Can the enchanting infuser repair items using levels in addition to enchanting. + #Allowed Values: EVERYTHING, TOOLS_AND_ARMOR, NOTHING + allow_repairing = "TOOLS_AND_ARMOR" + #Allow enchantments on an already enchanted item to be increased / removed. + #Allowed Values: UNENCHANTED, ALL, FULL_DURABILITY + allow_modifying_enchantments = "ALL" + #How many bookshelves you need around the infuser to be able to apply maximum level enchantments. + #Filling in corners is important to reach higher values. + #Setting very high values may require modded bookshelves that provide more than one enchanting power per block (such as Apotheosis' bookshelves). + #This value will be fixed at 50 when Apotheosis is installed. + #Range: > 0 + maximum_bookshelves = 15 + #Working an item in an infuser increases the prior work penalty stat used by anvils for that item, meaning future anvil repairs will become more expensive, possibly even too expensive. + increase_anvil_repair_cost = false + #Allow books to be enchanted in an infuser. + allow_books = true + + [advanced_infuser.types] + #Allow curses (e.g. curse of vanishing) to be applied using the enchanting infuser. + #This option takes precedence over option for treasure enchantments (as curses are also treasure enchantments internally). + allow_curses_enchantments = false + #Allow treasure enchantments (e.g. mending) to be applied using the enchanting infuser. + allow_treasure_enchantments = false + #Allow untradeable enchantments (e.g. soul speed) to be applied using the enchanting infuser. + #This option takes precedence over other options for treasure and curse enchantments. + allow_untradeable_enchantments = false + #Allow enchantments that can normally not be obtained from an enchanting table, but can be put on the item in an anvil (e.g. sharpness on an axe). + allow_anvil_enchantments = true + #Allow undiscoverable enchantments (e.g. soul speed) to be applied using the enchanting infuser. + #This option takes precedence over other options for treasure, curse and tradeable enchantments. + allow_undiscoverable_enchantments = false + + [advanced_infuser.repair] + #Cost multiplier in levels for each repair step, result will be rounded up. + #Range: 0.0 ~ 1.7976931348623157E308 + repair_step_multiplier = 2.0 + #How many percentage points of an items total durability a single repair will restore. + #Range: 0.1 ~ 1.0 + repair_percentage_step = 0.25 + + #The main option in this section is "maximum_cost" as it determines how many levels you'll have to pay for fully enchanting an item with all possible enchantments it can have. + #Cost multipliers mainly control how this maximum cost will be spread out between enchantments of different rarities. + [advanced_infuser.costs] + #Base cost multiplier for each level for very rare enchantments. + #Range: > 1 + very_rare_cost_multiplier = 5 + #Double prices for enchantments normally unobtainable from enchanting tables if they are enabled (e.g. mending, soul speed) when they are enabled. + double_uniques = true + #Base cost multiplier for each level for rare enchantments. + #Range: > 1 + rare_cost_multiplier = 4 + #Cost level to scale prices by. This is not a strict value, meaning it can be exceeded (e.g. when applying treasure enchantments). + #Range: > 1 + maximum_cost = 20 + #When scaling costs, only account for vanilla enchantments. Otherwise enchanting costs will become ludicrously cheap with many modded enchantments present. + scale_costs_by_vanilla_only = true + #Base cost multiplier for each level for uncommon enchantments. + #Range: > 1 + uncommon_cost_multiplier = 3 + #Base cost multiplier for each level for common enchantments. + #Range: > 1 + common_cost_multiplier = 2 + + #This section allows for controlling at what percentage of the total enchanting power certain kinds of enchantments become available. + #With default settings e.g. the first level of a rare enchantment will be available at 40% enchanting power (controlled by "rare_multiplier", translates to 40% * 15 = 6 bookshelves), and the maximum level for that enchant will be available at 40% + 40% = 80% enchanting power (controlled by "rare_multiplier" and "rarity_range_multiplier", translates to 80% * 15 = 12 bookshelves). + [advanced_infuser.power] + #Multiplier for maximum enchanting power for when rare enchantments become available. + #Range: -1.0 ~ 1.0 + rare_multiplier = 0.4 + #Multiplier for maximum enchanting power for when untradeable enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + untradeable_multiplier = 0.9 + #Multiplier for maximum enchanting power for how much power is required to max out an enchantment. + #Range: 0.0 ~ 1.0 + rarity_range = 0.4 + #Multiplier for maximum enchanting power for when undiscoverable enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + undiscoverable_multiplier = 0.9 + #Multiplier for maximum enchanting power for when treasure enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + treasure_multiplier = 0.95 + #Multiplier for maximum enchanting power for when curse enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + curse_multiplier = 1.0 + #Multiplier for maximum enchanting power for when common enchantments become available. + #Range: -1.0 ~ 1.0 + common_multiplier = -0.2 + #Multiplier for maximum enchanting power for when very rare enchantments become available. + #Range: -1.0 ~ 1.0 + very_rare_multiplier = 0.6 + #Multiplier for maximum enchanting power for when uncommon enchantments become available. + #Range: -1.0 ~ 1.0 + uncommon_multiplier = 0.2 + +[normal_infuser] + #Can the enchanting infuser repair items using levels in addition to enchanting. + #Allowed Values: EVERYTHING, TOOLS_AND_ARMOR, NOTHING + allow_repairing = "NOTHING" + #Allow enchantments on an already enchanted item to be increased / removed. + #Allowed Values: UNENCHANTED, ALL, FULL_DURABILITY + allow_modifying_enchantments = "UNENCHANTED" + #How many bookshelves you need around the infuser to be able to apply maximum level enchantments. + #Filling in corners is important to reach higher values. + #Setting very high values may require modded bookshelves that provide more than one enchanting power per block (such as Apotheosis' bookshelves). + #This value will be fixed at 50 when Apotheosis is installed. + #Range: > 0 + maximum_bookshelves = 15 + #Working an item in an infuser increases the prior work penalty stat used by anvils for that item, meaning future anvil repairs will become more expensive, possibly even too expensive. + increase_anvil_repair_cost = false + #Allow books to be enchanted in an infuser. + allow_books = false + + [normal_infuser.types] + #Allow curses (e.g. curse of vanishing) to be applied using the enchanting infuser. + #This option takes precedence over option for treasure enchantments (as curses are also treasure enchantments internally). + allow_curses_enchantments = false + #Allow treasure enchantments (e.g. mending) to be applied using the enchanting infuser. + allow_treasure_enchantments = false + #Allow untradeable enchantments (e.g. soul speed) to be applied using the enchanting infuser. + #This option takes precedence over other options for treasure and curse enchantments. + allow_untradeable_enchantments = false + #Allow enchantments that can normally not be obtained from an enchanting table, but can be put on the item in an anvil (e.g. sharpness on an axe). + allow_anvil_enchantments = false + #Allow undiscoverable enchantments (e.g. soul speed) to be applied using the enchanting infuser. + #This option takes precedence over other options for treasure, curse and tradeable enchantments. + allow_undiscoverable_enchantments = false + + [normal_infuser.repair] + #Cost multiplier in levels for each repair step, result will be rounded up. + #Range: 0.0 ~ 1.7976931348623157E308 + repair_step_multiplier = 2.0 + #How many percentage points of an items total durability a single repair will restore. + #Range: 0.1 ~ 1.0 + repair_percentage_step = 0.25 + + #The main option in this section is "maximum_cost" as it determines how many levels you'll have to pay for fully enchanting an item with all possible enchantments it can have. + #Cost multipliers mainly control how this maximum cost will be spread out between enchantments of different rarities. + [normal_infuser.costs] + #Base cost multiplier for each level for very rare enchantments. + #Range: > 1 + very_rare_cost_multiplier = 5 + #Double prices for enchantments normally unobtainable from enchanting tables if they are enabled (e.g. mending, soul speed) when they are enabled. + double_uniques = true + #Base cost multiplier for each level for rare enchantments. + #Range: > 1 + rare_cost_multiplier = 4 + #Cost level to scale prices by. This is not a strict value, meaning it can be exceeded (e.g. when applying treasure enchantments). + #Range: > 1 + maximum_cost = 30 + #When scaling costs, only account for vanilla enchantments. Otherwise enchanting costs will become ludicrously cheap with many modded enchantments present. + scale_costs_by_vanilla_only = true + #Base cost multiplier for each level for uncommon enchantments. + #Range: > 1 + uncommon_cost_multiplier = 3 + #Base cost multiplier for each level for common enchantments. + #Range: > 1 + common_cost_multiplier = 2 + + #This section allows for controlling at what percentage of the total enchanting power certain kinds of enchantments become available. + #With default settings e.g. the first level of a rare enchantment will be available at 40% enchanting power (controlled by "rare_multiplier", translates to 40% * 15 = 6 bookshelves), and the maximum level for that enchant will be available at 40% + 40% = 80% enchanting power (controlled by "rare_multiplier" and "rarity_range_multiplier", translates to 80% * 15 = 12 bookshelves). + [normal_infuser.power] + #Multiplier for maximum enchanting power for when rare enchantments become available. + #Range: -1.0 ~ 1.0 + rare_multiplier = 0.4 + #Multiplier for maximum enchanting power for when untradeable enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + untradeable_multiplier = 0.9 + #Multiplier for maximum enchanting power for how much power is required to max out an enchantment. + #Range: 0.0 ~ 1.0 + rarity_range = 0.4 + #Multiplier for maximum enchanting power for when undiscoverable enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + undiscoverable_multiplier = 0.9 + #Multiplier for maximum enchanting power for when treasure enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + treasure_multiplier = 0.95 + #Multiplier for maximum enchanting power for when curse enchantments become available. + #They also need to be enabled in the "types" config. + #Range: 0.0 ~ 1.0 + curse_multiplier = 1.0 + #Multiplier for maximum enchanting power for when common enchantments become available. + #Range: -1.0 ~ 1.0 + common_multiplier = -0.2 + #Multiplier for maximum enchanting power for when very rare enchantments become available. + #Range: -1.0 ~ 1.0 + very_rare_multiplier = 0.6 + #Multiplier for maximum enchanting power for when uncommon enchantments become available. + #Range: -1.0 ~ 1.0 + uncommon_multiplier = 0.2 + +[integration] + #Enable compat for Apotheosis if it is installed. Allows for using the full range of changes Apotheosis applies to vanilla enchantments. + #Should only really be disabled if compat breaks due to internal changes. + apotheosis_integration = true + diff --git a/minecraft/config/enchantwithmob-client.toml b/minecraft/config/enchantwithmob-client.toml new file mode 100644 index 0000000..3da2299 --- /dev/null +++ b/minecraft/config/enchantwithmob-client.toml @@ -0,0 +1,8 @@ +"Show Enchanted Mob Hud" = true +#Disable Poison Mob Enchant Particle. [true / false] +"Disable Poison Particle" = true +#Disable Aura Render. [true / false] +"Disable Aura Render" = true +#Enable Old Style Animation. [true / false] +OldStyleAnimation = false + diff --git a/minecraft/config/enchantwithmob-common.toml b/minecraft/config/enchantwithmob-common.toml new file mode 100644 index 0000000..ef7d1b4 --- /dev/null +++ b/minecraft/config/enchantwithmob-common.toml @@ -0,0 +1,41 @@ +#Enable the the spawning of enchanted mobs. [true / false] +"Enchanted Mob can Spawn Natural" = true +#Disables specific mob from receiveing enchantments on spawn. Use the full name, eg: minecraft:ender_dragon. +enchantOnSpawnExclusionMobs = ["minecraft:wither", "minecraft:ender_dragon"] +#Allow the specific mob from alway receiveing enchantments on spawn. Use the full name, eg: minecraft:zombie. +alwayEnchantableMobs = [] +#Allow the specific mob from alway receiveing enchantments as Ancient Mob on spawn(This feature may break for balance so be careful). Use the full name, eg: minecraft:zombie. +alwayEnchantableAncientMobs = [] +#Disables the specific mob enchant. Use the full name(This config only disabled mob enchant when mob spawn. not mean delete complete, eg: enchantwithmob:thorn. +disableMobEnchants = [] +#Allow the poison cloud for projectile. Use the full name(eg: minecraft:arrow. +allowPoisonCloudProjectiles = ["minecraft:arrow", "minecraft:snowball", "earthmobsmod:melon_seeds", "earthmobsmod:zombie_flesh", "conjurer_illager:throwing_card", "conjurer_illager:bouncy_ball", "tofucraft:fukumame", "tofucraft:nether_fukumame", "tofucraft:soul_fukumame"] +#Allow the multi shot for projectile. Use the full name(eg: minecraft:arrow. +allowMultiShotProjectiles = ["minecraft:arrow", "minecraft:snowball", "earthmobsmod:melon_seeds", "earthmobsmod:zombie_flesh", "conjurer_illager:throwing_card", "conjurer_illager:bouncy_ball", "tofucraft:fukumame", "tofucraft:nether_fukumame", "tofucraft:soul_fukumame"] +#Whitelist the projectile mob enchant for mob. Use the full name(eg: minecraft:zombie. +whitelistShootEntity = ["minecraft:skeleton", "minecraft:pillager", "minecraft:shulker", "minecraft:llama", "conjurer_illager:conjurer", "earthmobsmod:bone_spider", "earthmobsmod:lobber_zombie", "earthmobsmod:lobber_drowned", "earthmobsmod:melon_golem", "minecraft:piglin", "minecraft:snow_golem", "minecraft:player"] +#Set the MobEnchant on the EnderDragon. If you want more harder fight. should set it! eg: enchantwithmob:thorn. +"Buffed Dragon" = [] +#Enable the the spawning of enchanted animal mobs. [true / false] +"Enchanted Animal can Spawn Natural" = false +#Enable enchanting yourself. [true / false] +"Enchant yourself" = true +#Enable Change Size When Enchanted. [true / false] +"Change Size" = false +#Enable Increase Health like Dungeons When Enchanted. [true / false] +"Increase Health like Dungeons" = false +#Enable Player More Bigger When You have Huge Enchant. [true / false] +"Big Your Self" = false +#Enable All MobEnchant for all mob. [true / false] +UniversalEnchant = false +#Set The Difficulty Base Enchanted Mob Spawn Percent. [(Difficulty Base Percent * Difficulty id) + (Effective Difficulty Percent * Effective Difficulty)] +#Range: 0.0 ~ 1.0 +"Difficulty Enchanted Spawn Percent" = 0.005 +#Set The Effective Difficulty Base Enchanted Mob Spawn Percent [(Difficulty Base Percent * Difficulty id) + (Effective Difficulty Percent * Effective Difficulty)] +#Range: 0.0 ~ 1.0 +"Effective Difficulty Enchanted Spawn Percent" = 0.025 +#Disable Enchanter Armor Item. [true / false] +"Disable Enchanter Armor" = false +#Disable MobEnchant Stuff Items. [true / false] +"Disable MobEnchant Stuff Items" = false + diff --git a/minecraft/config/ender-sins-common.toml b/minecraft/config/ender-sins-common.toml new file mode 100644 index 0000000..20a113b --- /dev/null +++ b/minecraft/config/ender-sins-common.toml @@ -0,0 +1,5 @@ + +[Config] + #The probability (in percents) for a Gulber to activate the Golem Heart Skill when attacked + "Golem Heart" = 20.0 + diff --git a/minecraft/config/enderchests-client.toml b/minecraft/config/enderchests-client.toml new file mode 100644 index 0000000..774ec52 --- /dev/null +++ b/minecraft/config/enderchests-client.toml @@ -0,0 +1,46 @@ + +#Select A GUI Style +[gui_style] + #Allowed Values: DEFAULT, VANILLA + EnderChest = "DEFAULT" + +#Color Values for Bands, +#Format: Decimal Values (0 to 16,777,215) +#You can use this website to get the decimal value of any color: +#http://www.colorhexa.com +#Or by using the Color Mixer from this website: +#http://www.mathsisfun.com/hexadecimal-decimal-colors.html +[color_values] + #Range: 0 ~ 16777215 + white = 16777215 + #Range: 0 ~ 16777215 + orange = 14517579 + #Range: 0 ~ 16777215 + magenta = 12411333 + #Range: 0 ~ 16777215 + light_blue = 8296912 + #Range: 0 ~ 16777215 + yellow = 12892206 + #Range: 0 ~ 16777215 + lime = 4832573 + #Range: 0 ~ 16777215 + pink = 14195370 + #Range: 0 ~ 16777215 + gray = 4605510 + #Range: 0 ~ 16777215 + light_gray = 11120559 + #Range: 0 ~ 16777215 + cyan = 3373205 + #Range: 0 ~ 16777215 + purple = 8996546 + #Range: 0 ~ 16777215 + blue = 3292826 + #Range: 0 ~ 16777215 + brown = 5650466 + #Range: 0 ~ 16777215 + green = 3821086 + #Range: 0 ~ 16777215 + red = 10828341 + #Range: 0 ~ 16777215 + black = 2500134 + diff --git a/minecraft/config/enderchests.toml b/minecraft/config/enderchests.toml new file mode 100644 index 0000000..2dbd943 --- /dev/null +++ b/minecraft/config/enderchests.toml @@ -0,0 +1,76 @@ +#With this disabled chests are essentially locked to the crafted color as dyes will no longer work +enable_in_world_coloring = true +#When linking stacked bags: +#True = all of them will be linked +#False = one at a time will be linked +full_stack_linking = true + +#Item used to upgrade the EnderChests +[upgrade_item_tags] + #Items used to make the chests personal + personal = ["tag|forge:gems/diamond"] + #Items used to make the chests team chests + team = ["tag|forge:gems/emerald"] + #Items that upgrade storage capacity by 3 + small_capacity = ["minecraft:ender_pearl"] + #Items that upgrade storage capacity by 9 + large_capacity = ["minecraft:ender_eye"] + #Items that upgrade storage capacity by 3 + #Each item can only be use once per chest + small_capacity_singleuse = [] + #Items that upgrade storage capacity by 9 + #Each item can only be use once per chest + large_capacity_singleuse = [] + +#Adjust how many inventory slots are available +[capacity_settings] + #Minimum capacity an EnderChest holds + #Range: 9 ~ 27 + chest_size_min = 9 + #Maximum capacity an EnderChest holds + #Range: 9 ~ 54 + chest_size_max = 27 + +[access_settings] + #When enabled these bags access a players vanilla EnderChest, if disabled they will only be a crafting ingredient + ender_pouch = true + #Enables the usage of public chests, if disabled chests must be upgraded before use + public_chests = true + #Enables the creation of personal chests, if disabled chests can not set personal. + #Does not effect chests that are already set as personal + personal_chests = true + #Enables the creation of team chests, if disabled chests can not be set team. + #Does not effect chests that are already set as team + team_chests = true + #Enables the usage of public bags, if disabled bags must be linked to an upgraded chest before use + public_bags = true + #Enables the linking of bags to personal chests. + #Does not effect bags that are already linked to personal chests + personal_bags = true + #Enables the linking of bags to team chests. + #Does not effect bags that are already linked to team chests + team_bags = true + #Public chests can be used with automation. + public_automation = true + #Personal chests can be used with automation. + personal_automation = true + #Team chests can be used with automation. + team_automation = true + #While true a Personal chest can only be edited (upgrade, move, etc) by the owner + personal_edit_lock = true + #While true a Team chest can only be edited (upgrade, move, etc) by a team member + team_edit_lock = true + #While true only the owner can link a bag to their chests + personal_link_lock = true + #While true only a team member can link a bag to team chests + team_link_lock = true + #While true only the owner can use the chest + personal_use_lock = false + #While true only a team member can use the chest + team_use_lock = false + +#Mod integration can be disabled to solve compatibility issues, remove unwanted/unneeded features, etc. +[integration] + #EnderBag and EnderPouch will function while equipped as a Curio + curios = true + diff --git a/minecraft/config/endergetic-common.toml b/minecraft/config/endergetic-common.toml new file mode 100644 index 0000000..185b056 --- /dev/null +++ b/minecraft/config/endergetic-common.toml @@ -0,0 +1,5 @@ + +[debug] + #If the Dragon Fight Manager should debug its portal values + "Debug Dragon Fight Manager" = false + diff --git a/minecraft/config/enderio/armory-common.toml b/minecraft/config/enderio/armory-common.toml new file mode 100644 index 0000000..332ad2e --- /dev/null +++ b/minecraft/config/enderio/armory-common.toml @@ -0,0 +1,43 @@ + +[darksteel] + + [darksteel.darksteelaxe] + energyUsePerFelledLog = 1500 + + [darksteel.darksteelpickaxe] + obsidianBreakPowerUse = 50 + speedBoostWhenObsidian = 50 + useObsidianBreakSpeedAtHardness = 30 + + [darksteel.upgrades] + spoonActivationCost = 4 + forkActivationCost = 4 + directActivationCost = 4 + + [darksteel.upgrades.empowered] + efficiencyBoost = 2 + energyUsePerDamagePoint = 750 + activationCost_l1 = 4 + damageAbsorptionChance_l1 = 0.5 + maxEnergy_l1 = 100000 + activationCost_l2 = 8 + damageAbsorptionChance_l2 = 0.6 + maxEnergy_l2 = 150000 + activationCost_l3 = 12 + damageAbsorptionChance_l3 = 0.7 + maxEnergy_l3 = 250000 + activationCost_l4 = 16 + damageAbsorptionChance_l4 = 0.85 + maxEnergy_l4 = 1000000 + + [darksteel.upgrades.explosive] + explosiveEnergyPerBlock = 30 + explosiveActivationCostI = 8 + explosiveI = 1 + explosiveActivationCostII = 12 + explosiveII = 2 + explosivePenetrationActivationCostI = 8 + explosivePenetrationI = 1 + explosivePenetrationActivationCostII = 12 + explosivePenetrationII = 2 + diff --git a/minecraft/config/enderio/base-client.toml b/minecraft/config/enderio/base-client.toml new file mode 100644 index 0000000..a5881fe --- /dev/null +++ b/minecraft/config/enderio/base-client.toml @@ -0,0 +1,5 @@ + +[visual] + #Enable machine particles + machineParticles = true + diff --git a/minecraft/config/enderio/base-common.toml b/minecraft/config/enderio/base-common.toml new file mode 100644 index 0000000..f2f82fa --- /dev/null +++ b/minecraft/config/enderio/base-common.toml @@ -0,0 +1,93 @@ + +[blocks] + #The explosion resistance of explosion resistant blocks. + explosionResistance = 1200.0 + #The speed boost granted by the Dark Steel ladder. + darkSteelLadderBoost = 0.15 + + [blocks.brokenSpawner] + #The chance of a spawner dropping a broken spawner. + dropChance = 1.0 + +[enchantments] + + [enchantments.autoSmelt] + maxCost = 60 + minCost = 15 + + [enchantments.repellent] + maxLevel = 4 + maxCostBase = 10 + maxCostPerLevel = 10 + minCostBase = 10 + minCostPerLevel = 5 + chanceBase = 0.35 + chancePerLevel = 0.1 + rangeBase = 8.0 + rangePerLevel = 8.0 + nonPlayerChance = 0.75 + + [enchantments.shimmer] + maxCost = 100 + minCost = 1 + + [enchantments.soulBound] + maxCost = 60 + minCost = 16 + + [enchantments.witheringBlade] + maxCost = 100 + minCost = 1 + + [enchantments.witheringArrow] + maxCost = 100 + minCost = 1 + + [enchantments.witheringBolt] + maxCost = 100 + minCost = 1 + + [enchantments.xpBoost] + maxCostBase = 30 + maxCostPerLevel = 10 + minCostBase = 1 + minCostPerLevel = 10 + +[items] + + [items.food] + #The chance of enderios teleporting the player + enderioChance = 0.3 + #The range of an enderio teleport + enderioRange = 16.0 + + [items.electromagnet] + energyUse = 1 + maxEnergy = 100000 + range = 5 + maxItems = 20 + + [items.levitationstaff] + energyUse = 1 + maxEnergy = 10000 + + [items.travelling] + #Range: 4 ~ 512 + blinkRange = 24 + #Range: 0 ~ 1200 + disabledTime = 5 + energyUse = 1000 + maxEnergy = 100000 + #the following config values are only used if EIOMachines is loaded + #Range: 4 ~ 512 + itemToBlockRange = 192 + #Range: 4 ~ 512 + blockToBlockRange = 96 + +[grainsOfInfinity] + #Should it make a sound when Grains of Infinity drops from a fire? + makesSound = true + #How old (in ticks) does a fire have to be to be able to spawn Infinity Powder? + #Range: 1 ~ 1000 + fireMinAge = 260 + diff --git a/minecraft/config/enderio/machines-client.toml b/minecraft/config/enderio/machines-client.toml new file mode 100644 index 0000000..8b948b2 --- /dev/null +++ b/minecraft/config/enderio/machines-client.toml @@ -0,0 +1,17 @@ + +[blocks] + #The color of the range box of the Vacuum Chest + vacuumChestRangeColor = "0000FF" + #The color of the range box of the XP Vacuum + vacuumXpRangeColor = "00FF00" + #The color of the range box of the Powered Spawner + poweredSpawnerRangeColor = "FF0000" + #The color of the range box of the Drain + drainRangeColor = "FFA500" + #The color of the range box of the Aversion Obelisk + aversionRangeColor = "8B0000" + +[ioconfig] + #Neighbour Transparency [0-1] + neighbourTransparency = 0.4 + diff --git a/minecraft/config/enderio/machines-common.toml b/minecraft/config/enderio/machines-common.toml new file mode 100644 index 0000000..f9c9e2f --- /dev/null +++ b/minecraft/config/enderio/machines-common.toml @@ -0,0 +1,164 @@ + +[energy] + + [energy.alloySmelter] + #The base energy capacity in uI. + #Range: > 1 + capacity = 64000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 20 + #The amount of energy to consume per vanilla smelting item in uI. + #Range: > 1 + vanillaItemEnergy = 1500 + + [energy.crafter] + #The base energy capacity in uI. + #Range: > 1 + capacity = 64000 + #The energy cost in uI for a crafting recipe. + #Range: > 1 + usage = 3200 + + [energy.impulseHopper] + #The base energy capacity in uI. + #Range: > 1 + capacity = 64000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 16 + + [energy.poweredSpawner] + #The base energy capacity in uI. + #Range: > 1 + capacity = 100000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 20 + + [energy.sagMill] + #The base energy capacity in uI. + #Range: > 1 + capacity = 64000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 20 + + [energy.slicer] + #The base energy capacity in uI. + #Range: > 1 + capacity = 100000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 30 + + [energy.soulBinder] + #The base energy capacity in uI. + #Range: > 1 + capacity = 128000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 60 + + [energy.stirlingGenerator] + #The base energy capacity in uI. + #Range: > 1 + capacity = 64000 + #The base number of 'burn ticks' performed per machine tick. + #Range: 0.001 ~ 1.7976931348623157E308 + burnSpeed = 0.375 + #The base percentage efficiency, used to determine burn times. + #Range: 1 ~ 200 + fuelEfficiencyBase = 80 + #The efficiency increase per capacitor level. + #Range: 1 ~ 200 + fuelEfficiencyStep = 20 + #The base amount of energy produced in uI/t. + #Range: > 1 + generation = 40 + + [energy.paintingMachine] + #The base energy capacity in uI. + #Range: > 1 + capacity = 64000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 30 + #The energy required for each painting operation + #Range: > 1 + energyCost = 2400 + + [energy.photovoltaicCellRates] + #Production rate at midday without rain or thunder + #Range: > 1 + energetic = 4 + #Range: > 1 + pulsating = 16 + #Range: > 1 + vibrant = 64 + + [energy.capacitor_bank_capacity] + #Capacity for capacitor banks + #Range: > 1 + basic = 500000 + #Range: > 1 + advanced = 2000000 + #Range: > 1 + vibrant = 4000000 + + [energy.wiredCharger] + #The base energy capacity in uI. + #Range: > 1 + capacity = 128000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 30 + + [energy.soul_engine] + #Range: > 1 + capacity = 100000 + #The base burn-rate the soul engine. + #Range: > 1 + burnSpeed = 1 + #Percentage increase in uI produced. + #Range: 0.001 ~ 1.7976931348623157E308 + generation = 1.0 + + [energy.drain] + #The base energy capacity in uI. + #Range: > 1 + capacity = 64000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 10 + + [energy.aversion] + #The base energy capacity in uI. + #Range: > 1 + capacity = 64000 + #The base energy consumption in uI/t. + #Range: > 1 + usage = 10 + +[enchanter] + #The lapis cost is enchant level multiplied by this value. + lapisCostFactor = 3.0 + #The final XP cost for an enchantment is multiplied by this value. To halve costs set to 0.5, to double them set it to 2. + levelCostFactor = 0.75 + #Base level cost added to all recipes in the enchanter. + baseLevelCost = 2 + +[poweredSpawner] + #The amount of mobs that spawn from the spawner + #Range: > 0 + spawn_amount = 4 + #The amount of entities that will turn off powered spawner if in range. + #Range: > 0 + maxentities = 2 + #The way a powered spawner spawns an entity. Possible options: 'ENTITYPE' Spawns the same entity types as the soul vial. 'COPY' Spawns an exact copy of the mob in the soul vial + #Allowed Values: ENTITYTYPE, COPY + "Spawn Type" = "ENTITYTYPE" + #The maximum amount of spawners before the spawners suffers a loss of efficiency + #Range: > 0 + maxspawners = 10 + diff --git a/minecraft/config/endermanoverhaul-client.jsonc b/minecraft/config/endermanoverhaul-client.jsonc new file mode 100644 index 0000000..f59dda5 --- /dev/null +++ b/minecraft/config/endermanoverhaul-client.jsonc @@ -0,0 +1,3 @@ +{ + "replaceDefaultEnderman": false +} \ No newline at end of file diff --git a/minecraft/config/endermanoverhaul.jsonc b/minecraft/config/endermanoverhaul.jsonc new file mode 100644 index 0000000..3269def --- /dev/null +++ b/minecraft/config/endermanoverhaul.jsonc @@ -0,0 +1,29 @@ +{ + "allowPickingUpBlocks": true, + "friendlyEndermanTeleport": true, + "friendlyEndermanDespawn": true, + "allowSpawning": true, + "spawnBadlandsEnderman": true, + "spawnCaveEnderman": true, + "spawnCrimsonForestEnderman": true, + "spawnDarkOakEnderman": true, + "spawnDesertEnderman": true, + "spawnEndEnderman": true, + "spawnEndIslandsEnderman": true, + "spawnFlowerFieldsEnderman": true, + "spawnIceSpikesEnderman": true, + "spawnMushroomFieldsEnderman": true, + "spawnNetherWastesEnderman": true, + "spawnCoralEnderman": true, + "spawnSavannaEnderman": true, + "spawnSnowyEnderman": true, + "spawnSoulsandValleyEnderman": true, + "spawnSwampEnderman": true, + "spawnWarpedForestEnderman": true, + "spawnWindsweptHillsEnderman": true, + /* + * The chance that an End Enderman will teleport you when it hits you + * Type: Float + */ + "endEndermanTeleportChance": 0.5 +} \ No newline at end of file diff --git a/minecraft/config/endertanks-client.toml b/minecraft/config/endertanks-client.toml new file mode 100644 index 0000000..186b56a --- /dev/null +++ b/minecraft/config/endertanks-client.toml @@ -0,0 +1,44 @@ +#Delay, in milliseconds, before a multi-line tank info request will display the next line +#Range: 250 ~ 10000 +info_line_change_delay = 1500 + +#Color Values for Bands, +#Format: Decimal Values (0 to 16,777,215) +#You can use this website to get the decimal value of any color: +#http://www.colorhexa.com +#Or by using the Color Mixer from this website: +#http://www.mathsisfun.com/hexadecimal-decimal-colors.html +[color_values] + #Range: 0 ~ 16777215 + white = 16777215 + #Range: 0 ~ 16777215 + orange = 14517579 + #Range: 0 ~ 16777215 + magenta = 12411333 + #Range: 0 ~ 16777215 + light_blue = 8296912 + #Range: 0 ~ 16777215 + yellow = 12892206 + #Range: 0 ~ 16777215 + lime = 4832573 + #Range: 0 ~ 16777215 + pink = 14195370 + #Range: 0 ~ 16777215 + gray = 4605510 + #Range: 0 ~ 16777215 + light_gray = 11120559 + #Range: 0 ~ 16777215 + cyan = 3373205 + #Range: 0 ~ 16777215 + purple = 8996546 + #Range: 0 ~ 16777215 + blue = 3292826 + #Range: 0 ~ 16777215 + brown = 5650466 + #Range: 0 ~ 16777215 + green = 3821086 + #Range: 0 ~ 16777215 + red = 10828341 + #Range: 0 ~ 16777215 + black = 2500134 + diff --git a/minecraft/config/endertanks.toml b/minecraft/config/endertanks.toml new file mode 100644 index 0000000..ea32b28 --- /dev/null +++ b/minecraft/config/endertanks.toml @@ -0,0 +1,94 @@ +#With this disabled tanks are essentially locked to the crafted color as dyes will no longer work +enable_in_world_coloring = true +#When linking stacked buckets: +#True = all of them will be linked +#False = one at a time will be linked +full_stack_linking = true + +#Items used to upgrade the EnderTanks +[upgrade_items] + #Items used to make the tanks personal + personal = ["tag|forge:gems/diamond"] + #Items used to make the tanks team tanks + team = ["tag|forge:gems/emerald"] + #Items that apply a small storage capacity upgrade + small_capacity = ["minecraft:ender_pearl"] + #Items that apply a large storage capacity upgrade + large_capacity = ["minecraft:ender_eye"] + #Items that are used to increase the tanks internal transfer pump + pump = ["minecraft:piston"] + #Items that apply a small storage capacity upgrade + #Each item can only be use once per tank + small_capacity_singleuse = [] + #Items that apply a large storage capacity upgrade + #Each item can only be use once per tank + large_capacity_singleuse = [] + #Items that are used to increase the tanks internal transfer pump + #Each item can only be use once per tank + pump_singleuse = [] + +#Set the number of buckets a tank holds, how many pump upgrades can be applied, and the value of a storage upgrade +[capacity_settings] + #How many internal transfer pump upgrades can a tank have? + # default is only 1/4 bucket, upgrades make it a bucket per upgrade + #Range: 0 ~ 8 + tank_pump_max = 4 + #Minimum capacity an EnderTank holds + #Range: 4 ~ 128 + tank_size_min = 32 + #Maximum capacity an EnderTank holds + #Range: 4 ~ 512 + tank_size_max = 256 + #Capacity increased by small capacity upgrade items + #Range: 2 ~ 16 + small_capacity_upgrade = 8 + #Capacity increased by large capacity upgrade items + #Range: 4 ~ 32 + large_capacity_upgrade = 16 + +[access_settings] + #Enables the usage of public tanks, if disabled tanks must be upgraded before use + public_tanks = true + #Enables the creation of personal tanks, if disabled tanks can not set personal. + #Does not effect tanks that are already set as personal + personal_tanks = true + #Enables the creation of team tanks, if disabled tanks can not be set team. + #Does not effect tanks that are already set as team + team_tanks = true + #Enables the usage of public buckets, if disabled buckets must be linked to an upgraded tank before use + public_buckets = true + #Enables the linking of buckets to personal tanks. + #Does not effect buckets that are already linked to personal tanks + personal_buckets = true + #Enables the linking of buckets to team tanks. + #Does not effect buckets that are already linked to team tanks + team_buckets = true + #Public tanks can be used with automation. + #The internal pump is unaffected by this setting + public_automation = true + #Personal tanks can be used with automation. + #The internal pump is unaffected by this setting + personal_automation = true + #Team tanks can be used with automation. + #The internal pump is unaffected by this setting + team_automation = true + #While true a Personal tank can only be edited (upgrade, move, etc) by the owner + personal_edit_lock = true + #While true a Team tank can only be edited (upgrade, move, etc) by a team member + team_edit_lock = true + #While true only the owner can link a bucket to their tanks + personal_link_lock = true + #While true only a team member can link a bucket to team tanks + team_link_lock = true + #While true only the owner can use the tank + personal_use_lock = false + #While true only a team member can use the tank + team_use_lock = false + +#Mod integration can be disabled to solve compatibility issues, remove unwanted/unneeded features, etc. +[integration] + store_mekanism_gas = true + store_mekanism_infusion = true + store_mekanism_pigment = true + store_mekanism_slurry = true + diff --git a/minecraft/config/endrem.toml b/minecraft/config/endrem.toml new file mode 100644 index 0000000..db58c52 --- /dev/null +++ b/minecraft/config/endrem.toml @@ -0,0 +1,17 @@ + +[endrem] + #Determines if it's possible to obtain the evil eye when trading with a Cleric + is_evil_eye_obtainable = true + #Toggle Ender Eyes Actions (Throwing to Locate The Stronghold) + throw_ender_eye = false + #Toggle Ender Eyes Actions (Placing in Portal Frames) + use_ender_eye = false + #Determines the percentage chance of eyes breaking when thrown + eye_break_chance = 10 + #Determines whether or not vanilla eyes can naturally generate within the frames of the portal + frame_has_eye = false + #Determines if it's possible to obtain the cryptic eye when enchanting + is_cryptic_eye_obtainable = true + #Determines whether or not players can remove ender eyes from the portal frames + can_remove_eye = false + diff --git a/minecraft/config/energizedpower/client.conf b/minecraft/config/energizedpower/client.conf new file mode 100644 index 0000000..2aee6be --- /dev/null +++ b/minecraft/config/energizedpower/client.conf @@ -0,0 +1,11 @@ +# === Energized Power Client Config === + +# The tick amount to wait between two images in the Energized Power Book +# [Default value]: 50 +# [Validation]: Value >= 5 +# [Validation]: Value <= 1200 +energized_power_book.image_cycle_delay = 50 + +# If set to true relative target coordinates will be shown instead of absolute coordinates in the Fluid Pump +# [Default value]: true +block.fluid_pump.relative_target_coordinates = true diff --git a/minecraft/config/energizedpower/common.conf b/minecraft/config/energizedpower/common.conf new file mode 100644 index 0000000..b2da813 --- /dev/null +++ b/minecraft/config/energizedpower/common.conf @@ -0,0 +1,1705 @@ +# === Energized Power Common Config (IMPORTANT: Not all values are synced from the server to the client.) === + +# The energy capacity of the Battery (Tier I) in FE +# [Default value]: 256 +# [Validation]: Value >= 1 +item.battery_1.capacity = 256 + +# The energy transfer rate of the Battery (Tier I) in FE per tick +# [Default value]: 2 +# [Validation]: Value >= 1 +item.battery_1.transfer_rate = 2 + +# The energy capacity of the Battery (Tier II) in FE +# [Default value]: 1024 +# [Validation]: Value >= 1 +item.battery_2.capacity = 1024 + +# The energy transfer rate of the Battery (Tier II) in FE per tick +# [Default value]: 8 +# [Validation]: Value >= 1 +item.battery_2.transfer_rate = 8 + +# The energy capacity of the Battery (Tier III) in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +item.battery_3.capacity = 2048 + +# The energy transfer rate of the Battery (Tier III) in FE per tick +# [Default value]: 32 +# [Validation]: Value >= 1 +item.battery_3.transfer_rate = 32 + +# The energy capacity of the Battery (Tier IV) in FE +# [Default value]: 8192 +# [Validation]: Value >= 1 +item.battery_4.capacity = 8192 + +# The energy transfer rate of the Battery (Tier IV) in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +item.battery_4.transfer_rate = 128 + +# The energy capacity of the Battery (Tier V) in FE +# [Default value]: 16384 +# [Validation]: Value >= 1 +item.battery_5.capacity = 16384 + +# The energy transfer rate of the Battery (Tier V) in FE per tick +# [Default value]: 512 +# [Validation]: Value >= 1 +item.battery_5.transfer_rate = 512 + +# The energy capacity of the Battery (Tier VI) in FE +# [Default value]: 65536 +# [Validation]: Value >= 1 +item.battery_6.capacity = 65536 + +# The energy transfer rate of the Battery (Tier VI) in FE per tick +# [Default value]: 2048 +# [Validation]: Value >= 1 +item.battery_6.transfer_rate = 2048 + +# The energy capacity of the Battery (Tier VII) in FE +# [Default value]: 262144 +# [Validation]: Value >= 1 +item.battery_7.capacity = 262144 + +# The energy transfer rate of the Battery (Tier VII) in FE per tick +# [Default value]: 8192 +# [Validation]: Value >= 1 +item.battery_7.transfer_rate = 8192 + +# The energy capacity of the Battery (Tier VIII) in FE +# [Default value]: 1048576 +# [Validation]: Value >= 1 +item.battery_8.capacity = 1048576 + +# The energy transfer rate of the Battery (Tier VIII) in FE per tick +# [Default value]: 32768 +# [Validation]: Value >= 1 +item.battery_8.transfer_rate = 32768 + +# The energy capacity of the Energy Analyzer in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +item.energy_analyzer.capacity = 2048 + +# The energy transfer rate of the Energy Analyzer in FE per tick +# [Default value]: 32 +# [Validation]: Value >= 1 +item.energy_analyzer.transfer_rate = 32 + +# The energy consumption of the Energy Analyzer in FE per use +# [Default value]: 8 +# [Validation]: Value >= 1 +item.energy_analyzer.energy_consumption_per_use = 8 + +# The energy capacity of the Fluid Analyzer in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +item.fluid_analyzer.capacity = 2048 + +# The energy transfer rate of the Fluid Analyzer in FE per tick +# [Default value]: 32 +# [Validation]: Value >= 1 +item.fluid_analyzer.transfer_rate = 32 + +# The energy consumption of the Fluid Analyzer in FE per use +# [Default value]: 8 +# [Validation]: Value >= 1 +item.fluid_analyzer.energy_consumption_per_use = 8 + +# The energy capacity of the Inventory Coal Engine in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +item.inventory_coal_engine.capacity = 2048 + +# The energy transfer rate of the Inventory Coal Engine in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +item.inventory_coal_engine.transfer_rate = 256 + +# The multiplier by which the energy production of the Inventory Coal Engine is multiplied by +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +item.inventory_coal_engine.energy_production_multiplier = 1.000000 + +# The slot count of the Inventory Charger. +# WARNING: If set to a lower value than previously, items which are stored in an Inventory Charger could vanish! +# +# [Default value]: 3 +# [Validation]: Value must be one of [1, 3, 5] +item.inventory_charger.slot_count = 3 + +# If set to true the transfer rate limit of the Inventory Charger will be enabled +# [Default value]: false +item.inventory_charger.transfer_rate_limit_enabled = false + +# The maximal transfer rate of the Inventory Charger in FE per tick if the transfer rate limit is enabled +# [Default value]: 16384 +# [Validation]: Value >= 1 +item.inventory_charger.transfer_rate_limit = 16384 + +# The energy capacity of the Inventory Teleporter in FE +# [Default value]: 8388608 +# [Validation]: Value >= 1 +item.inventory_teleporter.capacity = 8388608 + +# The energy transfer rate of the Inventory Teleporter in FE per tick +# [Default value]: 65536 +# [Validation]: Value >= 1 +item.inventory_teleporter.transfer_rate = 65536 + +# The upgrade module effect (Production speed multiplier) of the Speed Upgrade Module (Tier I) +# [Default value]: 1.200000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_1.effect_value = 1.200000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Speed Upgrade Module (Tier I) +# [Default value]: 1.400000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_1.effect_value.energy_consumption = 1.400000 + +# The upgrade module effect (Production speed multiplier) of the Speed Upgrade Module (Tier II) +# [Default value]: 1.500000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_2.effect_value = 1.500000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Speed Upgrade Module (Tier II) +# [Default value]: 2.000000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_2.effect_value.energy_consumption = 2.000000 + +# The upgrade module effect (Production speed multiplier) of the Speed Upgrade Module (Tier III) +# [Default value]: 2.000000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_3.effect_value = 2.000000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Speed Upgrade Module (Tier III) +# [Default value]: 2.500000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_3.effect_value.energy_consumption = 2.500000 + +# The upgrade module effect (Production speed multiplier) of the Speed Upgrade Module (Tier IV) +# [Default value]: 3.500000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_4.effect_value = 3.500000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Speed Upgrade Module (Tier IV) +# [Default value]: 5.000000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_4.effect_value.energy_consumption = 5.000000 + +# The upgrade module effect (Production speed multiplier) of the Speed Upgrade Module (Tier V) +# [Default value]: 6.000000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_5.effect_value = 6.000000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Speed Upgrade Module (Tier V) +# [Default value]: 10.000000 +# [Validation]: Value > 1.0 +item.speed_upgrade_module_5.effect_value.energy_consumption = 10.000000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Energy Efficiency Upgrade Module (Tier I) +# [Default value]: 0.900000 +# [Validation]: Value > 0.0 +# [Validation]: Value < 1.0 +item.energy_efficiency_upgrade_module_1.effect_value = 0.900000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Energy Efficiency Upgrade Module (Tier II) +# [Default value]: 0.750000 +# [Validation]: Value > 0.0 +# [Validation]: Value < 1.0 +item.energy_efficiency_upgrade_module_2.effect_value = 0.750000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Energy Efficiency Upgrade Module (Tier III) +# [Default value]: 0.600000 +# [Validation]: Value > 0.0 +# [Validation]: Value < 1.0 +item.energy_efficiency_upgrade_module_3.effect_value = 0.600000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Energy Efficiency Upgrade Module (Tier IV) +# [Default value]: 0.400000 +# [Validation]: Value > 0.0 +# [Validation]: Value < 1.0 +item.energy_efficiency_upgrade_module_4.effect_value = 0.400000 + +# The upgrade module effect (Energy Consumption per tick multiplier) of the Energy Efficiency Upgrade Module (Tier V) +# [Default value]: 0.200000 +# [Validation]: Value > 0.0 +# [Validation]: Value < 1.0 +item.energy_efficiency_upgrade_module_8.effect_value = 0.200000 + +# The upgrade module effect (Energy capacity multiplier) of the Energy Capacity Upgrade Module (Tier I) +# [Default value]: 1.500000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_1.effect_value = 1.500000 + +# The upgrade module effect (Energy transfer rate multiplier) of the Energy Capacity Upgrade Module (Tier I) +# [Default value]: 1.500000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_1.energy_transfer_rate.effect_value = 1.500000 + +# The upgrade module effect (Energy capacity multiplier) of the Energy Capacity Upgrade Module (Tier II) +# [Default value]: 2.500000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_2.effect_value = 2.500000 + +# The upgrade module effect (Energy transfer rate multiplier) of the Energy Capacity Upgrade Module (Tier II) +# [Default value]: 2.500000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_2.energy_transfer_rate.effect_value = 2.500000 + +# The upgrade module effect (Energy capacity multiplier) of the Energy Capacity Upgrade Module (Tier III) +# [Default value]: 4.000000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_3.effect_value = 4.000000 + +# The upgrade module effect (Energy transfer rate multiplier) of the Energy Capacity Upgrade Module (Tier III) +# [Default value]: 4.000000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_3.energy_transfer_rate.effect_value = 4.000000 + +# The upgrade module effect (Energy capacity multiplier) of the Energy Capacity Upgrade Module (Tier IV) +# [Default value]: 7.500000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_4.effect_value = 7.500000 + +# The upgrade module effect (Energy transfer rate multiplier) of the Energy Capacity Upgrade Module (Tier IV) +# [Default value]: 7.500000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_4.energy_transfer_rate.effect_value = 7.500000 + +# The upgrade module effect (Energy capacity multiplier) of the Energy Capacity Upgrade Module (Tier V) +# [Default value]: 10.000000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_5.effect_value = 10.000000 + +# The upgrade module effect (Energy transfer rate multiplier) of the Energy Capacity Upgrade Module (Tier V) +# [Default value]: 10.000000 +# [Validation]: Value > 1.0 +item.energy_capacity_upgrade_module_5.energy_transfer_rate.effect_value = 10.000000 + +# The upgrade module effect (Duration multiplier) of the Duration Upgrade Module (Tier I) +# [Default value]: 4.000000 +# [Validation]: Value > 1.0 +item.duration_upgrade_module_1.effect_value = 4.000000 + +# The upgrade module effect (Duration multiplier) of the Duration Upgrade Module (Tier II) +# [Default value]: 10.000000 +# [Validation]: Value > 1.0 +item.duration_upgrade_module_2.effect_value = 10.000000 + +# The upgrade module effect (Duration multiplier) of the Duration Upgrade Module (Tier III) +# [Default value]: 20.000000 +# [Validation]: Value > 1.0 +item.duration_upgrade_module_3.effect_value = 20.000000 + +# The upgrade module effect (Duration multiplier) of the Duration Upgrade Module (Tier VI) +# [Default value]: 50.000000 +# [Validation]: Value > 1.0 +item.duration_upgrade_module_4.effect_value = 50.000000 + +# The upgrade module effect (Duration multiplier) of the Duration Upgrade Module (Tier V) +# [Default value]: 100.000000 +# [Validation]: Value > 1.0 +item.duration_upgrade_module_5.effect_value = 100.000000 + +# The energy consumption of the Duration Upgrade Module (Tier VI) if active in FE per tick +# [Default value]: 131072 +# [Validation]: Value >= 1 +item.duration_upgrade_module_6.energy_consumption_per_tick.energy_consumption_per_tick = 131072 + +# The upgrade module effect (Energy transfer rate multiplier) of the Duration Upgrade Module (Tier VI) +# [Default value]: 8.000000 +# [Validation]: Value > 1.0 +item.duration_upgrade_module_6.energy_transfer_rate.effect_value = 8.000000 + +# The upgrade module effect (Range multiplier) of the Range Upgrade Module (Tier I) +# [Default value]: 1.250000 +# [Validation]: Value > 1.0 +item.range_upgrade_module_1.effect_value = 1.250000 + +# The upgrade module effect (Range multiplier) of the Range Upgrade Module (Tier II) +# [Default value]: 1.500000 +# [Validation]: Value > 1.0 +item.range_upgrade_module_2.effect_value = 1.500000 + +# The upgrade module effect (Range multiplier) of the Range Upgrade Module (Tier III) +# [Default value]: 1.750000 +# [Validation]: Value > 1.0 +item.range_upgrade_module_3.effect_value = 1.750000 + +# The upgrade module effect (Addition Extraction Depth in Blocks) of the Extraction Depth Upgrade Module (Tier I) +# [Default value]: 16 +# [Validation]: Value >= 1 +item.extraction_depth_upgrade_module_1.effect_value = 16 + +# The upgrade module effect (Addition Extraction Depth in Blocks) of the Extraction Depth Upgrade Module (Tier II) +# [Default value]: 32 +# [Validation]: Value >= 1 +item.extraction_depth_upgrade_module_2.effect_value = 32 + +# The upgrade module effect (Addition Extraction Depth in Blocks) of the Extraction Depth Upgrade Module (Tier III) +# [Default value]: 64 +# [Validation]: Value >= 1 +item.extraction_depth_upgrade_module_3.effect_value = 64 + +# The upgrade module effect (Addition Extraction Depth in Blocks) of the Extraction Depth Upgrade Module (Tier IV) +# [Default value]: 128 +# [Validation]: Value >= 1 +item.extraction_depth_upgrade_module_4.effect_value = 128 + +# The upgrade module effect (Addition Extraction Depth in Blocks) of the Extraction Depth Upgrade Module (Tier V) +# [Default value]: 192 +# [Validation]: Value >= 1 +item.extraction_depth_upgrade_module_5.effect_value = 192 + +# The upgrade module effect (Range multiplier) of the Extraction Range Upgrade Module (Tier I) +# [Default value]: 1.250000 +# [Validation]: Value > 1.0 +item.extraction_range_upgrade_module_1.effect_value = 1.250000 + +# The upgrade module effect (Range multiplier) of the Extraction Range Upgrade Module (Tier II) +# [Default value]: 1.500000 +# [Validation]: Value > 1.0 +item.extraction_range_upgrade_module_2.effect_value = 1.500000 + +# The upgrade module effect (Range multiplier) of the Extraction Range Upgrade Module (Tier III) +# [Default value]: 2.000000 +# [Validation]: Value > 1.0 +item.extraction_range_upgrade_module_3.effect_value = 2.000000 + +# The upgrade module effect (Range multiplier) of the Extraction Range Upgrade Module (Tier IV) +# [Default value]: 2.500000 +# [Validation]: Value > 1.0 +item.extraction_range_upgrade_module_4.effect_value = 2.500000 + +# The upgrade module effect (Range multiplier) of the Extraction Range Upgrade Module (Tier V) +# [Default value]: 3.000000 +# [Validation]: Value > 1.0 +item.extraction_range_upgrade_module_5.effect_value = 3.000000 + +# The upgrade module effect (Multiplier of peak energy production during nighttime relative to the peak energy production during daytime) of the Moon Light Upgrade Module (Tier I) +# [Default value]: 0.125000 +# [Validation]: Value > 0.0 +item.moon_light_upgrade_module_1.effect_value = 0.125000 + +# The upgrade module effect (Multiplier of peak energy production during nighttime relative to the peak energy production during daytime) of the Moon Light Upgrade Module (Tier II) +# [Default value]: 0.330000 +# [Validation]: Value > 0.0 +item.moon_light_upgrade_module_2.effect_value = 0.330000 + +# The upgrade module effect (Multiplier of peak energy production during nighttime relative to the peak energy production during daytime) of the Moon Light Upgrade Module (Tier III) +# [Default value]: 0.660000 +# [Validation]: Value > 0.0 +item.moon_light_upgrade_module_3.effect_value = 0.660000 + +# The energy capacity of the Battery Box in FE +# [Default value]: 65536 +# [Validation]: Value >= 1 +block.battery_box.capacity = 65536 + +# The energy transfer rate of the Battery Box in FE per tick +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.battery_box.transfer_rate = 2048 + +# The energy capacity of the Advanced Battery Box in FE +# [Default value]: 8388608 +# [Validation]: Value >= 1 +block.advanced_battery_box.capacity = 8388608 + +# The energy transfer rate of the Advanced Battery Box in FE per tick +# [Default value]: 262144 +# [Validation]: Value >= 1 +block.advanced_battery_box.transfer_rate = 262144 + +# The energy transfer rate of the LV Transformers in FE per tick +# [Default value]: 8192 +# [Validation]: Value >= 1 +block.lv_transformers.transfer_rate = 8192 + +# The energy transfer rate of the MV Transformers in FE per tick +# [Default value]: 65536 +# [Validation]: Value >= 1 +block.mv_transformers.transfer_rate = 65536 + +# The energy transfer rate of the HV Transformers in FE per tick +# [Default value]: 524288 +# [Validation]: Value >= 1 +block.hv_transformers.transfer_rate = 524288 + +# The energy transfer rate of the EHV Transformers in FE per tick +# [Default value]: 2097152 +# [Validation]: Value >= 1 +block.ehv_transformers.transfer_rate = 2097152 + +# The energy extraction mode defines how cables extract energy. +# - PUSH: Producers must push energy into cables. +# - PULL: Cables pull energy from producers. +# - BOTH: Both systems are used. +# => Set to PULL for the behavior of cables before version 2.1.1. +# => Set to BOTH for compatibility with any FE energy producers. +# +# [Default value]: BOTH +# [Validation]: Value must be one of [PUSH, PULL, BOTH] +block.cables.energy_extraction_mode = BOTH + +# The energy transfer rate of the Tin Cable in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.tin_cable.transfer_rate = 128 + +# The energy transfer rate of the Copper Cable in FE per tick +# [Default value]: 1024 +# [Validation]: Value >= 1 +block.copper_cable.transfer_rate = 1024 + +# The energy transfer rate of the Gold Cable in FE per tick +# [Default value]: 16384 +# [Validation]: Value >= 1 +block.gold_cable.transfer_rate = 16384 + +# The energy transfer rate of the Energized Copper Cable in FE per tick +# [Default value]: 131072 +# [Validation]: Value >= 1 +block.energized_copper_cable.transfer_rate = 131072 + +# The energy transfer rate of the Energized Gold Cable in FE per tick +# [Default value]: 524288 +# [Validation]: Value >= 1 +block.energized_gold_cable.transfer_rate = 524288 + +# The energy transfer rate of the Energized Crystal Matrix Cable in FE per tick +# [Default value]: 2097152 +# [Validation]: Value >= 1 +block.energized_crystal_matrix_cable.transfer_rate = 2097152 + +# The energy capacity of the Weather Controller in FE +# [Default value]: 8388608 +# [Validation]: Value >= 1 +block.weather_controller.capacity = 8388608 + +# The energy transfer rate of the Weather Controller in FE per tick +# [Default value]: 32768 +# [Validation]: Value >= 1 +block.weather_controller.transfer_rate = 32768 + +# The amount of time in ticks the Weather Controller can maintain the desired weather state +# [Default value]: 19200 +# [Validation]: Value >= 100 +block.weather_controller.control_duration = 19200 + +# The energy capacity of the Lightning Generator in FE +# [Default value]: 1000000 +# [Validation]: Value >= 1 +block.lightning_generator.capacity = 1000000 + +# The energy transfer rate of the Lightning Generator in FE per tick +# [Default value]: 65536 +# [Validation]: Value >= 1 +block.lightning_generator.transfer_rate = 65536 + +# The energy capacity of the Charging Station in FE +# [Default value]: 262144 +# [Validation]: Value >= 1 +block.charging_station.capacity = 262144 + +# The energy transfer rate of the Charging Station in FE per tick +# [Default value]: 16384 +# [Validation]: Value >= 1 +block.charging_station.transfer_rate = 16384 + +# The maximal distance the Charging Station can operate within +# [Default value]: 7 +# [Validation]: Value >= 1 +# [Validation]: Value <= 25 +block.charging_station.max_charging_distance = 7 + +# The energy capacity of the Crystal Growth Chamber in FE +# [Default value]: 32768 +# [Validation]: Value >= 1 +block.crystal_growth_chamber.capacity = 32768 + +# The energy transfer rate of the Crystal Growth Chamber in FE per tick +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.crystal_growth_chamber.transfer_rate = 2048 + +# The energy consumption of the Crystal Growth Chamber if active in FE per tick +# [Default value]: 1024 +# [Validation]: Value >= 1 +block.crystal_growth_chamber.energy_consumption_per_tick = 1024 + +# The multiplier by which the time a recipe of the Crystal Growth Chamber requires is multiplied by +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.crystal_growth_chamber.recipe_duration_multiplier = 1.000000 + +# The energy capacity of the Time Controller in FE +# [Default value]: 8388608 +# [Validation]: Value >= 1 +block.time_controller.capacity = 8388608 + +# The energy transfer rate of the Time Controller in FE per tick +# [Default value]: 32768 +# [Validation]: Value >= 1 +block.time_controller.transfer_rate = 32768 + +# The energy capacity of the Teleporter in FE +# [Default value]: 8388608 +# [Validation]: Value >= 1 +block.teleporter.capacity = 8388608 + +# The energy transfer rate of the Teleporter in FE per tick +# [Default value]: 65536 +# [Validation]: Value >= 1 +block.teleporter.transfer_rate = 65536 + +# Intra dimensional teleportation (= within a dimension) is not allowed if set to false. +# [Default value]: true +block.teleporter.intra_dimensional_enabled = true + +# Inter dimensional teleportation (= across multiple dimension) is not allowed if set to false. +# [Default value]: true +block.teleporter.inter_dimensional_enabled = true + +# Teleportation within, from, and to dimensions in this list are not allowed. +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.teleporter.dimension_blacklist = [] + +# Teleportation within dimensions in this list are not allowed. +# Teleportation to and from dimensions in this list are still allowed. +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.teleporter.intra_dimensional_blacklist = [] + +# Teleportation from dimensions in this list are not allowed. +# Teleportation within and to dimensions in this list are still allowed. +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.teleporter.inter_dimension_from_blacklist = [] + +# Teleportation to dimensions in this list are not allowed. +# Teleportation within and from dimensions in this list are still allowed. +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.teleporter.inter_dimension_to_blacklist = [] + +# Teleportation within, from, and to dimension types in this list are not allowed. +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.teleporter.dimension_type_blacklist = [] + +# Teleportation within dimension types in this list are not allowed. +# Teleportation to and from dimension types in this list are still allowed. +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.teleporter.intra_dimensional_type_blacklist = [] + +# Teleportation from dimension types in this list are not allowed. +# Teleportation within and to dimension types in this list are still allowed. +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.teleporter.inter_dimension_from_type_blacklist = [] + +# Teleportation to dimension types in this list are not allowed. +# Teleportation within and from dimension types in this list are still allowed. +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.teleporter.inter_dimension_to_type_blacklist = [] + +# The multiplier by which the time a recipe of the Alloy Furnace requires is multiplied by +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.alloy_furnace.recipe_duration_multiplier = 1.000000 + +# The energy capacity of the Coal Engine in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.coal_engine.capacity = 2048 + +# The energy transfer rate of the Coal Engine in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.coal_engine.transfer_rate = 256 + +# The multiplier by which the energy production of the Coal Engine is multiplied by +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.coal_engine.energy_production_multiplier = 1.000000 + +# The energy capacity of the Solar Panel (Tier I) in FE +# [Default value]: 80 +# [Validation]: Value >= 1 +block.solar_panel_1.capacity = 80 + +# The energy transfer rate of the Solar Panel (Tier I) in FE per tick +# [Default value]: 8 +# [Validation]: Value >= 1 +block.solar_panel_1.transfer_rate = 8 + +# The peak energy production of the Solar Panel (Tier I) for ideal conditions (e.g. at noon with clear sky for solar panels) in FE per tick +# [Default value]: 2 +# [Validation]: Value >= 1 +block.solar_panel_1.energy_peak_production = 2 + +# The energy capacity of the Solar Panel (Tier II) in FE +# [Default value]: 640 +# [Validation]: Value >= 1 +block.solar_panel_2.capacity = 640 + +# The energy transfer rate of the Solar Panel (Tier II) in FE per tick +# [Default value]: 64 +# [Validation]: Value >= 1 +block.solar_panel_2.transfer_rate = 64 + +# The peak energy production of the Solar Panel (Tier II) for ideal conditions (e.g. at noon with clear sky for solar panels) in FE per tick +# [Default value]: 16 +# [Validation]: Value >= 1 +block.solar_panel_2.energy_peak_production = 16 + +# The energy capacity of the Solar Panel (Tier III) in FE +# [Default value]: 5120 +# [Validation]: Value >= 1 +block.solar_panel_3.capacity = 5120 + +# The energy transfer rate of the Solar Panel (Tier III) in FE per tick +# [Default value]: 512 +# [Validation]: Value >= 1 +block.solar_panel_3.transfer_rate = 512 + +# The peak energy production of the Solar Panel (Tier III) for ideal conditions (e.g. at noon with clear sky for solar panels) in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.solar_panel_3.energy_peak_production = 128 + +# The energy capacity of the Solar Panel (Tier IV) in FE +# [Default value]: 81920 +# [Validation]: Value >= 1 +block.solar_panel_4.capacity = 81920 + +# The energy transfer rate of the Solar Panel (Tier IV) in FE per tick +# [Default value]: 8192 +# [Validation]: Value >= 1 +block.solar_panel_4.transfer_rate = 8192 + +# The peak energy production of the Solar Panel (Tier IV) for ideal conditions (e.g. at noon with clear sky for solar panels) in FE per tick +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.solar_panel_4.energy_peak_production = 2048 + +# The energy capacity of the Solar Panel (Tier V) in FE +# [Default value]: 327680 +# [Validation]: Value >= 1 +block.solar_panel_5.capacity = 327680 + +# The energy transfer rate of the Solar Panel (Tier V) in FE per tick +# [Default value]: 131072 +# [Validation]: Value >= 1 +block.solar_panel_5.transfer_rate = 131072 + +# The peak energy production of the Solar Panel (Tier V) for ideal conditions (e.g. at noon with clear sky for solar panels) in FE per tick +# [Default value]: 16384 +# [Validation]: Value >= 1 +block.solar_panel_5.energy_peak_production = 16384 + +# The energy capacity of the Solar Panel (Tier VI) in FE +# [Default value]: 1048576 +# [Validation]: Value >= 1 +block.solar_panel_6.capacity = 1048576 + +# The energy transfer rate of the Solar Panel (Tier VI) in FE per tick +# [Default value]: 524288 +# [Validation]: Value >= 1 +block.solar_panel_6.transfer_rate = 524288 + +# The peak energy production of the Solar Panel (Tier VI) for ideal conditions (e.g. at noon with clear sky for solar panels) in FE per tick +# [Default value]: 131072 +# [Validation]: Value >= 1 +block.solar_panel_6.energy_peak_production = 131072 + +# The energy capacity of the Minecart Charger in FE +# [Default value]: 16384 +# [Validation]: Value >= 1 +block.minecart_charger.capacity = 16384 + +# The energy transfer rate of the Minecart Charger in FE per tick +# [Default value]: 512 +# [Validation]: Value >= 1 +block.minecart_charger.transfer_rate = 512 + +# The energy capacity of the Minecart Uncharger in FE +# [Default value]: 16384 +# [Validation]: Value >= 1 +block.minecart_uncharger.capacity = 16384 + +# The energy transfer rate of the Minecart Uncharger in FE per tick +# [Default value]: 512 +# [Validation]: Value >= 1 +block.minecart_uncharger.transfer_rate = 512 + +# The energy capacity of the Advanced Minecart Charger in FE +# [Default value]: 524288 +# [Validation]: Value >= 1 +block.advanced_minecart_charger.capacity = 524288 + +# The energy transfer rate of the Advanced Minecart Charger in FE per tick +# [Default value]: 65536 +# [Validation]: Value >= 1 +block.advanced_minecart_charger.transfer_rate = 65536 + +# The energy capacity of the Advanced Minecart Uncharger in FE +# [Default value]: 524288 +# [Validation]: Value >= 1 +block.advanced_minecart_uncharger.capacity = 524288 + +# The energy transfer rate of the Advanced Minecart Uncharger in FE per tick +# [Default value]: 65536 +# [Validation]: Value >= 1 +block.advanced_minecart_uncharger.transfer_rate = 65536 + +# The energy capacity of the Crusher in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.crusher.capacity = 2048 + +# The energy transfer rate of the Crusher in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.crusher.transfer_rate = 128 + +# The energy consumption of the Crusher if active in FE per tick +# [Default value]: 8 +# [Validation]: Value >= 1 +block.crusher.energy_consumption_per_tick = 8 + +# The time a recipe of the Crusher requires in ticks +# [Default value]: 100 +# [Validation]: Value >= 1 +block.crusher.recipe_duration = 100 + +# The energy capacity of the Advanced Crusher in FE +# [Default value]: 4096 +# [Validation]: Value >= 1 +block.advanced_crusher.capacity = 4096 + +# The energy transfer rate of the Advanced Crusher in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.advanced_crusher.transfer_rate = 256 + +# The energy consumption of the Advanced Crusher if active in FE per tick +# [Default value]: 32 +# [Validation]: Value >= 1 +block.advanced_crusher.energy_consumption_per_tick = 32 + +# The time a recipe of the Advanced Crusher requires in ticks +# [Default value]: 25 +# [Validation]: Value >= 1 +block.advanced_crusher.recipe_duration = 25 + +# The fluid tank capacity of the Advanced Crusher in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.advanced_crusher.fluid_tank_capacity = 8 + +# The amount of Water in mB (milli Buckets) which will be converted to Dirty Water per completed recipe in the Advanced Crusher. +# [Default value]: 10 +# [Validation]: Value >= 1 +block.advanced_crusher.water_usage_per_recipe = 10 + +# The energy capacity of the Pulverizer in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.pulverizer.capacity = 2048 + +# The energy transfer rate of the Pulverizer in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.pulverizer.transfer_rate = 128 + +# The energy consumption of the Pulverizer if active in FE per tick +# [Default value]: 8 +# [Validation]: Value >= 1 +block.pulverizer.energy_consumption_per_tick = 8 + +# The time a recipe of the Pulverizer requires in ticks +# [Default value]: 100 +# [Validation]: Value >= 1 +block.pulverizer.recipe_duration = 100 + +# The energy capacity of the Advanced Pulverizer in FE +# [Default value]: 4096 +# [Validation]: Value >= 1 +block.advanced_pulverizer.capacity = 4096 + +# The energy transfer rate of the Advanced Pulverizer in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.advanced_pulverizer.transfer_rate = 256 + +# The energy consumption of the Advanced Pulverizer if active in FE per tick +# [Default value]: 32 +# [Validation]: Value >= 1 +block.advanced_pulverizer.energy_consumption_per_tick = 32 + +# The time a recipe of the Advanced Pulverizer requires in ticks +# [Default value]: 25 +# [Validation]: Value >= 1 +block.advanced_pulverizer.recipe_duration = 25 + +# The fluid tank capacity of the Advanced Pulverizer in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.advanced_pulverizer.fluid_tank_capacity = 8 + +# The amount of Water in mB (milli Buckets) which will be converted to Dirty Water per completed recipe in the Advanced Pulverizer. +# [Default value]: 10 +# [Validation]: Value >= 1 +block.advanced_pulverizer.water_usage_per_recipe = 10 + +# The energy capacity of the Sawmill in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.sawmill.capacity = 2048 + +# The energy transfer rate of the Sawmill in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.sawmill.transfer_rate = 128 + +# The energy consumption of the Sawmill if active in FE per tick +# [Default value]: 8 +# [Validation]: Value >= 1 +block.sawmill.energy_consumption_per_tick = 8 + +# The time a recipe of the Sawmill requires in ticks +# [Default value]: 100 +# [Validation]: Value >= 1 +block.sawmill.recipe_duration = 100 + +# The energy capacity of the Compressor in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.compressor.capacity = 2048 + +# The energy transfer rate of the Compressor in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.compressor.transfer_rate = 256 + +# The energy consumption of the Compressor if active in FE per tick +# [Default value]: 16 +# [Validation]: Value >= 1 +block.compressor.energy_consumption_per_tick = 16 + +# The time a recipe of the Compressor requires in ticks +# [Default value]: 100 +# [Validation]: Value >= 1 +block.compressor.recipe_duration = 100 + +# The energy capacity of the Metal Press in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.metal_press.capacity = 2048 + +# The energy transfer rate of the Metal Press in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.metal_press.transfer_rate = 256 + +# The energy consumption of the Metal Press if active in FE per tick +# [Default value]: 16 +# [Validation]: Value >= 1 +block.metal_press.energy_consumption_per_tick = 16 + +# The time a recipe of the Metal Press requires in ticks +# [Default value]: 250 +# [Validation]: Value >= 1 +block.metal_press.recipe_duration = 250 + +# The energy capacity of the Auto Press Mold Maker in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.auto_press_mold_maker.capacity = 2048 + +# The energy transfer rate of the Auto Press Mold Maker in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.auto_press_mold_maker.transfer_rate = 128 + +# The energy consumption of the Auto Press Mold Maker if active in FE per tick +# [Default value]: 8 +# [Validation]: Value >= 1 +block.auto_press_mold_maker.energy_consumption_per_tick = 8 + +# The time a recipe of the Auto Press Mold Maker requires in ticks +# [Default value]: 100 +# [Validation]: Value >= 1 +block.auto_press_mold_maker.recipe_duration = 100 + +# The energy capacity of the Auto Stonecutter in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.auto_stonecutter.capacity = 2048 + +# The energy transfer rate of the Auto Stonecutter in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.auto_stonecutter.transfer_rate = 128 + +# The energy consumption of the Auto Stonecutter if active in FE per tick +# [Default value]: 8 +# [Validation]: Value >= 1 +block.auto_stonecutter.energy_consumption_per_tick = 8 + +# The time a recipe of the Auto Stonecutter requires in ticks +# [Default value]: 100 +# [Validation]: Value >= 1 +block.auto_stonecutter.recipe_duration = 100 + +# The energy capacity of the Energizer in FE +# [Default value]: 65536 +# [Validation]: Value >= 1 +block.energizer.capacity = 65536 + +# The energy transfer rate of the Energizer in FE per tick +# [Default value]: 16384 +# [Validation]: Value >= 1 +block.energizer.transfer_rate = 16384 + +# The multiplier by which the energy consumption of the Energizer is multiplied by +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.energizer.energy_consumption_multiplier = 1.000000 + +# The time a recipe of the Energizer requires in ticks +# [Default value]: 100 +# [Validation]: Value >= 1 +block.energizer.recipe_duration = 100 + +# The energy capacity of the Auto Crafter in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.auto_crafter.capacity = 2048 + +# The energy transfer rate of the Auto Crafter in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.auto_crafter.transfer_rate = 256 + +# The energy consumption of the Auto Crafter if active in FE per tick per ingredient +# [Default value]: 2 +# [Validation]: Value >= 1 +block.auto_crafter.energy_consumption_per_tick_per_ingredient = 2 + +# The time a recipe of the Auto Crafter requires in ticks +# [Default value]: 100 +# [Validation]: Value >= 1 +block.auto_crafter.recipe_duration = 100 + +# The recipe blacklist for the Auto Crafter. +# The blacklist is a list of recipe ids which can not be crafted in the Auto Crafter +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.auto_crafter.recipe_blacklist = [] + +# The energy capacity of the Advanced Auto Crafter in FE +# [Default value]: 16384 +# [Validation]: Value >= 1 +block.advanced_auto_crafter.capacity = 16384 + +# The energy transfer rate of the Advanced Auto Crafter in FE per tick +# [Default value]: 1024 +# [Validation]: Value >= 1 +block.advanced_auto_crafter.transfer_rate = 1024 + +# The energy consumption of the Advanced Auto Crafter if active in FE per tick per ingredient +# [Default value]: 16 +# [Validation]: Value >= 1 +block.advanced_auto_crafter.energy_consumption_per_tick_per_ingredient = 16 + +# The time a recipe of the Advanced Auto Crafter requires in ticks +# [Default value]: 50 +# [Validation]: Value >= 1 +block.advanced_auto_crafter.recipe_duration = 50 + +# The recipe blacklist for the Advanced Auto Crafter. +# The blacklist is a list of recipe ids which can not be crafted in the Advanced Auto Crafter +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.advanced_auto_crafter.recipe_blacklist = [] + +# The energy capacity of the Heat Generator in FE +# [Default value]: 10000 +# [Validation]: Value >= 1 +block.heat_generator.capacity = 10000 + +# The energy transfer rate of the Heat Generator in FE per tick +# [Default value]: 500 +# [Validation]: Value >= 1 +block.heat_generator.transfer_rate = 500 + +# The multiplier by which the energy production of the Heat Generator is multiplied by +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.heat_generator.energy_production_multiplier = 1.000000 + +# The energy capacity of the Thermal Generator in FE +# [Default value]: 40960 +# [Validation]: Value >= 1 +block.thermal_generator.capacity = 40960 + +# The energy transfer rate of the Thermal Generator in FE per tick +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.thermal_generator.transfer_rate = 2048 + +# The multiplier by which the energy production of the Thermal Generator is multiplied by +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.thermal_generator.energy_production_multiplier = 1.000000 + +# The fluid tank capacity of the Thermal Generator in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.thermal_generator.fluid_tank_capacity = 8 + +# The energy capacity of the Block Placer in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.block_placer.capacity = 2048 + +# The energy transfer rate of the Block Placer in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.block_placer.transfer_rate = 128 + +# The energy consumption of the Block Placer if active in FE per tick +# [Default value]: 32 +# [Validation]: Value >= 1 +block.block_placer.energy_consumption_per_tick = 32 + +# The time the Block Placer requires to place a block in ticks +# [Default value]: 20 +# [Validation]: Value >= 1 +block.block_placer.placement_duration = 20 + +# Blocks in this list can not be placed by the Block Placer. +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.block_placer.placement_blacklist = [] + +# The energy capacity of the Assembling Machine in FE +# [Default value]: 8192 +# [Validation]: Value >= 1 +block.assembling_machine.capacity = 8192 + +# The energy transfer rate of the Assembling Machine in FE per tick +# [Default value]: 512 +# [Validation]: Value >= 1 +block.assembling_machine.transfer_rate = 512 + +# The energy consumption of the Assembling Machine if active in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.assembling_machine.energy_consumption_per_tick = 256 + +# The time a recipe of the Assembling Machine requires in ticks +# [Default value]: 200 +# [Validation]: Value >= 1 +block.assembling_machine.recipe_duration = 200 + +# The energy capacity of the Induction Smelter in FE +# [Default value]: 8192 +# [Validation]: Value >= 1 +block.induction_smelter.capacity = 8192 + +# The energy transfer rate of the Induction Smelter in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.induction_smelter.transfer_rate = 256 + +# The energy consumption of the Induction Smelter if active in FE per tick +# [Default value]: 64 +# [Validation]: Value >= 1 +block.induction_smelter.energy_consumption_per_tick = 64 + +# The multiplier by which the time a recipe of the Induction Smelter requires is multiplied by. +# => If set to 2 the Induction Smelter will be as fast as the Alloy Furnace. +# +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.induction_smelter.recipe_duration_multiplier = 1.000000 + +# The energy transfer rate of the Powered Lamp in FE per tick +# [Default value]: 1 +# [Validation]: Value >= 1 +block.powered_lamp.transfer_rate = 1 + +# The energy capacity of the Powered Furnace in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.powered_furnace.capacity = 2048 + +# The energy transfer rate of the Powered Furnace in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.powered_furnace.transfer_rate = 128 + +# The energy consumption of the Powered Furnace if active in FE per tick +# [Default value]: 2 +# [Validation]: Value >= 1 +block.powered_furnace.energy_consumption_per_tick = 2 + +# The multiplier by which the time a recipe of the Powered Furnace requires is multiplied by. +# => If set to 2 the Powered Furnace will be as fast as the normal Furnace. +# +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.powered_furnace.recipe_duration_multiplier = 1.000000 + +# The recipe blacklist for the Powered Furnace. +# The blacklist is a list of recipe ids which can not be crafted in the Powered Furnace +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.powered_furnace.recipe_blacklist = [] + +# The energy capacity of the Advanced Powered Furnace in FE +# [Default value]: 16384 +# [Validation]: Value >= 1 +block.advanced_powered_furnace.capacity = 16384 + +# The energy transfer rate of the Advanced Powered Furnace in FE per tick +# [Default value]: 1024 +# [Validation]: Value >= 1 +block.advanced_powered_furnace.transfer_rate = 1024 + +# The energy consumption per input of the Advanced Powered Furnace in FE per tick. +# [Default value]: 256 +# [Validation]: Value >= 1 +block.advanced_powered_furnace.energy_consumption_per_input_per_tick = 256 + +# The multiplier by which the time a recipe of the Advanced Powered Furnace requires is multiplied by. +# => If set to 6 the Advanced Powered Furnace will be as fast as the normal Furnace. +# +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.advanced_powered_furnace.recipe_duration_multiplier = 1.000000 + +# The recipe blacklist for the Advanced Powered Furnace. +# The blacklist is a list of recipe ids which can not be crafted in the Advanced Powered Furnace +# +# [Default value]: [] +# [Validation]: Syntax (whitespaces are ignored): [namespace1:path1, namespace2:path2, ...] +block.advanced_powered_furnace.recipe_blacklist = [] + +# The energy capacity of the Plant Growth Chamber in FE +# [Default value]: 4096 +# [Validation]: Value >= 1 +block.plant_growth_chamber.capacity = 4096 + +# The energy transfer rate of the Plant Growth Chamber in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.plant_growth_chamber.transfer_rate = 256 + +# The energy consumption of the Plant Growth Chamber if active in FE per tick +# [Default value]: 32 +# [Validation]: Value >= 1 +block.plant_growth_chamber.energy_consumption_per_tick = 32 + +# The multiplier by which the time a recipe of the Plant Growth Chamber requires is multiplied by +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.plant_growth_chamber.recipe_duration_multiplier = 1.000000 + +# The energy capacity of the Stone Liquefier in FE +# [Default value]: 4096 +# [Validation]: Value >= 1 +block.stone_liquefier.capacity = 4096 + +# The energy transfer rate of the Stone Liquefier in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.stone_liquefier.transfer_rate = 256 + +# The energy consumption of the Stone Liquefier if active in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.stone_liquefier.energy_consumption_per_tick = 128 + +# The fluid tank capacity of the Stone Liquefier in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.stone_liquefier.fluid_tank_capacity = 8 + +# The time a recipe of the Stone Liquefier requires in ticks +# [Default value]: 50 +# [Validation]: Value >= 1 +block.stone_liquefier.recipe_duration = 50 + +# The energy capacity of the Stone Solidifier in FE +# [Default value]: 4096 +# [Validation]: Value >= 1 +block.stone_solidifier.capacity = 4096 + +# The energy transfer rate of the Stone Solidifier in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.stone_solidifier.transfer_rate = 256 + +# The energy consumption of the Stone Solidifier if active in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.stone_solidifier.energy_consumption_per_tick = 128 + +# The fluid tank capacity of the Stone Solidifier in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.stone_solidifier.fluid_tank_capacity = 8 + +# The time a recipe of the Stone Solidifier requires in ticks +# [Default value]: 25 +# [Validation]: Value >= 1 +block.stone_solidifier.recipe_duration = 25 + +# The energy capacity of the Filtration Plant in FE +# [Default value]: 4096 +# [Validation]: Value >= 1 +block.filtration_plant.capacity = 4096 + +# The energy transfer rate of the Filtration Plant in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.filtration_plant.transfer_rate = 256 + +# The energy consumption of the Filtration Plant if active in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.filtration_plant.energy_consumption_per_tick = 128 + +# The fluid tank capacity of the Filtration Plant in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.filtration_plant.fluid_tank_capacity = 8 + +# The time a recipe of the Filtration Plant requires in ticks +# [Default value]: 1000 +# [Validation]: Value >= 1 +block.filtration_plant.recipe_duration = 1000 + +# The amount of Dirty Water in mB (milli Buckets) which will be converted to Water per completed recipe in the Filtration Plant. +# [Default value]: 100 +# [Validation]: Value >= 1 +block.filtration_plant.water_usage_per_recipe = 100 + +# The energy capacity of the Fluid Transposer in FE +# [Default value]: 4096 +# [Validation]: Value >= 1 +block.fluid_transposer.capacity = 4096 + +# The energy transfer rate of the Fluid Transposer in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.fluid_transposer.transfer_rate = 256 + +# The energy consumption of the Fluid Transposer if active in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.fluid_transposer.energy_consumption_per_tick = 128 + +# The fluid tank capacity of the Fluid Transposer in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.fluid_transposer.fluid_tank_capacity = 8 + +# The time a recipe of the Fluid Transposer requires in ticks +# [Default value]: 200 +# [Validation]: Value >= 1 +block.fluid_transposer.recipe_duration = 200 + +# The energy capacity of the Fluid Filler in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.fluid_filler.capacity = 2048 + +# The energy transfer rate of the Fluid Filler in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.fluid_filler.transfer_rate = 128 + +# The energy consumption of the Fluid Filler if active in FE per tick +# [Default value]: 64 +# [Validation]: Value >= 1 +block.fluid_filler.energy_consumption_per_tick = 64 + +# The fluid tank capacity of the Fluid Filler in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.fluid_filler.fluid_tank_capacity = 8 + +# The transfer rate an item can be filled up at by the Fluid Filler in mB (milli Buckets) +# [Default value]: 100 +# [Validation]: Value >= 1 +block.fluid_filler.fluid_item_transfer_rate = 100 + +# The energy capacity of the Fluid Drainer in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.fluid_drainer.capacity = 2048 + +# The energy transfer rate of the Fluid Drainer in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.fluid_drainer.transfer_rate = 128 + +# The energy consumption of the Fluid Drainer if active in FE per tick +# [Default value]: 64 +# [Validation]: Value >= 1 +block.fluid_drainer.energy_consumption_per_tick = 64 + +# The fluid tank capacity of the Fluid Drainer in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.fluid_drainer.fluid_tank_capacity = 8 + +# The transfer rate an item can be drained at by the Fluid Drainer in mB (milli Buckets) +# [Default value]: 100 +# [Validation]: Value >= 1 +block.fluid_drainer.fluid_item_transfer_rate = 100 + +# The energy capacity of the Fluid Pump in FE +# [Default value]: 2048 +# [Validation]: Value >= 1 +block.fluid_pump.capacity = 2048 + +# The energy transfer rate of the Fluid Pump in FE per tick +# [Default value]: 128 +# [Validation]: Value >= 1 +block.fluid_pump.transfer_rate = 128 + +# The energy consumption of the Fluid Pump if active in FE per tick +# [Default value]: 32 +# [Validation]: Value >= 1 +block.fluid_pump.energy_consumption_per_tick = 32 + +# The fluid tank capacity of the Fluid Pump in buckets (= 1000 mB) +# [Default value]: 16 +# [Validation]: Value >= 1 +block.fluid_pump.fluid_tank_capacity = 16 + +# The time the Fluid Pump requires to check the next block in ticks +# [Default value]: 20 +# [Validation]: Value >= 1 +block.fluid_pump.next_block_cooldown = 20 + +# The time the Fluid Pump requires to extract fluids from a block in ticks +# [Default value]: 100 +# [Validation]: Value >= 1 +block.fluid_pump.extraction_duration = 100 + +# The horizontal extraction range of the Fluid Pump in blocks +# [Default value]: 5 +# [Validation]: Value >= 1 +block.fluid_pump.extraction_range = 5 + +# The vertical extraction depth of the Fluid Pump in blocks +# [Default value]: 64 +# [Validation]: Value >= 1 +block.fluid_pump.extraction_depth = 64 + +# The energy capacity of the Advanced Fluid Pump in FE +# [Default value]: 16384 +# [Validation]: Value >= 1 +block.advanced_fluid_pump.capacity = 16384 + +# The energy transfer rate of the Advanced Fluid Pump in FE per tick +# [Default value]: 1024 +# [Validation]: Value >= 1 +block.advanced_fluid_pump.transfer_rate = 1024 + +# The energy consumption of the Advanced Fluid Pump if active in FE per tick +# [Default value]: 256 +# [Validation]: Value >= 1 +block.advanced_fluid_pump.energy_consumption_per_tick = 256 + +# The fluid tank capacity of the Advanced Fluid Pump in buckets (= 1000 mB) +# [Default value]: 128 +# [Validation]: Value >= 1 +block.advanced_fluid_pump.fluid_tank_capacity = 128 + +# The time the Advanced Fluid Pump requires to check the next block in ticks +# [Default value]: 4 +# [Validation]: Value >= 1 +block.advanced_fluid_pump.next_block_cooldown = 4 + +# The time the Advanced Fluid Pump requires to extract fluids from a block in ticks +# [Default value]: 20 +# [Validation]: Value >= 1 +block.advanced_fluid_pump.extraction_duration = 20 + +# The horizontal extraction range of the Advanced Fluid Pump in blocks +# [Default value]: 10 +# [Validation]: Value >= 1 +block.advanced_fluid_pump.extraction_range = 10 + +# The vertical extraction depth of the Advanced Fluid Pump in blocks +# [Default value]: 128 +# [Validation]: Value >= 1 +block.advanced_fluid_pump.extraction_depth = 128 + +# The fluid tank capacity of the Drain in buckets (= 1000 mB) +# [Default value]: 2 +# [Validation]: Value >= 1 +block.drain.fluid_tank_capacity = 2 + +# The amount of ticks the Drain requires to drain 1000 mB (milli Buckets) from the fluid source block above. +# [Default value]: 20 +# [Validation]: Value >= 1 +block.drain.drain_duration = 20 + +# The transfer rate per tank and face of an Iron Fluid Pipe face in the extraction state in mB (milli Buckets) +# [Default value]: 100 +# [Validation]: Value >= 1 +block.iron_fluid_pipe.fluid_transfer_rate = 100 + +# The transfer rate per tank and face of a Golden Fluid Pipe face in the extraction state in mB (milli Buckets) +# [Default value]: 1000 +# [Validation]: Value >= 1 +block.golden_fluid_pipe.fluid_transfer_rate = 1000 + +# The fluid tank capacity of the Fluid Tank (Small) in buckets (= 1000 mB) +# [Default value]: 8 +# [Validation]: Value >= 1 +block.fluid_tank_small.fluid_tank_capacity = 8 + +# The fluid tank capacity of the Fluid Tank (Medium) in buckets (= 1000 mB) +# [Default value]: 32 +# [Validation]: Value >= 1 +block.fluid_tank_medium.fluid_tank_capacity = 32 + +# The fluid tank capacity of the Fluid Tank (Large) in buckets (= 1000 mB) +# [Default value]: 128 +# [Validation]: Value >= 1 +block.fluid_tank_large.fluid_tank_capacity = 128 + +# The item silo capacity of the Item Silo (Tiny) in stacks (= 64 for most items) +# [Default value]: 50 +# [Validation]: Value >= 1 +block.item_silo_tiny.item_silo_capacity = 50 + +# The item silo capacity of the Item Silo (Small) in stacks (= 64 for most items) +# [Default value]: 100 +# [Validation]: Value >= 1 +block.item_silo_small.item_silo_capacity = 100 + +# The item silo capacity of the Item Silo (Medium) in stacks (= 64 for most items) +# [Default value]: 250 +# [Validation]: Value >= 1 +block.item_silo_medium.item_silo_capacity = 250 + +# The item silo capacity of the Item Silo (Large) in stacks (= 64 for most items) +# [Default value]: 500 +# [Validation]: Value >= 1 +block.item_silo_large.item_silo_capacity = 500 + +# The item silo capacity of the Item Silo (Giant) in stacks (= 64 for most items) +# [Default value]: 1000 +# [Validation]: Value >= 1 +block.item_silo_giant.item_silo_capacity = 1000 + +# The energy capacity of the Charger in FE +# [Default value]: 8192 +# [Validation]: Value >= 1 +block.charger.capacity = 8192 + +# The energy transfer rate of the Charger in FE per tick +# [Default value]: 512 +# [Validation]: Value >= 1 +block.charger.transfer_rate = 512 + +# The multiplier by which the energy consumption of charger recipes in the Charger is multiplied by. +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.charger.charger_recipe_energy_consumption_multiplier = 1.000000 + +# The energy capacity per slot of the Advanced Charger in FE. +# => The energy capacity of the block is three times this value. +# +# [Default value]: 65536 +# [Validation]: Value >= 1 +block.advanced_charger.capacity_per_slot = 65536 + +# The energy transfer rate per slot of the Advanced Charger in FE per tick. +# => The energy transfer rate of the block is three times this value. +# +# [Default value]: 8192 +# [Validation]: Value >= 1 +block.advanced_charger.transfer_rate_per_slot = 8192 + +# The multiplier by which the energy consumption of charger recipes in the Charger is multiplied by. +# [Default value]: 1.000000 +# [Validation]: Value > 0.0 +block.advanced_charger.charger_recipe_energy_consumption_multiplier = 1.000000 + +# The energy capacity of the Uncharger in FE +# [Default value]: 8192 +# [Validation]: Value >= 1 +block.uncharger.capacity = 8192 + +# The energy transfer rate of the Uncharger in FE per tick +# [Default value]: 512 +# [Validation]: Value >= 1 +block.uncharger.transfer_rate = 512 + +# The energy capacity per slot of the Advanced Uncharger in FE. +# => The energy capacity of the block is three times this value. +# +# [Default value]: 65536 +# [Validation]: Value >= 1 +block.advanced_uncharger.capacity_per_slot = 65536 + +# The energy transfer rate per slot of the Advanced Uncharger in FE per tick. +# => The energy transfer rate of the block is three times this value. +# +# [Default value]: 8192 +# [Validation]: Value >= 1 +block.advanced_uncharger.transfer_rate_per_slot = 8192 + +# The time required for the Basic Item Conveyor Belt to transport an item one step in ticks per step +# [Default value]: 10 +# [Validation]: Value >= 1 +block.item_conveyor_belt.ticks_per_step = 10 + +# The time required for the Fast Item Conveyor Belt to transport an item one step in ticks per step +# [Default value]: 6 +# [Validation]: Value >= 1 +block.fast_item_conveyor_belt.ticks_per_step = 6 + +# The time required for the Express Item Conveyor Belt to transport an item one step in ticks per step +# [Default value]: 2 +# [Validation]: Value >= 1 +block.express_item_conveyor_belt.ticks_per_step = 2 + +# The time required for the Basic Item Conveyor Belt Loader to extract a single item in ticks +# [Default value]: 10 +# [Validation]: Value >= 1 +block.item_conveyor_belt_loader.ticks_per_item = 10 + +# The time required for the Fast Item Conveyor Belt Loader to extract a single item in ticks +# [Default value]: 6 +# [Validation]: Value >= 1 +block.fast_item_conveyor_belt_loader.ticks_per_item = 6 + +# The time required for the Express Item Conveyor Belt Loader to extract a single item in ticks +# [Default value]: 2 +# [Validation]: Value >= 1 +block.express_item_conveyor_belt_loader.ticks_per_item = 2 + +# The time required for the Basic Item Conveyor Belt Sorter to process a single item in ticks +# [Default value]: 10 +# [Validation]: Value >= 1 +block.item_conveyor_belt_sorter.ticks_per_item = 10 + +# The time required for the Fast Item Conveyor Belt Sorter to process a single item in ticks +# [Default value]: 6 +# [Validation]: Value >= 1 +block.fast_item_conveyor_belt_sorter.ticks_per_item = 6 + +# The time required for the Express Item Conveyor Belt Sorter to process a single item in ticks +# [Default value]: 2 +# [Validation]: Value >= 1 +block.express_item_conveyor_belt_sorter.ticks_per_item = 2 + +# The time required for the Basic Item Conveyor Belt Switch to process a single item in ticks +# [Default value]: 10 +# [Validation]: Value >= 1 +block.item_conveyor_belt_switch.ticks_per_item = 10 + +# The time required for the Fast Item Conveyor Belt Switch to process a single item in ticks +# [Default value]: 6 +# [Validation]: Value >= 1 +block.fast_item_conveyor_belt_switch.ticks_per_item = 6 + +# The time required for the Express Item Conveyor Belt Switch to process a single item in ticks +# [Default value]: 2 +# [Validation]: Value >= 1 +block.express_item_conveyor_belt_switch.ticks_per_item = 2 + +# The time required for the Basic Item Conveyor Belt Splitter to process a single item in ticks +# [Default value]: 10 +# [Validation]: Value >= 1 +block.item_conveyor_belt_splitter.ticks_per_item = 10 + +# The time required for the Fast Item Conveyor Belt Splitter to process a single item in ticks +# [Default value]: 6 +# [Validation]: Value >= 1 +block.fast_item_conveyor_belt_splitter.ticks_per_item = 6 + +# The time required for the Express Item Conveyor Belt Splitter to process a single item in ticks +# [Default value]: 2 +# [Validation]: Value >= 1 +block.express_item_conveyor_belt_splitter.ticks_per_item = 2 + +# The time required for the Basic Item Conveyor Belt Merger to process a single item in ticks +# [Default value]: 10 +# [Validation]: Value >= 1 +block.item_conveyor_belt_merger.ticks_per_item = 10 + +# The time required for the Fast Item Conveyor Belt Merger to process a single item in ticks +# [Default value]: 6 +# [Validation]: Value >= 1 +block.fast_item_conveyor_belt_merger.ticks_per_item = 6 + +# The time required for the Express Item Conveyor Belt Merger to process a single item in ticks +# [Default value]: 2 +# [Validation]: Value >= 1 +block.express_item_conveyor_belt_merger.ticks_per_item = 2 + +# The energy capacity of the Battery Box Minecart in FE +# [Default value]: 65536 +# [Validation]: Value >= 1 +entity.battery_box_minecart.capacity = 65536 + +# The energy transfer rate of the Battery Box Minecart in FE per tick +# [Default value]: 512 +# [Validation]: Value >= 1 +entity.battery_box_minecart.transfer_rate = 512 + +# The energy capacity of the Advanced Battery Box Minecart in FE +# [Default value]: 8388608 +# [Validation]: Value >= 1 +entity.advanced_battery_box_minecart.capacity = 8388608 + +# The energy transfer rate of the Advanced Battery Box Minecart in FE per tick +# [Default value]: 65536 +# [Validation]: Value >= 1 +entity.advanced_battery_box_minecart.transfer_rate = 65536 + +# Determines how frequent the Electrician Building 1 will be placed in villages. +# => If set to 0 the Electrician Building 1 will never be placed. +# +# [Default value]: 5 +# [Validation]: Value >= 0 +# [Validation]: Value <= 100 +world.village.electrician_building_1.placement_weight = 5 + +# Sets the timeout a machine needs to be off for to change the block state to off in ticks (Prevent light flickering) +# [Default value]: 20 +# [Validation]: Value >= 5 +# [Validation]: Value <= 200 +off_state_timeout = 20 diff --git a/minecraft/config/energizedpower/server.conf b/minecraft/config/energizedpower/server.conf new file mode 100644 index 0000000..8971743 --- /dev/null +++ b/minecraft/config/energizedpower/server.conf @@ -0,0 +1 @@ +# === Energized Power Server Config === diff --git a/minecraft/config/enigmaticaddons-client.omniconf b/minecraft/config/enigmaticaddons-client.omniconf new file mode 100644 index 0000000..f2ca335 --- /dev/null +++ b/minecraft/config/enigmaticaddons-client.omniconf @@ -0,0 +1,19 @@ +# Configuration File + +@CONFIG_VERSION: 1.2.5.2 + +########################################################################################################## +# Generic Config +#--------------------------------------------------------------------------------------------------------# +# Some more different stuff +########################################################################################################## + +"Generic Config" { + # If false, disables the particle effect for fully frozen entities. [default: true] + B:CustomFrostParticle=true + + # If false, disables the icon display of the Etherium Shield. [default: true] + B:EtheriumShieldIconDisplay=true +} + + diff --git a/minecraft/config/enigmaticaddons-common.omniconf b/minecraft/config/enigmaticaddons-common.omniconf new file mode 100644 index 0000000..74a229e --- /dev/null +++ b/minecraft/config/enigmaticaddons-common.omniconf @@ -0,0 +1,671 @@ +# Configuration File + +@CONFIG_VERSION: 1.2.5.2 + +########################################################################################################## +# Accessibility Options +#--------------------------------------------------------------------------------------------------------# +# You may disable certain items or features from being obtainable/usable here. +# Check more details in Enigmatic Legacy's Config Files. +########################################################################################################## + +"Accessibility Options" { + # Whether or not Antique Book Bag should be enabled. [default: true, synchronized: yes] + B:AntiqueBookBagEnabled=true + + # Whether or not Astral Spear should be enabled. [default: true, synchronized: yes] + B:AstralSpearEnabled=true + + # Whether or not Charm of Hell Blade should be enabled. [default: true, synchronized: yes] + B:CharmofHellBladeEnabled=true + + # Whether or not Charm of Scorched Sun should be enabled. [default: true, synchronized: yes] + B:CharmofScorchedSunEnabled=true + + # Whether or not Common Potions should be enabled. [default: true, synchronized: yes] + B:CommonPotionsEnabled=true + + # Whether or not Curse of Redemption Enchantment should be enabled. [default: true, synchronized: yes] + B:CurseofRedemptionEnchantmentEnabled=true + + # Whether or not Disaster Broadsword should be enabled. [default: true, synchronized: yes] + B:DisasterBroadswordEnabled=true + + # Whether or not Dragon Breath Bow should be enabled. [default: true, synchronized: yes] + B:DragonBreathBowEnabled=true + + # Whether or not Emblem of Adventurer should be enabled. [default: true, synchronized: yes] + B:EmblemofAdventurerEnabled=true + + # Whether or not Enigmatic Pearl should be enabled. [default: true, synchronized: yes] + B:EnigmaticPearlEnabled=true + + # Whether or not Etherium Core should be enabled. [default: true, synchronized: yes] + B:EtheriumCoreEnabled=true + + # Whether or not False Justice should be enabled. [default: true, synchronized: yes] + B:FalseJusticeEnabled=true + + # Whether or not Forgers Gem should be enabled. [default: true, synchronized: yes] + B:ForgersGemEnabled=true + + # Whether or not Forgotten Ice Crystal should be enabled. [default: true, synchronized: yes] + B:ForgottenIceCrystalEnabled=true + + # Whether or not Fragment of the Earth should be enabled. [default: true, synchronized: yes] + B:FragmentoftheEarthEnabled=true + + # Whether or not Frost Aspect Enchantment should be enabled. [default: true, synchronized: yes] + B:FrostAspectEnchantmentEnabled=true + + # Whether or not Frost Protection Enchantment should be enabled. [default: true, synchronized: yes] + B:FrostProtectionEnchantmentEnabled=true + + # Whether or not Frost Shattering Enchantment should be enabled. [default: true, synchronized: yes] + B:FrostShatteringEnchantmentEnabled=true + + # Whether or not Holy Stone should be enabled. [default: true, synchronized: yes] + B:HolyStoneEnabled=true + + # Whether or not Ichor Droplet should be enabled. [default: true, synchronized: yes] + B:IchorDropletEnabled=true + + # Whether or not Ichor Spear should be enabled. [default: true, synchronized: yes] + B:IchorSpearEnabled=true + + # Whether or not Ichoroot should be enabled. [default: true, synchronized: yes] + B:IchorootEnabled=true + + # Whether or not Insignia of Despair should be enabled. [default: true, synchronized: yes] + B:InsigniaofDespairEnabled=true + + # Whether or not Lost Engine should be enabled. [default: true, synchronized: yes] + B:LostEngineEnabled=true + + # Whether or not Magic Quartz Flower should be enabled. [default: true, synchronized: yes] + B:MagicQuartzFlowerEnabled=true + + # Whether or not Magic Quartz Ring should be enabled. [default: true, synchronized: yes] + B:MagicQuartzRingEnabled=true + + # Whether or not Magic Quartz Scepter should be enabled. [default: true, synchronized: yes] + B:MagicQuartzScepterEnabled=true + + # Whether or not Ode to Living Beings should be enabled. [default: true, synchronized: yes] + B:OdetoLivingBeingsEnabled=true + + # Whether or not Pact of Dark Night should be enabled. [default: true, synchronized: yes] + B:PactofDarkNightEnabled=true + + # Whether or not Potion of Cosmic should be enabled. [default: true, synchronized: yes] + B:PotionofCosmicEnabled=true + + # Whether or not Primeval Cube should be enabled. [default: true, synchronized: yes] + B:PrimevalCubeEnabled=true + + # Whether or not Promise of the Earth should be enabled. [default: true, synchronized: yes] + B:PromiseoftheEarthEnabled=true + + # Whether or not Pure Heart should be enabled. [default: true, synchronized: yes] + B:PureHeartEnabled=true + + # Whether or not Revival Leaf should be enabled. [default: true, synchronized: yes] + B:RevivalLeafEnabled=true + + # Whether or not Ring of Redemption should be enabled. [default: true, synchronized: yes] + B:RingofRedemptionEnabled=true + + # Whether or not Ring of Ultimate Luxury should be enabled. [default: true, synchronized: yes] + B:RingofUltimateLuxuryEnabled=true + + # Whether or not Sanguinary Hunting Handbook should be enabled. [default: true, synchronized: yes] + B:SanguinaryHuntingHandbookEnabled=true + + # Whether or not Scepter of Extradimensional should be enabled. [default: true, synchronized: yes] + B:ScepterofExtradimensionalEnabled=true + + # Whether or not Scroll of Ignorance Curse should be enabled. [default: true, synchronized: yes] + B:ScrollofIgnoranceCurseEnabled=true + + # Whether or not Scroll of Thunder Embrace should be enabled. [default: true, synchronized: yes] + B:ScrollofThunderEmbraceEnabled=true + + # Whether or not Soul Lantern of Illusion should be enabled. [default: true, synchronized: yes] + B:SoulLanternofIllusionEnabled=true + + # Whether or not The Arrogance of Chaos should be enabled. [default: true, synchronized: yes] + B:TheArroganceofChaosEnabled=true + + # Whether or not The Bless should be enabled. [default: true, synchronized: yes] + B:TheBlessEnabled=true + + # Whether or not The Curse Carver should be enabled. [default: true, synchronized: yes] + B:TheCurseCarverEnabled=true + + # Whether or not Tome of Divination should be enabled. [default: true, synchronized: yes] + B:TomeofDivinationEnabled=true + + # Whether or not Tome of Void should be enabled. [default: true, synchronized: yes] + B:TomeofVoidEnabled=true + + # Whether or not Totem of Malice should be enabled. [default: true, synchronized: yes] + B:TotemofMaliceEnabled=true + + # Whether or not Ultimate Potions should be enabled. [default: true, synchronized: yes] + B:UltimatePotionsEnabled=true +} + + +########################################################################################################## +# Balance Options +#--------------------------------------------------------------------------------------------------------# +# Various options that mostly affect individual items +########################################################################################################## + +"Balance Options" { + # List of items that can be stored in the Antique Book Bag. Examples: enigmaticaddons:false_justice. Changing this option required game restart to take effect. [default: , synchronized: no] + S:AntiqueBookBagList < + > + + # List of Attributes that will never appear in Magic Quartz Flower. Changing this option required game restart to take effect. [default: [caelus:fall_flying], [goety_revelation:resistance], synchronized: no] + S:ArtificialFlowerAttributeBlackList < + caelus:fall_flying + goety_revelation:resistance + > + + # List of Effects that will never appear in Magic Quartz Flower. Changing this option required game restart to take effect. [default: [alexscaves:darkness_incarnate], [alexsmobs:oiled], [aquamirae:crystallization], [born_in_chaos_v1:light_rampage], [born_in_chaos_v1:medium_rampage], [born_in_chaos_v1:strong_rampage], [born_in_chaos_v1:furious_rampage], [born_in_chaos_v1:rampant_rampage], [cataclysm:ghost_form], [cataclysm:ghost_sickness], [enigmaticdelicacy:astral_drunkenness], [enigmaticdelicacy:abyss_corruption], [enigmaticdelicacy:fading], [enigmaticdelicacy:health_curse], [enigmaticlegacy:blazing_strength], [goety:shadow_walk], [irons_spellbooks:abyssal_shroud], [irons_spellbooks:evasion], [irons_spellbooks:heartstop], [irons_spellbooks:true_invisibility], [ltc2:undying_benediction], [more_potion_effects:extension], [more_potion_effects:immortal], [more_potion_effects:static_life], [supernatural:supernatural], [unusual_delight:crystal_aspect], [unusual_delight:ember_aspect], [unusual_delight:vitality], synchronized: no] + S:ArtificialFlowerEffectBlackList < + alexscaves:darkness_incarnate + alexsmobs:oiled + aquamirae:crystallization + born_in_chaos_v1:light_rampage + born_in_chaos_v1:medium_rampage + born_in_chaos_v1:strong_rampage + born_in_chaos_v1:furious_rampage + born_in_chaos_v1:rampant_rampage + cataclysm:ghost_form + cataclysm:ghost_sickness + enigmaticdelicacy:astral_drunkenness + enigmaticdelicacy:abyss_corruption + enigmaticdelicacy:fading + enigmaticdelicacy:health_curse + enigmaticlegacy:blazing_strength + goety:shadow_walk + irons_spellbooks:abyssal_shroud + irons_spellbooks:evasion + irons_spellbooks:heartstop + irons_spellbooks:true_invisibility + ltc2:undying_benediction + more_potion_effects:extension + more_potion_effects:immortal + more_potion_effects:static_life + supernatural:supernatural + unusual_delight:crystal_aspect + unusual_delight:ember_aspect + unusual_delight:vitality + > + + # The max modifier of the Magic Quartz Flower. Measures in percentage. [range: 0 ~ 100, default: 16, synchronized: yes] + I:ArtificialFlowerRandomAttributeMaxModifier=16 + + # The modifier of the instantaneous effect provided by Magic Quartz Flower. Measures in percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:ArtificialFlowerRandomInstantaneousEffectModifier=80 + + # The damage modifier when spear is powered. [range: 0.0 ~ 100.0, default: 2.5, synchronized: yes] + D:AstralSpearPoweredModifier=2.5 + + # How much less effective armor will be for those who bear the charm. Measured as percentage. [range: 50 ~ 100, default: 100, synchronized: yes] + I:CharmofHellBladeArmorDebuff=100 + + # The damage boost for who bear the charm. Measured as percentage. [range: 10 ~ 200, default: 100, synchronized: yes] + I:CharmofHellBladeDamageModifier=100 + + # The Cooldown to unequip this Charm. Defined as tick. [range: 0 ~ 32768, default: 1200, synchronized: yes] + I:CharmofHellBladeEquipCooldown=1200 + + # The Multiplier of healing when active the skill of Hell Blade Charm. [range: 0.0 ~ 100.0, default: 0.8, synchronized: yes] + D:CharmofHellBladeHealMultiplier=0.8 + + # The kill threshold of Hell Blade Charm to active the skill with Ring of Seven Curses. [range: 0 ~ 100, default: 50, synchronized: yes] + I:CharmofHellBladeKillCursedThreshold=50 + + # The kill threshold of Hell Blade Charm to active the skill. [range: 0 ~ 100, default: 75, synchronized: yes] + I:CharmofHellBladeKillThreshold=75 + + # The heal amount per second when you're in lava with this Charm. [range: 0.0 ~ 100.0, default: 2.0, synchronized: yes] + D:CharmofScorchedSunLavaHealAmount=2.0 + + # The lifesteal modifier provided by this charm when you attack a target on fire. Measured in percentage. [range: 0 ~ 100, default: 20, synchronized: yes] + I:CharmofScorchedSunLifestealModifier=20 + + # The probability to resist damage when you are attacked with this charm. Measured in percentage. [range: 0 ~ 100, default: 10, synchronized: yes] + I:CharmofScorchedSunResistanceProbability=10 + + # The damage modifier per every this curse. [range: 0 ~ 40, default: 4, synchronized: yes] + I:CurseofRedemptionEnchantmentResistanceModifier=4 + + # Attack speed increase provided by the Curse of Violence for absorbed curse. Measured as percentage. [range: 1 ~ 10, default: 4, synchronized: yes] + I:CurseofViolenceAttackSpeedBoost=4 + + # The base damage boost for curse absorbed. Measured as percentage. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:CurseofViolenceBaseCurseModifier=10 + + # The damage boost per every curse absorbed. Measured as percentage. [range: 0 ~ 100, default: 5, synchronized: yes] + I:CurseofViolenceBoostPerCurseModifier=5 + + # Entity reach range increase provided by the Curse of Violence for absorbed curse. Measured as percentage. [range: 1 ~ 10, default: 3, synchronized: yes] + I:CurseofViolenceEntityReachBoost=3 + + # Attack Damage Modifier when attack during the invulnerable time provided by the Curse of Violence. Measured as percentage. [range: 100 ~ 32768, default: 200, synchronized: yes] + I:CurseofViolenceInvulnerableAttackModifier=200 + + # The heal multiplier when attack during the invulnerable time provided by the Curse of Violence. Measured as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:CurseofViolenceInvulnerableHealMultiplier=40 + + # Knockback Resistance increase provided by the Curse of Violence for absorbed curse. [range: 0.0 ~ 32768.0, default: 0.025, synchronized: yes] + D:CurseofViolenceKnockbackResistanceBoost=0.025 + + # The max energy count of the Curse of Violence. [range: 100 ~ 32768, default: 200, synchronized: yes] + I:CurseofViolenceMaxDurability=200 + + # The damage resistance when charging with the Decision of Annihilation. Measured as percentage. [range: 0 ~ 90, default: 80, synchronized: yes] + I:DecisionofAnnihilationChargingDamageResistance=80 + + # List of items that will be the crafting ingredients of the Decision of Annihilation. Examples: enigmaticlegacy:etherium_ingot. Changing this option required game restart to take effect. [default: [enigmaticlegacy:cosmic_heart], [enigmaticlegacy:evil_ingot], [enigmaticlegacy:twisted_heart], synchronized: no] + S:DecisionofAnnihilationCraftingIngredients < + enigmaticlegacy:cosmic_heart + enigmaticlegacy:evil_ingot + enigmaticlegacy:twisted_heart + > + + # The damage modifier per every level of damage enchantments. Measured as percentage. [range: 10 ~ 32768, default: 15, synchronized: yes] + I:DecisionofAnnihilationDamageEnchantmentPerModifier=15 + + # The damage multiplier per every level of energy. Measured as percentage. [range: 10 ~ 32768, default: 20, synchronized: yes] + I:DecisionofAnnihilationEnergyMultiplier=20 + + # The damage modifier when offhand is empty. Measured as percentage. [range: 100 ~ 32768, default: 100, synchronized: yes] + I:DecisionofAnnihilationOnlyMainHandModifier=100 + + # The damage modifier when you has the Bad Omen effect. [range: 0.0 ~ 100.0, default: 0.15, synchronized: yes] + D:DisasterBroadswordBadOmenDamageBoost=0.15 + + # The damage modifier after you parried with Disaster Broadsword successfully. [range: 0.0 ~ 100.0, default: 0.5, synchronized: yes] + D:DisasterBroadswordCounterattackBoost=0.5 + + # The crit damage modifier after you parried with Disaster Broadsword successfully. [range: 0.0 ~ 100.0, default: 1.5, synchronized: yes] + D:DisasterBroadswordCritBoost=1.5 + + # The damage of range attack after you parried the projectiles with Disaster Broadsword successfully. [range: 0.0 ~ 100.0, default: 10.0, synchronized: yes] + D:DisasterBroadswordRangeAttackDamage=10.0 + + # The max amount of potion effect you can apply on the arrow. [range: 1 ~ 10, default: 4, synchronized: yes] + I:DragonBreathBowMaxPotionAmount=4 + + # The Damage Resistance to your own dragon breath damage. Defined as percentage. [range: 0 ~ 100, default: 60, synchronized: yes] + I:DragonBreathBowOwnerResistance=60 + + # The attack damage boost of Emblem of Adventurer [range: 0.0 ~ 32768.0, default: 2.0, synchronized: yes] + D:EmblemofAdventurerAttackDamageModifier=2.0 + + # The attack speed multiplier of Emblem of Adventurer. Measures in percentage. [range: 0 ~ 100, default: 10, synchronized: yes] + I:EmblemofAdventurerAttackSpeedMultiplier=10 + + # Whether to enable Shift effect. [default: true, synchronized: yes] + B:EmblemofAdventurerShiftEnable=true + + # Default amount of armor points provided by Etherium Core. [range: 0.0 ~ 256.0, default: 12.0, synchronized: yes] + D:EtheriumCoreArmor=12.0 + + # The multiplier of armor points of Etherium Core. [range: 0 ~ 100, default: 20, synchronized: yes] + I:EtheriumCoreArmorMultiplier=20 + + # The amount of armor toughness provided by Etherium Core when it's bearer has no armor equipped. [range: 0.0 ~ 256.0, default: 10.0, synchronized: yes] + D:EtheriumCoreArmorToughness=10.0 + + # The multiplier of armor toughness of Etherium Core. [range: 0 ~ 100, default: 40, synchronized: yes] + I:EtheriumCoreArmorToughnessMultiplier=40 + + # Active ability cooldown for Etherium Core. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 800, synchronized: yes] + I:EtheriumCoreCooldown=800 + + # The damage amplification conversion ratio of Etherium Core. Defined as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:EtheriumCoreDamageConversion=40 + + # The max damage amplification of Etherium Core. [range: 0.0 ~ 100.0, default: 25.0, synchronized: yes] + D:EtheriumCoreDamageConversionMax=25.0 + + # Resistance to knockback provided by Etherium Core. Defined as percentage. [range: 0 ~ 100, default: 50, synchronized: yes] + I:EtheriumCoreKnockbackResistance=50 + + # Whether the halving experience by level or value. True for level. [default: false, synchronized: yes] + B:ForgerGemEXPLevelNotValue=false + + # Whether to enable stricter detection for unbreakable forging when equipped the Forger's Gem. True for enable. [default: true, synchronized: yes] + B:ForgerGemStrictUnbreakableForge=true + + # List of items that will never be unbreakable. Examples: minecraft:iron_sword. Changing this option required game restart to take effect. [default: [enigmaticaddons:totem_of_malice], [twilightforest:glass_sword], synchronized: no] + S:ForgerGemUnbreakableBlackList < + enigmaticaddons:totem_of_malice + twilightforest:glass_sword + > + + # The extra repair cost after unbreakable forging when equipped the Forger's Gem. [range: 2 ~ 32768, default: 10, synchronized: yes] + I:ForgerGemUnbreakableRepairCost=10 + + # Active ability cooldown for Forgotten Ice Crystal. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 240, synchronized: yes] + I:ForgottenIceCrystalCooldown=240 + + # The extra damage of ability of Forgotten Ice Crystal. [range: 0.0 ~ 32768.0, default: 2.0, synchronized: yes] + D:ForgottenIceCrystalExtraDamageBase=2.0 + + # The extra damage ratio per every frozen second of ability of Forgotten Ice Crystal. [range: 0.0 ~ 32768.0, default: 0.01, synchronized: yes] + D:ForgottenIceCrystalExtraDamagePerSec=0.01 + + # The damage boost on target which has been fully frozen. Defined as percentage. [range: 0 ~ 256, default: 30, synchronized: yes] + I:ForgottenIceCrystalFrostBoost=30 + + # Resistance to projectile and sonic attacks provided by Forgotten Ice Crysta. Defined as percentage. [range: 0 ~ 100, default: 30, synchronized: yes] + I:ForgottenIceCrystalResistance=30 + + # The damage of thrown ichor spear [range: 0 ~ 32768, default: 4, synchronized: yes] + I:IchorSpearBaseDamage=4 + + # The amplifier of the ichor corrosion effect. [range: 1 ~ 32768, default: 1, synchronized: yes] + I:IchorSpearEffectAmplifier=1 + + # The duration of the ichor corrosion effect. Measures in ticks. [range: 0 ~ 32768, default: 600, synchronized: yes] + I:IchorSpearEffectDuration=600 + + # The attack damage boost of Insignia of Despair [range: 0.0 ~ 32768.0, default: 4.0, synchronized: yes] + D:InsigniaofDespairAttackDamageModifier=4.0 + + # The attack speed multiplier of Insignia of Despair. Measures in percentage. [range: 0 ~ 100, default: 16, synchronized: yes] + I:InsigniaofDespairAttackSpeedMultiplier=16 + + # The movement speed multiplier of Insignia of Despair. Measures in percentage. [range: 0 ~ 100, default: 5, synchronized: yes] + I:InsigniaofDespairMovementSpeedMultiplier=5 + + # Active ability cooldown for Lost Engine. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:LostEngineCooldown=0 + + # The crit damage modifier of the Lost Engine. [range: 0 ~ 256, default: 35, synchronized: yes] + I:LostEngineCritDamageModifier=35 + + # List of entities that will be affected as Golem by the Lost Engine. Examples: minecraft:iron_golem. Changing this option required game restart to take effect. [default: , synchronized: no] + S:LostEngineExtraGolemList < + > + + # The gravity multiplier of the Lost Engine. [range: 0.0 ~ 1.0, default: 0.4, synchronized: yes] + D:LostEngineGravityModifier=0.4 + + # The Knockback resistance modifier of the Lost Engine. [range: 0.0 ~ 256.0, default: 0.2, synchronized: yes] + D:LostEngineKnockbackResistanceModifier=0.2 + + # The speed multiplier of the Lost Engine. [range: 0.0 ~ 1.0, default: 0.1, synchronized: yes] + D:LostEngineSpeedModifier=0.1 + + # The Armor Toughness modifier of the Lost Engine. [range: 0.0 ~ 256.0, default: 4.0, synchronized: yes] + D:LostEngineToughnessModifier=4.0 + + # Modifier for Magic Damage vulnerability applied by Lost Engine. Default value of 2.0 means that player will receive twice as much damage from magic. [range: 1.0 ~ 256.0, default: 2.5, synchronized: yes] + D:LostEngineVulnerabilityModifier=2.5 + + # Default amount of armor provided by Magic Quartz Ring. [range: 0.0 ~ 256.0, default: 2.0, synchronized: yes] + D:MagicQuartzRingDefaultArmor=2.0 + + # Resistance to magic damage provided by Magic Quartz Ring. Defined as percentage. [range: 0 ~ 100, default: 30, synchronized: yes] + I:MagicQuartzRingMagicResistance=30 + + # Active ability cooldown for Ode to Living Beings. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 1200, synchronized: yes] + I:OdetoLivingBeingsCooldown=1200 + + # The percentage subtracted from damage redirected by Guide to Feral Hunt, if this is also possessed. [range: 0 ~ 100, default: 75, synchronized: yes] + I:OdetoLivingBeingsSynergyDamageReduction=75 + + # The average damage boost modifier provided by Pact of Dark Night. [range: 0 ~ 100, default: 20, synchronized: yes] + I:PactofDarkNightAverageDamageBoost=20 + + # The average damage resistance modifier provided by Pact of Dark Night. [range: 0 ~ 100, default: 16, synchronized: yes] + I:PactofDarkNightAverageDamageResistance=16 + + # The average life stealing modifier provided by Pact of Dark Night. [range: 0 ~ 100, default: 8, synchronized: yes] + I:PactofDarkNightAverageLifeSteal=8 + + # The cooldown of Potion of Cosmic. Measured in ticks. [range: 0 ~ 32000, default: 2400, synchronized: yes] + I:PotionofCosmicCooldown=2400 + + # The Duration Multiplier of Potion of Cosmic. [range: 0.0 ~ 32.0, default: 1.6, synchronized: yes] + D:PotionofCosmicDurationMultiplier=1.6 + + # The percentage which trigger the Passive ability, damage / current health. Defined as percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:PromiseoftheEarthAbilityTriggerPercent=80 + + # Amount of armor provided by Promise of the Earth. [range: 0.0 ~ 256.0, default: 5.0, synchronized: yes] + D:PromiseoftheEarthArmor=5.0 + + # Mining speed boost granted by Promise of the Earth. Defined as percentage. [range: 0 ~ 1000, default: 20, synchronized: yes] + I:PromiseoftheEarthBreakSpeed=20 + + # Passive ability cooldown for Promise of the Earth. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 1000, synchronized: yes] + I:PromiseoftheEarthCooldown=1000 + + # Correction coefficient for the First Curse. Defined as percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:PromiseoftheEarthTotalResistance=25 + + # Amount of armor toughness provided by Promise of the Earth. [range: 0.0 ~ 256.0, default: 2.0, synchronized: yes] + D:PromiseoftheEarthToughness=2.0 + + # The shoot interval time of daggers. Measured as ticks. [range: 1 ~ 40, default: 8, synchronized: yes] + I:QuartzScepterShootInterval=8 + + # The effect radius of Revival Leaf' ability. [range: 0.0 ~ 32768.0, default: 5.0, synchronized: yes] + D:RevivalLeafAbilityRadius=5.0 + + # Active ability cooldown for Revival Leaf. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 320, synchronized: yes] + I:RevivalLeafCooldown=320 + + # The time required for each 0.5HP treatment from the natural regeneration of the Revival Leaf. Measured in ticks. [range: 5 ~ 32768, default: 40, synchronized: yes] + I:RevivalLeafNaturalRegenerationTick=40 + + # Level of Poison that bearer of the leaf will apply to entities they attack. [range: 0 ~ 3, default: 1, synchronized: yes] + I:RevivalLeafPoisonLevel=1 + + # Amount of ticks for which bearer of the leaf will apply Poison effect to entities they attack. 20 ticks equals to 1 second. [range: 0 ~ 32768, default: 160, synchronized: yes] + I:RevivalLeafPoisonTime=160 + + # Level of Regeneration that bearer of the leaf will apply to entities nearby when ability activated. [range: 0 ~ 3, default: 1, synchronized: yes] + I:RevivalLeafRegenerationLevel=1 + + # Amount of ticks for which bearer of the leaf will apply Regeneration effect to entities nearby when ability activated. [range: 0 ~ 32768, default: 180, synchronized: yes] + I:RevivalLeafRegenerationTime=180 + + # The damage boost of the Ring of Redemption. Measured in percentage. [range: 0 ~ 500, default: 20, synchronized: yes] + I:RingofRedemptionDamageBoost=20 + + # The damage resistance of the Ring of Redemption. Measured in percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:RingofRedemptionDamageResistance=25 + + # The time required for each regeneration of Ring of Redemption. Measured in ticks. [range: 5 ~ 32768, default: 20, synchronized: yes] + I:RingofRedemptionRegenerationTick=20 + + # The damage boost multiplier of the Ring of Ultimate Luxury . [range: 0.0 ~ 2.0, default: 0.5, synchronized: yes] + D:RingofUltimateLuxuryDamageBoostMultiplier=0.5 + + # List of entities that will be affected as Merchant by the Ring of Ultimate Luxury. Changing this option required game restart to take effect. [default: , synchronized: no] + S:RingofUltimateLuxuryExtraMerchantList < + > + + # The damage boost on pet of Sanguinary Hunting Handbook. [range: 0.0 ~ 32768.0, default: 0.25, synchronized: yes] + D:SanguinaryHuntingHandbookDamageMultiplier=0.25 + + # The max count to transporting enemies of Combat Mode. [range: 0 ~ 32768, default: 5, synchronized: yes] + I:ScepterofExtradimensionalMaxCombatCount=5 + + # The cooldown of Combat Mode when using continuously to long. Measured in ticks. [range: 100 ~ 32768, default: 150, synchronized: yes] + I:ScepterofExtradimensionalOverheatCooldown=150 + + # The cooldown of Transporting Mode. Measured in ticks. [range: 200 ~ 32768, default: 280, synchronized: yes] + I:ScepterofExtradimensionalTransportingCooldown=280 + + # Damage Amplification Limit of Scroll of Ignorance Curse. Defined as percentage. [range: 0.0 ~ 1000.0, default: 100.0, synchronized: yes] + D:ScrollofIgnoranceCurseDamageBoostLimit=100.0 + + # Heal Amplification Limit of Scroll of Ignorance Curse. Defined as percentage. [range: 0.0 ~ 1000.0, default: 50.0, synchronized: yes] + D:ScrollofIgnoranceCurseHealBoostLimit=50.0 + + # Knockback Resistance Limit Modifier of Scroll of Ignorance Curse. Defined as percentage. [range: 0.0 ~ 1000.0, default: 160.0, synchronized: yes] + D:ScrollofIgnoranceCurseKnockbackResistanceBoostLimit=160.0 + + # The Max Level of stored experience of Scroll of Ignorance Curse, which provides attribute amplification. [range: 0 ~ 1000, default: 1000, synchronized: yes] + I:ScrollofIgnoranceCurseXPLevelUpperLimit=1000 + + # The damage resistance multiplier of the bypass-armor damage you received. Measured in percentage. [range: 0 ~ 80, default: 50, synchronized: yes] + I:SoulLanternofIllusionBypassDamageResistance=50 + + # Active ability cooldown for Soul Lantern of Illusion. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:SoulLanternofIllusionCooldown=0 + + # The cooldown of soul fireball generating for Soul Lantern of Illusion. Measured in ticks. [range: 0 ~ 32768, default: 60, synchronized: yes] + I:SoulLanternofIllusionFireballCooldown=60 + + # The damage multiplier of the non-magic damage you received. Measured in percentage. [range: 0 ~ 32768, default: 25, synchronized: yes] + I:SoulLanternofIllusionNonMagicDamageMultiplier=25 + + # The special damage resistance of The Arrogance of Chaos. Measured in percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:TheArroganceofChaosDamageResistance=80 + + # The cooldown of special descending skill of The Arrogance of Chaos. [range: 200 ~ 2400, default: 500, synchronized: yes] + I:TheArroganceofChaosDescendingCooldown=500 + + # The damage modifier when hit the ground with elytra boost. [range: 1.0 ~ 10.0, default: 1.6, synchronized: yes] + D:TheArroganceofChaosDescendingPowerModifier=1.6 + + # The flying speed modifier when elytra boost. [range: 1.0 ~ 10.0, default: 1.6, synchronized: yes] + D:TheArroganceofChaosFlyingSpeedModifier=1.6 + + # Attack damage of The Bless, actual damage shown in tooltip will be ( 1 + this value ). [range: 0.0 ~ 32768.0, default: 6.0, synchronized: yes] + D:TheBlessAttackDamage=6.0 + + # Attack speed of The Bless. [range: -32768.0 ~ 32768.0, default: -1.6, synchronized: yes] + D:TheBlessAttackSpeed=-1.6 + + # The invulnerable time after hit while The Bless in inventory. [range: 40 ~ 200, default: 40, synchronized: yes] + I:TheBlessInvulnerableTime=40 + + # The cooldown of usage. Measured as tick. [range: 20 ~ 32768, default: 40, synchronized: yes] + I:TheCurseCarverCooldown=40 + + # The initial health percentage the curse will totally damaged. [range: 10 ~ 100, default: 20, synchronized: yes] + I:TheCurseCarverCurseDamageRatio=20 + + # The hurt damage amount of cursed target. [range: 0.0 ~ 32768.0, default: 2.5, synchronized: yes] + D:TheCurseCarverCurseHurtAmount=2.5 + + # The hurt interval time of cursed target. Measured as ticks. [range: 1 ~ 40, default: 12, synchronized: yes] + I:TheCurseCarverCurseHurtInterval=12 + + # When set to false, only the upper limit of ONE level will be exceeded. [default: true, synchronized: yes] + B:TomeofDivinationAmplifyMode=true + + # List of enchantments that will not be affected by the Tome of Divination. Examples: minecraft:sharpness. Changing this option required game restart to take effect. [default: , synchronized: no] + S:TomeofDivinationBlacklist < + > + + # List of entities that will be affected as Raider by the Totem of Malice. Examples: minecraft:witch. Changing this option required game restart to take effect. [default: , synchronized: no] + S:TotemofMaliceExtraRaiderList < + > + + # The damage modifier to the Raiders. [range: 0.0 ~ 400.0, default: 1.5, synchronized: yes] + D:TotemofMaliceRaiderDamageBoost=1.5 + + # The damage resistance to the Raiders. [range: 0.0 ~ 400.0, default: 0.5, synchronized: yes] + D:TotemofMaliceRaiderDamageResistance=0.5 + + # Undocumented property [range: 160 ~ 800, default: 320, synchronized: yes] + I:explorerScrollcooldown=320 + + # Undocumented property [range: 1 ~ 10, default: 5, synchronized: yes] + I:explorerScrolleffectiveRange=5 + + # Undocumented property [range: 0 ~ 100, default: 40, synchronized: yes] + I:survivalScrollhealthThreshold=40 +} + + +########################################################################################################## +# Else Options +#--------------------------------------------------------------------------------------------------------# +# Various options that relates to secondary contents. +########################################################################################################## + +"Else Options" { + # If true, the main creative tab of Enigmatic Legacy will display some uncompleted item. [default: false, synchronized: no] + B:FutureItemDisplay=false + + # If true, the Hidden Recipe will display in JEI. [default: true, synchronized: no] + B:HiddenRecipeJEIDisplay=true + + # If true, the main creative tab of Enigmatic Legacy will be resorted. [default: true, synchronized: no] + B:TabResorted=true +} + + +########################################################################################################## +# Legacy Balance Options +#--------------------------------------------------------------------------------------------------------# +# Various options that mostly affect Enigmatic Legacy's items +########################################################################################################## + +"Legacy Balance Options" { + # Whether to trigger the ability of The Cube automatically. [default: true, synchronized: yes] + B:CubeAutoSkillTriggering=true + + # The Damage Limit of the Cube. [range: 50 ~ 32768, default: 100, synchronized: yes] + I:CubeDamageLimit=100 + + # List of effects that will appear in The Cube's random buffs. Examples: minecraft:absorption, minecraft:strength. Changing this option required game restart to take effect. [default: [minecraft:absorption], [minecraft:haste], [minecraft:jump_boost], [minecraft:regeneration], [minecraft:resistance], [minecraft:speed], [minecraft:strength], [minecraft:slow_falling], synchronized: no] + S:TheCubeRandomBuffs < + minecraft:absorption + minecraft:haste + minecraft:jump_boost + minecraft:regeneration + minecraft:resistance + minecraft:speed + minecraft:strength + minecraft:slow_falling + > + + # List of effects that will appear in The Cube's random debuffs. Examples: minecraft:blindness, minecraft:nausea. Changing this option required game restart to take effect. [default: [minecraft:blindness], [minecraft:nausea], [minecraft:mining_fatigue], [minecraft:hunger], [minecraft:levitation], [minecraft:slowness], [minecraft:weakness], [minecraft:poison], [minecraft:wither], synchronized: no] + S:TheCubeRandomDebuffs < + minecraft:blindness + minecraft:nausea + minecraft:mining_fatigue + minecraft:hunger + minecraft:levitation + minecraft:slowness + minecraft:weakness + minecraft:poison + minecraft:wither + > +} + + +########################################################################################################## +# The Worthy One Options +#--------------------------------------------------------------------------------------------------------# +# Various options that about the Events related to The Worthy One. +########################################################################################################## + +"The Worthy One Options" { + # If true, When the proportion of curse time is long enough, there will be some changes in creatures' AI. [default: true, synchronized: yes] + B:EnableCurseBoost=true + + # If true, when a creature spawned, it will immediately gain Curse Boost. [default: false, synchronized: yes] + B:ImmediatelyCurseBoost=false + + # If true, when a creature dies, it will anger its surrounding peers. [default: true, synchronized: yes] + B:PartnerAnger=true +} + + diff --git a/minecraft/config/enigmaticdelicacy-client.omniconf b/minecraft/config/enigmaticdelicacy-client.omniconf new file mode 100644 index 0000000..51c9503 --- /dev/null +++ b/minecraft/config/enigmaticdelicacy-client.omniconf @@ -0,0 +1,19 @@ +# Configuration File + +@CONFIG_VERSION: 1.1 + +########################################################################################################## +# Generic Config +#--------------------------------------------------------------------------------------------------------# +# Some more different stuff +########################################################################################################## + +"Generic Config" { + # Whether to render the duration bar of the Abyss effect. [default: true] + B:AbyssalStewBarDisplay=true + + # The extra nutrition modifier when have Astral Cruet in the inventory. Measured in percentage. [range: 0 ~ 100, default: 20] + I:AstralCruetExtraNutritionModifier=20 +} + + diff --git a/minecraft/config/enigmaticdelicacy-common.omniconf b/minecraft/config/enigmaticdelicacy-common.omniconf new file mode 100644 index 0000000..772dbe5 --- /dev/null +++ b/minecraft/config/enigmaticdelicacy-common.omniconf @@ -0,0 +1,290 @@ +# Configuration File + +@CONFIG_VERSION: 1.1 + +########################################################################################################## +# Accessibility Options +#--------------------------------------------------------------------------------------------------------# +# You may disable certain items or features from being obtainable/usable here. +# Check more details in Enigmatic Legacy's Config Files. +########################################################################################################## + +"Accessibility Options" { + # Whether or not Abyssal Stew should be enabled. [default: true, synchronized: yes] + B:AbyssalStewEnabled=true + + # Whether or not Astral Button should be enabled. [default: true, synchronized: yes] + B:AstralButtonEnabled=true + + # Whether or not Astral Cabinet should be enabled. [default: true, synchronized: yes] + B:AstralCabinetEnabled=true + + # Whether or not Astral Cruet should be enabled. [default: true, synchronized: yes] + B:AstralCruetEnabled=true + + # Whether or not Astral Door should be enabled. [default: true, synchronized: yes] + B:AstralDoorEnabled=true + + # Whether or not Astral Fruit should be enabled. [default: true, synchronized: yes] + B:AstralFruitEnabled=true + + # Whether or not Astral Leaf should be enabled. [default: true, synchronized: yes] + B:AstralLeafEnabled=true + + # Whether or not Astral Leaves should be enabled. [default: true, synchronized: yes] + B:AstralLeavesEnabled=true + + # Whether or not Astral Log should be enabled. [default: true, synchronized: yes] + B:AstralLogEnabled=true + + # Whether or not Astral Planks should be enabled. [default: true, synchronized: yes] + B:AstralPlanksEnabled=true + + # Whether or not Astral Popsicle should be enabled. [default: true, synchronized: yes] + B:AstralPopsicleEnabled=true + + # Whether or not Astral Pressure Plate should be enabled. [default: true, synchronized: yes] + B:AstralPressurePlateEnabled=true + + # Whether or not Astral Sapling should be enabled. [default: true, synchronized: yes] + B:AstralSaplingEnabled=true + + # Whether or not Astral Slab should be enabled. [default: true, synchronized: yes] + B:AstralSlabEnabled=true + + # Whether or not Astral Stairs should be enabled. [default: true, synchronized: yes] + B:AstralStairsEnabled=true + + # Whether or not Astral Tea should be enabled. [default: true, synchronized: yes] + B:AstralTeaEnabled=true + + # Whether or not Astral Trapdoor should be enabled. [default: true, synchronized: yes] + B:AstralTrapdoorEnabled=true + + # Whether or not Astral Wood should be enabled. [default: true, synchronized: yes] + B:AstralWoodEnabled=true + + # Whether or not Balanced Stewed Soup Block should be enabled. [default: true, synchronized: yes] + B:BalancedStewedSoupBlockEnabled=true + + # Whether or not Balanced Stewed Soup should be enabled. [default: true, synchronized: yes] + B:BalancedStewedSoupEnabled=true + + # Whether or not Bloody Custard should be enabled. [default: true, synchronized: yes] + B:BloodyCustardEnabled=true + + # Whether or not Blossoming Astral Leaves should be enabled. [default: true, synchronized: yes] + B:BlossomingAstralLeavesEnabled=true + + # Whether or not Broken Cursed Soul Crystal should be enabled. [default: true, synchronized: yes] + B:BrokenCursedSoulCrystalEnabled=true + + # Whether or not Charm of Self-discipline should be enabled. [default: true, synchronized: yes] + B:CharmofSelfdisciplineEnabled=true + + # Whether or not Curse Blade should be enabled. [default: true, synchronized: yes] + B:CurseBladeEnabled=true + + # Whether or not Curse Potion should be enabled. [default: true, synchronized: yes] + B:CursePotionEnabled=true + + # Whether or not Cursed Soul Crystal should be enabled. [default: true, synchronized: yes] + B:CursedSoulCrystalEnabled=true + + # Whether or not Cursed Soul Crystal Knife should be enabled. [default: true, synchronized: yes] + B:CursedSoulCrystalKnifeEnabled=true + + # Whether or not Cursed Soul Crystal Pendant should be enabled. [default: true, synchronized: yes] + B:CursedSoulCrystalPendantEnabled=true + + # Whether or not Cursed Soul Crystal Ring should be enabled. [default: true, synchronized: yes] + B:CursedSoulCrystalRingEnabled=true + + # Whether or not Divine Fruit Pie Block should be enabled. [default: true, synchronized: yes] + B:DivineFruitPieBlockEnabled=true + + # Whether or not Divine Fruit Pie should be enabled. [default: true, synchronized: yes] + B:DivineFruitPieEnabled=true + + # Whether or not Enigmatic Bush should be enabled. [default: true, synchronized: yes] + B:EnigmaticBushEnabled=true + + # Whether or not Enigmatic Cream should be enabled. [default: true, synchronized: yes] + B:EnigmaticCreamEnabled=true + + # Whether or not Enigmatic Fruit Crate should be enabled. [default: true, synchronized: yes] + B:EnigmaticFruitCrateEnabled=true + + # Whether or not Enigmatic Fruit should be enabled. [default: true, synchronized: yes] + B:EnigmaticFruitEnabled=true + + # Whether or not Enigmatic Seed should be enabled. [default: true, synchronized: yes] + B:EnigmaticSeedEnabled=true + + # Whether or not Etherium Machete should be enabled. [default: true, synchronized: yes] + B:EtheriumMacheteEnabled=true + + # Whether or not Etherium Ore should be enabled. [default: true, synchronized: yes] + B:EtheriumOreEnabled=true + + # Whether or not Etherium Steak should be enabled. [default: true, synchronized: yes] + B:EtheriumSteakEnabled=true + + # Whether or not Etherium Stove should be enabled. [default: true, synchronized: yes] + B:EtheriumStoveEnabled=true + + # Whether or not Fragment of Cursed Soul Crystal should be enabled. [default: true, synchronized: yes] + B:FragmentofCursedSoulCrystalEnabled=true + + # Whether or not Glistening Bark should be enabled. [default: true, synchronized: yes] + B:GlisteningBarkEnabled=true + + # Whether or not Glistening Heart of Protection should be enabled. [default: true, synchronized: yes] + B:GlisteningHeartofProtectionEnabled=true + + # Whether or not Glory of Weapon Master should be enabled. [default: true, synchronized: yes] + B:GloryofWeaponMasterEnabled=true + + # Whether or not Harmonious Grail should be enabled. [default: true, synchronized: yes] + B:HarmoniousGrailEnabled=true + + # Whether or not Ichor Egg should be enabled. [default: true, synchronized: yes] + B:IchorEggEnabled=true + + # Whether or not Ichoroot Soup should be enabled. [default: true, synchronized: yes] + B:IchorootSoupEnabled=true + + # Whether or not Infini-Farmland should be enabled. [default: true, synchronized: yes] + B:InfiniFarmlandEnabled=true + + # Whether or not Infini-Soil should be enabled. [default: true, synchronized: yes] + B:InfiniSoilEnabled=true + + # Whether or not Passion Fried Rice should be enabled. [default: true, synchronized: yes] + B:PassionFriedRiceEnabled=true + + # Whether or not Potted Astral Sapling should be enabled. [default: true, synchronized: yes] + B:PottedAstralSaplingEnabled=true + + # Whether or not Purified Dragon Breath should be enabled. [default: true, synchronized: yes] + B:PurifiedDragonBreathEnabled=true + + # Whether or not Scroll of Fading should be enabled. [default: true, synchronized: yes] + B:ScrollofFadingEnabled=true + + # Whether or not Slice of Astral Fruit should be enabled. [default: true, synchronized: yes] + B:SliceofAstralFruitEnabled=true + + # Whether or not Slice of Cosmic Cake should be enabled. [default: true, synchronized: yes] + B:SliceofCosmicCakeEnabled=true + + # Whether or not Slice of Sticky Enigmatic Pie should be enabled. [default: true, synchronized: yes] + B:SliceofStickyEnigmaticPieEnabled=true + + # Whether or not Sticky Enigmatic Pie should be enabled. [default: true, synchronized: yes] + B:StickyEnigmaticPieEnabled=true + + # Whether or not Stripped Astral Log should be enabled. [default: true, synchronized: yes] + B:StrippedAstralLogEnabled=true + + # Whether or not Stripped Astral Wood should be enabled. [default: true, synchronized: yes] + B:StrippedAstralWoodEnabled=true + + # Whether or not Stuffed Astral Potato should be enabled. [default: true, synchronized: yes] + B:StuffedAstralPotatoEnabled=true + + # Whether or not Tome of Omniscience should be enabled. [default: true, synchronized: yes] + B:TomeofOmniscienceEnabled=true + + # Whether or not Voracity Emblem should be enabled. [default: true, synchronized: yes] + B:VoracityEmblemEnabled=true +} + + +########################################################################################################## +# Balance Options +#--------------------------------------------------------------------------------------------------------# +# Various options that mostly affect individual items +########################################################################################################## + +"Balance Options" { + # The damage modifier when you have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 32768, default: 30, synchronized: yes] + I:AbyssalStewDamageModifier=30 + + # The effect duration of Abyssal Stew. Measured in tick. [range: 0 ~ 32768, default: 18000, synchronized: yes] + I:AbyssalStewDuration=18000 + + # The attack damage modifier when you equip The Testament of Contempt and have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:AbyssalStewEldritchAmuletDamageBoost=80 + + # The damage resistance rate when you equip The Testament of Contempt and have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:AbyssalStewEldritchAmuletDamageResistance=40 + + # The reduced duration time when killing creatures. Measured in tick. [range: 0 ~ 32768, default: 40, synchronized: yes] + I:AbyssalStewKillPunishment=40 + + # The damage resistance modifier when you have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:AbyssalStewResistanceModifier=25 + + # The attack damage modifier per every harmful effect the target has when you hold The Infinitum and have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 50, default: 8, synchronized: yes] + I:AbyssalStewTheInfinitumAttackModifierPerHarmfulEffect=8 + + # The probability to making next attack received ineffective when you hold The Infinitum and have the effect of Abyssal Stew. Measured in percentage. [range: 0 ~ 80, default: 25, synchronized: yes] + I:AbyssalStewTheInfinitumDisAttackProbability=25 + + # The extra nutrition modifier when have Astral Cruet in the inventory. Measured in percentage. [range: 0 ~ 100, default: 20, synchronized: yes] + I:AstralCruetExtraNutritionModifier=20 + + # The amplifier of additional health curse effect while charging attack. [range: 0 ~ 9, default: 4, synchronized: yes] + I:CurseBladeAdditionalHealthCurseAmplifier=4 + + # The duration of additional health curse effect while charging attack. [range: 600 ~ 32768, default: 2400, synchronized: yes] + I:CurseBladeAdditionalHealthCurseDuration=2400 + + # The Attack Speed Multiplier when you get the curse after gaining Blooded Ring of the Seven Curses. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:CurseBladeAttackSpeedCurseMultiplier=10 + + # The Amplifier of Health Curse when you get the curse after gaining Broken Cursed Soul Crystal. [range: 0 ~ 32768, default: 5, synchronized: yes] + I:CurseBladeHealthCurseAmplifier=5 + + # The probability of applying health curse effect on the target. Measures in percentage. [range: 0 ~ 30, default: 16, synchronized: yes] + I:CursedSoulCrystalKnifeApplyingCurseEffectProbability=16 + + # The cooldown of transforming creatures into babies ot drop loot. Measures in tick. [range: 40 ~ 32768, default: 200, synchronized: yes] + I:CursedSoulCrystalKnifeSpecialLootCooldown=200 + + # The healing amount modifier. Measures in percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:CursedSoulCrystalPendantHealingAmountModifier=25 + + # The ratio of recovery base on the damage you received. Measures in percentage. [range: 0 ~ 100, default: 24, synchronized: yes] + I:CursedSoulCrystalPendantInjuryRecoveryRate=24 + + # The protection skill cooldown of Glistening Heart of Protection. [range: 0 ~ 32768, default: 240, synchronized: yes] + I:GlisteningHeartofProtectionCooldown=240 + + # The damage resistance when equipped Glistening Heart of Protection. [range: 0 ~ 90, default: 75, synchronized: yes] + I:GlisteningHeartofProtectionDamageResistance=75 + + # The resistance threshold to fully resist when equipped Glistening Heart of Protection. [range: 0 ~ 90, default: 60, synchronized: yes] + I:GlisteningHeartofProtectionResistanceThreshold=60 + + # The damage modifier when equipped Glory of Weapon Master. Measured in percentage. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:GloryofWeaponMasterDamageModifier=10 + + # The cooldown of add Fading Effect when equipped Scroll of Fading. Measured in ticks. [range: 100 ~ 32768, default: 1200, synchronized: yes] + I:ScrollofFadingCooldown=1200 + + # Crit modifier increase provided by Emblem of Bloodstained Valor for each missing percent of food. Measured as percentage. [range: 0.0 ~ 32768.0, default: 1.25, synchronized: yes] + D:VoracityEmblemCritModifier=1.25 + + # Damage increase provided by Emblem of Boundless Voracity for each missing percent of food. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.4, synchronized: yes] + D:VoracityEmblemDamageBoost=0.4 + + # Damage resistance provided by Emblem of Bloodstained Valor for each missing percent of food. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:VoracityEmblemResistanceBoost=0.5 + + # Movement speed increase provided by Emblem of Bloodstained Valor for each missing percent of food. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.25, synchronized: yes] + D:VoracityEmblemSpeedBoost=0.25 +} + + diff --git a/minecraft/config/enigmaticlegacy-client.omniconf b/minecraft/config/enigmaticlegacy-client.omniconf new file mode 100644 index 0000000..6a0e258 --- /dev/null +++ b/minecraft/config/enigmaticlegacy-client.omniconf @@ -0,0 +1,92 @@ +# Configuration File + +@CONFIG_VERSION: 2.2 + +########################################################################################################## +# Generic Config +#--------------------------------------------------------------------------------------------------------# +# Some more different stuff +########################################################################################################## + +"Generic Config" { + # Text overflow mode which should be used by The Acknowledgment specifically. This is separate from Patchouli's global setting since it uses RESIZE by default, which unpromptly attempts to rescale font even when no rescaling is neccessary, and it is never neccessary for The Acknowledgment thanks to my continuous efforts to make texts fit perfectly on each and every page. [default: OVERFLOW] + # Valid values: OVERFLOW, TRUNCATE, RESIZE + S:AcknowledgmentOverflowMode=OVERFLOW + + # If false, active ability of Angel's Blessing will not be triggerable by pressing jump key in mid-air. [default: true] + B:AngelBlessingDoubleJump=true + + # Whether or not flame particles should appear when the Astral Breaker breaks a block [default: true] + B:AstralBreakerFlameParticlesToggle=true + + # Controls how obscured your vision is in lava when Blazing Core is equipped. Higher value equals more visibility. [range: 0.0 ~ 1024.0, default: 4.0] + D:BlazingCoreLavaDensity=4.0 + + # Flips the parabolic function bearing responsibility for heat bar rendering when temporary fire resistance from Blazing Core is active. Instead of default behavior, it will start decreasing slowly, but will expotentially speed up the closer to the end it is. This is a purely visual effect - raw fire immunity time provided stays unchanged. [default: false] + B:BlazingCoreTraitorBarEnabled=false + + # If true, disables subtitles for The Architect's narration. [default: false] + B:DisableQuoteSubtitles=false + + # Whether or not button for accessing Ender Chest should be added to inventory GUI when player has Ring of Ender equipped. [default: true] + B:EnderChestButtonEnabled=true + + # Allows to set offset for Ender Chest button on X axis. [range: -32768 ~ 32768, default: 0] + I:EnderChestButtonOffsetX=-75 + + # Allows to set offset for Ender Chest button on X axis, for creative inventory specifically. [range: -32768 ~ 32768, default: 0] + I:EnderChestButtonOffsetXCreative=0 + + # Allows to set offset for Ender Chest button on Y axis. [range: -32768 ~ 32768, default: 0] + I:EnderChestButtonOffsetY=-39 + + # Allows to set offset for Ender Chest button on Y axis, for creative inventory specifically. [range: -32768 ~ 32768, default: 0] + I:EnderChestButtonOffsetYCreative=0 + + # Whether or not hunger bar should be rendered at all after Forbidden Fruit was consumed. [default: true] + B:ForbiddenFruitRenderHungerbar=true + + # Whether or not food icons on hunger bar should be replaced when custom ones after Forbidden Fruit was consumed. [default: true] + B:ForbiddenFruitReplaceHungerBar=true + + # Whether or not button for toggling magnet effects should be added to inventory GUI when player has Ring of Ender equipped. [default: true] + B:MagnetRingButtonEnabled=true + + # Allows to set offset for Magnet Effects button on X axis. [range: -32768 ~ 32768, default: 0] + I:MagnetRingButtonOffsetX=-52 + + # Allows to set offset for Magnet Effects button on X axis, for creative inventory specifically. [range: -32768 ~ 32768, default: 0] + I:MagnetRingButtonOffsetXCreative=0 + + # Allows to set offset for Magnet Effects button on Y axis. [range: -32768 ~ 32768, default: 0] + I:MagnetRingButtonOffsetY=-20 + + # Allows to set offset for Magnet Effects button on Y axis, for creative inventory specifically. [range: -32768 ~ 32768, default: 0] + I:MagnetRingButtonOffsetYCreative=0 + + # Controls how obscured your vision is in lava when Molten Heart effect is active. Higher value equals more visibility. [range: 0.0 ~ 1024.0, default: 6.0] + D:MoltenHeartLavaDensity=6.0 + + # Whether or not oxygen bar should pe prevented from rendering if Will of the Ocean or Pearl of the Void is equipped. [default: true] + B:SuppressUnneccessaryOxygenRender=true + + # Whether or not Enigmatic Legacy should show notification in chat when new mod update is available. [default: true] + B:UpdateHandlerEnabled=false +} + + +########################################################################################################## +# The Seven Curses +#--------------------------------------------------------------------------------------------------------# +# Config options directly affecting Ring of the Seven Curses +########################################################################################################## + +"The Seven Curses" { + # If true, tooltip of Ring of the Seven Curses cannot be read before it is equipped. Fun way to teach players that not every mystery is worth investigating. [default: false] + B:CursedRingConcealAbilities=false + + # Set to false to disable displaying lore on Ring of the Seven Curses. Useful if you are a modpack developer wanting to have your own. [default: true] + B:CursedRingDisplayLore=true +} + + diff --git a/minecraft/config/enigmaticlegacy-common.omniconf b/minecraft/config/enigmaticlegacy-common.omniconf new file mode 100644 index 0000000..474201c --- /dev/null +++ b/minecraft/config/enigmaticlegacy-common.omniconf @@ -0,0 +1,829 @@ +# Configuration File + +@CONFIG_VERSION: 2.2 + +########################################################################################################## +# Accessibility Options +#--------------------------------------------------------------------------------------------------------# +# You may disable certain items or features from being obtainable/usable here. +# +# A BLASTED WARNING, PLEASE READ CAREFULLY: +# This WILL NOT "delete" any of the items from the mod. For items, none of the options here do more than +# just disable default ways of obtaining them. For stuff in dungeon loot - it is removed from dungeon loot, +# for starter items - no longer given at the start, for craftables - default recipe is disabled. +# If you're a modpack developer or whatever, that is your way to add your own ways of obtaining them. +# Want to disable Enigmatic Amulet/Ring of the Seven Curses from being granted to player when they spawn? +# HERE IS THE PLACE AND TIME, COME ON AND SLAM! +# +# Please note that as of release 2.6.0 of Enigmatic Legacy, those options are automatically generated +# for most items in the mod. They may refer to items that do not exist yet or are not obtainable in any +# case, and may not work for certain items due to non-generic obtaining methods or generic oversight. +# +# If you discover option that does not work, but for whatever reason you really need it, submit an issue +# pointing out to such option here: https://github.com/Extegral/Enigmatic-Legacy/issues +########################################################################################################## + +"Accessibility Options" { + # Whether or not Amulet of Ascension should be enabled. [default: true, synchronized: yes] + B:AmuletofAscensionEnabled=true + + # Whether or not Angel's Blessing should be enabled. [default: true, synchronized: yes] + B:AngelsBlessingEnabled=true + + # Whether or not Astral Breaker should be enabled. [default: true, synchronized: yes] + B:AstralBreakerEnabled=true + + # Whether or not Astral Dust should be enabled. [default: true, synchronized: yes] + B:AstralDustEnabled=true + + # Whether or not Astral Potato should be enabled. [default: true, synchronized: yes] + B:AstralPotatoEnabled=true + + # Whether or not Axe of Executioner should be enabled. [default: true, synchronized: yes] + B:AxeofExecutionerEnabled=true + + # Whether or not Blank Scroll should be enabled. [default: true, synchronized: yes] + B:BlankScrollEnabled=true + + # Whether or not Blazing Core should be enabled. [default: true, synchronized: yes] + B:BlazingCoreEnabled=true + + # Whether or not bonus recipes for wool dyeing should be enabled. [default: true, synchronized: yes] + B:BonusWoolRecipesEnabled=true + + # Whether or not Bottle of Ichor should be enabled. [default: true, synchronized: yes] + B:BottleofIchorEnabled=true + + # Whether or not Bulwark of Blazing Pride should be enabled. [default: true, synchronized: yes] + B:BulwarkofBlazingPrideEnabled=true + + # Whether or not Ceaseless Enchantment should be enabled. [default: true, synchronized: yes] + B:CeaselessEnchantmentEnabled=true + + # Whether or not Celestial Fruit should be enabled. [default: true, synchronized: yes] + B:CelestialFruitEnabled=true + + # Whether or not Charming Insignia should be enabled. [default: true, synchronized: yes] + B:CharmingInsigniaEnabled=true + + # Whether or not Charm of Treasure Hunter should be enabled. [default: true, synchronized: yes] + B:CharmofTreasureHunterEnabled=true + + # Whether or not Common Potions should be enabled. [default: true, synchronized: yes] + B:CommonPotionsEnabled=true + + # Whether or not Corrupted Tome should be enabled. [default: true, synchronized: yes] + B:CorruptedTomeEnabled=true + + # Whether or not Cosmic Scroll should be enabled. [default: true, synchronized: yes] + B:CosmicScrollEnabled=true + + # Whether or not Enigmatic Legacy should purposefully crash client whenever any mod tries to inject unnamed LootPool into any loot table. If false, stacktraces will be printed to log but game will proceed as normal. [default: true, synchronized: no] + B:CrashOnUnnamedPool=true + + # Whether or not Curse of Eternal Binding should be enabled. [default: true, synchronized: yes] + B:CurseofEternalBindingEnabled=true + + # Whether or not Curse of Nemesis should be enabled. [default: true, synchronized: yes] + B:CurseofNemesisEnabled=true + + # Whether or not Curse of Sorrow should be enabled. [default: true, synchronized: yes] + B:CurseofSorrowEnabled=true + + # Whether or not this mod should add any custom loot to dungeon chests' loot tables. This options is mainly for modpack developers and enables them to re-add that loot on their own terms, since no other ways of modifying what Enigmatic Legacy adds to loot tables currently exist. [default: true, synchronized: yes] + B:CustomDungeonLootEnabled=true + + # Whether or not Darkest Scroll should be enabled. [default: true, synchronized: yes] + B:DarkestScrollEnabled=true + + # Whether or not Deception Amulet should be enabled. [default: true, synchronized: yes] + B:DeceptionAmuletEnabled=true + + # If true, tools with area of effect abilities will not have those abilities disabled when player holds Shift (crouches). [default: false, synchronized: yes] + B:DisableAOEShiftSuppression=false + + # Whether or not Eldritch Frying Pan should be enabled. [default: true, synchronized: yes] + B:EldritchFryingPanEnabled=true + + # Whether or not Emblem of Bloodstained Valor should be enabled. [default: true, synchronized: yes] + B:EmblemofBloodstainedValorEnabled=true + + # Whether or not Emblem of Monster Slayer should be enabled. [default: true, synchronized: yes] + B:EmblemofMonsterSlayerEnabled=true + + # Whether or not Enchanter's Pearl should be enabled. [default: true, synchronized: yes] + B:EnchantersPearlEnabled=true + + # Whether or not Ender Rod should be enabled. [default: true, synchronized: yes] + B:EnderRodEnabled=true + + # Whether or not Enigmatic Amulet should be enabled. [default: true, synchronized: yes] + B:EnigmaticAmuletEnabled=false + + # Whether or not Essence of Raging Life should be enabled. [default: true, synchronized: yes] + B:EssenceofRagingLifeEnabled=true + + # Whether or not Etherium Armor should be enabled. [default: true, synchronized: yes] + B:EtheriumArmorEnabled=true + + # Whether or not Etherium Broadsword should be enabled. [default: true, synchronized: yes] + B:EtheriumBroadswordEnabled=true + + # Whether or not Etherium Ingot should be enabled. [default: true, synchronized: yes] + B:EtheriumIngotEnabled=true + + # Whether or not Etherium Nugget should be enabled. [default: true, synchronized: yes] + B:EtheriumNuggetEnabled=true + + # Whether or not Etherium Ore should be enabled. [default: true, synchronized: yes] + B:EtheriumOreEnabled=true + + # Whether or not Etherium Pickaxe should be enabled. [default: true, synchronized: yes] + B:EtheriumPickaxeEnabled=true + + # Whether or not Etherium Scraps should be enabled. [default: true, synchronized: yes] + B:EtheriumScrapsEnabled=true + + # Whether or not Etherium Scythe should be enabled. [default: true, synchronized: yes] + B:EtheriumScytheEnabled=true + + # Whether or not Etherium Shovel should be enabled. [default: true, synchronized: yes] + B:EtheriumShovelEnabled=true + + # Whether or not Etherium Waraxe should be enabled. [default: true, synchronized: yes] + B:EtheriumWaraxeEnabled=true + + # Whether or not Exquisite Ring should be enabled. [default: true, synchronized: yes] + B:ExquisiteRingEnabled=true + + # Whether or not Extradimensional Eye should be enabled. [default: true, synchronized: yes] + B:ExtradimensionalEyeEnabled=true + + # Whether or not Eye of Nebula should be enabled. [default: true, synchronized: yes] + B:EyeofNebulaEnabled=true + + # Whether or not Forbidden Fruit should be enabled. [default: true, synchronized: yes] + B:ForbiddenFruitEnabled=true + + # Whether or not Gift of the Heaven should be enabled. [default: true, synchronized: yes] + B:GiftoftheHeavenEnabled=true + + # Whether or not Grace of the Creator should be enabled. [default: true, synchronized: yes] + B:GraceoftheCreatorEnabled=true + + # Whether or not Guide to Feral Hunt should be enabled. [default: true, synchronized: yes] + B:GuidetoFeralHuntEnabled=true + + # Whether or not Guite to Animal Companionship should be enabled. [default: true, synchronized: yes] + B:GuitetoAnimalCompanionshipEnabled=true + + # Whether or not Heart of the Abyss should be enabled. [default: true, synchronized: yes] + B:HeartoftheAbyssEnabled=true + + # Whether or not Heart of the Cosmos should be enabled. [default: true, synchronized: yes] + B:HeartoftheCosmosEnabled=true + + # Whether or not Heart of the Earth should be enabled. [default: true, synchronized: yes] + B:HeartoftheEarthEnabled=true + + # Whether or not Heart of the Golem should be enabled. [default: true, synchronized: yes] + B:HeartoftheGolemEnabled=true + + # Whether or not Heart of the Guardian should be enabled. [default: true, synchronized: yes] + B:HeartoftheGuardianEnabled=true + + # Whether or not Inscrutable Eye should be enabled. [default: true, synchronized: yes] + B:InscrutableEyeEnabled=true + + # Whether or not Iron Ring should be enabled. [default: true, synchronized: yes] + B:IronRingEnabled=true + + # Whether or not Keystone of The Oblivion should be enabled. [default: true, synchronized: yes] + B:KeystoneofTheOblivionEnabled=true + + # Whether or not Lore Fragment should be enabled. [default: true, synchronized: yes] + B:LoreFragmentEnabled=true + + # Whether or not Magnet Ring should be enabled. [default: true, synchronized: yes] + B:MagnetRingEnabled=true + + # Whether or not Majestic Elytra should be enabled. [default: true, synchronized: yes] + B:MajesticElytraEnabled=true + + # Whether or not Megasponge should be enabled. [default: true, synchronized: yes] + B:MegaspongeEnabled=true + + # Whether or not Mending Mixture should be enabled. [default: true, synchronized: yes] + B:MendingMixtureEnabled=true + + # Whether or not Nefarious Essence should be enabled. [default: true, synchronized: yes] + B:NefariousEssenceEnabled=true + + # Whether or not Nefarious Ingot should be enabled. [default: true, synchronized: yes] + B:NefariousIngotEnabled=true + + # Whether or not Non-Euclidean Cube should be enabled. [default: true, synchronized: yes] + B:NonEuclideanCubeEnabled=true + + # Whether or not Pact of Infinite Avarice should be enabled. [default: true, synchronized: yes] + B:PactofInfiniteAvariceEnabled=true + + # Whether or not Pearl of the Void should be enabled. [default: true, synchronized: yes] + B:PearloftheVoidEnabled=true + + # Whether or not Potion of Recall should be enabled. [default: true, synchronized: yes] + B:PotionofRecallEnabled=true + + # Whether or not Potion of Twisted Mercy should be enabled. [default: true, synchronized: yes] + B:PotionofTwistedMercyEnabled=true + + # If true, Enigmatic Legacy will cycle through each player's recipe book and trigger 'minecraft:recipe_unlocked' criterion trigger for everything that they have unlocked upon player joining the world. [default: true, synchronized: no] + B:RetriggerRecipeUnlocks=false + + # Whether or not Ring of Dislocation should be enabled. [default: true, synchronized: yes] + B:RingofDislocationEnabled=true + + # Whether or not Ring of Ender should be enabled. [default: true, synchronized: yes] + B:RingofEnderEnabled=true + + # Whether or not Ring of the Seven Curses should be enabled. [default: true, synchronized: yes] + B:RingoftheSevenCursesEnabled=false + + # Whether or not Scroll of Ageless Wisdom should be enabled. [default: true, synchronized: yes] + B:ScrollofAgelessWisdomEnabled=true + + # Whether or not Scroll of Postmortal Recall should be enabled. [default: true, synchronized: yes] + B:ScrollofPostmortalRecallEnabled=true + + # Whether or not Scroll of a Thousand Curses should be enabled. [default: true, synchronized: yes] + B:ScrollofaThousandCursesEnabled=true + + # Whether or not Sharpshooter Enchantment should be enabled. [default: true, synchronized: yes] + B:SharpshooterEnchantmentEnabled=true + + # Whether or not Slayer Enchantment should be enabled. [default: true, synchronized: yes] + B:SlayerEnchantmentEnabled=true + + # Whether or not Soul Dust should be enabled. [default: true, synchronized: yes] + B:SoulDustEnabled=true + + # Whether or not Tattered Tome should be enabled. [default: true, synchronized: yes] + B:TatteredTomeEnabled=true + + # Whether or not The Acknowledgment should be enabled. [default: true, synchronized: yes] + B:TheAcknowledgmentEnabled=true + + # Whether or not The Architect's Inkwell should be enabled. [default: true, synchronized: yes] + B:TheArchitectsInkwellEnabled=true + + # Whether or not The Burden of Desolation should be enabled. [default: true, synchronized: yes] + B:TheBurdenofDesolationEnabled=true + + # Whether or not The Ender Slayer should be enabled. [default: true, synchronized: yes] + B:TheEnderSlayerEnabled=true + + # Whether or not The Infinitum should be enabled. [default: true, synchronized: yes] + B:TheInfinitumEnabled=true + + # Whether or not The Judgement should be enabled. [default: true, synchronized: yes] + B:TheJudgementEnabled=true + + # Whether or not The Testament of Contempt should be enabled. [default: true, synchronized: yes] + B:TheTestamentofContemptEnabled=true + + # Whether or not The Twist should be enabled. [default: true, synchronized: yes] + B:TheTwistEnabled=true + + # Whether or not Tome of Devoured Malignancy should be enabled. [default: true, synchronized: yes] + B:TomeofDevouredMalignancyEnabled=true + + # Whether or not Tome of Hungering Knowledge should be enabled. [default: true, synchronized: yes] + B:TomeofHungeringKnowledgeEnabled=true + + # Whether or not Torrent Enchantment should be enabled. [default: true, synchronized: yes] + B:TorrentEnchantmentEnabled=true + + # Whether or not Twisted Heart should be enabled. [default: true, synchronized: yes] + B:TwistedHeartEnabled=true + + # Whether or not Twisted Mirror should be enabled. [default: true, synchronized: yes] + B:TwistedMirrorEnabled=true + + # Whether or not Ultimate Potions should be enabled. [default: true, synchronized: yes] + B:UltimatePotionsEnabled=true + + # Whether or not Unholy Grail should be enabled. [default: true, synchronized: yes] + B:UnholyGrailEnabled=true + + # Whether or not Unholy Stone should be enabled. [default: true, synchronized: yes] + B:UnholyStoneEnabled=true + + # Whether or not Wayfinder of the Damned should be enabled. [default: true, synchronized: yes] + B:WayfinderoftheDamnedEnabled=true + + # Whether or not Will of the Ocean should be enabled. [default: true, synchronized: yes] + B:WilloftheOceanEnabled=true + + # Whether or not Withered Tome should be enabled. [default: true, synchronized: yes] + B:WitheredTomeEnabled=true + + # Whether or not Wrath Enchantment should be enabled. [default: true, synchronized: yes] + B:WrathEnchantmentEnabled=true +} + + +########################################################################################################## +# Balance Options +#--------------------------------------------------------------------------------------------------------# +# Various options that mostly affect individual items +########################################################################################################## + +"Balance Options" { + # Acceleration modifier for active ability of Angel's Blessing. The greater it is, the more momentum you will gain. [range: 0.0 ~ 256.0, default: 1.0, synchronized: yes] + D:AngelBlessingAccelerationModifier=1.0 + + # Separate acceleration modifier for active ability of Angel's Blessing when player is flying with Elytra. [range: 0.0 ~ 256.0, default: 0.6, synchronized: yes] + D:AngelBlessingAccelerationModifierElytra=0.6 + + # Active ability cooldown for Angel's Blessing. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 40, synchronized: yes] + I:AngelBlessingCooldown=40 + + # Chance to deflect projectile when having Angel's Blessing equipped. Measured in percents. [range: 0 ~ 100, default: 50, synchronized: yes] + I:AngelBlessingDeflectChance=50 + + # List of entities that should count towards the curse-altering effect of Guide to Animal Companionship, and thus remain neutral to players bearing Ring of the Seven Curses if they posses such guide. Examples: minecraft:iron_golem, minecraft:zombified_piglin [default: , synchronized: no] + S:AnimalGuideAnimalExclusionList < + > + + # The depth of Astral Breaker AOE mining. [range: 0 ~ 127, default: 1, synchronized: yes] + I:AstralBreakerMiningDepth=1 + + # The radius of Astral Breaker AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:AstralBreakerMiningRadius=3 + + # Chance to get an Emerald when slaying any mob with Pact of Infinite Avarice equipped. [range: 0 ~ 100, default: 15, synchronized: yes] + I:AvariceScrollEmeraldChance=15 + + # Attack speed increase provided by Emblem of Bloodstained Valor for each missing percent of health. Measured as percentage. [range: 0.0 ~ 32768.0, default: 1.0, synchronized: yes] + D:BerserkEmblemAttackSpeedBoost=1.0 + + # Damage increase provided by Emblem of Bloodstained Valor for each missing percent of health. Measured as percentage. [range: 0.0 ~ 32768.0, default: 1.0, synchronized: yes] + D:BerserkEmblemDamageBoost=1.0 + + # Damage resistance provided by Emblem of Bloodstained Valor for each missing percent of health. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:BerserkEmblemResistanceBoost=0.5 + + # Movement speed increase provided by Emblem of Bloodstained Valor for each missing percent of health. Measured as percentage. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:BerserkEmblemSpeedBoost=0.5 + + # Active ability cooldown for Blazing Core. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:BlazingCoreCooldown=0 + + # How much fire-based damage instantly receives any creature that attacks bearer of the Blazing Core. [range: 0.0 ~ 512.0, default: 4.0, synchronized: yes] + D:BlazingCoreDamageFeedback=4.0 + + # How how many seconds any creature that attacks bearer of the Blazing Core will be set on fire. [range: 0 ~ 512, default: 4, synchronized: yes] + I:BlazingCoreIgnitionFeedback=4 + + # Whether or not crossbows with Ceaseless should be able to shoot basic arrows even if there are none in player's inventory. [default: true, synchronized: yes] + B:CeaselessEnchantmentAllowNoArrow=true + + # Cooldown of death protection ability of The Architect's Favor. Measured in seconds. [range: 0 ~ 32768, default: 600, synchronized: yes] + I:CosmicScrollDeathProtectionCooldown=600 + + # Alternative Etherium Shield health requirement for those who bear The Architect's Favor. Defined as percentage. [range: 0 ~ 100, default: 80, synchronized: yes] + I:CosmicScrollEtheriumShieldThreshold=80 + + # Attack damage bonus of The Architect's Favor against non-chosen players. [range: 0 ~ 32768, default: 100, synchronized: yes] + I:CosmicScrollUnchosenDamageBonus=100 + + # Knockback bonus of The Architect's Favor against non-chosen players. [range: 0 ~ 32768, default: 100, synchronized: yes] + I:CosmicScrollUnchosenKnockbackBonus=100 + + # Damage increase provided by Scroll of a Thousand Curses for each curse, as percentage. [range: 0 ~ 32768, default: 4, synchronized: yes] + I:CursedScrollDamageBoost=4 + + # Mining speed increase provided by Scroll of a Thousand Curses for each curse, as percentage. [range: 0 ~ 32768, default: 7, synchronized: yes] + I:CursedScrollMiningBoost=7 + + # Health regeneration increase provided by Scroll of a Thousand Curses for each curse, as percentage. [range: 0 ~ 32768, default: 4, synchronized: yes] + I:CursedScrollRegenBoost=4 + + # The chance for Heart of the Earth to be obtained from suspicious blocks (default is 3%). [range: 0.0 ~ 32768.0, default: 0.03, synchronized: yes] + D:CustomLootEarthHeartChance=0.03 + + # The base armor value of The Voracious Pan. [range: 0.0 ~ 32768.0, default: 4.0, synchronized: yes] + D:EldritchPanArmorValue=4.0 + + # The base attack damage of The Voracious Pan. [range: 0.0 ~ 32768.0, default: 31.0, synchronized: yes] + D:EldritchPanAttackDamage=31.0 + + # The base attack speed of The Voracious Pan. [range: -32768.0 ~ 32768.0, default: -3.2, synchronized: yes] + D:EldritchPanAttackSpeed=-3.2 + + # Base Hungersteal value of The Voracious Pan. [range: 0.0 ~ 32768.0, default: 2.0, synchronized: yes] + D:EldritchPanHungerSteal=2.0 + + # Base Lifesteal fraction of The Voracious Pan. [range: 0.0 ~ 32768.0, default: 0.15, synchronized: yes] + D:EldritchPanLifeSteal=0.15 + + # Base armor gain from unique mob kills for The Voracious Pan. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:EldritchPanUniqueArmorGain=0.5 + + # Base damage gain from unique mob kills for The Voracious Pan. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:EldritchPanUniqueDamageGain=0.5 + + # How many unique mob kills will count towards increasing the stats of The Voracious Pan. [range: 0 ~ 32768, default: 100, synchronized: yes] + I:EldritchPanUniqueGainLimit=100 + + # Chance that Dimensional Anchor will not spend a charge upon player respawn [range: 0 ~ 32768, default: 35, synchronized: yes] + I:EndAnchorChargeSaveChance=35 + + # List of specific dimensions in which Dimensional Anchor will not work. If you want it to only work in The End - use EndExclusiveMode instead. Examples: minecraft:overworld, minecraft:the_nether [default: , synchronized: no] + S:EndAnchorDimensionBlacklist < + > + + # If true, Dimensional Anchor will only work in The End. [default: false, synchronized: yes] + B:EndAnchorEndExclusiveMode=false + + # Attack damage of The Ender Slayer, actual damage shown in tooltip will be is 4 + this_value. [range: 0 ~ 32768, default: 4, synchronized: yes] + I:EnderSlayerAttackDamage=4 + + # Attack speed of The Ender Slayer. [range: -32768.0 ~ 32768.0, default: -2.6, synchronized: yes] + D:EnderSlayerAttackSpeed=-2.6 + + # Attack damage bonus of The Ender Slayer against dwellers of The End. [range: 0 ~ 32768, default: 150, synchronized: yes] + I:EnderSlayerEndDamageBonus=150 + + # List of entities that should be considered dwellers of The End by The Ender Slayer. Examples: minecraft:iron_golem, minecraft:zombified_piglin [default: , synchronized: no] + S:EnderSlayerEndDwellers < + > + + # Knockback bonus of The Ender Slayer against dwellers of The End. [range: 0 ~ 32768, default: 600, synchronized: yes] + I:EnderSlayerEndKnockbackBonus=600 + + # The damage bonus stat provided by red Enigmatic Amulet. [range: -32768.0 ~ 32768.0, default: 1.5, synchronized: yes] + D:EnigmaticAmuletDamageBonus=1.5 + + # Whether or not it should be possible to equip multiple Enigmatic Amulets, granted player somehow gets more than one charm slot. [default: false, synchronized: yes] + B:EnigmaticAmuletMultiequip=false + + # If true, only original owner of Extradimensional Vessel will be able to pick it up. [default: false, synchronized: yes] + B:EnigmaticAmuletOwnerOnlyVessel=false + + # What fraction of player's experience should be stored in Extradimensional Vessel upon their death. Experience that is not stored will be lost forever. 1.0 means that all experience is saved. [range: 0.0 ~ 1.0, default: 1.0, synchronized: yes] + D:EnigmaticAmuletSavedXPFraction=1.0 + + # If true, color of Enigmatic Amulet will be assigned using player's name as seed for generating it, instead of randomly - so that every player will always receive one specific color. [default: false, synchronized: yes] + B:EnigmaticAmuletSeededColorGen=false + + # Whether or not Enigmatic Amulet should be summoning Extradimensional Vessel on owner's death. [default: true, synchronized: yes] + B:EnigmaticAmuletVesselEnabled=true + + # Active ability cooldown for Heart of Creation. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 3, synchronized: yes] + I:EnigmaticItemCooldown=3 + + # Damage reduction of shield generated by Etherium Armor. Defined as percentage. [range: 0 ~ 100, default: 50, synchronized: yes] + I:EtheriumArmorShieldReduction=50 + + # The value of health to which player wearing full Etherium Armor set should be brough to activate the shield ability. Defined as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:EtheriumArmorShieldThreshold=40 + + # The volume Etherium Waraxe AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:EtheriumAxeMiningVolume=3 + + # The depth of Etherium Pickaxe AOE mining. [range: 0 ~ 127, default: 1, synchronized: yes] + I:EtheriumPickaxeMiningDepth=1 + + # The radius of Etherium Pickaxe AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:EtheriumPickaxeMiningRadius=3 + + # The volume Etherium Scythe AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:EtheriumScytheMiningVolume=3 + + # The depth of Etherium Shovel AOE mining. [range: 0 ~ 127, default: 1, synchronized: yes] + I:EtheriumShovelMiningDepth=1 + + # The radius of Etherium Shovel AOE mining. Set to -1 to disable the feature. [range: -1 ~ 127, default: 3, synchronized: yes] + I:EtheriumShovelMiningRadius=3 + + # Cooldown of Etherium Broadsword ability. Measured in ticks. [range: 0 ~ 32768, default: 40, synchronized: yes] + I:EtheriumSwordCooldown=40 + + # Attack damage increase for next attack after using active ability. Defined as percentage. [range: 0 ~ 32768, default: 150, synchronized: yes] + I:EyeOfNebulaAttackEmpower=150 + + # Active ability cooldown for Eye of the Nebula. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 60, synchronized: yes] + I:EyeOfNebulaCooldown=60 + + # Probability for Eye of the Nebula to teleport it's bearer from any attack without receiving any damage. Defined as percentage. [range: 0 ~ 100, default: 15, synchronized: yes] + I:EyeOfNebulaDodgeChance=15 + + # Range in which Eye of the Nebula searches for a position to teleport it's bearer to when dodging the attack. [range: 1.0 ~ 128.0, default: 16.0, synchronized: yes] + D:EyeOfNebulaDodgeRange=16.0 + + # Magic Damage boost provided by Eye of the Nebula. Defined as percentage. [range: 0 ~ 32768, default: 40, synchronized: yes] + I:EyeOfNebulaMagicBoost=40 + + # Magic Damage resistance provided by Eye of the Nebula. Defined as percentage. [range: 0 ~ 100, default: 65, synchronized: yes] + I:EyeOfNebulaMagicResistance=65 + + # Range in which Eye of the Nebula can reach an entity when using it's active ability. [range: 1.0 ~ 128.0, default: 32.0, synchronized: yes] + D:EyeOfNebulaPhaseRange=32.0 + + # Default chance to behead an enemy with Axe of Executioner. Defined as percentage. [range: 0 ~ 100, default: 10, synchronized: yes] + I:ForbiddenAxeBeheadingBase=10 + + # Bonus percantage to beheading chance from each Looting level applied to Axe of Executioner. [range: 0 ~ 100, default: 5, synchronized: yes] + I:ForbiddenAxeBeheadingBonus=5 + + # Multiplier for duration of debuffs applied upon consumption of The Forbidden Fruit. Setting it to 0 will disable debuffs entirely. [range: 0.0 ~ 32768.0, default: 1.0, synchronized: yes] + D:ForbiddenFruitDebuffDurationMultiplier=1.0 + + # How much should be subtracted from regeneration of player who have consumed The Forbidden Fruit. [range: 0 ~ 100, default: 80, synchronized: yes] + I:ForbiddenFruitRegenerationSubtraction=80 + + # Active ability cooldown for Heart of the Golem. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:GolemHeartCooldown=0 + + # Default amount of armor points provided by Heart of the Golem. [range: 0.0 ~ 256.0, default: 4.0, synchronized: yes] + D:GolemHeartDefaultArmor=4.0 + + # List of items that should not be counted as armor by Heart of the Golem, even when equipped in armor slots. [default: [minecraft:elytra], [enigmaticlegacy:enigmatic_elytra], synchronized: no] + S:GolemHeartExcludedArmor < + minecraft:elytra + enigmaticlegacy:enigmatic_elytra + > + + # Resistance to explosion damage provided by Heart of the Golem. Defined as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:GolemHeartExplosionResistance=40 + + # Resistance to knockback provided by Heart of the Golem. Defined as percentage. [range: 0 ~ 100, default: 100, synchronized: yes] + I:GolemHeartKnockbackResistance=100 + + # Resistance to melee attacks provided by Heart of the Golem. Defined as percentage. [range: 0 ~ 100, default: 25, synchronized: yes] + I:GolemHeartMeleeResistance=25 + + # The amount of armor points provided by Heart of the Golem when it's bearer has no armor equipped. [range: 0.0 ~ 256.0, default: 16.0, synchronized: yes] + D:GolemHeartSuperArmor=16.0 + + # The amount of armor toughness provided by Heart of the Golem when it's bearer has no armor equipped. [range: 0.0 ~ 256.0, default: 4.0, synchronized: yes] + D:GolemHeartSuperArmorToughness=4.0 + + # Modifier for Magic Damage vulnerability applied by Heart of the Golem. Default value of 2.0 means that player will receive twice as much damage from magic. [range: 1.0 ~ 256.0, default: 2.0, synchronized: yes] + D:GolemHeartVulnerabilityModifier=2.0 + + # Damage boost granted by the Growing Bloodlust, per level of effect. [range: 0.0 ~ 100.0, default: 0.05, synchronized: yes] + D:GrowingBloodlustDamageBoost=0.05 + + # How much health Growing Bloodlust leaves the player with, as a fraction of max health. [range: 0.0 ~ 32768.0, default: 0.3, synchronized: yes] + D:GrowingBloodlustHealthLossLimit=0.3 + + # How often the player loses 1 HP at level one of Growing Bloodlust, in ticks. [range: 0 ~ 32768, default: 160, synchronized: yes] + I:GrowingBloodlustHealthLossTicks=160 + + # Lifesteal granted by the Growing Bloodlust, per level of effect. [range: 0.0 ~ 100.0, default: 0.025, synchronized: yes] + D:GrowingBloodlustLifestealBoost=0.025 + + # How lock the The Voracious Pan needs to be held, in ticks, to increase the strength of the Growing Bloodlust effect by one level. [range: 0 ~ 32768, default: 300, synchronized: yes] + I:GrowingBloodlustTicksPerLevel=300 + + # Damage boost granted by the Growing Hunger, per level of effect. [range: 0.0 ~ 100.0, default: 0.1, synchronized: yes] + D:GrowingHungerDamageBoost=0.1 + + # Exhaustion applied by Growing Hunger every 4 ticks, per level of effect. [range: 0.0 ~ 32768.0, default: 0.5, synchronized: yes] + D:GrowingHungerExhaustionGain=0.5 + + # How lock the The Voracious Pan needs to be held, in ticks, to increase the strength of the Growing Hunger effect by one level. [range: 0 ~ 32768, default: 300, synchronized: yes] + I:GrowingHungerTicksPerLevel=300 + + # Range of active/passive abilities of Heart of the Guardian. [range: 0 ~ 32768, default: 24, synchronized: yes] + I:GuardianHeartAbilityRange=24 + + # Cooldown of enraging ability of Heart of the Guardian. Measured in ticks. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:GuardianHeartActiveAbilityCooldown=200 + + # Range in which monster enraged by active ability of Heart of the Guardian will seek new target. Monsters within this range will target enraged monster back. [range: 0 ~ 32768, default: 12, synchronized: yes] + I:GuardianHeartEnrageRange=12 + + # Multiplier for experience consumption by Gift of the Heaven. [range: 0.0 ~ 32768.0, default: 1.0, synchronized: yes] + D:HeavenScrollXPCostModifier=1.0 + + # The range in which Guide to Feral Hunt will redirect damage from pet to it's owner. [range: 0 ~ 32768, default: 24, synchronized: yes] + I:HunterGuideEffectiveDistance=24 + + # The percantage subtracted from damage redirected by Guide to Feral Hunt, if Guide to Animal Companionship is also possessed. [range: 0 ~ 100, default: 50, synchronized: yes] + I:HunterGuideSynergyDamageReduction=50 + + # Inverts the Shift behaviour of Magnetic Ring and Dislocation Ring. [default: false, synchronized: yes] + B:MagnetRingInvertShift=false + + # The radius in which Magnetic Ring will attract items. [range: 1 ~ 256, default: 8, synchronized: yes] + I:MagnetRingRange=8 + + # Radius in which Exptrapolated Megaspong absorbs water. Default 4 equals to vanilla sponge [range: 0 ~ 128, default: 4, synchronized: yes] + I:MegaspongeRadius=4 + + # Mining speed boost granted by Charm of Treasure Hunter. Defined as percentage. [range: 0 ~ 1000, default: 30, synchronized: yes] + I:MiningCharmBreakSpeed=30 + + # Whether Night Vision ability of Charm of Treasure Hunter should be enabled. [default: true, synchronized: yes] + B:MiningCharmEnableNightVision=true + + # Additional block reach granted by Charm of Treasure Hunter. [range: 0.0 ~ 16.0, default: 2.15, synchronized: yes] + D:MiningCharmReachDistance=2.15 + + # Whether or not Emblem of Monster Slayer should provide +1 Looting Level. [default: true, synchronized: yes] + B:MonsterCharmBonusLooting=true + + # Whether or not Emblem of Monster Slayer should provide double experience drop from monsters. [default: true, synchronized: yes] + B:MonsterCharmDoubleXP=true + + # Damage bonus against agressive creatures for Emblem of Monster Slayer. Defined as percentage. [range: 0 ~ 1000, default: 10, synchronized: yes] + I:MonsterCharmHostileDamage=10 + + # Damage bonus against undead enemies for Emblem of Monster Slayer. Defined as percentage. [range: 0 ~ 1000, default: 25, synchronized: yes] + I:MonsterCharmUndeadDamage=25 + + # Hard cap for Keystone of The Oblivion. When it's reached, you will no longer be able to add new items to it's list via crafting. Required to prevent potential perfomance issues with ridiculously large lists. [range: 1 ~ 32768, default: 100, synchronized: yes] + I:OblivionStoneHardcap=100 + + # Soft cap for Keystone of The Oblivion. When it's reached, the list view seen in it's Ctrl tooltip will be fixed at this amount of items, and become chaotic and unreadable. Required since monitors are not infinitely large these days. [range: 1 ~ 32768, default: 25, synchronized: yes] + I:OblivionStoneSoftcap=25 + + # Active ability cooldown for Will of the Ocean. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 600, synchronized: yes] + I:OceanStoneCooldown=600 + + # Swimming speed boost provided by Will of the Ocean. Defined as percentage. [range: 0 ~ 1000, default: 200, synchronized: yes] + I:OceanStoneSwimBoost=200 + + # Damage resistance against underwater creatures provided by Will of the Ocean. Defined as percentage. [range: 0 ~ 100, default: 40, synchronized: yes] + I:OceanStoneUnderwaterCreaturesResistance=40 + + # Multiplier for experience consumption by active ability of Will of the Ocean. [range: 0.0 ~ 1000.0, default: 1.0, synchronized: yes] + D:OceanStoneXPCostModifier=1.0 + + # Whether or not it should be allowed to equip multiple spellstones if they are different items, granted player somehow gets more than one spellstone slot. [default: false, synchronized: yes] + B:SpellstonesMultiequip=false + + # The radius in which Dislocation Ring will collect items. [range: 1 ~ 256, default: 16, synchronized: yes] + I:SuperMagnetRingRange=16 + + # Whether or not Dislocation Ring should play sound effect when teleporting items to player. [default: false, synchronized: yes] + B:SuperMagnetRingSound=false + + # Attack damage of The Infinitum, actual damage shown in tooltip will be is 1 + this_value. [range: 0.0 ~ 32768.0, default: 15.0, synchronized: yes] + D:TheInfinitumAttackDamage=15.0 + + # Attack speed of The Infinitum. [range: -32768.0 ~ 32768.0, default: -2.0, synchronized: yes] + D:TheInfinitumAttackSpeed=-2.0 + + # Attack damage bonus of The Infinitum against players and bosses. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:TheInfinitumBossDamageBonus=200 + + # Knockback bonus of The Infinitum. For Phantoms, this value is multiplied by 1.5. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:TheInfinitumKnockbackPowerBonus=200 + + # Lifesteal bonus of The Infinitum. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:TheInfinitumLifestealBonus=10 + + # Chance of lethal damage prevention when holding The Infinitum. [range: 0 ~ 100, default: 85, synchronized: yes] + I:TheInfinitumUndeadProbability=85 + + # Attack damage of The Twist, actual damage shown in tooltip will be is 1 + this_value. [range: 0.0 ~ 32768.0, default: 8.0, synchronized: yes] + D:TheTwistAttackDamage=8.0 + + # Attack speed of The Twist. [range: -32768.0 ~ 32768.0, default: -1.8, synchronized: yes] + D:TheTwistAttackSpeed=-1.8 + + # Attack damage bonus of The Twist against players and bossess. [range: 0 ~ 32768, default: 300, synchronized: yes] + I:TheTwistBossDamageBonus=300 + + # Knockback bonus of The Twist. For Phantoms, this value is multiplied by 1.5. [range: 0 ~ 32768, default: 300, synchronized: yes] + I:TheTwistKnockbackPowerBonus=300 + + # Base damage dealt by Darkness every half a second, when it devours a creature in proximity of bearer of the pearl. [range: 0.0 ~ 1000.0, default: 4.0, synchronized: yes] + D:VoidPearlBaseDarknessDamage=4.0 + + # Active ability cooldown for Pearl of the Void. Measured in ticks. 20 ticks equal to 1 second. [range: 0 ~ 32768, default: 0, synchronized: yes] + I:VoidPearlCooldown=0 + + # Modifier for slowing down player's regeneration when bearing the pearl. This includes natural regeneration, as well as artificial healing effects that work over time. The greater it is, the slower player will regenerate. [range: 0.0 ~ 1000.0, default: 1.0, synchronized: yes] + D:VoidPearlRegenerationModifier=1.0 + + # Range in which Pearl of the Void will force darkness to devour living creatures. [range: 0.0 ~ 128.0, default: 16.0, synchronized: yes] + D:VoidPearlShadowRange=16.0 + + # Chance for Pearl of the Void to prevent it's bearer death from receiving lethal amout of damage. Defined as percentage. [range: 0 ~ 100, default: 35, synchronized: yes] + I:VoidPearlUndeadChance=35 + + # Level of Withering that bearer of the pearl will apply to entitities they attack. [range: 0 ~ 3, default: 2, synchronized: yes] + I:VoidPearlWitheringLevel=2 + + # Amout of ticks for which bearer of the pearl will apply Withering effect to entities they attack. 20 ticks equals to 1 second. [range: 0 ~ 32768, default: 100, synchronized: yes] + I:VoidPearlWitheringTime=100 + + # Range in which Scroll of Ageless Wisdom collects experience orbs when active. [range: 1.0 ~ 128.0, default: 16.0, synchronized: yes] + D:XPScrollCollectionRange=16.0 +} + + +########################################################################################################## +# Generic Config +#--------------------------------------------------------------------------------------------------------# +# Some different stuff +########################################################################################################## + +"Generic Config" { + # List of entities that should be accounted for as bosses by The Twist and The Infinitum. Changing this option requires game restart to take effect. [default: [minecraft:ender_dragon], [minecraft:wither], [minecraft:elder_guardian], synchronized: no] + S:CompleteBossList < + minecraft:ender_dragon + minecraft:wither + minecraft:elder_guardian + > + + # Maximum amount of Soul Crystals a player can lose before they won't drop anymore. If set to 10 - player can loose all of them, and doing so will result in permadeath. Each crystal lost subtracts 10% of from their maximum possible health value. [range: 1 ~ 10, default: 9, synchronized: no] + I:MaxSoulCrystalLoss=9 + + # Soul Crystals mechanic mode. 0 - disabled unless enforced by specific in-game items; 1 - also enabled when keepInventory is true; 2 - always enabled. [range: 0 ~ 2, default: 0, synchronized: no] + I:SoulCrystalsMode=0 +} + + +########################################################################################################## +# Save the Bees +#--------------------------------------------------------------------------------------------------------# +# This category exists solely because of Jusey1z who really wanted to protect his bees. +# Btw Jusey, when I said 'very cute though', I meant you. Bees are cute either of course. +########################################################################################################## + +"Save the Bees" { + # If true, bees will never affected by the Second Curse of Ring of the Seven Curses. [default: false, synchronized: yes] + B:CursedRingDontTouchMyBees=true +} + + +########################################################################################################## +# The Seven Curses +#--------------------------------------------------------------------------------------------------------# +# Config options directly affecting Ring of the Seven Curses +########################################################################################################## + +"The Seven Curses" { + # How much less effective armor will be for those who bear the ring. Measured as percetage. [range: 0 ~ 100, default: 30, synchronized: yes] + I:CursedRingArmorDebuff=50 + + # If true, Ring of the Seven Curses will be equipped into player's ring slot right away when it enters their inventory. This is different from ultra hardcore option as the way through which ring ends up in player's inventory does not matter. [default: false, synchronized: yes] + B:CursedRingAutoEquip=false + + # Set to false to disable ALL special drops that can be obtained from vanilla mobs when bearing Ring of the Seven Curses. [default: true, synchronized: yes] + B:CursedRingEnableSpecialDrops=true + + # How much additional Enchanting Power ring provides in Enchanting Table. [range: 0 ~ 32768, default: 10, synchronized: yes] + I:CursedRingEnchantingBonus=10 + + # Allows to adjust how frequently Endermen will try to randomly teleport to player bearing the ring, even if they can't see the player and are not angered yet. Lower value = less probability of this happening. [range: 0.01 ~ 32768.0, default: 1.0, synchronized: yes] + D:CursedRingEndermenRandomportFrequency=1.0 + + # Range in which Endermen can try to randomly teleport to bearers of the ring. [range: 8.0 ~ 32768.0, default: 32.0, synchronized: yes] + D:CursedRingEndermenRandomportRange=32.0 + + # How much experience will drop from mobs to bearers of the ring, measured in percents. [range: 0 ~ 32768, default: 400, synchronized: yes] + I:CursedRingExperienceBonus=400 + + # How many bonus Fortune levels ring provides [range: 0 ~ 32768, default: 1, synchronized: yes] + I:CursedRingFortuneBonus=1 + + # How much knockback bearers of the ring take, measured in percents. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:CursedRingKnockbackDebuff=200 + + # How many bonus Looting levels ring provides [range: 0 ~ 32768, default: 1, synchronized: yes] + I:CursedRingLootingBonus=1 + + # How much damage monsters receive from bearers of the ring will be decreased, in percents. [range: 0 ~ 32768, default: 50, synchronized: yes] + I:CursedRingMonsterDamageDebuff=50 + + # List of entities that should never be affected by the Second Curse of Ring of the Seven Curses. Examples: minecraft:iron_golem, minecraft:zombified_piglin. Changing this option required game restart to take effect. [default: , synchronized: no] + S:CursedRingNeutralAngerBlacklist < + > + + # Range in which neutral creatures are angered against bearers of the ring. [range: 4.0 ~ 32768.0, default: 24.0, synchronized: yes] + D:CursedRingNeutralAngerRange=24.0 + + # Range in which neutral creatures can see and target bearers of the ring even if they can't directly see them. [range: 0.0 ~ 32768.0, default: 4.0, synchronized: yes] + D:CursedRingNeutralXRayRange=4.0 + + # Defines how much damage bearers of the ring receive from any source. Measured as percentage. [range: 0 ~ 32768, default: 200, synchronized: yes] + I:CursedRingPainModifier=200 + + # A fraction of time the player should bear the Seven Curses to use Abyssal Artifacts. [range: 0.0 ~ 32768.0, default: 0.995, synchronized: yes] + D:CursedRingSuperCursedTime=0.995 + + # If true, Ring of the Seven Curses will be equipped into player's ring slot right away when entering a new world, instead of just being added to their inventory. [default: false, synchronized: yes] + B:CursedRingUltraHardcore=false + + # Set to true to prevent curse of insomnia from actually doing anything. [default: false, synchronized: yes] + B:CursedRingdisableInsomnia=false +} + + diff --git a/minecraft/config/entangled-common.toml b/minecraft/config/entangled-common.toml new file mode 100644 index 0000000..c148b32 --- /dev/null +++ b/minecraft/config/entangled-common.toml @@ -0,0 +1,22 @@ +[Client] + # When looking at an Entangled Block, should its bound block be highlighted? + # Allowed values: true, false - Default: true + renderBlockHighlight = true + + # Should the block rendered inside entangled blocks rotate? + # Allowed values: true, false - Default: true + rotateRenderedBlock = true + +[General] + # Can entangled blocks be bound between different dimensions? Previously bound entangled blocks won't be affected. + # Allowed values: true, false - Default: true + allowDimensional = true + + # What is the max range in which entangled blocks can be bound? Only affects blocks in the same dimension. -1 for infinite range. Previously bound entangled blocks won't be affected. + # Allowed range: -1 ~ 2147483647 - Default: -1 + maxDistance = -1 + + # Should the `entangled:invalid_targets` tag be treated as a whitelist rather than a blacklist? If true, entangled blocks can only be bound to blocks in the tag. + # Allowed values: true, false - Default: false + useWhitelist = false + diff --git a/minecraft/config/environmental-client.toml b/minecraft/config/environmental-client.toml new file mode 100644 index 0000000..a26d24d --- /dev/null +++ b/minecraft/config/environmental-client.toml @@ -0,0 +1,7 @@ + +[mobs] + + [mobs.chicken] + #If Chickens have a different texture when they are babies + "Baby chicken texture" = true + diff --git a/minecraft/config/environmental-common.toml b/minecraft/config/environmental-common.toml new file mode 100644 index 0000000..542b575 --- /dev/null +++ b/minecraft/config/environmental-common.toml @@ -0,0 +1,71 @@ + +[mobs] + + [mobs.deer] + #If Deer can reproduce and spread flowers by feeding them an Apple followed by a flower + "Deer flower reproducing" = true + #The chance Deer have to spawn with Antlers; 0.0 for never, 1.0 for always + #Range: 0.0 ~ 1.0 + "Deer Antler chance" = 0.5 + + [mobs.koi] + #Make Koi only block natural spawns + "Block only natural spawns" = true + #Horizontal radius of Serenity effect in blocks + #Range: > 0 + "Horizontal serenity range (radius)" = 32 + #Vertical radius of Serenity effect in blocks + #Range: > 0 + "Vertical serenity range (radius)" = 8 + #If Koi exude Serenity as a potion effect + "Serenity potion effect" = true + + [mobs.pig] + #If Pigs hunt for Truffles when given a Golden Carrot + "Pigs hunt Truffles" = true + #If Pigs should spawn more Piglets upon breeding + "Larger Pig litters" = true + #If Pigs can be made muddy by walking in Mud or being hit with Mud Balls + "Muddy Pigs" = true + + [mobs.pig.larger_litters] + #The minimum amount of piglets that can spawn in addition to the original child + #Range: > 0 + "Minimum additional piglets" = 1 + #The maximum amount of piglets that can spawn in addition to the original child + #Range: > 0 + "Maximum additional piglets" = 3 + + [mobs.pig.muddy_pigs] + #If Pigs naturally spawn muddy in swampy biomes + "Natural Muddy Pigs" = true + #The chance that a Muddy Pig has to spawn with a decoration, such as a flower + #Range: 0.0 ~ 1.0 + "Muddy Pig decoration chance" = 0.2 + #If Muddy Pigs can be decorated with various flowers, saplings, and plants + "Decoratable Muddy Pigs" = true + #If Muddy Pigs become dry naturally over time + "Muddy Pigs dry over time" = true + #If Muddy Pigs only naturally dry when in the Nether + "Muddy Pigs only dry in the Nether" = false + #If dry Muddy Pigs should become wet again when in water + "Muddy Pigs get wet in water" = true + #If dry Muddy Pigs should become wet again when in rain + "Muddy Pigs get wet in rain" = true + + [mobs.hoglin] + #If Hoglins should spawn more babies upon breeding + "Larger Hoglin litters" = true + + [mobs.hoglin.larger_litters] + #The minimum amount of baby hoglins that can spawn in addition to the original child + #Range: > 0 + "Minimum additional babies" = 1 + #The maximum amount of baby hoglins that can spawn in addition to the original child + #Range: > 0 + "Maximum additional babies" = 2 + +[blocks] + #Cacti generate with a Cactus Bobble on top to prevent natural growth + "Cactus bobble" = true + diff --git a/minecraft/config/equipmentcompare-common.toml b/minecraft/config/equipmentcompare-common.toml new file mode 100644 index 0000000..7d16fdd --- /dev/null +++ b/minecraft/config/equipmentcompare-common.toml @@ -0,0 +1,33 @@ + +#Client Configuration +[client] + + [client.visual_options] + # The maximum number of comparison tooltips to show onscreen at once. + #Range: 1 ~ 10 + max_comparisons = 3 + # If badge_text should override the built-in translatable text. + override_badge_text = false + # The text shown on the badge above equipped tooltips. + badge_text = "Equipped" + # The color of the text shown on the badge above equipped tooltips. + #Range: 0 ~ 4294967295 + badge_text_color = 4294967295 + # The background color of the "equipped" badge. + #Range: 0 ~ 4294967295 + badge_bg = 4027584512 + # The start border color of the "equipped" badge. + #Range: 0 ~ 4294967295 + badge_border_start = 3500839187 + # The end border color of the "equipped" badge. + #Range: 0 ~ 4294967295 + badge_border_end = 1623360778 + + [client.control_options] + # If the comparison tooltip should show by default (pressing bound key hides). + default_on = false + # If tool comparisons should compare only the same types of tools (can't compare a sword to an axe, for example). + strict = false + # Blacklist of items to show comparisons for. Add item IDs to prevent them from being compared when hovered over or equipped. + blacklist = [] + diff --git a/minecraft/config/essentials-client.toml b/minecraft/config/essentials-client.toml new file mode 100644 index 0000000..0d8cb37 --- /dev/null +++ b/minecraft/config/essentials-client.toml @@ -0,0 +1,7 @@ +#Should the Wrench show up in the creative menu? +creative_wrench = true +#How should very large and small numbers be displayed? +#Options are: NORMAL, SCIENTIFIC, ENGINEERING, and HEX +#Allowed Values: NORMAL, SCIENTIFIC, ENGINEERING, HEX +num_display = "SCIENTIFIC" + diff --git a/minecraft/config/essentials-server.toml b/minecraft/config/essentials-server.toml new file mode 100644 index 0000000..52f9cea --- /dev/null +++ b/minecraft/config/essentials-server.toml @@ -0,0 +1,18 @@ +#Range of the Brazier anti-witch effect +#Set to 0 to disable +#Range: 0 ~ 512 +brazier_range = 64 +#Maximum Transport Chutes in a line +#Range: 0 ~ 128 +chute_limit = 16 +#Percent of normal speed Fertile Soil should work at +#Set to 0 to disable +#Range: 0.0 ~ 100.0 +fertile_rate = 100.0 +#Range of signals through Circuit Wire +#Range: 1 ~ 128 +redstone_range = 16 +#Range of signals through Redstone Receivers/Transmitters +#Range: 0 ~ 128 +wireless_range = 32 + diff --git a/minecraft/config/euphoria_patcher/settings.toml b/minecraft/config/euphoria_patcher/settings.toml new file mode 100644 index 0000000..85feef7 --- /dev/null +++ b/minecraft/config/euphoria_patcher/settings.toml @@ -0,0 +1,50 @@ +# This file stores configuration options for the Euphoria Patcher mod +# Made for version 1.9.3 +# Thank you for using Euphoria Patches - SpacEagle17 + +[display] + # Option for the sodium message popup logging. + # Default = true + doPopUpLogging = false + + # Option that enables or disables the in-game shader messages, for example an update message made by the shader itself. Only works on Iris or Oculus + # Default = true + doDisplayShaderInGameMessage = false + +[updates] + # Option which determines what updates the update checker considers. + # Update checker mode: 'important' (critical or big updates only), 'all' (all updates), 'none' (disabled). + # Uses the Modrinth API to fetch update information. + # Default = important + doUpdateChecking = "important" + +[maintenance] + # Option that automatically renames outdated Euphoria Patches folders and config files to a new name. + # This makes it easier for users to identify which ones are outdated. + # Default = true + doRenameOldShaderFiles = false + + # Option that automatically deletes outdated Euphoria Patches folders and config files. + # Default = false + doDeleteOldShaderFiles = true + +[debug] + # Option that enables or disables debug logging. Alternatively, one can also set the JVM argument -DebugEP=true/false which takes priority over this setting. + # Default = false + doDebugLogging = false + +[advanced] + # Here one can set alternative Shader Names which will also be generated alongside the normal one. + # This is useful if you want multiple different settings you can quickly switch between + # Default = Empty String, which means no alternative names will be generated. + # In case of multiple names, separate them with a comma + # You can also use {baseVersion} or {patchVersion} in names to insert the base shader or Euphoria Patches version. + # Example: Euphoria Saturated, Comp_{baseVersion} + EP_{patchVersion} Dark Settings, EP High Performance, etc... + alternativeShaderNames = "" + + # Option that enables or disables automatic merging of the fragmented block.properties files into the main block.properties file. + # The properties files inside "Euphoria Patches/shaders/properties/" will be merged into a single block.properties file at the specified interval if any of them have changed. + # This helps organizing the files, reduces the number of entries in a single file and improves speed while editing them. + # Since they are merged automatically into the final block.properties file, the individual files can be edited without worrying about merge conflicts or losing changes. + # Default = false + autoMergeBlockProperties = false diff --git a/minecraft/config/experienceobelisk-common.toml b/minecraft/config/experienceobelisk-common.toml new file mode 100644 index 0000000..94e4b13 --- /dev/null +++ b/minecraft/config/experienceobelisk-common.toml @@ -0,0 +1,131 @@ + +["Allowed Experience Fluids"] + #Add IDs of fluids you want the obelisk to support here in the form mod_id:fluid_name. Fluids have to be tagged forge:experience. + AllowedFluids = ["mob_grinding_utils:fluid_xp", "cofh_core:experience", "industrialforegoing:essence", "sophisticatedcore:xp_still", "enderio:xp_juice"] + +["Experience Obelisk Capacity"] + #The fluid capacity of the obelisk in mB. Default = 100000000, which is ~1072 levels' worth. Ensure that the new value is divisible by 20. + #Warning: setting this value above the default may lead to unintended loss or gain of XP. This is due to a rounding error in Minecraft's XP handling + #Range: 1000 ~ 2147483640 + Capacity = 100000000 + +["Allowed Experience Items"] + #Add IDs of items you want the fountain to support here in the form mod_id:item_name = value in experience points. + #Whitelisted items will be able to be converted to Cognitium by right-clicking / shift-right-clicking a bound fountain. + #This list has to be identical on both client and server for valid items to be viewed in JEI + AllowedItems = ["forbidden_arcanus:xpetrified_orb = 91.0f", "mysticalagriculture:experience_droplet = 12.5f", "actuallyadditions:solidified_experience = 8.0f"] + +["Enlightened Amulet"] + #The range of the enlightened amulet in blocks. Accepts decimals. Default = 8.0. + #Range: 1.0 ~ 16.0 + Range = 8.0 + #Whether the enlightened amulet ignores orbs spawned by Experience Fountains. Default = true + Ignores = true + #Whether the enlightened amulet ignores orbs spawned by Infected Bookshelves. Default = false + IgnoresBookshelfOrbs = false + +["Staff of Attunement Range"] + #The binding range of the Staff of Attunement & Memory Tablet in blocks. Accepts decimals. Default = 48.0. + #Lower this if you experience issues with bound blocks not working correctly. + #Range: 4.0 ~ 100.0 + Range = 48.0 + +["Metamorpher Name Formatting Recipes"] + #Whether custom recipes that allow for the changing of item name color & formatting are enabled. Default = true + Formatting = true + +["Fluorescent Jelly"] + #How many hunger points Fluorescent Jelly gives the player. Set to 0 to disable eating completely. Default = 2 + Nutrition = 2 + #How much saturation Fluorescent Jelly gives the player. Default = 1.0 + Saturation = 1.0 + +["Cognitive Bow"] + #Whether to show the projectile velocity & accuracy boost in the tooltip. Default = true + #Disable this if tooltip components are being displayed in the wrong order. + Show = true + +["Bookshelf Settings"] + #The chance that infected bookshelves of any kind drop Forgotten Dust upon decaying. Default = 0.5 + #Set this value to 0.0 to prevent drops from decaying bookshelves completely + #Range: 0.0 ~ 1.0 + DropDustChance = 0.5 + #Whether Infected Bookshelves are permeable to Forgotten Dust item entities. Default = false + ShelvesPermeableToDust = false + + ["Bookshelf Settings"."Infected Bookshelves"] + #The minimum spawn delay of Infected Bookshelves in ticks. Default = 300 + #Range: 1 ~ 10000 + SpawnDelayMin = 300 + #The maximum spawn delay of Infected Bookshelves in ticks. Default = 500 + #Range: 1 ~ 10000 + SpawnDelayMax = 500 + #The XP value of spawned orbs. Default = 12 + #Range: 1 ~ 32767 + OrbValue = 12 + #The number of spawns until the bookshelf decays. Default = 50 + #Range: 1 ~ 10000 + Spawns = 50 + #The chance for an Infected Bookshelf to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + Infectivity = 0.02 + + ["Bookshelf Settings"."Infected Enchanted Bookshelves"] + #The minimum spawn delay of Enchanted Bookshelves in ticks. Default = 100 + #Range: 1 ~ 10000 + SpawnDelayMin = 300 + #The maximum spawn delay of Enchanted Bookshelves in ticks. Default = 300 + #Range: 1 ~ 10000 + SpawnDelayMax = 500 + #The XP value of spawned orbs. Default = 24 + #Range: 1 ~ 32767 + OrbValue = 24 + #The number of spawns until the bookshelf decays. Default = 100 + #Range: 1 ~ 10000 + Spawns = 100 + #The chance for an Enchanted Bookshelf to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + Infectivity = 0.02 + + ["Bookshelf Settings"."Infected Archiver's Bookshelves"] + #The minimum spawn delay of Archiver's Bookshelves in ticks. Default = 180 + #Range: 1 ~ 10000 + SpawnDelayMin = 300 + #The maximum spawn delay of Archiver's Bookshelves in ticks. Default = 220 + #Range: 1 ~ 10000 + SpawnDelayMax = 500 + #The XP value of spawned orbs. Default = 12 + #Range: 1 ~ 32767 + OrbValue = 12 + #The number of spawns until the bookshelf decays. Default = 50 + #Range: 1 ~ 10000 + Spawns = 100 + #The chance for an Archiver's Bookshelf to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + Infectivity = 0.02 + +["Agar Settings"] + #The bonus that Insightful & Extravagant Agar apply to bookshelves sharing a face. Default = 1.35 + #Range: 0.0 ~ 4.0 + AgarFaceBonus = 1.35 + #The bonus that Insightful & Extravagant Agar apply to bookshelves sharing an edge. Default = 1.15 + #Range: 0.0 ~ 4.0 + AgarEdgeBonus = 1.15 + #The bonus that Insightful & Extravagant Agar apply to bookshelves sharing a vertex. Default = 1.10 + #Range: 0.0 ~ 4.0 + AgarVertexBonus = 1.1 + #Whether or not Agar blocks emit light. Default = true. + #Set this to false if you are using intensive shader settings and are experiencing fps drops. + AgarEmitsLight = true + #Whether Agar blocks are permeable to Forgotten Dust item entities. Default = false + ShelvesPermeableToDust = false + #The chance for a Nutrient Agar block to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + NutrientAgarInfectivity = 0.005 + #The chance for an Insightful Agar block to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + InsightfulAgarInfectivity = 0.01 + #The chance for an Extravagant Agar block to infect a valid adjacent block every second. + #Range: 0.0 ~ 1.0 + ExtravagantAgarInfectivity = 0.02 + diff --git a/minecraft/config/explorerscompass-client.toml b/minecraft/config/explorerscompass-client.toml new file mode 100644 index 0000000..824c51d --- /dev/null +++ b/minecraft/config/explorerscompass-client.toml @@ -0,0 +1,13 @@ + +[Client] + #Displays Explorer's Compass information on the HUD even while chat is open. + displayWithChatOpen = true + #Attempts to translate structure names before fixing the unlocalized names. Translations may not be available for all structures. + translateStructureNames = true + #The line offset for information rendered on the HUD. + #Range: 0 ~ 50 + overlayLineOffset = 1 + #The side for information rendered on the HUD. Ex: LEFT, RIGHT + #Allowed Values: LEFT, RIGHT + overlaySide = "LEFT" + diff --git a/minecraft/config/explorerscompass-common.toml b/minecraft/config/explorerscompass-common.toml new file mode 100644 index 0000000..8cac3ae --- /dev/null +++ b/minecraft/config/explorerscompass-common.toml @@ -0,0 +1,26 @@ + +[General] + #Allows a player to teleport to a located structure when in creative mode, opped, or in cheat mode. + allowTeleport = true + #Allows players to view the precise coordinates and distance of a located structure on the HUD, rather than relying on the direction the compass is pointing. + displayCoordinates = true + #The maximum radius that will be searched for a structure. Raising this value will increase search accuracy but will potentially make the process more resource intensive. + #Range: 0 ~ 1000000 + maxRadius = 10000 + #A list of structures that the compass will not display in the GUI and will not be able to search for. Wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:stronghold", "minecraft:endcity", "minecraft:*village*"] + structureBlacklist = [] + #The maximum number of samples to be taken when searching for a structure. + #Range: 0 ~ 100000000 + maxSamples = 100000 + #The maximum number of times a player can search for the next instance of a located structure, excluding already-found locations. Set to 0 to disable searching for additional structure instances and make the compass always locate the nearest instance. + #Range: 0 ~ 10000 + maxNextSearches = 100 + #The default number of XP levels consumed when searching for a structure. Individual structures can be configured via perStructureXpLevels. + #Range: 0 ~ 3 + defaultXpLevels = 0 + #A list of per-structure XP level costs that override defaultXpLevels, specified as comma-separated "structure_id,num_levels" pairs. Structures not listed here use defaultXpLevels. Max of 3 levels. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:buried_treasure,3", "minecraft:end*,2", "minecraft:*village*,1"] + perStructureXpLevels = [] + #The number of successful structure searches before the compass breaks and must be repaired. Set to 0 to disable durability. + #Range: 0 ~ 10000 + compassDurability = 0 + diff --git a/minecraft/config/extendedcrafting-client.toml b/minecraft/config/extendedcrafting-client.toml new file mode 100644 index 0000000..80a1030 --- /dev/null +++ b/minecraft/config/extendedcrafting-client.toml @@ -0,0 +1,6 @@ + +#Client settings. +[General] + #Should the Quantum Compressor render the result item above it? + enableCompressorRenderer = true + diff --git a/minecraft/config/extendedcrafting-common.toml b/minecraft/config/extendedcrafting-common.toml new file mode 100644 index 0000000..67d84f4 --- /dev/null +++ b/minecraft/config/extendedcrafting-common.toml @@ -0,0 +1,110 @@ + +#Settings for Singularities. +[Singularities] + #Should the default recipe for the Ultimate Singularity be generated? + ultimateSingularityRecipe = true + #The default amount of items required to create a Singularity. + #Range: > 1 + defaultMaterialsRequired = 10000 + #Should default recipes be generated for Singularities? + defaultRecipes = true + #The default amount of FE required to create a Singularity. + #Range: > 0 + defaultPowerRequired = 5000000 + #Should the Singularities be enabled? + enabled = true + #The item to use as the Catalyst in default Singularity recipes. + defaultCatalyst = "extendedcrafting:ultimate_catalyst" + +#Settings for the Crafting Core. +["Combination Crafting"] + #How much FE the Crafting Core should hold. + #Range: > 0 + powerCapacity = 5000000 + #How much FE/t the Crafting Core should use when crafting by default. + #Range: > 0 + powerRate = 500 + #Should the Crafting Core be enabled? + enabled = true + +#Settings for general things. +[General] + #Should the Handheld Crafting Table be enabled? + handheldWorkbench = true + +#Settings for the Extended Crafting Tables. +["Table Crafting"] + #How much FE the Auto Crafting Tables should hold. Higher tiers use double the previous tier. + #Range: > 0 + autoTablePowerCapacity = 500000 + #How much FE the Auto Crafting Tables should use when auto inserting items. + #Range: > 0 + autoTableInsertPowerRate = 100 + #Should the Basic Crafting Table inherit vanilla crafting recipes? + useVanillaRecipes = true + #Should the Extended Crafting Tables be enabled? + enabled = true + #Should the Auto Crafting Tables be enabled? + autoTablesEnabled = true + #How much FE the Auto Crafting Tables should use when crafting. + #Range: > 0 + autoTablePowerRate = 500 + +#Settings for the Quantum Compressor. +["Quantum Compression"] + #How much FE the Quantum Compressor should hold. + #Range: > 0 + powerCapacity = 10000000 + #How much FE/t the Quantum Compressor should use when crafting by default. + #Range: > 0 + powerRate = 5000 + #Should the Quantum Compressor be enabled? + enabled = true + +#Settings for the Recipe Maker. +["Recipe Maker"] + #Should the recipe maker add NBT tags when possible? + useNBT = true + #Should the recipe maker try to use tags when possible? + useTags = false + #Should the Recipe Maker be enabled? + enabled = true + +#Settings for the Flux Crafter. +["Flux Crafting"] + #How much FE/t the Flux Crafter should pull from each Flux Alternator when crafting by default. + #Range: > 0 + defaultPowerRate = 400 + #How much FE the Flux Alternator should hold. + #Range: > 0 + powerCapacity = 80000 + #How much FE the Auto Flux Crafter should hold. + #Range: > 0 + autoCrafterPowerCapacity = 500000 + #How much FE the Auto Flux Crafter should use when auto inserting items. + #Range: > 0 + autoCrafterInsertPowerRate = 100 + #Should the Flux Crafter be enabled? + enabled = true + #Should the Auto Flux Crafter be enabled? + autoCrafterEnabled = true + +#Settings for the Ender Crafter. +["Ender Crafting"] + #How long a single Ender Crafter crafting operation should take (in seconds) by default. + #Range: > 1 + defaultTimeRequired = 60 + #How much FE the Auto Ender Crafter should hold. + #Range: > 0 + autoCrafterPowerCapacity = 500000 + #How much FE the Auto Ender Crafter should use when auto inserting items. + #Range: > 0 + autoCrafterInsertPowerRate = 100 + #How much a single Ender Alternator should speed up a craft. This is a percentage of the time required. + #Range: 0.0 ~ 1.0 + alternatorEffectiveness = 0.01 + #Should the Ender Crafter be enabled? + enabled = true + #Should the Auto Ender Crafter be enabled? + autoCrafterEnabled = true + diff --git a/minecraft/config/extendedcrafting/singularities/aluminum.json b/minecraft/config/extendedcrafting/singularities/aluminum.json new file mode 100644 index 0000000..724106e --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/aluminum.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.aluminum", + "colors": [ + "caccda", + "9a9ca6" + ], + "ingredient": { + "tag": "forge:ingots/aluminum" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/bronze.json b/minecraft/config/extendedcrafting/singularities/bronze.json new file mode 100644 index 0000000..59f450a --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/bronze.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.bronze", + "colors": [ + "d99f43", + "bb6b3b" + ], + "ingredient": { + "tag": "forge:ingots/bronze" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/coal.json b/minecraft/config/extendedcrafting/singularities/coal.json new file mode 100644 index 0000000..c14c353 --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/coal.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.coal", + "colors": [ + "363739", + "261e24" + ], + "ingredient": { + "item": "minecraft:coal" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/copper.json b/minecraft/config/extendedcrafting/singularities/copper.json new file mode 100644 index 0000000..1964f5b --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/copper.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.copper", + "colors": [ + "fa977c", + "bc5430" + ], + "ingredient": { + "item": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/diamond.json b/minecraft/config/extendedcrafting/singularities/diamond.json new file mode 100644 index 0000000..7bc1664 --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/diamond.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.diamond", + "colors": [ + "a6fce9", + "1aaca8" + ], + "ingredient": { + "item": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/electrum.json b/minecraft/config/extendedcrafting/singularities/electrum.json new file mode 100644 index 0000000..209851a --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/electrum.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.electrum", + "colors": [ + "f5f18e", + "9e8d3e" + ], + "ingredient": { + "tag": "forge:ingots/electrum" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/emerald.json b/minecraft/config/extendedcrafting/singularities/emerald.json new file mode 100644 index 0000000..0374257 --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/emerald.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.emerald", + "colors": [ + "7df8ac", + "8e1a" + ], + "ingredient": { + "item": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/glowstone.json b/minecraft/config/extendedcrafting/singularities/glowstone.json new file mode 100644 index 0000000..0d9355c --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/glowstone.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.glowstone", + "colors": [ + "ffd38f", + "a06135" + ], + "ingredient": { + "item": "minecraft:glowstone_dust" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/gold.json b/minecraft/config/extendedcrafting/singularities/gold.json new file mode 100644 index 0000000..702531b --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/gold.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.gold", + "colors": [ + "fdf55f", + "d98e04" + ], + "ingredient": { + "item": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/invar.json b/minecraft/config/extendedcrafting/singularities/invar.json new file mode 100644 index 0000000..961cddb --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/invar.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.invar", + "colors": [ + "bcc5bb", + "5d7877" + ], + "ingredient": { + "tag": "forge:ingots/invar" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/iron.json b/minecraft/config/extendedcrafting/singularities/iron.json new file mode 100644 index 0000000..555308d --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/iron.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.iron", + "colors": [ + "e1e1e1", + "6c6c6c" + ], + "ingredient": { + "item": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/lapis_lazuli.json b/minecraft/config/extendedcrafting/singularities/lapis_lazuli.json new file mode 100644 index 0000000..debc6c5 --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/lapis_lazuli.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.lapis_lazuli", + "colors": [ + "678dea", + "1b53a7" + ], + "ingredient": { + "item": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/lead.json b/minecraft/config/extendedcrafting/singularities/lead.json new file mode 100644 index 0000000..2a2e492 --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/lead.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.lead", + "colors": [ + "6c7d92", + "323562" + ], + "ingredient": { + "tag": "forge:ingots/lead" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/nickel.json b/minecraft/config/extendedcrafting/singularities/nickel.json new file mode 100644 index 0000000..8598cdb --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/nickel.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.nickel", + "colors": [ + "e1d798", + "b1976c" + ], + "ingredient": { + "tag": "forge:ingots/nickel" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/platinum.json b/minecraft/config/extendedcrafting/singularities/platinum.json new file mode 100644 index 0000000..6d23715 --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/platinum.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.platinum", + "colors": [ + "6feaef", + "57b8bc" + ], + "ingredient": { + "tag": "forge:ingots/platinum" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/redstone.json b/minecraft/config/extendedcrafting/singularities/redstone.json new file mode 100644 index 0000000..25299f4 --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/redstone.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.redstone", + "colors": [ + "ff0000", + "8a0901" + ], + "ingredient": { + "item": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/silver.json b/minecraft/config/extendedcrafting/singularities/silver.json new file mode 100644 index 0000000..fbf770f --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/silver.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.silver", + "colors": [ + "c0cdd2", + "5f6e7c" + ], + "ingredient": { + "tag": "forge:ingots/silver" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/steel.json b/minecraft/config/extendedcrafting/singularities/steel.json new file mode 100644 index 0000000..f59c84f --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/steel.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.steel", + "colors": [ + "565656", + "232323" + ], + "ingredient": { + "tag": "forge:ingots/steel" + } +} \ No newline at end of file diff --git a/minecraft/config/extendedcrafting/singularities/tin.json b/minecraft/config/extendedcrafting/singularities/tin.json new file mode 100644 index 0000000..153bacc --- /dev/null +++ b/minecraft/config/extendedcrafting/singularities/tin.json @@ -0,0 +1,10 @@ +{ + "name": "singularity.extendedcrafting.tin", + "colors": [ + "a0bebd", + "527889" + ], + "ingredient": { + "tag": "forge:ingots/tin" + } +} \ No newline at end of file diff --git a/minecraft/config/extradisks-common.toml b/minecraft/config/extradisks-common.toml new file mode 100644 index 0000000..b6492fa --- /dev/null +++ b/minecraft/config/extradisks-common.toml @@ -0,0 +1,35 @@ + +[storageblocks] + + [storageblocks.item] + #item storage blocks energy usage + #Range: > 0 + 256k = 12 + #Range: > 0 + 1024k = 14 + #Range: > 0 + 4096k = 16 + #Range: > 0 + 16384k = 18 + #Range: > 0 + 65536k = 20 + #Range: > 0 + 262144k = 22 + #Range: > 0 + 1048576k = 24 + #Range: > 0 + infinite = 26 + + [storageblocks.fluid] + #fluid storage blocks energy usage + #Range: > 0 + 16384k = 12 + #Range: > 0 + 65536k = 14 + #Range: > 0 + 262144k = 16 + #Range: > 0 + 1048576k = 18 + #Range: > 0 + infinite = 20 + diff --git a/minecraft/config/extralib/config.yml b/minecraft/config/extralib/config.yml new file mode 100644 index 0000000..109d908 --- /dev/null +++ b/minecraft/config/extralib/config.yml @@ -0,0 +1,2 @@ +# Will there be notification messages when the server starts? +notification: true diff --git a/minecraft/config/extremereactors/client.toml b/minecraft/config/extremereactors/client.toml new file mode 100644 index 0000000..b1020f3 --- /dev/null +++ b/minecraft/config/extremereactors/client.toml @@ -0,0 +1,12 @@ + +#Client only settings +[client] + #If true, disables all particle effects in the Reactor. + disableReactorParticles = false + #If true, disables all particle effects in the Turbine. + disableTurbineParticles = false + #If true, no (advanced) tooltips will be added to blocks and items that can be used inside the Reactor or Turbine or as a fuel source. + disableApiTooltips = false + #If true, no custom Patchouli components will be added and the book will stop to work correctly. Enable this if you are having problems with newer versions of Patchouli + disablePatchouliTweaks = false + diff --git a/minecraft/config/extremereactors/common.toml b/minecraft/config/extremereactors/common.toml new file mode 100644 index 0000000..e0e1ea3 --- /dev/null +++ b/minecraft/config/extremereactors/common.toml @@ -0,0 +1,126 @@ + +#Common configuration settings +[common] + + #General options + [common.general] + #A multiplier for balancing fuel consumption. + #Range: 0.5 ~ 100.0 + fuelUsageMultiplier = 1.0 + #A multiplier for balancing overall power production from Extreme Reactors generators. + #Range: 0.005 ~ 100.0 + powerProductionMultiplier = 1.0 + #Number of ticks between updates for the Redstone Port. + #Range: 10 ~ 100 + ticksPerRedstoneUpdate = 20 + + #Define how Reactors works + [common.reactor] + #The maximum valid size of a Reactor in the Y dimension, in blocks. + #Lower this if your server's players are building ginormous Reactors. + #Bigger Y sizes have far less performance impact than X/Z sizes. + #Range: 3 ~ 256 + maxReactorHeight = 48 + #The maximum valid size of a Reactor in the X/Z plane, in blocks. + #Lower this if your server's players are building ginormous Reactors. + #Range: 3 ~ 256 + maxReactorSize = 32 + #A multiplier for balancing Reactor power production. Stacks with powerProductionMultiplier. + #Range: 0.005 ~ 100.0 + reactorPowerProductionMultiplier = 1.0 + + #Define how Turbines works + [common.turbine] + #The maximum valid height of a Turbine (Y axis), in blocks. + #Range: 5 ~ 256 + maxTurbineHeight = 32 + #The maximum valid size of a Turbine in the X/Z plane, in blocks. + #Range: 5 ~ 256 + maxTurbineSize = 32 + #A multiplier for balancing rotor sizes. + #Multiplies the amount of energy lost to aerodynamic drag per tick. + #Range: 0.5 ~ 10.0 + turbineAeroDragMultiplier = 1.0 + #A multiplier for balancing coil size. + #Multiplies the amount of energy drawn per coil block per tick. + #Range: 0.5 ~ 10.0 + turbineCoilDragMultiplier = 1.0 + #A multiplier for balancing coil size. + #Multiplies the amount of fluid each blade block can process (base of 25 will be multiplied, + #then rounded down to the nearest integer). + #Range: 0.5 ~ 10.0 + turbineFluidPerBladeMultiplier = 1.0 + #A multiplier for balancing rotor sizes. + #Multiplies the amount of energy lost to friction per tick. + #Range: 0.5 ~ 10.0 + turbineMassDragMultiplier = 1.0 + #A multiplier for balancing turbine power production. + #Stacks with powerProductionMultiplier. + #Range: 0.005 ~ 100.0 + turbinePowerProductionMultiplier = 1.0 + + #Define how Fluidizer works + [common.fluidizer] + #The maximum valid size of a Fluidizer in the Y dimension, in blocks. + #Lower this if your server's players are building ginormous Fluidizer. + #Range: 3 ~ 64 + maxFluidizerHeight = 16 + #The maximum valid size of a Fluidizer in the X/Z plane, in blocks. + #Lower this if your server's players are building ginormous Fluidizer. + #Range: 3 ~ 64 + maxFluidizerSize = 16 + #The amount of energy need to process a single tick of a recipe. + #Range: 20 ~ 1000 + energyPerRecipeTick = 25 + + #Define how Energizer works + [common.energizer] + #The maximum valid size of a Energizer in the Y dimension, in blocks. + #Lower this if your server's players are building ginormous Energizer. + #Range: 3 ~ 32 + maxEnergizerHeight = 32 + #The maximum valid size of a Energizer in the X/Z plane, in blocks. + #Lower this if your server's players are building ginormous Energizer. + #Range: 3 ~ 32 + maxEnergizerSize = 32 + + #Define how ores generates in the world + [common.worldgen] + #If false, disables all world gen from Extreme Reactors; + #all other worldgen settings are automatically ignored. + enableWorldGen = true + #Re-run world gen in chunks that have already been generated (once they have been loaded), + #but have not been modified by Extreme Reactors before. + enableWorldRegeneration = false + #User-set world generation version. + #Increase this by one if you want Extreme Reactors to re-run world generation in already modified chunks. + #Range: > 0 + userWorldGenVersion = 1 + #Enable generation of Yellorite Ore. + yelloriteOreEnableWorldGen = true + #Maximum number of Yellorite Ore clusters per chunk. + #Range: 1 ~ 25 + yelloriteOreMaxClustersPerChunk = 3 + #Maximum number of Yellorite Ores to generate in each cluster. + #Range: 1 ~ 16 + yelloriteOrePerCluster = 5 + #Maximum height (Y coordinate) in the world to generate Yellorite Ore. + #Range: 1 ~ 256 + yelloriteOreMaxY = 32 + #Enable generation of Anglesite Ore. + anglesiteOreEnableWorldGen = true + #Maximum number of Anglesite Ore clusters per chunk. + #Range: 1 ~ 16 + anglesiteOreMaxClustersPerChunk = 2 + #Maximum number of Anglesite Ores to generate in each cluster. + #Range: 1 ~ 16 + anglesiteOrePerCluster = 5 + #Enable generation of Benitoite Ore. + benitoiteOreEnableWorldGen = true + #Maximum number of Benitoite Ore clusters per chunk. + #Range: 1 ~ 16 + benitoiteOreMaxClustersPerChunk = 2 + #Maximum number of Benitoite Ores to generate in each cluster. + #Range: 1 ~ 16 + benitoiteOrePerCluster = 5 + diff --git a/minecraft/config/extremesoundmuffler-client.toml b/minecraft/config/extremesoundmuffler-client.toml new file mode 100644 index 0000000..c4857fc --- /dev/null +++ b/minecraft/config/extremesoundmuffler-client.toml @@ -0,0 +1,67 @@ + +#General settings +[general] + #Blacklisted Sounds - add the name of the sounds to blacklist, separated with comma + #Default: "ui.", "music.", "ambient." + forbiddenSounds = ["ui.", "music.", "ambient."] + #Allow the "ALL" sounds list to include the blacklisted sounds? + #Default: false + lawfulAllList = false + #Volume set when pressed the mute button by default + #Default: 0 + #Range: 0.0 ~ 0.9 + defaultMuteVolume = 0.0 + #Set to true to move the muffle and play buttons to the left side of the GUI + #Default: false + leftButtons = false + #Show tips in the Muffler screen? + #Default: true + showTip = true + #Whether or not use the dark theme + #Default: false + useDarkTheme = false + #General mod muffling, any sound from these mods will be muffled down to the provided volume. + #Name of the mod and desired volume, separated by ":" + #Example: "minecraft:50", "extremesoundmuffler:0" + #Default: empty + modsMuffled = [] + +#Inventory button settings +[inventory_button] + #Disable the Muffle button in the player inventory? + #Default: false + disableInventoryButton = false + #Coordinates for the Muffler button in the player inventory. + # You can change this in game by holding the RMB over the button and draging it around + #Default: 75 + #Range: > -2147483648 + invButtonX = 75 + #Coordinates for the Muffler button in the player inventory. + #You can change this in game by holding the RMB over the button and draging it around + #Default: 7 + #Range: > -2147483648 + invButtonY = 7 + #Disable the Muffle button in the creative player inventory? + #Default: false + disableCreativeInventoryButton = false + #Coordinates for the Muffler button in the creative player inventory. + # You can change this in game by holding the RMB over the button and draging it around + #Default: 2 + #Range: > -2147483648 + creativeInvButtonX = 2 + #Coordinates for the Muffler button in the creative player inventory. + #You can change this in game by holding the RMB over the button and draging it around + #Default: 2 + #Range: > -2147483648 + creativeInvButtonY = 2 + +#Anchor settings +[Anchors] + #Disable the Anchors? + #Default: false + disableAnchors = false + #Set max size for anchors (Warning: high values may cause LAG!). + #Default: 32 + #Range: > 1 + anchorRange = 32 + diff --git a/minecraft/config/fabric/indigo-renderer.properties b/minecraft/config/fabric/indigo-renderer.properties index bbc6677..9aced82 100644 --- a/minecraft/config/fabric/indigo-renderer.properties +++ b/minecraft/config/fabric/indigo-renderer.properties @@ -1,9 +1,9 @@ -#Indigo properties file -#Mon Jul 13 15:06:53 GMT 2026 -always-tesselate-blocks=false -ambient-occlusion-mode=false -debug-compare-lighting=false -fix-exterior-vertex-lighting=false -fix-luminous-block-ambient-occlusion=false -fix-mean-light-calculation=false -fix-smooth-lighting-offset=false +#Indigo properties file +#Wed Apr 15 20:09:52 EDT 2026 +fix-mean-light-calculation=auto +debug-compare-lighting=auto +fix-exterior-vertex-lighting=auto +ambient-occlusion-mode=hybrid +always-tesselate-blocks=auto +fix-smooth-lighting-offset=auto +fix-luminous-block-ambient-occlusion=auto diff --git a/minecraft/config/fallingleaves-client.toml b/minecraft/config/fallingleaves-client.toml new file mode 100644 index 0000000..c499470 --- /dev/null +++ b/minecraft/config/fallingleaves-client.toml @@ -0,0 +1,25 @@ +#modifies the size of the leaves +#Range: 1 ~ 20 +leafSize = 4 +#modifies how long it takes for the leaves to disappear +#Values over 2000 are not recommend +#Range: > 100 +leafLifespan = 200 +#modifies the amount of leaves that are spawning +#Values over 10000 are not recommend +#Range: > 0 +leafSpawnRate = 10 +#modifier the amount of leaves are spawning from conifer trees +#Values over 10000 are not recommend +#Range: > 0 +coniferLeafSpawnRate = 2 +#whether player placed blocks should also drop leaves +dropFromPlayerPlacedBlocks = true +#how much room below the leaves block is needed for the leaves to spawn +#Range: 1 ~ 20 +minimumFreeSpaceBelow = 1 +#disable wind effects +disableWind = false +#windless dimensions +windlessDimension = ["minecraft:the_nether", "minecraft:the_end"] + diff --git a/minecraft/config/fallingtree.json b/minecraft/config/fallingtree.json new file mode 100644 index 0000000..0c55c1e --- /dev/null +++ b/minecraft/config/fallingtree.json @@ -0,0 +1,50 @@ +{ + "trees": { + "allowedLogs": [], + "deniedLogs": [], + "allowedLeaves": [], + "allowedNonDecayLeaves": [], + "deniedLeaves": [], + "breakMode": "INSTANTANEOUS", + "detectionMode": "WHOLE_TREE", + "maxScanSize": 256, + "maxSize": 64, + "maxLeafDistanceFromLog": 10, + "maxSizeAction": "ABORT", + "breakOrder": "FURTHEST_FIRST", + "minimumLeavesAroundRequired": 1, + "includePersistentLeavesInRequiredCount": true, + "treeBreaking": true, + "leavesBreaking": true, + "leavesBreakingForceRadius": 0, + "allowMixedLogs": false, + "breakNetherTreeWarts": true, + "breakMangroveRoots": true, + "searchAreaRadius": -1, + "allowedAdjacentBlocks": [], + "adjacentStopMode": "STOP_ALL" + }, + "tools": { + "allowed": [], + "denied": [], + "preserve": false, + "ignoreTools": false, + "damageMultiplicand": 1.0, + "damageRounding": "ROUND_DOWN", + "speedMultiplicand": 0.0, + "forceToolUsage": false + }, + "player": { + "allowedTags": [] + }, + "enchantment": { + "registerEnchant": false, + "registerSpecificEnchant": false, + "hideEnchant": false, + "requireEnchantment": false + }, + "sneakMode": "SNEAK_DISABLE", + "breakInCreative": false, + "lootInCreative": true, + "notificationMode": "ACTION_BAR" +} \ No newline at end of file diff --git a/minecraft/config/farmersrespite-common.toml b/minecraft/config/farmersrespite-common.toml new file mode 100644 index 0000000..9b91247 --- /dev/null +++ b/minecraft/config/farmersrespite-common.toml @@ -0,0 +1,8 @@ + +#Game settings +[settings] + #Are tea bushes bonemealable? + enableBoneMealTeaBush = false + #Are coffee bushes bonemealable? + enableBoneMealCoffeeBush = false + diff --git a/minecraft/config/farmingforblockheads-common.toml b/minecraft/config/farmingforblockheads-common.toml new file mode 100644 index 0000000..2fd35f9 --- /dev/null +++ b/minecraft/config/farmingforblockheads-common.toml @@ -0,0 +1,17 @@ +#The range within animals can be fed by the feeding trough. +feedingTroughRange = 8 +#The chance for Fertilized Farmland to turn back into regular Farmland (per provided bonus). +fertilizerRegressionChance = 0.0 +#If true, merchants will be considered babies (on a technical level only), which may resolve exploits based on merchant death loot (like blood) +treatMerchantsLikeBabies = true +#The chance to get a bonus growth when using Red Fertilizer. +fertilizerBonusGrowthChance = 1.0 +#List of names the merchant can have. +merchantNames = ["Swap-O-Matic", "Emerald Muncher", "Weathered Salesperson"] +#The range at which the chicken nest picks up laid eggs. +chickenNestRange = 8 +#The maximum amount of animals (per type) until the feeding trough stops feeding. +feedingTroughMaxAnimals = 24 +#The chance to get a bonus crop when using Green Fertilizer. +fertilizerBonusCropChance = 1.0 + diff --git a/minecraft/config/farmingforblockheads/MarketRegistry.json b/minecraft/config/farmingforblockheads/MarketRegistry.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/minecraft/config/farmingforblockheads/MarketRegistry.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/minecraft/config/farsight.json b/minecraft/config/farsight.json new file mode 100644 index 0000000..5b5b3d1 --- /dev/null +++ b/minecraft/config/farsight.json @@ -0,0 +1,20 @@ +{ + "maxRenderDistance": { + "desc:": "Maximum allowed render distance, requires enableChunkManager enabled. default 64", + "maxRenderDistance": 32 + }, + "enableChunkManager": { + "desc:": "Enables a custom chunk manager, allowing to set higher view distances than 32 and smoothing out chunk loading from the server through caching. Can be disabled for compatibility issues, default true. (false) = vanilla", + "enableChunkManager": true + }, + "chunkPreview": { + "descEnable:": "Enables chunk preview feature, which enables saving and loading previously visited chunks to/from disk, default false", + "enabled": false, + "descSpeed:": "Set the speed at which chunk preview loads chunks from disk, default and minimum 1 Chunk per tick(20 per second)", + "previewChunkLoadSpeed": 1 + }, + "debugLogging": { + "desc:": "Enables debug logging to latest.log, default false", + "debugLogging": false + } +} \ No newline at end of file diff --git a/minecraft/config/fastpaintings-common.toml b/minecraft/config/fastpaintings-common.toml new file mode 100644 index 0000000..fa17643 --- /dev/null +++ b/minecraft/config/fastpaintings-common.toml @@ -0,0 +1,6 @@ + +[general] + #Makes paintings always drop with their NBT + #Allowed Values: OFF, ALWAYS, WHEN_PLACED_WITH_NBT + nbt_drop = "OFF" + diff --git a/minecraft/config/fastrecipes-common.toml b/minecraft/config/fastrecipes-common.toml new file mode 100644 index 0000000..f23773d --- /dev/null +++ b/minecraft/config/fastrecipes-common.toml @@ -0,0 +1,5 @@ +# Allows recipes to be loaded in parallel, independently of each other. If you're experiencing recipe loading issues during your build, disable this. + +UseAsyncRecipesLoader = true +# Launches the Speed Benchmark when the server starts, namely at the moment of the first tick +BenchmarkMode = false diff --git a/minecraft/config/fastsuite.cfg b/minecraft/config/fastsuite.cfg new file mode 100644 index 0000000..ef087cd --- /dev/null +++ b/minecraft/config/fastsuite.cfg @@ -0,0 +1,24 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# FastSuite Configuration + +general { + # A list of recipe types which may only be looked up on the main thread. Add a recipe type to this list if errors start happening. + # Default: [ + S:"Single Threaded Recipe Types" < + > + + # The max time, in seconds, that a recipe lookup may take before aborting the lookup and logging an error. + # Default: 25; Range: [1 ~ 300] + I:"Max Recipe Lookup Time"=25 + + # If true, the stacks used as recipe inputs will be locked and throw an error if modified during parallel matching. Useful for debugging. + # Default: false + B:"Lock Crafting Input Stacks"=false + + # If true, FastSuite parallelize all recipes without validation. This can cause crashes if a recipe is not thread safe. + # Default: false + B:"Unsafe Mode"=false +} + + diff --git a/minecraft/config/ferritecore-mixin.toml b/minecraft/config/ferritecore-mixin.toml index aed27fe..f6a08ab 100644 --- a/minecraft/config/ferritecore-mixin.toml +++ b/minecraft/config/ferritecore-mixin.toml @@ -1,23 +1,23 @@ -#Use a slightly more compact, but also slightly slower representation for block states -compactFastMap = false -#Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk! -useSmallThreadingDetector = false -#Cache the predicate instances used in multipart models -cacheMultipartPredicates = true -#Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled -multipartDeduplication = true -#Deduplicate cached data for blockstates, most importantly collision and render shapes -blockstateCacheDeduplication = true -#Avoid creation of new strings when creating ModelResourceLocations -modelResourceLocations = true -#Use smaller data structures for "simple" models, especially models with few side-specific faces -modelSides = true -#Replace the blockstate neighbor table -replaceNeighborLookup = true -#Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. -populateNeighborTable = false -#Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled -replacePropertyMap = true -#Deduplicate vertex data of baked quads in the basic model implementations -bakedQuadDeduplication = true - +#Use a slightly more compact, but also slightly slower representation for block states +compactFastMap = true +#Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk! +useSmallThreadingDetector = false +#Cache the predicate instances used in multipart models +cacheMultipartPredicates = true +#Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled +multipartDeduplication = true +#Deduplicate cached data for blockstates, most importantly collision and render shapes +blockstateCacheDeduplication = true +#Avoid creation of new strings when creating ModelResourceLocations +modelResourceLocations = true +#Use smaller data structures for "simple" models, especially models with few side-specific faces +modelSides = true +#Replace the blockstate neighbor table +replaceNeighborLookup = true +#Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. +populateNeighborTable = false +#Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled +replacePropertyMap = true +#Deduplicate vertex data of baked quads in the basic model implementations +bakedQuadDeduplication = true + diff --git a/minecraft/config/findme.json b/minecraft/config/findme.json new file mode 100644 index 0000000..3bec04e --- /dev/null +++ b/minecraft/config/findme.json @@ -0,0 +1,11 @@ +{ + "COMMON": { + "RADIUS_RANGE": 8, + "IGNORE_ITEM_DAMAGE": false + }, + "CLIENT": { + "CONTAINER_TRACK_TIME": 600, + "CONTAINER_TRACKING": true, + "CONTAINER_HIGHLIGHT_COLOR": "#cf9d15" + } +} \ No newline at end of file diff --git a/minecraft/config/fishofthieves.json b/minecraft/config/fishofthieves.json new file mode 100644 index 0000000..cd6ab68 --- /dev/null +++ b/minecraft/config/fishofthieves.json @@ -0,0 +1,67 @@ +{ + "general": { + "trophyMaxHealth": 5.0, + "enableEarthwormsDrop": false, + "enableGrubsDrop": false, + "enableLeechesDrop": false, + "enableWormsAttachedHook": true, + "simpleSpawningCondition": false, + "neutralFishBehavior": false, + "enableFishItemDropWithVariant": false, + "displayAllFishVariantInCreativeTab": false, + "displayTrophySpawnEggInCreativeTab": false, + "displayTrophyBucketInCreativeTab": false + }, + "biome": { + "tropicalIslandBiomeGeneration": true, + "tropicalIslandMinimumWeirdness": -1.2, + "tropicalIslandMaximumWeirdness": 1.2 + }, + "spawnRate": { + "trophyProbability": 0.15, + "variant": { + "umberSplashtailProbability": 0.1, + "brightPondieProbability": 0.1, + "ravenIslehopperProbability": 0.1, + "boneAncientscaleProbability": 0.1, + "bonedustPlentifinProbability": 0.1, + "muddyWildsplashProbability": 0.1, + "forsakenDevilfishProbability": 0.1, + "sandBattlegillProbability": 0.1, + "snowWreckerProbability": 0.1, + "shadowStormfishProbability": 0.1 + }, + "fishWeight": { + "splashtail": 15, + "pondie": 15, + "islehopper": 8, + "ancientscale": 8, + "plentifin": 12, + "wildsplash": 10, + "devilfish": 4, + "battlegill": 5, + "wrecker": 50, + "stormfish": 12 + } + }, + "shoal": { + "chance": 2000, + "chanceRaining": 250, + "spreadDistance": 64, + "maxLifetimeDay": 3, + "weight": { + "riverOrBeach": 96, + "coast": 88, + "tropicalIsland": 92, + "ocean": 10, + "deepOcean": 5, + "swamp": 80 + } + }, + "debug": { + "enableStructureCenterPosRender": true, + "displayStructureCenterPosInfo": true, + "structureCenterPosRangeLimit": 64, + "spawnBeaconAtShoal": false + } +} \ No newline at end of file diff --git a/minecraft/config/flerovium.json b/minecraft/config/flerovium.json new file mode 100644 index 0000000..075cb01 --- /dev/null +++ b/minecraft/config/flerovium.json @@ -0,0 +1,5 @@ +{ + "entityBackFaceCulling": true, + "itemBackFaceCulling": true, + "reduceTerrainParticles": true +} \ No newline at end of file diff --git a/minecraft/config/flib.toml b/minecraft/config/flib.toml new file mode 100644 index 0000000..18b1323 --- /dev/null +++ b/minecraft/config/flib.toml @@ -0,0 +1,8 @@ + +#General settings +[flib] + + [flib.command] + #If true, the /flib command will be registered + enabled = true + diff --git a/minecraft/config/fluxnetworks-client.toml b/minecraft/config/fluxnetworks-client.toml new file mode 100644 index 0000000..ba51320 --- /dev/null +++ b/minecraft/config/fluxnetworks-client.toml @@ -0,0 +1,7 @@ + +[gui] + #Enable navigation buttons sound when pressing it + enableButtonSound = true + #Enable Modern UI + enableGuiDebug = false + diff --git a/minecraft/config/fluxnetworks-common.toml b/minecraft/config/fluxnetworks-common.toml new file mode 100644 index 0000000..1714206 --- /dev/null +++ b/minecraft/config/fluxnetworks-common.toml @@ -0,0 +1,22 @@ +#Most configs are moved to /serverconfig/fluxnetworks-server.toml +#Copy to /defaultconfig/fluxnetworks-server.toml for modpacks +placeholder = true + +#The One Probe +[OneProbe] + #Displays: Network Name, Live Transfer Rate & Internal Buffer + enableOneProbeBasicInfo = true + #Displays: Transfer Limit & Priority etc + enableOneProbeAdvancedInfo = true + #Displays Advanced Info when sneaking only + enableOneProbeSneaking = true + +#Integration +[integration] + #Whether to enable GTCEU integration if GregTech CE Unofficial Modern is installed. + #4 FE = 1 GTEU, not configurable. + #Note that EU-to-FE conversion is provided by GTCEU, instead of Flux Networks. + #Ensure you have enabled GTCEU's nativeEUToPlatformNative and euToPlatformRatio = 4. + #A game/server restart is required to reload this setting. + enableGTCEU = true + diff --git a/minecraft/config/flywheel-client.toml b/minecraft/config/flywheel-client.toml index 6d59965..72c5da5 100644 --- a/minecraft/config/flywheel-client.toml +++ b/minecraft/config/flywheel-client.toml @@ -1,14 +1,14 @@ -#Select the backend to use. Set to "DEFAULT" to let Flywheel decide. -backend = "DEFAULT" -#Enable or disable instance update limiting with distance. -limitUpdates = true -#The number of worker threads to use. Set to -1 to let Flywheel decide. Set to 0 to disable parallelism. Requires a game restart to take effect. -#Range: -1 ~ 16 -workerThreads = -1 - -#Config options for Flywheel's built-in backends. -[flw_backends] - #How smooth Flywheel's shader-based lighting should be. May have a large performance impact. - #Allowed Values: FLAT, TRI_LINEAR, SMOOTH, SMOOTH_INNER_FACE_CORRECTED - lightSmoothness = "SMOOTH" - +#Select the backend to use. Set to "DEFAULT" to let Flywheel decide. +backend = "DEFAULT" +#Enable or disable instance update limiting with distance. +limitUpdates = true +#The number of worker threads to use. Set to -1 to let Flywheel decide. Set to 0 to disable parallelism. Requires a game restart to take effect. +#Range: -1 ~ 16 +workerThreads = -1 + +#Config options for Flywheel's built-in backends. +[flw_backends] + #How smooth Flywheel's shader-based lighting should be. May have a large performance impact. + #Allowed Values: FLAT, TRI_LINEAR, SMOOTH, SMOOTH_INNER_FACE_CORRECTED + lightSmoothness = "TRI_LINEAR" + diff --git a/minecraft/config/fml.toml b/minecraft/config/fml.toml index d24966f..3c67bb2 100644 --- a/minecraft/config/fml.toml +++ b/minecraft/config/fml.toml @@ -1,29 +1,29 @@ -#Early window height -earlyWindowHeight = 720 -#Enable forge global version checking -versionCheck = false -#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them. -earlyWindowControl = false -#Early window framebuffer scale -earlyWindowFBScale = 1 -#Early window provider -earlyWindowProvider = "fmlearlywindow" -#Early window width -earlyWindowWidth = 1280 -#Early window starts maximized -earlyWindowMaximized = false -#Default config path for servers -defaultConfigPath = "defaultconfigs" -#Disables Optimized DFU client-side - already disabled on servers -disableOptimizedDFU = true -#Skip specific GL versions, may help with buggy graphics card drivers -earlyWindowSkipGLVersions = [] -#Whether to log a help message on first attempt, to aid troubleshooting. This setting should automatically disable itself after a successful launch -earlyWindowLogHelpMessage = false -#Max threads for early initialization parallelism, -1 is based on processor count -maxThreads = -1 -#Squir? -earlyWindowSquir = false -#Whether to show CPU usage stats in early window -earlyWindowShowCPU = false - +#Early window height +earlyWindowHeight = 768 +#Enable forge global version checking +versionCheck = true +#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them. +earlyWindowControl = true +#Early window framebuffer scale +earlyWindowFBScale = 1 +#Early window provider +earlyWindowProvider = "fmlearlywindow" +#Early window width +earlyWindowWidth = 1024 +#Early window starts maximized +earlyWindowMaximized = false +#Default config path for servers +defaultConfigPath = "defaultconfigs" +#Disables Optimized DFU client-side - already disabled on servers +disableOptimizedDFU = true +#Skip specific GL versions, may help with buggy graphics card drivers +earlyWindowSkipGLVersions = [] +#Whether to log a help message on first attempt, to aid troubleshooting. This setting should automatically disable itself after a successful launch +earlyWindowLogHelpMessage = false +#Max threads for early initialization parallelism, -1 is based on processor count +maxThreads = -1 +#Squir? +earlyWindowSquir = false +#Whether to show CPU usage stats in early window +earlyWindowShowCPU = false + diff --git a/minecraft/config/foolproof-common.toml b/minecraft/config/foolproof-common.toml new file mode 100644 index 0000000..8007401 --- /dev/null +++ b/minecraft/config/foolproof-common.toml @@ -0,0 +1,4 @@ +#. +#URL for support, to direct users to. +"Discord URL" = "" + diff --git a/minecraft/config/forbidden_arcanus-client.toml b/minecraft/config/forbidden_arcanus-client.toml new file mode 100644 index 0000000..7b0cc68 --- /dev/null +++ b/minecraft/config/forbidden_arcanus-client.toml @@ -0,0 +1,13 @@ + +[rendering] + + [rendering.orb_of_temporary_flight] + #Should the Orb of Temporary Flight Overlay be rendered? [default: true] + render = true + #X-Position of the Orb of Temporary Flight Overlay (if enabled) [default: 1] + #Range: 0 ~ 500 + x_position = 1 + #Y-Position of the Orb of Temporary Flight Overlay (if enabled) [default: 1] + #Range: 0 ~ 500 + y_position = 1 + diff --git a/minecraft/config/forbidden_arcanus-common.toml b/minecraft/config/forbidden_arcanus-common.toml new file mode 100644 index 0000000..eaa44f2 --- /dev/null +++ b/minecraft/config/forbidden_arcanus-common.toml @@ -0,0 +1,94 @@ + +[items] + + [items.orb_of_temporary_flight] + #Flight Time the Orb grants (in ticks) [default: 6000] + #Range: 20 ~ 120000 + time = 6000 + + [items.edelwood_bucket] + #How many Water Blocks the Edelwood Bucket can store [default: 4] + #Range: 1 ~ 10 + water_capacity = 4 + #How many Lava Blocks the Edelwood Bucket can store [default: 3] + #Range: 1 ~ 10 + lava_capacity = 3 + #How much Milk the Edelwood Bucket can store [default: 4] + #Range: 1 ~ 10 + milk_capacity = 4 + #How many Soups/Stews the Edelwood Bucket can store [default: 8] + #Range: 1 ~ 10 + soup_capacity = 8 + + [items.boom_arrow] + #Should Boom Arrow explosions deal Block Damage [default: false] + block_damage = false + #Radius of Boom Arrow explosions [default: 3] + #Range: 1 ~ 10 + explosion_radius = 3 + + [items.mundabitur_dust] + #Should right-clicking a Creeper with Mundabitur Dust charge the Creeper [default: true] + charge_creeper = true + + [items.xpetrified_orb] + #Experience Points the Orb grants on use [default: 91] + #Range: 1 ~ 120000 + experience_points = 91 + + [items.eternal_stella] + #How many times the Eternal Stella can be used before breaking [default: 3] + #Range: 1 ~ 100 + uses = 3 + +[blocks] + + [blocks.stella_arcanum] + #Should Stella Arcanum explode when mined [default: true] + explode = true + #Should Stella Arcanum explosions deal Block Damage (if explosions enabled) [default: true] + block_damage = true + #Radius of Stella Arcanum explosions (if explosions enabled) [default: 3] + #Range: 1 ~ 10 + explosion_radius = 3 + + [blocks.edelwood_ladder] + #The speed multiplier that gets added to the players y movement when on the ladder [default: 2.0 + #Range: 0.0 ~ 10.0 + speed = 2.0 + +[enchantments] + + [enchantments.eternal] + #Should the item be repaired after applying the Eternal modifier [default: true] + repair_item = true + +[aureal] + #Chance that an entity spawns as Aureal Entity [default: 0.25] + #Range: 0.0 ~ 1.0 + aureal_entity_chance = 0.25 + + [aureal.corruption] + #Do you want to completely disable corruption consequences? [default: false] + disable_consequences = false + #How much Corruption should killing a normal Entity give [default: 1] + #Range: 0 ~ 100 + entity_death_increasement_amount = 1 + #How much Corruption should killing an Aureal Entity give [default: 3] + #Range: 0 ~ 100 + aureal_entity_death_increasement_amount = 3 + #Chance that killing a normal Entity increases your Corruption [default: 0.35] + #Range: 0.0 ~ 1.0 + entity_death_increasement_chance = 0.35 + #Chance that killing an Aureal Entity increases your Corruption [default: 0.42] + #Range: 0.0 ~ 1.0 + aureal_entity_death_increasement_chance = 0.42 + #Should the players Corruption value decrease after a certain amount of time [default: true] + natural_decreasement = true + #Time before the players Corruption value is reduced by one (in ticks) [default: 6000] + #Range: > 0 + natural_decreasement_time = 6000 + #Chance that breeding animals decreases your Corruption [default: 0.45] + #Range: 0.0 ~ 1.0 + breeding_decreasement_chance = 0.45 + diff --git a/minecraft/config/forcecraft-common.toml b/minecraft/config/forcecraft-common.toml new file mode 100644 index 0000000..12e7c1e --- /dev/null +++ b/minecraft/config/forcecraft-common.toml @@ -0,0 +1,72 @@ + +#General settings +[general] + #Enable Force Ore generation [Default: true] + generateForceOre = true + #Enable Force Tree generation [Default: true] + generateForceTree = true + #Enable Time Torch [Default: true] + timeTorchEnabled = true + #Print in Log when Time Torch is placed and by who [Default: true] + timeTorchLogging = true + #How many ticks in between ticking neighbour blocks [Default: 5] + #Range: > 0 + timeTorchRate = 5 + #The amount of ticks the Time Torch applies to neighbour blocks [Default: 3] + #Range: > 1 + timeTorchAmount = 3 + #Disable recovery hearts from dropping [Default: false] + disableRecoveryHearts = false + #Enables screen shake when in Liquid Force [Default: false] + enableForceShake = false + #The max amount of food stacks stored in the baconator [Default: 4] + #Range: > 1 + baconatorMaxStacks = 4 + #The max amount of damage blocked when all armor pieces have the Sturdy infusion [Default: 0.75] + #Range: 0.0 ~ 1.0 + sturdyDamageReduction = 0.75 + #The amount of half hearts of damage given by Force Punch given by the Damage infusion on armor [Default: 0.75] + #Range: 0.0 ~ 1.7976931348623157E308 + forcePunchDamage = 2.0 + #The max amount of ticks it takes to charge a tool with Force [Default: 120 (6 seconds)] + #Range: > 20 + forceInfusingTime = 120 + #An additional list of tile entities the Force Furnace can NOT insert into [Syntax: modid:tile_name] + #Examples: "minecraft:shulker_box" would stop it inserting into shulkers + furnaceOutputBlacklist = [""] + +#Fortune messages +[fortunes] + #Adding lines / removing lines specifies what the fortunes can say + fortuneMessages = ["You aren't supposed to eat me.", "Beauty is in the eye of the tiger.", "Creeper!", "Which came first, the chicken or the chunk?", "Whatever happened to Doritos 3D?", "Diabetes, anyone?", "That wasn't a cookie!", "If a tree falls down in the woods, you have a special mod installed.", "The cake is a lie of omission.", "A wise man once said, \"Yes honey, it does make you look fat.\" He never said that again.", "Don't stare directly at the pixels.", "I know where you live.", "Your lucky numbers are 0, -7, and 437922904678137496.708162", "There is never enough redstone.", "What you seek is surrounded by blocks.", "Today is Tuesday, or is it Friday - I can never tell.", "In the event of a creeper explosion, your keyboard can double as a broken keyboard.", "I didn't do it.", "You are 5.6 grams heavier than you were 10 seconds ago.", "I dropped my cookie.", "...Saltpeter? Really?", "We're no strangers to love. You know the rules and so do I.", "Eat another cookie.", "I CAN believe it's not butter.", "Beware enderman with a short fuse...", "Remember to repair your tools.", "Every rose has its bounding box.", "Get out of my chest!", "Please recycle.", "Great, now you've spoiled your dinner!", "Welcome to Hoarders: Minecraft edition!", "Not all Blocks are created equal.", "Don't touch that!", "Always name your machinations.", "Look in your inventory, now back to me - this fortune is now diamonds!", "Who put that there?", "Winners never cheat and cheaters never win, unless the winners cheated, in which case the cheaters won.", "Hi Bob! What, they can't all be zingers.", "Have you ever thought to yourself, \"My, that's an awfully large open grave!\"", "Could you pick up my dry-cleaning?", "Never shower in a thunderstorm. It's less efficient than bathing indoors and you'll freak out your neighbors.", "It is said that everyone experiences hardships, but God must REALLY hate YOU.", "If you play a country song backwards, you waste about 4 minutes of your life listening to garbled nonsense.", "No, you can't make that jump.", "I know they're furry and cuddly, but trust me, they're evil incarnate.", "Do you Dew?", "I see the land, but where exactly are the tracts?", "Creepers were originally from Dr. Who.", "Don't bogart my nasal spray!", "You'll live.", "Don't make me come back there!", "I've burned everything that reminds me of you in a ritualistic bonfire.", "We will be an unstoppable force; to our enemies we bring only death, to our allies we always bring cake.", "Heavy is the head that eats the crayons.", "Beware skinwalkers.", "Don't fear the creeper.", "Goodness and love will always win!", "I told you not to eat that!", "Winner!", "Beware anyone without an eye-patch!", "Don't kill all the animals!", "It's a wonder you get anything done!", "You will find happiness with a new love: Minecraft's latest patch.", "Seriously, who is in charge of the song/cowbell ratio?", "It's not a bug, it's a \"feature.\"", "Do you really need this many cookies?", "NCC1701", "I wanted to be a newspaper.", "Thank you! It was really dark in there!", "Thank you for not eating me.", "Burn the door!", "That's the biggest flapjack I've ever seen!", "Please be kind, de-rind", "It's a secret to everybody.", "I AM ERROR.", "If all else fails use fire.", "Dig it! Dig it! Dig to the center of the earth!", "No! Not into the pit! It BURNS!", "Dawn of the First Day, 72 hours remain.", "Don't stare directly at the potato.", "The chicken is a double-agent.", "Good lord!", "What's all this junk?", "Creepers blow chunks.", "Equivalence is a lie.", "Body by Sycamore.", "I hear 'Innards of the Machine' is on tour.", "Do something else.", "The capital of The Ukraine is Kiev.", "DebugCookie4A73N82", "Point that somewhere else!", "Forking is strictly prohibited.", "Void where prohibited.", "This parrot is no more!", "He's dead, Jim.", "Leave me alone for a bit, okay?", "Don't you dare shift-click me!", "Me again.", "My summer home is a no-bake.", "We can still be friends.", "The night is young, but you are not.", "Keyboard cat has carpal tunnel.", "Pull lever, get key.", "Boats n' Hoes", "Never eat an entire chocolate bunny in one sitting.", "Push that button and die.", "That cookie was mostly spackle.", "Slime Chunkery.", "I hate Thaumic Slimes.", "Inertia is a property of mallard.", "I prefer cake.", "If you can read this, you're literate.", "Don't touch the sides!", "Crunchitize me Cap'n!", "Please head in an orderly fashion to the disintegration chamber.", "It's the deer's ears.", "Happy anniversary, Carol!", "Never startle a ninja.", "If the shoe fits, you probably own it.", "Cattle reproduce by budding.", "Has anyone seen my Fedora?", "I beg to defer.", "Everybody loops.", "Fortune is straight down", "Eekum Bokum.", "Churba wurt!", "Darwa jit!", "Success is often preceded by failure, then followed again by failure.", "Man with Steve skin receive no cake.", "It's all Melnics to me!", "\"Steve\" means \"lazy\" in Swedish.", "Don't attack the cute little endermen - you'll be sorry.", "I miss my sanity, but then again I never used it.", "So this is where germs are born!", "I hate mondays.", "My old nemesis: gravity.", "I'm upgrade fodder!", "You can do anything at Zombo.com.", "Remember to feed the cattle.", "TROGDOR was a man. I mean, he was a dragon-man... Maybe he was just a dragon.", "Charles in charge of our clicks left and right. Charles in charge of every block in sight.", "Charles was never really in charge.", "Remember to use every part of the chicken.", "I'm not responsible for this.", "Every 10 minutes another crappy fortune is written.", "How many licks does it take to get to the center of a Chuck Norris?", "Roundhouse-kick for the win!", "DO NOT feed the beast! (After midnight)", "Please stop doing that.", "I'm not a vending machine!", "Try Ubuntu.", "If you program for more than 20 hours straight, do not blink.", "Ceiling cat is watching you procrastinate.", "Get your hand off my thigh! You can have the leg.", "Protective eyewear is a must!", "It's all in the wristwatch.", "Endermen in the UCB!", "Endermen can move TNT. I'm serious.", "Aww, you got blood all over my new sword!", "The human pancreas can take only so many twinkies.", "Humus is something you eat when you want your innards to cry.", "By Mennen", "Put me back in!", "...I got nothin'.", "We're out of milk.", "Always edit-out the derps.", "I want a lawyer.", "Bring me a shrubbery!", "It's bigger on the inside.", "That's what she said.", "Have you heard the one about the Rabbi and the Priest? Oh I forgot, you're deaf.", "There are worse appendages to get caught sticking inside the cookie jar.", "Ever have the feeling you're being watched? That's me!", "He who handles his NullPointerExceptions is a wise man indeed.", "Taking candy from a baby often prevents choking.", "Texting while driving is a potent form of natural-selection.", "The secret to a good marriage is matching tattoos.", "A sucker is born every minute, however an idiot is born every two seconds.", "Error in Thread Main: ExceptionNotCaughtException: ForceCraft.java:32", "I'll tear YOUR stub!", "Daydreaming is free, cookies are not.", "PINGAS!", "The run is dead.", "You do not aim Yo-Yos at people. They should face the ground.", "A Yo-Yo isn't a tool for hurting people...", "Happy Birthday Darkosto", "Bye Felicia!"] + +#Infusion settings +[infusion] + #The max level of Bleeding that can be applied [Default: 3] + #Range: 1 ~ 5 + bleedCap = 3 + #The max level of Healing that can be applied [Default: 3] + #Range: 1 ~ 5 + healingCap = 3 + #The max level of Sturdy that can be applied on force tools [Default: 3] + #Range: 1 ~ 10 + sturdyToolCap = 3 + #The max level of Luck that can be applied [Default: 4] + #Range: 1 ~ 10 + luckCap = 4 + #The max level of Damage that can be applied [Default: 5] + #Range: 1 ~ 10 + damageCap = 5 + #The max level of Force that can be applied [Default: 2] + #Range: 1 ~ 10 + forceCap = 2 + #The max level of Speed that can be applied [Default: 5] + #Range: 1 ~ 10 + speedCap = 5 + #The max level of Speed that can be applied to a Force Rod [Default: 3] + #Range: 1 ~ 5 + rodSpeedCap = 3 + #The level of Regeneration given to the player when standing in Liquid Force (0 = Regeneration 1) [Default: 0] + #Range: 0 ~ 16 + liquidRegenLevel = 0 + diff --git a/minecraft/config/forestry-client.toml b/minecraft/config/forestry-client.toml new file mode 100644 index 0000000..f389b02 --- /dev/null +++ b/minecraft/config/forestry-client.toml @@ -0,0 +1,17 @@ +#Whether any of Forestry's particles are rendered. +particles = true +#Whether the "Did you know?" ledgers are shown in Forestry menus. +enable_hints = true +#Whether alerts are enabled for Forestry's mail system. +mail_alerts_enable = true +#Whether certain specimens, like Imperial Bees, will have enchantment glints on them. +enable_glints = true + +[jei_bees] + #Set to false to disable display of mutation requirements + show_requirements = true + #Set to false to disable display of secret mutations + show_secret_mutations = true + #Set to false to disable showing identified genome in recipes + show_analyzed_tooltip = true + diff --git a/minecraft/config/forge-client.toml b/minecraft/config/forge-client.toml index 32d3edc..793762c 100644 --- a/minecraft/config/forge-client.toml +++ b/minecraft/config/forge-client.toml @@ -1,26 +1,26 @@ - -#Client only settings, mostly things related to rendering -[client] - #Enable Forge to queue all chunk updates to the Chunk Update thread. - #May increase FPS significantly, but may also cause weird rendering lag. - #Not recommended for computers without a significant number of cores available. - alwaysSetupTerrainOffThread = false - #EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models. - experimentalForgeLightPipelineEnabled = false - #When enabled, Forge will show any warnings that occurred during loading. - showLoadWarnings = true - #Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. - useCombinedDepthStencilAttachment = false - #[DEPRECATED] Does nothing anymore, IPv6 addresses will be compressed always - compressLanIPv6Addresses = true - #During block model baking, manually calculates the normal for all faces. - #This was the default behavior of forge between versions 31.0 and 47.1. - #May result in differences between vanilla rendering and forge rendering. - #Will only produce differences for blocks that contain non-axis aligned faces. - #You will need to reload your resources to see results. - calculateAllNormals = false - #When enabled, a slightly biased Direction#getNearest calculation will be used to prevent normal fighting on 45 degree angle faces. - stabilizeDirectionGetNearest = true - #When enabled, Forge will allow mipmaps to be lowered in real-time. This is the default behavior in vanilla. Use this if you experience issues with resource packs that use textures lower than 8x8. - allowMipmapLowering = false - + +#Client only settings, mostly things related to rendering +[client] + #Enable Forge to queue all chunk updates to the Chunk Update thread. + #May increase FPS significantly, but may also cause weird rendering lag. + #Not recommended for computers without a significant number of cores available. + alwaysSetupTerrainOffThread = false + #EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models. + experimentalForgeLightPipelineEnabled = false + #When enabled, Forge will show any warnings that occurred during loading. + showLoadWarnings = true + #Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. + useCombinedDepthStencilAttachment = false + #[DEPRECATED] Does nothing anymore, IPv6 addresses will be compressed always + compressLanIPv6Addresses = true + #During block model baking, manually calculates the normal for all faces. + #This was the default behavior of forge between versions 31.0 and 47.1. + #May result in differences between vanilla rendering and forge rendering. + #Will only produce differences for blocks that contain non-axis aligned faces. + #You will need to reload your resources to see results. + calculateAllNormals = false + #When enabled, a slightly biased Direction#getNearest calculation will be used to prevent normal fighting on 45 degree angle faces. + stabilizeDirectionGetNearest = true + #When enabled, Forge will allow mipmaps to be lowered in real-time. This is the default behavior in vanilla. Use this if you experience issues with resource packs that use textures lower than 8x8. + allowMipmapLowering = false + diff --git a/minecraft/config/framedblocks-client.toml b/minecraft/config/framedblocks-client.toml new file mode 100644 index 0000000..4ef59f1 --- /dev/null +++ b/minecraft/config/framedblocks-client.toml @@ -0,0 +1,92 @@ + +[general] + #Whether ghost blocks are shown when you are holding a framed block + showGhostBlocks = false + #If true, an alternate renderer will be used for the placement preview. May solve issues with certain shaders + altGhostRenderer = false + #Whether certain framed blocks should show fancy hitboxes + fancyHitboxes = false + #If false only full block faces of framed blocks will be culled, if true all outer faces of famed blocks can be culled + detailedCulling = true + #If true, the UV remapping will use discrete steps to avoid floating point errors + discreteUVSteps = true + #Configures how detailed connected textures are supported. + #Use anything above FULL_EDGE at your own risk (performance impact, unexpected behaviour)! + #If NONE, all connected textures support is disabled + #If FULL_FACE, connected textures are supported on full faces + #If FULL_EDGE, connected textures are supported as above and on faces whose connecting edge covers the full block width + #If DETAILED, connected textures are supported as above and on most faces when interacting with other framed blocks + #Allowed Values: NONE, FULL_FACE, FULL_EDGE, DETAILED + conTexMode = "NONE" + #Configures the verbosity of messages displayed when a block cannot be used as a camo + #If NONE, no message will be shown + #If DEFAULT, a message will be shown when the block has a BlockEntity and isn't explicitly allowed or the block is explicitly disallowed + #If DETAILED, a message will be shown as above or when a block is non-solid and not explicitly allowed + #Allowed Values: NONE, DEFAULT, DETAILED + camoMessageVerbosity = "DEFAULT" + #If true, ambient occlusion is applied to framed blocks which glow from applied glowstone dust. + #If false, the vanilla behavior of disabling AO for light-emitting blocks is used + forceAoOnGlowingBlocks = true + #If true, all possible recipes of the Framing Saw will be added to EMI, else only the permutations using the Framed Cube will be added + #This setting only has an effect when EMI is installed + showAllRecipePermutationsInEmi = true + #Configures in which cases a framed block without a camo gets a solid model + #If NEVER, the default frame texture will always be used + #If DEFAULT, certain blocks will use the default frame texture with a solid background texture + #If ALWAYS, all blocks will use the default frame texture with a solid background texture + #Allowed Values: NEVER, DEFAULT, ALWAYS + solidFrameMode = "DEFAULT" + #If enabled, non-wooden buttons and pressure plates will show a material overlay when a camo is applied + #Requires resource reload to take effect + showButtonPlateTypeOverlay = true + #If enabled, special cube blocks will show a type overlay when a camo is applied + #Requires resource reload to take effect + showSpecialCubeTypeOverlay = true + +[overlay] + #If set to HIDDEN, the State Lock overlay will be completely hidden + #If set to ICON, the State Lock overlay will only show an icon + #If set to DETAILED, the State Lock overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + stateLockMode = "DETAILED" + #If set to HIDDEN, the Toggle Waterloggable overlay will be completely hidden + #If set to ICON, the Toggle Waterloggable overlay will only show an icon + #If set to DETAILED, the Toggle Waterloggable overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + toggleWaterlogMode = "DETAILED" + #If set to HIDDEN, the Toggle Slope Face overlay will be completely hidden + #If set to ICON, the Toggle Slope Face overlay will only show an icon + #If set to DETAILED, the Toggle Slope Face overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + toggleYSlopeMode = "DETAILED" + #If set to HIDDEN, the Reinforcement overlay will be completely hidden + #If set to ICON, the Reinforcement overlay will only show an icon + #If set to DETAILED, the Reinforcement overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + reinforcedMode = "DETAILED" + #If set to HIDDEN, the Prism Offset overlay will be completely hidden + #If set to ICON, the Prism Offset overlay will only show an icon + #If set to DETAILED, the Prism Offset overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + prismOffsetMode = "DETAILED" + #If set to HIDDEN, the Collapsible Block Split Line overlay will be completely hidden + #If set to ICON, the Collapsible Block Split Line overlay will only show an icon + #If set to DETAILED, the Collapsible Block Split Line overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + splitLineMode = "DETAILED" + #If set to HIDDEN, the One-Way Window overlay will be completely hidden + #If set to ICON, the One-Way Window overlay will only show an icon + #If set to DETAILED, the One-Way Window overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + oneWayWindowMode = "DETAILED" + #If set to HIDDEN, the Item Frame Background overlay will be completely hidden + #If set to ICON, the Item Frame Background overlay will only show an icon + #If set to DETAILED, the Item Frame Background overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + itemFrameBackgroundMode = "DETAILED" + #If set to HIDDEN, the Camo Rotation overlay will be completely hidden + #If set to ICON, the Camo Rotation overlay will only show an icon + #If set to DETAILED, the Camo Rotation overlay will show detailed info + #Allowed Values: HIDDEN, ICON, DETAILED + camoRotationMode = "DETAILED" + diff --git a/minecraft/config/framedblocks-common.toml b/minecraft/config/framedblocks-common.toml new file mode 100644 index 0000000..837d548 --- /dev/null +++ b/minecraft/config/framedblocks-common.toml @@ -0,0 +1,5 @@ + +[general] + #If true, framed blocks are completely fire proof + fireproofBlocks = false + diff --git a/minecraft/config/freecam.toml b/minecraft/config/freecam.toml new file mode 100644 index 0000000..9107ad7 --- /dev/null +++ b/minecraft/config/freecam.toml @@ -0,0 +1,46 @@ + +[Freecam] + #The type of flight used by freecam. + #Allowed Values: CREATIVE, DEFAULT + "Flight Mode" = "DEFAULT" + #The horizontal speed of freecam. + #Range: 0.0 ~ 10.0 + "Horizontal Speed" = 1.0 + #The vertical speed of freecam. + #Range: 0.0 ~ 10.0 + "Vertical Speed" = 1.0 + #Allows travelling through transparent blocks in freecam. + "Ignore Transparent Blocks" = true + #Allows travelling through doors/trapdoors/gates in freecam. + "Ignore Openable Blocks" = true + #Allows travelling through all blocks in freecam. + "Ignore All Collision" = true + #Whether 'Initial Perspective' should check for collision, even when using 'Ignore All Collision'. + "Always Check Initial Collision" = false + #The initial perspective of the camera. + #Allowed Values: FIRST_PERSON, THIRD_PERSON, THIRD_PERSON_MIRROR, INSIDE + "Initial Perspective" = "INSIDE" + #Shows your player in its original position. + "Show Player" = true + #Whether you can see your hand in freecam. + "Show Hand" = false + #Increases brightness while in freecam. + "Full Brightness" = false + #Whether you see a fog overlay underwater, in lava, or powdered snow. + "Show Submersion Fog" = false + #Disables freecam when damage is received. + "Disable on Damage" = true + #Prevents player movement while freecam is active. + #WARNING: Multiplayer usage not advised. + "Freeze Player" = false + #Whether you can interact with blocks/entities in freecam. + #WARNING: Multiplayer usage not advised. + "Allow Interaction" = false + #The source of block/entity interactions. + #Allowed Values: CAMERA, PLAYER + "Interaction Mode" = "CAMERA" + #Notifies you when entering/exiting freecam. + "Freecam Notifications" = true + #Notifies you when entering/exiting tripod cameras. + "Tripod Notifications" = true + diff --git a/minecraft/config/fsr2-client.toml b/minecraft/config/fsr2-client.toml new file mode 100644 index 0000000..ea895a4 --- /dev/null +++ b/minecraft/config/fsr2-client.toml @@ -0,0 +1,14 @@ + +#FSR 2.0 Configuration +[fsr] + #FSR 2.0 Quality Mode + #Allowed Values: NATIVE, ULTRA_QUALITY, QUALITY, BALANCED, PERFORMANCE, ULTRA_PERFORMANCE + qualityMode = "BALANCED" + #Enable FSR 2.0 Sharpening + enableSharpening = true + #FSR 2.0 Sharpening Strength (0.0 - 1.0) + #Range: 0.0 ~ 1.0 + sharpeningStrength = 0.8 + #Automatically optimize FSR settings based on system performance + autoOptimize = true + diff --git a/minecraft/config/ftbpc-client.snbt b/minecraft/config/ftbpc-client.snbt new file mode 100644 index 0000000..d9b673d --- /dev/null +++ b/minecraft/config/ftbpc-client.snbt @@ -0,0 +1,53 @@ +{ + # When enabled, toasts regarding the advancement progression will be disabled. + # Default: false + disable_advancements_toasts: false + + # When enabled, toasts regarding the recipe unlocks will be disabled. + # Default: false + disable_recipe_toasts: false + + # When enabled, toasts regarding social interaction will be disabled. + # Default: false + disable_socialinteraction_toasts: false + + # When enabled, toasts regarding the in-game start tutorial will be disabled. + # Default: true + disable_tutorial_toasts: true + + # When enabled, the advancements button will be removed from the pause menu. + # Default: false + remove_advancements_from_pause: false + + # The seed to use for the world. Only used if world_uses_static_seed is enabled. + # Default: "" + static_seed: "" + + # When enabled, the world will always use the same seed, regardless of the world name. + # Default: false + world_uses_static_seed: false + integrations: { + jei: { + # When enabled, the recipe names will be printed to the log when the JEI integration is loaded. + # Default: false + recipe_names_debug: false + + # When enabled, the recipe tabs in JEI will be sorted based on the order specified in the JEI integration. + # Default: false + sort_recipes: false + } + } + pause_screen: { + # When enabled, the support provider will be enabled in the top left of the pause screen. This is used for modpacks to provide support information. + # Default: true + enable_support_provider: false + + # The URL to open when the support provider's Discord icon is clicked. If this is empty, the Discord icon will not be shown. + # Default: "https://go.ftb.team/discord" + support_discord_url: "https://go.ftb.team/discord" + + # The URL to open when the support provider's GitHub icon is clicked. If this is empty, the GitHub icon will not be shown. + # Default: "https://go.ftb.team/support-modpack" + support_github_url: "https://go.ftb.team/support-modpack" + } +} diff --git a/minecraft/config/ftbpc-common.snbt b/minecraft/config/ftbpc-common.snbt new file mode 100644 index 0000000..d1f446f --- /dev/null +++ b/minecraft/config/ftbpc-common.snbt @@ -0,0 +1,31 @@ +{ + # When enabled, players will be able to use beds in the nether. + # Default: false + allow_beds_in_the_nether: false + + # When enabled, light sources near spawners will be broken to allow for mob spawning. + # Default: false + break_light_sources_near_spawners: false + + # If non-zero, set the jigsaw feature size limit to this value. + # Default: 0 + # Range: 0 ~ 256 + extended_jigsaw_range: 0 + + # When enabled, the light level around spawners will be ignored for mob spawning. + # Default: false + ignore_light_level_for_spawners: false + forced-game-rules: { + # Game rules that are forced on the server. The keys must be valid game rule IDs. + rules: { } + } + shaders_notice: { + # The shader pack to use when enabling shaders. Leave empty to use the default shader pack / first available shader pack in the list + # Default: "" + shader_pack_to_use: "" + + # When enabled, the shaders notice will be shown on world start if shaders are included in the pack. + # Default: false + show_on_start: false + } +} diff --git a/minecraft/config/ftbpc_pad_actions.snbt b/minecraft/config/ftbpc_pad_actions.snbt new file mode 100644 index 0000000..aea9283 --- /dev/null +++ b/minecraft/config/ftbpc_pad_actions.snbt @@ -0,0 +1,18 @@ +{ + actions: [ + { + command_action: { + command: "/spawn" + } + name: "ftbpackcompanion.spawn" + icon: "ftblibrary:icons/globe" + } + { + command_action: { + command: "/home" + } + name: "ftbpackcompanion.home" + icon: "ftblibrary:icons/compass" + } + ] +} diff --git a/minecraft/config/ftbqoptimizer.snbt b/minecraft/config/ftbqoptimizer.snbt new file mode 100644 index 0000000..be61459 --- /dev/null +++ b/minecraft/config/ftbqoptimizer.snbt @@ -0,0 +1,13 @@ +# FTBQuestOptimizer config file +# If you're a modpack maker, edit defaultconfigs/ftbqoptimizer-server.snbt instead + +{ + # Enable optimization of quest completion detection + # Default: true + detect_optimization: true + + # Number of tick skips for checking player inventories, 0 to disable tick skipping. Experiment and find the best value for you! + # Default: 5 + # Range: 0 ~ 100 + skip_ticks_amount: 5 +} diff --git a/minecraft/config/ftbquests/quests/chapter_groups.snbt b/minecraft/config/ftbquests/quests/chapter_groups.snbt new file mode 100644 index 0000000..7087b9b --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapter_groups.snbt @@ -0,0 +1,3 @@ +{ + chapter_groups: [ ] +} diff --git a/minecraft/config/ftbquests/quests/chapters/Chapter 1.snbt b/minecraft/config/ftbquests/quests/chapters/Chapter 1.snbt new file mode 100644 index 0000000..efa267e --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/Chapter 1.snbt @@ -0,0 +1,1004 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "andesite_age" + group: "78E9D2CB9C3EC468" + icon: "twilightforest:twilight_portal_miniature_structure" + id: "64FA230BA8D99973" + order_index: 0 + quest_links: [ ] + quests: [ + { + description: [ + "Welcome to the &6Andesite Age.&r This chapter is the backbone of your journey." + "" + "&2How it works:&r" + "" + "1. &aFollow&r the &ecentral line&r to master &6Create.&r This is your core progression." + "" + "2. &achoose&r between four &eSpecializations:&r &6Tech, &5Magic,&r &2Farming,&r or &4Combat.&r" + "" + "3. To unlock the &aTwilight Forest,&r complete the Main Path and &eONE&r specialization." + "" + "4. Complete &eALL&r branches to earn unique &aMaster Trophy!&r" + "" + "Use orbital nodes for extra loot. Good luck, &dPathfinder!&r" + ] + icon: { + Count: 1 + id: "explorerscompass:explorerscompass" + tag: { } + } + id: "3200137A7D30D479" + size: 2.0d + tasks: [{ + id: "267E750314DA27E6" + title: "The Crossroad of Destiny" + type: "checkmark" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: [ + "3200137A7D30D479" + "6EA800BC60476D2F" + "76AE02919BF32037" + "3A8F614E1196FC28" + "43DB960BC842C76D" + "55D1A089E5B299DB" + "265AE3A39E7AD311" + "000682B5CC22FEC2" + "681F7D646B0F14A1" + "1E86CB799045D715" + "12928E377F658964" + "7F9170B57FE7CC13" + ] + dependency_requirement: "one_completed" + description: [ + "Congratulations, Engineer. You have moved beyond mere manual labor and started thinking in systems. The status of Lead Architect is not just about access to new blueprints—it is a commitment to industrial optimization." + "" + "At this stage, you have access to tools that will make your life easier and your factories smarter. &aLook around:&r the surrounding &6utility quests&r will help you monitor stress, speed, and resource flow." + "" + "&aYour Ultimate Goal:&r Prepare for the &acreation&r of the &5Diamond&r of this Era. This is no ordinary gem found in the dirt; it is a pinnacle of engineering that requires massive resource throughput and a flawless assembly line." + "" + "&dExplore the available utility gear and prepare for a massive scale-up.&r" + ] + icon: "create:empty_schematic" + id: "137CCAF8F152659F" + min_required_dependencies: 3 + shape: "hexagon" + size: 2.5d + tasks: [{ + id: "49F7D95977514CB5" + title: "&6The Lead Architect&r" + type: "checkmark" + }] + x: -9.0d + y: 5.0d + } + { + description: [ + "If you want to scale your production, you need a place to put all those resources. Standard chests are too small and disorganized for a true Architect." + "" + "&bSophisticated Storage&r barrels are the backbone of any automated warehouse. They &acan be expanded, filtered, and upgraded&r to hold thousands of items in a single block." + "" + "Your Task:" + "" + "1. &aCraft&r any &6Barrel&r from this mod." + "" + "2. &aCraft&r any&6 Storage Upgrade&r to enhance its capabilities." + "" + "&dTip: Use a 'Pickup Upgrade' or 'Compacting Upgrade' to make your resource management even more efficient!&r" + ] + id: "7F9170B57FE7CC13" + tasks: [ + { + id: "668457D5C690C956" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "sophisticatedstorage:all_storage" + } + } + type: "item" + } + { + id: "2E1E673BF05A920A" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "sophisticatedstorage:pickup_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:filter_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:magnet_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:feeding_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:compacting_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:void_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:smelting_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:blasting_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:smoking_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:survival_infinity_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:compression_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:pump_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:jukebox_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:stack_downgrade_tier_1" + } + { + Count: 1b + id: "sophisticatedstorage:alchemy_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:stonecutter_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:crafting_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:stack_upgrade_tier_1" + } + { + Count: 1b + id: "sophisticatedstorage:hopper_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/botanist_workbench_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/glassblower_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/carpenters_table_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/loom_table_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/mason_table_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/alchemy_bench_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/tinkering_table_upgrade" + } + ] + } + } + type: "item" + } + ] + title: "Storage" + x: -6.0d + y: 4.0d + } + { + description: [ + "&6Engineer's Goggles&r allow you to see the 'pulse' of your factory. By looking at any component, you &acan see&r its current &bspeed&r (RPM) and &bstress&r impact. This is vital for preventing system overloads." + "" + "The &6Wrench&r is your primary tool for &aconfiguring and dismantling machinery.&r" + ] + id: "12928E377F658964" + tasks: [ + { + id: "263872225F1B9AB3" + item: "create:goggles" + type: "item" + } + { + id: "4F9621C7A5BC394D" + item: "create:wrench" + type: "item" + } + ] + x: -5.5d + y: 5.0d + } + { + description: [ + "Building a massive factory by hand is slow and prone to error. &aUse&r the &6Schematic Table&r to &arecord&r your &adesigns or upload&r new ones." + "" + "The &6Schematicannon&r&a is your best friend—it automatically builds structures&r from your blueprints as long as it has gunpowder and the required materials in nearby chests." + ] + id: "1E86CB799045D715" + tasks: [ + { + id: "2D1F71AFBCC2FB22" + item: "create:schematicannon" + type: "item" + } + { + id: "6BD795A3D4A2C945" + item: "create:schematic_table" + type: "item" + } + { + id: "7A8E15B5FFB37FDA" + item: "create:empty_schematic" + type: "item" + } + ] + x: -6.5d + y: 6.0d + } + { + description: [ + "Sometimes a conveyor belt is too bulky for a tight space. &6Item Pipes from&r the &5Pipez mod&r offer a &acompact and high-speed alternative&r for transporting materials." + "" + "&6Use&r the &6Pipez Wrench&r to &aconfigure&r the connections, &aset filters&r, or &achange the extraction mode&r. It is the universal tool for managing your fluid, item, and energy networks." + ] + id: "265AE3A39E7AD311" + tasks: [ + { + id: "2172C29ACD85C7FE" + item: "pipez:wrench" + type: "item" + } + { + id: "2738FD8AB91E0128" + item: "pipez:item_pipe" + type: "item" + } + ] + x: -7.5d + y: 8.0d + } + { + dependencies: ["265AE3A39E7AD311"] + description: ["&6Upgrades&r &aallow&r you to &aincrease the number of items moved&r per tick and enable advanced filtering options. Simply sneak-right-click the pipe connection with a wrench and insert the upgrade into the slot."] + id: "000682B5CC22FEC2" + tasks: [{ + id: "1350F14628E9E14A" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "pipez:upgrades" + } + } + type: "item" + }] + title: "Pipez And Upgrades" + x: -6.5d + y: 8.5d + } + { + description: [ + "&6Iron Furnaces&r &aprovide faster smelting speeds&r and better fuel efficiency." + "" + "&dCheck JEI to see how to upgrade your furnaces even further!&r" + ] + id: "3A8F614E1196FC28" + tasks: [{ + id: "11EE47E27F9EEBAC" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ironfurnaces:iron_furnace" + } + { + Count: 1b + id: "ironfurnaces:upgrade_iron" + } + ] + } + } + type: "item" + }] + x: -10.5d + y: 8.0d + } + { + description: [ + "Even the most brilliant Architect can learn from the past. The ruins scattered across the world hold forgotten secrets and rare components that can jumpstart your industrial empire." + "" + "&aSearch&r for &6structures related to engineering&r and ancient mechanics. Scour their halls and reclaim what was lost." + "" + "&5Your Task:&r &aOpen and loot 10 chests&r in world structures." + "" + "&dP.S. Keep an eye out for specialized loot—it might save you a lot of crafting time!&r" + ] + id: "43DB960BC842C76D" + tasks: [{ + id: "08C756603C932545" + item: "minecraft:chest" + type: "item" + }] + x: -12.5d + y: 6.5d + } + { + description: [ + "The simple millstone was just the beginning. To achieve true industrial throughput, you need the sheer force of &6Crushing Wheels&r." + "" + "These massive wheels &acan grind ores&r into crushed forms with a high chance of &adoubling your output&r and giving secondary resources. They require a significant amount of rotational force (SU), so make sure your power source is up to the task." + "" + "Note: You need a pair of wheels spinning towards each other to process items." + ] + id: "55D1A089E5B299DB" + tasks: [{ + count: 2L + id: "24F320A59DD239C4" + item: "create:crushing_wheel" + type: "item" + }] + x: -12.5d + y: 5.5d + } + { + dependencies: ["137CCAF8F152659F"] + description: [ + "You have reached the point where &2you are ready to build real factories.&r" + "" + "On this path, you must establish mass production of resources and construct the ultimate assembly line for the Diamond of this Era." + "" + "To achieve this, &ayou will need&r:" + "" + "&6Mechanical Belts&r — to connect everything into a single network." + "" + "&6Blaze Burners&r — to melt through any obstacles." + "" + "&6Mechanical Drills&r — so that extraction never stops for a second." + "" + "&6Encased Fans&r — to process stacks of resources in an instant." + "" + "&aScale up&r or &4fail.&r &dThe choice is yours.&r" + ] + id: "3766E25918DAE990" + tasks: [{ + id: "1C6E00046B86FAF0" + type: "checkmark" + }] + title: "&6Scale Up or Fail&r" + x: -9.0d + y: 10.5d + } + { + id: "49B3E5A8FFCF8D12" + size: 1.5d + tasks: [{ + id: "75806EE108CC1F01" + item: "kubejs:tech_diamond_4" + type: "item" + }] + title: "Crafting the Diamond" + x: -9.0d + y: 19.0d + } + { + dependencies: [ + "3200137A7D30D479" + "200239D9BD7B2FCC" + "124EA14ACB2BE1E2" + "4EA42DC4768BEC98" + "621D1EE8E5D23542" + "1A9EE489B3AC32E3" + "37555EB7080D74F4" + "7A768990FDBC46BF" + "2D5F3468D6E10C2A" + "3EA747275863E5AE" + "5665DA7C8A6CD12B" + ] + dependency_requirement: "one_completed" + description: [ + "Congratulations, New Mage. You have taken the first steps into the world of magic. The mana in the air and nature around you has started to hum in resonance with you. " + "" + "At this stage, you will begin to find new magic spells and items that will make your life easier and you more formidable. &aLook around:&r the surrounding &6utility quests&r will help you monitor stress, speed, and resource flow." + "" + "&aYour Ultimate Goal:&r Prepare for the &acreation&r of the &5Diamond&r of this Era. This is no ordinary gem found in the dirt; it is The reward for your hard work as a mage and will expand your magical journey to the next level." + "" + "&dExplore the available utility gear and prepare for to evolve your magics.&r" + ] + icon: "ars_nouveau:archmage_spell_book" + id: "165AF290B7896926" + min_required_dependencies: 3 + shape: "hexagon" + size: 2.5d + tasks: [{ + id: "584F880276864C12" + type: "checkmark" + }] + title: "&6 Beginner Mage" + x: -18.0d + y: 5.0d + } + { + dependencies: ["165AF290B7896926"] + description: [ + "You have begun to understand the mysteries of magic &2you are ready to advance your magic to the next level.&r" + "" + "On this path, you dive into Magic, set up source production, and handle its transport to eventually create a Magic Diamond of this Era." + "" + "To achieve this, &ayou will need&r:" + "" + "&6Source&r — to power your magical creations." + "" + "&6Imbuement Chamber&r — to use your source to create new magical ingredients." + "" + "&6Source Gem&r — The catalyis for new magical ingredients." + "" + "&6Source Jar&r — to store and transport your source." + "" + "&aAdvance your magic&r or remain a beginner &r &dThe choice is yours.&r" + ] + id: "5BBAE57F077A9B7F" + tasks: [{ + id: "676495FEB88BB96D" + type: "checkmark" + }] + title: "&6Evolve Your Magic" + x: -18.0d + y: 10.5d + } + { + dependencies: ["5BBAE57F077A9B7F"] + description: ["&aThis Machine&r is the &6key to crafting with magic&r. When placed and surrounded by arcane pedestals &rit will convert catalysis ingredients to the desired form&r &6this requires additional ingredients and source to complete&r ."] + id: "746E7A24CD4EC66B" + tasks: [{ + id: "20261818A2A26F94" + item: "ars_nouveau:imbuement_chamber" + type: "item" + }] + x: -18.0d + y: 12.0d + } + { + dependencies: ["746E7A24CD4EC66B"] + description: ["The source gem is a key crafting ingredient for many magical items and is a catalysis for new magical ingredients. &aUse them&r &6to make essences&r and advance your magic."] + id: "0119A040BBA15B6A" + tasks: [{ + id: "63DAE55E63959CEA" + item: "ars_nouveau:source_gem" + type: "item" + }] + x: -18.0d + y: 13.0d + } + { + id: "627525B587EFA7D2" + size: 1.5d + tasks: [{ + id: "55B50B840A7E14A9" + item: "kubejs:magic_diamond_4" + type: "item" + }] + title: "Crafting the Diamond" + x: -18.0d + y: 19.0d + } + { + id: "4EA42DC4768BEC98" + tasks: [{ + id: "194E07E690CD09B8" + item: "ars_nouveau:novice_spell_book" + type: "item" + }] + title: "Craft The novice spell book" + x: -17.5d + y: 2.5d + } + { + id: "2D5F3468D6E10C2A" + tasks: [ + { + id: "0C2B0CEEA6E9BFA0" + item: "botania:light_blue_mystical_flower" + type: "item" + } + { + id: "184FF56803E4B045" + item: "botania:green_mystical_flower" + type: "item" + } + { + id: "12ACD46A8AE96879" + item: "botania:light_gray_mystical_flower" + type: "item" + } + { + id: "729AB7F0B486AC2D" + item: "botania:cyan_mystical_flower" + type: "item" + } + ] + x: -20.5d + y: 3.0d + } + { + id: "621D1EE8E5D23542" + tasks: [{ + id: "05C3873A701F7B63" + item: "forbidden_arcanus:darkstone" + type: "item" + }] + x: -21.0d + y: 5.0d + } + { + id: "200239D9BD7B2FCC" + tasks: [{ + id: "18630F3075F928A4" + item: { + Count: 1 + id: "irons_spellbooks:copper_spell_book" + tag: { + "irons_spellbooks:spell_container": { + data: [ ] + maxSpells: 5 + mustEquip: 1b + spellWheel: 1b + } + } + } + type: "item" + }] + x: -20.5d + y: 7.0d + } + { + id: "37555EB7080D74F4" + tasks: [{ + id: "7D8AC464404A473F" + item: "ars_nouveau:sourceberry_bush" + type: "item" + }] + x: -15.5d + y: 3.5d + } + { + id: "3EA747275863E5AE" + tasks: [{ + id: "04FB4D8A6C924ED6" + item: "irons_spellbooks:common_ink" + type: "item" + }] + x: -14.5d + y: 5.0d + } + { + id: "124EA14ACB2BE1E2" + tasks: [{ + id: "19367192B25F1CBA" + item: "irons_spellbooks:arcane_essence" + type: "item" + }] + x: -15.0d + y: 6.5d + } + { + id: "7A768990FDBC46BF" + tasks: [{ + id: "00C37B4E1EE8925A" + item: "irons_spellbooks:inscription_table" + type: "item" + }] + x: -16.0d + y: 8.0d + } + { + id: "5665DA7C8A6CD12B" + tasks: [{ + id: "12381D00102D234C" + item: "hexerei:mixing_cauldron" + type: "item" + }] + x: -17.5d + y: 8.5d + } + { + id: "1A9EE489B3AC32E3" + tasks: [{ + id: "6F11583F5902E679" + item: "bloodmagic:daggerofsacrifice" + type: "item" + }] + x: -19.5d + y: 8.5d + } + { + id: "681F7D646B0F14A1" + tasks: [{ + id: "38E0CF1F5FCC75F8" + item: "create:cogwheel" + type: "item" + }] + x: -7.0d + y: 7.0d + } + { + id: "6EA800BC60476D2F" + tasks: [{ + id: "741869DE9CC37732" + item: "create:white_sail" + type: "item" + }] + x: -11.5d + y: 4.0d + } + { + id: "76AE02919BF32037" + tasks: [{ + id: "157F2F70CEE074B5" + item: "minecraft:magma_block" + type: "item" + }] + x: -11.5d + y: 7.5d + } + { + dependencies: ["3200137A7D30D479"] + icon: { + Count: 1 + id: "farmersdelight:skillet" + tag: { + Damage: 0 + } + } + id: "4574743823A02162" + shape: "hexagon" + size: 2.5d + tasks: [{ + id: "00665543A35AB921" + type: "checkmark" + }] + x: 9.0d + y: 5.5d + } + { + dependencies: [ + "13459280714AFBC7" + "6F9B9E5ABF83118E" + "342ACCDBA95E0E01" + "148A9CD414F0AD1B" + "332C2A8707BCD7F7" + ] + id: "19573C886DFCD716" + tasks: [{ + id: "79A97D355235BF17" + item: "kubejs:culinary_diamond" + type: "item" + }] + x: 9.0d + y: 19.0d + } + { + id: "332C2A8707BCD7F7" + tasks: [{ + id: "3B37F5EE366B29FB" + item: "farmersdelight:pasta_with_meatballs" + type: "item" + }] + x: 9.0d + y: 16.5d + } + { + dependencies: [ + "682965482462B916" + "7D08F9C7DDAC4235" + ] + id: "342ACCDBA95E0E01" + tasks: [{ + id: "2AC7D7A560242F5C" + item: "bakery:chocolate_cake" + type: "item" + }] + x: 8.0d + y: 16.5d + } + { + dependencies: [ + "57E948274B666E04" + "682965482462B916" + ] + id: "148A9CD414F0AD1B" + tasks: [{ + id: "03515795F5389CC4" + item: "bakery:strawberry_cake" + type: "item" + }] + x: 7.0d + y: 17.0d + } + { + id: "6F9B9E5ABF83118E" + tasks: [{ + id: "3A5C19FD9AFA84D3" + item: "create:builders_tea" + type: "item" + }] + x: 10.0d + y: 16.5d + } + { + id: "13459280714AFBC7" + tasks: [{ + id: "07BA316B86ADC157" + item: "minecraft:amethyst_cluster" + type: "item" + }] + x: 11.0d + y: 17.0d + } + { + dependencies: ["302B50DB36CA4256"] + id: "57E948274B666E04" + tasks: [{ + id: "0821D2A868CEA159" + item: "bakery:strawberry_jam" + type: "item" + }] + x: 6.0d + y: 16.5d + } + { + dependencies: ["302B50DB36CA4256"] + id: "7D08F9C7DDAC4235" + tasks: [{ + id: "4B9A173BC85C2E5B" + item: "bakery:chocolate_jam" + type: "item" + }] + x: 7.5d + y: 15.5d + } + { + dependencies: ["302B50DB36CA4256"] + id: "682965482462B916" + tasks: [{ + id: "4EADB61BD1EF652A" + item: "bakery:cake_dough" + type: "item" + }] + x: 6.5d + y: 15.5d + } + { + dependencies: ["4574743823A02162"] + id: "60EC0EF9062F746B" + tasks: [{ + id: "71E8D8B485E0A780" + type: "checkmark" + }] + title: "cook checkmark" + x: 9.0d + y: 10.5d + } + { + dependencies: ["60EC0EF9062F746B"] + id: "302B50DB36CA4256" + tasks: [ + { + id: "6073705B94300855" + item: "bakery:baker_station" + type: "item" + } + { + id: "36C1499009F01E87" + item: "farm_and_charm:cooking_pot" + type: "item" + } + { + id: "0DBECBAEA7E3D63B" + item: "bakery:jar" + type: "item" + } + { + id: "151C58C539035A75" + item: "farm_and_charm:crafting_bowl" + type: "item" + } + ] + x: 5.5d + y: 14.0d + } + { + dependencies: ["60EC0EF9062F746B"] + id: "579160BE54E09AED" + tasks: [ + { + id: "51BF13035C37B687" + item: "farmersdelight:cooking_pot" + type: "item" + } + { + id: "0B5FCC4E27B69670" + item: "farmersdelight:cutting_board" + type: "item" + } + { + id: "0919CB6F11A9C881" + item: { + Count: 1 + id: "farmersdelight:iron_knife" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 9.0d + y: 13.5d + } + { + dependencies: ["60EC0EF9062F746B"] + id: "6791B45FE468E525" + tasks: [ + { + id: "5B41A507836B6906" + item: "create:mechanical_mixer" + type: "item" + } + { + id: "4D14654E9E246286" + item: "create:basin" + type: "item" + } + ] + x: 12.5d + y: 14.0d + } + { + dependencies: ["3200137A7D30D479"] + icon: { + Count: 1 + id: "simplyswords:iron_longsword" + tag: { + Damage: 0 + } + } + id: "4687E1AADC3D070F" + shape: "hexagon" + size: 2.5d + tasks: [{ + id: "284A741C97455101" + type: "checkmark" + }] + x: 19.0d + y: 5.5d + } + { + dependencies: ["4687E1AADC3D070F"] + id: "4A89B2B8A97A8A65" + tasks: [{ + id: "6138F1A418B27ABE" + title: "combat checkmark" + type: "checkmark" + }] + x: 19.0d + y: 10.5d + } + { + dependencies: ["20ECA2451F65DB16"] + id: "6FDC803425019FA4" + tasks: [{ + id: "336E991AEAC17B6E" + item: "kubejs:combat_diamond" + type: "item" + }] + x: 19.0d + y: 19.5d + } + { + dependencies: ["4A89B2B8A97A8A65"] + id: "20ECA2451F65DB16" + tasks: [ + { + id: "6DB51B63900071F8" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "simplyswords:swords" + } + } + type: "item" + } + { + id: "3CA68AEE9E59AA3F" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:armors/helmets" + } + } + type: "item" + } + { + id: "5EEF67D351B515A1" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:armors/chestplates" + } + } + type: "item" + } + { + id: "026691CB440390F2" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:armors/leggings" + } + } + type: "item" + } + { + id: "0A49DD62BA999ED5" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:armors/boots" + } + } + type: "item" + } + ] + x: 19.0d + y: 14.0d + } + ] + title: "&5Chapter 1&r" +} diff --git a/minecraft/config/ftbquests/quests/chapters/ad_astra.snbt b/minecraft/config/ftbquests/quests/chapters/ad_astra.snbt new file mode 100644 index 0000000..0690778 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/ad_astra.snbt @@ -0,0 +1,2318 @@ +{ + autofocus_id: "4752A206456F0893" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "ad_astra" + group: "3A1C74A49BDDD6E1" + icon: { + Count: 1 + id: "ad_astra:tier_1_rocket" + tag: { + BotariumData: { } + } + } + id: "4D9197FB03EF6360" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -7.75d + y: -5.5d + } + { + click: "https://www.youtube.com/watch?v=qBKKDaYy-CU" + height: 2.0d + hover: ["You&cTube&r Tutorial"] + image: "kubejs:textures/item/planet.png" + rotation: 0.0d + width: 2.0d + x: 5.0d + y: -5.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 0.0d + y: 1.6505376344086022d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 5.50179211469534d + y: 1.6505376344086022d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -10.0d + y: 3.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 8.0d + y: -6.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -10.0d + y: -4.0d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["4752A206456F0893"] + description: [ + "&n&bFinally!&r" + "" + "The time for your awaits has arrived just in time." + "" + "Here’s very simple, you only need a &6NASA&r. Yes! &6NASA&r Workbench, one on which placing certain ingredients or components, a &9Rocket&r will be constructed." + "" + "Unlike &cGalacticCraft&r mod’s way of doing this, you do not require a &9Blueprint&r, only the needed &nresources&r." + ] + hide_dependency_lines: true + id: "1FE49E1F5E046F0F" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "55B2AB832B090D15" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 2.0d + tasks: [{ + id: "52B7EAED52EB0F37" + item: "ad_astra:nasa_workbench" + type: "item" + }] + x: 8.0d + y: 2.0d + } + { + dependencies: ["59822C508A5BD9C7"] + id: "4752A206456F0893" + rewards: [ + { + count: 2 + id: "14B5A4D68CF5B0B2" + item: "alltheores:steel_plate" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "1CFC7B29764BDCA0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "368DFC5E3F636673" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:plates/steel)" + } + } + title: "Any Steel Plates" + type: "item" + }] + title: "Steel Plate" + x: -4.0d + y: -1.5d + } + { + dependencies: ["0FA5162711FED7A9"] + description: [ + "Many of the resources needed to create a &9Space Station&r, require you to first go to the &7Moon&r! Still, here’s the list of needs and what the &9Space Station&r looks like:" + "" + "&o&b32&r Desh Ingots, &o&b32&r Steel Ingots, &o&b64&r Iron Plates, and &o&b32&r Desh Plates" + "" + "There’s no air on your &9Space Station&r, you must use your knowledge to create &dOxygen&r." + "" + "You can expand wide, and height as you, please. The space in the horizon is infinite, vertical measurement takes the same as &aOverworld&r!" + "" + "There are certain conditions when &dOxygen&r isn’t present on your &9Space Station&r, or in general, around any planet, you visit; &1Water&r will &nfreeze&r or &nevaporate&r depending on the planet’s temperatures, and many entities from &aEarth&r/&aOverworld&r will die if &dOxygen&r isn’t present in the area. I think you got the idea." + "" + "There’s no &ngravity&r present, meaning you’ll fall slowly, and &nfall damage&r isn’t present. Although, the use of Shift helps to descend." + "" + "Falling from any &9Space Station&r, makes you “&nteleport&r”, rather called stranded on the planet making its orbit." + "" + "{image:kubejs:textures/item/spac_estation.png width:190 height:100 align:1}" + ] + hide_dependency_lines: true + id: "2A34E6A4457FBC88" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "786570E1EF87B61D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "octagon" + size: 1.3d + subtitle: "&oPlanet Explorer" + tasks: [{ + dimension: "ad_astra:earth_orbit" + icon: "ad_astra:earth_globe" + id: "155BAACB3D94FBC5" + title: "&bThe Space Station" + type: "dimension" + }] + x: -4.0d + y: 1.5d + } + { + dependencies: ["2A34E6A4457FBC88"] + description: [ + "Congrats! You made it to the &7Moon&r!" + "" + "You brought &dOxygen&r with you, right? &bRIGHT&r?!" + "" + "Aside. The &7Moon&r has its ores, hostile, and neutral creatures, and environmental conditions." + "" + "Must be said, the &7Moon’s&r surface has craters, and multiple caves, and is layered first by &3Moon Sand&r. Below, there’s &8Moon Stone&r, and &7Soul Soil&r. " + ] + id: "08F8129B6F2BA30B" + rewards: [{ + exclude_from_claim_all: true + id: "6FDED2FDC9D9249D" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + dimension: "ad_astra:moon" + icon: "ad_astra:moon_globe" + id: "255577F4C28C846D" + title: "Visit: &2The Moon" + type: "dimension" + }] + x: -6.0d + y: 2.0d + } + { + dependencies: ["2A34E6A4457FBC88"] + description: [ + "Welcome to the &cred&r planet, known as &4Mars&r." + "" + "There’s a new enemy to your list of threats; &9Martian Raptors&r, they move fast, a living breathing nightmare fuel for those unprotected." + "" + "Absolutely, you can craft multiple decoration blocks with &aMars Sand&r, and &3Mars Stone&r!" + ] + id: "2E8D25268A8F9ED6" + rewards: [{ + exclude_from_claim_all: true + id: "1606F7BE31BDEF8B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + dimension: "ad_astra:mars" + icon: "ad_astra:mars_globe" + id: "27E0647FC786EDE9" + title: "Visit Planet: &2Mars" + type: "dimension" + }] + x: -5.0d + y: 2.5d + } + { + dependencies: ["2A34E6A4457FBC88"] + description: ["A great place to collect plentiful &6Lava&r and &6Magma&r blocks. There are no new minerals other than &7Iron&r!"] + id: "79310D27A711F77B" + rewards: [{ + exclude_from_claim_all: true + id: "3F6CD670ADD0DE77" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + dimension: "ad_astra:mercury" + icon: "ad_astra:mercury_globe" + id: "1712CE2CAED7046D" + title: "Visit Planet: &2Mercury" + type: "dimension" + }] + x: -4.0d + y: 3.0d + } + { + dependencies: ["2A34E6A4457FBC88"] + description: ["This planet has its trickery. Has own &bstructure&r, new &bores&r, and &benemies&r."] + id: "3D7A2D3CB598967F" + rewards: [{ + exclude_from_claim_all: true + id: "12DA7BC4FE2FC26B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + dimension: "ad_astra:venus" + icon: "ad_astra:venus_globe" + id: "771ACB8C178BD714" + title: "Visit Planet: &2Venus" + type: "dimension" + }] + x: -3.0d + y: 2.5d + } + { + dependencies: ["2A34E6A4457FBC88"] + description: [ + "A hope for humanity, to find another suitable place to live in the vast universe after &aEarth&r." + "" + "For some could be kind of harsh, but it’s the only one so far… &9Glacio&r is all &nfrozen&r. Yet has &dOxygen&r all around. When crafting the last tier of &6Rockets&r, your &bSpace Exploring&r map will yet again have a new option." + "" + "The new &eSolar System&r to explore has only a planet, which is &9Glacio&r. And it’s called &5Proxima Century&r." + "" + "Doesn’t have a star like we do, is purple… and bigger. Doesn’t have a hostile creature. But only a single passive. The &dGlacian Ram&r." + "" + "These are the ores found on the planet &9Glacio&r. Moreover, this planet's height/layers are similar to &aEarth&r/&aOverworld&r. Meaning there’s a &0Deepslate&r layer, although in this layer only rare minerals of the shown above would be generated." + "" + "Be &nextremely careful&r about where you step! There’s a bunch of &bPowder-Snow-Lakes&r around. One might just freeze to death if not careful enough!" + ] + id: "4D2B259D747D3C8E" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "553208AF81B97A5A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + dimension: "ad_astra:glacio" + icon: "ad_astra:glacio_globe" + id: "6D177F1FDA225E96" + title: "Visit Planet: &2Glacio" + type: "dimension" + }] + x: -2.0d + y: 2.0d + } + { + dependencies: ["1B372900C379161F"] + description: [ + "The &5Compressor&r automatically presses down &bIngots&r into &bPlates&r." + "" + "You won’t constantly need to &3Hammer&r down &bIngot&r to &bPlates&r, by hand." + "" + "Each made &bPlate&r, consumes &b2,000&r RF!" + "" + "One may use &9Hoppers&r or &eConduit-type&r blocks from other mods to extract and/or insert items into it!" + ] + hide_dependency_lines: false + id: "59822C508A5BD9C7" + rewards: [ + { + id: "425C981F5472B9D2" + item: "alltheores:steel_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "77180416234FB94A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1890B1B47B0BB45E" + item: "ad_astra:compressor" + type: "item" + }] + x: -4.0d + y: -5.0d + } + { + dependencies: ["7C64107F52DF00BC"] + description: [ + "Assemble your &a&oTier 1&r Rocket and fly to the &bMoon&r." + "" + "When you get into a &6Rocket&r, you won’t be moved into the &bMoon&r right away." + "" + "You need to select where you want to go, on this selection and screen; you’ll also be able to create your &9Space Station&r!" + "" + "&l•&r 1: Select the &dPlanetary System&r you want to travel, so far you have a &aTier 1&r Rocket; and only you are capable to be in the &eSolar System&r." + "" + "&l•&r 2: Select the &7Planet&r; some planets have natural satellites, and &aEarth&r or &9Overworld&r has the &7Moon&r." + "" + "&l•&r 3: On their selection, you can either create a &9Space Station&r on &aEarth&r or &7Moon’s&r orbit. You can have only one &9Space Station&r per planet in &nSingle Player&r, you can also travel to other &nplayer’s Stations&r via teleportation methods or their &npermission&r." + ] + icon: { + Count: 1 + id: "ad_astra:tier_1_rocket" + tag: { + BotariumData: { } + } + } + id: "0FA5162711FED7A9" + min_width: 300 + rewards: [ + { + id: "1FD129124612BA71" + item: "ad_astra:light_gray_flag" + type: "item" + } + { + exclude_from_claim_all: true + id: "0735DC2A316F3066" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "0F12D1FA7B1D7DB6" + item: "ad_astra:rocket_nose_cone" + type: "item" + } + { + count: 6L + id: "6FA4D7825EA13345" + item: "alltheores:steel_block" + type: "item" + } + { + count: 4L + id: "0CF59A3A1563AFD1" + item: "ad_astra:rocket_fin" + type: "item" + } + { + count: 2L + id: "015459F385EB47C4" + item: "ad_astra:steel_tank" + type: "item" + } + { + id: "158F9549BAF43998" + item: "ad_astra:steel_engine" + type: "item" + } + ] + title: "&aTier 1&r Rocket" + x: 8.0d + y: -0.5d + } + { + dependencies: ["0FA5162711FED7A9"] + description: [ + "Assemble your &o&6Tier 2&r Rocket and fly to the &cMars&r." + "" + "Congratulations! You're now able to craft a &2Tier 2&r Rocket. Now with the possibility to travel into &4Mars&r." + "" + "You may always come back to your previous planets. Did you love more the &7Moon&r? Understandable. Now! The &6Rocket&r!" + ] + icon: { + Count: 1 + id: "ad_astra:tier_2_rocket" + tag: { + BotariumData: { } + } + } + id: "2671CAFB7B1E1933" + rewards: [ + { + id: "46F844AA9E2F7809" + item: "ad_astra:orange_flag" + type: "item" + } + { + exclude_from_claim_all: true + id: "4F5F550526E25135" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "2927D9D95893FE90" + item: "ad_astra:rocket_nose_cone" + type: "item" + } + { + count: 6L + id: "4561319A8739225F" + item: "ad_astra:desh_block" + type: "item" + } + { + count: 4L + id: "2E3000D3D8F6E021" + item: "ad_astra:rocket_fin" + type: "item" + } + { + count: 2L + id: "00D7C96B30C930C2" + item: "ad_astra:desh_tank" + type: "item" + } + { + id: "3ED03F5222EB6660" + item: "ad_astra:desh_engine" + type: "item" + } + ] + title: "&6Tier 2&r Rocket" + x: 8.0d + y: -1.5d + } + { + dependencies: ["2671CAFB7B1E1933"] + description: [ + "With the accessibility to &5Ostrum&r, one can now travel to the planets &aVenus&r and &8Mercury&r." + "" + "To go into them, the temperatures will make you suffer if you don’t have &nwell-accommodated&r armor against their fiery atmospheres. You can always &ncheese it&r a little when using &bPotions of Fire Resistance&r! Now, to craft a &9Tier 3&r Rocket!" + ] + icon: { + Count: 1 + id: "ad_astra:tier_3_rocket" + tag: { + BotariumData: { } + } + } + id: "7E159E3826EA1F3E" + rewards: [ + { + id: "07ED6156975851C4" + item: "ad_astra:green_flag" + type: "item" + } + { + exclude_from_claim_all: true + id: "3D821EF0C9E04E08" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "71DAC35694C42494" + item: "ad_astra:rocket_nose_cone" + type: "item" + } + { + count: 6L + id: "30538E64714D606C" + item: "ad_astra:ostrum_block" + type: "item" + } + { + count: 4L + id: "2AACC4B28F8BC011" + item: "ad_astra:rocket_fin" + type: "item" + } + { + count: 2L + id: "323367CEE1913679" + item: "ad_astra:ostrum_tank" + type: "item" + } + { + id: "5BFC060426C8A85E" + item: "ad_astra:ostrum_engine" + type: "item" + } + ] + title: "&9Tier 3&r Rocket" + x: 8.0d + y: -2.5d + } + { + dependencies: ["7E159E3826EA1F3E"] + description: [ + "The lastly made &6Rockets&r, also the accessibility to fly around with a &6Space Suit&r!" + "" + "Go, assemble your &5Tier 4&r Rocket and fly to the &9Glacio&r!" + ] + icon: { + Count: 1 + id: "ad_astra:tier_4_rocket" + tag: { + BotariumData: { } + } + } + id: "2704D6F0E2508095" + rewards: [ + { + id: "2FD65AE38C9CCCE2" + item: "ad_astra:light_blue_flag" + type: "item" + } + { + exclude_from_claim_all: true + id: "6EC40F65533E114E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "031A8D9435E2E05E" + item: "ad_astra:rocket_nose_cone" + type: "item" + } + { + count: 6L + id: "07F28CD68D499B21" + item: "ad_astra:calorite_block" + type: "item" + } + { + count: 4L + id: "35E8C3FC2511EE4A" + item: "ad_astra:rocket_fin" + type: "item" + } + { + count: 2L + id: "0C33A13BD174423E" + item: "ad_astra:calorite_tank" + type: "item" + } + { + id: "76F65E7CAFEBDBED" + item: "ad_astra:calorite_engine" + type: "item" + } + ] + title: "&5Tier 4&r Rocket" + x: 8.0d + y: -3.5d + } + { + dependencies: ["1FE49E1F5E046F0F"] + description: [ + "Required for a &6Rocket&r to be launched!" + "" + "Place them on the floor, and have a wide area; due to being a &n3x3 wide block&r." + "" + "It’s a simple process. Find a fitting place, and be sure it has a &n3x3 wide sky access&r. Careful to those underneath the &ePad&r if you're in a multi-flooring building. The flames of the &6Rocket&r will &ndamage entities&r." + "" + "Secondly, place the &eLaunching Pad&r." + "" + "Third, and last… place the &6Rocket&r!" + "" + "The hub, and press the “&b&nspace bar&r” to go into space!" + "" + "&l&b&oSee you on the Moon!" + ] + id: "7C64107F52DF00BC" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "4BA1D9546795F4BF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "09CEA707F1B332F0" + item: "ad_astra:launch_pad" + type: "item" + }] + title: "Rocket Launch Pad" + x: 8.0d + y: 0.5d + } + { + dependencies: ["0FA5162711FED7A9"] + description: [ + "An important mineral to collect, &6Desh&r is required to advance machinery and upgrade your &6Rocket&r to &2Tier 2&r." + "" + "&6Desh&r utility becomes futile, due to its versatility like &3Iron&r. Must be harvested with an &bIron Pickaxe&r." + ] + hide_dependency_lines: true + icon: "ad_astra:moon_desh_ore" + id: "4D71E2AFA32631E7" + rewards: [ + { + id: "41350AFAE9815D19" + item: "ad_astra:desh_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "5B27CE38566B5DB4" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "69F619C6465F361A" + item: "ad_astra:desh_ingot" + type: "item" + }] + title: "The Desh Ore" + x: 1.5d + y: -2.5d + } + { + dependencies: ["4D71E2AFA32631E7"] + id: "4F405ACDA98FE821" + rewards: [ + { + count: 2 + id: "01EA0873DE3E9B43" + item: "ad_astra:desh_plate" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "425C0A6694243362" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "5832D63EED662D86" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:plates/desh)" + } + } + title: "Any Desh Plate" + type: "item" + }] + title: "Desh Plate" + x: 1.5d + y: -1.5d + } + { + dependencies: ["2671CAFB7B1E1933"] + description: [ + "An sturdy metal capable to resist a certain degree of heat. Naturally coming from &4Mars&r, that’s logical." + "" + "Must be harvested with an &3Iron Pickaxe&r or stronger material." + "" + "This material is required to craft &9Tier 3&r Rockets and the next Tier of an &aAstronaut’s Suit&r!" + ] + hide_dependency_lines: true + icon: "ad_astra:mars_ostrum_ore" + id: "6252590716097C6D" + rewards: [ + { + id: "4E3F942276BBF5B8" + item: "ad_astra:ostrum_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "79E4EB0075490AF3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "6CFA08BC68D2B19E" + item: "ad_astra:ostrum_ingot" + type: "item" + }] + title: "The Ostrum Ore" + x: 4.5d + y: -2.5d + } + { + dependencies: ["6252590716097C6D"] + id: "1E4561B23E3570CF" + rewards: [ + { + count: 2 + id: "3B96722382995DC6" + item: "ad_astra:ostrum_plate" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "3ECF0B1BC77B9653" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "2696A1C47F1236FD" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:plates/ostrum)" + } + } + title: "Any Ostrum plates" + type: "item" + }] + x: 4.5d + y: -1.5d + } + { + dependencies: ["7E159E3826EA1F3E"] + description: [ + "A mineral it’s only found on &aVenus&r, the most heat-resistant metal on the mod so far. Rare as &aEmeralds&r on &aEarth&r/&aOverworld&r." + "" + "The deeper one goes, the more &5Calorite&r a player will find. There are also structures in &aVenus&r, where &5Calorite&r and &0Netherite&r can be found." + ] + hide_dependency_lines: true + icon: "ad_astra:venus_calorite_ore" + id: "2BAF03664A5D36AF" + rewards: [ + { + id: "41AB0B3A67008E82" + item: "ad_astra:calorite_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "5A766AECB9F1E164" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "61EB7F59F856998D" + item: "ad_astra:calorite_ingot" + type: "item" + }] + title: "The Calorite Ore" + x: 3.0d + y: 0.0d + } + { + dependencies: ["2BAF03664A5D36AF"] + id: "4C96E292607EF7DA" + rewards: [ + { + count: 2 + id: "3F145FC3150692CD" + item: "ad_astra:calorite_plate" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "0A859B36056C3848" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "7973B1A11F91F18F" + item: "ad_astra:calorite_plate" + type: "item" + }] + x: 3.0d + y: 1.0d + } + { + dependencies: ["59822C508A5BD9C7"] + description: [ + "Machinery which &brefines&r, &0Oil&r into &eFuel&r; not any &eFuel&r! But &6Rocket Fuel&r!" + "" + "This kind cannot be &nrenewable&r, further playing." + "" + "There’s another fuel, which it’s &nbetter&r and &nrenewable&r." + ] + id: "54006D933C82CD9C" + rewards: [{ + exclude_from_claim_all: true + id: "285B09CDC911CF1B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1E15481FB8249D05" + item: "ad_astra:fuel_refinery" + type: "item" + }] + x: -2.5d + y: -5.0d + } + { + dependencies: ["1B372900C379161F"] + description: [ + "The &6Solar Panel&r generator requires &eSunlight&r to generate energy &nrenewably&r." + "" + "Their quantities of production vary through the day, the high noon is when most can be generated." + "" + "Blocking this generator's access to &eSunlight&r in a &b3x3&r made out of &nsolid blocks&r; &cWILL STOP GENERATING&r." + ] + id: "6EC6398F9967690A" + rewards: [ + { + id: "6EBB9C8A5ADD184E" + item: "ad_astra:desh_plate" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "315463C9726A40BC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "33FC29BAB195DEC6" + item: "ad_astra:solar_panel" + type: "item" + }] + x: -5.5d + y: -6.0d + } + { + dependencies: ["5AF5CB8C17AD7258"] + description: [ + "There’s no plenty of machinery for &9Ad Astra&r mod, in the occasions where machines are required to do certain tasks, there’s no better option than a simple &7Coal Generator&r." + "" + "Energy Capacity: &b9,000&r RF" + "" + "Depending on which fuel item it’s used, the more RF/Energy it’s created. For example!" + "" + "&l• &r&oStick&r: It’s capable to smelt 0.5 of an item; meaning to smelt a single item; one must use 2 Sticks. The energy value of a Stick, it’s &b1,000&r RF." + "" + "&l•&r &oWooden Plank&r: On the other hand, common vanilla, and like planks; can smelt down 1.5 items, sense of one item and a half. The value of energy obtained will be &b3,000&r RF." + "" + "&l•&r &oCoal&r: At last, capable to smelt 8 items peruse, the value of energy produced within this fuel is: &b16,000&r RF!" + ] + id: "1B372900C379161F" + min_width: 300 + rewards: [ + { + id: "6DCEE218441F9E68" + item: "minecraft:coal_block" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "2310BD4A74EF9582" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0ACB5285AAFF0A24" + item: "ad_astra:coal_generator" + type: "item" + }] + x: -5.5d + y: -5.0d + } + { + dependencies: ["54006D933C82CD9C"] + description: [ + "You’re going to space, you got a &bSpace Suit&r, surely your ready?" + "" + "Astronauts need &dOxygen&r to be capable to stand or at least survive outer space." + "" + "Just “air” won't function! You must craft an &aOxygen Loader&r." + "" + "Creates &dOxygen&r via processing &9Water&r!" + "" + "Conversion makes it slow, and tedious in the beginning, that said; &n1 Bucket&r of &9Water&r makes &n50mB&r of &dOxygen&r Gas; do &nremember&r: &b1,000&rmB of any Gas or Fluids it’s equal to &n1 complete Bucket&r! You're going to need &n20 buckets of water&r, to create a single bucket of &dOxygen&r." + "" + "Inserting a &bSpace Suit&r (Chestsplate), the set will be given &dOxygen&r, depending on how badly it’s the planet that you're on. &dOxygen&r will be consumed rapidly or simply none. If on &aEarth&r, or in a place where &dOxygen&r it’s given constantly, the &dOxygen&r from the Suit &nwon’t be consumed&r!" + ] + id: "119A781265B7FCA0" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "76E096C53DCE2461" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2BDB6A9DD1A3435D" + item: "ad_astra:oxygen_loader" + type: "item" + }] + x: -1.0d + y: -5.0d + } + { + dependencies: ["119A781265B7FCA0"] + description: [ + "Take it to believe for an &2Oxygen Dispenser&r of sorts. Instead of Loading your &dOxygen&r, liberates such &dOxygen&r to create a space where you can breathe!" + "" + "An &2Oxygen Distributor&r requires &1Water&r and &cEnergy&r to create &dOxygen&r and to distribute it in an &bArea&r. Make multiple of these. In this way, you’ll be able to have your commodities at Space." + "" + "Need a set-up? This is just an example, with other mods installed this setup can be even more compacted!" + "" + "{image:kubejs:textures/item/oxdistri.png width:150 height:75 align:1}" + "" + "Careful about where you got holes around your base. &dOxygen&r can escape, rapidly! Meaning you're losing the &dOxygen&r, one your trying to distribute; for the idea of survival. Surely you need to move cables or pipes from the outside, craft &aDucts&r!" + ] + id: "1C53888B7546DE90" + min_width: 500 + rewards: [ + { + id: "606440F736CAD609" + item: "alltheores:steel_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "1F35FA8B23334ECB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "120874D5602DC887" + item: "ad_astra:oxygen_distributor" + type: "item" + }] + x: 0.5d + y: -5.0d + } + { + dependencies: ["4752A206456F0893"] + id: "5C714C816CE3365B" + rewards: [ + { + id: "423DBCE5EAB50FAB" + item: "alltheores:steel_plate" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "70AC4A3AD3A41BDD" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5C3D3C88E6591F1E" + item: { + Count: 1 + id: "ad_astra:gas_tank" + tag: { } + } + type: "item" + }] + x: -3.0d + y: -1.5d + } + { + dependencies: ["4F405ACDA98FE821"] + description: ["Your &bHorse&r on the Moon"] + id: "30A6B9619242AD4F" + rewards: [{ + exclude_from_claim_all: true + id: "62B89488F0DBB288" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "43F56800B98C2934" + item: { + Count: 1 + id: "ad_astra:tier_1_rover" + tag: { } + } + type: "item" + }] + x: 0.0d + y: -1.5d + } + { + dependencies: ["08F8129B6F2BA30B"] + description: [ + "Who said there wasn’t &eCheese&r on the &7Moon&r?! Ha!" + "" + "&eCheese&r can be eaten straight away, recovering &n2 Hunger Drumsticks&r / &n4 Points of Hunger&r." + "" + "This Ore is easily mined with a &0Flint Pickaxe&r." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "33D6E68ED02850F8" + min_width: 240 + rewards: [ + { + id: "3469FD267A0B127A" + type: "xp_levels" + xp_levels: 1 + } + { + id: "7669B41AB06661BF" + item: "croptopia:cheeseburger" + type: "item" + } + { + id: "244FA29D0D11F6C9" + item: "ad_astra:yellow_flag" + type: "item" + } + ] + shape: "diamond" + subtitle: "A souvenir from your first space exploration." + tasks: [{ + id: "7C2433D8D5CA6CB7" + item: "ad_astra:cheese" + type: "item" + }] + x: 8.0d + y: -5.0d + } + { + dependencies: ["54006D933C82CD9C"] + id: "4F55D24F78EBC335" + rewards: [ + { + id: "1E496CF3224C0981" + item: "ad_astra:fuel_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "02652A0C48D77EE9" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "312A4742AE5FB80C" + item: "ad_astra:fuel_bucket" + type: "item" + }] + x: -2.0d + y: -6.0d + } + { + dependencies: ["54006D933C82CD9C"] + description: [ + "The &0Oil&r." + "" + "This resource is &nnonrenewable&r, and only found in vast open oceans." + "" + "About &b16-32&r buckets can be picked and extracted from these." + "" + "Later on in the mod progression you’ll find a better fuel, that is renewable!" + ] + id: "2DB72EDF04FE44CC" + rewards: [ + { + id: "4239B546082D833D" + item: "ad_astra:oil_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "36BD7CF761E093DF" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "17FD308FE04CBDE6" + item: "ad_astra:oil_bucket" + type: "item" + }] + title: "Oil Bucket" + x: -3.0d + y: -6.0d + } + { + dependencies: ["1C53888B7546DE90"] + description: [ + "To some, a &9Water Pump&r might seem useless, although becomes a necessity for those in space." + "" + "The need for water is not for &nhydration&r, but rather how to create &dOxygen&r!" + "" + "A &9Water Pump&r to work must have a &nSolid&r source of &1Water&r below it. It is recommended to have an infinite water source set up, either 1x3 or 2x2, this machine requires &cEnergy&r to work." + "" + "Use &ePipes&r to extract the fluid." + ] + id: "79ADB518AE82CB83" + rewards: [ + { + id: "69C8AFC84B0B887C" + item: "minecraft:water_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "3E86E166BA70ACCE" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2177665E8F0942D0" + item: "ad_astra:water_pump" + type: "item" + }] + x: 2.0d + y: -5.0d + } + { + dependencies: ["4752A206456F0893"] + description: [ + "&bSuits&r prepared for space, if you are safe from the vacuum void, and freezing temperatures of outer space; were you even ready?" + "" + "With a &bSpace Suit&r, one’s ability to survive and last for prolonged periods." + "" + "Highly &nenchantable&r!" + ] + hide_dependency_lines: true + id: "4AF4A6CAB336E810" + rewards: [ + { + id: "1FBB597D1EEB5E13" + item: "alltheores:steel_ingot" + random_bonus: 1 + type: "item" + } + { + id: "2E331D7BDFFB041F" + item: "thermal:white_rockwool" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "5C1060DDA67538D6" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "30DD34CEB410BF72" + item: { + Count: 1 + id: "ad_astra:space_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7584EC4C41028C36" + item: { + Count: 1 + id: "ad_astra:space_suit" + tag: { + BotariumData: { } + Damage: 0 + } + } + type: "item" + } + { + id: "653180F7CE88C390" + item: { + Count: 1 + id: "ad_astra:space_pants" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2ACB47BBA1396A04" + item: { + Count: 1 + id: "ad_astra:space_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&bThe Space Suit" + x: -8.0d + y: -0.5d + } + { + dependencies: ["4AF4A6CAB336E810"] + description: [ + "The more planets you explore in your &eSolar System&r, the more difficult weather conditions might come to mind. " + "" + "Those being high or low temperatures, a firstly made &bAstronaut Suit&r won’t help anymore. You gotta take even stronger resources! Time to make a &6Netherite Space Suit&r." + "" + "If the &0Netherite Armor&r used was &nenchanted&r, the &6Netherite Space Suit&r will carry the &nenchantments&r with it!" + ] + id: "7F68496ACEE438A8" + rewards: [ + { + id: "2721C27A1B532001" + type: "xp" + xp: 500 + } + { + id: "329CECC7FBD2A18A" + item: "ad_astra:desh_ingot" + random_bonus: 1 + type: "item" + } + { + id: "3AAC4C7EC9AD8F4A" + item: "ad_astra:ostrum_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "74A70CAA836DC0EB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "57FF8274F5186A6A" + item: { + Count: 1 + id: "ad_astra:netherite_space_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4FE360D3136B4CD3" + item: { + Count: 1 + id: "ad_astra:netherite_space_suit" + tag: { + BotariumData: { } + Damage: 0 + } + } + type: "item" + } + { + id: "350EBC4712CF3615" + item: { + Count: 1 + id: "ad_astra:netherite_space_pants" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "27A4C43605CAFCF7" + item: { + Count: 1 + id: "ad_astra:netherite_space_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&7The Netherite Space Suit" + x: -8.0d + y: 0.5d + } + { + dependencies: ["7F68496ACEE438A8"] + description: [ + "The &eJetpack Suits&r. A way to protect you further, armor-wise, flight included, and fiery resistance." + "" + "&eJetpacks&r are late-endgame. They require &cEnergy&r, and &dOxygen&r on &9Chestplate&r which has the largest capacity: &n4 buckets&r!" + "" + "If the &aNetherite Space Suit&r had &nenchantments&r, they will also be translated into the &aJet Suit&r pieces." + "" + "No matter what planet you are on, thanks to the &aJet Suits&r heavy platings, now you’ll walk &nnormally&r on many planets." + ] + id: "55E319FB2064089E" + rewards: [ + { + count: 2 + id: "5CC1A56369D4999D" + item: "ad_astra:calorite_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "7AE269C5BA790F36" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "720D008E26930CEE" + item: { + Count: 1 + id: "ad_astra:jet_suit_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2B527C18BD9C3190" + item: { + Count: 1 + id: "ad_astra:jet_suit" + tag: { + BotariumData: { } + Damage: 0 + } + } + type: "item" + } + { + id: "6362D6CE4BFF93E3" + item: { + Count: 1 + id: "ad_astra:jet_suit_pants" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2B65C5F346077DEB" + item: { + Count: 1 + id: "ad_astra:jet_suit_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&6The Jet Suit" + x: -8.0d + y: 1.5d + } + { + dependencies: ["1FE49E1F5E046F0F"] + id: "62301F0FF50EAC7B" + rewards: [{ + exclude_from_claim_all: true + id: "5C5C02A9B4814453" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "7A58996F4AA93E7B" + item: "ad_astra_giselle_addon:automation_nasa_workbench" + type: "item" + }] + x: 7.5d + y: 3.5d + } + { + dependencies: ["2ACB47BBA1396A04"] + hide_until_deps_visible: true + id: "550C5C9C44A4368F" + rewards: [{ + exclude_from_claim_all: true + id: "2E9364033A024340" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "39C3EEE8A8893896" + item: "ad_astra_giselle_addon:gravity_normalizer" + type: "item" + }] + x: -8.0d + y: 3.5d + } + { + dependencies: ["566C0FA15F2021F1"] + description: [ + "&bAd Astra&r! (translation: \"To the Stars!\") is a space mod with a focus on technology, travel and exploration." + "" + "We've got everything you need to become an &bAstronaut&r: &6Rockets&r, &aSpace Suits&r, &dSpace Stations&r and machines." + "" + "Why not take a stroll on the &3Moon&r? Build a self-sustaining bunker on &4Mars&r? Go mining on &8Venus&r? The entire &eSolar System&r, better yet, &bMilky Way&r, is at your disposal!" + "" + "&oFive celestial bodies&r:" + "&3The Moon&r, &4Mars&r, &8Venus&r, &7Mercury&r and &9Glacio&r, in two different &eSolar Systems&r. Each planet expresses a distinctive flair, with specific mobs and unique materials." + "" + "&oVehicles&r:" + "Four &6Rocket&r tiers for interplanetary travel and a rover for traversing the rough, alien terrain ahead." + "" + "&oTechnology&r:" + "Standard processing machines and &bGenerators&r, along with &dOxygen&r generation and distribution, &aFuel&r refining, &1Water&r pumping, cable, fluid pipes and a rocket workbench." + "" + "&oBuilding&r:" + "Spruce up your builds with over &n250 building blocks&r, ranging from planet-specific bricks and stones to space station deco and metal plating." + "" + "An in-game &5Guidebook&r, explaining everything you need to progress and prosper in &dAd Astra&r!" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "ad_astra:item/astrodux" + } + } + id: "5AF5CB8C17AD7258" + min_width: 550 + rewards: [ + { + id: "047449AFAF8BA4BF" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "33613662D3DA8054" + table_id: 5236874501558129216L + type: "random" + } + { + id: "39A3791E574F919B" + item: { + Count: 1 + id: "ad_astra:space_suit" + tag: { + Damage: 0 + affix_data: { + sockets: 1 + } + } + } + type: "item" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSteel Ingot&r quest*" + tasks: [{ + id: "4895F6B4A42C4B56" + type: "checkmark" + }] + title: "Welcome to &4Ad Astra!" + x: -7.0d + y: -5.0d + } + { + dependencies: ["5AF5CB8C17AD7258"] + description: ["The &2Wrench&r helps to consider a connected side of a pipe as &bExtract&r, &3Insert&r, or &cNone&r to disconnect."] + id: "11CA37D3611CCACC" + rewards: [{ + exclude_from_claim_all: true + id: "2D3EA1B8AAE7164F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2668F41ECED2B236" + item: "ad_astra:wrench" + type: "item" + }] + x: -7.0d + y: -3.0d + } + { + dependencies: ["4752A206456F0893"] + id: "43D8AC18BDE717C3" + rewards: [{ + exclude_from_claim_all: true + id: "05677246E9523280" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "687A599665385D1C" + item: "ad_astra:oxygen_gear" + type: "item" + }] + x: -3.5d + y: -0.5d + } + { + dependencies: ["4752A206456F0893"] + description: [ + "The &eSteel Cable&r moves energy connecting." + "" + "This way, you can place &3Generators&r far from &nmachinery&r, and not be plenty in a single room." + ] + id: "6B1779C367844F28" + rewards: [ + { + id: "2408C03F7E3555AB" + item: "ad_astra:steel_cable" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "2F9B61057AC2A132" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "69C2F9D3388CFFC0" + item: "ad_astra:steel_cable" + type: "item" + }] + x: -3.5d + y: -2.5d + } + { + dependencies: ["4F405ACDA98FE821"] + description: [ + "When obtaining &6Desh&r, a wider window of progression is opened to your advantage." + "" + "Now you are capable to create better &9Cables&r around your settlements." + "" + "&5Desh Cables&r are an upgrade for &3Steel Cables&r; those can only transfer &b1,024 RF&r per Tick, while &6Desh&r is &b4,096 RF&r per Tick." + "" + "If needing help configuring the faces of these cables here’s a handy tool! &2The Wrench&r." + ] + id: "6B177A0B4E218617" + min_width: 300 + rewards: [ + { + id: "3C2762CB0A12ED86" + item: "ad_astra:desh_cable" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "731B530F7A3BD351" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "32558DC232F12832" + item: "ad_astra:desh_cable" + type: "item" + }] + x: 1.0d + y: -0.5d + } + { + dependencies: ["4F405ACDA98FE821"] + description: [ + "When obtaining &6Desh&r, a wider window of progression is opened to your advantage." + "" + "Now you are capable to create &9Pipes&r around your settlements." + "" + "&5Desh Fluid Pipes&r can transfer &nany fluid&r through them at a rate of &b128mB&r per tick." + "" + "If needing help configuring the faces of these cables here’s a handy tool! &2The Wrench&r." + ] + id: "7C42AC4BFB30BC68" + rewards: [ + { + id: "546A72E2418BF31F" + item: "ad_astra:desh_fluid_pipe" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "79E324FBCF1FE6E7" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4A922DB6272B3FF7" + item: "ad_astra:desh_fluid_pipe" + type: "item" + }] + x: 2.0d + y: -0.5d + } + { + dependencies: ["1E4561B23E3570CF"] + id: "73805176E5FB649A" + rewards: [ + { + id: "202144DCB8FF6B16" + item: "ad_astra:ostrum_fluid_pipe" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "2BD92C87E65D191E" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "45649FC69F433598" + item: "ad_astra:ostrum_fluid_pipe" + type: "item" + }] + x: 5.0d + y: -0.5d + } + { + dependencies: ["4752A206456F0893"] + description: ["&eDucts&r connect to &dPipes&r or &2Cables&r depending on which one is used. These are completely sealed, air cannot escape!"] + id: "0D95EF4C5CE8354E" + rewards: [ + { + id: "53708EC225469B9E" + item: "ad_astra:cable_duct" + type: "item" + } + { + exclude_from_claim_all: true + id: "721A94B95363A179" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6AD81C6A4547161C" + item: "ad_astra:cable_duct" + type: "item" + }] + x: -4.5d + y: -2.5d + } + { + dependencies: ["4F405ACDA98FE821"] + description: ["&eDucts&r connect to &dPipes&r or &2Cables&r depending on which one is used. These are completely sealed, air cannot escape!"] + id: "76092227927A26CD" + rewards: [ + { + id: "55AF624651FED5C9" + item: "ad_astra:fluid_pipe_duct" + type: "item" + } + { + exclude_from_claim_all: true + id: "44479E40F9C96ED2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "09CEDF70ADC1464D" + item: "ad_astra:fluid_pipe_duct" + type: "item" + }] + x: 2.5d + y: -1.5d + } + { + dependencies: ["1E4561B23E3570CF"] + description: [ + "The &1Energizer&r stores energy within, to then provide energy to those nearby and has been prioritized on this buffer. Just &bright-click&r the wanted item into the &1Energizer&r." + "" + "The total capacity of an &1Energizer&r is &b2,000,000 RF&r. Each stage of energy given has a different color. This can be visualized above." + "" + "{image:kubejs:textures/item/energizervis.png width:190 height:55 align:1}" + ] + id: "3412837F098AEE4B" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "3181047375F5B9A4" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0D3754A3BA578176" + item: "ad_astra:energizer" + type: "item" + }] + x: 3.5d + y: -1.5d + } + { + dependencies: ["1E4561B23E3570CF"] + description: [ + "The &dCryo Freezer&r, uses &9Ice&r and &9Ice-equivalent&r blocks of items to create &5Cryo Fuel&r, this type of Fuel can only be used on &6Rockets&r, and is &nrenewable&r!" + "" + "Different kinds of &9Ice&r give a ratio separated." + "" + "Remember: &b1,000mB&r units it’s equal to &n1 bucket&r of any fluid." + "" + "&l-&r &o&9Ice Shards&r&b = 25.0mB&r" + "&l-&r &o&9Ice&r = &b1.0mB&r" + "&l-&r &o&9Packed Ice&r = &b2.0mB&r" + "&l-&r &o&9Blue Ice&r = &b5.0mB&r" + ] + id: "0736CEF59E0D1C73" + rewards: [ + { + id: "5946954A594D8107" + item: "ad_astra:cryo_fuel_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "1F9AA2949D44DF08" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0D0797BA32F79D22" + item: "ad_astra:cryo_freezer" + type: "item" + }] + x: 5.5d + y: -1.5d + } + { + dependencies: ["1E4561B23E3570CF"] + id: "059B64C9EE255298" + rewards: [{ + exclude_from_claim_all: true + id: "5759D047115E6B93" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3CE04FF96A58B04C" + item: "ad_astra:oxygen_sensor" + type: "item" + }] + x: 4.0d + y: -0.5d + } + { + dependencies: ["0FA5162711FED7A9"] + description: [ + "The &bIce Shard Ore&r can be found on &7Moon&r, &4Mars&r and &9Glacio&r. The Ore dropping &bIce Shards&r." + "" + "This mineral, later on, could be used to create &dCryo Fuel&r, a renewable and better Fuel in Ad Astra mod! " + ] + hide_dependency_lines: true + hide_until_deps_visible: true + icon: "ad_astra:moon_ice_shard_ore" + id: "7E3E3302523EA6FC" + rewards: [ + { + id: "27E6DC6F404E356B" + item: "ad_astra:ice_shard" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "04F3C1D5D2827EFE" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + count: 16L + id: "1020CABF583F45B3" + item: "ad_astra:ice_shard" + type: "item" + }] + title: "&bThe Ice Shard Ore" + x: 3.0d + y: -2.5d + } + { + dependencies: ["1C53888B7546DE90"] + hide_until_deps_visible: true + id: "44F54D1B5C3DA1D3" + rewards: [ + { + id: "635F88B0E1C9EF76" + item: "ad_astra:vent" + type: "item" + } + { + exclude_from_claim_all: true + id: "7BC069B667199672" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "69A5413255BE9AFD" + item: "ad_astra:vent" + type: "item" + }] + x: 0.5d + y: -6.0d + } + { + dependencies: ["1FE49E1F5E046F0F"] + id: "230A35728908D6C3" + rewards: [{ + exclude_from_claim_all: true + id: "1A4EF44DC5F05F7F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "79CFAEC622DD06AD" + item: "ad_astra_giselle_addon:rocket_sensor" + type: "item" + }] + x: 8.5d + y: 3.5d + } + { + dependencies: ["08F8129B6F2BA30B"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "3C4D3BBD3F347C20" + rewards: [{ + exclude_from_claim_all: true + id: "6D5915A5FE75AC89" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "6735D38EC5A50F72" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "ad_astra_giselle_addon:space_breathing" + lvl: 1s + }] + } + } + type: "item" + }] + title: "&bSpace Breathing" + x: 1.5d + y: 3.5d + } + { + dependencies: ["2E8D25268A8F9ED6"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "206BB835A802E1AF" + rewards: [{ + exclude_from_claim_all: true + id: "1A03CA7F504ECFD9" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "5648910BC95B9C02" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "ad_astra_giselle_addon:gravity_normalizing" + lvl: 1s + }] + } + } + type: "item" + }] + title: "&bGravity Normalizing" + x: 2.5d + y: 3.5d + } + { + dependencies: ["79310D27A711F77B"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "76C7F63D7DC16130" + rewards: [{ + exclude_from_claim_all: true + id: "14C6FAE6493C985A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "761C4F1D2A0FC495" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "ad_astra_giselle_addon:space_fire_proof" + lvl: 1s + }] + } + } + type: "item" + }] + title: "&bSpace Fire Proof" + x: 3.5d + y: 3.5d + } + { + dependencies: ["3D7A2D3CB598967F"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "564B6576D124C0EF" + rewards: [{ + exclude_from_claim_all: true + id: "3DB8B1DA7CC761E5" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "6FF5B212B5132DEE" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "ad_astra_giselle_addon:acid_rain_proof" + lvl: 1s + }] + } + } + type: "item" + }] + title: "&bAcid Rain Proof" + x: 4.5d + y: 3.5d + } + { + dependencies: ["1E4561B23E3570CF"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "19527BC2BAA625E9" + rewards: [{ + exclude_from_claim_all: true + id: "6D0E80E7E704191D" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1C308699B60638E1" + item: { + Count: 1 + id: "ad_astra_giselle_addon:netherite_oxygen_can" + tag: { + BotariumData: { } + } + } + type: "item" + }] + x: -1.0d + y: -3.0d + } + { + dependencies: ["119A781265B7FCA0"] + id: "015787761FB67DEC" + rewards: [{ + exclude_from_claim_all: true + id: "6118C76EA0A5B2DA" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2F15B3A5AA9A5358" + item: { + Count: 1 + id: "ad_astra_giselle_addon:oxygen_can" + tag: { + BotariumData: { } + } + } + type: "item" + }] + x: -1.0d + y: -4.0d + } + { + dependencies: ["3C4D3BBD3F347C20"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "699F832EA9B48450" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "70830BA9ED73327E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6ED314FF4221E154" + item: "ad_astra_giselle_addon:pneumatic_space_breathing_upgrade" + type: "item" + }] + x: -9.039795918367354d + y: -0.5102040816326507d + } + { + dependencies: ["76C7F63D7DC16130"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "4D305E02390F1E19" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "453E1DF85C767B81" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "27E3100DAA167A3A" + item: "ad_astra_giselle_addon:pneumatic_space_fire_proof_upgrade" + type: "item" + }] + x: -9.039795918367354d + y: 0.8897959183673492d + } + { + dependencies: ["206BB835A802E1AF"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "4DE016CD48FBAFB4" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "0DD9115241E7C96B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "790FC243C532D944" + item: "ad_astra_giselle_addon:pneumatic_gravity_normalizing_upgrade" + type: "item" + }] + x: -9.039795918367354d + y: 0.18979591836734921d + } + { + dependencies: ["564B6576D124C0EF"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "43F262B2966A3059" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "64D0102109C27EFA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "56F94863B03BB602" + item: "ad_astra_giselle_addon:pneumatic_acid_rain_proof_upgrade" + type: "item" + }] + x: -9.039795918367354d + y: 1.5897959183673493d + } + { + dependencies: ["3C4D3BBD3F347C20"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "51055F148288D235" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "40FD3C6DB780FD92" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6729858B8580D858" + item: "ad_astra_giselle_addon:module_space_breathing_unit" + type: "item" + }] + x: -7.01428571428572d + y: -0.5178571428571388d + } + { + dependencies: ["206BB835A802E1AF"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "715D01C62498F8EC" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "72D34025D0A6EE0F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2FE55E4A33A2A622" + item: "ad_astra_giselle_addon:module_gravity_normalizing_unit" + type: "item" + }] + x: -7.01428571428572d + y: 0.18214285714286116d + } + { + dependencies: ["76C7F63D7DC16130"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "5C6CCBCDE1D63EE7" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "76015BACC4DE49D6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "68F6E7388ED4B52E" + item: "ad_astra_giselle_addon:module_space_fire_proof_unit" + type: "item" + }] + x: -7.01428571428572d + y: 0.8750000000000071d + } + { + dependencies: ["564B6576D124C0EF"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "2CCC1F92C8F62601" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "7835DA74BF3356F0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3E42C06690BA50EB" + item: "ad_astra_giselle_addon:module_acid_rain_proof_unit" + type: "item" + }] + x: -7.01428571428572d + y: 1.5821428571428613d + } + { + dependencies: ["4752A206456F0893"] + id: "3A64248CA8BDEB2F" + rewards: [ + { + count: 2 + id: "54DC71F729FD6492" + item: "alltheores:iron_rod" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "7817125779FA46B5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6597BEDED7E63674" + item: "ad_astra:engine_frame" + type: "item" + }] + x: -4.5d + y: -0.5d + } + { + dependencies: ["4752A206456F0893"] + id: "6184E80EF558B5DC" + rewards: [{ + exclude_from_claim_all: true + id: "47219BA156EF34CF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "38509796C6DD622B" + item: "ad_astra:fan" + type: "item" + }] + x: -5.0d + y: -1.5d + } + { + dependencies: ["30A6B9619242AD4F"] + id: "16542BE4B43F7950" + rewards: [{ + exclude_from_claim_all: true + id: "20A5DC1A2235C423" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "62F1A6F08A31FFAB" + item: "ad_astra_giselle_addon:fuel_loader" + type: "item" + }] + x: -1.0d + y: -1.5d + } + ] + title: "&3&oAd Astra!" +} diff --git a/minecraft/config/ftbquests/quests/chapters/allthemodium.snbt b/minecraft/config/ftbquests/quests/chapters/allthemodium.snbt new file mode 100644 index 0000000..c08245c --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/allthemodium.snbt @@ -0,0 +1,1461 @@ +{ + autofocus_id: "731686C758AD9A99" + default_hide_dependency_lines: true + default_quest_shape: "" + filename: "allthemodium" + group: "09A82B0D5D5E7906" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "allthemodium:item/alloy_paxel" + } + } + id: "1B175B2C955D8395" + images: [ + { + height: 1.0d + image: "kubejs:item/quest" + rotation: 0.0d + width: 0.3d + x: -5.321428571428569d + y: -0.08928571428571175d + } + { + height: 1.5d + image: "kubejs:item/allthemodium_logo_1" + order: 1 + rotation: 0.0d + width: 10.0d + x: 2.5d + y: -0.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1021505376344085d + x: 8.5d + y: 7.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1021505376344085d + x: -2.5d + y: 7.5d + } + { + height: 1.0d + image: "botania:block/enchanter" + order: 2 + rotation: 0.0d + width: 1.0d + x: 1.5d + y: 6.5d + } + { + height: 1.0d + image: "botania:block/enchanter" + rotation: 0.0d + width: 1.0d + x: 4.5d + y: 6.5d + } + { + height: 2.0d + image: "ftbquests:block/barrier_open" + rotation: 0.0d + width: 2.0d + x: 3.0d + y: 2.5d + } + { + height: 3.0d + image: "rftoolsutility:block/effects/floatingsphere" + rotation: 0.0d + width: 3.0d + x: 8.5d + y: 5.5d + } + ] + order_index: 0 + progression_mode: "flexible" + quest_links: [ ] + quests: [ + { + dependencies: ["731686C758AD9A99"] + dependency_requirement: "one_completed" + description: [ + "&6Allthemodium&r is the first ore you must find to begin your journey!" + "" + "It can be found in &7Deep Dark&r biomes along ceilings and walls, or in the &2Mining Dimension&r within the &o&bdeepslate layer&r." + ] + hide_dependency_lines: false + hide_until_deps_visible: false + id: "5BDBE666E604FCAC" + min_width: 300 + rewards: [ + { + id: "0205D27EF9929F30" + type: "xp" + xp: 100 + } + { + id: "1F8830863867B8DB" + item: "allthemodium:allthemodium_ore" + type: "item" + } + { + exclude_from_claim_all: true + id: "6B81F6D787DF1692" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.0d + tasks: [{ + id: "759E7BC43EFF648C" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "allthemodium:raw_allthemodium" + } + { + Count: 1b + id: "allthemodium:allthemodium_ingot" + } + ] + } + } + title: "Allthemodium Ore" + type: "item" + }] + title: "&6Allthemodium Ore" + x: -4.0d + y: 1.5d + } + { + dependencies: ["5BDBE666E604FCAC"] + dependency_requirement: "one_started" + description: [ + "The next ore you have to find is &3Vibranium&r, which can be found in the &cNether&r above &o&bY:64&r along the ceilings and walls of any biome." + "" + "You can also find this ore in any biome in the &4Other&r dimension, between &o&bY:0&r and &o&bY:40&r along cave walls and ceilings. The ore will &nonly&r be found &o&bexposed to air&r!" + ] + hide_dependency_lines: false + id: "2DF64CB9298E91EA" + min_width: 300 + rewards: [ + { + id: "459B4DDA26AC0FFC" + type: "xp" + xp: 100 + } + { + id: "70CDCA6DDA86564C" + item: "allthemodium:vibranium_ore" + type: "item" + } + { + exclude_from_claim_all: true + id: "685AF87CDE101E0E" + table_id: 1235506154212082407L + type: "random" + } + ] + size: 1.0d + tasks: [{ + id: "53CAF4DF6BD09600" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "allthemodium:raw_vibranium" + } + { + Count: 1b + id: "allthemodium:vibranium_ingot" + } + ] + } + } + title: "Vibranium Ore" + type: "item" + }] + title: "&3Vibranium Ore" + x: -2.5d + y: 1.5d + } + { + dependencies: ["2DF64CB9298E91EA"] + description: ["And last but not least, there is &9Unobtainium&r ore, an &o&bextremely rare&r ore found only in the &dEnd&r &eHighlands&r biome."] + hide_dependency_lines: false + id: "4F6E6AF1D9E74CB7" + min_width: 300 + rewards: [ + { + id: "2DC06917102E6563" + type: "xp" + xp: 100 + } + { + id: "118A56FC90E6CDEF" + item: "allthemodium:unobtainium_ore" + type: "item" + } + { + exclude_from_claim_all: true + id: "13D3C1B50698F2EE" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.0d + tasks: [{ + id: "06B707D1437D36FC" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "allthemodium:raw_unobtainium" + } + { + Count: 1b + id: "allthemodium:unobtainium_ingot" + } + ] + } + } + title: "Unobtainium Ore" + type: "item" + }] + title: "&9Unobtainium Ore" + x: -1.0d + y: 1.5d + } + { + dependencies: ["731686C758AD9A99"] + description: ["Now that the &6Allthemodium&r metals are in your possession, you can make &o&bextraordinarily&r fast furnaces!"] + hide_dependency_lines: true + icon_scale: 2.0d + id: "2CC97CF32D9C017B" + min_width: 300 + rewards: [ + { + id: "09C263493EEC7ABB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "28078862BF55EFF7" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.2d + tasks: [{ + id: "5A1CAF5CD9BD316F" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ironfurnaces:allthemodium_furnace" + } + { + Count: 1b + id: "ironfurnaces:vibranium_furnace" + } + { + Count: 1b + id: "ironfurnaces:unobtainium_furnace" + } + ] + } + } + title: "ATM Furnaces" + type: "item" + }] + title: "&6ATM Furnaces" + x: 3.0d + y: 5.3999999999999995d + } + { + dependencies: ["2BF9B347D1FC037A"] + dependency_requirement: "one_completed" + hide_dependency_lines: false + id: "29637BD992599915" + rewards: [ + { + id: "28AB1CC409C9BADB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "487E83FA6D6D5E35" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + size: 1.0d + tasks: [{ + id: "48DD4D998FEBB09B" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "allthearcanistgear:allthemodium_boots" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 4 + } + } + } + { + Count: 1b + id: "allthearcanistgear:allthemodium_leggings" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 4 + } + } + } + { + Count: 1b + id: "allthearcanistgear:allthemodium_robes" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 4 + } + } + } + { + Count: 1b + id: "allthearcanistgear:allthemodium_hat" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 4 + } + } + } + { + Count: 1b + id: "allthewizardgear:allthemodium_mage_chestplate" + tag: { + ISB_Spells: { + data: [ ] + maxSpells: 1 + mustEquip: 1b + spellWheel: 1b + } + } + } + { + Count: 1b + id: "allthewizardgear:allthemodium_mage_helmet" + } + { + Count: 1b + id: "allthewizardgear:allthemodium_mage_leggings" + } + { + Count: 1b + id: "allthewizardgear:allthemodium_mage_boots" + } + { + Count: 1b + id: "allthemodium:allthemodium_helmet" + } + { + Count: 1b + id: "allthemodium:allthemodium_chestplate" + } + { + Count: 1b + id: "allthemodium:allthemodium_leggings" + } + { + Count: 1b + id: "allthemodium:allthemodium_boots" + } + ] + } + } + title: "Allthemodium Armor" + type: "item" + }] + x: -4.0d + y: 5.5d + } + { + dependencies: ["071125FC42EBEAB9"] + description: [ + "&6Allthemodium&r adds endgame ores to the world that &o&benhance&r your modded experience." + "" + "You can find more information about the mod in the &6Allthemodium&r guide book." + "" + "&4You cannot mine these ores with any form of block-breaker, only manually" + ] + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "allthemodium:allthemodium_book" + } + } + id: "731686C758AD9A99" + min_width: 300 + rewards: [ + { + id: "4D04379836E29120" + type: "xp" + xp: 10 + } + { + id: "0D061D49519CE0B4" + item: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "allthemodium:allthemodium_book" + } + } + type: "item" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "6809BDCEED543A10" + type: "checkmark" + }] + title: "Welcome to &6Allthemodium" + x: -6.0d + y: 0.5d + } + { + dependencies: ["731686C758AD9A99"] + description: [ + "The &6Allthemodium Apple&r gives &o&b20&r hunger and &o&b80&r saturation." + "" + "The apple has the following effects:" + "• Fast to eat" + "• Can always eat" + "• Absorption &o&bX&r for &o&b30&r sec" + "• Regeneration &o&bX&r for &o&b30&r sec" + ] + hide_dependency_lines: true + id: "7F3B96033AB7A21E" + rewards: [ + { + id: "51777CA9A13AAD35" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C4FFA3D1C5F61A5" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "none" + size: 1.0d + tasks: [{ + id: "6C79D005D95BAB61" + item: "allthemodium:allthemodium_apple" + type: "item" + }] + x: 3.0d + y: 6.5d + } + { + dependencies: ["731686C758AD9A99"] + description: [ + "The &6Allthemodium Carrot&r gives &o&b40&r hunger and &o&b320&r saturation." + "" + "The carrot has the following effects:" + "• Fast to eat" + "• Can always eat" + "• Absorption &o&bX&r for &o&b30&r sec" + "• Regeneration &o&bX&r for &o&b30&r sec" + ] + hide_dependency_lines: true + id: "15D56588634665FA" + rewards: [ + { + id: "40F8666A439FDC16" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "19A862EC251AD8BB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "none" + size: 1.0d + tasks: [{ + id: "32629A7C461C48F7" + item: "allthemodium:allthemodium_carrot" + type: "item" + }] + x: 6.0d + y: 6.5d + } + { + dependencies: ["5BDBE666E604FCAC"] + hide_dependency_lines: true + hide_until_deps_visible: false + id: "30E6C6825D78B5F1" + rewards: [ + { + id: "06540334956A27AF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2FA279C60E88CE45" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "37CD942230304016" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "allthemodium:allthemodium_sword" + } + { + Count: 1b + id: "allthemodium:allthemodium_pickaxe" + } + { + Count: 1b + id: "allthemodium:allthemodium_axe" + } + { + Count: 1b + id: "allthemodium:allthemodium_shovel" + } + { + Count: 1b + id: "allthemodium:allthemodium_hoe" + } + ] + } + } + title: "Allthemodium Tools" + type: "item" + }] + x: -6.0d + y: 3.5d + } + { + dependencies: ["731686C758AD9A99"] + description: [ + "The &6Teleport Pad&r is used to teleport to &o&bthree new dimensions&r." + "" + "To get to the &2Mining Dimension&r, place the &6Teleport Pad&r in the &aOverworld&r, then &eShift+Right-click&r with an &nempty hand&r." + "" + "To go to the &4Other&r, do the same thing in the &cNether&r." + "" + "To get to the &5Beyond&r, use the &6Teleport Pad&r in the &dEnd&r." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "3C322474D2F2BA99" + min_width: 300 + rewards: [ + { + id: "0B4E3EEE5A9DB68C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7DC78DB750F58ED6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.5d + tasks: [{ + id: "004AE063EA883019" + item: "allthemodium:teleport_pad" + type: "item" + }] + title: "Allthemodium Dimensions" + x: 3.0d + y: 2.517857142857146d + } + { + dependencies: ["3C322474D2F2BA99"] + description: [ + "The &4Other&r is filled to the brim with ore deposits, along with &9Ancient Forests&r. Within these forests you can find &dAncient Berries&r that grant &eNight Vision&r." + "" + "This is also the only dimension that contains &5Soul Lava&r and &6Pigliches&r!" + ] + hide_dependency_lines: false + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "allthemodium:block/demonic_sapling" + } + } + id: "58E3D29E2E034BA2" + min_width: 300 + rewards: [ + { + id: "74B5009A2A31A73B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1B6BEE284793E55C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + dimension: "allthemodium:the_other" + id: "075FBA0F83548F6A" + title: "Visit Dimension: &2The Other" + type: "dimension" + }] + title: "&4The Other" + x: 5.0d + y: 2.5d + } + { + dependencies: ["3C322474D2F2BA99"] + description: [ + "The &2Mining Dimension&r has &o&bseveral layers&r for finding ores!" + "" + "This dimension includes the regular &7Stone&r and &3Deepslate&r layers, the &cNetherrack&r layer for locating &4Nether&r ores, and an &eEnd Stone&r layer for &dEnd&r ores." + ] + hide_dependency_lines: false + icon: { + Count: 1 + id: "forbidden_arcanus:slimec_pickaxe" + tag: { + Damage: 0 + } + } + id: "7E8FE99A3C448413" + min_width: 300 + rewards: [ + { + id: "7B03C181BB8EB227" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3E1CBC6920822B96" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + dimension: "allthemodium:mining" + id: "7C1AC35E98DA4470" + title: "Visit Dimension: &2Mining" + type: "dimension" + }] + title: "&2Mining Dimension" + x: 1.0d + y: 2.5d + } + { + dependencies: [ + "5BDBE666E604FCAC" + "4F6E6AF1D9E74CB7" + ] + hide_until_deps_visible: true + id: "2DB81CE6F647D08A" + rewards: [ + { + id: "40CCF6FBB3B07836" + type: "xp" + xp: 500 + } + { + id: "7F6ED24598015223" + item: "allthemodium:unobtainium_allthemodium_alloy_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "70E0C0C613AC4480" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7402ED40B70EE397" + item: "allthemodium:unobtainium_allthemodium_alloy_ingot" + type: "item" + }] + x: 8.5d + y: 2.0d + } + { + dependencies: [ + "2DF64CB9298E91EA" + "4F6E6AF1D9E74CB7" + ] + hide_until_deps_visible: true + id: "3E0A6D2FAEEF22A8" + rewards: [ + { + id: "4492678165FD53F1" + type: "xp" + xp: 500 + } + { + id: "3384671EB183808A" + item: "allthemodium:unobtainium_vibranium_alloy_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "7F09A0D805CBC70D" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "48EDC0316BE2986A" + item: "allthemodium:unobtainium_vibranium_alloy_ingot" + type: "item" + }] + x: 10.0d + y: 2.5d + } + { + dependencies: [ + "5BDBE666E604FCAC" + "2DF64CB9298E91EA" + ] + hide_until_deps_visible: true + id: "38135FFD9ED64395" + rewards: [ + { + id: "7357C0F471395DA0" + type: "xp" + xp: 500 + } + { + id: "23F62B6D29D9EB3D" + item: "allthemodium:vibranium_allthemodium_alloy_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "44F579454EE53B5C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "09214F39B42692F3" + item: "allthemodium:vibranium_allthemodium_alloy_ingot" + type: "item" + }] + x: 7.0d + y: 2.5d + } + { + dependencies: [ + "2DB81CE6F647D08A" + "38135FFD9ED64395" + "3E0A6D2FAEEF22A8" + ] + hide_dependency_lines: true + id: "7D3648FF86B0EB85" + rewards: [ + { + id: "0193AAE35820A263" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "5DEF2F316E40CD2D" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1BD4860E0CC120FC" + item: "allthemodium:alloy_sword" + type: "item" + }] + x: 8.0d + y: 3.5d + } + { + dependencies: [ + "2DB81CE6F647D08A" + "38135FFD9ED64395" + "3E0A6D2FAEEF22A8" + ] + hide_dependency_lines: true + id: "4881ABF8877BA572" + rewards: [ + { + id: "0FDCB29A5F155F7A" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "0CCE20CA788DC993" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7585EE207A816B28" + item: "allthemodium:alloy_axe" + type: "item" + }] + x: 9.0d + y: 3.5d + } + { + dependencies: [ + "2DB81CE6F647D08A" + "38135FFD9ED64395" + "3E0A6D2FAEEF22A8" + ] + hide_dependency_lines: true + id: "4F84C91128C9DCED" + rewards: [ + { + id: "3AB7CEE8E92E775D" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "3FEE445EDCE53C7E" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0068F0000541A6E9" + item: "allthemodium:alloy_pick" + type: "item" + }] + x: 7.0d + y: 4.0d + } + { + dependencies: [ + "2DB81CE6F647D08A" + "38135FFD9ED64395" + "3E0A6D2FAEEF22A8" + ] + hide_dependency_lines: true + id: "2BD4E8494F2F43E9" + rewards: [ + { + id: "173030506753C09D" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "078506CCA5BFD950" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "4B44E545FE264B84" + item: "allthemodium:alloy_shovel" + type: "item" + }] + x: 10.0d + y: 4.0d + } + { + dependencies: [ + "4881ABF8877BA572" + "4F84C91128C9DCED" + "2BD4E8494F2F43E9" + "7D3648FF86B0EB85" + ] + hide_dependency_lines: false + id: "4AD2F0AC870672DB" + rewards: [ + { + id: "7751BCCAB513CC79" + type: "xp" + xp: 5000 + } + { + exclude_from_claim_all: true + id: "70C5EDE84A008059" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "none" + size: 2.0d + tasks: [{ + id: "0E1B0C621A467BE0" + item: "allthemodium:alloy_paxel" + type: "item" + }] + x: 8.499999999999993d + y: 5.375d + } + { + dependencies: ["5BDBE666E604FCAC"] + description: ["This upgrade is obtained by &o&bbrushing&r &2Suspicious Clay&r in the &5Ancient City&r."] + hide_dependency_lines: false + id: "2BF9B347D1FC037A" + rewards: [ + { + id: "6D990F0555B74E30" + type: "xp" + xp: 100 + } + { + id: "5FF4360A857B8072" + item: "allthemodium:allthemodium_upgrade_smithing_template" + type: "item" + } + { + exclude_from_claim_all: true + id: "07688FE8133481FC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "1F249850998F505E" + item: "allthemodium:allthemodium_upgrade_smithing_template" + type: "item" + }] + title: "Allthemodium Upgrade" + x: -4.0d + y: 3.5d + } + { + dependencies: ["2DF64CB9298E91EA"] + description: ["&3Vibranium Upgrade&r can be obtained by &o&bbrushing&r &aSuspicious Soul Sand&r in &7Bastions&r within the &cNether&r."] + hide_dependency_lines: false + id: "0C1EC499EB16C604" + rewards: [ + { + id: "7FACE78C8932328C" + type: "xp" + xp: 100 + } + { + id: "4F1B15F36B888EF8" + item: "allthemodium:vibranium_upgrade_smithing_template" + type: "item" + } + { + exclude_from_claim_all: true + id: "461639B12D252F05" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "641B47453E890867" + item: "allthemodium:vibranium_upgrade_smithing_template" + type: "item" + }] + title: "Vibranium Upgrade" + x: -2.5d + y: 3.5d + } + { + dependencies: ["4F6E6AF1D9E74CB7"] + description: ["&9Unobtainium Upgrade&r can be found as loot inside the &6Libraries&r of the &eOther Dungeons&r."] + hide_dependency_lines: false + id: "1E92D4FEB8E96BBF" + rewards: [ + { + id: "5735B4806162ACBA" + type: "xp" + xp: 100 + } + { + id: "3545412931146A8F" + item: "allthemodium:unobtainium_upgrade_smithing_template" + type: "item" + } + { + exclude_from_claim_all: true + id: "18B335F337501C57" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "0043CEE91EF992F7" + item: "allthemodium:unobtainium_upgrade_smithing_template" + type: "item" + }] + title: "Unobtainium Upgrade" + x: -1.0d + y: 3.5d + } + { + dependencies: ["0C1EC499EB16C604"] + hide_dependency_lines: false + id: "28260B53A3F9E57D" + rewards: [ + { + id: "47EA865134159DDB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3D36000C4C3C9195" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 1.0d + tasks: [{ + id: "7E5429C59943C661" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "allthearcanistgear:vibranium_boots" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 5 + } + } + } + { + Count: 1b + id: "allthearcanistgear:vibranium_robes" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 5 + } + } + } + { + Count: 1b + id: "allthearcanistgear:vibranium_leggings" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 5 + } + } + } + { + Count: 1b + id: "allthearcanistgear:vibranium_hat" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 5 + } + } + } + { + Count: 1b + id: "allthewizardgear:vibranium_mage_helmet" + } + { + Count: 1b + id: "allthewizardgear:vibranium_mage_chestplate" + tag: { + ISB_Spells: { + data: [ ] + maxSpells: 1 + mustEquip: 1b + spellWheel: 1b + } + } + } + { + Count: 1b + id: "allthewizardgear:vibranium_mage_leggings" + } + { + Count: 1b + id: "allthewizardgear:vibranium_mage_boots" + } + { + Count: 1b + id: "allthemodium:vibranium_leggings" + } + { + Count: 1b + id: "allthemodium:vibranium_boots" + } + { + Count: 1b + id: "allthemodium:vibranium_chestplate" + } + { + Count: 1b + id: "allthemodium:vibranium_helmet" + } + ] + } + } + title: "Vibranium Armor" + type: "item" + }] + x: -2.5d + y: 5.5d + } + { + dependencies: ["1E92D4FEB8E96BBF"] + hide_dependency_lines: false + id: "777B6100B321DAA6" + rewards: [ + { + id: "03FE1794BB96A38B" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "14A09019861C3BB5" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + size: 1.0d + tasks: [{ + id: "5457F63FC60BA231" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "allthearcanistgear:unobtainium_boots" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 6 + } + } + } + { + Count: 1b + id: "allthearcanistgear:unobtainium_leggings" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 6 + } + } + } + { + Count: 1b + id: "allthearcanistgear:unobtainium_robes" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 6 + } + } + } + { + Count: 1b + id: "allthearcanistgear:unobtainium_hat" + tag: { + an_stack_perks: { + color: "" + perks: [ ] + tier: 6 + } + } + } + { + Count: 1b + id: "allthewizardgear:unobtainium_mage_leggings" + } + { + Count: 1b + id: "allthewizardgear:unobtainium_mage_boots" + } + { + Count: 1b + id: "allthewizardgear:unobtainium_mage_chestplate" + tag: { + ISB_Spells: { + data: [ ] + maxSpells: 1 + mustEquip: 1b + spellWheel: 1b + } + } + } + { + Count: 1b + id: "allthewizardgear:unobtainium_mage_helmet" + } + { + Count: 1b + id: "allthemodium:unobtainium_helmet" + } + { + Count: 1b + id: "allthemodium:unobtainium_chestplate" + } + { + Count: 1b + id: "allthemodium:unobtainium_leggings" + } + { + Count: 1b + id: "allthemodium:unobtainium_boots" + } + ] + } + } + title: "Unobtainium Armor" + type: "item" + }] + x: -1.0d + y: 5.5d + } + { + dependencies: ["30E6C6825D78B5F1"] + hide_dependency_lines: false + id: "553DD7CBD4351A71" + rewards: [ + { + id: "7510946462DE5DB0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4A33B85BD42DAD8C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "2DB3FE929A70B1C9" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "allthemodium:vibranium_sword" + } + { + Count: 1b + id: "allthemodium:vibranium_pickaxe" + } + { + Count: 1b + id: "allthemodium:vibranium_axe" + } + { + Count: 1b + id: "allthemodium:vibranium_shovel" + } + { + Count: 1b + id: "allthemodium:vibranium_hoe" + } + ] + } + } + title: "Vibranium Tools" + type: "item" + }] + x: -6.0d + y: 5.0d + } + { + dependencies: ["553DD7CBD4351A71"] + hide_dependency_lines: false + id: "37ACDA018D07A4DF" + rewards: [ + { + id: "300E1E05A307B2C4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4ACEFFFB53CD7F5E" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "6AC1F79015239A46" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "allthemodium:unobtainium_sword" + } + { + Count: 1b + id: "allthemodium:unobtainium_pickaxe" + } + { + Count: 1b + id: "allthemodium:unobtainium_axe" + } + { + Count: 1b + id: "allthemodium:unobtainium_shovel" + } + { + Count: 1b + id: "allthemodium:unobtainium_hoe" + } + ] + } + } + title: "Unobtainium Tools" + type: "item" + }] + title: "Unobtainium Tools" + x: -6.0d + y: 6.5d + } + { + dependencies: ["3C322474D2F2BA99"] + description: [ + "Situated beyond the edge of the &dEnd&r is the &5Beyond&r, an &o&bunavoidable space&r for builders who want a large, clear area to work in." + "" + "Like the &2Overworld&r to &cNether&r relationship, the &dEnd&r to &5Beyond&r uses a block ratio of &o&b1:50&r." + ] + hide_dependency_lines: false + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "artifacts:item/chorus_totem" + } + } + id: "53DD784E75965947" + min_width: 300 + optional: true + rewards: [ + { + id: "5E779E57482952D9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4BD916C0B65316FB" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + dimension: "allthemodium:the_beyond" + id: "5B673FC6B4C064ED" + title: "Visit Dimension: &2The Beyond" + type: "dimension" + }] + title: "&5The Beyond" + x: 3.0d + y: 4.0d + } + ] + title: "&3&oAllthemodium" +} diff --git a/minecraft/config/ftbquests/quests/chapters/andesite_age.snbt b/minecraft/config/ftbquests/quests/chapters/andesite_age.snbt new file mode 100644 index 0000000..cc1e7e9 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/andesite_age.snbt @@ -0,0 +1,1004 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "andesite_age" + group: "" + icon: "twilightforest:twilight_portal_miniature_structure" + id: "2F5FC38171676D8C" + order_index: 1 + quest_links: [ ] + quests: [ + { + description: [ + "Welcome to the &6Andesite Age.&r This chapter is the backbone of your journey." + "" + "&2How it works:&r" + "" + "1. &aFollow&r the &ecentral line&r to master &6Create.&r This is your core progression." + "" + "2. &achoose&r between four &eSpecializations:&r &6Tech, &5Magic,&r &2Farming,&r or &4Combat.&r" + "" + "3. To unlock the &aTwilight Forest,&r complete the Main Path and &eONE&r specialization." + "" + "4. Complete &eALL&r branches to earn unique &aMaster Trophy!&r" + "" + "Use orbital nodes for extra loot. Good luck, &dPathfinder!&r" + ] + icon: { + Count: 1 + id: "explorerscompass:explorerscompass" + tag: { } + } + id: "31A128CD9F80415F" + size: 2.0d + tasks: [{ + id: "759421847B9C709F" + title: "The Crossroad of Destiny" + type: "checkmark" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: [ + "3200137A7D30D479" + "6EA800BC60476D2F" + "76AE02919BF32037" + "3A8F614E1196FC28" + "43DB960BC842C76D" + "55D1A089E5B299DB" + "265AE3A39E7AD311" + "000682B5CC22FEC2" + "681F7D646B0F14A1" + "1E86CB799045D715" + "12928E377F658964" + "7F9170B57FE7CC13" + ] + dependency_requirement: "one_completed" + description: [ + "Congratulations, Engineer. You have moved beyond mere manual labor and started thinking in systems. The status of Lead Architect is not just about access to new blueprints—it is a commitment to industrial optimization." + "" + "At this stage, you have access to tools that will make your life easier and your factories smarter. &aLook around:&r the surrounding &6utility quests&r will help you monitor stress, speed, and resource flow." + "" + "&aYour Ultimate Goal:&r Prepare for the &acreation&r of the &5Diamond&r of this Era. This is no ordinary gem found in the dirt; it is a pinnacle of engineering that requires massive resource throughput and a flawless assembly line." + "" + "&dExplore the available utility gear and prepare for a massive scale-up.&r" + ] + icon: "create:empty_schematic" + id: "6B3933DAE35851BB" + min_required_dependencies: 3 + shape: "hexagon" + size: 2.5d + tasks: [{ + id: "019A7D8798DDB60F" + title: "&6The Lead Architect&r" + type: "checkmark" + }] + x: -9.0d + y: 5.0d + } + { + description: [ + "If you want to scale your production, you need a place to put all those resources. Standard chests are too small and disorganized for a true Architect." + "" + "&bSophisticated Storage&r barrels are the backbone of any automated warehouse. They &acan be expanded, filtered, and upgraded&r to hold thousands of items in a single block." + "" + "Your Task:" + "" + "1. &aCraft&r any &6Barrel&r from this mod." + "" + "2. &aCraft&r any&6 Storage Upgrade&r to enhance its capabilities." + "" + "&dTip: Use a 'Pickup Upgrade' or 'Compacting Upgrade' to make your resource management even more efficient!&r" + ] + id: "774F3589C1D30DAF" + tasks: [ + { + id: "62667BBDD808FA32" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "sophisticatedstorage:all_storage" + } + } + type: "item" + } + { + id: "2A43DB3EFDC7B550" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "sophisticatedstorage:pickup_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:filter_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:magnet_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:feeding_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:compacting_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:void_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:smelting_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:blasting_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:smoking_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:survival_infinity_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:compression_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:pump_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:jukebox_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:stack_downgrade_tier_1" + } + { + Count: 1b + id: "sophisticatedstorage:alchemy_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:stonecutter_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:crafting_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:stack_upgrade_tier_1" + } + { + Count: 1b + id: "sophisticatedstorage:hopper_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/botanist_workbench_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/glassblower_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/carpenters_table_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/loom_table_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/mason_table_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/alchemy_bench_upgrade" + } + { + Count: 1b + id: "sophisticatedstorage:chipped/tinkering_table_upgrade" + } + ] + } + } + type: "item" + } + ] + title: "Storage" + x: -6.0d + y: 4.0d + } + { + description: [ + "&6Engineer's Goggles&r allow you to see the 'pulse' of your factory. By looking at any component, you &acan see&r its current &bspeed&r (RPM) and &bstress&r impact. This is vital for preventing system overloads." + "" + "The &6Wrench&r is your primary tool for &aconfiguring and dismantling machinery.&r" + ] + id: "214B864499E91F9F" + tasks: [ + { + id: "76BDD845131733D9" + item: "create:goggles" + type: "item" + } + { + id: "2E153C24AE72F87E" + item: "create:wrench" + type: "item" + } + ] + x: -5.5d + y: 5.0d + } + { + description: [ + "Building a massive factory by hand is slow and prone to error. &aUse&r the &6Schematic Table&r to &arecord&r your &adesigns or upload&r new ones." + "" + "The &6Schematicannon&r&a is your best friend—it automatically builds structures&r from your blueprints as long as it has gunpowder and the required materials in nearby chests." + ] + id: "716EE1406AED95DA" + tasks: [ + { + id: "3C8CC3279C09E472" + item: "create:schematicannon" + type: "item" + } + { + id: "04D50BF64E2A74D5" + item: "create:schematic_table" + type: "item" + } + { + id: "7EEC633B30BB39AB" + item: "create:empty_schematic" + type: "item" + } + ] + x: -6.5d + y: 6.0d + } + { + description: [ + "Sometimes a conveyor belt is too bulky for a tight space. &6Item Pipes from&r the &5Pipez mod&r offer a &acompact and high-speed alternative&r for transporting materials." + "" + "&6Use&r the &6Pipez Wrench&r to &aconfigure&r the connections, &aset filters&r, or &achange the extraction mode&r. It is the universal tool for managing your fluid, item, and energy networks." + ] + id: "63369294419CAE9C" + tasks: [ + { + id: "32D056218D390F9D" + item: "pipez:wrench" + type: "item" + } + { + id: "2793727EA8A09DA1" + item: "pipez:item_pipe" + type: "item" + } + ] + x: -7.5d + y: 8.0d + } + { + dependencies: ["265AE3A39E7AD311"] + description: ["&6Upgrades&r &aallow&r you to &aincrease the number of items moved&r per tick and enable advanced filtering options. Simply sneak-right-click the pipe connection with a wrench and insert the upgrade into the slot."] + id: "6200E243B4C2FE7B" + tasks: [{ + id: "64E0AE003753994D" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "pipez:upgrades" + } + } + type: "item" + }] + title: "Pipez And Upgrades" + x: -6.5d + y: 8.5d + } + { + description: [ + "&6Iron Furnaces&r &aprovide faster smelting speeds&r and better fuel efficiency." + "" + "&dCheck JEI to see how to upgrade your furnaces even further!&r" + ] + id: "006724CD8656CB5B" + tasks: [{ + id: "3A60E26C89A5811D" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ironfurnaces:iron_furnace" + } + { + Count: 1b + id: "ironfurnaces:upgrade_iron" + } + ] + } + } + type: "item" + }] + x: -10.5d + y: 8.0d + } + { + description: [ + "Even the most brilliant Architect can learn from the past. The ruins scattered across the world hold forgotten secrets and rare components that can jumpstart your industrial empire." + "" + "&aSearch&r for &6structures related to engineering&r and ancient mechanics. Scour their halls and reclaim what was lost." + "" + "&5Your Task:&r &aOpen and loot 10 chests&r in world structures." + "" + "&dP.S. Keep an eye out for specialized loot—it might save you a lot of crafting time!&r" + ] + id: "145CBB2153CE0D0B" + tasks: [{ + id: "1C3C58D8CF71EDEA" + item: "minecraft:chest" + type: "item" + }] + x: -12.5d + y: 6.5d + } + { + description: [ + "The simple millstone was just the beginning. To achieve true industrial throughput, you need the sheer force of &6Crushing Wheels&r." + "" + "These massive wheels &acan grind ores&r into crushed forms with a high chance of &adoubling your output&r and giving secondary resources. They require a significant amount of rotational force (SU), so make sure your power source is up to the task." + "" + "Note: You need a pair of wheels spinning towards each other to process items." + ] + id: "4DA2EE9E7D3A8ECC" + tasks: [{ + count: 2L + id: "6679F12F495DD976" + item: "create:crushing_wheel" + type: "item" + }] + x: -12.5d + y: 5.5d + } + { + dependencies: ["137CCAF8F152659F"] + description: [ + "You have reached the point where &2you are ready to build real factories.&r" + "" + "On this path, you must establish mass production of resources and construct the ultimate assembly line for the Diamond of this Era." + "" + "To achieve this, &ayou will need&r:" + "" + "&6Mechanical Belts&r — to connect everything into a single network." + "" + "&6Blaze Burners&r — to melt through any obstacles." + "" + "&6Mechanical Drills&r — so that extraction never stops for a second." + "" + "&6Encased Fans&r — to process stacks of resources in an instant." + "" + "&aScale up&r or &4fail.&r &dThe choice is yours.&r" + ] + id: "5EAE76F8FE8F15CF" + tasks: [{ + id: "10B58A854FF4159E" + type: "checkmark" + }] + title: "&6Scale Up or Fail&r" + x: -9.0d + y: 10.5d + } + { + id: "1FD52250ACCDF4C9" + size: 1.5d + tasks: [{ + id: "75806EE108CC1F01" + item: "kubejs:tech_diamond_4" + type: "item" + }] + title: "Crafting the Diamond" + x: -9.0d + y: 19.0d + } + { + dependencies: [ + "3200137A7D30D479" + "200239D9BD7B2FCC" + "124EA14ACB2BE1E2" + "4EA42DC4768BEC98" + "621D1EE8E5D23542" + "1A9EE489B3AC32E3" + "37555EB7080D74F4" + "7A768990FDBC46BF" + "2D5F3468D6E10C2A" + "3EA747275863E5AE" + "5665DA7C8A6CD12B" + ] + dependency_requirement: "one_completed" + description: [ + "Congratulations, New Mage. You have taken the first steps into the world of magic. The mana in the air and nature around you has started to hum in resonance with you. " + "" + "At this stage, you will begin to find new magic spells and items that will make your life easier and you more formidable. &aLook around:&r the surrounding &6utility quests&r will help you monitor stress, speed, and resource flow." + "" + "&aYour Ultimate Goal:&r Prepare for the &acreation&r of the &5Diamond&r of this Era. This is no ordinary gem found in the dirt; it is The reward for your hard work as a mage and will expand your magical journey to the next level." + "" + "&dExplore the available utility gear and prepare for to evolve your magics.&r" + ] + icon: "ars_nouveau:archmage_spell_book" + id: "6D627042159DE968" + min_required_dependencies: 3 + shape: "hexagon" + size: 2.5d + tasks: [{ + id: "4DF736FC65C6360D" + type: "checkmark" + }] + title: "&6 Beginner Mage" + x: -18.0d + y: 5.0d + } + { + dependencies: ["165AF290B7896926"] + description: [ + "You have begun to understand the mysteries of magic &2you are ready to advance your magic to the next level.&r" + "" + "On this path, you dive into Magic, set up source production, and handle its transport to eventually create a Magic Diamond of this Era." + "" + "To achieve this, &ayou will need&r:" + "" + "&6Source&r — to power your magical creations." + "" + "&6Imbuement Chamber&r — to use your source to create new magical ingredients." + "" + "&6Source Gem&r — The catalyis for new magical ingredients." + "" + "&6Source Jar&r — to store and transport your source." + "" + "&aAdvance your magic&r or remain a beginner &r &dThe choice is yours.&r" + ] + id: "296D92759765B4CF" + tasks: [{ + id: "11881F9DDD7F1DA5" + type: "checkmark" + }] + title: "&6Evolve Your Magic" + x: -18.0d + y: 10.5d + } + { + dependencies: ["5BBAE57F077A9B7F"] + description: ["&aThis Machine&r is the &6key to crafting with magic&r. When placed and surrounded by arcane pedestals &rit will convert catalysis ingredients to the desired form&r &6this requires additional ingredients and source to complete&r ."] + id: "3385CA41233033A2" + tasks: [{ + id: "576D838C82C956FF" + item: "ars_nouveau:imbuement_chamber" + type: "item" + }] + x: -18.0d + y: 12.0d + } + { + dependencies: ["746E7A24CD4EC66B"] + description: ["The source gem is a key crafting ingredient for many magical items and is a catalysis for new magical ingredients. &aUse them&r &6to make essences&r and advance your magic."] + id: "6909AD527AFC44A6" + tasks: [{ + id: "59759B3C7AD1CAD0" + item: "ars_nouveau:source_gem" + type: "item" + }] + x: -18.0d + y: 13.0d + } + { + id: "0757F126B6580351" + size: 1.5d + tasks: [{ + id: "55B50B840A7E14A9" + item: "kubejs:magic_diamond_4" + type: "item" + }] + title: "Crafting the Diamond" + x: -18.0d + y: 19.0d + } + { + id: "21569FBF052BDA34" + tasks: [{ + id: "3B2BD4414A572964" + item: "ars_nouveau:novice_spell_book" + type: "item" + }] + title: "Craft The novice spell book" + x: -17.5d + y: 2.5d + } + { + id: "5389044ADF25F787" + tasks: [ + { + id: "3DBF075FC981C51D" + item: "botania:light_blue_mystical_flower" + type: "item" + } + { + id: "64D37D6AF350FED9" + item: "botania:green_mystical_flower" + type: "item" + } + { + id: "56478A98A12B9F1B" + item: "botania:light_gray_mystical_flower" + type: "item" + } + { + id: "4850233DAFDF84CF" + item: "botania:cyan_mystical_flower" + type: "item" + } + ] + x: -20.5d + y: 3.0d + } + { + id: "4775213FB0486256" + tasks: [{ + id: "1F62D3716DEE80E3" + item: "forbidden_arcanus:darkstone" + type: "item" + }] + x: -21.0d + y: 5.0d + } + { + id: "293867FD3DB7ADF2" + tasks: [{ + id: "1F1F5A8774414C6D" + item: { + Count: 1 + id: "irons_spellbooks:copper_spell_book" + tag: { + "irons_spellbooks:spell_container": { + data: [ ] + maxSpells: 5 + mustEquip: 1b + spellWheel: 1b + } + } + } + type: "item" + }] + x: -20.5d + y: 7.0d + } + { + id: "0AA97C00FCD2D474" + tasks: [{ + id: "74DBDB2716E766A7" + item: "ars_nouveau:sourceberry_bush" + type: "item" + }] + x: -15.5d + y: 3.5d + } + { + id: "75ACA7DACA87C52C" + tasks: [{ + id: "317F8422460A5FE6" + item: "irons_spellbooks:common_ink" + type: "item" + }] + x: -14.5d + y: 5.0d + } + { + id: "608813B888A79F81" + tasks: [{ + id: "48952C5440724722" + item: "irons_spellbooks:arcane_essence" + type: "item" + }] + x: -15.0d + y: 6.5d + } + { + id: "4808C60043433387" + tasks: [{ + id: "3C301341F83E2BFD" + item: "irons_spellbooks:inscription_table" + type: "item" + }] + x: -16.0d + y: 8.0d + } + { + id: "11A7FCAECD9C3E19" + tasks: [{ + id: "3E0BCDF734B085C9" + item: "hexerei:mixing_cauldron" + type: "item" + }] + x: -17.5d + y: 8.5d + } + { + id: "76A516F291246B37" + tasks: [{ + id: "61562518D1CF66B8" + item: "bloodmagic:daggerofsacrifice" + type: "item" + }] + x: -19.5d + y: 8.5d + } + { + id: "23BA79852294F3F3" + tasks: [{ + id: "3DE675B3EA92A15D" + item: "create:cogwheel" + type: "item" + }] + x: -7.0d + y: 7.0d + } + { + id: "55C35DC982711A10" + tasks: [{ + id: "441980DA103D287D" + item: "create:white_sail" + type: "item" + }] + x: -11.5d + y: 4.0d + } + { + id: "1C4FA942290DC447" + tasks: [{ + id: "0673143E5E5DACAB" + item: "minecraft:magma_block" + type: "item" + }] + x: -11.5d + y: 7.5d + } + { + dependencies: ["3200137A7D30D479"] + icon: { + Count: 1 + id: "farmersdelight:skillet" + tag: { + Damage: 0 + } + } + id: "7C62486068F79FB7" + shape: "hexagon" + size: 2.5d + tasks: [{ + id: "19BC7A6075493C2B" + type: "checkmark" + }] + x: 9.0d + y: 5.5d + } + { + dependencies: [ + "13459280714AFBC7" + "6F9B9E5ABF83118E" + "342ACCDBA95E0E01" + "148A9CD414F0AD1B" + "332C2A8707BCD7F7" + ] + id: "3E4E37D37D21875D" + tasks: [{ + id: "79A97D355235BF17" + item: "kubejs:culinary_diamond" + type: "item" + }] + x: 9.0d + y: 19.0d + } + { + id: "0287D717FCECF9AB" + tasks: [{ + id: "32827EE1B94B6947" + item: "farmersdelight:pasta_with_meatballs" + type: "item" + }] + x: 9.0d + y: 16.5d + } + { + dependencies: [ + "682965482462B916" + "7D08F9C7DDAC4235" + ] + id: "4D4C290394E7DB50" + tasks: [{ + id: "10C56979186006EC" + item: "bakery:chocolate_cake" + type: "item" + }] + x: 8.0d + y: 16.5d + } + { + dependencies: [ + "57E948274B666E04" + "682965482462B916" + ] + id: "4B746366C5B421C6" + tasks: [{ + id: "2FE07C752D6FF578" + item: "bakery:strawberry_cake" + type: "item" + }] + x: 7.0d + y: 17.0d + } + { + id: "693F2893D446F3DB" + tasks: [{ + id: "54033B6BE198E8A4" + item: "create:builders_tea" + type: "item" + }] + x: 10.0d + y: 16.5d + } + { + id: "6A6C86A4F6AA68A6" + tasks: [{ + id: "7A478C0468E37C0F" + item: "minecraft:amethyst_cluster" + type: "item" + }] + x: 11.0d + y: 17.0d + } + { + dependencies: ["302B50DB36CA4256"] + id: "1B74D3A39C41C531" + tasks: [{ + id: "1799586EC5E62F44" + item: "bakery:strawberry_jam" + type: "item" + }] + x: 6.0d + y: 16.5d + } + { + dependencies: ["302B50DB36CA4256"] + id: "608F789553478BE1" + tasks: [{ + id: "0ED165546698D09C" + item: "bakery:chocolate_jam" + type: "item" + }] + x: 7.5d + y: 15.5d + } + { + dependencies: ["302B50DB36CA4256"] + id: "00E327F5B999E555" + tasks: [{ + id: "65030C05EE71FD33" + item: "bakery:cake_dough" + type: "item" + }] + x: 6.5d + y: 15.5d + } + { + dependencies: ["4574743823A02162"] + id: "566D9241B9A763A9" + tasks: [{ + id: "28427CA435873165" + type: "checkmark" + }] + title: "cook checkmark" + x: 9.0d + y: 10.5d + } + { + dependencies: ["60EC0EF9062F746B"] + id: "6F4CDB62DE765615" + tasks: [ + { + id: "24C4A5AF9C8BC8BC" + item: "bakery:baker_station" + type: "item" + } + { + id: "4498C37E720B0206" + item: "farm_and_charm:cooking_pot" + type: "item" + } + { + id: "4F267FA5E313C65A" + item: "bakery:jar" + type: "item" + } + { + id: "1C09D07322CDB5CF" + item: "farm_and_charm:crafting_bowl" + type: "item" + } + ] + x: 5.5d + y: 14.0d + } + { + dependencies: ["60EC0EF9062F746B"] + id: "44E8F789A747E634" + tasks: [ + { + id: "7C6F4F97A5046CCF" + item: "farmersdelight:cooking_pot" + type: "item" + } + { + id: "5B840C67ED95CC00" + item: "farmersdelight:cutting_board" + type: "item" + } + { + id: "1F2D972B1070E532" + item: { + Count: 1 + id: "farmersdelight:iron_knife" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 9.0d + y: 13.5d + } + { + dependencies: ["60EC0EF9062F746B"] + id: "77BE50756CC4B7D2" + tasks: [ + { + id: "4193BF26628334DC" + item: "create:mechanical_mixer" + type: "item" + } + { + id: "1A2F4CFB35A1E01A" + item: "create:basin" + type: "item" + } + ] + x: 12.5d + y: 14.0d + } + { + dependencies: ["3200137A7D30D479"] + icon: { + Count: 1 + id: "simplyswords:iron_longsword" + tag: { + Damage: 0 + } + } + id: "7CF71A249BD4AB42" + shape: "hexagon" + size: 2.5d + tasks: [{ + id: "46233D4810C09249" + type: "checkmark" + }] + x: 19.0d + y: 5.5d + } + { + dependencies: ["4687E1AADC3D070F"] + id: "43C2CC0C3542C2F2" + tasks: [{ + id: "02FFAC667DD1CA10" + title: "combat checkmark" + type: "checkmark" + }] + x: 19.0d + y: 10.5d + } + { + dependencies: ["20ECA2451F65DB16"] + id: "0C07EA255CA500FC" + tasks: [{ + id: "336E991AEAC17B6E" + item: "kubejs:combat_diamond" + type: "item" + }] + x: 19.0d + y: 19.5d + } + { + dependencies: ["4A89B2B8A97A8A65"] + id: "6F9F924EB8656206" + tasks: [ + { + id: "5FB2A3F042F70675" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "simplyswords:swords" + } + } + type: "item" + } + { + id: "395AE6A8BDF71ED5" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:armors/helmets" + } + } + type: "item" + } + { + id: "4DCFA8E5FD69BA0E" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:armors/chestplates" + } + } + type: "item" + } + { + id: "7D0571B21949212B" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:armors/leggings" + } + } + type: "item" + } + { + id: "3CC33CC5A4ED11AF" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:armors/boots" + } + } + type: "item" + } + ] + x: 19.0d + y: 14.0d + } + ] + title: "&5Chapter 1&r" +} diff --git a/minecraft/config/ftbquests/quests/chapters/apotheosis.snbt b/minecraft/config/ftbquests/quests/chapters/apotheosis.snbt new file mode 100644 index 0000000..e679fbd --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/apotheosis.snbt @@ -0,0 +1,2351 @@ +{ + autofocus_id: "310969B8FE0A94DE" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "apotheosis" + group: "4814F40AB34427B6" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "apotheosis:items/gems/endersurge" + } + } + id: "6693050B0EE71CEB" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -2.857142857142854d + y: -0.5714285714285658d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 9.642857142857139d + y: -1.107142857142854d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 2.4285714285714235d + y: 3.5714285714285694d + } + { + height: 1.5d + image: "kubejs:textures/item/apotheosis.png" + order: 1 + rotation: 0.0d + width: 1.5d + x: 2.0d + y: 0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/4.png" + rotation: 0.0d + width: 6.0d + x: 2.0d + y: -1.0d + } + { + height: 3.0d + image: "rftoolsutility:block/effects/floatingsphere" + rotation: 0.0d + width: 3.0d + x: 3.5d + y: 0.5d + } + ] + order_index: 0 + progression_mode: "flexible" + quest_links: [ ] + quests: [ + { + dependencies: ["5A0305BB1F8EA932"] + description: [ + "To get &9Gem Dust&r you need an &dApotheosis Gem&r and an &7Anvil&r." + "" + "Once you get your gems, &o&brecommended&r only &3Common&r and &aUncommon&r, smash them with a falling anvil!" + "" + "To make this easier make a &6Salvaging Table&r." + ] + id: "40926361B5A17F74" + min_width: 300 + rewards: [ + { + id: "6937435AEAC39E67" + type: "xp" + xp: 10 + } + { + id: "4510F211705CC1C5" + item: "apotheosis:gem_dust" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "0A37FB95509990E3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "2610766334068246" + item: "apotheosis:gem_dust" + type: "item" + }] + title: "Gem Dust" + x: -3.5d + y: 3.0d + } + { + dependencies: ["40926361B5A17F74"] + description: [ + "Your &3Weapons&r and &7Armor&r need sockets to use &9Gems&r with it. But if it doesn't have a socket then you'll need a &5Sigil of Socketing&r!" + "" + "Combine your item and &5Sigil&r in a &2Smithing Table&r and you can get up to &o&b3&r sockets." + ] + id: "482190A9DBE834BE" + min_width: 250 + rewards: [ + { + id: "098709C86DF58D43" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0E57CB03BC25A0F8" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "1354E0A2E840D42D" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "apotheosis:sigil_of_socketing" + } + { + Count: 1b + id: "apotheosis:superior_sigil_of_socketing" + } + ] + } + } + title: "Sigil of Socketing" + type: "item" + }] + title: "&5Sigil of Socketing" + x: -2.0d + y: 3.0d + } + { + description: [ + "&dApotheosis&r is a content mod that allows you &o&bto become stronger&r than ever before, while trying to stay true to vanilla mechanics at heart." + "" + "Features range from simple changes, like &ntaller&r &2Sugarcane&r, to &nmassive&r overhauls of &o&bcore systems&r such as &5Enchanting&r." + "" + "&dApotheosis&r is divided into &o&6Modules&r, each of which has a specific focus." + "" + "For detailed information, refer to the &o&bin-game guidebook&r, the &9Chronicle of Shadows&r. You have one in your &3Eccentric Tome&r." + ] + id: "5A0305BB1F8EA932" + min_width: 250 + progression_mode: "flexible" + rewards: [ + { + id: "5FB7D40DF56C94BB" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "7F1024A0877C3F37" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + tasks: [{ + advancement: "apotheosis:affix/gem" + criterion: "" + id: "61A0FDFECECB6FFF" + type: "advancement" + }] + title: "Welcome to &2Apotheosis" + x: -3.5d + y: 0.0d + } + { + dependencies: ["40926361B5A17F74"] + description: [ + "The &2Salvaging Table&r can finally get you materials and &dGem Dust&r without using &3Anvils&r." + "" + "You can &aRecycle&r &o&btools&r and &o&barmor&r with &o&baffixes&r to get their &cMaterials&r." + ] + id: "1A507E77BF750F60" + min_width: 250 + rewards: [ + { + id: "26E84208D42D1B0F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "67940DFD50F69BFA" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "14B79330933FD83E" + item: "apotheosis:salvaging_table" + type: "item" + }] + x: -3.5d + y: 6.0d + } + { + dependencies: ["1A507E77BF750F60"] + id: "70D60687AAB145FE" + rewards: [ + { + id: "2302CD8CAC366A04" + type: "xp" + xp: 10 + } + { + id: "66837CDADFA74927" + item: "apotheosis:common_material" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "55C9D80DF41BB622" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "&f&oCommon" + tasks: [{ + count: 3L + id: "650CAE5254152FB9" + item: "apotheosis:common_material" + type: "item" + }] + title: "&3Mysterious Scrap Metal" + x: -5.0d + y: 6.0d + } + { + dependencies: ["1A507E77BF750F60"] + id: "0A70CC1A0F4F1CD1" + rewards: [ + { + id: "55135D8833AF3702" + type: "xp" + xp: 20 + } + { + id: "30EE4C0525B516A3" + item: "apotheosis:uncommon_material" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "109AC5311120446F" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "&f&oUncommon" + tasks: [{ + count: 3L + id: "70594E0D8666EB60" + item: "apotheosis:uncommon_material" + type: "item" + }] + title: "&aTimeworn Fabric" + x: -4.5d + y: 7.0d + } + { + dependencies: ["1A507E77BF750F60"] + id: "40C8A9DF4581FF8C" + rewards: [ + { + id: "3AC5EF9BC113DEAE" + type: "xp" + xp: 50 + } + { + id: "6B10CEBFE28B9E9D" + item: "apotheosis:rare_material" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "65C8A572C8FAC459" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "&f&oRare" + tasks: [{ + count: 3L + id: "71D7450548341CEB" + item: "apotheosis:rare_material" + type: "item" + }] + title: "&9Luminous Crystal Shard" + x: -3.5d + y: 7.5d + } + { + dependencies: ["1A507E77BF750F60"] + id: "061244C38F05CBFE" + rewards: [ + { + id: "728D19F586A6DE25" + type: "xp" + xp: 100 + } + { + id: "476CEF72622927D7" + item: "apotheosis:epic_material" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "26B039F9A7E5BF78" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "circle" + subtitle: "&f&oEpic" + tasks: [{ + count: 3L + id: "6BED70FB7EF343B8" + item: "apotheosis:epic_material" + type: "item" + }] + title: "&5Arcane Sands" + x: -2.5d + y: 7.0d + } + { + dependencies: ["1A507E77BF750F60"] + id: "738FB4AC92679507" + rewards: [ + { + id: "1491CD5631C36005" + type: "xp" + xp: 200 + } + { + id: "74B03083B511A6AD" + item: "apotheosis:mythic_material" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "464C039BF500F4FD" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "&f&oMythic" + tasks: [{ + count: 3L + id: "68C43D5FAB4FB1FB" + item: "apotheosis:mythic_material" + type: "item" + }] + title: "&6Godforged Pearl" + x: -2.0d + y: 6.0d + } + { + dependencies: ["0A70CC1A0F4F1CD1"] + description: [ + "The &7Simple Reforging Table&r is used like an &dEnchantment Table&r but with &eAffixes&r." + "" + "With &9Gem Dust&r, &3Rarity Materials&r, &dSigils of Riebirth&r, and an &eAffixed Item&r you can &nreroll&r the affixes for a cost of &o&bXP&r." + "" + "This can also be used &o&bto change&r the &3Riarity&r of the &eAffixed&r item up to &9Rare&r." + ] + id: "375359043E71349C" + min_width: 250 + rewards: [ + { + id: "6671AF6160150D2C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6AFC7FE8D45A291D" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2D2CA0A0899233C5" + item: "apotheosis:simple_reforging_table" + type: "item" + }] + title: "&7Simple Reforging Table" + x: -4.5d + y: 8.5d + } + { + dependencies: [ + "375359043E71349C" + "061244C38F05CBFE" + ] + description: ["The &9Reforging Table&r does &o&beverything&r a &7Simple&r one does &nbut better&r, it can do &dEpic&r and &6Mythic Affixes&r!"] + id: "166DF03D93BC11F1" + min_width: 250 + rewards: [ + { + id: "337B8A8547C8F43D" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "2D6557E7ADEB93A6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "34D325EA464BEEEC" + item: "apotheosis:reforging_table" + type: "item" + }] + title: "&9Reforging Table" + x: -2.5d + y: 8.5d + } + { + dependencies: ["359E1FFAB18FE50F"] + description: [ + "With the &2Gem Cutting Tabl&re you can &o&bchange&r the &eRarity&r of your &dGem&r." + "" + "By using &o&b2&r of the same &dGem&r and &eRiarity Materials&r you can &o&bincrease&r your &dGems&r rarity and that &o&bincreases&r its power." + ] + id: "544011D1C48D8E65" + min_width: 250 + rewards: [ + { + id: "02DDAC83732FF9AF" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "18F20388B29820B8" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "4241A0F3897E9DF0" + item: "apotheosis:gem_cutting_table" + type: "item" + }] + x: -5.5d + y: 1.5d + } + { + dependencies: ["40926361B5A17F74"] + description: ["You can combine your &eTool&r and &9Gem&r in a &2Smithing Table&r."] + id: "359E1FFAB18FE50F" + min_width: 250 + rewards: [ + { + id: "714C26F240465F60" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "01F9BC551E78DEAA" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "69CF59A7A4E03D1F" + item: "minecraft:smithing_table" + type: "item" + }] + x: -5.5d + y: 2.5d + } + { + dependencies: ["544011D1C48D8E65"] + description: ["The &o&bbetter&r the &dGem&r, the better the &eStats&r! &5Flawless&r is &o&bsecond best&r while &6Perfect&r is &nthe best&r."] + id: "47317516A98016C0" + min_width: 250 + rewards: [ + { + id: "00D38EB7347224E8" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "5A32FF228612FFCB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + advancement: "apotheosis:affix/mythic_gem" + criterion: "" + id: "2CA5B077B6357FB0" + type: "advancement" + }] + title: "&5Flawless Gems!" + x: -5.5d + y: 0.5d + } + { + dependencies: ["40926361B5A17F74"] + description: [ + "&eAffixed Weapons&r can be found plenty of ways." + "" + "&eAffixed Weapons&r will always have &o&blong names&r usually with the &o&btype&r of weapon and name of &o&bwho may have previously owned it&r." + "" + "It will also be colored the &6Rarity&r it is, &agreen&r for &o&bUncommon&r &9blue&r for &o&bRare&r and so on, and it will also have &o&bbonus stats&r or atleast &dEnchantability&r increase." + ] + id: "67422A235EBAD4CF" + min_width: 250 + rewards: [ + { + id: "7B9A3D7054DF1768" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "52F065BA16A9ABFB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + advancement: "apotheosis:affix/root" + criterion: "" + id: "1129E77C7FCEC1CA" + type: "advancement" + }] + title: "Affixed Items" + x: -5.0d + y: 4.0d + } + { + dependencies: ["67422A235EBAD4CF"] + description: ["&5Mythical Affixes&r are &o&bthe best stats you can get&r so &6Mythical Weapons&r are what you want to aim for."] + id: "68DD99B788216006" + min_width: 260 + rewards: [ + { + id: "45CC70E46267D3AB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "085599B05DC0FA02" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + advancement: "apotheosis:affix/mythic" + criterion: "" + id: "2FF1889B361964B9" + type: "advancement" + }] + title: "&6Simply the Best!" + x: -6.0d + y: 4.0d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "There's a few ways of obtaining &dSpawn Eggs&r. The &6Capturing&r enchantment adds a small chance to get a &3Spawn Egg&r when you kill a mob." + "" + "Once you a &3Spawn Egg&r, &eRight-click&r it on a &9Spawner&r to &nchange&r the &o&bmobs&r it spawns." + ] + icon: "minecraft:allay_spawn_egg" + id: "3FCF7F6531A9F32A" + min_width: 270 + rewards: [ + { + id: "573F5B9F9CB2F247" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "631633839DC24EDE" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "048016FE4B9C327F" + item: { + Count: 1 + id: "itemfilters:id_regex" + tag: { + value: "spawn_egg" + } + } + title: "Spawn Egg" + type: "item" + }] + title: "&eSpawn Eggs" + x: 2.0d + y: 2.5d + } + { + dependencies: ["3FCF7F6531A9F32A"] + description: [ + "&6Capturing&r is an &dApotheosis Enchantment&r for &3Swords&r to &o&bmake mobs rarely drop&r their &cSpawn Eggs&r." + "" + "Every level gives you a &o&b0.4%&r chance at getting an spawn egg each kill." + "" + "The highest level of &6Capturing&r is &o&bVII&r." + ] + icon: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:capturing" + lvl: 6s + }] + } + } + id: "3D1B18B5AA8AE800" + min_width: 270 + rewards: [ + { + id: "39859FBA6B3D804A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4FB8D28B3E8B6858" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "73C2937C1481785A" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:capturing" + lvl: 1s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:capturing" + lvl: 2s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:capturing" + lvl: 3s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:capturing" + lvl: 4s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:capturing" + lvl: 5s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:capturing" + lvl: 6s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:capturing" + lvl: 7s + }] + } + } + ] + } + } + title: "Capturing Book" + type: "item" + }] + title: "&dCapturing" + x: 1.0d + y: 2.0d + } + { + dependencies: ["3FCF7F6531A9F32A"] + description: [ + "&2Charm Fragments&r can be made either into &9Charms&r or &aSpaun Eggs&r." + "" + "They are &nrarely drop&r from their &o&brespective mobs&r. Some can even be crafted!" + ] + icon: { + Count: 1 + id: "reliquary:mob_charm_fragment" + tag: { + entity: "minecraft:warden" + } + } + id: "64F9FF0B94467E35" + min_width: 270 + rewards: [ + { + id: "35995564A633DEE4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3BA2F19ED8F0762B" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "1F2D0CD73633D86D" + item: { + Count: 1 + id: "itemfilters:id_regex" + tag: { + value: "^reliquary:.*charm_fragment*." + } + } + type: "item" + }] + title: "&3Charms" + x: 3.0d + y: 2.0d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "Using a &6Golden Apple&r on a &eSpawner&r it will &o&bsuck the souls out&r the mobs that will be spawned." + "" + "The mobs will lose all &2AI&r. They can't &nhit you&r, can't &nteleport&r, can't &nmove&r on their own." + ] + hide_dependency_lines: true + id: "42D7C8CD8E6F5CD7" + min_width: 250 + rewards: [ + { + id: "4E534F28024F4FEC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "38D8058B612571BC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "7CA847C78EB1B215" + item: "minecraft:golden_apple" + type: "item" + }] + title: "&6No AI" + x: 1.3357142857142845d + y: 6.278571428571437d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "By using a &dTurtle Egg&r on a &eSpawner&r, it will &nonly&r spawn in &o&bbaby versions&r of the mobs in it. " + "" + "This only works with &aVanilla&r baby versions of mobs, &nnot modded&r." + ] + hide_dependency_lines: true + id: "6F71FD826C29C31A" + min_width: 250 + rewards: [ + { + id: "769E4EE69D7EA657" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "49B505CE1B1E7F7A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "65FF566B862C7211" + item: "minecraft:turtle_egg" + type: "item" + }] + title: "&dYouthful" + x: 0.9857142857142848d + y: 6.978571428571437d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "The &6Spawn Range&r is the area of where mobs &o&bcan spawn&r." + "" + "The &nbigger&r the area, the &o&bmore room&r for them to spawn in." + ] + hide_dependency_lines: true + id: "186593EBCE3FE8D8" + min_width: 250 + rewards: [ + { + id: "7790017DA1F1D24B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "576BB4E9046AE389" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "5E1D4330184C7E38" + item: "minecraft:blaze_rod" + type: "item" + }] + title: "&eSpawn Range" + x: 3.0857142857142845d + y: 6.978571428571437d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "&9Wool&r only does one thing to the &eSpawner&r and that's to &nshut it up&r." + "" + "You can use wool in &o&bany color or design&r!" + ] + hide_dependency_lines: true + icon: "minecraft:white_wool" + id: "1AD87CB3226ED224" + min_width: 250 + rewards: [ + { + id: "5C1FA6615AF70B45" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "090DE8CEBCBA5E91" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "39702880D9133E3E" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "minecraft:wool" + } + } + title: "Any #minecraft:wool" + type: "item" + }] + title: "&eSilence" + x: 2.7357142857142844d + y: 6.278571428571437d + } + { + description: [ + "&9Spawners&r can be mined with &6Silk Touch&r." + "" + "There's also many &dModifications&r you can add to &9Spawners&r by &eRight-clicking&r any of these items." + ] + icon: { + Count: 1 + id: "minecraft:spawner" + tag: { + BlockEntityTag: { + Delay: 159s + ForgeCaps: { } + MaxNearbyEntities: 6s + MaxSpawnDelay: 800s + MinSpawnDelay: 200s + RequiredPlayerRange: 16s + SpawnCount: 4s + SpawnData: { + entity: { + id: "minecraft:axolotl" + } + } + SpawnPotentials: [{ + data: { + entity: { + id: "minecraft:axolotl" + } + } + weight: 1 + }] + SpawnRange: 4s + baby: 0b + ignore_conditions: 0b + ignore_light: 0b + ignore_players: 0b + no_ai: 0b + redstone_control: 0b + silent: 0b + } + } + } + id: "310969B8FE0A94DE" + min_width: 250 + rewards: [ + { + id: "3AD1D47557FF4EBC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "28B8B360EC16D3A0" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + advancement: "apotheosis:spawner/root" + criterion: "" + id: "256BA7F05A23110F" + type: "advancement" + }] + title: "&2Spawners" + x: 2.0d + y: 4.5d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "Some mobs need certain &eLight Levels&r to spawn. &4Hostile&r ones needing &o&blower levels&r and &2Passive&r needing &o&bhigher levels&r." + "" + "The &dSoul Lantern&r ignores &eLight Levels&r, but &ndoes not ignore&r other requirements for spawning like livestock animals needing &aGrass&r." + ] + hide_dependency_lines: true + id: "0F89BFD4A3F63A48" + min_width: 250 + rewards: [ + { + id: "334A5CB4552EA8DE" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "70C1CAB482F62209" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "5F16431DBEAF97B0" + item: "minecraft:soul_lantern" + type: "item" + }] + title: "&bIgnore Light" + x: 2.0357142857142847d + y: 8.02857142857144d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "&4Redstone Activation&r gives your &eSpawner&r an &9on&r/&coff&r switch." + "" + "Without &cRedstone Power&r it &nwill not&r spawn." + ] + hide_dependency_lines: true + id: "0E02CE4469FCA4C9" + min_width: 250 + rewards: [ + { + id: "091FDEE65EE361F7" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "720BDD422DB5BFB3" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "39E60F2CA2EFAB9E" + item: "minecraft:comparator" + type: "item" + }] + title: "&4Redstone Active" + x: 2.7357142857142844d + y: 7.678571428571438d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "The &9Conduit&r will do what the &bPrismarine Shards&r do but &nmuch better&r. Players no longer need &o&bto be near&r the &eSpawner&r." + "" + "As long as its &o&bChunk loaded&r it will spawn." + ] + hide_dependency_lines: true + id: "30EB438C66324213" + min_width: 250 + rewards: [ + { + id: "313BEDABEC85051C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "34FFBE17231CAB45" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "211FBEB0E4FF1FD6" + item: "minecraft:conduit" + type: "item" + }] + title: "&2Ignore Players" + x: 2.0357142857142847d + y: 5.928571428571438d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "The &5must-need&r for all &eSpawners&r. Ignores light levels, blocks needing for spawning, and biomes." + "" + "Space conditions are &o&bstill needed though&r, like &aSlimes&r needing &o&b3x3&r area to spawn, and same goes with &nplayers needing&r to be nearby." + ] + id: "40096ED0B04C3EC5" + min_width: 250 + rewards: [ + { + id: "18362F51825D3311" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "72E2CE009E2725EE" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.3d + tasks: [{ + id: "74B1D74F1C52D05C" + item: "minecraft:dragon_egg" + type: "item" + }] + title: "&5Ignore All Conditions" + x: 2.0d + y: 6.95d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "The &9Quartz&r makes whatever the other item does, the &nopposite&r for the &eSpawner&r." + "" + "With &9Quartz&r in your &o&boffhand&r and the other &6Spawner Modification&r item in your &o&bmainhand&r it will do the &nopposite&r of its role." + "" + "With &9Quartz&r and &6Blaze Rods&r instead of &nincreasing&r &dSpawn Range&r it will &ndecrease&r it." + "" + "With &9Quartz&r and &3Ghast Tears&r it'll &ndecrease&r &dMax Entities&r." + ] + hide_dependency_lines: true + id: "167E1474644C9908" + min_width: 250 + rewards: [ + { + id: "4F27FB3A7EE6C684" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2C65EBE7D207D6BC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "20D72B07EE11DDCB" + item: "minecraft:quartz" + type: "item" + }] + title: "&7Opposite Role" + x: 1.3357142857142845d + y: 7.678571428571438d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "&9Activation Range&r is &o&bhow close the player&r must be to the &eSpawner&r." + "" + "It can be between &o&b1&r block and &o&b48&r blocks away. They go in a &ncircle&r around the spawner &o&binstead of bdirect blocks&r." + "" + "The &3Condiut&r and &0Dragon Egg&r will &nignore&r these." + ] + hide_dependency_lines: true + id: "3E2A411FF5B4B0E7" + min_width: 250 + rewards: [ + { + id: "1E5DC6B8B8A0FC25" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1560CA56984CBE35" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "75FE61AB74C39108" + item: "minecraft:prismarine_crystals" + type: "item" + }] + title: "&3Activation Range" + x: 0.2857142857142847d + y: 6.978571428571437d + } + { + dependencies: ["310969B8FE0A94DE"] + description: [ + "&9Max Entities&r is the amount of mobs that &o&bcan be spawned&r by a &eSpawner&r and kept. If it's only &o&b5&r &nmax entities&r when &o&b5&r mobs are already spawned &nno more&r will spawned until they're &o&bdead or moved&r." + "" + "Each &dGhast Tear&r brings it &2up&r or &cdown&r &o&b2&r entities." + "" + "Max of &o&b16&r entities and minimum of &o&b1&r." + ] + hide_dependency_lines: true + id: "4D07B0A4A2E77CDA" + min_width: 250 + rewards: [ + { + id: "76629CC6FABD5165" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7FDDEB99B0165268" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "4DA7AE7F61B1FC05" + item: "minecraft:ghast_tear" + type: "item" + }] + title: "&bMax Entities" + x: 3.7857142857142847d + y: 6.978571428571437d + } + { + description: [ + "&dEnchanting&r gets a few changes with &6Apotheosis&r. The &o&b15&r bookshelves won't be enough." + "" + "There's &nnew&r bookshelves and actions you can do with &dEnchantment Tables&r." + ] + icon: "minecraft:enchanting_table" + id: "0EB5B926E1FBAF0E" + rewards: [ + { + id: "562C93FC5E08E4D2" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "45E9339A20A836C9" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + tasks: [{ + id: "50591E9EAC57C352" + type: "checkmark" + }] + title: "Enchanting with Apotheosis" + x: 9.0d + y: -0.5d + } + { + dependencies: ["0EB5B926E1FBAF0E"] + description: [ + "&9Bookshelves&r are your &o&bstarting point&r, but not your &o&bend point&r." + "" + "With normal bookshelves you can only get &aEterna&r up and to a max of &o&b15&r." + ] + icon: "minecraft:bookshelf" + id: "7F042DED357DEF3C" + rewards: [ + { + id: "6CA6F3F74ED68580" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "25E822513447BD71" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1CC9EA4FD2BF3DB0" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:bookshelves" + } + } + title: "Any #forge:bookshelves" + type: "item" + }] + title: "Bookshelves" + x: 9.0d + y: 1.0d + } + { + dependencies: [ + "218803812A9C332B" + "076DFB0B39A4259F" + ] + dependency_requirement: "one_completed" + description: [ + "An &9Enchantment Library&r is a storage system for &dEnchantments&r." + "" + "Simply insert &o&benchanted books&r, and every enchantment on the book will be stored as &o&bpoints&r. Each library has a &eLevel Capacity&r, representing the &nhighest level&r of enchantment it can store. Excess enchantments are &nvoided&r." + "" + "Clicking on a stored enchantment will &o&bextract one level&r of that enchantment. &eShift-clicking&r a stored enchantment will &o&bextract as many levels as possible&r. Books are generated in the &o&boutput slot&r as necessary." + "" + "You may also place a book in the output slot to &o&badd enchantments&r to it. The library records the &o&bmax level&r that has ever been inserted for each enchantment, and can only &o&bextract up to that level&r." + "" + "The standard &9Enchantment Library&r has a &eLevel Capacity&r of &o&b16&r (&o&bXVI&r)." + ] + hide_dependency_lines: true + id: "314E41B84C8DD464" + min_width: 360 + rewards: [ + { + id: "41CB76AE80D3A750" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "74DBFE23A5ABE8FB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "324CAB864D37604A" + item: "apotheosis:library" + type: "item" + }] + x: 12.5d + y: 0.0d + } + { + dependencies: [ + "44D1B410550B6C28" + "314E41B84C8DD464" + ] + description: [ + "The &6Library of Alexandria&r has a &aLevel Capacity&r of &b31&r&o (&o&bXXXI&r). It &ncan not&r be crafted directly, and must be created using &o&bInfusion Enchanting&r." + "" + "It needs exactly &o&b50&r &aEterna&r, between &o&b45%-50%&r &cQuanta&r, and &o&b100%&r &5Arcana&r." + "" + "This can be done with &o&b7&r &3Echoing Deepshelves&r, &o&b2&r &9Soul-Touched Deepshelves&r, and &o&b3&r &2Draconic Shelves&r." + ] + id: "5FD4F40CEC37D9FD" + min_width: 300 + rewards: [ + { + id: "2F2F81E38754E9A3" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "2B4DC01EA85FEF50" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "21E8F3E04CA2BA93" + item: "apotheosis:ender_library" + type: "item" + }] + x: 12.5d + y: 1.0d + } + { + dependencies: ["44D1B410550B6C28"] + description: [ + "&9Apotheosis Charms&r allows you to get &dPotion Effects&r for &o&bmuch longer&r." + "" + "You can &6Infuse&r them to make them &2Unbreakable&r. It needs &o&b50&r &aEterna&r, between &o&b8.5%&r and &o&b13.5%&r &cQuanta&r, and between &o&b32.5%&r to &o&b37.5%&r &5Arcana&r." + "" + "For Example you can use &35 Draconic Endshelves&r, &e2 Echoing Deepsehlves&r, &d1 Endshelf&r, and &21 Melonshelf&r." + "" + "Only &9Apotheosis Charms&r can be made &dUnbreakable&r." + ] + icon: { + Count: 1 + id: "apotheosis:potion_charm" + tag: { + Damage: 0 + Potion: "potionsmaster:allthemodium_sight" + } + } + id: "12282CBB658F1132" + min_width: 270 + rewards: [ + { + id: "1DF160EB5056C9FE" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0F084A5A0F56C3C5" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "20A7865E2BA4D9B3" + item: { + Count: 1 + id: "itemfilters:id_regex" + tag: { + value: "^apotheosis:.*charm.*" + } + } + title: "Any Charm" + type: "item" + }] + title: "Unbreakable Charms" + x: 11.0d + y: 2.0d + } + { + dependencies: ["1D06097B6206BA60"] + description: ["Besides the &2Bookshelves&r, there are &o&bmore stuff&r that can be &dInfused&r!"] + id: "44D1B410550B6C28" + rewards: [ + { + id: "2BE4C37400989ABE" + type: "xp" + xp: 10 + } + { + id: "2949D6618B3EB162" + item: "minecraft:lapis_lazuli" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "1EAA6C911E12FF7B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "1ACDB5822E2F5713" + item: "minecraft:lapis_lazuli" + type: "item" + }] + title: "&9Lapis Lazuli" + x: 11.0d + y: 1.0d + } + { + dependencies: ["44D1B410550B6C28"] + description: [ + "You can make an &6Inert Trident&r and &dInfuse&r it. The &6Trident&r requires between &o&b20-30&r &aEterna&r, &o&b20%-50%&r &cQuanta&r, and atleast &o&b35%&r &5Arcana&r." + "" + "You oan get this with &94 Echoing Skulkshelves&r or &32 Crystalline Seashelves&r and &26 Heart-Forged Seashelves&r." + ] + id: "24526FFBA093805A" + min_width: 300 + rewards: [ + { + id: "430D3184C632346C" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7578569C6F616805" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2C0F85A4868C5C20" + item: "apotheosis:inert_trident" + type: "item" + }] + x: 11.0d + y: 0.0d + } + { + dependencies: ["7F042DED357DEF3C"] + description: [ + "&6Infusion&r is a special version of &5Enchanting&r which is used for &o&bbetter enchantments&r. " + "" + "When the right amount of &aEterna&r, &cQuanta&r, and &dArcana&r is reached the enchantments will offer &6Infusion&r." + "" + "To know the &eLevels&r needed you can check &o&bJEI&r." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/lightning_new" + } + } + id: "1D06097B6206BA60" + min_width: 300 + rewards: [ + { + id: "4B056A7D548500FF" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "036C79A7E160D819" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "0EE3A88719BB0221" + title: "Infusion" + type: "checkmark" + }] + title: "&dInfusion Enchanting" + x: 9.0d + y: 2.5d + } + { + dependencies: [ + "7234CB42AEF6C941" + "4F4B2A6997F25A5A" + "353C7440B32F0A5E" + ] + description: [ + "Some infusions need &nvery exact amounts&r of &aEterna&r, &cQuanta&r, or &5Arcana&r, to get these you might need one of &o&bthese shelves&r." + "" + "Each &nlowers&r the amount of its respective amounts." + ] + id: "5C56452BE7879D0A" + min_width: 250 + rewards: [ + { + id: "7EE74F73C5B848E8" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3B22CDA6C72EA514" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + id: "437272DA5D788836" + item: "apotheosis:melonshelf" + type: "item" + } + { + id: "64B547185F213F62" + item: "apotheosis:beeshelf" + type: "item" + } + { + id: "36AD2AE569D8F729" + item: "apotheosis:stoneshelf" + type: "item" + } + ] + title: "&3Negative amounts" + x: 6.5d + y: 1.0d + } + { + dependencies: ["1D06097B6206BA60"] + description: [ + "&aEterna&r sets the &dEnchantment&r level which determines what &o&benchantments you can get&r." + "" + "&aEterna&r default is &o&b0&r and max is &o&b50&r." + ] + hide_dependency_lines: true + id: "353C7440B32F0A5E" + min_width: 250 + rewards: [ + { + id: "73A5411FA826B36A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "37DB9EAED65DAF45" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1ADAC994F5D57FE1" + item: "apotheosis:dormant_deepshelf" + type: "item" + }] + title: "&aEterna" + x: 7.5d + y: 0.0d + } + { + dependencies: ["1D06097B6206BA60"] + description: [ + "&cQuanta&r sets how random the &dEnchants&r you get will be. It can be used against you though depending on &6Rectification&r. If the &cQuanta&r is high and &6Rectification&r is low, you're more likely to get &o&bbad enchantments and curses&r." + "" + "&cQuanta&r default IS &o&b15%&r and max is &o&b100%&r." + "&6Rectification&r default is &o&b0%&r and max is &o&b100%&r." + ] + hide_dependency_lines: true + id: "7234CB42AEF6C941" + min_width: 250 + rewards: [ + { + id: "42A2A87E7C9ED9ED" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3C30B8F76BA15947" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "533AE884035F8511" + item: "apotheosis:hellshelf" + type: "item" + }] + title: "&cQuanta" + x: 7.5d + y: 1.0d + } + { + dependencies: ["1D06097B6206BA60"] + description: [ + "&5Arcana&r is &o&bvery&r important quantity, it &o&bincreases&r the amount of &dEnchantments&r you get and makes &o&brare Enchantments more common&r. " + "" + "For example with &7Swords&r, &cSmite&r is a &o&bvery common&r enchantment but &6Looting&r is &o&bmuch more rare&r." + "" + "&5Arcana&r default is &o&b0%&r and max is &o&b100%&r." + ] + hide_dependency_lines: true + id: "4F4B2A6997F25A5A" + min_width: 250 + rewards: [ + { + id: "0DD03C1F7A3ECAEC" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "65B5403238FE9297" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "604BADA98AB8F19B" + item: "apotheosis:seashelf" + type: "item" + }] + title: "&5Arcana" + x: 7.5d + y: 2.0d + } + { + dependencies: ["1D06097B6206BA60"] + description: [ + "&4Hellshelves&r is &o&bone route&r you can take toward &6Perfect Enchanting&r." + "" + "&4Hellshelves&r are your introduction to &cQuanta&r, they give &o&b3%&r &cQuanta&r and &o&b1.5&r &aEterna&r, which makes them &o&bbetter than normal shelves&r right? You're going to need &o&b15&r for the &nnext step&r!" + ] + id: "50EEDDDE129D2742" + min_width: 300 + rewards: [ + { + id: "4ACC5EC780324E26" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "78CCB91C644E50F1" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + count: 10L + id: "4511597A84EF2A40" + item: "apotheosis:hellshelf" + type: "item" + }] + title: "&4Hellshelves" + x: 10.5d + y: 3.5d + } + { + dependencies: ["50EEDDDE129D2742"] + description: [ + "In order to get higher max &dEnchantments&r and levels you'll need &4Infused Hellshelves&r. To get them you will need &o&b22.5&r &aEterna&r and &o&b30%&r &cQuanta&r." + "" + "You can get that with &o&b15&r regular shelves and &o&b5&r &4Hellshelves&r or &njust&r &o&b15&r &4Hellshelves&r. And of course you'll need a &nspare&r &4Hellshelf&r to actually be &dInfused&r." + "" + "You can &o&bkeep replacing&r the &4Hellshelves&r with their &dInfused&r counterparts but it will &nincrease&r &o&bXP&r needed to do so." + ] + id: "218803812A9C332B" + min_width: 300 + rewards: [ + { + id: "55DABD1AC9EE7C4D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C5FAA57C027E853" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + count: 5L + id: "6AA52E3ABC6B3EE1" + item: "apotheosis:infused_hellshelf" + type: "item" + }] + title: "&4Infused Hellshelf" + x: 12.0d + y: 3.5d + } + { + dependencies: ["218803812A9C332B"] + description: ["Each &9Enchanting Clue&r will tell you &o&b1&r &dEnchantment&r before you actually use it."] + id: "12F4980CB3BFCE0D" + min_width: 300 + rewards: [ + { + id: "5170A1A535518195" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "268FD83A6AAB263C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + id: "125517255CFAF0EE" + item: "apotheosis:sightshelf" + type: "item" + } + { + id: "448DFB347B07F8C6" + item: "apotheosis:sightshelf_t2" + type: "item" + } + ] + title: "&3Enchanting Clues" + x: 13.0d + y: 3.0d + } + { + dependencies: ["218803812A9C332B"] + description: [ + "The &6Blazing Hellshelf&r is an &o&bupgrade&r to the &4Infused Hellshelf&r." + "" + "It &o&bincreases&r max &aEterna&r to &o&b30&r. The negative &9Enchanting Clues&r makes it a little &o&bworse&r for normal &dEnchanting&r but the &cQuanta&r is incredible for how cheap it is. Do you &nreally&r have to know which &dEnchantments&r you'll get?" + ] + id: "6C76AB8A6110C0C7" + min_width: 320 + rewards: [ + { + id: "41044319A167FA46" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1CC91506FB235756" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "4EE21647F4434CB5" + item: "apotheosis:blazing_hellshelf" + type: "item" + }] + title: "&6Blazing Hellshelf" + x: 13.0d + y: 4.0d + } + { + dependencies: ["218803812A9C332B"] + description: [ + "The &4Glowing Hellshelf&r is an &o&bupgrade&r to the &4Infused Hellshelf&r. It also &o&bincreases&r the &aMax Eterna&r and decent stats for everything else." + "" + "We can use these for the &nnext step&r, &9Infusing Dormant Deepshelves&r to &9Deepshelves&r. You'll need &o&b10&r &4Glowing Hellshelves&r and &o&b6&r &4Infused Hellshelves&r to get it." + ] + id: "0F77A9AD1F422537" + min_width: 300 + rewards: [ + { + id: "57A8050CF99A024C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2F4434EF270AA3DC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + count: 10L + id: "0396FE7CF6AAF222" + item: "apotheosis:glowing_hellshelf" + type: "item" + }] + title: "&4Glowing Hellshelf" + x: 12.0d + y: 4.5d + } + { + dependencies: [ + "0F77A9AD1F422537" + "751189465F91B353" + ] + dependency_requirement: "one_completed" + description: [ + "The &1Deepshelf&r is your &nnext step&r to &dEnchanting&r." + "" + "The &1Deepshelf Infusion&r needs &o&b30&r &aEterna&r, &o&b40%&r &cQuanta&r, and &o&b40%&r &5Arcana&r. Hopefully you took one of the &o&bPathways&r here and use those to &dInfuse&r for your &1Deepshelf&r." + ] + id: "62B2C1A24AE245EA" + min_width: 300 + rewards: [ + { + id: "788DEDCDCBC16C7D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3E8D4DB5D814C1BC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "639976E0D4F898DD" + item: "apotheosis:deepshelf" + type: "item" + }] + title: "&1Deepshelf" + x: 9.0d + y: 5.5d + } + { + dependencies: ["076DFB0B39A4259F"] + description: [ + "The &9Seashelf&r way to &6Perfect Enchanting&r is &o&bdifferent&r from &4Hellshelf&r way." + "" + "Here you will need &o&bboth upgraded versions&r of the &9Infused Seasehelf&r." + "" + "To get next &dInfusion&r you need &o&b9&r &9Crystalline Seashelves&r, &o&b2&r &9Heart-Forged Seashelves&r, and &o&b4&r &9Infused Seashelves&r." + ] + icon: "apotheosis:crystal_seashelf" + id: "751189465F91B353" + min_width: 300 + rewards: [ + { + id: "6A5391411B38D4F1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4A601278738F8BC7" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + count: 9L + id: "5FE3BF20BB4ABFFB" + item: "apotheosis:crystal_seashelf" + type: "item" + } + { + count: 2L + id: "398CE6B12CC89712" + item: "apotheosis:heart_seashelf" + type: "item" + } + ] + title: "&9Crystalline Seashelf" + x: 6.0d + y: 4.5d + } + { + dependencies: ["5B3CC3F66F2C3DE5"] + description: [ + "For higher &aEterna&r and &5Arcana&r you'll need &9Infused Seashelves&r." + "" + "To get them you need atleast &o&b22.5&r &aEterna&r, &o&b15%&r &cQuanta&r, and &o&b10%&r &5Arcana&r. You can use &o&b15&r bookshelves and &o&b5&r &9Seashelves&r or &njust&r &o&b15&r &9Seashelves&r." + "" + "Because the &cQuanta&r is &o&b15%&r by default you won't need &4Hellshelves&r for this." + ] + id: "076DFB0B39A4259F" + min_width: 330 + rewards: [ + { + id: "6A92A792D467232E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "68B15CEFFBAB41AE" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + count: 5L + id: "44BA467C008ACDEB" + item: "apotheosis:infused_seashelf" + type: "item" + }] + title: "&9Infused Seashelf" + x: 6.0d + y: 3.5d + } + { + dependencies: ["076DFB0B39A4259F"] + description: [ + "&eRiectification&r is a &o&bquantity&r that works with &cQuanta&r, it &o&bdetermines&r if the &dEnchantments&r will be &ngood&r or &nbad&r." + "" + "The more &eRiectification&r the &nbetter&r the &dEnchantments&r." + ] + id: "001B11C3773022DE" + min_width: 300 + rewards: [ + { + id: "5516CD774670BAD5" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "38D2BFA31D58A0EC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + id: "1EFAEC3A3DC32971" + item: "apotheosis:rectifier" + type: "item" + } + { + id: "177529E5546E2043" + item: "apotheosis:rectifier_t2" + type: "item" + } + { + id: "1ADE62474D302F6C" + item: "apotheosis:rectifier_t3" + type: "item" + } + ] + title: "&eRiectification" + x: 5.0d + y: 4.0d + } + { + dependencies: ["076DFB0B39A4259F"] + description: [ + "These little &dHearts of the Sea&r are &o&bvery important&r for &9Apotheosis&r." + "" + "You can craft them with &2Mystical Agriculture&r or &eMekanism&r. Or the normal &3Minecraft&r way of &nkilling&r &7Elder Guardians&r!" + ] + id: "5FD95ABA63C56BD5" + min_width: 310 + rewards: [ + { + id: "7042AAA82A2F8AA9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "79DC6E4DF811BCBF" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "01254EDBBAC8A7BE" + item: "apotheosis:heart_seashelf" + type: "item" + }] + title: "&dHearts of the Books" + x: 5.0d + y: 3.0d + } + { + dependencies: ["62B2C1A24AE245EA"] + description: ["Like an improved &4Hellshelf&r, the &1Soul Touched Deepshelf&r gives a lot of &cQuanta&r, it does give higher &aEterna&r max to &o&b37.5&r though! Which means better &dEnchants&r!"] + id: "0C596CB7C7C24615" + min_width: 300 + rewards: [ + { + id: "46660E3875166639" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "5F36F6F5DECBFD3D" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2E5979DF454E401A" + item: "apotheosis:soul_touched_deepshelf" + type: "item" + }] + title: "&1Soul-Touched Deepshelf" + x: 10.0d + y: 6.5d + } + { + dependencies: ["0C596CB7C7C24615"] + description: [ + "You &o&bdon't need&r infusion for these! You just need to kill the &o&bmost powerful boss&r in vanilla &3Minecraft&r!" + "" + "The &1Skulk Shelves&r increase &aEterna&r to &o&b40&r which will allow us to &dInfuse&r the next item." + ] + id: "10C527C66EE4E95A" + min_width: 300 + rewards: [ + { + id: "25AA401CEE810530" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "548B565133FFC071" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2AE7BBE870F24DCB" + item: "apotheosis:soul_touched_sculkshelf" + type: "item" + }] + title: "&1Soul-Touched Sculkshelf" + x: 11.0d + y: 7.5d + } + { + dependencies: ["405369118613F935"] + description: [ + "You need to kill a few &0Wardens&r for these!" + "" + "&1Echoing Sculkshelf&r is mostly for &5Arcana&r but it's a good source for &nall quantities&r. However, it will be needed for next &dInfusion&r." + ] + id: "606780E5B8CF83BE" + min_width: 300 + rewards: [ + { + id: "269C5989AE6A9D76" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "377BA4A94A154384" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1C69BDCD5499805F" + item: "apotheosis:echoing_sculkshelf" + type: "item" + }] + title: "&1Echoing Sculkshelf" + x: 7.0d + y: 7.5d + } + { + dependencies: ["62B2C1A24AE245EA"] + description: [ + "A little expensive but the &1Echoing Deep Shelf&r is like a &nmuch better&r &9Seashelf&r, but you'll need to kill a few &0Wardens&r to advance more in &dEnchanting&r." + "" + "Also &nincreases&r max &aEterna&r to &o&b37.5&r." + ] + id: "405369118613F935" + min_width: 300 + rewards: [ + { + id: "23E3D78F00BE30CB" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "62C9288264F15E48" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "47499C2393356F89" + item: "apotheosis:echoing_deepshelf" + type: "item" + }] + title: "&1Echoing Deepshelf" + x: 8.0d + y: 6.5d + } + { + dependencies: [ + "606780E5B8CF83BE" + "10C527C66EE4E95A" + ] + description: [ + "The &o&blast sets of Shelves&r you'll need are &dEndshelves&r, to get them you need &5Infused Dragon's Breath&r." + "" + "This one was &nhard&r to get but you need atleast &o&b40%&r &aEterna&r, &o&b15%-25%&r &cQuanta&r, and atleast &o&b60%&r &5Arcana&r." + "" + "It has to be between &c15%-25%&r &cQuanta&r and to get that you can use &o&b5&r &1Echoing Skulkshelves&r, &o&b5&r &1Soul-Touched Skulkshelves&r, and &o&b10&r &aMelonshelves&r." + ] + icon: "apotheosis:infused_breath" + id: "21EE522DDBF0BF72" + min_width: 300 + rewards: [ + { + id: "7B457C28099E656D" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "53934509F3EACA7A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "6436AFC23A51F495" + item: "apotheosis:endshelf" + type: "item" + } + { + id: "1D07057D04625570" + item: "apotheosis:infused_breath" + type: "item" + } + ] + title: "&dEndshelf" + x: 9.0d + y: 8.0d + } + { + dependencies: ["21EE522DDBF0BF72"] + description: [ + "The &dPearlescent Endshelf&r is &o&bthe best&r all-around shelf." + "" + "It also gives a max &aEterna&r of &o&b45&r, but this is not the shelf for our &o&bperfect set-up&r." + ] + id: "4A59DF02128DA9F3" + min_width: 300 + rewards: [ + { + id: "62F9FC2B29A64688" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "20C81C95EB4C96FB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7AB6761EB41B1E07" + item: "apotheosis:pearl_endshelf" + type: "item" + }] + title: "&dPearlescent Endshelf" + x: 10.0d + y: 9.0d + } + { + dependencies: ["21EE522DDBF0BF72"] + description: [ + "The &dDraconic Shelf&r is &o&bthe last Shelf&r we'll need for our &o&bperfect set up&r." + "" + "It gives only &aEterna&r but it has the max &aEterna&r of &o&b50&r." + ] + id: "6244032FE2E5F1E1" + min_width: 300 + rewards: [ + { + id: "65645EAD7DC154E9" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "209D5C5D8641D316" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1F41FD294030AE04" + item: "apotheosis:draconic_endshelf" + type: "item" + }] + title: "&dDraconic Endshelf" + x: 8.0d + y: 9.0d + } + { + dependencies: ["1D06097B6206BA60"] + description: [ + "You can use &9Seashelves&r as a path to &6Perfect Enchanting&r." + "" + "&9Seashelves&r are your introduction to &5Arcana&r, they give &o&b2%&r &5Arcana&r and &o&b1.5&r &aEterna&r. That's &o&bmuch better than normal shelves&r right? You're going to need &o&b15&r for the &nnext step&r!" + ] + id: "5B3CC3F66F2C3DE5" + min_width: 300 + rewards: [ + { + id: "468B7C82F47D1971" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "48C6B0F03BD08790" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + count: 10L + id: "01AAFC6ADF0C8844" + item: "apotheosis:seashelf" + type: "item" + }] + title: "&9Seashelves" + x: 7.5d + y: 3.5d + } + ] + title: "&3&oApotheosis" +} diff --git a/minecraft/config/ftbquests/quests/chapters/applied_energistics.snbt b/minecraft/config/ftbquests/quests/chapters/applied_energistics.snbt new file mode 100644 index 0000000..826cd00 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/applied_energistics.snbt @@ -0,0 +1,4451 @@ +{ + autofocus_id: "3931273289B3A68C" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "applied_energistics" + group: "7E54189F6BA49858" + icon: "ae2:engineering_processor" + id: "49EA4A06D4508740" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -7.8d + y: -9.6d + } + { + height: 1.5d + image: "kubejs:textures/item/ae2_logo.png" + rotation: 0.0d + width: 5.0d + x: 9.0d + y: -9.5d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["00000000000000AF"] + description: [ + "&9Applied Energistics 2&r (&bAE2&r) is a comprehensive mod for Minecraft that introduces a unique approach to in-game inventory management." + "" + "Its theme is centered around the concept of converting matter into energy and vice versa, to store and transport your items and fluids instantaneously!" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/ae2.png" + } + } + id: "35365535ED46DAD0" + min_width: 300 + rewards: [ + { + id: "452E3AD5D20E2A28" + type: "xp" + xp: 2 + } + { + exclude_from_claim_all: true + id: "0C31D02993FEDA67" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&o&nWelcome to PneumaticCraft&r quest*" + tasks: [{ + id: "44F1A9CCA01F132B" + type: "checkmark" + }] + title: "Welcome to &eApplied Energistics 2" + x: -7.125892857142858d + y: -8.94642857142857d + } + { + dependencies: [ + "6A4CF3A1CF4D4928" + "60EC70ED9DC908A0" + ] + description: ["&bCharged Certus Quartz&r is crafted by insterting an &bCertus Quartz Crystal&r into the &aCharger&r, and powering it."] + id: "470B1F84D01E4F7A" + rewards: [ + { + id: "7F56E3A2FAD277A7" + type: "xp" + xp: 10 + } + { + id: "0708DE0F0D5F9253" + item: "ae2:charged_certus_quartz_crystal" + type: "item" + } + { + exclude_from_claim_all: true + id: "276C0A1166A66CCC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "196C5B245699D8FB" + item: "ae2:charged_certus_quartz_crystal" + type: "item" + }] + x: -5.5d + y: -8.0d + } + { + dependencies: ["6847F5D14FCB5BF8"] + id: "60EC70ED9DC908A0" + rewards: [ + { + id: "4DBB638331999B86" + type: "xp" + xp: 10 + } + { + id: "686FF99C12259B02" + item: "ae2:certus_quartz_crystal" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "4E6C8E2D7AF08C12" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "5304AB671E89DFBB" + item: "ae2:certus_quartz_crystal" + title: "Certus Quartz Crystal" + type: "item" + }] + x: -4.0d + y: -7.5d + } + { + dependencies: ["470B1F84D01E4F7A"] + description: ["&1Fluix Crystal&r is crafted in world by tossing &bCharged Certus Quartz Crystal&r, &7Nether Quartz&r and &cRedstone Dust&r in &9Water&r."] + id: "5A5A30CD4D0C98CB" + rewards: [ + { + id: "14FF63715EC54029" + type: "xp" + xp: 10 + } + { + id: "3D33674A8A712A1D" + item: "ae2:fluix_crystal" + type: "item" + } + { + exclude_from_claim_all: true + id: "676AFD13C33DAF1E" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4C325D1EEC15E39A" + item: "ae2:fluix_crystal" + type: "item" + }] + x: -5.5d + y: -6.5d + } + { + dependencies: ["2FAFEDC6F1DDC58B"] + id: "6B8E544E188FBA4D" + rewards: [ + { + id: "51E06ED08D3C89E5" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6CDB771F152C3BBA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "64EC331C0F08FBE4" + item: "ae2:controller" + type: "item" + }] + x: 3.0d + y: -2.5d + } + { + dependencies: ["556D9C78EFAB5091"] + description: [ + "The &dME Crafting Terminal&r is the upgraded version of the &2ME Terminal&r which has an integrated crafting grid with access to a &eME Network's Networked Storage&r." + "" + "Like the &2ME Terminal&r it also requires a &eChannel&r to function." + ] + id: "338E4A4F41889959" + rewards: [ + { + id: "786A95D0D38D0DF7" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3755BA87FF7DF6CC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5D721410DAF93D49" + item: "ae2:crafting_terminal" + type: "item" + }] + x: -5.5d + y: -1.0d + } + { + dependencies: ["0EEA8C33BC327CCA"] + description: [ + "A specialized version of the &6ME Crafting Terminal&r designed to encode &7Blank Pattern&r into &3Crafting Pattern&r or &bProcessing Pattern&r." + "" + "See &eAuto Arafting&r for more details on automated crafting in general." + "" + "Lets you browse the contents of your network like other terminals, but also contains an area for designing patterns." + "" + "There are &ntwo modes&r for pattern encoding. &aCrafting Patterns,&r and &cProcessing Patterns&r." + "" + "&cProcessing Patterns&r are designed for use with machines that do not use standard crafting recipes; such as furnaces, or other machines." + "" + "To select between modes, click the button to the right of the interface; when it shows a standard crafting table, it will create &7Crafting Patterns&r, and when it shows a furnace, it will create &cProcessing Patterns&r." + "" + "For &aCrafting Patterns&r (\"Crafts...\"), you specify the input crafting materials on a standard &n3x3 crafting grid&r, and the output materials are determined &nautomatically&r." + "" + "For &cProcessing Patterns&r (\"Creates...\"), you specify the input materials and output materials, including quantity, by placing stacks of items in the interface." + "" + "If a processing operation is not guaranteed to succeed (such as secondary products from some machines), it will not work correctly as a &cProcessing Pattern&r." + ] + id: "180206DDBD6B2D59" + min_width: 450 + rewards: [ + { + id: "2BAE6C65FA6BD3B9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "11B68E41275E99B9" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5B9DC4C1423C4F5A" + item: { + Count: 1 + id: "ae2:pattern_encoding_terminal" + tag: { } + } + type: "item" + }] + x: -7.5d + y: -1.0d + } + { + dependencies: ["6B8E544E188FBA4D"] + description: [ + "The &2ME Terminal&r is a &bHID&r which gives you access to items stored in your &dME Network&r. This will also include items accessible through &eME Storage Bus&r." + "" + "It has the ability to sort and search, as well as filter by using &6View Cell&r. It requires a &eChanne&rl to function." + "" + "Can be upgraded into a &dME Crafting Terminal&r." + ] + hide_dependency_lines: true + id: "556D9C78EFAB5091" + rewards: [ + { + id: "6D6EEAB263B2B89A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4CE229924B35EAFE" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "45B2A0BAABF2D3D9" + item: "ae2:terminal" + type: "item" + }] + x: -4.5d + y: -1.0d + } + { + dependencies: ["338E4A4F41889959"] + description: [ + "Gives remote access to all &bpattern&r slots for the &bpattern providers&r on your network separated by which type of machine they are on." + "" + "It will show the &ntype&r of machine in the terminal, however you can name the &eME Pattern Provider&r in the &2Inscriber&r or an &0Anvil&r to alter the name displayed in the &cME Pattern Access Terminal&r." + "" + "Combined with the fact that you can toggle if the &bpattern provider&r shows up at all this gets you control over your pattern terminal's display." + "" + "You can also &nchoose&r to &bpattern providers&r whose pattern inventory is already &nfull&r." + ] + id: "0EEA8C33BC327CCA" + min_width: 300 + rewards: [ + { + id: "65E71067956EE6B0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0705A7CCEA571617" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0B8AC2A78635FFD3" + item: { + Count: 1 + id: "ae2:pattern_access_terminal" + tag: { } + } + type: "item" + }] + x: -6.5d + y: -1.0d + } + { + dependencies: ["6B8E544E188FBA4D"] + description: [ + "&dME Drive&r holds 10 storage &eCells&r so you can tightly pack your storage into a very small space." + "" + "&dME Drive&r stores &aStorage Cells&r. This block holds &o10&r &aStorage Cells&r so you can tightly pack your storage into a very small space." + "" + "&dME Drive&r show their contents and the storage cell status on the &nfront&r of the drive face." + "" + "● &cRed&r - Indicates the &eStorage Cell&r is &nfull&r." + "● &6Orange&r - Indicates the &eStorage Cell&r cannot hold any more &ntypes&r, but it can store more &nitems&r." + "● &2Green&r - Indicates the &eCell&r can hold more &ntypes&r, or more &nitems&r." + "● &0Black&r - Indicates there is no &eChannel&r, or power is &noffline&r." + "" + "It's &nimportant&r to note that without a &dME Network&r this block does nothing. " + "" + "Its only useful when combined with a way to input, and output items, and requires &o2&r &bAE&r/t power to function, and additional power for each &eStorage Cell&r stored inside it." + "" + "The &dME Drive&r requires a &aChannel&r to function." + ] + hide_dependency_lines: true + id: "38E84EA139A2316C" + min_width: 400 + rewards: [ + { + id: "0A0D9A639F6D069F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "026A772EB5AC7483" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "285E03275D02C36F" + item: "ae2:drive" + type: "item" + }] + x: 10.0d + y: -1.0d + } + { + dependencies: ["5404DE6F2FB85086"] + description: [ + "Each &41k ME Storage Cell&r can contain &b1,024&r bytes of storage." + " " + "&6The Storage Cell&r can hold:" + "" + "&o- 63&r type of &aItems&r" + "&o- 5&r type of &9Fluids&r" + "&o- 5&r type of &2Chemicals&r" + "&o- 1,000&r units of &dMana&r" + "&o- 100&r units of &eSorce&r" + " " + ] + id: "5173E6F308C81B0C" + rewards: [ + { + id: "5EDB242EA9228E2B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "29D77410A1B5C2EE" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0EAA5B4D5C007AB4" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ae2:item_storage_cell_1k" + tag: { } + } + { + Count: 1b + id: "ae2:fluid_storage_cell_1k" + tag: { } + } + { + Count: 1b + id: "appmek:chemical_storage_cell_1k" + tag: { } + } + { + Count: 1b + id: "appbot:mana_storage_cell_1k" + tag: { } + } + { + Count: 1b + id: "arseng:source_storage_cell_1k" + tag: { } + } + ] + } + } + title: "1k ME Storage Cells" + type: "item" + }] + title: "&41k ME Storage Cells" + x: 10.635714285714286d + y: -2.1107142857142858d + } + { + dependencies: ["0B539729EFF5DE39"] + description: [ + "Each &e4k ME Storage Cell&r can contain &b4,096&r bytes of storage." + " " + "&6The Storage Cell&r can hold:" + "" + "&o- 63&r type of &aItems&r" + "&o- 5&r type of &9Fluids&r" + "&o- 5&r type of &2Chemicals&r" + "&o- 4,000&r units of &dMana&r" + "&o- 400&r units of &eSorce&r" + " " + ] + id: "40B02C79A10565EF" + rewards: [ + { + id: "2C0A0473806EA1E6" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "4E5D57D938F12C20" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "39C74507E6A78265" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ae2:item_storage_cell_4k" + tag: { } + } + { + Count: 1b + id: "ae2:fluid_storage_cell_4k" + tag: { } + } + { + Count: 1b + id: "appmek:chemical_storage_cell_4k" + tag: { } + } + { + Count: 1b + id: "appbot:mana_storage_cell_4k" + tag: { } + } + { + Count: 1b + id: "arseng:source_storage_cell_4k" + tag: { } + } + ] + } + } + title: "4k ME Storage Cells" + type: "item" + }] + title: "&e4k ME Storage Cells" + x: 10.635714285714286d + y: -2.810714285714285d + } + { + dependencies: ["168CADF254190311"] + description: [ + "Each &216k ME Storage Cell&r can contain &b16,384&r bytes of storage." + " " + "&6The Storage Cell&r can hold:" + "" + "&o- 63&r type of &aItems&r" + "&o- 5&r type of &9Fluids&r" + "&o- 5&r type of &2Chemicals&r" + "&o- 16,000&r units of &dMana&r" + "&o- 1,600&r units of &eSorce&r" + " " + ] + id: "4F7168A8AEB1F991" + rewards: [ + { + id: "33782A301784B4BF" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1388D9D7C00F1BFB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "00204D0DDF6D639B" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ae2:item_storage_cell_16k" + tag: { } + } + { + Count: 1b + id: "ae2:fluid_storage_cell_16k" + tag: { } + } + { + Count: 1b + id: "appmek:chemical_storage_cell_16k" + tag: { } + } + { + Count: 1b + id: "appbot:mana_storage_cell_16k" + tag: { } + } + { + Count: 1b + id: "arseng:source_storage_cell_16k" + tag: { } + } + ] + } + } + title: "16k ME Storage Cells" + type: "item" + }] + title: "&216k ME Storage Cells" + x: 10.635714285714286d + y: -3.5107142857142843d + } + { + dependencies: ["5689851598C2E6A7"] + description: [ + "Each &b16k ME Storage Cell&r can contain &b65,536&r bytes of storage." + " " + "&6The Storage Cell&r can hold:" + "" + "&o- 63&r type of &aItems&r" + "&o- 5&r type of &9Fluids&r" + "&o- 5&r type of &2Chemicals&r" + "&o- 64,000&r units of &dMana&r" + "&o- 6,400&r units of &eSorce&r" + " " + ] + id: "44F858FA4E965814" + rewards: [ + { + id: "6816FDC2CD5A119B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "05142F993809111A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "5D07486390FB3BA5" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ae2:item_storage_cell_64k" + tag: { } + } + { + Count: 1b + id: "ae2:fluid_storage_cell_64k" + tag: { } + } + { + Count: 1b + id: "appmek:chemical_storage_cell_64k" + tag: { } + } + { + Count: 1b + id: "appbot:mana_storage_cell_64k" + tag: { } + } + { + Count: 1b + id: "arseng:source_storage_cell_64k" + tag: { } + } + ] + } + } + title: "64k ME Storage Cells" + type: "item" + }] + title: "&b64k ME Storage Cells" + x: 10.635714285714286d + y: -4.210714285714285d + } + { + dependencies: ["71A772DE60643C45"] + description: [ + "The &dInscriber&r creates different types of &eProcessors&r." + " " + "The &dInscriber&r can also \"create\" &0presses&r by duplicating an existing press with an &3Iron Block&r." + ] + id: "6B7DE9EA8E828DEE" + rewards: [ + { + id: "0B68D170BB02A483" + type: "xp" + xp: 100 + } + { + count: 5 + id: "581F57F4895EB4D7" + item: "ae2:silicon" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "4A3DF4A5D9514B09" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7579C63E89B6E16A" + item: "ae2:inscriber" + type: "item" + }] + x: 1.0d + y: -9.5d + } + { + dependencies: ["6847F5D14FCB5BF8"] + id: "71A772DE60643C45" + rewards: [ + { + id: "10BC75B2E7D65C60" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6D2DAE499C2034A8" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "7480A93E3BAC47A1" + item: "ae2:calculation_processor_press" + type: "item" + } + { + id: "25F3181D9B2BECA2" + item: "ae2:engineering_processor_press" + type: "item" + } + { + id: "123A46B5DC38F32E" + item: "ae2:logic_processor_press" + type: "item" + } + { + id: "2A0636DCCCF8941B" + item: "ae2:silicon_press" + type: "item" + } + ] + title: "&eThe Inscriber Presses" + x: -1.5d + y: -9.5d + } + { + dependencies: ["6B7DE9EA8E828DEE"] + id: "4444FF3927B22B75" + rewards: [ + { + id: "304AC4568FB778B1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2E80B875570CC84A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6EDC5F14AAF26078" + item: "ae2:printed_silicon" + type: "item" + }] + x: 3.0d + y: -9.5d + } + { + dependencies: ["4444FF3927B22B75"] + id: "4D36EF25F492E276" + rewards: [ + { + id: "163CB92F7F6582D0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "032E93D8E90E9CDD" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "427A6071BC027039" + item: "ae2:logic_processor" + type: "item" + }] + x: 3.0d + y: -8.0d + } + { + dependencies: ["4D36EF25F492E276"] + id: "7AB346FA0412469C" + rewards: [ + { + id: "74521FA0207E9C5C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "10868CAEA8472BD5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "383CD85B903F7911" + item: "ae2:calculation_processor" + type: "item" + }] + x: 3.0d + y: -6.5d + } + { + dependencies: ["7AB346FA0412469C"] + id: "2FAFEDC6F1DDC58B" + rewards: [ + { + id: "3BC826581F90450E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3F3900139EBD743B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "36D3832642709AB5" + item: "ae2:engineering_processor" + type: "item" + }] + x: 3.0d + y: -5.0d + } + { + dependencies: ["6A4CF3A1CF4D4928"] + description: [ + "Use the &eMeteorite Compass&r to find &0Skystone Meteorites&r, which have a chance to contain &dQuartz&r blocks and &bBudding Quartz&r." + "" + "It has a max range of roughly &o2,700&r &nblocks&r." + ] + id: "6847F5D14FCB5BF8" + min_width: 300 + rewards: [ + { + id: "27A3A6F9E57E3BFA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "24151E5510E931EA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3ED80BDC06AC8D47" + item: "ae2:meteorite_compass" + type: "item" + }] + x: -4.0d + y: -9.5d + } + { + dependencies: ["6B8E544E188FBA4D"] + description: [ + "The &6Molecular Assembler&r is a powered machine which crafts items, it can be upgraded by inserting &bAcceleration Card&r into it; once upgraded it is &nvery fast&r." + "" + "Functions in one of two modes, &eSingle Pattern Mode&r or &9Automatic Crafting Mode&r." + "" + "&eSingle Pattern Mode&r uses a single &bCrafting Pattern&r inserted into the &6Assembler&r to craft an item without a crafting network." + "" + "&9Automatic Crafting Mode&r uses the &bCrafting Pattern&r from attached &dME Pattern Provider&r to craft items when they are requested by the &cCrafting CPU&r." + ] + id: "713EA1BC9BAAA0AB" + min_width: 300 + rewards: [ + { + id: "4348E1D2DE0AC13C" + type: "xp" + xp: 100 + } + { + id: "5D52B07EE7F8BDE5" + item: "ae2:molecular_assembler" + type: "item" + } + { + exclude_from_claim_all: true + id: "79E3B0EF9DE52DC5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4003514C7D0D6C16" + item: "ae2:molecular_assembler" + type: "item" + }] + x: 3.0d + y: -1.0d + } + { + dependencies: ["55749230931993F2"] + description: [ + "The &2Energy Acceptor&r converts energy from external systems (e.g., Redstone Flux &bRF&r) into &bAE&r and stores it in the network." + "" + "Conversion Rate: &o2&r &cFE/RF&r = &o1&r &bAE&r" + "" + "To see the current energy statistics for your network, &bright-click&r any part of it with a &aNetwork Tool&r." + ] + id: "7F783DD7214B96B2" + rewards: [ + { + id: "380F80D435E04950" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "039AB63BA6626AB5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "01AD730C9D2761C4" + item: "ae2:energy_acceptor" + type: "item" + }] + x: -2.0d + y: -6.5d + } + { + dependencies: ["7F783DD7214B96B2"] + description: [ + "The &9Crystal Growth Accelerators&r accelerate crystal growth, which allows you to create &bCertus Quartz Crystal&r and &9Fluix Crystal&r from &ncrystal dust&r." + "" + "Must be powered by an &dME Network&r via the &ntop&r or &nbottom&r, and consumes a steady &b8 AE&r/t while plugged in." + "" + "&aCrystal Seeds&r must be in an adjacent water block to be effected, the seeds will shimmer more rapidly when in the presence of a &npowered&r &9Crystal Growth Accelerator&r." + "" + "Can only connect to cables, or other networked machines on the &ntop&r and &nbottom&r of the machine." + ] + id: "6C4C90DB6768B48D" + min_width: 300 + rewards: [ + { + id: "6DF5BFDB28E892D7" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "044725C2F1ECACEE" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "11FE80B5AE07CE68" + item: "ae2:growth_accelerator" + type: "item" + }] + x: -2.0d + y: -5.5d + } + { + dependencies: ["713EA1BC9BAAA0AB"] + description: [ + "The &dME Interface&r is the only component which can be used as a part, or as a Block." + "" + "Crafting an &dME interface&r in either form by itself produces the other form." + "" + "The &nthin&r form is useful if you want to provide &nseveral&r different interfaces in a single block of &nphysical space&r, but each will need its own &eChannel&r." + "" + "The &nblock&r form lets multiple other blocks connect to a single &dME interface&r, using only &none&r &eChannel&r for the interface." + "" + "The &dME Interface&r acts as an in between when working with pipes, tubes, networks, or machines from ¬her mods&r." + "" + "The &dME Interface&r normally functions like a &2Chest&r, however with one exception, if you place a &7Storage Bus&r on an interface, you essentially &ninclude&r the entire network instead, this allows networks to &nshare&r huge sets of contents and to be chained together in a &nvery&r effective manner." + "" + "The &dME Interface&r require a &eChannel&r to function." + ] + id: "7700E08416618198" + min_width: 400 + rewards: [ + { + id: "530B609CB94DD456" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4501C0B8C7CC57F0" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "12B4C30E259851EC" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "ae2:interface" + } + } + title: "ME Interface" + type: "item" + }] + x: 1.5d + y: -1.0d + } + { + dependencies: ["713EA1BC9BAAA0AB"] + description: [ + "&9Crafting CPU&r manages a single auto crafting task from start to finish, built of various crafting units." + "" + "To be a valid &9Crafting CPU&r, two rules must be met:" + "" + "&o1)&r The &bCPU&r must be a cuboid, completely composed of the parts listed above; air or other blocks are not valid." + "" + "&o2)&r The &bCPU&r must contain at least 1 &nstorage component&r." + "" + "The &9Crafting CPU&r as a multi-block only requires a single &eChannel&r for the entire structure. &7Crafting co-processors&r increase the number of tasks the &9Crafting CPU&r can perform at once; with no co-processors, the &9Crafting CPU&r can perform a single task at a time. " + "" + "You can name your &9Crafting CPUs&r by naming any of the crafting units it is made up of with an &aInscriber&r or an &0Anvil&r." + "" + "To provide patterns to the autocrafting cpus you can use &dME Interface&r or &eME Level Emitter&r." + "" + "&2Crafting Unit&r provides the &bCPU&r with no additional features, but can be used as a \"&nfiller&r\" block. It is the base for crafting the other functional components of a crafting &bCPU&r." + ] + id: "0AEDFC064B84C877" + min_width: 400 + rewards: [ + { + id: "550EA8378D5FC026" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "6416D2A5FAB01C11" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "52AF21B8C0AA3D9B" + item: "ae2:crafting_accelerator" + type: "item" + } + { + id: "65F7E2BD1051116E" + item: "ae2:crafting_unit" + type: "item" + } + ] + title: "&6Auto-Crafting" + x: 4.5d + y: -1.0d + } + { + dependencies: ["54EB9042CC9F4B35"] + description: [ + "&dWireless Access Point&r allows wireless access via a &9Wireless Terminal&r." + "" + "Range and power usage is determined based on the number of &aWireless Booster&r installed into the &dME Wireless Access Point&r." + "" + "A network can have any number of &dME Wireless Access Point&r with any number of &aWireless Booster&r in each one, allowing you to optimize power usage and range by altering your setup." + "" + "Requires a &eChannel&r to be operational." + ] + id: "3424B27C62D3D2CF" + min_width: 300 + rewards: [ + { + id: "1E46D3D5F2C5F428" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0AEF9D5F5C6E60FA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6C51759705021F2F" + item: "ae2:wireless_access_point" + type: "item" + }] + x: 8.0d + y: -7.5d + } + { + dependencies: ["3F925BFD3CF1DC0B"] + description: [ + "After you linked up the &dWireless Terminal&r in the &2ME Security Terminal&r, it grants portable access to the &dME Network&r." + "" + "Put it into a &eCharger&r to recharge it." + "" + "Holds &o1.6M&r &bAE&r in its battery and drains &o1&r &bAE&r/t for each block you are away from the nearest &9ME Wireless Access Point&r." + ] + id: "4D999E42010FFB85" + rewards: [ + { + id: "2796B71D82ECDAC8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "06DA424D5E1DC56A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "42BA3DBB3F744FD8" + item: { + Count: 1 + id: "ae2:wireless_terminal" + tag: { } + } + type: "item" + }] + x: 10.0d + y: -7.5d + } + { + dependencies: ["0E9258C07CDD7385"] + description: [ + "The &9Network Tool&r can be used to remove parts from &eCables&r (like any other BC compatible &aWrench&r), and has a &o9&r slot &3inventory&r that can store &bAE Upgrade Cards&r." + "" + "When in your &2inventory&r the &ninventory&r of the &9Network Tool&r appears in machine &bGUIs&r which &naccept&r upgrades." + "" + "When &bright clicked&r on any network component it will give you &nbreak down&r of all the attached parts, and power storage / usage &ndetails&r for the network." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "71FA64FACF9CDA37" + min_width: 300 + rewards: [ + { + id: "4207245A8495A000" + type: "xp" + xp: 50 + } + { + count: 2 + id: "635CA2AB19DF2F10" + item: "ae2:annihilation_core" + type: "item" + } + { + count: 2 + id: "0EEBD19FC7D933C9" + item: "ae2:formation_core" + type: "item" + } + { + exclude_from_claim_all: true + id: "414C70682A1FAD0E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "335C2112B824D32C" + item: "ae2:network_tool" + type: "item" + }] + x: -3.0d + y: -10.5d + } + { + dependencies: ["3424B27C62D3D2CF"] + description: [ + "Installed in the &bME Wireless Access Point&r, it provides a steadily increasing range of blocks at a cost of &nhigher&r power consumption." + "" + "Up to &o64&r &9Boosters&r may be inserted for a total range of &o528&r block radius and an energy cost of &b4.1kAE&r/t." + ] + id: "3F925BFD3CF1DC0B" + rewards: [ + { + id: "78BEF922722F2290" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "416AD674C9FC80E1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "4448E45C70AD482F" + item: "ae2:wireless_booster" + title: "Wireless Booster" + type: "item" + }] + x: 9.0d + y: -7.5d + } + { + dependencies: ["5A5A30CD4D0C98CB"] + description: [ + "The &dME P2P&r Tunnel or" + "\"Point to Point Tunnel\" is a versatile configurable system to move &aItems&r/&cRedstone&r/&5Power&r/and &9Fluids&r" + "from one location to another though an existing &5ME Network&r &nwithout&r storage." + "" + "Tunnels are &o1&r &binput&r to &oN&r &boutputs&r. This means you can output to as many points as you want, but only input at a &nsingle point&r per tunnel." + "" + "Networks can support any number of tunnels, of any different types, and they all function independently." + "" + "&dME Tunnels&r can be used to carry &eChannels&r from one location to another, and can carry up to &o32&r &eChannels&r, same as a &7Fluix ME Dense Covered Cable&r, while only requiring a single &eChannel&r per point, making tunnels a very powerful tool to expand me networks, especially over a distance." + "" + "The &eChannel&r required by a &dP2P-Tunnel&r cannot be carried through another &dP2P-Tunnel&r." + "" + "To configure a &dME P2P Tunnel&r you must first &nattune&r the tunnel to carry what you want it to, then you need to configure the &noutputs&r to their &ninput&r." + "" + "You configure the connections by using the &9Memory Card&r." + "" + "First &bShift+Right Click&r the &ninput&r to save it on your &9Memory Card&r, then simply &bright-click&r the different &noutputs&r to store the input onto the outputs. this also sets the type of the output to match the type of the input." + ] + id: "4276B941670CE0E2" + min_width: 500 + rewards: [ + { + id: "57275E1C35E237CA" + type: "xp" + xp: 100 + } + { + id: "3BAF55C5AC72BB2B" + item: "ae2:me_p2p_tunnel" + type: "item" + } + { + exclude_from_claim_all: true + id: "5E36EF6DABB89B77" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "291B3675F7C36F3F" + item: "ae2:me_p2p_tunnel" + type: "item" + } + { + id: "527382F75C0D77E7" + item: { + Count: 1 + id: "ae2:memory_card" + tag: { } + } + type: "item" + } + ] + x: -6.5d + y: -5.5d + } + { + dependencies: ["60EC70ED9DC908A0"] + description: ["A &9Cutting Knife&r made out of &bCertus Quartz Crystal&r or &7Nether Quartz&r can be used to make &2Inscriber Name Press&r, &0Cable Anchor&r, and &aCable Facade&r."] + id: "178D450E0B755F3D" + rewards: [ + { + id: "08748C34B149BD56" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "4FEC0AFB2B805E36" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4BF6CC41D2BE536D" + item: { + Count: 1 + id: "ae2:certus_quartz_cutting_knife" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.0d + y: -7.5d + } + { + dependencies: ["7AB346FA0412469C"] + hide_dependency_lines: true + id: "44469860120E156D" + rewards: [ + { + id: "73116421D7E2AF5B" + type: "xp" + xp: 50 + } + { + id: "66420D7C50192C23" + item: "ae2:printed_calculation_processor" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "3BD9D92136489D32" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + count: 2L + id: "6631236A42533B67" + item: "ae2:basic_card" + title: "&6Basic Card" + type: "item" + }] + x: 4.9d + y: -6.300000000000001d + } + { + dependencies: ["7AB346FA0412469C"] + hide_dependency_lines: true + id: "6D3E94EB0E3F1D7E" + rewards: [ + { + id: "691923C471743AEC" + type: "xp" + xp: 100 + } + { + id: "5BC221B40B082D8A" + item: "ae2:printed_calculation_processor" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "6E530AC6C8CD08F3" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + count: 2L + id: "0C4E4CE43F4431B5" + item: "ae2:advanced_card" + title: "&bAdvanced Card" + type: "item" + }] + x: 4.8999999999999995d + y: -8.4d + } + { + dependencies: ["6D3E94EB0E3F1D7E"] + description: [ + "The &6Acceleration Card&f, depending on the device being upgraded with it, will either increase the speed at which the device operates or allow the device to carry out more operations in one go." + "" + "In the case of the &eMolecular Assembler&f, a full set of 5 cards reduces the time taken for the MA to fulfil a craft from one second (with no cards) to one &otick&r." + ] + id: "5F816192B8921FFA" + rewards: [ + { + id: "58E56A7539900B57" + type: "xp" + xp: 100 + } + { + count: 2 + id: "7960BBBF3C29483E" + item: "ae2:charged_certus_quartz_crystal" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "3C5DE930353E465C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "1785AFF63FC49A86" + item: "ae2:speed_card" + type: "item" + }] + x: 5.6d + y: -8.4d + } + { + dependencies: ["6D3E94EB0E3F1D7E"] + description: ["&bInverter Card&f toggles the filter on such buses from being a &bwhitelist&r to being a &0blacklist&r."] + id: "042FD92892014BA2" + rewards: [ + { + id: "6D65F2A8BEF03608" + type: "xp" + xp: 100 + } + { + count: 2 + id: "547F16E05805772D" + item: "minecraft:redstone" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "1814821D55593494" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "27D61C281479A259" + item: "ae2:inverter_card" + type: "item" + }] + x: 4.55d + y: -7.699999999999999d + } + { + dependencies: ["6D3E94EB0E3F1D7E"] + description: ["The &bFuzzy Card&f allows a filtered item to be matched regardless of any (&bNBT&r) metadata such as &cdamage&r or &denchantments&r."] + id: "7D51B8A746AF0207" + rewards: [ + { + id: "00C8D8639FDC3574" + type: "xp" + xp: 100 + } + { + count: 4 + id: "3CB38E4AD1EB40F9" + item: "minecraft:string" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "2C8BC51DB861763E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "0850D8B9F2598566" + item: "ae2:fuzzy_card" + type: "item" + }] + x: 4.2d + y: -8.4d + } + { + dependencies: ["44469860120E156D"] + description: [ + "When applied as an upgrade to any supported device such as an &dInterface&r or &aExport Bus&r, the &bCrafting Card&f allows the device in question to automatically send out its own crafting requests for a required (filtered) item." + "" + "&eCrafting CPUs&r can be set to respond only to these requests to prevent taking up &bCPUs&r meant for player-requested crafts." + "" + "When the &eLevel Emitter&f is upgraded with the &aCrafting Card&r, it can be configured to emit &credstone&r in order to directly facilitate in crafting, by emitting a signal either &nwhile&r a crafting job for its given item is detected or specifically &nto craft&r the item." + "" + "The latter would apply for cases where the only thing needed to make a given item is a &credstone&r signal, without even requiring a &7Crafting Pattern&r." + ] + id: "42942EB88CE0B3A3" + min_width: 300 + rewards: [ + { + id: "78FD17CABDF81777" + type: "xp" + xp: 50 + } + { + count: 2 + id: "0D316F70A4BBD4FE" + item: "minecraft:oak_log" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7385CC1EE8A4FA19" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "7883505D7E4496B0" + item: "ae2:crafting_card" + type: "item" + }] + x: 4.9d + y: -5.6d + } + { + dependencies: ["44469860120E156D"] + description: [ + "The &aCapacity Card&f allows a bus upgraded with it to carry a larger filter." + "" + "&9Import&r and &cExport&r buses upgraded with capacity cards can go from supporting only one filtered item each to their maximum &nnine-slot&r filter, while &eStorage&r buses will go from &o18&r slots to a maximum of &o63&r." + ] + id: "65A685F926F4FF3C" + rewards: [ + { + id: "78468CDAA55CD7B9" + type: "xp" + xp: 50 + } + { + id: "731276DBBB59409B" + item: "ae2:certus_quartz_dust" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "770EFC06FF02DEFF" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "5479C34ADA23D433" + item: "ae2:capacity_card" + type: "item" + }] + x: 5.6000000000000005d + y: -6.300000000000001d + } + { + dependencies: ["44469860120E156D"] + description: [ + "Individual ME devices can also be configured to respond to &credstone&r signals. When upgraded with a &aRedstone Card&f, a device can be configured to do work only when powered with &credstone&r or otherwise as needed." + "" + "This behavour can also apply to &nentire&r sections of an &5ME Network&r by using an &0ME Toggle Bus&f." + "" + "This allows a section of the network on the other side of the bus to come online only when the bus is powered by &credstone&r, or to go offline if using an &eInverted Toggle Bus&r." + ] + id: "32DB68F1F05197C4" + rewards: [ + { + id: "054B3AE4ECE0A996" + type: "xp" + xp: 50 + } + { + count: 2 + id: "14B972CA62046023" + item: "minecraft:redstone" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "46372F27FCD72A08" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "76728D902258F975" + item: "ae2:redstone_card" + type: "item" + }] + x: 4.2d + y: -6.300000000000001d + } + { + dependencies: [ + "1610C8F55F59E82F" + "7A39B7C7B0EEBF4F" + ] + hide_dependency_lines: true + id: "54EB9042CC9F4B35" + rewards: [ + { + id: "7B0CF96A95060877" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "783BD68574401596" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6A4407E3312F2CCC" + item: "ae2:wireless_receiver" + type: "item" + }] + x: 7.0d + y: -7.5d + } + { + dependencies: ["713EA1BC9BAAA0AB"] + description: [ + "A &bBlank Pattern&r, once encoded as an &eCrafting Patter&rn or &dProcessing Pattern&r, is used to control crafting by inserting them into &6Molecular Assembler&r and &2ME Pattern Provider&r." + "" + "Encoded version of &bBlank Pattern&r created by using the &2ME Pattern Encoding Terminal&r in \"Crafting Mode\"." + "" + "Crafting Recipes are very specific, and &nautomatically&r have an output associated with them, these are required to work with a &6Molecular Assembler&r." + "" + "The description of a crafting pattern starts with \"&nCrafts&r\"." + ] + id: "2D7317308A67AAB4" + min_width: 300 + rewards: [ + { + id: "4F4567C16C65F0E3" + type: "xp" + xp: 10 + } + { + id: "7D52C8F59B16E96A" + item: "ae2:blank_pattern" + random_bonus: 1 + type: "item" + } + ] + tasks: [{ + count: 2L + id: "1C35588869674D6F" + item: "ae2:blank_pattern" + title: "Blank Pattern" + type: "item" + }] + x: 2.0d + y: -2.0d + } + { + dependencies: ["1248C149346288D8"] + description: [ + "The &7Quartz Fiber&r." + "" + "A part designed to share energy between two &5ME Networks&r without sharing anything else, also used to craft &9Fluix ME Glass Cable&r." + ] + id: "1610C8F55F59E82F" + rewards: [ + { + id: "31561C5E4CA6FC19" + type: "xp" + xp: 10 + } + { + count: 2 + id: "20C32E22A4CA44E2" + item: "ae2:quartz_fiber" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "1A4FEEBF33FB7D33" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "4761239B2EE2BD5C" + item: "ae2:quartz_fiber" + title: "Quartz Fiber" + type: "item" + }] + x: 0.0d + y: -7.0d + } + { + dependencies: ["1610C8F55F59E82F"] + description: [ + "&9Fluix ME Glass Cable&r is the simplest cable to make, transfers power and up to &o8&r &bChannels&r." + "" + "It comes in &o17&r diffrent &ncolors&r, the default being &9Fluix&r, and can be dyed any color using any of the &o16&r &ndyes&r." + "" + "You can craft &nany&r colored cable with a water bucket to &nremove&r the dye." + "" + "You can cover the cable with wool to create &dFluix ME Covered Cable&r, and craft &7Fluix ME Smart Cable&r to get a better idea of what is going on with your &bChannels&r." + ] + id: "3931273289B3A68C" + min_width: 300 + rewards: [ + { + id: "46B923E9A40BFEA0" + type: "xp" + xp: 10 + } + { + count: 2 + id: "1079AB81A5FD99E4" + item: "ae2:fluix_glass_cable" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "3F1F366D9E3888E7" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "5CD6B756FB073906" + item: "ae2:fluix_glass_cable" + title: "Fluix ME Glass Cable" + type: "item" + }] + x: 0.0d + y: -5.5d + } + { + dependencies: ["3931273289B3A68C"] + description: [ + "While bearing some similarity to &7Fluix ME Covered Cable&r in appearance." + "" + "They provide diagnostic function by visualizing the &bChannel&r usage on the &eCables&r, the &bChannels&r appear as lit &ncolored&r lines that run along the black stripe on the &eCables&r giving you an understanding of how your &bChannels&r are being used on your network." + "" + "The first four &bChannels&r show as lines matching the &ncolor&r of the &eCable&r, the next four show as white lines." + "" + "These can also be &ncolored&r in the same manner as &9Fluix ME Glass Cable&r." + ] + id: "4F89670D49DD2DE1" + min_width: 300 + rewards: [ + { + id: "5023A5967D2CDEF1" + type: "xp" + xp: 100 + } + { + id: "642623BB91CEB06B" + item: "ae2:fluix_covered_cable" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "49D09953C41EDCE5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2649078C9F4A1766" + item: "ae2:fluix_smart_cable" + type: "item" + }] + x: -1.0d + y: -6.0d + } + { + dependencies: ["4F89670D49DD2DE1"] + description: [ + "Higher Capacity cable, can carry &o32&r &bChannels&r unlike standard cable which can only carry &o8&r." + "" + "However it doesn't support &nbuses&r so you must first step down from &ndense&r to a &nsmaller&r cable (such as &9Fluix ME Glass Cable&r or &3Fluix ME Smart Cable&r) before using buses or panels." + "" + "Shows load similarly to&3 Fluix ME Smart Cable&r, with each line lit representing four &bChannels&r in use." + ] + id: "621F052BCE747E68" + min_width: 300 + rewards: [ + { + id: "7693B63946FA7DF4" + type: "xp" + xp: 100 + } + { + count: 2 + id: "74D7FE109D2A3288" + item: "ae2:fluix_covered_dense_cable" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "2807004C2C3619BA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "02220963FC41EC89" + item: "ae2:fluix_smart_dense_cable" + type: "item" + }] + x: -1.0d + y: -7.0d + } + { + dependencies: ["4D36EF25F492E276"] + id: "6CAEA6ED2CC3F3C5" + rewards: [ + { + id: "090AF851503855CB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "05ED7A23AB7873AC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "595065CA06634041" + item: "ae2:annihilation_core" + type: "item" + }] + x: 2.0d + y: -8.5d + } + { + dependencies: ["4D36EF25F492E276"] + id: "6FE6FEE86DA5F9B6" + rewards: [ + { + id: "1D8638EAEE12A360" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0410B8FC83D05E26" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "62AFA653ED06447F" + item: "ae2:formation_core" + type: "item" + }] + x: 2.0d + y: -7.5d + } + { + dependencies: ["4D999E42010FFB85"] + id: "78D19E8B03DBCE0A" + rewards: [ + { + id: "65F75ED9F1023229" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "54A2D23DF295CF0D" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "6619B465579366E5" + item: { + Count: 1 + id: "ae2:wireless_crafting_terminal" + tag: { } + } + type: "item" + }] + x: 11.25d + y: -7.5d + } + { + dependencies: ["11D3686D9F3BCE6D"] + description: [ + "Each &516k ME Storage Cell&r can contain &b262,144&r bytes of storage." + " " + "&6The Storage Cell&r can hold:" + "" + "&o- 63&r type of &aItems&r" + "&o- 5&r type of &9Fluids&r" + "&o- 5&r type of &2Chemicals&r" + "&o- 256,000&r units of &dMana&r" + "&o- 25,600&r units of &eSorce&r" + ] + id: "24C9D17A5FD83194" + rewards: [ + { + id: "30718D82BC6C1F85" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "40EEE10B00D92FBB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "62C0904F5C402948" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ae2:item_storage_cell_256k" + tag: { } + } + { + Count: 1b + id: "ae2:fluid_storage_cell_256k" + tag: { } + } + { + Count: 1b + id: "appmek:chemical_storage_cell_256k" + tag: { } + } + { + Count: 1b + id: "appbot:mana_storage_cell_256k" + tag: { } + } + { + Count: 1b + id: "arseng:source_storage_cell_256k" + tag: { } + } + ] + } + } + title: "256k ME Storge Cells" + type: "item" + }] + title: "&5256k ME Storge Cells" + x: 10.635714285714286d + y: -4.910714285714285d + } + { + dependencies: ["3F925BFD3CF1DC0B"] + description: [ + "Installed in the &bME Wireless Access Point&r." + "" + "Provides an &ninfinite&r range in blocks, if installed together with the &6Dimension Card&r it can go cross &ndimensions&r." + ] + id: "03EE5E241764ACBE" + min_width: 300 + rewards: [ + { + id: "19CF5FDD3B25A437" + type: "xp" + xp: 200 + } + { + id: "4C5555529AAF8017" + item: "extendedcrafting:flux_star" + type: "item" + } + { + id: "7217867034E3638B" + item: "alltheores:platinum_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "2DEE5486EEE67CFC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7AFC3D73E45B5C31" + item: "aeinfinitybooster:infinity_card" + type: "item" + }] + x: 9.0d + y: -6.5d + } + { + dependencies: ["03EE5E241764ACBE"] + description: ["The &6Dimension Card&r allows the use of the &dTerminals&r across &ndimensions&r."] + id: "710131B2DB97B60C" + min_width: 300 + rewards: [ + { + id: "65CEC3D5928E78BC" + type: "xp" + xp: 500 + } + { + count: 10 + id: "2C336F0EC3A3B963" + item: "ae2:fluix_glass_cable" + random_bonus: 2 + type: "item" + } + { + id: "7670BB58A98B7FEC" + item: { + Count: 1 + id: "ae2:cell_component_64k" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "41BB29C8E0647072" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6CBBB8AE2639BF5F" + item: "aeinfinitybooster:dimension_card" + type: "item" + }] + x: 8.0d + y: -6.5d + } + { + dependencies: ["35365535ED46DAD0"] + description: [ + "Craft a &aCharger&r, and power it with a &dVibration Chamber&r or &cGenerators&r from others mods. You can also power it by hand using a &2Wooden Crank&r." + "" + "Power can be provided via the &ntop&r or &nbottom&r, via either &9Fluix ME Glass Cable&r or other &eCables&r, or other mod power cables. Items can be inserted or removed from &nany side&r." + ] + id: "6A4CF3A1CF4D4928" + min_width: 300 + rewards: [ + { + id: "1869486BFC210B6F" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "57527308B2D135AF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "43339F3D99169661" + item: "ae2:charger" + type: "item" + }] + x: -5.5d + y: -9.5d + } + { + dependencies: ["6A4CF3A1CF4D4928"] + description: [ + "A modified furnace capable of generating &bAE&r Power instead of smelting ores. When placed on an &dME Network&r it will charge &eEnergy Cell&r or power other &nNetwork Devices&r." + "" + "The &6Vibration Chamber&r will burn almost any solid burnable fuel for power. It will &nslow&r, or &naccelerate&r the burn depending on how much power it is able to store vs what is wasted." + "" + "Generates between &o1&r and &o10&r &bAE&r/t depending on its burn speed." + "" + "Your network will have some inherent energy storage, which can be increased by connecting &eEnergy Cells&r." + "" + "To see the current energy statistics for your network, &bright-click&r any part of it with a &6Network Tool&r." + ] + id: "492A6615D0B8FA9B" + min_width: 300 + rewards: [ + { + id: "3E29E2F033E64C3E" + type: "xp" + xp: 50 + } + { + id: "379A81F466EB5E77" + item: "minecraft:coal_block" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "6B7160324AEFB255" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6405D6FEA0479BFE" + item: "ae2:vibration_chamber" + type: "item" + }] + x: -6.0d + y: -10.5d + } + { + dependencies: ["6A4CF3A1CF4D4928"] + id: "51ECF3945927EB0C" + rewards: [ + { + id: "3C5D53F131CC4F87" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "7534DE5BA1502C26" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "54061ACCDE063A74" + item: "ae2:crank" + type: "item" + }] + x: -5.0d + y: -10.5d + } + { + dependencies: ["44437B82901F13AF"] + description: [ + "Stores up to &b200,000 AE&r." + "" + "They do &c&nnot&r accept power directly, but are used to add additional power storage to an already existing &dME Network&r." + ] + id: "1D0939A8B41C72BF" + rewards: [ + { + id: "2D8C9A82FAD0BF16" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3810A9817DCD2DEE" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4D272EECAB4D954B" + item: { + Count: 1 + id: "ae2:energy_cell" + tag: { } + } + type: "item" + }] + x: -4.0d + y: -5.5d + } + { + dependencies: ["1D0939A8B41C72BF"] + description: [ + "Stores up to &b1,000,000 AE&r." + "" + "They do &c&nnot&r accept power directly but are used to add additional power storage to an already existing &dME Network&r." + ] + id: "7FAA4D4796F470A4" + rewards: [ + { + id: "1668547636D4B0E1" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "17454FF49535910C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "123406D9436B0676" + item: { + Count: 1 + id: "ae2:dense_energy_cell" + tag: { } + } + type: "item" + }] + x: -4.0d + y: -4.5d + } + { + dependencies: ["6B7DE9EA8E828DEE"] + id: "1248C149346288D8" + rewards: [ + { + id: "720AD724720D7F1B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3FE1927134BFCC8F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "11F8EBE7ADA4D8DA" + item: "ae2:certus_quartz_dust" + type: "item" + }] + x: 0.0d + y: -8.5d + } + { + dependencies: ["1248C149346288D8"] + description: [ + "Mostly clear glass made with &bCertus Quartz Dust&r." + "" + "Can be used to make &eVibrant Quartz Glass&r and other items." + ] + id: "55749230931993F2" + rewards: [ + { + id: "55A24FCAA57A5F86" + type: "xp" + xp: 40 + } + { + id: "1435B917664F9957" + item: "ae2:quartz_glass" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "3CDC7DD3B07E6D39" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "746822ADE19EEBBA" + item: "ae2:quartz_glass" + title: "Quartz Glass" + type: "item" + }] + x: -2.0d + y: -7.5d + } + { + dependencies: ["5A5A30CD4D0C98CB"] + id: "44437B82901F13AF" + rewards: [ + { + id: "4591AC1F2A8989D4" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7D200AF011F002A8" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2B948D7A73EE0163" + item: "ae2:fluix_dust" + type: "item" + }] + x: -4.0d + y: -6.5d + } + { + dependencies: ["5A5A30CD4D0C98CB"] + description: [ + "The &5ME Chest&r is the simplest way to use a &eStorage Cell&r, it will give you direct access to the contents of the cell placed inside." + "" + "&5ME Chest&r show their contents and the &eStorage Cell&r status on the &nfront&r face." + "" + "● &cRed&r - Indicates the &eStorage Cell&r is &nfull&r." + "● &6Orange&r - Indicates the &eStorage Cell&r cannot hold any more &ntypes&r, but it can store more &nitems&r." + "● &2Green&r - Indicates the &eCell&r can hold more &ntypes&r, or more &nitems&r." + "● &0Black&r - Indicates there is no &eChannel&r, or power is &noffline&r." + "" + "&5ME Chest&r can be powered stand alone with external power, or as part of a &dME Network&r. When on a network, the storage of the chest will be available to any other devices in the same network using an assigned &eChannel&r." + "" + "When used without a network, the &echest&r &nwill not&r transfer full stacks at once, capping transfers at &o38&r items instead." + "" + "The &5ME Chest&r consumes &o1&r &bAE&r/t, and consumes a small amount based on which storage cell is installed." + "" + "The &5ME Chest&r has two &bUI's&r, one is used to place the storage cell inside the device from the &nsides&r or &nbottom&r, the other is accessed by using the top surface to access the contents." + "" + "Items can be injected into the &5ME Chest&r like any other inventory, however items cannot be extracted with automation except via networked functions like the &aME Export Bus&r." + ] + id: "4F1307BB5B01F90F" + min_width: 500 + rewards: [ + { + id: "53550E8D9FD4210A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1A25AED898744199" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6F720E20466CB537" + item: "ae2:chest" + type: "item" + }] + x: -6.5d + y: -6.5d + } + { + dependencies: ["38E84EA139A2316C"] + id: "5404DE6F2FB85086" + rewards: [ + { + id: "6FC60B8777D2D174" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "565630CD1A38B5A2" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2551977B6A7977CD" + item: "ae2:cell_component_1k" + type: "item" + }] + x: 9.935714285714283d + y: -2.1107142857142858d + } + { + dependencies: ["5404DE6F2FB85086"] + id: "0B539729EFF5DE39" + rewards: [ + { + id: "09C5FD615911C368" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "2E161A5D38CE1AD2" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "06AED08116880149" + item: "ae2:cell_component_4k" + type: "item" + }] + x: 9.935714285714283d + y: -2.810714285714285d + } + { + dependencies: ["0B539729EFF5DE39"] + id: "168CADF254190311" + rewards: [ + { + id: "73D87D7B6E041955" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "4AA9857FE6CF55E5" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6ACD8731ADD7EE79" + item: "ae2:cell_component_16k" + type: "item" + }] + x: 9.935714285714283d + y: -3.5107142857142843d + } + { + dependencies: ["168CADF254190311"] + id: "5689851598C2E6A7" + rewards: [ + { + id: "1A4B7F08CBCAA45E" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4C576448134C2F07" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "4F265C60DAD35424" + item: "ae2:cell_component_64k" + type: "item" + }] + x: 9.935714285714283d + y: -4.210714285714285d + } + { + dependencies: ["5689851598C2E6A7"] + id: "11D3686D9F3BCE6D" + rewards: [ + { + id: "6F095EDB8819A507" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "27CDA8F0B8B395AA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "12E45B71EBC03388" + item: "ae2:cell_component_256k" + type: "item" + }] + x: 9.935714285714283d + y: -4.910714285714285d + } + { + dependencies: ["1248C149346288D8"] + hide_until_deps_visible: true + id: "219351077BB1D674" + rewards: [ + { + id: "06D9F441FFF777E5" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "763777E158ED3C6A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "1601C4B727799F40" + item: "ae2:tiny_tnt" + type: "item" + }] + x: 1.0d + y: -8.5d + } + { + dependencies: [ + "5A5A30CD4D0C98CB" + "44437B82901F13AF" + ] + id: "7A39B7C7B0EEBF4F" + rewards: [ + { + id: "5C90D1A82E54228F" + type: "xp" + xp: 10 + } + { + id: "74753C7B92C113A8" + item: "ae2:fluix_dust" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "2F816A4D57D4CF54" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "46F878A942FE93F8" + item: "ae2:fluix_pearl" + type: "item" + }] + x: -5.5d + y: -5.5d + } + { + dependencies: [ + "3931273289B3A68C" + "4CE350628327599A" + ] + description: [ + "The &2Toggle Bus&r. " + "" + "A bus which functions similarly to &9Fluix ME Glass Cable&r or other &eCables&r, but it &nallows&r its connection state to be toggled via &credstone&r." + "" + "This allows you to &ncut off&r a section of a &dME Network&r." + ] + id: "25C93EDEDDF8CBE4" + rewards: [ + { + id: "483DFA6BFDC4EA42" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "615B519628A3BC67" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4312D11071E40ED5" + item: "ae2:toggle_bus" + type: "item" + }] + x: 1.0d + y: -6.0d + } + { + dependencies: ["25C93EDEDDF8CBE4"] + description: [ + "There is also an inverted version of the toggle bus that &ndisables&r the connection when a &credstone&r signal is supplied." + "" + "When &credstone&r signal supplied the part &nenables&r the connection, &6ME Inverted Toggle Bus&r provides the &nreverse&r behavior by &ndisabling&r the connection instead." + ] + hide_until_deps_visible: true + id: "4291A72FF87220D5" + rewards: [ + { + id: "1A4C76075D05E1D3" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "5137BBDDC5E023F4" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "125FF413B3BCF5E4" + item: "ae2:inverted_toggle_bus" + type: "item" + }] + x: 1.0d + y: -7.0d + } + { + dependencies: ["3931273289B3A68C"] + description: [ + "Pulls items from the inventory it is pointed at and places them into the &dME Network's&r Networked Storage." + "" + "You can &nspecify&r which items it will pull out via the &bUI&r, else it tries to pull out any item in the adjacent inventory." + "" + "The &aME Import Bus&r will attempt to import any possible options, even if &o1&r or more of the &nconfigured&r items cannot be stored." + "" + "The &aME Import Bus&r requires a &eChannel&r to function." + "" + "This is the functional opposite of the &6ME Export Bus&r." + ] + id: "270E0BC2E8565FFE" + min_width: 300 + rewards: [ + { + id: "3FE7ABBAB6C7D523" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1882E37DFAFC9FBA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "527C62FED3A54792" + item: "ae2:import_bus" + type: "item" + }] + x: -1.0d + y: -4.5d + } + { + dependencies: ["3931273289B3A68C"] + description: [ + "The &6ME Export Bus&r extracts items from the &dME Network's&r Networked Storage and places them into the inventory it faces." + "" + "You must &nconfigure&r which items it will insert, leaving the configuration blank will result in nothing." + "" + "The &6ME Export Bus&r will try to export any of the items on its list skipping over those it cannot fit into the destination." + "" + "The &6ME Export Bus&r requires a &eChannel&r to function." + "" + "This is the functional opposite of the &aME Import Bus&r." + ] + id: "419BBE875D40B1D6" + min_width: 300 + rewards: [ + { + id: "36C7A54A33C6A278" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3BBAF2A9B31CA52F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "22A044CA905B0916" + item: "ae2:export_bus" + type: "item" + }] + x: 0.0d + y: -4.0d + } + { + dependencies: ["3931273289B3A68C"] + description: [ + "The &dME Storage Bus&r, when attached to another inventory block in the world lets you access that &ainventory&r via networked functions." + "" + "This allows you to use &echests&r, &3barrels&r, or other types of item storage in your networks." + "" + "The storage via the &dME Storage Bus&r is &nbi-directional&r, it can both &9insert&r, or &cextract&r items from the inventory block it is attached to as long as the &dME Storage Bus&r has its required &eChannel&r." + "" + "The &bUI&r allows you to control which items are selected as storable items, this selection has no effect on what items can be &nextracted&r once they are in the storage." + "" + "The &dStorage Bus&r will function with nearly any inventory block, including &9ME Interface&r." + "" + "If you place a storage bus on an &9ME Interface&r the storage bus will be able to interact with the full conents of the target network, unless that interface is configured to store items inside itself, in which case it will see those stored items." + ] + id: "192B7624EE117985" + min_width: 400 + rewards: [ + { + id: "482D2A0B98C0956C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3E8CBB6DDAA13345" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5B917B375CC56CC1" + item: "ae2:storage_bus" + type: "item" + }] + x: 1.0d + y: -4.5d + } + { + dependencies: ["178D450E0B755F3D"] + description: [ + "Small &ndecorative&r &bcable-mounted spikes&r that you can use to create ladders with &aCables&r, or make the &aCable&r appear connected to the walls around it." + "" + "Also used to craft &eCable Facade&r." + "" + "&7Cable Anchors&r prevent connections from forming on the side they're mounted on." + ] + hide_until_deps_visible: true + id: "64EE427C9850F707" + min_width: 300 + rewards: [ + { + id: "67D74EB25F6BB1EF" + type: "xp" + xp: 10 + } + { + id: "0D56C09E3E87D065" + item: "ae2:cable_anchor" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "2630B5CF9914EE19" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "371F7EAAA4D6F409" + item: "ae2:cable_anchor" + type: "item" + }] + title: "Cable Anchor" + x: -3.0d + y: -6.5d + } + { + dependencies: ["26A58E2711BC7B28"] + id: "3BEDB0BED61574D6" + rewards: [ + { + id: "0944EFDF6866490C" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "590EDC9CA537B67D" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0F81FD1457D4E5F4" + item: "ae2:spatial_cell_component_2" + type: "item" + }] + x: 6.65d + y: -2.45d + } + { + dependencies: ["3BEDB0BED61574D6"] + id: "03400C0EB0DC0A86" + rewards: [ + { + id: "0CB3471D530D4655" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "027A17A170207A62" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "501C01FA91BCFB44" + item: "ae2:spatial_cell_component_16" + type: "item" + }] + x: 6.65d + y: -3.1499999999999995d + } + { + dependencies: ["03400C0EB0DC0A86"] + id: "1A6305D35FC9A064" + rewards: [ + { + id: "31D0EF43BBC9EDB3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4577D9FC098681CA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "261494715CDE6F0D" + item: "ae2:spatial_cell_component_128" + type: "item" + }] + x: 6.65d + y: -3.8500000000000005d + } + { + dependencies: ["38E84EA139A2316C"] + description: [ + "This block lets transfer items between your &dME Network&r and your &a1k ME Item Storage Cell&r or other storage cells, unlike other forms of automation the &6ME IO Port&r can send items without any configuration of which items to send." + "" + "The top of the &bUI&r indicates which direction you wish to move the data, into the cell, or into the networks." + "" + "The &6ME IO Port&r requires a &eChannel&r to function. When used with automation, the input is the &ntop&r or &nbottom&r, and the output is any of the sides." + "" + "If you're storing data onto cells it's usually a good idea to pre-format them, that way you can get just the items you're interested in, and not get tons of extra items." + ] + id: "49E36D3C3092346E" + min_width: 300 + rewards: [ + { + id: "6FBCC5AC5A6683D3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0BB5C71DAEEE47A2" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "446B5840FB12C88A" + item: "ae2:io_port" + type: "item" + }] + x: 9.0d + y: -1.0d + } + { + dependencies: [ + "49E36D3C3092346E" + "6B5C3E68A6A3F3B5" + ] + description: [ + "&9Spatial IO Port&r are used to capture and deploy regions of space that are defiend by &1Spatial Pylon&r." + "" + "To Capture/Deploy a region of space you must first construct a &dSpatial Containtment Structure&r, once constructed and ready your &9Spatial IO Port&r will show your required power, and current power, the next step would be to adjust your &bSCS&r design, or to build and power your required &eEnergy Cell&r or &2Dense Energy Cell&r to meet the demands of the &9Spatial IO Port&r." + "" + "Once power is available and your &bSCS&r is valid, you need to insert a &o2³&r &cSpatial Storage Cell&r, &o16³&r &cSpatial Storage Cell&r, or &o128³&r &cSpatial Storage Cell&r depending on the required &nsize&r you may need a larger or small &eStorage Cell&r." + "" + "When everything is ready, and the storage cell is placed inside the &9Spatial IO Port&r applying a redstone signal to the &9Spatial IO Port&r will trigger the capture/deployment of the cell into the &bSCS&r." + "" + "Requires a &eChannel&r to function." + ] + id: "26A58E2711BC7B28" + min_width: 300 + rewards: [ + { + id: "49D668F29605E7CC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "384F0D2892C5CC55" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "73A4BD8CA564FC95" + item: "ae2:spatial_io_port" + type: "item" + }] + x: 8.0d + y: -1.0d + } + { + dependencies: ["3BEDB0BED61574D6"] + description: ["Used with &6Spatial IO Port&r to store spatial regions."] + id: "5F0E877BE50D79D0" + rewards: [ + { + id: "78D99AE74A59DB5F" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "25DE1D9247D76791" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "66C3B6C1216DBDFF" + item: "ae2:spatial_storage_cell_2" + type: "item" + }] + x: 5.95d + y: -2.45d + } + { + dependencies: ["03400C0EB0DC0A86"] + description: ["Used with &6Spatial IO Port&r to store spatial regions."] + id: "46EBE6B0E06D750D" + rewards: [ + { + id: "269C2F72AA65B87B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "494F7E1F1EC8BCB5" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "4659659B330C15A4" + item: "ae2:spatial_storage_cell_16" + type: "item" + }] + x: 5.95d + y: -3.1499999999999995d + } + { + dependencies: ["1A6305D35FC9A064"] + description: ["Used with &6Spatial IO Port&r to store spatial regions."] + id: "00C88180C14B1A91" + rewards: [ + { + id: "7615790017225FDD" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "512A63762B08D8CE" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "02D43F5202E6A82B" + item: "ae2:spatial_storage_cell_128" + type: "item" + }] + x: 5.95d + y: -3.8500000000000005d + } + { + dependencies: ["2D31D68D1056108C"] + description: [ + "The &3Spatial Anchor&f is a companion device from the &dSpatial IO&r lineage that simply functions as a &nchunk loader&r." + "" + "When connected to an &5ME network&r, the &3Anchor&r will &nforce-load&r all the chunks occupied by the &5ME network&r across all cables and devices, excluding subnetworks, as long as the network remains powered." + ] + hide_until_deps_visible: true + id: "4DAC24440803FE58" + rewards: [ + { + id: "5BABDB88CF0FD4D3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0BE4A0461377ED1A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "48A7E1EFFF99F0A5" + item: "ae2:spatial_anchor" + type: "item" + }] + x: 6.0d + y: 0.0d + } + { + dependencies: ["0E580153F1936699"] + id: "3D52B8DD0A939D15" + rewards: [ + { + id: "0E1DD64C06765D1E" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "720F9FF95EA9E194" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2879D15A39427988" + item: "ae2:singularity" + type: "item" + }] + x: -5.5d + y: -3.5d + } + { + dependencies: ["44437B82901F13AF"] + id: "0E580153F1936699" + rewards: [ + { + id: "1CEC54638475A325" + type: "xp" + xp: 70 + } + { + exclude_from_claim_all: true + id: "151CF83ED829E295" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "270350870F5689D7" + item: "ae2:condenser" + type: "item" + }] + x: -5.5d + y: -4.5d + } + { + dependencies: ["2D31D68D1056108C"] + description: [ + "&1Spatial Pylon&r is the main block used to construct a &6Spatial Containment Structure&r, they must be built in straight lines, with a minium length of &o2&r." + "" + "When powered and on a network they will either glow a &dlight purple&r, or a &clight red&r, if the color is &clight red&r, that indicates design has an &nissue&r and needs to be &nadjusted&r. They emitt a small amount of light when powered." + "" + "Only useful when used in conjunction with a &6Spatial IO Port&r." + "" + "All &1Spatial Pylon&r in an &5ME Network&r are part of the same &bSCS&r." + "" + "Each &1Spatial Pylon Multiblock&r requires a &eChannel&r (&o1&r per &nstrand of blocks&r, not &o1&r per &1Spatial Pylon&r) to function." + ] + id: "6B5C3E68A6A3F3B5" + min_width: 300 + rewards: [ + { + id: "73C02CEDCF000E58" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "12CABD19C5FA18B3" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "1FEDE2A20931AA85" + item: "ae2:spatial_pylon" + type: "item" + }] + x: 7.0d + y: -1.0d + } + { + dependencies: ["556D9C78EFAB5091"] + description: ["A item which contains a configuration similar to a &aStorage Cell&r, that allows you to &ncustomize&r the filtering of a particular &dME Terminal&r."] + id: "5D3EE44FB41D289F" + rewards: [ + { + id: "36680524F957A836" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "79DD8AC0FA8EE7D2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4AE7887D9EC709CF" + item: "ae2:view_cell" + type: "item" + }] + x: -3.5d + y: -1.0d + } + { + dependencies: ["713EA1BC9BAAA0AB"] + description: [ + "&3Recipes &rneed to be encoded into &bpatterns&r to be usable by crafting &bCPUs&r." + "" + "The encoded &bpatterns&r need to be put into &6Pattern Providers&r on the same network as the &dCrafting CPU&r itself." + "" + "When the &dCrafting CPU&r then needs to craft the primary result of that pattern, it'll delegate this to the pattern provider." + "" + "Normally, the &dPattern Provider&r will then push out the ingredients to an adjacent block (a &aMolecular Assembler&r for crafting recipes, for example), and crafting continues once the result enters the network again." + "" + "This can be achieved by pushing the crafting result back into the pattern provider, an &9ME Interface&r or any other means that would import the crafting result into the network." + "" + "&aMolecular Assemblers&r are smart enough to automatically return the crafting result to the same pattern provider that provided the ingredients." + ] + id: "7EE37ABD9F8B873D" + min_width: 400 + rewards: [ + { + id: "400A6E6FFD69E311" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "325013FAFC18D3DC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "267DD381AC1BBE28" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ae2:pattern_provider" + } + { + Count: 1b + id: "ae2:cable_pattern_provider" + } + ] + } + } + type: "item" + }] + title: "ME Pattern Provider" + x: 3.0d + y: 0.5d + } + { + dependencies: ["0AEDFC064B84C877"] + description: ["&aCrafting Storage&r provides &o1k&r - &o265M&r of storage for crafting."] + id: "1FB657F4DEC4885C" + rewards: [ + { + id: "5F83C8EC555D7C15" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "327A0BA67CB69023" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1B77E1B7D104D502" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ae2:1k_crafting_storage" + } + { + Count: 1b + id: "ae2:4k_crafting_storage" + } + { + Count: 1b + id: "ae2:16k_crafting_storage" + } + { + Count: 1b + id: "ae2:64k_crafting_storage" + } + { + Count: 1b + id: "ae2:256k_crafting_storage" + } + { + Count: 1b + id: "ae2additions:1024k_crafting_storage" + } + { + Count: 1b + id: "ae2additions:4096k_crafting_storage" + } + { + Count: 1b + id: "ae2additions:16384k_crafting_storage" + } + { + Count: 1b + id: "ae2additions:65536k_crafting_storage" + } + { + Count: 1b + id: "megacells:1m_crafting_storage" + } + { + Count: 1b + id: "megacells:4m_crafting_storage" + } + { + Count: 1b + id: "megacells:16m_crafting_storage" + } + { + Count: 1b + id: "megacells:64m_crafting_storage" + } + { + Count: 1b + id: "megacells:256m_crafting_storage" + } + ] + } + } + title: "Crafting Storage" + type: "item" + }] + x: 4.0d + y: -2.0d + } + { + dependencies: ["0AEDFC064B84C877"] + description: ["&bDisplays&r the top level job and its &ncurrent&r progress so you can see what a particular &eCrafting CPU&r is currently working on."] + id: "1CB243F7E197B883" + rewards: [ + { + id: "6FF4E4D858E50AE8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1FE93B3F7B98AE27" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "03A64F653E5637CD" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ae2:crafting_monitor" + } + { + Count: 1b + id: "megacells:mega_crafting_monitor" + } + ] + } + } + title: "Crafting Monitor" + type: "item" + }] + x: 4.0d + y: 0.0d + } + { + dependencies: ["3734081CB77CDBB5"] + description: [ + "The &2Matter Cannon&r is a portable railgun, which can shoot small projectiles." + "" + "It causes damage is based on its &nammo&r. Since it is an powered weapon, it requires charging in the &6Charger&r." + "" + "Ammunition can be refilled in a &dME Chest&r, or &5ME IO Port&r as it functions as a single item &aStorage Cell&r, similar to &e1k ME Item Storage Cell&r" + "" + "Its battery can hold up to &b200k&r ae and consumes &o1600&r &bAE&r per item fired. (&o+1&r item fired per &bAcceleration Card&r)" + "" + "A a general rule heavier metals inflict more damage, and lighter non metal iems are less damaging." + ] + id: "5B2D12C588BA3C05" + min_width: 300 + rewards: [ + { + id: "07A4B047C7F3A719" + type: "xp" + xp: 100 + } + { + id: "7B9D0658CD68A57D" + item: "ae2:engineering_processor" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "1AFE23D271D22F56" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5013A36B1DF94988" + item: { + Count: 1 + id: "ae2:matter_cannon" + tag: { } + } + type: "item" + }] + x: -7.5d + y: -4.5d + } + { + dependencies: ["0E580153F1936699"] + description: [ + "&3Matter Balls&r in a &aMatter Cannon&r can be substituted with &bPaint Balls&f, which will apply a paint splatter effect on the face of whatever block being fired at." + "" + "&bLumen Paint Balls&f are a variant of paint balls exclusively used by the Matter Cannon, whose paint splatters also give off some light once present in the world." + ] + id: "3734081CB77CDBB5" + min_width: 300 + rewards: [ + { + id: "0EB00CBF15A0F578" + type: "xp" + xp: 10 + } + { + id: "0F11B8359619C58A" + item: "ae2:matter_ball" + random_bonus: 9 + type: "item" + } + { + exclude_from_claim_all: true + id: "0F62500A1CC4B5D3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "612BC01DF7AB6B65" + item: "ae2:matter_ball" + type: "item" + } + { + id: "758FACAF38FB4744" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "ae2:paint_balls" + } + } + title: "Paint Balls" + type: "item" + } + { + id: "481A846149CADED9" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "ae2:white_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:orange_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:magenta_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:light_blue_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:yellow_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:lime_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:pink_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:gray_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:light_gray_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:cyan_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:purple_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:blue_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:brown_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:green_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:red_lumen_paint_ball" + } + { + Count: 1b + id: "ae2:black_lumen_paint_ball" + } + ] + } + } + title: "Lumen Paint Balls" + type: "item" + } + ] + title: "Matter/Paint/Lumen Paint Balls" + x: -6.5d + y: -4.5d + } + { + dependencies: ["7AB346FA0412469C"] + description: [ + "The &eME Level Emitter&r can indicate either the level of a specified item or the &dME Network&r energy level." + "" + "You can set the threshold and if the&e ME Level Emitter&r will emit a redstone signal or turn it off." + "" + "Does not require a &eChannel&r to function, if its power is lost the emitter will switch to an off state." + "" + "These can tap into the &bcrafting system&r when a crafting card is installed, allowing you to output redstone while an item is being crafted, or even configure the system to output redstone to preform a crafting task, its important to note that you cannot mix level emitter craft via &credstone&r with &binterface patterns&r." + ] + id: "4CE350628327599A" + min_width: 300 + rewards: [ + { + id: "4119E379275A1B6A" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "2FFE200C29120AE5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3D3C0B1B469332A1" + item: "ae2:level_emitter" + type: "item" + }] + x: 2.0d + y: -6.0d + } + { + dependencies: ["44437B82901F13AF"] + description: [ + "A &2Spatial Containment Structure&r or &bSCS&r, is a &bMultiblock&r networked structure that dictates a region of space as the target of the &dSpatial IO Port&r." + "" + "The structure must be an &dME Network&r with a number of &1Spatial Pylon&r which define the target region." + "" + "The rules for a valid &bSCS&r are:" + "" + "1) A minium size of &n3x3x3&r (&othis will capture a single block&r.)" + "2) All &1Spatial Pylon&r must be in the &noutside&r bounding box." + "3) All &1Spatial Pylon&r must be either connected with cable or via a &bQNB&r, and on &nthe same network&r." + "" + "This also means you can only create &o1&r &bSCS&r per &5Controller&r." + "" + "The &aFormed Status&r of the &bSCS&r is displayed as the color of the &1Spatial Pylon&r if it is a &4red&r color, that means the configuration is invalid, if its a &dlight purple&r color, it indicates it is valid." + "" + "The status is only available if the pylons are powered, and connected." + "" + "Most &bSCS&r will require &eEnergy Cell&r to power the &dSpatial IO Port&r, however, these blocks are not considered part of the &bSCS&r." + "" + "Be aware, that you travel to a &ndimension&r without a direct way to get back. Setup your &dSpatial IO&r in a way, that &nyou can get back&r." + "" + "" + "{image:kubejs:textures/item/scs.png width:150 height:150 align:1}" + ] + hide_dependency_lines: true + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/spatial_pylon.png" + } + } + id: "2D31D68D1056108C" + min_width: 500 + rewards: [ + { + id: "3D5CE33BBDA3D395" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "09F22B8456D70585" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "403E3A484AE814A6" + type: "checkmark" + }] + title: "Spatial Containment Structure" + x: 6.0d + y: -1.0d + } + { + dependencies: ["5B2D12C588BA3C05"] + description: [ + "A Powered &bMulti-purpose&r tool which can alter the quantity of &cEnergy&r in the block you target, you can decrease the &cEnergy&r of the block by &nholding&r &bshift&r (cool/aging), or increase the &cEnergy&r in the block (heating it) by using it normally, if adding heat doesn't do anything it generally will &nstart a fire&r on the block instead." + "" + "You can also hit mobs or players with it to set them on &nfire&r." + "" + "Its battery can store &o200k&r &bAE&r and consumes &o1600&r &bAE&r per usage, it can be to be recharged in a &6Charger&r." + ] + id: "08CEA640627435D4" + min_width: 300 + rewards: [ + { + id: "06238FA5D04D10AE" + type: "xp" + xp: 100 + } + { + id: "7E9168EB4A6D3DCB" + item: "ae2:calculation_processor" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "34AA7B4C5B9B078F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "001235611000677E" + item: "ae2:entropy_manipulator" + type: "item" + }] + x: -7.5d + y: -5.5d + } + { + dependencies: ["1A7D9B32BD59417B"] + description: [ + "The &dME Storage Monitor&r is a simple way to see the current level of a specified item." + "" + "There are several interactions to modify it:" + "" + "&bRight-click&r with &aItem&r will &ndisplay&r the current stored amount of that item if not locked" + "" + "&bRight-click&r with &7Empty Hand&r will reset the display if &nnot&r locked" + "" + "&bShift+Right-click&r with &7Empty Hand&r will toggle the &nlock&r" + "" + "&bRight-click&r with &eWrench&r will &nrotate&r the monitor if it is locked and on the ground or ceiling." + ] + id: "7E38ACDAC8ACD079" + min_width: 300 + rewards: [ + { + id: "0CEC07E52A553C49" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1E1D3B402DC1AE39" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4C470FDB0A1C7AAF" + item: "ae2:storage_monitor" + type: "item" + }] + x: 2.0d + y: -3.5d + } + { + dependencies: ["4CE350628327599A"] + description: [ + "Mostly &bdecorative&r powered &elight&r source that can be attached to &9Fluix ME Glass Cable&r or other non dense cables." + "" + "Also used as crafting &ningredient&r." + "" + ] + id: "1A7D9B32BD59417B" + min_width: 300 + rewards: [ + { + id: "340D9D549D8B4DFE" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "36ECEFD11B3C8500" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "08896ED51A576369" + item: "ae2:semi_dark_monitor" + type: "item" + }] + x: 2.0d + y: -4.5d + } + { + dependencies: ["7E38ACDAC8ACD079"] + description: [ + "The &eME Conversion Monitor&r is the upgraded version of the &2ME Storage Monitor&r." + "" + "It adds the ability to &ndirectly&r withdraw from or store &aItems&r into the &dME Network&r." + "" + "In addition to the &2Storage Monitor's&r interactions, conversion monitors support the following actions:" + "" + "&bLeft-click&r &nExtracts&r a stack of the shown item into &nyour inventory&r" + "" + "&bRight-click&r with &eItem&r &nInserts&r the held item into &nthe network&r" + "" + "&bRight-click&r with &7Empty Hand&r will &ninsert&r all of the shown item from &nyour inventory&r into &nthe network&r." + ] + id: "1EBA6436DEBB02CC" + min_width: 300 + rewards: [ + { + id: "657E6847236FB8EB" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "029835CD83C9A2EC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "343B693157F541A1" + item: "ae2:conversion_monitor" + type: "item" + }] + x: 1.0d + y: -3.0d + } + { + dependencies: ["6B8E544E188FBA4D"] + description: [ + "&6Quantum Network Bridges&r can connect &ntwo&r networks over infinite distances and even between &ndimensions&r." + "" + "They can carry &o32&r &eChannels&r in total (regardless of how cables are connected to each face)." + "" + "Eight of &9Quantum Ring&r blocks placed around a &dME Quantum Link Chamber&r will create a &6Quantum Network Bridge&r." + "" + "Only the &o4&r &9ME Quantum Ring&r blocks adjacent to the &dME Quantum Link Chamber&r will accept network connections, the &o4&r &ncorner&r blocks cannot connect to cables." + "" + "&dQuantum Link Chamber&r surrounded by a &9ME Quantum Ring&r will create a &6Quantum Network Bridge&r. This block &ndoesn't&r connect to any cables and only registers as part of the network with the full bridge is made." + "" + "This blocks inventory can only hold a single &1Quantum Entangled Singularity&r and is automation accessible." + "{image:kubejs:textures/item/qnb.png width:150 height:150 align:1}" + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "3B3C89649DF57161" + min_width: 500 + rewards: [ + { + id: "348CF08375E05921" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "384EAC4A0BFCEA22" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [ + { + count: 16L + id: "753E7378EDC67994" + item: "ae2:quantum_ring" + type: "item" + } + { + count: 2L + id: "3F5FCC8C3623B54C" + item: "ae2:quantum_link" + type: "item" + } + ] + title: "&6The Quantum Bridge" + x: -2.4928571428571473d + y: -3.8321428571428555d + } + { + dependencies: ["3D52B8DD0A939D15"] + description: [ + "Required to create a connection between to &6Quantum Network Bridges&r, they are always produced in matching pairs, to create a connection place &o1&r of the pair of &1Quantum Entangled Singularity&r into the &dME Quantum Link Chamber&r of the bridge on each side." + "" + "They are crafted by causing a reaction between &0Ender Pearl&r or &8Ender Dust&r" + "and a &9Singularity&r. Any explosive force should be enough to trigger the reaction." + "" + "Nearly any explosion - &neven creepers&r - will work." + "" + "Always produced in pairs, but only require a single &9Singularity&r." + "" + "It might be a good idea to label these with names when you create them using the vanilla &0Anvil&r." + "" + "&nNote for Anti Griefing Servers&r" + "" + "&bAE&r also includes a block called &4Tiny TNT&r, this is a small craftable &cTNT&r which can have its block damage disabled, but can still hurt a little, and can be used as an alternative to vanilla &nTNT&r/other &nexplosions&r even when block damage is &ndisabled&r." + ] + id: "07EF8ABA0027BB91" + min_width: 500 + rewards: [ + { + id: "16CDFFCF64F9A0B2" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "556355C3B7BEB638" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1084C3DCF6ED1278" + item: "ae2:quantum_entangled_singularity" + type: "item" + }] + x: -6.5d + y: -3.5d + } + { + dependencies: ["64EE427C9850F707"] + description: [ + "&bCable Facade&r are crafted with &nany&r facadeable block in the middle of the crafting table, and &o4&r &bCable Anchor&r around it." + "" + "They can be mounted on any variant of &aCables&r, and around buses." + "" + "They can be used to create a solid surface for things like &nlevers&r or &nbuttons&r, but are purely decorative in nature." + "" + "" + ] + icon: { + Count: 1 + id: "ae2:facade" + tag: { + item: "minecraft:stone" + } + } + id: "38FE18A5F60543BD" + min_width: 400 + rewards: [ + { + id: "2E21E18741BFB5BC" + type: "xp" + xp: 10 + } + { + id: "4C36BBA13AFF1DD0" + item: "ae2:cable_anchor" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "43B1FFC433CBE293" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "498E9DC8AB1F0CAC" + type: "checkmark" + }] + title: "Cable Facade" + x: -3.0d + y: -5.5d + } + { + dependencies: ["60EC70ED9DC908A0"] + description: [ + "A &eWrench&r made of &bCertus Quartz Crystal&r or &7Nether Quartz&r." + "" + "Useful for &nrotating&r blocks, and &nremoving&r individual parts from &aCables&r." + ] + id: "0E9258C07CDD7385" + rewards: [ + { + id: "66473DA79B32DD18" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "728424DEA3738A29" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "16AD605C06CC7BDE" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "ae2:quartz_wrench" + } + } + title: "Wrench" + type: "item" + }] + x: -3.0d + y: -8.5d + } + { + dependencies: ["55749230931993F2"] + description: ["&eVibrant Quartz Glass&r is a variant of &bQuartz Glass&r that &nglows&r like glowstone."] + id: "599C3643D86A6EC4" + rewards: [ + { + id: "1341776B8A2B661D" + type: "xp" + xp: 20 + } + { + id: "58FE3E6CB980F916" + item: "ae2:quartz_vibrant_glass" + type: "item" + } + { + exclude_from_claim_all: true + id: "4C9296AB7C6F1B28" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "454C66B087C47DB2" + item: "ae2:quartz_vibrant_glass" + type: "item" + }] + x: -2.0d + y: -8.5d + } + { + dependencies: ["27DE68F1E3BF30A1"] + description: [ + "Just like a &bDaylight Sensor&r uses nether quartz to detect daylight, this nether &dQuartz Fixture&r outputs &credstone&r level on any nearby light sources." + "" + "Outputs starting at &elight&r level &o6&r at &credstone&r level &o1&r and goes up to &elight&r level &o15&r &credstone&r level &o9&r." + ] + id: "3A7BC60F5DB126CC" + rewards: [ + { + id: "1CF67E56C65F62BF" + type: "xp" + xp: 10 + } + { + id: "6589DDA28E3158E1" + item: "ae2:light_detector" + type: "item" + } + { + exclude_from_claim_all: true + id: "3AFE1A1535E94AF5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "20B8A8AF705FA5E4" + item: "ae2:light_detector" + type: "item" + }] + x: -7.5d + y: -6.5d + } + { + dependencies: ["470B1F84D01E4F7A"] + description: [ + "Decorative &elight source&r that can be mounted on any solid surface. Even the ceiling." + "" + "Unlike &6Torches&r, this block is not affected by &9Water&r." + ] + id: "27DE68F1E3BF30A1" + rewards: [ + { + id: "531F6902B5C9F762" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "20B57E7F477BA606" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "54B0030E4B4FBC18" + item: "ae2:quartz_fixture" + title: "Charged Quartz Fixture" + type: "item" + }] + x: -7.5d + y: -7.5d + } + { + dependencies: ["38E84EA139A2316C"] + description: [ + "The &dCell Workbench&r allows for cells to be \"partitioned\" to hold specific items, i.e. given a &nwhitelist filter&r." + "" + "It also allows the &ecell&r to be upgraded with certain upgrade cards such as the &eInverter Card&r, which sets the aforementioned &bwhitelist&r to be a &0blacklist&r instead." + "" + "Cells can also be given a higher or lower &npriority&r via the workbench, i.e. allow the cell to be the first to receive certain items until full, or made to wait for other higher-priority cells to fill up first." + ] + id: "2F556E7919582D2D" + rewards: [ + { + id: "4956E92D2FDA5190" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "658BE5D4D2BE0833" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "19F84B1451F7D602" + item: "ae2:cell_workbench" + type: "item" + }] + x: 11.0d + y: -1.0d + } + { + dependencies: ["6D3E94EB0E3F1D7E"] + description: [ + "The &bEqual Distribution Card&f is an upgrade for &6storage cells&r that pre-allocates a certain amount of items that can be taken up by any individual type." + "" + "This behaviour is comparable to something like a &aFunctional Storage Drawer&r, wherein each compartment holds a set number of stacks as opposed to allowing items from one compartment to leak into the others and crowd other kinds of items out." + ] + id: "23A1A27B9E623E76" + rewards: [ + { + id: "68570ABC51F4D873" + type: "xp" + xp: 100 + } + { + id: "202204EB225E4758" + item: "ae2:printed_silicon" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "1A942829839ABA1C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "524548CCC56D2097" + item: "ae2:equal_distribution_card" + type: "item" + }] + x: 4.8999999999999995d + y: -9.1d + } + { + dependencies: ["44469860120E156D"] + description: ["The &aOverflow Destruction Card&f is a &bCell Upgrade&r that allows storage cells to &ndelete&r (void) any items of a type already contained within them, when try to move into the cell and the cell is already full."] + id: "58CE1ABDA24AE51D" + rewards: [ + { + id: "6E9C11365C023B7C" + type: "xp" + xp: 50 + } + { + count: 2 + id: "2A7FC574756F8615" + item: "ae2:silicon" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "223DBC96FE5F47E0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "204B6CD3CC1B31E9" + item: "ae2:void_card" + type: "item" + }] + x: 4.9d + y: -7.0d + } + { + dependencies: ["6D3E94EB0E3F1D7E"] + description: ["The &cEnergy Card&f can be applied to most chargeable devices like &dPortable Cells&r and &9Wireless Terminals&r to also increase &otheir&r energy buffer."] + id: "047771C05CD3DF1B" + rewards: [ + { + id: "5AEED3C6E433ED0E" + type: "xp" + xp: 100 + } + { + id: "3A5F690E690BC425" + item: { + Count: 1 + id: "ae2:energy_cell" + tag: { } + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "667B7470A097F670" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "0C7233F703D7156F" + item: "ae2:energy_card" + type: "item" + }] + x: 5.25d + y: -7.699999999999999d + } + { + dependencies: [ + "3931273289B3A68C" + "4F89670D49DD2DE1" + "621F052BCE747E68" + ] + description: [ + "The &2Color Applicator&f is a chargeable tool that allows for in-world &ndyeing&r of &eCables&r. It functions more or less as a specialised &eStorage Cell&f to be loaded up with either vanilla dyes or &epaint balls&f for specific colours, along with &esnowballs&f to wash colours off and turn cables back to their &9Fluix&r variant." + "" + "Applying colour to a cable uses &o100&r &bAE&r of energy from its internal battery, for a total of &o3400&r &eCable&r segments in a &nsingle charge&r." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "03E6FA4DCB71162E" + rewards: [ + { + id: "2AD4CA497DAF5DDE" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "13F9F7AA16102CB0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "6691176371563341" + item: { + Count: 1 + id: "ae2:color_applicator" + tag: { } + } + type: "item" + }] + title: "Color Applicator" + x: 1.0071428571428598d + y: -7.796428571428571d + } + { + dependencies: ["5B2D12C588BA3C05"] + description: [ + "The &bCharged Staff&f is just a simple powered staff which deals &o3&r &cHearts&r of damage and consumes &o300&r &bAE&r per hit." + "" + "It also uses &npre-1.9 combat mechanics&r, meaning that you can &bspam-click&r with this like in the good old days." + ] + id: "361067FCD10AA975" + rewards: [ + { + id: "4594978712B3006E" + type: "xp" + xp: 100 + } + { + id: "2A08A5196FBDB210" + item: "ae2:printed_silicon" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4BDD67723A266BD6" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7B0D984866111966" + item: "ae2:charged_staff" + type: "item" + }] + x: -7.5d + y: -3.5d + } + { + dependencies: ["44F858FA4E965814"] + description: [ + "&bPortable Cells&f function identically to regular cells in that they can they be inserted into a chest or drive and filled accordingly." + "" + "However, unlike regular cells, their contents can also be accessed standalone via the cell item itself, a bit like a digital ME-flavoured backpack." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "77C9EE701F72586D" + optional: true + rewards: [ + { + id: "3280EFC4446DD684" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0EFE94934E9A236D" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "65C439FD14C5EEB9" + item: { + Count: 1 + id: "itemfilters:id_regex" + tag: { + value: ":portable_(.*)_cell_" + } + } + title: "ME Portable Cell" + type: "item" + }] + x: 6.25714285714286d + y: -5.439285714285717d + } + { + dependencies: ["270E0BC2E8565FFE"] + description: [ + "The &2ME Annihilation Plane&f can be used to automatically break &nany&r blocks in front of it and return anything dropped by the block directly to the &5ME Network&r." + "" + "As an added bonus, the &2Annihilation Plane&r can be &nenchanted&r in the same way as a regular digging tool, affecting block drops in the same way as that enchanted tool would. This makes it ideal for processing ore blocks when enchanted with &bFortune&r, for example." + "" + "Any added &denchantments&r significantly increase the amount of &cenergy&r used by the plane every time a block is broken. Enchanting the plane with &eEfficiency&f will decrease the overall &cenergy&r use incurred by all other &denchantments&r, while the &eUnbreaking&f enchantment gives the plane the chance to only use any energy sometimes, similarly to &eUnbreaking&r on regular tools." + ] + hide_until_deps_visible: true + id: "140DE53DC0FCD9F4" + min_width: 300 + rewards: [ + { + id: "5E0DFB8813B07CE5" + type: "xp" + xp: 70 + } + { + count: 2 + id: "2B257377D084BF3F" + item: "ae2:fluix_crystal" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "0BCA891F6582DEB1" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3F715007AD9C0D58" + item: "ae2:annihilation_plane" + type: "item" + }] + x: -1.0d + y: -3.5d + } + { + dependencies: ["419BBE875D40B1D6"] + description: [ + "The &9ME Formation Plane&f acts similarly to the &6Storage Bus&r, but treats the world itself as its storage medium. In other words, it will place down any block in its filter directly in front of itself." + "" + "This can be useful for situations where a block can be processed simply by placing it and breaking it with a certain tool." + ] + hide_until_deps_visible: true + id: "525F25F4ADE45B50" + rewards: [ + { + id: "0D0F17FE85D50FF9" + type: "xp" + xp: 70 + } + { + count: 2 + id: "55FC65299680ADC2" + item: "ae2:fluix_crystal" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "6F7CB54BA4340C90" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0BEBC087F970093E" + item: "ae2:formation_plane" + type: "item" + }] + x: 0.0d + y: -3.0d + } + { + dependencies: ["38E84EA139A2316C"] + hide_until_deps_visible: true + id: "2625CA9F45159E82" + rewards: [ + { + id: "59D88450E992E643" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "7968EAD9CD2199C4" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "25F9AFD8F18CD154" + item: "expatternprovider:ex_drive" + type: "item" + }] + x: 10.0d + y: 0.0d + } + { + dependencies: ["7EE37ABD9F8B873D"] + hide_until_deps_visible: true + id: "1CE237DD3D25B801" + rewards: [ + { + id: "2A84AABC3DBE9AF2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3BD5B1CB4ECAAED9" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1F0140F45C410A97" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "expatternprovider:ex_pattern_provider" + } + { + Count: 1b + id: "expatternprovider:ex_pattern_provider_part" + } + ] + } + } + type: "item" + }] + title: "ME Extended Pattern Provider" + x: 2.0d + y: 0.5d + } + { + dependencies: ["7700E08416618198"] + hide_until_deps_visible: true + id: "30C462A74EAF4E7A" + rewards: [ + { + id: "602C4A17EA16F70E" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "3215E029AA959E49" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "04AB44C1294E93BA" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "expatternprovider:ex_interface" + } + { + Count: 1b + id: "expatternprovider:ex_interface_part" + } + ] + } + } + type: "item" + }] + title: "ME Extended Interface" + x: 0.5d + y: -1.0d + } + ] + title: "&3&oApplied Energistics" +} diff --git a/minecraft/config/ftbquests/quests/chapters/aquaculture.snbt b/minecraft/config/ftbquests/quests/chapters/aquaculture.snbt new file mode 100644 index 0000000..5e3def4 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/aquaculture.snbt @@ -0,0 +1,2184 @@ +{ + autofocus_id: "0000000000000A19" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "aquaculture" + group: "3BE0D6FED0FFD32E" + icon: { + Count: 1 + id: "aquaculture:neptunium_fishing_rod" + tag: { + Damage: 0 + } + } + id: "00000000000009CF" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -6.285714285714285d + y: -6.410714285714288d + } + { + click: "https://www.youtube.com/watch?v=FGDPc1QN8ZQ" + height: 1.0d + hover: ["Need a Tutorial?"] + image: "botania:item/goldfish" + rotation: 0.0d + width: 1.0d + x: 1.0d + y: 1.5d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009D3" + rewards: [{ + exclude_from_claim_all: true + id: "336337185B83B535" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arctic Ocean" + tasks: [{ + id: "00000000000009D4" + item: "aquaculture:atlantic_cod" + type: "item" + }] + x: 7.0d + y: -5.6d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009D5" + rewards: [{ + exclude_from_claim_all: true + id: "2065BE8B76E9A526" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arctic Ocean" + tasks: [{ + id: "00000000000009D6" + item: "aquaculture:blackfish" + type: "item" + }] + x: 8.4d + y: -4.8999999999999995d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009D7" + rewards: [{ + exclude_from_claim_all: true + id: "1679C913C19FE5C4" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arctic Ocean" + tasks: [{ + id: "00000000000009D8" + item: "aquaculture:pacific_halibut" + type: "item" + }] + x: 7.7d + y: -5.6d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009D9" + rewards: [{ + exclude_from_claim_all: true + id: "4351C57B49576A5E" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arctic Ocean" + tasks: [{ + id: "00000000000009DA" + item: "aquaculture:atlantic_halibut" + type: "item" + }] + x: 8.4d + y: -5.6d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009DB" + rewards: [{ + exclude_from_claim_all: true + id: "050729065616ECD1" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arctic Ocean" + tasks: [{ + id: "00000000000009DC" + item: "aquaculture:atlantic_herring" + type: "item" + }] + x: 7.0d + y: -4.8999999999999995d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009DD" + rewards: [{ + exclude_from_claim_all: true + id: "5D3FB60045019777" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arctic Ocean" + tasks: [{ + id: "00000000000009DE" + item: "aquaculture:pink_salmon" + type: "item" + }] + x: 7.7d + y: -4.8999999999999995d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009DF" + rewards: [{ + exclude_from_claim_all: true + id: "483D85C4143F9DC2" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arctic Ocean" + tasks: [{ + id: "00000000000009E0" + item: "aquaculture:pollock" + type: "item" + }] + x: 7.35d + y: -4.2d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009E1" + rewards: [{ + exclude_from_claim_all: true + id: "4E82FEB331B5E17A" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arctic Ocean" + tasks: [{ + id: "00000000000009E2" + item: "aquaculture:rainbow_trout" + type: "item" + }] + x: 8.049999999999999d + y: -4.2d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009E3" + rewards: [{ + exclude_from_claim_all: true + id: "786BD4BE9D4FD842" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arid" + tasks: [{ + id: "00000000000009E4" + item: "aquaculture:bayad" + type: "item" + }] + x: 7.0d + y: -2.8d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009E5" + rewards: [{ + exclude_from_claim_all: true + id: "4FBC63F5ABC4C898" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arid" + tasks: [{ + id: "00000000000009E6" + item: "aquaculture:capitaine" + type: "item" + }] + x: 8.4d + y: -2.8d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009E7" + rewards: [{ + exclude_from_claim_all: true + id: "477D55E62E36301A" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arid" + tasks: [{ + id: "00000000000009E8" + item: "aquaculture:synodontis" + type: "item" + }] + x: 7.7d + y: -2.4499999999999997d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009E9" + rewards: [{ + exclude_from_claim_all: true + id: "3562AC99DB1069C6" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Freshwater" + tasks: [{ + id: "00000000000009EA" + item: "aquaculture:smallmouth_bass" + type: "item" + }] + x: 4.8999999999999995d + y: -5.6d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009EB" + rewards: [{ + exclude_from_claim_all: true + id: "2BEE71642C908EB4" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Freshwater" + tasks: [{ + id: "00000000000009EC" + item: "aquaculture:bluegill" + type: "item" + }] + x: 5.6d + y: -5.6d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009ED" + rewards: [{ + exclude_from_claim_all: true + id: "04225CC65763268C" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Freshwater" + tasks: [{ + id: "00000000000009EE" + item: "aquaculture:brown_trout" + type: "item" + }] + x: 4.2d + y: -4.2d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009EF" + rewards: [{ + exclude_from_claim_all: true + id: "6D4870835783E453" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Freshwater" + tasks: [{ + id: "00000000000009F0" + item: "aquaculture:carp" + type: "item" + }] + x: 4.8999999999999995d + y: -4.2d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009F1" + rewards: [{ + exclude_from_claim_all: true + id: "13D1A66863A01EF0" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Freshwater" + tasks: [{ + id: "00000000000009F2" + item: "aquaculture:catfish" + type: "item" + }] + x: 4.2d + y: -4.8999999999999995d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009F3" + rewards: [{ + exclude_from_claim_all: true + id: "442FFF973140977F" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Freshwater" + tasks: [{ + id: "00000000000009F4" + item: "aquaculture:gar" + type: "item" + }] + x: 4.8999999999999995d + y: -4.8999999999999995d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009F5" + rewards: [{ + exclude_from_claim_all: true + id: "75581988E9B24463" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Freshwater" + tasks: [{ + id: "00000000000009F6" + item: { + Count: 1 + id: "aquaculture:minnow" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.6d + y: -4.8999999999999995d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009F7" + rewards: [{ + exclude_from_claim_all: true + id: "2A208007DD1A9C09" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Freshwater" + tasks: [{ + id: "00000000000009F8" + item: "aquaculture:muskellunge" + type: "item" + }] + x: 5.6d + y: -4.2d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009F9" + rewards: [{ + exclude_from_claim_all: true + id: "29B4E0DE366EE9E9" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Freshwater" + tasks: [{ + id: "00000000000009FA" + item: "aquaculture:perch" + type: "item" + }] + x: 4.2d + y: -5.6d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009FB" + rewards: [{ + exclude_from_claim_all: true + id: "5C80B90353BD314C" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Jungle" + tasks: [{ + id: "00000000000009FC" + item: "aquaculture:arapaima" + type: "item" + }] + x: 9.799999999999999d + y: -2.8d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009FD" + rewards: [{ + exclude_from_claim_all: true + id: "1D92D7B1ED369AD4" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Jungle" + tasks: [{ + id: "00000000000009FE" + item: "aquaculture:piranha" + type: "item" + }] + x: 10.5d + y: -3.15d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "00000000000009FF" + rewards: [{ + exclude_from_claim_all: true + id: "378D8460FEA3331D" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Jungle" + tasks: [{ + id: "0000000000000A00" + item: "aquaculture:tambaqui" + type: "item" + }] + x: 11.2d + y: -2.8d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "0000000000000A01" + rewards: [{ + exclude_from_claim_all: true + id: "4736B61838014714" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Mushroom Island" + tasks: [{ + id: "0000000000000A02" + item: "aquaculture:brown_shrooma" + type: "item" + }] + x: 4.55d + y: -3.15d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "0000000000000A03" + rewards: [{ + exclude_from_claim_all: true + id: "323ECD417B00386C" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Mushroom Island" + tasks: [{ + id: "0000000000000A04" + item: "aquaculture:red_shrooma" + type: "item" + }] + x: 5.25d + y: -3.15d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "0000000000000A05" + rewards: [{ + exclude_from_claim_all: true + id: "6F619832E3C9897A" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Saltwater" + tasks: [{ + id: "0000000000000A06" + item: "aquaculture:jellyfish" + type: "item" + }] + x: 11.2d + y: -5.6d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "0000000000000A07" + rewards: [{ + exclude_from_claim_all: true + id: "562AFD54902089EB" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Saltwater" + tasks: [{ + id: "0000000000000A08" + item: "aquaculture:red_grouper" + type: "item" + }] + x: 10.5d + y: -5.6d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "0000000000000A0B" + rewards: [{ + exclude_from_claim_all: true + id: "02E9BC69B3C95FBB" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Saltwater" + tasks: [{ + id: "0000000000000A0C" + item: "aquaculture:tuna" + type: "item" + }] + x: 9.799999999999999d + y: -5.6d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "0000000000000A0F" + rewards: [{ + exclude_from_claim_all: true + id: "79583E0A2D69FF16" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Swamp" + tasks: [{ + id: "0000000000000A10" + item: { + Count: 1 + id: "aquaculture:leech" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 10.85d + y: -4.2d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "0000000000000A11" + rewards: [{ + exclude_from_claim_all: true + id: "512A4E0628FA6B4B" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Swamp" + tasks: [{ + id: "0000000000000A12" + item: "aquaculture:box_turtle" + type: "item" + }] + x: 10.15d + y: -4.2d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "0000000000000A17" + rewards: [{ + exclude_from_claim_all: true + id: "5F9957B1639ABA22" + table_id: 5709524483953410607L + type: "random" + }] + shape: "hexagon" + size: 1.5d + subtitle: "Anywhere" + tasks: [{ + id: "0000000000000A18" + item: "aquaculture:goldfish" + type: "item" + }] + x: 10.5d + y: 0.0d + } + { + dependencies: ["29B8B607653A5DCF"] + description: ["The only difference between the rods is different durability."] + id: "0000000000000A19" + rewards: [ + { + id: "2E39B8E69F71F6B9" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:iron_ingot" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "4C7E2CACC62AAE37" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A1A" + item: { + Count: 1 + id: "aquaculture:iron_fishing_rod" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.0d + y: -2.5d + } + { + dependencies: ["0000000000000A19"] + description: ["The only difference between the rods is different durability."] + id: "0000000000000A1B" + rewards: [ + { + id: "5D7CD6D7597DD075" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:gold_ingot" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "27DCF08F2E65DE65" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A1C" + item: { + Count: 1 + id: "aquaculture:gold_fishing_rod" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.0d + y: -1.5d + } + { + dependencies: ["0000000000000A1B"] + description: ["The only difference between the rods is different durability."] + id: "0000000000000A1D" + rewards: [ + { + id: "4FA0F95ED2C2013E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:diamond" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "2A92088966C45398" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A1E" + item: { + Count: 1 + id: "aquaculture:diamond_fishing_rod" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.0d + y: -0.5d + } + { + dependencies: ["0000000000000A1D"] + description: ["The only difference between the rods is different durability."] + id: "0000000000000A1F" + rewards: [ + { + id: "3ECB25A203EEA3A5" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:neptunium_ingot" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "6E5A2EE5E908EF09" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A20" + item: { + Count: 1 + id: "aquaculture:neptunium_fishing_rod" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.0d + y: 0.5d + } + { + dependencies: ["7CB54778353322B0"] + id: "0000000000000A21" + rewards: [{ + exclude_from_claim_all: true + id: "2BBC53AB1DD8646A" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Has a chance to not use durability." + tasks: [{ + id: "0000000000000A22" + item: "aquaculture:iron_hook" + type: "item" + }] + x: -1.5d + y: -2.0d + } + { + dependencies: ["0000000000000A21"] + id: "0000000000000A23" + rewards: [{ + exclude_from_claim_all: true + id: "164694FD48C072A0" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Increased Luck." + tasks: [{ + id: "0000000000000A24" + item: "aquaculture:gold_hook" + type: "item" + }] + x: -3.5d + y: -1.5d + } + { + dependencies: ["0000000000000A21"] + id: "0000000000000A25" + rewards: [{ + exclude_from_claim_all: true + id: "61D1196A6ECCD2B4" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Has a chance to not use durability." + tasks: [{ + id: "0000000000000A26" + item: "aquaculture:diamond_hook" + type: "item" + }] + x: -3.0d + y: -0.5d + } + { + dependencies: ["0000000000000A21"] + id: "0000000000000A27" + rewards: [{ + exclude_from_claim_all: true + id: "697EB388B84CAE6E" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Casts further." + tasks: [{ + id: "0000000000000A28" + item: "aquaculture:light_hook" + type: "item" + }] + x: -2.5d + y: 0.5d + } + { + dependencies: ["0000000000000A21"] + id: "0000000000000A29" + rewards: [{ + exclude_from_claim_all: true + id: "1B8325671DE1F5B2" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Casts shorter." + tasks: [{ + id: "0000000000000A2A" + item: "aquaculture:heavy_hook" + type: "item" + }] + x: -0.5d + y: 0.0d + } + { + dependencies: ["0000000000000A21"] + id: "0000000000000A2B" + rewards: [{ + exclude_from_claim_all: true + id: "0005FC5FC9E76AE7" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "A chance to catch two things." + tasks: [{ + id: "0000000000000A2C" + item: "aquaculture:double_hook" + type: "item" + }] + x: 0.5d + y: -0.5d + } + { + dependencies: ["0000000000000A21"] + id: "0000000000000A2D" + rewards: [{ + exclude_from_claim_all: true + id: "021382B51648FB14" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Longer opportunity to reel in a fish." + tasks: [{ + id: "0000000000000A2E" + item: "aquaculture:redstone_hook" + type: "item" + }] + x: 0.5d + y: -1.5d + } + { + dependencies: ["0000000000000A25"] + id: "0000000000000A2F" + rewards: [{ + exclude_from_claim_all: true + id: "13AE3670CF7AFF90" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Chance to not use durability and increased luck." + tasks: [{ + id: "0000000000000A30" + item: "aquaculture:nether_star_hook" + type: "item" + }] + x: -3.5d + y: 0.5d + } + { + dependencies: ["200D9343E9BCE109"] + description: ["The Tackle Box. In it, you can store all of the hooks, bait \\& bobbers, fishing lines. Oh and also bait."] + id: "0000000000000A83" + rewards: [{ + exclude_from_claim_all: true + id: "756D0715C438EC26" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0000000000000A84" + item: "aquaculture:tackle_box" + type: "item" + }] + x: -5.5d + y: -1.5d + } + { + dependencies: ["0000000000000A83"] + description: ["A dyeable fishing line that can be dyed like leather armor."] + id: "0000000000000A85" + rewards: [{ + exclude_from_claim_all: true + id: "67E4F2A312775257" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7E3389280DA74866" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:fishing_line" + } + type: "item" + }] + x: -5.5d + y: -0.5d + } + { + dependencies: ["0000000000000A85"] + description: ["A dyeable bobber that can be dyed like leather armor."] + id: "0000000000000A87" + rewards: [{ + exclude_from_claim_all: true + id: "4FB0577FFFC54609" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0000000000000A88" + item: "aquaculture:bobber" + type: "item" + }] + x: -5.5d + y: 0.5d + } + { + dependencies: ["29B8B607653A5DCF"] + description: ["You can make fish fillet with a fish filet knife. The amount of fish fillets you get depends on the type of fish."] + id: "0000000000000A8C" + rewards: [ + { + id: "5343D46C08B25CCD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:oak_planks" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "5E1679F9912B7982" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A8D" + item: { + Count: 1 + id: "aquaculture:wooden_fillet_knife" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.5d + y: -5.5d + } + { + dependencies: ["0000000000000A8C"] + description: ["You can make fish fillet with a fish filet knife. The amount of fish fillets you get depends on the type of fish."] + id: "0000000000000A8E" + rewards: [ + { + id: "0CD4E6B31BCC1E19" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:cobblestone" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "062F456437A3D833" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A8F" + item: { + Count: 1 + id: "aquaculture:stone_fillet_knife" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.5d + y: -5.5d + } + { + dependencies: ["0000000000000A8E"] + description: ["You can make fish fillet with a fish filet knife. The amount of fish fillets you get depends on the type of fish."] + id: "0000000000000A90" + rewards: [ + { + id: "2D0CE5FF52276397" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:iron_ingot" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7C2B0ECBDE623813" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A91" + item: { + Count: 1 + id: "aquaculture:iron_fillet_knife" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.5d + y: -5.5d + } + { + dependencies: ["0000000000000A90"] + description: ["You can make fish fillet with a fish filet knife. The amount of fish fillets you get depends on the type of fish."] + id: "0000000000000A92" + rewards: [ + { + id: "35BD8984CA8A47AB" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:gold_ingot" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "192DC483D2091B1E" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A93" + item: { + Count: 1 + id: "aquaculture:gold_fillet_knife" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.5d + y: -5.5d + } + { + dependencies: ["0000000000000A92"] + description: ["You can make fish fillet with a fish filet knife. The amount of fish fillets you get depends on the type of fish."] + id: "0000000000000A94" + rewards: [ + { + id: "43B2EBAC19C7E9E4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:diamond" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "2A3B84C2C750E36C" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A95" + item: { + Count: 1 + id: "aquaculture:diamond_fillet_knife" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.5d + y: -5.5d + } + { + dependencies: ["0000000000000A94"] + description: ["You can make fish fillet with a fish filet knife. The amount of fish fillets you get depends on the type of fish."] + id: "0000000000000A96" + rewards: [ + { + id: "2378BD20CA123BD3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:neptunium_ingot" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "5F411D67C6FC3A4D" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "0000000000000A97" + item: { + Count: 1 + id: "aquaculture:neptunium_fillet_knife" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.5d + y: -5.5d + } + { + dependencies: ["0000000000000A21"] + id: "0000000000000ADB" + rewards: [{ + exclude_from_claim_all: true + id: "403C661F4A4F1E02" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "An audible alert when a fish is approaching." + tasks: [{ + id: "0000000000000ADC" + item: "aquaculture:note_hook" + type: "item" + }] + x: -1.5d + y: 0.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["The wearer sees better underwater."] + hide_dependency_lines: true + id: "0000000000000ADD" + rewards: [{ + exclude_from_claim_all: true + id: "45DBE35B746B328B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0000000000000ADE" + item: { + Count: 1 + id: "aquaculture:neptunium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.0d + y: -0.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["The wearer breathes underwater."] + hide_dependency_lines: true + id: "0000000000000ADF" + rewards: [{ + exclude_from_claim_all: true + id: "3BB25BC41C65E146" + table_id: 5709524483953410607L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "0000000000000AE0" + item: { + Count: 1 + id: "aquaculture:neptunium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.0d + y: 0.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["The wearer \"falls\" underwater."] + hide_dependency_lines: true + hide_text_until_complete: false + id: "0000000000000AE1" + rewards: [{ + exclude_from_claim_all: true + id: "6460D1E93C184293" + table_id: 5709524483953410607L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "0000000000000AE2" + item: { + Count: 1 + id: "aquaculture:neptunium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.0d + y: 1.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["The wearer \"falls\" underwater."] + hide_dependency_lines: true + id: "0000000000000AE3" + rewards: [{ + exclude_from_claim_all: true + id: "693AE2D4F1830906" + table_id: 5709524483953410607L + type: "random" + }] + shape: "square" + tasks: [{ + id: "0000000000000AE4" + item: { + Count: 1 + id: "aquaculture:neptunium_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.0d + y: 2.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["Deal extra damage underwater."] + hide_dependency_lines: true + id: "0000000000000AE5" + rewards: [{ + exclude_from_claim_all: true + id: "5E0C35A3CDE20FD9" + table_id: 5709524483953410607L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "0000000000000AE6" + item: { + Count: 1 + id: "aquaculture:neptunium_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.0d + y: 0.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["Doesn't have a mining speed penalty when underwater."] + hide_dependency_lines: true + id: "0000000000000AE7" + rewards: [{ + exclude_from_claim_all: true + id: "74A240482B9FDE81" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0000000000000AE8" + item: { + Count: 1 + id: "aquaculture:neptunium_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.5d + y: 3.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["Doesn't have a mining speed penalty when underwater."] + hide_dependency_lines: true + id: "0000000000000AE9" + rewards: [{ + exclude_from_claim_all: true + id: "2D9BCBE0967EF694" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0000000000000AEA" + item: { + Count: 1 + id: "aquaculture:neptunium_shovel" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.5d + y: 3.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["Deal extra damage underwater."] + hide_dependency_lines: true + id: "0000000000000AEB" + rewards: [{ + exclude_from_claim_all: true + id: "29CD55F6F0DCDB9D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0000000000000AEC" + item: { + Count: 1 + id: "aquaculture:neptunium_axe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.5d + y: 3.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["Land tilled with this hoe will always be hydrated"] + hide_dependency_lines: true + id: "0000000000000AED" + rewards: [{ + exclude_from_claim_all: true + id: "049D985F392841BC" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0000000000000AEE" + item: { + Count: 1 + id: "aquaculture:neptunium_hoe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.5d + y: 3.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["Normal arrows fired from this bow are not impeded underwater."] + hide_dependency_lines: true + id: "0000000000000AEF" + rewards: [{ + exclude_from_claim_all: true + id: "1818619DF653B775" + table_id: 5709524483953410607L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "0000000000000AF0" + item: { + Count: 1 + id: "aquaculture:neptunium_bow" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.0d + y: 0.5d + } + { + dependencies: ["75A7F6E7A82C6FD6"] + description: [ + "&9Aquaculture&r adds new fishing rods to the game." + "" + "You can still use the vanilla wooden fishing rod and modded fishing rods to catch Aquaculture fish." + "" + "But only the Aquaculture fishing rods are able to get equipment attached, that adds various mechanics that improve your fishing capabilities." + ] + icon: "aquaculture:fish_bones" + id: "29B8B607653A5DCF" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "7E13D3EF33F047BB" + table_id: 5709524483953410607L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oMarket&r quest*" + tasks: [{ + id: "65751E28D91F1BD7" + type: "checkmark" + }] + title: "Welcome to &9Aquaculture" + x: -7.0d + y: -5.5d + } + { + dependencies: ["29B8B607653A5DCF"] + description: [ + "A worm farm is a block you can craft to obtain worms that can be used as bait for fishing." + "" + "You can use any of the same items that can be used in the composter." + "" + "Just right click on the worm farm with an empty hand or a non-compostable item to get the worms out." + ] + id: "200D9343E9BCE109" + rewards: [{ + exclude_from_claim_all: true + id: "0F35CDE998ADCB4F" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "747D8E53DBE64D1C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:worm_farm" + } + type: "item" + }] + x: -5.5d + y: -2.5d + } + { + dependencies: ["200D9343E9BCE109"] + description: ["You can obtain &eLeeches&r and &eMinnows&r by fishing, and &eWorms&r in a &eWorm Farm&r."] + id: "7CB54778353322B0" + rewards: [ + { + id: "6A1395164CB4AEEE" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:worm" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "470235A9D5AB71A0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:minnow" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2B77B6033B9CE866" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:leech" + tag: { + Damage: 0 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "22A6036B2DA2A8A8" + table_id: 5709524483953410607L + type: "random" + } + ] + subtitle: "You can use use bait to increase your chances of catching a fish" + tasks: [ + { + id: "3DEDFD93B6B3E7F0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:worm" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5C2755FCCF2A8A33" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:minnow" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6FB0E54A8FE31E73" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:leech" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Baits" + x: -4.0d + y: -3.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["1 Driftwood = 4 Planks"] + hide_dependency_lines: true + id: "2A85265CE54A03DD" + rewards: [{ + exclude_from_claim_all: true + id: "663ED8C74BC8BA03" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4BFF36980CDD8C80" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:driftwood" + } + type: "item" + }] + x: -0.5d + y: 3.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["1 Tin Can = 7 Iron Nuggets"] + hide_dependency_lines: true + id: "6FF0C371CE762C6A" + rewards: [{ + exclude_from_claim_all: true + id: "1D7E725FB3D8EB0B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1F6CFCD4AF1B10C0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:tin_can" + } + type: "item" + }] + x: -2.5d + y: 3.5d + } + { + dependencies: ["49C85FBF01906661"] + description: ["Just a Souvenir"] + hide_dependency_lines: true + id: "55A0F4A599D3C5EF" + rewards: [{ + exclude_from_claim_all: true + id: "6A35DC5CFC9639B7" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "78A6EC9157814F0E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:message_in_a_bottle" + } + type: "item" + }] + x: -1.5d + y: 3.5d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "22EF8C7D7A1FC05A" + rewards: [{ + exclude_from_claim_all: true + id: "73BF0FD4F65425E8" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + subtitle: "Arid" + tasks: [{ + id: "0665CB61F12EDE4B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:boulti" + } + type: "item" + }] + x: 7.7d + y: -3.15d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "2B0E9DE7DED23FA7" + rewards: [{ + exclude_from_claim_all: true + id: "6524806EB9ED061E" + table_id: 5709524483953410607L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3E9486769B6DB14F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:arrau_turtle" + } + type: "item" + }] + x: 10.5d + y: -2.4499999999999997d + } + { + dependencies: ["0000000000000A19"] + hide_dependency_lines: true + id: "0CC956CC59C9230C" + rewards: [{ + exclude_from_claim_all: true + id: "68E7CDA125045A5D" + table_id: 5709524483953410607L + type: "random" + }] + shape: "hexagon" + size: 1.5d + subtitle: "Twilight Forest" + tasks: [{ + id: "737AFACAC1A30A2B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:starshell_turtle" + } + type: "item" + }] + x: 7.714285714285715d + y: -0.0535714285714306d + } + { + dependencies: ["67B5D04DDD4C617C"] + hide_dependency_lines: true + id: "7B845F14F8BF24D9" + rewards: [ + { + id: "3BD6CED7343B264B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:fish_fillet_cooked" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "5417D92646ADD75F" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "46850ECAEB94EBC8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:fish_fillet_cooked" + } + type: "item" + }] + x: -1.5d + y: -4.0d + } + { + dependencies: ["7B845F14F8BF24D9"] + hide_dependency_lines: true + id: "2C5C27518167A681" + rewards: [ + { + id: "688EF123FA9110C5" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:turtle_soup" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "3664DD951DFC1A6E" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "670B273AE88BE641" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:turtle_soup" + } + type: "item" + }] + x: -2.0d + y: -3.5d + } + { + dependencies: ["7B845F14F8BF24D9"] + hide_dependency_lines: true + id: "0741A2D68BFA7C4E" + rewards: [ + { + id: "44392698F9423CA7" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:sushi" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "1135C7700D24545E" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6F01667469B610B7" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:sushi" + } + type: "item" + }] + x: -1.0d + y: -3.5d + } + { + dependencies: ["0000000000000A21"] + description: [ + "&6Neptune's Bounty&r is rare treasure loot." + "" + "&dLuck of the Sea&r enchantment increases the chance of getting &6Neptune's Bounty&r." + ] + id: "49C85FBF01906661" + rewards: [ + { + id: "3AF990C16DD2BC2C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:neptunes_bounty" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1BC7C0BC40F059E3" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "4A62D4ED65C4A5E6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:neptunes_bounty" + } + type: "item" + }] + title: "&aNeptune's Bounty" + x: 1.0d + y: -3.5d + } + { + dependencies: ["49C85FBF01906661"] + description: [ + "You can make tools and armor from Neptunium. This material has various properties when underwater." + "" + "You can obtain &eNeptunium Ingots&r from &eNeptune's Bounty&r." + ] + hide_dependency_lines: true + id: "53BE9B73AB5E9736" + rewards: [{ + exclude_from_claim_all: true + id: "545D32CCD26FA211" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "439F989F9D7A07C8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:neptunium_ingot" + } + type: "item" + }] + x: -7.0d + y: 2.0d + } + { + dependencies: ["53BE9B73AB5E9736"] + id: "1B3191327BAB7083" + rewards: [{ + exclude_from_claim_all: true + id: "773E8260548A5494" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "5D0C50565E5BAFB6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:neptunium_block" + } + type: "item" + }] + x: -7.0d + y: 3.0d + } + { + dependencies: ["0000000000000A8C"] + id: "67B5D04DDD4C617C" + rewards: [{ + exclude_from_claim_all: true + id: "6A47BDE61AC0C5A2" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0A4FB75491570274" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "aquaculture:fish_fillet_raw" + } + type: "item" + }] + x: -4.0d + y: -6.5d + } + ] + title: "&3&oAquaculture" +} diff --git a/minecraft/config/ftbquests/quests/chapters/armour.snbt b/minecraft/config/ftbquests/quests/chapters/armour.snbt new file mode 100644 index 0000000..c9eff5d --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/armour.snbt @@ -0,0 +1,414 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "armour" + group: "" + icon: "allthemodium:unobtainium_chestplate" + id: "038F265784CA6CC5" + order_index: 5 + quest_links: [ ] + quests: [ + { + id: "6FEA32975F4AF7BD" + subtitle: "3" + tasks: [{ + id: "2E9977AE795149AB" + item: { + Count: 1 + id: "minecraft:leather_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -10.0d + y: -0.5d + } + { + id: "54261FC273E0A41F" + subtitle: "5" + tasks: [{ + id: "0F0A1E0C18695A0E" + item: { + Count: 1 + id: "minecraft:chainmail_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: -0.5d + } + { + id: "6B057D46EE1A48F2" + subtitle: "4+radaway" + tasks: [{ + id: "5EE51A73AA858550" + item: { + Count: 1 + id: "alexscaves:hazmat_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: -0.5d + } + { + id: "44295955BE632446" + subtitle: "4" + tasks: [{ + id: "0468FD51C7489A35" + item: { + Count: 1 + id: "alexscaves:gingerbread_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: 0.5d + } + { + id: "1255C1018575E20D" + tasks: [{ + id: "28771D9C4B82C61A" + item: { + Count: 1 + id: "alexsmobs:crocodile_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: 0.5d + } + { + id: "13A9A979B9193204" + tasks: [{ + id: "7787E135A2CBDFD6" + item: { + Count: 1 + id: "alexsmobs:rocky_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: 1.5d + } + { + id: "3DEB7F7C01C472FC" + subtitle: "6" + tasks: [{ + id: "64EAD0A3F27EA43F" + item: { + Count: 1 + id: "minecraft:iron_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.0d + y: -0.5d + } + { + id: "140AE2D0D250937D" + subtitle: "6 but cheaper" + tasks: [{ + id: "52DD44F97E0FF2ED" + item: { + Count: 1 + id: "create_sa:copper_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.0d + y: 0.5d + } + { + id: "006B303369B237F8" + subtitle: "6+more mana" + tasks: [{ + id: "0A2EA8264510AA29" + item: { + Count: 1 + id: "botania:manasteel_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.0d + y: 1.5d + } + { + id: "39A5D6126F76801A" + subtitle: "7" + tasks: [{ + id: "30BF32C6F0371C14" + item: { + Count: 1 + id: "additionaladditions:rose_gold_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.0d + y: -0.5d + } + { + id: "2B38539768A63385" + subtitle: "8" + tasks: [{ + id: "52E90D501580F7FD" + item: { + Count: 1 + id: "minecraft:diamond_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -0.5d + } + { + dependencies: ["2B38539768A63385"] + id: "549B5C1ADC9D7A3E" + subtitle: "8+knockback resistance" + tasks: [{ + id: "01682C00DEA619B8" + item: { + Count: 1 + id: "minecraft:netherite_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: 0.5d + } + { + dependencies: ["549B5C1ADC9D7A3E"] + id: "1D69665EDD0A5A8A" + subtitle: "8+fancy" + tasks: [{ + id: "28C0D9754524F255" + item: { + Count: 1 + id: "additionaladditions:gilded_netherite_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.0d + y: 0.5d + } + { + id: "5CC4EEB3BB008AD4" + subtitle: "8+more knockback resistance" + tasks: [{ + id: "420D0A2E278A9439" + item: { + Count: 1 + id: "botania:terrasteel_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: 1.5d + } + { + id: "076D0C4F4512B953" + subtitle: "can be upgraded (8)" + tasks: [{ + id: "75EBB85A755E6157" + item: { + Count: 1 + id: "hazennstuff:blazeborne_chestplate" + tag: { + Damage: 0 + "irons_spellbooks:spell_container": { + data: [ ] + maxSpells: 1 + mustEquip: 1b + spellWheel: 1b + } + } + } + type: "item" + }] + x: 0.0d + y: 2.5d + } + { + id: "44CB30D108701760" + subtitle: "9" + tasks: [{ + id: "021B8F5400BE74E4" + item: "allthemodium:allthemodium_chestplate" + type: "item" + }] + x: 2.0d + y: -0.5d + } + { + id: "40D233DF256D372C" + tasks: [ + { + id: "066A0A351A6C5CCD" + item: { + Count: 1 + id: "mysticalagriculture:tertium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "66962737E944AA17" + item: { + Count: 1 + id: "mysticalagriculture:imperium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 2.0d + y: 0.5d + } + { + id: "73066601A566597D" + subtitle: "10" + tasks: [{ + id: "5AB72361FA359196" + item: { + Count: 1 + id: "born_in_chaos_v1:dark_metal_armor_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.0d + y: -0.5d + } + { + id: "18438C1EB6F971A7" + subtitle: "11" + tasks: [{ + id: "481BD1C8632C5E96" + item: "allthemodium:vibranium_chestplate" + type: "item" + }] + x: 6.0d + y: -0.5d + } + { + id: "1BA27A29A8FB009E" + subtitle: "13" + tasks: [{ + id: "7983FF333916984A" + item: "allthemodium:unobtainium_chestplate" + type: "item" + }] + x: 9.5d + y: -0.5d + } + { + id: "0B424F5D67A617ED" + subtitle: "as much power as you can provide" + tasks: [{ + id: "3E0FA5F854B73C4D" + item: "mekanism:mekasuit_bodyarmor" + type: "item" + }] + x: 9.5d + y: 0.5d + } + { + id: "105DF799A2C6ACC2" + subtitle: "as much power as you can provide" + tasks: [{ + id: "7E91A7BC34C04810" + item: { + Count: 1 + id: "advanced_ae:quantum_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.5d + y: 1.5d + } + { + id: "613A53B6DF6B35B0" + tasks: [{ + id: "4C4B01375FCF6B4B" + item: { + Count: 1 + id: "mysticalagriculture:supremium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.0d + y: 0.5d + } + { + id: "21DE3A0E76F2E36E" + subtitle: "12" + tasks: [{ + id: "1160E8FCE499FB01" + item: { + Count: 1 + id: "mysticalagriculture:awakened_supremium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.5d + y: -0.5d + } + ] + title: "armour" +} diff --git a/minecraft/config/ftbquests/quests/chapters/ars_elemental.snbt b/minecraft/config/ftbquests/quests/chapters/ars_elemental.snbt new file mode 100644 index 0000000..5507629 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/ars_elemental.snbt @@ -0,0 +1,1954 @@ +{ + autofocus_id: "0000000000000000" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "ars_elemental" + group: "4814F40AB34427B6" + icon: "ars_elemental:mark_of_mastery" + id: "0A5B8EB9CE9F2DBD" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -1.5d + y: -0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -9.0d + y: -2.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 13.0d + y: -2.5d + } + ] + order_index: 2 + quest_links: [ ] + quests: [ + { + dependencies: ["0FF49F7DD4D172CF"] + description: [ + "&cFire&r burns. &9Water&r flows. &7Air&r stirs. &2Earth&r endures." + "" + "&6Ars Elemental&r expands Ars Nouveau with four deep schools of elemental magic. Each one offers its own armor, focus, bangles, familiars, and signature glyphs." + "" + "Your first step is the &6Mark of Mastery&r — the keystone item that every elemental recipe demands. Place a &bWilden Tribute&r in the &eEnchanting Apparatus&r, surrounded by one essence of each of the eight schools (Fire, Water, Air, Earth, Conjuration, Manipulation, Abjuration, Anima)." + ] + icon: "ars_elemental:mark_of_mastery" + id: "439B4D96183E8A09" + min_width: 300 + rewards: [ + { + id: "21CD943394E05B88" + type: "xp" + xp: 100 + } + { + id: "31C0962B45F8B0A0" + item: { + Count: 1 + id: "ars_elemental:mark_of_mastery" + tag: { } + } + type: "item" + } + { + count: 2 + id: "2995E14BF499F6F5" + item: { + Count: 1 + id: "ars_elemental:anima_essence" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "694BC88926A5D7A6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oWelcome to Ars Nouveau&r quest*" + tasks: [{ + id: "185A1AFD2519B5DC" + item: { + Count: 1 + id: "ars_elemental:mark_of_mastery" + tag: { } + } + type: "item" + }] + title: "Welcome to &6&lArs Elemental" + x: 0.0d + y: 0.0d + } + { + description: [ + "The &cLesser Focus of Fire&r empowers spells of the Fire school while penalising the other three. Craft it at the &eImbuement Chamber&r with 3 Fire Essence, 3 Gold Ingots, an Amethyst Shard, and 5,000 source." + "" + "A worthy first commitment for any aspiring pyromancer." + ] + icon: "ars_elemental:lesser_fire_focus" + id: "2DC758627623C813" + rewards: [ + { + id: "581B1FD85C2F7792" + type: "xp" + xp: 50 + } + { + count: 8 + id: "3038929988554B80" + item: { + Count: 1 + id: "minecraft:blaze_powder" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "37800C4E59B647CC" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "303BAF30D8D47C34" + item: { + Count: 1 + id: "ars_elemental:lesser_fire_focus" + tag: { } + } + type: "item" + }] + title: "&cLesser Focus of Fire" + x: -3.0d + y: 2.0d + } + { + description: ["Water magic favours the patient and the adaptive. Craft a &9Lesser Focus of Water&r at the Imbuement Chamber with 3 Water Essence, 3 Gold Ingots, an Amethyst Shard, and 5,000 source."] + icon: "ars_elemental:lesser_water_focus" + id: "61AC87A6CEBF308D" + rewards: [ + { + id: "5B0D6D5AEC1945F7" + type: "xp" + xp: 50 + } + { + count: 8 + id: "40DD33DEC48ED83B" + item: { + Count: 1 + id: "minecraft:prismarine_shard" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "15EC199AF199EA66" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2B2589D36CAB75F3" + item: { + Count: 1 + id: "ars_elemental:lesser_water_focus" + tag: { } + } + type: "item" + }] + title: "&9Lesser Focus of Water" + x: -1.0d + y: 2.0d + } + { + description: ["&2Earth&r is the path of the unshaken. A Lesser Focus of Earth marks you as a practitioner of patient, grounded magic. Craft it at the Imbuement Chamber with 3 Earth Essence, 3 Gold Ingots, an Amethyst Shard, and 5,000 source."] + icon: "ars_elemental:lesser_earth_focus" + id: "6AA9757E847E29C9" + rewards: [ + { + id: "24D2490616979D57" + type: "xp" + xp: 50 + } + { + count: 4 + id: "63B5531814513914" + item: { + Count: 1 + id: "minecraft:emerald" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "56400DE3F5F93CBD" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1118D2D70CBCCA2E" + item: { + Count: 1 + id: "ars_elemental:lesser_earth_focus" + tag: { } + } + type: "item" + }] + title: "&2Lesser Focus of Earth" + x: 1.0d + y: 2.0d + } + { + description: ["Those drawn to mobility and lightning turn to the sky. Craft a &fLesser Focus of Air&r at the Imbuement Chamber with 3 Air Essence, 3 Gold Ingots, an Amethyst Shard, and 5,000 source."] + icon: "ars_elemental:lesser_air_focus" + id: "0F9592AE6B14254A" + rewards: [ + { + id: "1E2A34FFBA14F109" + type: "xp" + xp: 50 + } + { + count: 8 + id: "5AF745F1B62FE9B5" + item: { + Count: 1 + id: "minecraft:feather" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "3775E3E323DE6A39" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0581CAA36F4FEEED" + item: { + Count: 1 + id: "ars_elemental:lesser_air_focus" + tag: { } + } + type: "item" + }] + title: "&fLesser Focus of Air" + x: 3.0d + y: 1.5d + } + { + dependencies: ["2DC758627623C813"] + description: ["Upgrade the Lesser Focus of Fire at the Enchanting Apparatus with a &6Mark of Mastery&r and 5,000 source. The &4Greater Focus of Fire&r removes off-element penalties entirely and grants &cSpell Damage II&r while the wearer is on fire or stands in lava."] + icon: "ars_elemental:fire_focus" + id: "1F53F8F1AE9C596F" + rewards: [ + { + id: "178518FE750EFDE9" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "79E8BA51C70BE1A1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3D915CC36FF44B43" + item: { + Count: 1 + id: "ars_elemental:fire_focus" + tag: { } + } + type: "item" + }] + title: "&4Greater Focus of Fire" + x: -3.0d + y: 3.5d + } + { + description: ["Upgrade the Lesser Focus of Water at the Enchanting Apparatus with a &6Mark of Mastery&r and 5,000 source. The Greater Focus grants &bDolphin's Grace&r while swimming and bonus mana regeneration in rain or when wet."] + icon: "ars_elemental:water_focus" + id: "67A737E43DED90E7" + rewards: [ + { + id: "5B3F1492FFEF49C5" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "1D6127DCE08AA276" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "75862F2ADAE0B212" + item: { + Count: 1 + id: "ars_elemental:water_focus" + tag: { } + } + type: "item" + }] + title: "&1Greater Focus of Water" + x: -1.0d + y: 3.5d + } + { + dependencies: ["6AA9757E847E29C9"] + description: ["Upgrade the Lesser Focus of Earth at the Enchanting Apparatus with a &6Mark of Mastery&r and 5,000 source. The Greater Focus grants &2Knockback Resistance&r and a damage bonus when standing on the ground."] + icon: "ars_elemental:earth_focus" + id: "20FB3DE258F407CD" + rewards: [ + { + id: "59B41B546BE60E44" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "7422E763899B8D70" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "171F3E93EA86A032" + item: { + Count: 1 + id: "ars_elemental:earth_focus" + tag: { } + } + type: "item" + }] + title: "&aGreater Focus of Earth" + x: 1.0d + y: 3.5d + } + { + dependencies: ["0F9592AE6B14254A"] + description: ["Upgrade the Lesser Focus of Air at the Enchanting Apparatus with a &6Mark of Mastery&r and 5,000 source. The Greater Focus grants improved mobility and bonuses to lightning-based spells."] + icon: "ars_elemental:air_focus" + id: "2779CD0BCCFD02B6" + rewards: [ + { + id: "6988FA3179BE4DF6" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "4BC309F2597F01A3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "263D689F4CA0C8D4" + item: { + Count: 1 + id: "ars_elemental:air_focus" + tag: { } + } + type: "item" + }] + title: "&eGreater Focus of Air" + x: 3.0d + y: 3.5d + } + { + dependencies: [ + "1F53F8F1AE9C596F" + "20FB3DE258F407CD" + ] + description: [ + "The fifth focus walks a darker road. The &5Focus of Necromancy&r doubles duration of Anima-school spells and amplifies Heal and Phantom Grasp." + "" + "Most importantly: summoned Wolves, Undead and Vexes that die while you wear this focus resurrect once as empowered revenants." + ] + icon: "ars_elemental:necrotic_focus" + id: "3A2E311A19B11BCC" + rewards: [ + { + id: "2AE5D2D87FFEAAF4" + type: "xp" + xp: 250 + } + { + count: 4 + id: "433C4BF5FF79092A" + item: { + Count: 1 + id: "ars_elemental:anima_essence" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "7184DDA4367C37B2" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "18214785F366A9D4" + item: { + Count: 1 + id: "ars_elemental:necrotic_focus" + tag: { } + } + type: "item" + }] + title: "&5Focus of &0Necromancy" + x: 0.0d + y: 5.0d + } + { + description: [ + "The Water school's crowd-control specialty. &bWatery Grave&r drags targets downward and depletes their air supply, then deals drowning damage once they run out." + "" + "With &aExtend Time&r applied, targets cannot swim upward at all. Also converts Zombies to Drowned on contact." + ] + icon: "ars_elemental:glyph_watery_grave" + id: "11B9B26D078A5F22" + rewards: [ + { + id: "70769DBC8EA8883A" + type: "xp" + xp: 100 + } + { + count: 4 + id: "5DD58DCA552323E2" + item: { + Count: 1 + id: "minecraft:prismarine_crystals" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "11205CE448B41363" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "53A6353B818AE9D4" + item: { + Count: 1 + id: "ars_elemental:glyph_watery_grave" + tag: { } + } + type: "item" + }] + title: "&9Glyph: &bWatery Grave" + x: -7.0d + y: 0.5d + } + { + description: [ + "The Earth school's signature. &6Spike&r summons a dripstone spike from the ground that damages entities on contact." + "" + "AOE makes spikes wider. Pierce makes them taller. With water-school buffs active, it creates ice spikes instead." + ] + icon: "ars_elemental:glyph_spike" + id: "5D87D86BFC30F886" + rewards: [ + { + id: "5D58EBD145D66D27" + type: "xp" + xp: 100 + } + { + count: 4 + id: "71C181A237AA91C8" + item: { + Count: 1 + id: "minecraft:pointed_dripstone" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "67E6D6235D910824" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1E502B80C12CC262" + item: { + Count: 1 + id: "ars_elemental:glyph_spike" + tag: { } + } + type: "item" + }] + title: "&2Glyph: &6Spike" + x: -6.5d + y: 2.0d + } + { + description: [ + "The Air school's finisher. &fDischarge&r detonates targets affected by Shocked or Static Charge, dealing area damage and shocking nearby enemies." + "" + "If the target wears RF-powered armor, it drains 25% of the stored energy to boost damage. Combo with Spark to build Static Charge first." + ] + icon: "ars_elemental:glyph_discharge" + id: "08230DF5892B4382" + rewards: [ + { + id: "59105604CC6F5B6B" + type: "xp" + xp: 100 + } + { + count: 8 + id: "14975015BF3F61E4" + item: { + Count: 1 + id: "minecraft:copper_ingot" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "4DB23709C3E9C3D7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "5D04F2AF9E8F8E13" + item: { + Count: 1 + id: "ars_elemental:glyph_discharge" + tag: { } + } + type: "item" + }] + title: "&eGlyph: &fDischarge" + x: -7.5d + y: -0.5d + } + { + dependencies: ["08230DF5892B4382"] + description: [ + "The most universally useful cast method in the mod. &5Homing Projectile&r seeks the nearest valid entity automatically." + "" + "By default it ignores players; add &7Sensitive&r to include them. Tier 3, 75 mana." + ] + icon: "ars_elemental:glyph_homing_projectile" + id: "29634D156CF949CB" + rewards: [ + { + id: "0C040CA270041B55" + type: "xp" + xp: 150 + } + { + count: 2 + id: "474D79DADE00CCB7" + item: { + Count: 1 + id: "minecraft:ender_pearl" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "56D6C8E786CCC925" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2931AFEDCEBA9ED3" + item: { + Count: 1 + id: "ars_elemental:glyph_homing_projectile" + tag: { } + } + type: "item" + }] + title: "&dGlyph: &5Homing Projectile" + x: -9.0d + y: 0.5d + } + { + dependencies: ["29634D156CF949CB"] + description: [ + "A cheaper alternative to the standard projectile. &6Arc Projectile&r follows a gravity-affected arc, perfect for lobbing over obstacles." + "" + "Adding &ePierce&r makes it bounce off surfaces. Tier 2, only 10 mana." + ] + icon: "ars_elemental:glyph_arc_projectile" + id: "04304F8E76CA0F3D" + rewards: [ + { + id: "424F486462759C6C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6A876DD7C3FC567F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "44442C158D65ED7D" + item: { + Count: 1 + id: "ars_elemental:glyph_arc_projectile" + tag: { } + } + type: "item" + }] + title: "&6Glyph: Arc Projectile" + x: -10.0d + y: -0.5d + } + { + dependencies: ["29634D156CF949CB"] + description: [ + "&dCharm&r attempts to dominate an enemy's mind. The target may fight for you temporarily, be tamed if tamable, or be set to breeding if in love." + "" + "Success scales with Amplify and damage dealt — stronger mobs resist harder." + ] + icon: "ars_elemental:glyph_charm" + id: "4515775D756F7267" + rewards: [ + { + id: "74695511C9365127" + type: "xp" + xp: 100 + } + { + id: "1D47CDCD7DFDBE6F" + item: { + Count: 1 + id: "minecraft:golden_apple" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1C3D64AFCB22FA2B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4008D53AB1BD40A7" + item: { + Count: 1 + id: "ars_elemental:glyph_charm" + tag: { } + } + type: "item" + }] + title: "&dGlyph: Charm" + x: -10.0d + y: 1.5d + } + { + dependencies: ["29634D156CF949CB"] + description: [ + "Filter glyphs restrict which entities your spells target. Each filter has a &apositive&r and &cnegative&r version — Aerial, Aquatic, Fiery, Insect, Undead, and Summon." + "" + "Collect one filter of each of the 6 categories to master battlefield selection." + ] + icon: "ars_elemental:glyph_undead_filter" + id: "432AA99334A66A52" + rewards: [ + { + id: "34CEA3F77A86C924" + type: "xp" + xp: 250 + } + { + count: 2 + id: "1EE92C1C3A4E2481" + item: { + Count: 1 + id: "ars_nouveau:source_gem_block" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1214EC6A9150DE35" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.2d + tasks: [ + { + id: "19A46F6905B43D56" + item: { + Count: 1 + id: "ars_elemental:glyph_aerial_filter" + tag: { } + } + type: "item" + } + { + id: "252EF95A94A02044" + item: { + Count: 1 + id: "ars_elemental:glyph_aquatic_filter" + tag: { } + } + type: "item" + } + { + id: "6E7FEE572D3B1E29" + item: { + Count: 1 + id: "ars_elemental:glyph_fiery_filter" + tag: { } + } + type: "item" + } + { + id: "67DDB0D1BD8D4CDC" + item: { + Count: 1 + id: "ars_elemental:glyph_insect_filter" + tag: { } + } + type: "item" + } + { + id: "6BD62988C197355C" + item: { + Count: 1 + id: "ars_elemental:glyph_undead_filter" + tag: { } + } + type: "item" + } + { + id: "27E3D143DE879EE9" + item: { + Count: 1 + id: "ars_elemental:glyph_summon_filter" + tag: { } + } + type: "item" + } + ] + title: "&fFilter &aGlyph Collection" + x: -11.0d + y: 0.5d + } + { + description: [ + "Elemental armor sets are crafted by upgrading Ars Nouveau's Tier 3 Sorcerer armor at the Enchanting Apparatus. Each piece demands a &6Mark of Mastery&r, a Netherite Ingot, 2 matching elemental essences, and 7,000 source." + "" + "This branch tracks the four Medium-class sets. Light and Heavy variants exist in the mod — feel free to also craft them as you progress." + ] + icon: { + Count: 1 + id: "ars_elemental:fire_robes" + tag: { + Damage: 0 + } + } + id: "0073FED3F4BB939B" + rewards: [ + { + id: "02C4724EB36A5DCD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0364FC77BAC81D37" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + size: 1.3d + tasks: [{ + id: "651FF373B367EBA3" + type: "checkmark" + }] + title: "&6&lThe Elemental &dArsenal" + x: 4.0d + y: -1.0d + } + { + description: ["The full &cPyromancer's Set&r — &6fire_hat&r, &6fire_robes&r, &6fire_leggings&r, &6fire_boots&r. Wearing the complete set amplifies Fire-school spells significantly and converts absorbed fire damage into bonus mana."] + icon: { + Count: 1 + id: "ars_elemental:fire_hat" + tag: { + Damage: 0 + } + } + id: "194EA1EC294339EC" + rewards: [ + { + id: "1FB0870D3B55732F" + type: "xp" + xp: 300 + } + { + id: "7892074C7EC118CC" + item: { + Count: 1 + id: "minecraft:netherite_ingot" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "3C9F14DAB76D7FBA" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.1d + tasks: [ + { + id: "610070007319AEC3" + item: { + Count: 1 + id: "ars_elemental:fire_hat" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "15294B716051B691" + item: { + Count: 1 + id: "ars_elemental:fire_robes" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4EBC0DE574198DBB" + item: { + Count: 1 + id: "ars_elemental:fire_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "70FC64DF9626D2B4" + item: { + Count: 1 + id: "ars_elemental:fire_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&cPyromancer's Set" + x: 3.0d + y: 0.5d + } + { + description: ["The full &9Aquamancer's Set&r — &baqua_hat&r, &baqua_robes&r, &baqua_leggings&r, &baqua_boots&r. The signature hood is called the &bAquamancer's Hat&r, the legs are &bNereid's Pants&r. Wearing the set converts absorbed water/drowning damage into bonus mana."] + icon: { + Count: 1 + id: "ars_elemental:aqua_hat" + tag: { + Damage: 0 + } + } + id: "2C2A50E1D35304CB" + rewards: [ + { + id: "0F64AEBAF976D5E1" + type: "xp" + xp: 300 + } + { + id: "5EF23B4E8B262CE3" + item: { + Count: 1 + id: "minecraft:netherite_ingot" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "4204337C355795DB" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.1d + tasks: [ + { + id: "05D4DBC192BAA9BF" + item: { + Count: 1 + id: "ars_elemental:aqua_hat" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "592A51AD5F497173" + item: { + Count: 1 + id: "ars_elemental:aqua_robes" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5C0B1B77A580359D" + item: { + Count: 1 + id: "ars_elemental:aqua_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5210596D28972FC5" + item: { + Count: 1 + id: "ars_elemental:aqua_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&9Aquamancer's Set" + x: 5.5d + y: 1.6500000000000001d + } + { + description: ["The full &2Geomancer's Set&r — &aearth_hat&r, &aearth_robes&r, &aearth_leggings&r, &aearth_boots&r. Excellent for battlemages: it balances mana bonuses with defensive perks, and its set effect resists fall and physical damage."] + icon: { + Count: 1 + id: "ars_elemental:earth_hat" + tag: { + Damage: 0 + } + } + id: "1FAAE008560E94E5" + rewards: [ + { + id: "3BB677BFA90D1A02" + type: "xp" + xp: 300 + } + { + id: "5C3EF744BE13893A" + item: { + Count: 1 + id: "minecraft:netherite_ingot" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0036608D2CEB9DE3" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.1d + tasks: [ + { + id: "242C38EAD33B6B48" + item: { + Count: 1 + id: "ars_elemental:earth_hat" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0FB6B55CC8959309" + item: { + Count: 1 + id: "ars_elemental:earth_robes" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "46FC8AADF13A88C8" + item: { + Count: 1 + id: "ars_elemental:earth_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "295F2C8B1DC7BB37" + item: { + Count: 1 + id: "ars_elemental:earth_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&2Geomancer's Set" + x: 3.0d + y: 2.5d + } + { + description: ["The full &eAethermancer's Set&r — &fair_hat&r, &fair_robes&r, &fair_leggings&r, &fair_boots&r. Air armor is the summoner's choice: the set gives bonuses to summons, reduced gravity, and excellent mana regen."] + icon: { + Count: 1 + id: "ars_elemental:air_hat" + tag: { + Damage: 0 + } + } + id: "1251CA5C5DE2BD08" + rewards: [ + { + id: "37F0D6903EB77A82" + type: "xp" + xp: 300 + } + { + id: "27365830DF58DA5B" + item: { + Count: 1 + id: "minecraft:netherite_ingot" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0823365EF91F9998" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.1d + tasks: [ + { + id: "114D6AED62317533" + item: { + Count: 1 + id: "ars_elemental:air_hat" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "787BB076A26855F8" + item: { + Count: 1 + id: "ars_elemental:air_robes" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "099E66FE24441CA5" + item: { + Count: 1 + id: "ars_elemental:air_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7E4C720DA495BF3E" + item: { + Count: 1 + id: "ars_elemental:air_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&eAethermancer's Set" + x: 5.5d + y: 2.75d + } + { + dependencies: [ + "194EA1EC294339EC" + "2C2A50E1D35304CB" + "1251CA5C5DE2BD08" + ] + description: [ + "Bangles are curio accessories that each correspond to one element. They offer passive damage boosts and unique effects — the &dAnima Bangle&r grants +2 hearts and randomly withers or heals on hit, the &eAir Bangle&r enhances lightning, and so on." + "" + "Collect all five: Fire, Water, Earth, Air, and Anima." + ] + icon: "ars_elemental:anima_bangle" + id: "6CB235245045443D" + rewards: [ + { + id: "0ABE791DC9401D6B" + type: "xp" + xp: 500 + } + { + count: 4 + id: "4E9E1B5D522F621C" + item: { + Count: 1 + id: "ars_nouveau:source_gem_block" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "7C23A6438047F57F" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.2d + tasks: [ + { + id: "39E06A52A3DED968" + item: { + Count: 1 + id: "ars_elemental:fire_bangle" + tag: { } + } + type: "item" + } + { + id: "719AC7239441E7B4" + item: { + Count: 1 + id: "ars_elemental:water_bangle" + tag: { } + } + type: "item" + } + { + id: "531A52C37E2D6456" + item: { + Count: 1 + id: "ars_elemental:earth_bangle" + tag: { } + } + type: "item" + } + { + id: "1B561E6AD64B6251" + item: { + Count: 1 + id: "ars_elemental:air_bangle" + tag: { } + } + type: "item" + } + { + id: "6FEB7CDC770584ED" + item: { + Count: 1 + id: "ars_elemental:anima_bangle" + tag: { } + } + type: "item" + } + ] + title: "&6The &dBangle Collection" + x: 4.0d + y: 3.5d + } + { + description: ["Beyond the Whirlisprigs and Drygmies, Ars Elemental introduces three new creatures that can become familiars or passive workers: the aquatic &bSiren&r, the fiery &cFlarecannon&r, and the stormy &eFlashjack&r."] + icon: "ars_elemental:siren_charm" + id: "03926893607DDEF7" + rewards: [ + { + id: "1DEAD3B2FCA3DE6F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C4853016D433277" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + size: 1.3d + tasks: [{ + id: "516C6AD6624D8725" + type: "checkmark" + }] + title: "&b&lThree New &dCompanions" + x: 0.0d + y: -3.0d + } + { + description: [ + "Sirens spawn near coral in warm ocean biomes, where they'll often jump at passing boats. Feed a wild Siren a &2Sea Pickle&r and it will drop Siren Tokens and a &bSiren Charm&r." + "" + "Right-click with coral or kelp to change the Siren's variant — Kelp, Bubble, Fire, Tube, Horn, or Brain." + ] + icon: "ars_elemental:siren_charm" + id: "783022D96482B10A" + rewards: [ + { + id: "040946A83E3026A4" + type: "xp" + xp: 200 + } + { + id: "653B16942D6C2D8A" + item: { + Count: 1 + id: "minecraft:heart_of_the_sea" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "13B696CCEB2907F0" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "09B02F9F1F814BD1" + item: { + Count: 1 + id: "ars_elemental:siren_charm" + tag: { } + } + type: "item" + }] + title: "&bThe Siren's Charm" + x: -2.0d + y: -4.0d + } + { + description: [ + "&6Firenando&r — or the &cFlarecannon&r — is a fire-golem familiar with 80 health and 20 armor. When summoned, it patrols a Dominion-Wand-assigned area and automatically attacks hostile mobs with homing fire projectiles." + "" + "Unique trait: it doesn't die when its health hits zero. It becomes inactive and regenerates over time. Feed it Magma Cream or Blaze Powder to instantly restore it." + ] + icon: "ars_elemental:firenando_charm" + id: "081F3C2655E37B35" + rewards: [ + { + id: "0A73AE0610EB8A4C" + type: "xp" + xp: 200 + } + { + count: 2 + id: "14BE6624B1ECEEAA" + item: { + Count: 1 + id: "minecraft:netherite_scrap" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "77A6B9E98899FA8D" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "09BD79CEFD315899" + item: { + Count: 1 + id: "ars_elemental:firenando_charm" + tag: { } + } + type: "item" + }] + title: "&cThe Flarecannon" + x: 0.0d + y: -4.5d + } + { + description: [ + "&6Flashpine pods&r are the strange yellow fruit of the Flashing Archwood tree. They're used to brew &eStatic Charge Potions&r, which call down a bolt of lightning on the afflicted when the effect expires." + "" + "Collect a stash for potion-brewing or for future Flashjack taming." + ] + icon: "ars_elemental:flashpine_pod" + id: "1FE263A27F36D545" + rewards: [ + { + id: "1960A8767E20E9B5" + type: "xp" + xp: 100 + } + { + count: 8 + id: "06E74DFC389F29B8" + item: { + Count: 1 + id: "ars_elemental:flashpine_pod" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "40B3947C02FA90DC" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "6CB2E28A3822EC5C" + item: { + Count: 1 + id: "ars_elemental:flashpine_pod" + tag: { } + } + type: "item" + }] + title: "&6Flashpine Harvest" + x: 4.0d + y: -4.5d + } + { + dependencies: ["783022D96482B10A"] + description: ["Own all three new familiars at once. The three charms — Siren, Flarecannon, Flashjack — form a complete companionship across water, fire, and air."] + icon: "ars_elemental:firenando_charm" + id: "63A323CB7C9D8236" + rewards: [ + { + id: "3554B62B44B70CC8" + type: "xp" + xp: 500 + } + { + count: 2 + id: "30CED3436C865EF1" + item: { + Count: 1 + id: "ars_nouveau:source_gem_block" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "6DA2ACAD5D9719BF" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.2d + tasks: [ + { + id: "3AC424842B56172A" + item: { + Count: 1 + id: "ars_elemental:siren_charm" + tag: { } + } + type: "item" + } + { + id: "0A64FF6A4F844F45" + item: { + Count: 1 + id: "ars_elemental:firenando_charm" + tag: { } + } + type: "item" + } + ] + title: "&dFamiliars of All &6Schools" + x: 0.0d + y: -6.0d + } + { + description: ["Beyond combat, Ars Elemental gives you &aupgraded spell relays&r, &bwater automation&r, and &6elemental turrets&r that discount matching-school spells by 65%."] + icon: "ars_elemental:advanced_prism" + id: "780939EDB7FA3B8C" + rewards: [ + { + id: "5686C5167A5D44C8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6CE9874C2B4ECD3C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + size: 1.3d + tasks: [{ + id: "17C08C68BB1C43FD" + type: "checkmark" + }] + title: "&a&lAutomation and Utility" + x: 9.0d + y: -1.0d + } + { + dependencies: ["780939EDB7FA3B8C"] + description: ["The &bAdvanced Spell Prism&r extends Ars Nouveau's spell relay system with Dominion-Wand-precise aiming and support for &dPrism Lenses&r that modify any projectile passing through."] + icon: "ars_elemental:advanced_prism" + id: "0D5562FDC46F915A" + rewards: [ + { + id: "3AF2023AD2F969D5" + type: "xp" + xp: 150 + } + { + id: "52C4CBCEF392C4FB" + item: { + Count: 1 + id: "ars_nouveau:spell_prism" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "4E576C9D781CB4B9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "198FDBFC19FECF29" + item: { + Count: 1 + id: "ars_elemental:advanced_prism" + tag: { } + } + type: "item" + }] + title: "&bAdvanced Spell Prism" + x: 8.0d + y: 0.0d + } + { + dependencies: ["0D5562FDC46F915A"] + description: [ + "Collect the four core &dPrism Lenses&r that modify spell projectiles passing through an Advanced Prism:" + "" + "§f•§r Acceleration (speeds up)" + "§f•§r Deceleration (slows down)" + "§f•§r Arc (converts to gravity arc)" + "§f•§r Chaining (adds chain effect, requires source)" + ] + icon: "ars_elemental:acceleration_prism_lens" + id: "0FE9A9F93077790E" + rewards: [ + { + id: "2FCFA79C9F862C22" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "222BD100E4E6F040" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.2d + tasks: [ + { + id: "147F3372CC894434" + item: { + Count: 1 + id: "ars_elemental:acceleration_prism_lens" + tag: { } + } + type: "item" + } + { + id: "3285D2B812ABA47D" + item: { + Count: 1 + id: "ars_elemental:deceleration_prism_lens" + tag: { } + } + type: "item" + } + { + id: "6C7B28745A163673" + item: { + Count: 1 + id: "ars_elemental:arc_prism_lens" + tag: { } + } + type: "item" + } + ] + title: "&dPrism Lens &fCollection" + x: 10.0d + y: 0.0d + } + { + dependencies: ["780939EDB7FA3B8C"] + description: [ + "The &9Urn of Endless Waters&r converts source into water. Link it to a cauldron or Botania Apothecary using a Dominion Wand and it will refill them automatically for a small source cost each cycle." + "" + "Crafted from 2 Prismarine Shards, a Source Gem, a Flower Pot, and 2 Water Essence in the Enchanting Apparatus." + ] + icon: "ars_elemental:everfull_urn" + id: "5A8D5FC9D90D871E" + rewards: [ + { + id: "0B311D6A69D41017" + type: "xp" + xp: 150 + } + { + id: "7418DFB0726C46D2" + item: { + Count: 1 + id: "minecraft:water_bucket" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "48D7FDE456E553B2" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "593D68CFA40F95F2" + item: { + Count: 1 + id: "ars_elemental:everfull_urn" + tag: { } + } + type: "item" + }] + title: "&9Urn of Endless Waters" + x: 8.0d + y: -2.5d + } + { + dependencies: ["780939EDB7FA3B8C"] + description: [ + "Ars Elemental introduces upstream blocks that create vertical movement currents for entities and items. Stack &bBubble Current Elevators&r to raise yourself (and drops) any number of blocks." + "" + "Sneak to descend through the column." + ] + icon: "ars_elemental:water_upstream" + id: "4325606A66B11299" + rewards: [ + { + id: "11B744ADC2F12890" + type: "xp" + xp: 100 + } + { + count: 4 + id: "61D85D33B72C5F45" + item: { + Count: 1 + id: "minecraft:soul_sand" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "59B9540602B2BC13" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "5B37BA96363B1993" + item: { + Count: 1 + id: "ars_elemental:water_upstream" + tag: { } + } + type: "item" + }] + title: "&bBubble Current Elevator" + x: 10.0d + y: -2.5d + } + { + dependencies: [ + "780939EDB7FA3B8C" + "1F53F8F1AE9C596F" + ] + description: ["Craft the standard Spell Turret at the Imbuement Chamber with 3 Fire Essence and a Focus of Fire, plus 5,000 source, to create a &cFire Infused Turret&r. Fire spells cast from it receive a 65% mana discount, and Ignite effects trigger Hellfire Burn."] + icon: "ars_elemental:fire_turret" + id: "39A86C7AE0BE133D" + rewards: [ + { + id: "39D47E2AA04DEE89" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "4393982E4CC9FCE9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "5BEC1E3298A66D7C" + item: { + Count: 1 + id: "ars_elemental:fire_turret" + tag: { } + } + type: "item" + }] + title: "&cFire Infused Turret" + x: 12.0d + y: -1.5d + } + { + dependencies: ["780939EDB7FA3B8C"] + description: ["&9Water Infused Turrets&r apply a 65% mana discount to Water-school spells and trigger Focus of Water's combo effects on hit — including automatic Watery Grave application at low health thresholds."] + icon: "ars_elemental:water_turret" + id: "51C92FFAF31E54D3" + rewards: [ + { + id: "6B8BC4EE636EB744" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "25A7B3049EEDF4B1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2C32BE54867E4A9C" + item: { + Count: 1 + id: "ars_elemental:water_turret" + tag: { } + } + type: "item" + }] + title: "&9Water Infused Turret" + x: 12.0d + y: -0.5d + } + { + dependencies: [ + "780939EDB7FA3B8C" + "20FB3DE258F407CD" + ] + description: ["&2Earth Infused Turrets&r apply a 65% mana discount to Earth-school spells and gain Focus of Earth's hit effects, particularly strong when combined with the Spike glyph."] + icon: "ars_elemental:earth_turret" + id: "44C4C933CA184824" + rewards: [ + { + id: "5F77970FCE700845" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "3B2422F18D34DE12" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "392453D42C2AF09C" + item: { + Count: 1 + id: "ars_elemental:earth_turret" + tag: { } + } + type: "item" + }] + title: "&2Earth Infused Turret" + x: 12.0d + y: 0.5d + } + { + dependencies: ["780939EDB7FA3B8C"] + description: ["&eAir Infused Turrets&r apply a 65% mana discount to Air-school spells, with combo bonuses on Spark and Discharge. A line of these turrets is one of the most efficient automated defence systems in Ars Nouveau."] + icon: "ars_elemental:air_turret" + id: "2907279BF82A3C32" + rewards: [ + { + id: "15A596DD267A7FDB" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "56FBD98ED5C38893" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "318483BBC488C6B8" + item: { + Count: 1 + id: "ars_elemental:air_turret" + tag: { } + } + type: "item" + }] + title: "&eAir Infused Turret" + x: 12.0d + y: 1.5d + } + { + description: [ + "Caster Tomes are pre-filled spell books themed to a single school. Each of the six (Fire, Water, Earth, Air, Manipulation, Anima) contains a curated selection of their school's glyphs at full rank." + "" + "Collect one of each for your library." + ] + icon: "ars_elemental:fire_caster_tome" + id: "35BF56A12AC95B84" + rewards: [ + { + id: "0310C16AF2396B25" + type: "xp" + xp: 500 + } + { + count: 4 + id: "4A2AA5346A65C9F1" + item: { + Count: 1 + id: "ars_nouveau:source_gem_block" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0D96BBA04D8238A2" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.2d + tasks: [ + { + id: "28BE70D97E39A080" + item: { + Count: 1 + id: "ars_elemental:fire_caster_tome" + tag: { } + } + type: "item" + } + { + id: "693DCD79D3A793E6" + item: { + Count: 1 + id: "ars_elemental:water_caster_tome" + tag: { } + } + type: "item" + } + { + id: "1A3351DC53C03346" + item: { + Count: 1 + id: "ars_elemental:earth_caster_tome" + tag: { } + } + type: "item" + } + { + id: "0545B764632FD2C7" + item: { + Count: 1 + id: "ars_elemental:air_caster_tome" + tag: { } + } + type: "item" + } + { + id: "56B09B187D309018" + item: { + Count: 1 + id: "ars_elemental:manipulation_caster_tome" + tag: { } + } + type: "item" + } + { + id: "6F8D0B59E516642E" + item: { + Count: 1 + id: "ars_elemental:anima_caster_tome" + tag: { } + } + type: "item" + } + ] + title: "&6School Caster Tomes" + x: 0.0d + y: 7.0d + } + { + dependencies: [ + "432AA99334A66A52" + "6CB235245045443D" + "63A323CB7C9D8236" + "39A86C7AE0BE133D" + "2907279BF82A3C32" + ] + description: [ + "You have mastered all four elemental schools, bound three familiars, automated your defences, and collected every caster tome. The elements themselves seem to answer when you raise a hand." + "" + "&6&oThe Grand Elementalist is not a title that is earned. It is recognised.&r" + ] + icon: "ars_elemental:mark_of_mastery" + id: "34FCB6FCE615F49E" + rewards: [ + { + id: "04B694EF715C4AE5" + type: "xp" + xp: 1000 + } + { + count: 5 + id: "4BD8482BEB6A73F9" + item: { + Count: 1 + id: "ars_elemental:mark_of_mastery" + tag: { } + } + type: "item" + } + { + count: 16 + id: "1C87FED1CADD06E9" + item: { + Count: 1 + id: "ars_nouveau:source_gem_block" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "397BFBF5667B74C1" + table_id: 6305167096659659419L + type: "random" + } + { + exclude_from_claim_all: true + id: "49294DE32DF7C7BC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 2.0d + tasks: [{ + id: "5BD353C9B88EBF9A" + type: "checkmark" + }] + title: "&6&lGrand &5Elementalist" + x: 0.0d + y: 8.5d + } + ] + title: "&3&oArs Elemental" +} diff --git a/minecraft/config/ftbquests/quests/chapters/ars_nouveau.snbt b/minecraft/config/ftbquests/quests/chapters/ars_nouveau.snbt new file mode 100644 index 0000000..9a7229a --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/ars_nouveau.snbt @@ -0,0 +1,3435 @@ +{ + autofocus_id: "0FFFAB42C8994C3B" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "ars_nouveau" + group: "4814F40AB34427B6" + icon: "ars_nouveau:relay_warp" + id: "78E6F7C6BE58E3FE" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -4.5d + y: -11.0d + } + { + height: 1.5d + image: "kubejs:item/ars_nouv_logo" + rotation: 0.0d + width: 6.0d + x: -0.5d + y: -11.5d + } + ] + order_index: 1 + quest_links: [ ] + quests: [ + { + dependencies: ["3378DBA1114E2954"] + description: [ + "Ars Nouveau is a magic mod that allows players to craft their own spells, create magical artifacts, perform rituals, and much more." + "" + "With Ars Nouveau you will learn to harness the mana infused in all things to cast powerful spells, drive arcane machinery, and even to empower some cute friends along the way." + ] + icon: "ars_nouveau:creative_spell_book" + id: "0FF49F7DD4D172CF" + min_width: 300 + rewards: [ + { + id: "3546DDE530EF28D7" + item: { + Count: 1 + id: "ars_nouveau:blue_archwood_sapling" + tag: { } + } + type: "item" + } + { + id: "3F62EEA4AB974407" + item: { + Count: 1 + id: "ars_nouveau:red_archwood_sapling" + tag: { } + } + type: "item" + } + { + id: "47E94835BDAF04F9" + item: { + Count: 1 + id: "ars_nouveau:purple_archwood_sapling" + tag: { } + } + type: "item" + } + { + id: "2F4F264FCCD8EE0B" + item: { + Count: 1 + id: "ars_nouveau:green_archwood_sapling" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "03741429B6EE3CD1" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oIron Tools&r quest*" + tasks: [{ + id: "69842ED24C694005" + type: "checkmark" + }] + title: "Welcome to &eArs Nouveau" + x: -5.25d + y: -10.5d + } + { + dependencies: ["3A1D74301CC5C1BE"] + description: ["Not every practitioner is born with a green-thumb. Thankfully, mana naturally trickles out of molten lava, escaping into the air. This device assists in collecting these trace amounts of mana so they may be put to use."] + id: "048E545ED70D577F" + rewards: [ + { + id: "3CFD17E87C9EAA05" + type: "xp" + xp: 50 + } + { + count: 3 + id: "5D9E5FFF2D06F861" + item: { + Count: 1 + id: "minecraft:coal_block" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "388E3F152770374C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "04B82A87FD6221E9" + item: { + Count: 1 + id: "ars_nouveau:volcanic_sourcelink" + tag: { } + } + type: "item" + }] + x: -7.0d + y: -7.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "51BDFF152D166497" + rewards: [ + { + id: "40237E2B1E8CA73A" + type: "xp" + xp: 10 + } + { + id: "7DEE1809EFB14ED1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1A998578F0917AF1" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3C64DBD243824D54" + item: "ars_nouveau:glyph_leap" + type: "item" + }] + x: 2.5d + y: -5.0d + } + { + dependencies: ["4C1E1604FD00EE5A"] + description: [ + "To construct the Enchanting Apparatus, place down the Arcane Core with the Enchanting Apparatus on top of it. The Pedestals can be placed anywhere in an 11x11 area centered on the Core. A Mana Jar with mana must also be present nearby." + "" + "To work with it, place the reagents in the pedestals and the focus in the Enchanting Apparatus itself, then Sneak Right Click the Apparatus with an empty hand." + ] + icon: "ars_nouveau:enchanting_apparatus" + id: "79CBF8A2400A345E" + rewards: [ + { + id: "0D5576644C233CDF" + type: "xp" + xp: 100 + } + { + id: "099830069F9F6CF4" + item: { + Count: 1 + id: "ars_nouveau:potion_flask" + tag: { + Damage: 8 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "13425A91D36523FC" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "11E392803BA20D38" + item: "ars_nouveau:arcane_core" + type: "item" + } + { + id: "4BAE1687158DA97B" + item: "ars_nouveau:enchanting_apparatus" + type: "item" + } + { + count: 8L + id: "0BBE0C25EB366119" + item: "ars_nouveau:arcane_pedestal" + type: "item" + } + ] + title: "&6Enchanting Apparatus" + x: 2.5d + y: -9.0d + } + { + dependencies: ["79CBF8A2400A345E"] + description: ["It grows as any other plant, but its roots reach through the veil, soaking in more of the mana that infuses the earth. Growing these will serve two purposes to a budding practitioner."] + id: "28597C28BC8F0FE7" + rewards: [ + { + id: "3A1063D5DD74CCAF" + type: "xp" + xp: 10 + } + { + id: "296C471D8E059B3A" + item: { + Count: 1 + id: "ars_nouveau:magebloom_crop" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "54FA839304C21896" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "The Mana Bloom sits at the border between the mundane and the magical" + tasks: [{ + id: "60C8EA418A3D0B61" + item: { + Count: 1 + id: "ars_nouveau:magebloom_crop" + tag: { } + } + type: "item" + }] + x: 4.0d + y: -10.5d + } + { + dependencies: ["79CBF8A2400A345E"] + description: ["Mana Relays serve this purpose. They provide a controlled channel for mana to flow through without dissipating back into the world. Mana Relays may be linked to other relays as well as jars to provide safe transit from one place to another."] + id: "74FB93DBD3DCFC41" + rewards: [ + { + id: "63134B2AE4CCBDF9" + item: "ars_nouveau:dominion_wand" + type: "item" + } + { + id: "5C0310A59FB73D1B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "68B0FA52820DD00E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "495F0195314F6D69" + item: { + Count: 1 + id: "ars_nouveau:relay" + tag: { } + } + type: "item" + }] + x: 1.0d + y: -8.5d + } + { + dependencies: ["28597C28BC8F0FE7"] + description: ["To prepare a Parchment with a spell, design the spell within your spellbook, then place a parchment on the Scribe's Table. Sneak Right Click the table with your spell book to transfer the selected spell over to the parchment."] + id: "7F0ECA7AB9551CA1" + rewards: [ + { + id: "17857E98C26DD61B" + type: "xp" + xp: 10 + } + { + count: 4 + id: "20CBA3520A92B732" + item: { + Count: 1 + id: "minecraft:tipped_arrow" + tag: { + Potion: "ars_nouveau:spell_damage" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "7C6F449C7B216409" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1D5860D4E1D3322A" + item: "ars_nouveau:spell_parchment" + type: "item" + }] + x: 4.0d + y: -8.0d + } + { + dependencies: ["51A6B62A8AD6B0CA"] + description: [ + "To use Runic Chalk, begin by drawing a circle on the ground. Now right click the circle with a prepared Spell Parchment. Valid Spell Parchments must begin with the Touch Form." + "" + "Any creature that walks over the rune will receive the effect of the spell." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "63902C16EF882BE6" + rewards: [ + { + id: "29627A0AA1E1C007" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "141237035A4D9624" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "70A16B7418AC9985" + item: { + Count: 1 + id: "ars_nouveau:runic_chalk" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.0d + y: -7.0d + } + { + dependencies: ["74FB93DBD3DCFC41"] + description: ["A more advanced Mana Relay capable of pulling from and sending to multiple locations."] + id: "497A879543460123" + rewards: [ + { + id: "7A105D05690CE292" + type: "xp" + xp: 10 + } + { + count: 16 + id: "2988B7625FFD9329" + item: { + Count: 1 + id: "ars_nouveau:source_gem" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "20A538584F2543A9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "04B5F333E4859F3C" + item: { + Count: 1 + id: "ars_nouveau:relay_splitter" + tag: { } + } + type: "item" + }] + x: 1.0d + y: -7.0d + } + { + dependencies: ["3E671B3A7EAE23C1"] + id: "676F34D1852C7FE5" + rewards: [ + { + id: "638BC237468723DA" + type: "xp" + xp: 50 + } + { + count: 3 + id: "291CD20DE69CC768" + item: { + Count: 1 + id: "minecraft:amethyst_shard" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "27C3AD5D59646174" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1D676F43DAE8A170" + item: { + Count: 1 + id: "ars_nouveau:imbuement_chamber" + tag: { } + } + type: "item" + }] + x: -1.0d + y: -10.0d + } + { + dependencies: ["0FF49F7DD4D172CF"] + id: "3E671B3A7EAE23C1" + rewards: [ + { + id: "657F83CCE5AFD5F7" + type: "xp" + xp: 50 + } + { + count: 4 + id: "34A579BA2C9655D8" + item: { + Count: 1 + id: "minecraft:lapis_lazuli" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "34A47C1AE57CAF90" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "709B115F1B868739" + item: { + Count: 1 + id: "ars_nouveau:novice_spell_book" + tag: { } + } + type: "item" + }] + x: -4.0d + y: -9.0d + } + { + dependencies: ["676F34D1852C7FE5"] + id: "4C1E1604FD00EE5A" + rewards: [ + { + id: "067D7E0AFC6099F7" + type: "xp" + xp: 50 + } + { + count: 2 + id: "4AE8B4F98859749F" + item: "ars_nouveau:sourcestone" + type: "item" + } + { + exclude_from_claim_all: true + id: "2759ED252E239CAB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "68D7654784DFBF7D" + item: { + Count: 1 + id: "ars_nouveau:source_gem" + tag: { } + } + type: "item" + }] + title: "&6The Source Gem" + x: 0.5d + y: -10.0d + } + { + dependencies: ["28597C28BC8F0FE7"] + id: "1B2DE63560613385" + rewards: [ + { + id: "1514AA98E32426CB" + type: "xp" + xp: 30 + } + { + id: "0C7BA0576A700EA4" + item: { + Count: 1 + id: "ars_nouveau:magebloom" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "69CC8D3F33EFB08E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "5613989C60823F11" + item: { + Count: 1 + id: "ars_nouveau:magebloom" + tag: { } + } + type: "item" + }] + title: "Magebloom" + x: 8.5d + y: -10.5d + } + { + dependencies: ["1B2DE63560613385"] + id: "4BAA0DCA042ED9D7" + rewards: [ + { + id: "0419993CA71A8025" + type: "xp" + xp: 30 + } + { + id: "31E631106ECC889A" + item: { + Count: 1 + id: "ars_nouveau:magebloom_fiber" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "10B7F7F6A49978E3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "05A3F703C95304CD" + item: { + Count: 1 + id: "ars_nouveau:magebloom_fiber" + tag: { } + } + type: "item" + }] + x: 8.5d + y: -9.0d + } + { + dependencies: ["4BAA0DCA042ED9D7"] + id: "410077C7B973F318" + rewards: [ + { + id: "45D913DA413EDB97" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "42A98FA425AC06FF" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "54792020DABBF828" + item: { + Count: 1 + id: "ars_nouveau:sorcerer_hood" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.0d + y: -7.5d + } + { + dependencies: ["410077C7B973F318"] + id: "6C29C97FD42F9CF2" + rewards: [ + { + id: "0262DCF355123779" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "68AAD1CA87279DCD" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6D869AD067542F87" + item: { + Count: 1 + id: "ars_nouveau:sorcerer_robes" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.0d + y: -6.5d + } + { + dependencies: ["6C29C97FD42F9CF2"] + id: "5E74162BFE874E02" + rewards: [ + { + id: "3F176FEC46A9A420" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1C144838B617DDB2" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "201387231E4C1555" + item: { + Count: 1 + id: "ars_nouveau:sorcerer_leggings" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.0d + y: -5.5d + } + { + dependencies: ["5E74162BFE874E02"] + id: "199B092BC9116A0A" + rewards: [ + { + id: "18AB05286F3B972C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "12738608EC02C794" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2B594AAFAD094876" + item: { + Count: 1 + id: "ars_nouveau:sorcerer_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.0d + y: -4.5d + } + { + dependencies: ["4BAA0DCA042ED9D7"] + id: "77F07C8F789C0FA4" + rewards: [ + { + id: "2295FB5EB2458C7F" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "009F9098FF4CDE3A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1C54A105D7C2DB19" + item: { + Count: 1 + id: "ars_nouveau:arcanist_hood" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.0d + y: -8.0d + } + { + dependencies: ["77F07C8F789C0FA4"] + id: "491C1EDC53F1CCED" + rewards: [ + { + id: "5706CE8BBB70FC30" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "1EAE48C5D88D9318" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2FD83BF4AA8B35EF" + item: { + Count: 1 + id: "ars_nouveau:arcanist_robes" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.0d + y: -7.0d + } + { + dependencies: ["491C1EDC53F1CCED"] + id: "3697EC3B1B47C9F4" + rewards: [ + { + id: "20A53249A2377346" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "18FDC28C68AAABE7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "01B019369117E86D" + item: { + Count: 1 + id: "ars_nouveau:arcanist_leggings" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.0d + y: -6.0d + } + { + dependencies: ["3697EC3B1B47C9F4"] + id: "764C79BE8CA8F5D1" + rewards: [ + { + id: "25775FD4F55EF7A7" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "391ED26CFA06E949" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "015E28D672807B4E" + item: { + Count: 1 + id: "ars_nouveau:arcanist_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.0d + y: -5.0d + } + { + dependencies: ["4BAA0DCA042ED9D7"] + id: "27C34EDA36455548" + rewards: [ + { + id: "393DE60F81FE273B" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "0FB24B82231A4C0C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1A22B2F86ABF4401" + item: { + Count: 1 + id: "ars_nouveau:battlemage_hood" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.0d + y: -7.5d + } + { + dependencies: ["27C34EDA36455548"] + id: "1716ED717CDD90DC" + rewards: [ + { + id: "2B82B706D209A163" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "63B069696FEE1A96" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "33D1B10A9A04ED28" + item: { + Count: 1 + id: "ars_nouveau:battlemage_robes" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.0d + y: -6.5d + } + { + dependencies: ["1716ED717CDD90DC"] + id: "4EC2EBFA7B7757BB" + rewards: [ + { + id: "58396742728522EC" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "7BC63BBC87CC5869" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7F946E4F17EE4EB2" + item: { + Count: 1 + id: "ars_nouveau:battlemage_leggings" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.0d + y: -5.5d + } + { + dependencies: ["4EC2EBFA7B7757BB"] + id: "1A15FD4ACEBEFB36" + rewards: [ + { + id: "7B5526E3AAA28E0F" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "1BBACFE92B265D7B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "25C306526D4723C2" + item: { + Count: 1 + id: "ars_nouveau:battlemage_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.0d + y: -4.5d + } + { + dependencies: ["3E671B3A7EAE23C1"] + id: "2E6B809BDF02CE75" + rewards: [ + { + id: "6272C85D074E6883" + type: "xp" + xp: 400 + } + { + exclude_from_claim_all: true + id: "1853518A289A0AC9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3C373788F4DE9A33" + item: { + Count: 1 + id: "ars_nouveau:apprentice_spell_book" + tag: { } + } + type: "item" + }] + x: -3.0d + y: -8.5d + } + { + dependencies: ["2E6B809BDF02CE75"] + id: "3DE2A8EB8E71BD98" + rewards: [ + { + id: "3FB02C8CE59FD29A" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "5CE4B26FBF1A7BFA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0287CFCE3113767D" + item: { + Count: 1 + id: "ars_nouveau:archmage_spell_book" + tag: { } + } + type: "item" + }] + x: -2.0d + y: -8.0d + } + { + dependencies: ["3E671B3A7EAE23C1"] + hide_dependency_lines: true + id: "0FFFAB42C8994C3B" + rewards: [ + { + id: "4F9FE5020FE10676" + type: "xp" + xp: 50 + } + { + id: "4B2B913AD22C521E" + item: { + Count: 1 + id: "ars_nouveau:glyph_underfoot" + tag: { } + } + type: "item" + } + { + id: "2FDC376B1AA9FFB1" + item: { + Count: 1 + id: "ars_nouveau:glyph_gust" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1D161BDE26CC9C2B" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + tasks: [{ + id: "619A0C424028F304" + item: { + Count: 1 + id: "ars_nouveau:scribes_table" + tag: { } + } + type: "item" + }] + x: 1.5d + y: -3.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "54E3341D6E8A71D8" + rewards: [ + { + id: "0B5563D0C7E6CA90" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0A1AD9786E45F807" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "255E9F10842151B6" + item: { + Count: 1 + id: "ars_nouveau:glyph_dampen" + tag: { } + } + type: "item" + }] + x: 2.5d + y: -4.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "18E98BC687A4F8D9" + rewards: [ + { + id: "576B76F2B29C17E4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2B2B060FC183A85E" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "60544103A325BA08" + item: { + Count: 1 + id: "ars_nouveau:glyph_slowfall" + tag: { } + } + type: "item" + }] + x: 0.5d + y: -5.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "57E7C55164CF0D1C" + rewards: [ + { + id: "42ECDD06FC934DF4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3901303E5AEBA5CC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6BA3CD7FED88F502" + item: { + Count: 1 + id: "ars_nouveau:glyph_launch" + tag: { } + } + type: "item" + }] + x: 0.0d + y: -4.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "1AC903296A412950" + rewards: [ + { + id: "73DE61032FA3C9CB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4C9B38AC3602BEC1" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "12B16936A7250B5B" + item: { + Count: 1 + id: "ars_nouveau:glyph_pickup" + tag: { } + } + type: "item" + }] + x: -0.5d + y: -3.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "2964336E8F67A0D4" + rewards: [ + { + id: "66B9237A67D36E3C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "586E06A51CF391BD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2573477F58CAEDDB" + item: { + Count: 1 + id: "ars_nouveau:glyph_smelt" + tag: { } + } + type: "item" + }] + x: 1.5d + y: -5.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "54DF93EA65822481" + rewards: [ + { + id: "27FE0C61DA1BF37A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "77D17F5F4BE57F36" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "723177A70C24E470" + item: { + Count: 1 + id: "ars_nouveau:glyph_fortune" + tag: { } + } + type: "item" + }] + x: 0.0d + y: -2.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "414775AE90D00BF2" + rewards: [ + { + id: "5BAD0CE73DBB8743" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "34C2F2A61A874C18" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "7E63266E357FECD6" + item: { + Count: 1 + id: "ars_nouveau:glyph_split" + tag: { } + } + type: "item" + }] + x: 1.0d + y: -4.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "6FEBA54B6AE1B0C1" + rewards: [ + { + id: "42D6CFAE2C9274B4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "48C7EC62B2CB48F9" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5D2FE9D91015E274" + item: { + Count: 1 + id: "ars_nouveau:glyph_craft" + tag: { } + } + type: "item" + }] + x: 0.5d + y: -4.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "202245C32605473C" + rewards: [ + { + id: "5A8367CE54DECACF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "71EC8FC7B0D1FB6F" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "4293BD1B2C14C865" + item: { + Count: 1 + id: "ars_nouveau:glyph_grow" + tag: { } + } + type: "item" + }] + x: 0.5d + y: -3.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "0C2ED7D576DC0E57" + rewards: [ + { + id: "27830496C5440CAD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3D3C197EEBD17C7B" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2DEDCEAFCF78BAA8" + item: { + Count: 1 + id: "ars_nouveau:glyph_ignite" + tag: { } + } + type: "item" + }] + x: 0.0d + y: -3.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "74040E7C2201F51B" + rewards: [ + { + id: "5DDFA4639B86E41F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0460B2EC0D27C5FD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "36D6ECC566EBE230" + item: { + Count: 1 + id: "ars_nouveau:glyph_heal" + tag: { } + } + type: "item" + }] + x: 1.5d + y: -2.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "4AC5962D58BE3DFE" + rewards: [ + { + id: "7B8523DC8EC2AC1A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7E25AD6D3B4D715D" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "354255E27CA46292" + item: { + Count: 1 + id: "ars_nouveau:glyph_freeze" + tag: { } + } + type: "item" + }] + x: 3.0d + y: -3.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "4F9F032F8C5F592C" + rewards: [ + { + id: "5ABBCF94C23CA2AC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0F7E33DC750F178E" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "351190254A13DAC2" + item: { + Count: 1 + id: "ars_nouveau:glyph_lightning" + tag: { } + } + type: "item" + }] + x: 2.5d + y: -3.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "4833ABD2AD082F72" + rewards: [ + { + id: "463E334BEEE54730" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "23BFB581CD1D9EA3" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "31FFDA2D6E77C114" + item: { + Count: 1 + id: "ars_nouveau:glyph_harvest" + tag: { } + } + type: "item" + }] + x: -0.5d + y: -4.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "29D5A1F92C0D3ADD" + rewards: [ + { + id: "484FF4BF38CF9011" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3B7686BB9C6CD9F1" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3E5AF9E590290F84" + item: { + Count: 1 + id: "ars_nouveau:glyph_place_block" + tag: { } + } + type: "item" + }] + x: 2.0d + y: -2.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "027D7AD7235CFC35" + rewards: [ + { + id: "2063D025E4963127" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7BE43F2F0CBB91F9" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "00613E86BA5BB354" + item: { + Count: 1 + id: "ars_nouveau:glyph_exchange" + tag: { } + } + type: "item" + }] + x: 1.0d + y: -2.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "4CE3F79448CF8FDB" + rewards: [ + { + id: "4E14D2D2D654FDE9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7F4C535E3CB372AF" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5E774FED89FE5AD5" + item: { + Count: 1 + id: "ars_nouveau:glyph_accelerate" + tag: { } + } + type: "item" + }] + x: 3.0d + y: -4.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "1D58ECADECB5CCAF" + rewards: [ + { + id: "08F69A34B89C4EA7" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "34064F86DFC1E228" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0C0FBE2DE12F5445" + item: { + Count: 1 + id: "ars_nouveau:glyph_aoe" + tag: { } + } + type: "item" + }] + x: 2.0d + y: -4.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "3724E808F9FDCBF2" + rewards: [ + { + id: "6CA19E1F722A61AF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7282E854747CBEF6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "79F7A7C36420A8AA" + item: { + Count: 1 + id: "ars_nouveau:glyph_wither" + tag: { } + } + type: "item" + }] + x: 3.5d + y: -3.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "7A8D6EC4A4CD2F17" + rewards: [ + { + id: "5E928352641075FA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7304163AE207EE55" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "068B8EF4F4C36EBB" + item: { + Count: 1 + id: "ars_nouveau:glyph_extract" + tag: { } + } + type: "item" + }] + x: 3.0d + y: -2.5d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "2366E59776B287FA" + rewards: [ + { + id: "37857477F8204BF3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "78D7C4820FA37D74" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "4777087F415C0630" + item: { + Count: 1 + id: "ars_nouveau:glyph_duration_down" + tag: { } + } + type: "item" + }] + x: 2.5d + y: -2.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "1D60A1BD2653C154" + rewards: [ + { + id: "4087668318F6A859" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0F55209040D8C33C" + table_id: 6305167096659659419L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + id: "19954E6DC28346DA" + item: { + Count: 1 + id: "ars_nouveau:glyph_glide" + tag: { } + } + type: "item" + }] + x: 3.5d + y: -4.0d + } + { + dependencies: ["0FFFAB42C8994C3B"] + hide_dependency_lines: true + id: "080740DA35F487FF" + rewards: [ + { + id: "798DEA52981681F5" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "275ECB0EC19503DA" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "53EB704032BB28B2" + item: { + Count: 1 + id: "ars_nouveau:glyph_explosion" + tag: { } + } + type: "item" + }] + x: 0.5d + y: -2.0d + } + { + dependencies: ["676F34D1852C7FE5"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "2C1222483A854871" + rewards: [ + { + id: "5BADE3DC5EA39E65" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "402877CF6DB61D23" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1A3729F2B07FFCE8" + item: { + Count: 1 + id: "ars_nouveau:abjuration_essence" + tag: { } + } + type: "item" + }] + x: 5.5d + y: -1.0d + } + { + dependencies: ["676F34D1852C7FE5"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "25FB581C47D78FA9" + rewards: [ + { + id: "42DAA5FEDCF9AC64" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "78EFFF56C9F78A22" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2E0A658F3C8A1A87" + item: { + Count: 1 + id: "ars_nouveau:conjuration_essence" + tag: { } + } + type: "item" + }] + x: 7.0d + y: -2.0d + } + { + dependencies: ["676F34D1852C7FE5"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "7F07D4EBD3DDC2D4" + rewards: [ + { + id: "6317E0C1234B2227" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "623C9FC955571C84" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "58441D30056B900C" + item: { + Count: 1 + id: "ars_nouveau:air_essence" + tag: { } + } + type: "item" + }] + x: 7.5d + y: -1.0d + } + { + dependencies: ["676F34D1852C7FE5"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "3B5004F783A99D38" + rewards: [ + { + id: "0CF9CC1942CBBB59" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "70BBADDCABEF1195" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "48C1147476224577" + item: { + Count: 1 + id: "ars_nouveau:earth_essence" + tag: { } + } + type: "item" + }] + x: 6.0d + y: -2.0d + } + { + dependencies: ["676F34D1852C7FE5"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "45BF051A1AAA4FD1" + rewards: [ + { + id: "718D38824083D02A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "02FB419542C161C3" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "14EA22339FC89398" + item: { + Count: 1 + id: "ars_nouveau:fire_essence" + tag: { } + } + type: "item" + }] + x: 6.5d + y: -1.0d + } + { + dependencies: ["676F34D1852C7FE5"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "51A6B62A8AD6B0CA" + rewards: [ + { + id: "64E94AECA6CD5C55" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "74F1C28F4C0BF555" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "583B19B07A62C113" + item: { + Count: 1 + id: "ars_nouveau:manipulation_essence" + tag: { } + } + type: "item" + }] + x: 8.5d + y: -1.0d + } + { + dependencies: ["676F34D1852C7FE5"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "7E61F21D7A8B9A43" + rewards: [ + { + id: "77FA96F372C1067F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "48222042F110786C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "5201F1087C1E9B02" + item: { + Count: 1 + id: "ars_nouveau:water_essence" + tag: { } + } + type: "item" + }] + x: 8.0d + y: -2.0d + } + { + dependencies: ["3A1D74301CC5C1BE"] + id: "3A7C1931B394082F" + rewards: [ + { + id: "179A0A9D695E57C0" + type: "xp" + xp: 50 + } + { + id: "2E07C66EE9BE582A" + item: { + Count: 1 + id: "ars_nouveau:source_berry_pie" + tag: { } + } + type: "item" + } + { + id: "3D7757C0D31E55A3" + item: { + Count: 1 + id: "ars_nouveau:source_berry_roll" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "45718F068C0869FA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "19A220729E093795" + item: { + Count: 1 + id: "ars_nouveau:agronomic_sourcelink" + tag: { } + } + type: "item" + }] + x: -7.5d + y: -8.5d + } + { + dependencies: ["0FF49F7DD4D172CF"] + id: "3A1D74301CC5C1BE" + rewards: [ + { + id: "2EC6AFDF540FBF54" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "64CEB19FEBFA1003" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "542C1F0F4540B83C" + item: { + Count: 1 + id: "ars_nouveau:source_jar" + tag: { } + } + type: "item" + }] + x: -6.0d + y: -9.0d + } + { + dependencies: ["3E671B3A7EAE23C1"] + id: "405B74B7CD6314C9" + rewards: [ + { + id: "517E09200FA08FA2" + type: "xp" + xp: 100 + } + { + id: "63D3EF5085AD789D" + item: { + Count: 1 + id: "ars_nouveau:ritual_disintegration" + tag: { } + } + type: "item" + } + { + id: "7A28292E12144144" + item: { + Count: 1 + id: "ars_nouveau:ritual_burrowing" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "2D980979AADE0A9F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "55402ADC3E82FED6" + item: { + Count: 1 + id: "ars_nouveau:ritual_brazier" + tag: { } + } + type: "item" + }] + x: -3.5d + y: -6.5d + } + { + dependencies: ["405B74B7CD6314C9"] + id: "029986AB191B2173" + rewards: [ + { + id: "593BA97EEF2C6EE6" + type: "xp" + xp: 100 + } + { + id: "15F10FC83EAB8039" + item: { + Count: 1 + id: "ars_nouveau:ritual_moonfall" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "6109C0FC2C1E45A8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "28D95F099E18A9D5" + item: { + Count: 1 + id: "ars_nouveau:ritual_wilden_summon" + tag: { } + } + type: "item" + }] + x: -2.5d + y: -4.5d + } + { + dependencies: ["405B74B7CD6314C9"] + id: "469125ACBDCAD0ED" + rewards: [ + { + id: "4EC542F32F86EE2A" + type: "xp" + xp: 100 + } + { + id: "6A3303D870A35200" + item: { + Count: 1 + id: "ars_nouveau:ritual_challenge" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "687CC4767311FE78" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6CCDF1747BAEE41C" + item: { + Count: 1 + id: "ars_nouveau:ritual_binding" + tag: { } + } + type: "item" + }] + x: -3.5d + y: -4.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "298FADBC14AFA295" + rewards: [ + { + id: "755159221786B5D9" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "1BF045ED18F9234E" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "69C52992C70BC037" + item: { + Count: 1 + id: "ars_nouveau:bookwyrm_charm" + tag: { } + } + type: "item" + }] + x: -7.5d + y: -3.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "7F1FE0EBB6709F42" + rewards: [ + { + id: "403A7C6C6B73A9FB" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "5508CD9DBE9E86C6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "692E3D14971ABCA1" + item: { + Count: 1 + id: "ars_nouveau:starbuncle_charm" + tag: { } + } + type: "item" + }] + x: -6.5d + y: -3.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "15C65953347AAC54" + rewards: [ + { + id: "5F36223DA57D743F" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "07C62EF5AEA9333D" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3F1DB10D05E042C3" + item: { + Count: 1 + id: "ars_nouveau:wixie_charm" + tag: { } + } + type: "item" + }] + x: -5.5d + y: -3.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "40CA1D52055875E7" + rewards: [ + { + id: "3BFF4212D98F0A38" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "671873E34E2AD3FE" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "62B04A6F7A9A8814" + item: { + Count: 1 + id: "ars_nouveau:whirlisprig_charm" + tag: { } + } + type: "item" + }] + x: -4.5d + y: -3.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "6AB4D521493A5DD3" + rewards: [ + { + id: "050EA51F834058DC" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "58C2725369E1185E" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "5BA253721456E053" + item: { + Count: 1 + id: "ars_nouveau:drygmy_charm" + tag: { } + } + type: "item" + }] + x: -3.5d + y: -3.0d + } + { + dependencies: ["0C2DFE0F88257BBA"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "7ED3DFABD3EF508E" + rewards: [ + { + id: "663A63B1FBE7FE94" + type: "xp" + xp: 250 + } + { + count: 2 + id: "20FE56B2E2FB4275" + item: { + Count: 1 + id: "minecraft:budding_amethyst" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "2C44AE8C1D9DCD70" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "69D6CBC2262F3B06" + item: { + Count: 1 + id: "ars_nouveau:amethyst_golem_charm" + tag: { } + } + type: "item" + }] + x: -2.5d + y: -3.0d + } + { + dependencies: ["469125ACBDCAD0ED"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "15057E6D3D02CEA5" + rewards: [ + { + id: "11BE68AC3CB9A356" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "69F6FDCE78627579" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "35103462DD9554B9" + item: { + Count: 1 + id: "ars_nouveau:familiar_bookwyrm" + tag: { } + } + type: "item" + }] + x: -7.0d + y: -2.0d + } + { + dependencies: ["469125ACBDCAD0ED"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "59DD1897F151B40D" + rewards: [ + { + id: "06D851EB1DF4FD1E" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "149F2635B8651705" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7A6A32FCC8CA31D3" + item: { + Count: 1 + id: "ars_nouveau:familiar_starbuncle" + tag: { } + } + type: "item" + }] + x: -6.0d + y: -2.0d + } + { + dependencies: ["469125ACBDCAD0ED"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "574F7DCA58038E98" + rewards: [ + { + id: "34F23AD3CFC4D066" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "569018946E1574B0" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "535A648ED8399980" + item: { + Count: 1 + id: "ars_nouveau:familiar_drygmy" + tag: { } + } + type: "item" + }] + x: -3.0d + y: -2.0d + } + { + dependencies: ["469125ACBDCAD0ED"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "00C65DA0590BF5CA" + rewards: [ + { + id: "091AE58DD6D1D931" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "540C8E60AAC193D5" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "52F379D66321E9D0" + item: { + Count: 1 + id: "ars_nouveau:familiar_wixie" + tag: { } + } + type: "item" + }] + x: -5.0d + y: -2.0d + } + { + dependencies: ["469125ACBDCAD0ED"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "68E798B9D437E949" + rewards: [ + { + id: "6CC5D63ACCAED137" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "31E841EB61C5468B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "64272EC8928C8C8C" + item: { + Count: 1 + id: "ars_nouveau:familiar_whirlisprig" + tag: { } + } + type: "item" + }] + x: -4.0d + y: -2.0d + } + { + dependencies: ["405B74B7CD6314C9"] + id: "0C2DFE0F88257BBA" + rewards: [ + { + id: "79EBC0ACD8516E7C" + type: "xp" + xp: 100 + } + { + id: "1703320AA71704CE" + item: { + Count: 1 + id: "ars_nouveau:ritual_sunrise" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "4550BCCD05CD4965" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6842C08DB4C673DD" + item: { + Count: 1 + id: "ars_nouveau:ritual_awakening" + tag: { } + } + type: "item" + }] + x: -4.5d + y: -4.5d + } + { + dependencies: ["7F0ECA7AB9551CA1"] + id: "506DB0F229170F7E" + rewards: [ + { + id: "6B70627A77EA06F5" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "509EC3349D9E43D5" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "79944FE4AA706F53" + item: { + Count: 1 + id: "ars_nouveau:annotated_codex" + tag: { } + } + type: "item" + }] + x: 3.5d + y: -6.5d + } + { + dependencies: ["3A1D74301CC5C1BE"] + id: "6C7940D152032730" + rewards: [ + { + id: "026B6575C531F729" + type: "xp" + xp: 50 + } + { + id: "7AC01874DB63E31F" + item: { + Count: 1 + id: "ars_nouveau:dull_trinket" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "23CEAEF8C7F90D3A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7A30D99EA7C7524F" + item: { + Count: 1 + id: "ars_nouveau:mycelial_sourcelink" + tag: { } + } + type: "item" + }] + x: -6.0d + y: -6.5d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + id: "78CF88FF66C784FF" + rewards: [ + { + id: "21998DF9EDB4C79A" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "5E6ACA0F417CC1F5" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "31D7FDCFB46786AC" + item: { + Count: 1 + id: "ars_nouveau:wand" + tag: { } + } + type: "item" + }] + x: 3.5d + y: -1.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + id: "5485B6F41527B500" + rewards: [ + { + id: "7E7DB57823040F65" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "237C43208843EA59" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "5DEC9EA031309189" + item: { + Count: 1 + id: "ars_nouveau:spell_bow" + tag: { } + } + type: "item" + }] + x: 1.5d + y: -1.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + id: "590DAF80B3A58FC6" + rewards: [ + { + id: "680D62089334153D" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "5ED0098331FBC669" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "757C6E64A289B51B" + item: { + Count: 1 + id: "ars_nouveau:enchanters_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.5d + y: -1.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + id: "44B0E00B7465F278" + rewards: [ + { + id: "1E79D0030E726BA6" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "7230078D2D51AE6D" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "192070F1F5297001" + item: { + Count: 1 + id: "ars_nouveau:enchanters_shield" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.5d + y: -1.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + id: "014BB7CA85D14532" + rewards: [ + { + id: "28BCA28DC6D5CF45" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "75D063CF8D504649" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "0AB3F4C736145187" + item: { + Count: 1 + id: "ars_nouveau:enchanters_mirror" + tag: { } + } + type: "item" + }] + x: 2.5d + y: -1.0d + } + { + dependencies: ["405B74B7CD6314C9"] + id: "719D891C06A96427" + rewards: [ + { + id: "72C635BE8AF04CE2" + type: "xp" + xp: 100 + } + { + id: "074DDA5B031DB0DD" + item: { + Count: 1 + id: "ars_nouveau:ritual_fertility" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "2F2BF6108E3F237A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "559021FAC2CB84E8" + item: { + Count: 1 + id: "ars_nouveau:ritual_overgrowth" + tag: { } + } + type: "item" + }] + x: -2.0d + y: -5.5d + } + { + dependencies: ["405B74B7CD6314C9"] + id: "4030375BB4F3A6E0" + rewards: [ + { + id: "425D3E81913EE3BC" + type: "xp" + xp: 100 + } + { + id: "3919A77ED678C028" + item: { + Count: 1 + id: "ars_nouveau:ritual_cloudshaping" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0F7BA8C8EECAA0D3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "30A222E9018DC429" + item: { + Count: 1 + id: "ars_nouveau:ritual_flight" + tag: { } + } + type: "item" + }] + x: -5.0d + y: -5.5d + } + { + dependencies: ["405B74B7CD6314C9"] + id: "6F8D693FAC7C21D8" + rewards: [ + { + id: "11EC9EFC858C0ED5" + type: "xp" + xp: 100 + } + { + id: "76ED6E4A1DC8C06B" + item: { + Count: 1 + id: "ars_nouveau:ritual_warping" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "7AA7EE553712B657" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "642ED59BF71EE250" + item: { + Count: 1 + id: "ars_nouveau:ritual_restoration" + tag: { } + } + type: "item" + }] + x: -2.0d + y: -6.5d + } + { + dependencies: ["38D5E571A36F12E4"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "26FD82026FBAE2D9" + rewards: [ + { + id: "1DCEF5348D077EF1" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "21042FCFEDDBBA57" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "42B2B9DC926C412E" + item: { + Count: 1 + id: "ars_nouveau:belt_of_unstable_gifts" + tag: { } + } + type: "item" + }] + x: -7.5d + y: -1.0d + } + { + dependencies: ["38D5E571A36F12E4"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "137E376E22A64C8D" + rewards: [ + { + id: "78B9613835AC5829" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "2CCF3580453BE08F" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "148F953F6AA84A2C" + item: { + Count: 1 + id: "ars_nouveau:belt_of_levitation" + tag: { } + } + type: "item" + }] + x: -6.5d + y: -1.0d + } + { + dependencies: ["38D5E571A36F12E4"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "462D63532B4C7D54" + rewards: [ + { + id: "13AAAD753F68DAA4" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4897E5886ACA4BF6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "550F6B87EBEF1B88" + item: { + Count: 1 + id: "ars_nouveau:ring_of_lesser_discount" + tag: { } + } + type: "item" + }] + x: -5.5d + y: -1.0d + } + { + dependencies: ["38D5E571A36F12E4"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "3086EB50617AE8BE" + rewards: [ + { + id: "052FBBD3774A404D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "02A7A8656E1046C9" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3109C85883F78F31" + item: { + Count: 1 + id: "ars_nouveau:ring_of_greater_discount" + tag: { } + } + type: "item" + }] + x: -4.5d + y: -1.0d + } + { + dependencies: ["38D5E571A36F12E4"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "5E9B440485DF6BCB" + rewards: [ + { + id: "625C055023C446E8" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0F6662946B6032E6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "19BF714B309496C4" + item: { + Count: 1 + id: "ars_nouveau:amulet_of_mana_boost" + tag: { } + } + type: "item" + }] + x: -3.5d + y: -1.0d + } + { + dependencies: ["38D5E571A36F12E4"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "285D8B9EA835DD43" + rewards: [ + { + id: "39F306625502B47E" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7B78449BC97F630B" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0C36F795867FF19E" + item: { + Count: 1 + id: "ars_nouveau:amulet_of_mana_regen" + tag: { } + } + type: "item" + }] + x: -2.5d + y: -1.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "77061C73B2B41226" + rewards: [ + { + id: "66B646D94E3C04CC" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "02978C71D4013EFE" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "4E9471B77FAE7AD6" + item: { + Count: 1 + id: "ars_nouveau:summon_focus" + tag: { } + } + type: "item" + }] + x: 5.5d + y: -3.0d + } + { + dependencies: ["51A6B62A8AD6B0CA"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "48156AB4803B9334" + rewards: [ + { + id: "640B4EE21142DC56" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5F00B01E7684AB16" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0F5995D76B80C842" + item: { + Count: 1 + id: "ars_nouveau:shapers_focus" + tag: { } + } + type: "item" + }] + x: 8.5d + y: -3.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "547AB41C98E30B20" + rewards: [ + { + id: "2FB3ABEB8A14A11B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "69ECDF632454371E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "38CC91450AB772F2" + item: { + Count: 1 + id: "ars_nouveau:void_jar" + tag: { } + } + type: "item" + }] + x: 7.5d + y: -3.0d + } + { + dependencies: ["79CBF8A2400A345E"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "0D65C00975710DE9" + rewards: [ + { + id: "64DBF29BDF32DAAB" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3502CA50521EE1AB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "54645B7174B0DEE1" + item: { + Count: 1 + id: "ars_nouveau:jar_of_light" + tag: { } + } + type: "item" + }] + x: 6.5d + y: -3.0d + } + { + dependencies: ["4C1E1604FD00EE5A"] + id: "38D5E571A36F12E4" + rewards: [ + { + id: "763D00CB8BE93820" + type: "xp" + xp: 70 + } + { + id: "79A4A4B23505A75B" + item: { + Count: 1 + id: "ars_nouveau:source_gem_block" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "5B56DEAD1C8D1781" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "0AD8E8B24C75105F" + item: { + Count: 1 + id: "ars_nouveau:ring_of_potential" + tag: { } + } + type: "item" + } + { + id: "79E7BA9F08AEFA17" + item: { + Count: 1 + id: "ars_nouveau:mundane_belt" + tag: { } + } + type: "item" + } + { + id: "570861850F85D582" + item: { + Count: 1 + id: "ars_nouveau:dull_trinket" + tag: { } + } + type: "item" + } + ] + title: "The Trinkets" + x: -0.5d + y: -8.5d + } + { + dependencies: [ + "7C8D74692C963000" + "0FFFAB42C8994C3B" + ] + hide_dependency_lines: true + id: "016BCD3A43D2B665" + rewards: [ + { + id: "3BED4BD0EE8600B6" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0B24D73FDC496860" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "54F037357E218328" + item: "tomeofblood:glyph_sentient_harm" + type: "item" + }] + x: 4.0d + y: -3.5d + } + { + dependencies: [ + "2A4E34A3A0DB867C" + "0FFFAB42C8994C3B" + ] + hide_dependency_lines: true + id: "3CD31E8A8C08692B" + rewards: [ + { + id: "3D3A7E0BFF697A8B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "54F58BA6AAE026FA" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "415910DAAF7D62BF" + item: "tomeofblood:glyph_sentient_wrath" + type: "item" + }] + x: -1.0d + y: -3.5d + } + { + dependencies: [ + "4BAA0DCA042ED9D7" + "26FD5D4411242B25" + ] + id: "05031857FE02C64A" + rewards: [ + { + id: "2EA27057145AD464" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "4C1149D2BD88F226" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "418B40D709D6D309" + item: { + Count: 1 + id: "tomeofblood:living_mage_hood" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 10.0d + y: -8.0d + } + { + dependencies: [ + "05031857FE02C64A" + "37A82F03CFF9D25A" + ] + id: "444FE141311481C4" + rewards: [ + { + id: "775F43C4CB18DA71" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "1DE3D3655406E35B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "03786D1B4F10C3C2" + item: { + Count: 1 + id: "tomeofblood:living_mage_robes" + tag: { + Damage: 0 + livingStats: { + maxPoints: 100 + upgrades: [ ] + } + } + } + type: "item" + }] + x: 10.0d + y: -7.0d + } + { + dependencies: [ + "444FE141311481C4" + "671E6A4CA8F8F77B" + ] + id: "18C0952A8B5D1F56" + rewards: [ + { + id: "58F05FC6F886367C" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "587A83B3BED0F4C6" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1419D85AD3053ED0" + item: { + Count: 1 + id: "tomeofblood:living_mage_leggings" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 10.0d + y: -6.0d + } + { + dependencies: [ + "18C0952A8B5D1F56" + "5E9B38CD413946E0" + ] + id: "3747F9DC3EC36FE9" + rewards: [ + { + id: "7B901979094D5D8D" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "6C30C0A91CB9D5F9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3CCF6D396764218B" + item: { + Count: 1 + id: "tomeofblood:living_mage_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 10.0d + y: -5.0d + } + ] + title: "&3&oArs Nouveau" +} diff --git a/minecraft/config/ftbquests/quests/chapters/bakery.snbt b/minecraft/config/ftbquests/quests/chapters/bakery.snbt new file mode 100644 index 0000000..9c7fa1a --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/bakery.snbt @@ -0,0 +1,1020 @@ +{ + autofocus_id: "3F2585A53DD6B36A" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "bakery" + group: "33C9D311E461F30C" + icon: "bakery:toast" + id: "4633332AB18492F0" + images: [{ + height: 2.7d + image: "kubejs:item/bakery" + rotation: 0.0d + width: 7.0d + x: -1.0d + y: -5.0d + }] + order_index: 1 + quest_links: [ ] + quests: [ + { + dependencies: ["02FED8F0AC2A5B4F"] + id: "742EF4F73261A980" + rewards: [{ + exclude_from_claim_all: true + id: "72609EEE12938D00" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "A must-have for baking bread!" + tasks: [{ + id: "1C55337F13FADD93" + item: "farm_and_charm:yeast" + type: "item" + }] + x: -4.5d + y: 0.0d + } + { + dependencies: ["02FED8F0AC2A5B4F"] + id: "314BE622F1F58007" + rewards: [{ + exclude_from_claim_all: true + id: "3DA65FBCAE6CD1DE" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "You can right-click to fill it up with water, which can then be collected with a bucket." + tasks: [{ + id: "0331FBCF8ED9121B" + item: "bakery:kitchen_sink" + type: "item" + }] + x: -5.5d + y: 0.0d + } + { + id: "02FED8F0AC2A5B4F" + rewards: [{ + exclude_from_claim_all: true + id: "42B81661B1B7FE40" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "45056CA0F41A3A00" + item: "farm_and_charm:crafting_bowl" + type: "item" + }] + x: -4.5d + y: 1.0d + } + { + id: "1D8CB1D6716D5EC6" + rewards: [{ + exclude_from_claim_all: true + id: "125CD1E2B234FD2C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0C8EA1CAA0126FE3" + item: "farm_and_charm:stove" + type: "item" + }] + x: -8.0d + y: 1.0d + } + { + id: "3F2585A53DD6B36A" + rewards: [{ + exclude_from_claim_all: true + id: "7AC2292473AAFDEC" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "043A6D8343A84DB0" + item: { + Count: 1 + id: "bakery:small_cooking_pot" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.5d + y: 1.0d + } + { + id: "3471547B56F467EA" + rewards: [{ + exclude_from_claim_all: true + id: "38238BDFCC23350E" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "75DE09DD0C0C0585" + item: "bakery:baker_station" + type: "item" + }] + x: 3.5d + y: 0.0d + } + { + icon: { + Count: 1 + id: "bakery:bread_knife" + tag: { + Damage: 0 + } + } + id: "05958D4D66A25571" + rewards: [{ + exclude_from_claim_all: true + id: "27ECBA01286F5EB4" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "558CA8377B88E214" + item: { + Count: 1 + id: "bakery:bread_knife" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "Cutting" + x: 7.5d + y: 1.0d + } + { + dependencies: ["02FED8F0AC2A5B4F"] + id: "47C998B57DFB8DC9" + rewards: [{ + exclude_from_claim_all: true + id: "5029A2733740FE51" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "73F4541077330534" + item: "farm_and_charm:dough" + type: "item" + }] + x: -3.5d + y: 1.0d + } + { + dependencies: ["02FED8F0AC2A5B4F"] + id: "1043A035EBB42ABD" + rewards: [{ + exclude_from_claim_all: true + id: "79EDDDFBC0B872C7" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "41B82D0DB69E8B3D" + item: "bakery:sweet_dough" + type: "item" + }] + x: -5.5d + y: 1.0d + } + { + dependencies: ["02FED8F0AC2A5B4F"] + id: "44E76952DBE381CF" + rewards: [{ + exclude_from_claim_all: true + id: "557FD3128CA7808B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7E77EE32DB4D3911" + item: "bakery:cake_dough" + type: "item" + }] + x: -4.5d + y: 2.0d + } + { + dependencies: ["02FED8F0AC2A5B4F"] + id: "7F148CBF138ED5D6" + rewards: [{ + exclude_from_claim_all: true + id: "50D3BFC832D61CB7" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "5EBE7BF85F522628" + item: "bakery:vegetable_sandwich" + type: "item" + }] + x: -5.5d + y: 2.0d + } + { + dependencies: ["02FED8F0AC2A5B4F"] + id: "4966DD88A0047BE7" + rewards: [{ + exclude_from_claim_all: true + id: "05147D46DFB2815C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "438836408F5580D6" + item: "bakery:sandwich" + type: "item" + }] + x: -3.5d + y: 2.0d + } + { + dependencies: ["02FED8F0AC2A5B4F"] + id: "1342A64EBD0A68C5" + rewards: [{ + exclude_from_claim_all: true + id: "45A8B1D3B029596E" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "5F53BC23DBC35B3E" + item: "bakery:jam_roll" + type: "item" + }] + x: -3.5d + y: 0.0d + } + { + dependencies: ["50AE5017B8201E05"] + id: "19ADC4286B8110E7" + rewards: [{ + exclude_from_claim_all: true + id: "05122A648730A1BA" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "2ED21AA83059289F" + item: "bakery:strawberry_glazed_cookie" + type: "item" + }] + x: 2.5d + y: 2.0d + } + { + dependencies: ["50AE5017B8201E05"] + id: "57F018FBCADB8B97" + rewards: [{ + exclude_from_claim_all: true + id: "77DE9372E7895A55" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7128BC36976CFD1A" + item: "bakery:sweetberry_glazed_cookie" + type: "item" + }] + x: 3.5d + y: 2.0d + } + { + dependencies: ["50AE5017B8201E05"] + id: "27A7CB514006662A" + rewards: [{ + exclude_from_claim_all: true + id: "6DEBA161FE2970B9" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "38EC1C5BE4ED965B" + item: "bakery:chocolate_glazed_cookie" + type: "item" + }] + x: 2.5d + y: 1.0d + } + { + dependencies: ["27FB67E680D795E7"] + id: "2B98069241363E43" + rewards: [{ + exclude_from_claim_all: true + id: "1B7454AB9FB9FE82" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "628B35F4D6A76A95" + item: "bakery:strawberry_cupcake" + type: "item" + }] + x: 2.5d + y: -1.0d + } + { + dependencies: ["27FB67E680D795E7"] + id: "658FBB9ADFF806B9" + rewards: [{ + exclude_from_claim_all: true + id: "75C7A261F766EF72" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3F33620EF9D3E68C" + item: "bakery:sweetberry_cupcake" + type: "item" + }] + x: 3.5d + y: -2.0d + } + { + dependencies: ["27FB67E680D795E7"] + id: "75B32406FE1A3295" + rewards: [{ + exclude_from_claim_all: true + id: "5440181E3DE2E8B9" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "260DE04F895E1B8F" + item: "bakery:apple_cupcake" + type: "item" + }] + x: 4.5d + y: -1.0d + } + { + dependencies: ["3471547B56F467EA"] + id: "4D0C9BE4D5C084D5" + rewards: [{ + exclude_from_claim_all: true + id: "0E254E389E023E73" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4CD2AD10CA78CB7A" + item: "bakery:strawberry_cake" + type: "item" + }] + x: 4.5d + y: 2.0d + } + { + dependencies: ["3471547B56F467EA"] + id: "00BC191DEB708C97" + rewards: [{ + exclude_from_claim_all: true + id: "2E3BC56138A76C46" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3B3B4BE2E1B3E1D9" + item: "bakery:sweetberry_cake" + type: "item" + }] + x: 2.5d + y: 0.0d + } + { + dependencies: ["3471547B56F467EA"] + id: "3E86D898338C7C73" + rewards: [{ + exclude_from_claim_all: true + id: "03435BE309ADF742" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4C0814493F3B45DC" + item: "bakery:chocolate_cake" + type: "item" + }] + x: 4.5d + y: 0.0d + } + { + dependencies: ["3471547B56F467EA"] + id: "7D239CB50E841092" + rewards: [{ + exclude_from_claim_all: true + id: "76C9F9CD15BEADF2" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "5850641EC690CB5A" + item: "bakery:chocolate_gateau" + type: "item" + }] + x: 4.5d + y: 1.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "0D9691BF1446909B" + rewards: [{ + exclude_from_claim_all: true + id: "1D6A88EAEF847237" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1B3CAA250D79F342" + item: "bakery:strawberry_cake_slice" + type: "item" + }] + x: 6.5d + y: 1.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "2432036DFE7B6058" + rewards: [{ + exclude_from_claim_all: true + id: "4DCA8271E5BC5A11" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1CDD5FE9CA07A5CA" + item: "bakery:sweetberry_cake_slice" + type: "item" + }] + x: 8.5d + y: 1.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "594E5A606835E6BE" + rewards: [{ + exclude_from_claim_all: true + id: "0A35FDAB0F9E275D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "434D9959D40CF52D" + item: "bakery:chocolate_cake_slice" + type: "item" + }] + x: 8.5d + y: 0.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "43915A5805830212" + rewards: [{ + exclude_from_claim_all: true + id: "05B490B4D173031B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "01A7E53C0C0F28BE" + item: "bakery:chocolate_gateau_slice" + type: "item" + }] + x: 6.5d + y: 2.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "7532902F57C8B219" + rewards: [{ + exclude_from_claim_all: true + id: "74D7D2EAC0416A43" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7D68E96C599CC073" + item: "bakery:bundt_cake_slice" + type: "item" + }] + x: 8.5d + y: -1.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "0295B1A42DDECB6D" + rewards: [{ + exclude_from_claim_all: true + id: "000A77E3986659EA" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "697BBDC50082B833" + item: "bakery:linzer_tart_slice" + type: "item" + }] + x: 6.5d + y: 0.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "0CE88BC446E6DF65" + rewards: [{ + exclude_from_claim_all: true + id: "4501015D05B6BDBF" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "32722CEDEAC9E4AC" + item: "bakery:glowberry_pie_slice" + type: "item" + }] + x: 7.5d + y: 2.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "3C4DCBC140FBD8DD" + rewards: [{ + exclude_from_claim_all: true + id: "0E2758B220C3BFA2" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3C175A7DAEBA044A" + item: "bakery:chocolate_tart_slice" + type: "item" + }] + x: 8.5d + y: 2.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "5B63799B36F10C80" + rewards: [{ + exclude_from_claim_all: true + id: "2CB0C5AF2DBEE462" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1EBA9752F0666C8C" + item: "bakery:apple_pie_slice" + type: "item" + }] + x: 7.5d + y: 0.0d + } + { + dependencies: ["05958D4D66A25571"] + id: "42A45A555841DA58" + rewards: [{ + exclude_from_claim_all: true + id: "2985668E299237F6" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "299427517BB5DF1C" + item: "bakery:pudding_slice" + type: "item" + }] + x: 7.5d + y: -1.0d + } + { + dependencies: ["3F2585A53DD6B36A"] + id: "60781D8DD9DF6EA7" + rewards: [{ + exclude_from_claim_all: true + id: "58415B5A941DFFF0" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0B39B8E42F045998" + item: "bakery:strawberry_jam" + type: "item" + }] + x: -1.5d + y: 1.0d + } + { + dependencies: ["3F2585A53DD6B36A"] + id: "0F3456750933BDEF" + rewards: [{ + exclude_from_claim_all: true + id: "5A6086DB8934643C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3168B872E73D0FA0" + item: "bakery:glowberry_jam" + type: "item" + }] + x: 0.5d + y: 1.0d + } + { + dependencies: ["3F2585A53DD6B36A"] + id: "3D52C2CE9ADF2283" + rewards: [{ + exclude_from_claim_all: true + id: "11F556ED9E606A49" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "5D933174EC95E394" + item: "bakery:sweetberry_jam" + type: "item" + }] + x: 0.5d + y: 2.0d + } + { + dependencies: ["3F2585A53DD6B36A"] + id: "461BA91C72481127" + rewards: [{ + exclude_from_claim_all: true + id: "6CEDD012D34BA541" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0BFA30EB900922A3" + item: "bakery:apple_jam" + type: "item" + }] + x: -1.5d + y: 2.0d + } + { + dependencies: ["3F2585A53DD6B36A"] + id: "075FE21ECC246FE2" + rewards: [{ + exclude_from_claim_all: true + id: "7415D7CFF8C279A6" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "395095F30B22B7BC" + item: "bakery:chocolate_jam" + type: "item" + }] + x: -0.5d + y: 0.0d + } + { + dependencies: ["3F2585A53DD6B36A"] + id: "1448D2918F935A3F" + rewards: [{ + exclude_from_claim_all: true + id: "58A363F48CD2532B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4056DD7454509812" + item: "bakery:pudding" + type: "item" + }] + x: -1.5d + y: 0.0d + } + { + dependencies: ["3F2585A53DD6B36A"] + id: "279F4D110B9F211E" + rewards: [{ + exclude_from_claim_all: true + id: "798048014CBB365C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "676B9877E537701B" + item: "bakery:chocolate_truffle" + type: "item" + }] + x: 0.5d + y: 0.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "48B84D435FCCAAE4" + rewards: [{ + exclude_from_claim_all: true + id: "7BED4094E43582F0" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "5810D2D8623138DA" + item: "bakery:bread" + type: "item" + }] + x: -7.0d + y: 1.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "1195FE6CBD1E743F" + rewards: [{ + exclude_from_claim_all: true + id: "4798B74916F0CC91" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "28E72E0838A4C3C8" + item: "bakery:braided_bread" + type: "item" + }] + x: -7.0d + y: 2.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "633EEC88ACADCB6C" + rewards: [{ + exclude_from_claim_all: true + id: "3D802E491DAAB4D5" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1AED298862283825" + item: "bakery:baguette" + type: "item" + }] + x: -9.0d + y: 1.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "6E70D96D813E49FF" + rewards: [{ + exclude_from_claim_all: true + id: "3A6B4A2592CE627A" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3B61614919308E87" + item: "bakery:toast" + type: "item" + }] + x: -9.0d + y: 0.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "236E9F81A5A715B6" + rewards: [{ + exclude_from_claim_all: true + id: "7BAA1516210966EA" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "40E7C6F0BB238D60" + item: "bakery:crusty_bread" + type: "item" + }] + x: -10.0d + y: 2.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "3BEE563820AC5BC8" + rewards: [{ + exclude_from_claim_all: true + id: "350B0A455B70826C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7B5E1983B63E439F" + item: "bakery:bun" + type: "item" + }] + x: -7.0d + y: 0.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "4ACA3BBF9A3C3C45" + rewards: [{ + exclude_from_claim_all: true + id: "7210F5821280B2AE" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "6CAD42B271321AF4" + item: "bakery:croissant" + type: "item" + }] + x: -7.0d + y: -1.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "3360D2A32A0AAA79" + rewards: [{ + exclude_from_claim_all: true + id: "2AFB709A8589703C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0CD335C211D60C1C" + item: "bakery:glowberry_tart" + type: "item" + }] + x: -10.0d + y: 0.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "0199AA0E8A1D8033" + rewards: [{ + exclude_from_claim_all: true + id: "1C74ECC91646667F" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "72383E9AE486C035" + item: "bakery:chocolate_tart" + type: "item" + }] + x: -10.0d + y: -1.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "35053E5D8DCFFDF9" + rewards: [{ + exclude_from_claim_all: true + id: "7BD745D1C607AB24" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "76E0C147AF8E0CCC" + item: "bakery:linzer_tart" + type: "item" + }] + x: -8.0d + y: -1.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "410DF84614C14010" + rewards: [{ + exclude_from_claim_all: true + id: "0FE652A473F5D432" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7F89C7970C39D79B" + item: "bakery:apple_pie" + type: "item" + }] + x: -9.0d + y: 2.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "2FC4D1308D8C4A9E" + rewards: [{ + exclude_from_claim_all: true + id: "4AE47B5E55A732F8" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "667E556DAE5FADFC" + item: "bakery:bundt_cake" + type: "item" + }] + x: -8.0d + y: 2.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "777AD0DCE2CCAD1B" + rewards: [{ + exclude_from_claim_all: true + id: "37369F4D4B0B890C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0C0F0D4DEB5B91DD" + item: "bakery:cornet" + type: "item" + }] + x: -8.0d + y: 0.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "3A5F48B33BA27078" + rewards: [{ + exclude_from_claim_all: true + id: "2A61D6BE8B570FEE" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "28F55465071A514D" + item: "bakery:waffle" + type: "item" + }] + x: -9.0d + y: -1.0d + } + { + dependencies: ["1D8CB1D6716D5EC6"] + id: "2FD8E8E81D673C0C" + rewards: [{ + exclude_from_claim_all: true + id: "392EF08DE6911A07" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7CF9B1615FA4FE0D" + item: "bakery:misslilitu_biscuit" + type: "item" + }] + x: -10.0d + y: 1.0d + } + { + dependencies: ["3471547B56F467EA"] + id: "50AE5017B8201E05" + rewards: [{ + exclude_from_claim_all: true + id: "380ECF115971EA9D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7E28D6C23A97EE1D" + item: { + Count: 1 + id: "bakery:rolling_pin" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.5d + y: 1.0d + } + { + dependencies: ["3471547B56F467EA"] + id: "27FB67E680D795E7" + rewards: [{ + exclude_from_claim_all: true + id: "7586151DD2DD7F13" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "29F4261BC6154CFA" + item: { + Count: 1 + id: "bakery:bread_knife" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.5d + y: -1.0d + } + ] + title: "&3&oLet's Do:&r &o&fBakery" +} diff --git a/minecraft/config/ftbquests/quests/chapters/basic_agriculture.snbt b/minecraft/config/ftbquests/quests/chapters/basic_agriculture.snbt new file mode 100644 index 0000000..96ab0f8 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/basic_agriculture.snbt @@ -0,0 +1,1985 @@ +{ + autofocus_id: "0263B1BADC2C043F" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "basic_agriculture" + group: "5271FC3947DEACC8" + icon: "thermal:flax" + id: "47BCBDF551D36028" + images: [ + { + height: 1.5d + image: "kubejs:textures/item/agricul_b.png" + rotation: 0.0d + width: 1.5d + x: -14.0d + y: -7.0d + } + { + height: 1.2d + image: "kubejs:textures/item/agricul_a.png" + rotation: 0.0d + width: 1.5d + x: -1.0d + y: -7.0d + } + { + height: 1.0d + image: "aiotbotania:item/alfsteel_hoe" + rotation: 0.0d + width: 1.0d + x: -11.0d + y: -6.0d + } + { + height: 1.0d + image: "minecraft:item/diamond_hoe" + rotation: 0.0d + width: 1.0d + x: -4.0d + y: -6.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -11.0d + y: -4.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -4.0d + y: -4.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -1.0714285714285836d + y: -5.624999999999993d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -14.107142857142868d + y: -5.660714285714285d + } + { + height: 1.0d + image: "kubejs:textures/item/wheat.png" + rotation: 0.0d + width: 1.0d + x: -0.7142857142857153d + y: -5.517857142857146d + } + { + height: 1.0d + image: "kubejs:textures/item/wheat.png" + rotation: 0.0d + width: 1.0d + x: -13.750000000000007d + y: -5.482142857142854d + } + { + height: 1.0d + image: "kubejs:textures/item/wheat.png" + rotation: -90.0d + width: 1.0d + x: -1.5d + y: -5.5d + } + { + height: 1.0d + image: "kubejs:textures/item/wheat.png" + rotation: -90.0d + width: 1.0d + x: -14.5d + y: -5.5d + } + { + height: 1.5d + image: "kubejs:textures/item/far_hat.png" + rotation: 0.0d + width: 1.5d + x: -3.0d + y: -10.0d + } + { + height: 1.7d + image: "kubejs:textures/item/agcul.png" + rotation: 0.0d + width: 7.5d + x: -7.5d + y: -10.0d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -6.857142857142861d + y: -8.871428571428574d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "79E2640D359C6E10" + rewards: [{ + count: 3 + id: "5823026F92304CE0" + item: "minecraft:wheat_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "662A027AA084F2E3" + item: "minecraft:wheat_seeds" + type: "item" + }] + x: -6.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "7559F5BC8A78974C" + rewards: [{ + count: 3 + id: "01EDCFE1CD3CF848" + item: "minecraft:pumpkin_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "0A511BD441042EA8" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/pumpkin)" + } + } + title: "Any Pumpkin Seeds" + type: "item" + }] + x: -13.5d + y: -4.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "1F552C0DA2741587" + rewards: [{ + count: 3 + id: "51369A4A7EF26807" + item: "minecraft:melon_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "6741DD6CC1155958" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/melon)" + } + } + title: "Any Melon Seeds" + type: "item" + }] + x: -12.5d + y: -4.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "03D6822411AF1DD9" + rewards: [{ + count: 3 + id: "5E421C944D9E05DB" + item: "minecraft:beetroot_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "01F0F762672FB9DA" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/beetroot)" + } + } + title: "Any Beetroot seeds" + type: "item" + }] + x: 0.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "3916DED23F800E93" + rewards: [{ + count: 3 + id: "6A13D1B11FF1A84E" + item: "thermal:flax_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "576BB7EDF7B2187B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/flax)" + } + } + title: "Any Flax Seeds" + type: "item" + }] + x: -4.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "6DEFAC2ABAC068DD" + rewards: [{ + id: "13DA15E433661B89" + item: "farmersdelight:straw" + random_bonus: 3 + type: "item" + }] + tasks: [{ + id: "0D050CCF2AFCB70C" + item: "farmersdelight:straw" + type: "item" + }] + x: 0.5d + y: -4.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "313FAE0043E75DF0" + rewards: [{ + count: 2 + id: "5414F05804273A12" + item: "minecraft:carrot" + random_bonus: 3 + type: "item" + }] + tasks: [{ + id: "6F50D85344B18267" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:crops/carrot)" + } + } + title: "Any crops Carrot" + type: "item" + }] + x: -15.5d + y: -4.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "44756C77E963E90C" + rewards: [{ + count: 2 + id: "013180C6BFF273CD" + item: "minecraft:potato" + random_bonus: 3 + type: "item" + }] + tasks: [{ + id: "67070AA9E2B76A5F" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:crops/potato)" + } + } + title: "Any Potato" + type: "item" + }] + x: -14.5d + y: -4.0d + } + { + dependencies: ["79E2640D359C6E10"] + id: "52275937BDA24F08" + rewards: [{ + id: "70A66B090540B2AD" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "680D1B7F0B6E5129" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/wheat" + } + } + title: "Any #forge:crops/wheat" + type: "item" + }] + title: "Wheat" + x: -6.5d + y: -0.5d + } + { + dependencies: ["03D6822411AF1DD9"] + id: "413C3145970C3311" + rewards: [{ + id: "1D5FE5900A2C9047" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "53703F4ED45CEC7C" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/beetroot" + } + } + title: "Any #forge:crops/beetroot" + type: "item" + }] + title: "Beetroot" + x: 0.5d + y: -0.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "268C28EFED471EBB" + rewards: [{ + id: "5B11D222E48ADA83" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "08B105CDCF18F081" + item: { + Count: 1 + id: "quark:seed_pouch" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -9.5d + y: -7.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "2BD67FC070D9F48D" + rewards: [{ + count: 2 + id: "2C8B66668426F65C" + item: "minecraft:sweet_berries" + random_bonus: 3 + type: "item" + }] + tasks: [{ + id: "21F9CA67302A0DA0" + item: "minecraft:sweet_berries" + type: "item" + }] + x: -8.5d + y: -3.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "1D942F24F0200718" + rewards: [{ + count: 2 + id: "18F6F31B3608FB1A" + item: "ars_nouveau:sourceberry_bush" + random_bonus: 3 + type: "item" + }] + tasks: [{ + id: "64591A46F47C0E7C" + item: "ars_nouveau:sourceberry_bush" + type: "item" + }] + x: -7.5d + y: -3.0d + } + { + dependencies: ["26BAC59CF7834E41"] + id: "23D25FCB0C893400" + rewards: [{ + id: "3FDBE3AFD7EE499D" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "1DDC4CC987043858" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(quark:apple_crate)item(thermal:apple_block))" + } + } + title: "Apple Crate" + type: "item" + }] + x: -2.5d + y: -3.0d + } + { + dependencies: ["313FAE0043E75DF0"] + id: "6306100328FD1576" + rewards: [{ + id: "3BDEB59A377F9936" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "292E810079EF5EF5" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(farm_and_charm:carrot_bag)item(farmersdelight:carrot_crate))" + } + } + title: "Carrot Crate" + type: "item" + }] + x: -15.5d + y: -3.0d + } + { + dependencies: ["44756C77E963E90C"] + id: "015D871BC79CEBA5" + rewards: [{ + id: "13628C52EBE9366F" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "38EF98FC83BE17E3" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(farm_and_charm:potato_bag)item(farmersdelight:potato_crate))" + } + } + title: "Potato Crate" + type: "item" + }] + x: -14.5d + y: -3.0d + } + { + dependencies: ["413C3145970C3311"] + id: "1CEB6B0EE29F2F24" + rewards: [{ + id: "5555D952B08698B1" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "529925BC2FA27F89" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(farm_and_charm:beetroot_bag)item(farmersdelight:beetroot_crate))" + } + } + title: "Beetroot Crate" + type: "item" + }] + title: "Any Breetroot Crate" + x: 0.5d + y: 0.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "06CBD180CD184FBC" + rewards: [{ + count: 3 + id: "0C82BD6FBDCBD3FE" + item: "thermal:corn_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "58C019392CA79962" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "croptopia:corn_seed" + } + { + Count: 1b + id: "culturaldelights:corn_kernels" + } + { + Count: 1b + id: "thermal:corn_seeds" + } + ] + } + } + title: "Any Corn Seeds" + type: "item" + }] + x: -14.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "33C8FF95807426B4" + rewards: [{ + count: 3 + id: "0893E4B3D3B6C9A1" + item: "thermal:onion_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "1FC6885F347C722C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/onion)" + } + } + title: "Any Onion Seeds" + type: "item" + }] + x: -13.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "6D66FA9FF2740FC5" + rewards: [{ + count: 3 + id: "42315E8C5E7E7863" + item: "thermal:radish_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "0EA12B3DB153516D" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/radish)" + } + } + title: "Any Radish seeds" + type: "item" + }] + x: -12.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "2CB6E6F205CA3EAC" + rewards: [{ + count: 3 + id: "1B754ED3C6D1D302" + item: "sushigocrafting:rice_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "55DCD0DF18D02851" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/rice)" + } + } + title: "Any Rice Seeds" + type: "item" + }] + x: -1.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "24ECADE3CD4193E0" + rewards: [{ + count: 3 + id: "4E0919C60DCB54B4" + item: "thermal:sadiroot_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "2820F6732012C71E" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/sadiroot)" + } + } + title: "Any Sadiroot seeds" + type: "item" + }] + x: -11.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "775ADED3E0FEE5C0" + rewards: [{ + count: 3 + id: "3E5EAEB7D869A0A4" + item: "thermal:bell_pepper_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "1FDD6E3F961B3ACB" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/bell_pepper)" + } + } + title: "Any Bell Pepper seeds" + type: "item" + }] + x: -9.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "4CF3B507D85AB4FC" + rewards: [{ + count: 3 + id: "2902C8EEFDADEC67" + item: "thermal:eggplant_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "43577C9AC9337537" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/eggplant)" + } + } + title: "Any Eggplant seeds" + type: "item" + }] + x: -15.5d + y: -1.5d + } + { + dependencies: ["4CF3B507D85AB4FC"] + id: "63F323CCEFB22465" + rewards: [{ + id: "76E1C12D3BD0C67F" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "5ED217EF355CD0C4" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/eggplant" + } + } + title: "Any #forge:crops/eggplant" + type: "item" + }] + title: "Eggplant" + x: -15.5d + y: -0.5d + } + { + dependencies: ["63F323CCEFB22465"] + id: "518D4A2268207F0C" + rewards: [{ + id: "0079032A072E9C52" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "210B42FDF4C0E68E" + item: "thermal:eggplant_block" + title: "Eggplant Crate" + type: "item" + }] + x: -15.5d + y: 0.5d + } + { + dependencies: ["06CBD180CD184FBC"] + id: "4FFD17BA9503CE3B" + rewards: [{ + id: "79887FEB7D3406A1" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "09E7FF595B3BAFAD" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/corn" + } + } + title: "Any #forge:crops/corn" + type: "item" + }] + title: "Corn" + x: -14.5d + y: -0.5d + } + { + dependencies: ["4FFD17BA9503CE3B"] + id: "5D5E30C6606C36BE" + rewards: [{ + id: "2A80BE2A5AAD2978" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "4FFDF9EE22D2847D" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(farm_and_charm:corn_bag)item(thermal:corn_block))" + } + } + title: "Corn Crate" + type: "item" + }] + x: -14.5d + y: 0.5d + } + { + dependencies: ["33C8FF95807426B4"] + id: "099B9747D9845771" + rewards: [{ + id: "6E60CD05CB5904D0" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0A5586A0DA86E44F" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/onion" + } + } + title: "Any #forge:crops/onion" + type: "item" + }] + title: "Onion" + x: -13.5d + y: -0.5d + } + { + dependencies: ["099B9747D9845771"] + id: "45A698E634E3674C" + rewards: [{ + id: "6E33AD2F9EC02335" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "4D3891A12EB8F436" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(farm_and_charm:onion_bag)item(thermal:onion_block))" + } + } + title: "Onion Crate" + type: "item" + }] + x: -13.5d + y: 0.5d + } + { + dependencies: ["6D66FA9FF2740FC5"] + id: "740AC4E27E6A2D59" + rewards: [{ + id: "337615B67E472D5E" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "5A86EB2239C52DE6" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/radish" + } + } + title: "Any #forge:crops/radish" + type: "item" + }] + title: "Radish" + x: -12.5d + y: -0.5d + } + { + dependencies: ["740AC4E27E6A2D59"] + id: "2542A89BCD71D5D4" + rewards: [{ + id: "3214094713D6F810" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "4D3F38FECB91FDE7" + item: "thermal:radish_block" + title: "Radish Crate" + type: "item" + }] + x: -12.5d + y: 0.5d + } + { + dependencies: ["24ECADE3CD4193E0"] + id: "659D8C33A176393D" + rewards: [{ + id: "09C8494E7EACE0A7" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0F728B1FA9AD2E87" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/sadiroot" + } + } + title: "Any #forge:crops/sadiroot" + type: "item" + }] + title: "Sadiroot" + x: -11.5d + y: -0.5d + } + { + dependencies: ["659D8C33A176393D"] + id: "0065F99FD9EDA8E2" + rewards: [{ + id: "2AE521830E3015CA" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "67B267D4F87F7A99" + item: "thermal:sadiroot_block" + title: "Sadiroot Crate" + type: "item" + }] + x: -11.5d + y: 0.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "42B04FFE3871CAF4" + rewards: [{ + count: 3 + id: "7F183C802530E6A7" + item: "thermal:green_bean_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "123B926E7258D860" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/green_bean)" + } + } + title: "Any Green Bean Seeds" + type: "item" + }] + x: -10.5d + y: -1.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "261C0F3A757E5615" + rewards: [{ + count: 3 + id: "2FBEBC33F338A44D" + item: "thermal:tomato_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "68F97C7B803228FD" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/tomato)" + } + } + title: "Any Tomato seeds" + type: "item" + }] + x: -8.5d + y: -1.5d + } + { + dependencies: ["42B04FFE3871CAF4"] + id: "70DFFD8234BB10BE" + rewards: [{ + id: "279946FD942CB263" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "5E19FE6C242DBD20" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/green_bean" + } + } + title: "Any Green Bean" + type: "item" + }] + title: "Green Beans" + x: -10.5d + y: -0.5d + } + { + dependencies: ["70DFFD8234BB10BE"] + id: "7AA47A81B471C92E" + rewards: [{ + id: "7A510B0BE259BC12" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "243D64AE34EB5084" + item: "thermal:green_bean_block" + title: "Green Bean Crate" + type: "item" + }] + x: -10.5d + y: 0.5d + } + { + dependencies: ["775ADED3E0FEE5C0"] + id: "0EC9F6381F602588" + rewards: [{ + id: "1368855CC13834D8" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "7D62519F96F21039" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:crops/bell_pepper)" + } + } + title: "Any Bell Pepper" + type: "item" + }] + x: -9.5d + y: -0.5d + } + { + dependencies: ["0EC9F6381F602588"] + id: "454479551B26E365" + rewards: [{ + id: "71D0C4E506F8B730" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "1E9414C7A98AA151" + item: "thermal:bell_pepper_block" + title: "Bell Pepper Crate" + type: "item" + }] + x: -9.5d + y: 0.5d + } + { + dependencies: ["261C0F3A757E5615"] + id: "003ECD975D1EBE31" + rewards: [{ + id: "4138CBBDCE9848CD" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "7F0FDD9A5F3783F0" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:crops/tomato)" + } + } + title: "Any Tomato" + type: "item" + }] + x: -8.5d + y: -0.5d + } + { + dependencies: ["003ECD975D1EBE31"] + id: "1A64008E92ED3521" + rewards: [{ + id: "357E3E7721A66C18" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "4D581DEE62CA3C1C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(farm_and_charm:tomato_bag)item(thermal:tomato_block))" + } + } + title: "Tomato Crate" + type: "item" + }] + x: -8.5d + y: 0.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "26BAC59CF7834E41" + rewards: [{ + id: "7E1309AFE71AED9F" + item: "minecraft:apple" + random_bonus: 3 + type: "item" + }] + tasks: [{ + id: "30953103745C6A04" + item: "minecraft:apple" + type: "item" + }] + x: -2.5d + y: -4.0d + } + { + dependencies: ["52275937BDA24F08"] + id: "1DAED41708F59166" + rewards: [{ + id: "49D12826960503A4" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "31515EB53115F460" + item: "minecraft:hay_block" + type: "item" + }] + x: -6.5d + y: 0.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "376292C2B5855BA3" + rewards: [{ + count: 3 + id: "4B2E215FA4E8FDC0" + item: "thermal:barley_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "541BEDC0444DB3F6" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/barley)" + } + } + title: "Any Barley Seeds" + type: "item" + }] + x: -5.5d + y: -1.5d + } + { + dependencies: ["376292C2B5855BA3"] + id: "6AC13BD922F8EA74" + rewards: [{ + id: "16E47159FBF40D76" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "68719DB25A6DCBE8" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/barley" + } + } + title: "Any #forge:crops/barley" + type: "item" + }] + title: "Barley" + x: -5.5d + y: -0.5d + } + { + dependencies: ["2CB6E6F205CA3EAC"] + id: "3B386ADCE3D0D09C" + rewards: [{ + id: "79C239AAAB80030C" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "26C144B17FF1BAC4" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/rice" + } + } + title: "Any #forge:crops/rice" + type: "item" + }] + title: "Rice" + x: -1.5d + y: -0.5d + } + { + dependencies: ["6AC13BD922F8EA74"] + id: "0CFE5B6399802E31" + rewards: [{ + id: "3D3143640DEB8147" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "65930CF23AA8F04A" + item: "thermal:barley_block" + type: "item" + }] + x: -5.5d + y: 0.5d + } + { + dependencies: ["3B386ADCE3D0D09C"] + id: "55B531114FD82527" + rewards: [{ + id: "02C5899A040C1B1E" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "66448DF57FC973FB" + item: "thermal:rice_block" + title: "Rice Sack" + type: "item" + }] + x: -1.5d + y: 0.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "23C845F1F06011E5" + rewards: [{ + count: 3 + id: "19AE06518FFA3B12" + item: "thermal:spinach_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "0ACC427F54F5179A" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/spinach)" + } + } + title: "Any Spinach Seeds" + type: "item" + }] + x: -2.5d + y: -1.5d + } + { + dependencies: ["23C845F1F06011E5"] + id: "4F1A84D6D25FC6EB" + rewards: [{ + id: "354941B3EF4317F6" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0B567462D2BAF731" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/spinach" + } + } + title: "Any #forge:crops/spinach" + type: "item" + }] + title: "Spinach" + x: -2.5d + y: -0.5d + } + { + dependencies: ["4F1A84D6D25FC6EB"] + id: "39286FCE4608FEBB" + rewards: [{ + id: "74C6A32486230BD9" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "0823FD19E8BF0E16" + item: "thermal:spinach_block" + title: "Spinach Crate" + type: "item" + }] + x: -2.5d + y: 0.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "46783DEC79D20577" + rewards: [{ + count: 3 + id: "1A5B34E312141F11" + item: "thermal:amaranth_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "435211113A97338B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/amaranth)" + } + } + title: "Any Amaranth Seeds" + type: "item" + }] + x: -3.5d + y: -1.5d + } + { + dependencies: ["46783DEC79D20577"] + id: "0E72BEAA65AD7D70" + rewards: [{ + id: "7224551FE80776F4" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "1D62395D6D627131" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/amaranth" + } + } + title: "Any #forge:crops/amaranth" + type: "item" + }] + title: "Amaranth" + x: -3.5d + y: -0.5d + } + { + dependencies: ["0E72BEAA65AD7D70"] + id: "219022631E925C7A" + rewards: [{ + id: "672F9C17FE5C6ADE" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "12ADF6CF0090D537" + item: "thermal:amaranth_block" + type: "item" + }] + x: -3.5d + y: 0.5d + } + { + dependencies: ["7559F5BC8A78974C"] + id: "4174D2186D8714D6" + rewards: [{ + id: "29593D17F97074B4" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0A2534497AD7BD25" + item: { + Count: 1 + id: "minecraft:pumpkin" + tag: { } + } + type: "item" + }] + x: -13.5d + y: -3.0d + } + { + dependencies: ["1F552C0DA2741587"] + id: "5A33ACCBCF0E9D34" + rewards: [{ + id: "23B67AFE7B283662" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "5ACCD255A365A50F" + item: { + Count: 1 + id: "minecraft:melon" + tag: { } + } + type: "item" + }] + x: -12.5d + y: -3.0d + } + { + dependencies: ["3916DED23F800E93"] + id: "0FEA23EE539787AD" + rewards: [{ + id: "533C82498508A466" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "4DC01DE25B287EE2" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/flax" + } + } + title: "Any #forge:crops/flax" + type: "item" + }] + title: "Flax" + x: -4.5d + y: -0.5d + } + { + dependencies: ["0FEA23EE539787AD"] + id: "78DD46AAF70ADCD7" + rewards: [{ + id: "473B204C58CB2E37" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "5B37E1942C9EA480" + item: "thermal:flax_block" + type: "item" + }] + x: -4.5d + y: 0.5d + } + { + dependencies: ["6DEFAC2ABAC068DD"] + id: "1E16F68DCB08F9A1" + rewards: [{ + id: "58EC506C16DE0FD7" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "1C5CF5B31BF53689" + item: "farmersdelight:straw_bale" + type: "item" + }] + x: 0.5d + y: -3.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "3B51E5842826FC29" + rewards: [{ + count: 2 + id: "58EAE7BEAECD8C98" + item: "minecraft:bamboo" + random_bonus: 3 + type: "item" + }] + tasks: [{ + id: "04A291E810A304C9" + item: "minecraft:bamboo" + type: "item" + }] + x: -1.5d + y: -4.0d + } + { + dependencies: ["3B51E5842826FC29"] + id: "6D747A7B5625970A" + rewards: [{ + id: "0041B9F0BA4821B0" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "5ECD774734E509F1" + item: "minecraft:bamboo_block" + type: "item" + }] + x: -1.5d + y: -3.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "7C6B9862257DF97A" + rewards: [{ + count: 2 + id: "13D08F6C8A2529AD" + item: "minecraft:sugar_cane" + random_bonus: 5 + type: "item" + }] + tasks: [{ + id: "284AC96F92259177" + item: { + Count: 1 + id: "minecraft:sugar_cane" + tag: { } + } + type: "item" + }] + x: -0.5d + y: -4.0d + } + { + dependencies: ["7C6B9862257DF97A"] + id: "7AD134B23E35658D" + rewards: [{ + id: "03DA1A930A5DCB29" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "1DDD16B0A8694725" + item: "thermal:sugar_cane_block" + type: "item" + }] + x: -0.5d + y: -3.0d + } + { + dependencies: ["1D255DD5D32DA110"] + id: "16752C75AB6B8752" + rewards: [{ + id: "48BAF9A2BDC4EF16" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "42360D05077EB6E3" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:crops/peanut" + } + } + title: "Any #forge:crops/peanut" + type: "item" + }] + title: "Peanuts" + x: -0.5d + y: -0.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "1D255DD5D32DA110" + rewards: [{ + count: 3 + id: "2824F738042B696C" + item: "thermal:peanut_seeds" + random_bonus: 4 + type: "item" + }] + tasks: [{ + id: "49FBD1D3B0A32F47" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:seeds/peanut)" + } + } + title: "Any Peanut Seeds" + type: "item" + }] + x: -0.5d + y: -1.5d + } + { + dependencies: ["16752C75AB6B8752"] + id: "2AFC0B5C9297996F" + rewards: [{ + id: "310873D3A1A842EC" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "1DD48B2393A940E1" + item: "thermal:peanut_block" + title: "Peanut Sack" + type: "item" + }] + x: -0.5d + y: 0.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "0CEFB0FBF2421E0B" + rewards: [ + { + id: "7A18B7690B7E887A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1F82A55B58E91C92" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2C2C468D7FBC5653" + item: { + Count: 1 + id: "cyclic:sprinkler" + tag: { } + } + type: "item" + }] + x: -7.5d + y: -7.0d + } + { + id: "0263B1BADC2C043F" + min_width: 300 + rewards: [ + { + exclude_from_claim_all: true + id: "044DA89E9C5A84C2" + table_id: 5709524483953410607L + type: "random" + } + { + exclude_from_claim_all: true + id: "726D88EABC3F4D24" + table_id: 5987657478296879679L + type: "random" + } + ] + shape: "gear" + size: 1.5d + tasks: [{ + id: "316363CE3CBF935C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:buckets/water)" + } + } + title: "Any Water Bucket" + type: "item" + }] + title: "Any Water Buckets" + x: -7.5d + y: -8.25d + } + { + dependencies: ["0263B1BADC2C043F"] + description: ["Snad will increase the growth rate for sugarcane, cacti and any other plantable crop."] + hide_dependency_lines: true + id: "46848689837985E6" + rewards: [{ + id: "6BBCCEAC9BF217FF" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "5394AB3EB2C182FF" + item: "snad:snad" + type: "item" + }] + title: "The Snad" + x: -6.5d + y: -7.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "40467D90AE966A2B" + rewards: [{ + count: 2 + id: "28266568BD71EF69" + item: "minecraft:glow_berries" + random_bonus: 3 + type: "item" + }] + tasks: [{ + id: "37CFA08861EB1EFE" + item: "minecraft:glow_berries" + type: "item" + }] + x: -6.5d + y: -3.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "3EF924184E526FA5" + rewards: [{ + id: "283C08255CEC6D89" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "30C19D1A747E5F30" + item: "minecraft:bone_meal" + type: "item" + }] + x: -8.5d + y: -7.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "098DF6FFD516862B" + rewards: [{ + id: "54505D1A8045FE87" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "2E3C35F0706E6731" + item: { + Count: 1 + id: "cyclic:terra_preta" + tag: { } + } + type: "item" + }] + x: -6.5d + y: -6.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "57F4AF264DBB2F1A" + rewards: [{ + id: "4DB55B6595314A6B" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "40D25A66318BB49E" + item: { + Count: 1 + id: "cyclic:terra_glass" + tag: { } + } + type: "item" + }] + x: -8.5d + y: -6.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "4A3108020F9C7C13" + rewards: [ + { + id: "5E59042A3448262F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "436CF3F5AF3D8B8E" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "4640180968EE603B" + item: "reliquary:fertile_lily_pad" + type: "item" + }] + x: -5.5d + y: -7.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "75A7F6E7A82C6FD6" + rewards: [ + { + id: "71F24D29A5EB7E4E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2AC23395C4A9EE24" + table_id: 5987657478296879679L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "720BAEBDC728FAAC" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "farmingforblockheads:market" + } + type: "item" + }] + x: -7.5d + y: -5.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "611DDC4A90F93E77" + rewards: [{ + id: "44089A90A5FDA144" + type: "xp" + xp: 100 + }] + tasks: [{ + count: 4L + id: "6089A7A48D8D8DE3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "farmingforblockheads:green_fertilizer" + } + type: "item" + }] + title: "&aGreen Fertilizer" + x: -6.5d + y: -5.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "1F0B32B83E5F8978" + rewards: [{ + id: "0AE64DC67F1132ED" + type: "xp" + xp: 100 + }] + tasks: [{ + count: 4L + id: "607F8888C86AFE13" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "farmingforblockheads:red_fertilizer" + } + type: "item" + }] + title: "&cRed Fertilizer" + x: -7.5d + y: -6.0d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "1C011ED99A09AE75" + rewards: [{ + id: "0177DE8EEE3EDA3A" + type: "xp" + xp: 100 + }] + tasks: [{ + count: 4L + id: "45E4464FAD56B2FA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "farmingforblockheads:yellow_fertilizer" + } + type: "item" + }] + title: "&eYellow Fertilizer" + x: -8.5d + y: -5.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "4C1502994FB98C67" + rewards: [{ + id: "7AF022D471D2AD58" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "0DA3160B4F33ECD4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "farmingforblockheads:feeding_trough" + } + type: "item" + }] + x: -8.5d + y: -4.5d + } + { + dependencies: ["0263B1BADC2C043F"] + hide_dependency_lines: true + id: "3BDFF367362863B4" + rewards: [{ + id: "4911F3352A7388A8" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "05EE840CF91C71FE" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "farmingforblockheads:chicken_nest" + } + type: "item" + }] + x: -6.5d + y: -4.5d + } + ] + title: "&3&oBasic Agriculture" +} diff --git a/minecraft/config/ftbquests/quests/chapters/bloodmagic.snbt b/minecraft/config/ftbquests/quests/chapters/bloodmagic.snbt new file mode 100644 index 0000000..9fef9a1 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/bloodmagic.snbt @@ -0,0 +1,2250 @@ +{ + autofocus_id: "375FF0D8ACD2E17F" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "bloodmagic" + group: "4814F40AB34427B6" + icon: "bloodmagic:altar" + id: "004F28C5C85F467B" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -29.285714285714285d + y: -3.5821428571428626d + } + { + height: 1.4d + image: "kubejs:item/blood_magic_logo" + order: 1 + rotation: 0.0d + width: 8.0d + x: -24.0d + y: -5.0d + } + { + height: 1.0d + image: "vampirism:block/impure_blood_flow" + rotation: 0.0d + width: 0.03125d + x: -20.0d + y: -5.0d + } + { + height: 1.0d + image: "evilcraft:block/blood_flow" + rotation: 0.0d + width: 0.03125d + x: -18.5d + y: -5.0d + } + { + height: 1.0d + image: "kubejs:item/bloodpar" + rotation: 0.0d + width: 1.0d + x: -20.60714285714286d + y: -4.43928571428572d + } + { + height: 1.0d + image: "bloodmagic:item/intermediatecuttingfluid" + rotation: 0.0d + width: 1.0d + x: -27.607142857142854d + y: -4.939285714285717d + } + { + height: 1.0d + image: "bloodmagic:textures/entities/bloodelytra.png" + rotation: 0.0d + width: 2.0d + x: -25.839285714285715d + y: -4.225000000000001d + } + { + height: 1.0d + image: "bloodmagic:block/strong_tau_8" + rotation: 0.0d + width: 1.0d + x: -22.0d + y: 2.5d + } + { + height: 1.0d + image: "bloodmagic:textures/entities/fireprojectile.png" + rotation: 0.0d + width: 1.0d + x: -12.5d + y: 0.5d + } + { + height: 1.0d + image: "bloodmagic:item/mailorder" + rotation: 0.0d + width: 1.0d + x: -27.0d + y: 3.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1003584229390682d + x: -18.0d + y: 3.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1003584229390682d + x: -11.0d + y: 3.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1003584229390682d + x: -27.0d + y: -3.0d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1003584229390682d + x: -30.0d + y: 3.5d + } + { + height: 1.0d + image: "botania:item/corporea_spark_master" + rotation: 0.0d + width: 1.0d + x: -25.214285714285715d + y: -4.903571428571432d + } + { + height: 1.0d + image: "kubejs:item/lifestealer_skull_item" + rotation: 0.0d + width: 1.0d + x: -17.0d + y: -5.0d + } + ] + order_index: 4 + progression_mode: "flexible" + quest_links: [ ] + quests: [ + { + dependencies: ["0FFFAB42C8994C3B"] + description: [ + "Welcome to &4Blood Magic&r!" + "" + "It adds an expansive life-based magic system which spans rituals, sacrifices, summoning, alchemy and spell creation. In &4Blood Magic&r, the player collects &2Life Essence&r by sacrificing their &o&bown health&r or the &o&bhealth of mobs&r to power their &4Blood Magic&r creations on their quest to become an &dArchmage&r." + "" + "&o&bWhat do I need to get started&r?" + "Well, you can really get your first start as soon as you have some &cRedstone&r, &3Iron&r, &6Gold&r, &9Lapis Lazuli&r, and a couple of &bDiamonds&r. But delving deeper into the mod can get quite... &nexpensive&r." + ] + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "bloodmagic:guide" + } + } + id: "3A9B90A453C933C4" + min_width: 300 + rewards: [ + { + id: "3D1B65B9B393B3F4" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "443F77C8DD77E4D7" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&oScribe's Table&r quest*" + tasks: [{ + id: "27529E8EA019A89A" + type: "checkmark" + }] + title: "Welcome to &4Blood Magic" + x: -30.0d + y: -3.0d + } + { + dependencies: ["3A9B90A453C933C4"] + description: [ + "To get started with &4Blood Magic&r, we'll need to collect some &cblood&r." + "" + "To do this, we'll need to craft the &eSacrificial Knife&r and the &6Blood Altar&r." + "" + "Go ahead and place the &6Altar&r somewhere with &o&bplenty of space&r around it. We might want to &o&bexpand&r on it more in the future." + "" + "To acquire &cblood&r, stand by the &6Altar&r and use the &eKnife&r. You'll take a little damage, but it's for the cause." + "" + "Each stab will generate around &o&b200&r &2LF&r." + ] + icon: "bloodmagic:altar" + id: "3DA7D0BA045CE7AB" + min_width: 300 + rewards: [ + { + id: "2DE0010C8535C460" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "6C170B3E516DDEA5" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.0d + subtitle: "&oCollecting &cBlood" + tasks: [ + { + id: "49E5D4B7057851E7" + item: { + Count: 1 + id: "bloodmagic:sacrificialdagger" + tag: { } + } + type: "item" + } + { + id: "41D32B8152806B22" + item: "bloodmagic:altar" + type: "item" + } + ] + title: "&fBlood Altar&r &b&oTier: I" + x: -30.0d + y: -1.0d + } + { + dependencies: ["3DA7D0BA045CE7AB"] + description: [ + "&6Blank Slates&r are a crafting ingredient that are primarily used in &aRune&r and &9Sigil&r creation." + "" + "Placing stone in the &cAltar&r with &o&b1,000&r &2LP&r inside will create &6Blank Slates&r. You'll need a lot of these." + ] + id: "6AAB831CB3FB536A" + min_width: 250 + rewards: [ + { + id: "01162A1F9A3B0A4D" + type: "xp" + xp: 25 + } + { + id: "310555F72629E982" + item: "bloodmagic:blankslate" + type: "item" + } + { + exclude_from_claim_all: true + id: "6646DF0AA943222E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "7CBFE84B4FE3DC01" + item: "bloodmagic:blankslate" + type: "item" + }] + title: "Blank Slates" + x: -27.0d + y: -1.0d + } + { + dependencies: ["6AAB831CB3FB536A"] + description: [ + "To craft even more items using blood, we'll want to upgrade our &6Altar&r by surrounding it in &3Blank Runes&r." + "" + "If you want, you can replace the &3Blank Runes&r in each of the cardinal directions to runes like the &aSpeed Rune&r. These runes can affect how the &6Altar&r functions." + "" + "You can also visualize an example of how to build a &o&bTier: II Altar&r using the &9Guidebook&r." + "" + "&aSpeed Runes&r are the only runes available, besides &3Blank Runes&r, until you make a &o&bTier: II Altar&r, but can be replaced later on." + ] + icon: "bloodmagic:altar" + id: "4B51189C36B8D291" + min_width: 350 + rewards: [ + { + id: "4C507A1D9293C777" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0CC3304883A3F66A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.0d + tasks: [{ + count: 8L + id: "4CDFCAAED8ABB615" + item: "bloodmagic:blankrune" + type: "item" + }] + title: "&fBlood Altar&r &b&oTier: II" + x: -24.0d + y: -1.0d + } + { + dependencies: ["4B51189C36B8D291"] + description: [ + "With our &6Blood Altar&r now at &o&bTier: II&r, we can make even better &3Runes&r." + "" + "We'll need some &9Reinforced Slate&r to continue our journey in &4Blood Magic&r, including doing some &dRituals&r." + ] + id: "2C3CA7B9D1A7DC47" + min_width: 250 + rewards: [ + { + id: "448B572D6386F058" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6BDE4FC3AE37EEEA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4CEA3279AF0BEE01" + item: "bloodmagic:reinforcedslate" + type: "item" + }] + x: -22.0d + y: -1.0d + } + { + dependencies: ["3DA7D0BA045CE7AB"] + description: [ + "The &cWeak Blood Orb&r is used to store blood (&2LP&r). It can be used as a way to &o&btransport blood&r to and from &6Altars&r." + "" + "To craft this, you'll need to place a diamond on top of the &6Blood Altar&r, then generate enough &2LP&r to craft it." + "" + "To charge a &cBlood Orb&r, you can &eRight-click&r to &o&bsacrifice some of your health&r to the &cOrb&r. This also links your &dSoul&r to your &dSoul Network&r." + "" + "You can also place the &cOrb&r in a &6Blood Altar&r that has some &2LP&r in it. It'll drain faster the more &aSpeed Runes&r it has." + ] + id: "5BF29A151A04FEF0" + min_width: 300 + rewards: [ + { + id: "03FD3DE028A7D19E" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "4CBDBA4EB3277717" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "&oHolds a max of &b5,000&r &2LP" + tasks: [{ + id: "65E0BEE90716B68C" + item: "bloodmagic:weakbloodorb" + type: "item" + }] + x: -28.5d + y: -2.0d + } + { + dependencies: ["375FF0D8ACD2E17F"] + description: [ + "With our &o&bTier: III&r &6Blood Altar&r, we can start performing &dRituals&r." + "" + "Rituals require a &9Master Ritual Stone&r and enough regular &2Ritual Stones&r to create." + "" + "Start by crafting a bunch of &2Ritual Stones&r as well as a &9Master Ritual Stone&r. These are the basic blocks we'll need to start doing rituals." + ] + icon: "bloodmagic:masterritualstone" + id: "4578C0EE82F66BD9" + min_width: 300 + rewards: [ + { + id: "706F037413BB3D25" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "265985087AEB0837" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "6995C629EAA148F5" + item: "bloodmagic:masterritualstone" + type: "item" + } + { + count: 8L + id: "32F2BC0D3AA69E25" + item: "bloodmagic:ritualstone" + type: "item" + } + ] + title: "&b&oTier: I&r &2Rituals" + x: -18.0d + y: 0.5d + } + { + dependencies: ["2C3CA7B9D1A7DC47"] + description: [ + "This rune &o&bincreases&r the amount of &2LP&r gained from taking blood away from &o&bnon-player&r entities." + "" + "Each one gives a bonus of &o&b10%&r additively per rune." + ] + id: "08F28A9E4DEA7CD0" + min_width: 250 + rewards: [ + { + id: "23EBA079A86E799A" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "2D8F8381156A91F3" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6C6CDA42FB379A80" + item: "bloodmagic:sacrificerune" + type: "item" + }] + x: -22.5d + y: -2.5d + } + { + dependencies: ["4B51189C36B8D291"] + description: [ + "Now you can &o&bstab others&r to use their &cBlood&r instead!" + "" + "Stabbing any mob within two blocks of your &6Altar&r with one of these will insta-kill them and drain their &2LP&r into your &6Altar&r!" + "" + "If you have &dRunes of Sacrifice&r around your &6Altar&r, you'll get more per kill." + ] + id: "5361F72BAB72D318" + min_width: 250 + rewards: [ + { + id: "050236926D942519" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "4D19A15C054E2344" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5D7178C2EF652773" + item: "bloodmagic:daggerofsacrifice" + type: "item" + }] + x: -23.5d + y: -2.5d + } + { + dependencies: [ + "6AAB831CB3FB536A" + "506D48AD9FB2E89D" + ] + description: [ + "The &4Hellfire Forge&r is one of the main device needed for creating certain items in &cBlood Magic&r." + "" + "It is powered by &7Demon Will&r, and can be used to create several items including the &dSentient Sword&r." + ] + id: "7BA086472D87D705" + min_width: 300 + rewards: [ + { + id: "65BAEBCF71A95208" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "283C1A6729D9C09B" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "59D4952D3D164F6D" + item: "bloodmagic:soulforge" + type: "item" + }] + x: -28.5d + y: 0.5d + } + { + dependencies: ["11D37E7391B49A88"] + description: [ + "The &dSentient Sword&r allows you to collect &3Demon Will&r a lot easier." + "" + "Simply &o&bkill a hostile mob&r with the sword, and the mob will drop &3Demon Will&r." + ] + hide_dependency_lines: true + id: "7C8D74692C963000" + rewards: [ + { + id: "40D83B6E12A16952" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "425451EF156280B9" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "72A92CB3A5DA9044" + item: { + Count: 1 + id: "bloodmagic:soulsword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -27.0d + y: 0.5d + } + { + dependencies: ["7BA086472D87D705"] + description: [ + "The &aPetty Tartaric Gem&r is a storage for &3Demonic Will&r. This will store up to a maximum of &o&b64&r &3Will&r." + "" + "This &3Demonic Will&r can be gathered with the &bRudimentary Snare&r or &dSentient Sword&r and is &nautomatically&r stored into the gem, when the player picks up a &3Demonic Will&r. " + "" + "If you drop any &3Demon Will&r you have in your inventory, the &6Gem&r will absorb it into its storage." + "" + "The &aPetty Tartaric Gem&r is required for some recipes in the &4Hellfire Forge&r and can also be used as &nsource&r for &3Demonic Will&r for the &o&bspecial attack&r of the &dSentient Sword&r." + ] + id: "11D37E7391B49A88" + min_width: 300 + rewards: [ + { + id: "3C98676E7D871A75" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "7DC698D3D4E07D1D" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + subtitle: "&oHolds a max of &b64&r &3Will" + tasks: [{ + id: "1E4979886B89B2AD" + item: { + Count: 1 + id: "bloodmagic:soulgempetty" + tag: { } + } + type: "item" + }] + x: -28.5d + y: 2.0d + } + { + dependencies: ["11D37E7391B49A88"] + id: "487275B970530E3F" + rewards: [{ + id: "6C398EB3B8CC167B" + type: "xp" + xp: 50 + }] + shape: "diamond" + subtitle: "&oHolds a max of &b256&r &3Will" + tasks: [{ + id: "55AF014185F20835" + item: { + Count: 1 + id: "bloodmagic:soulgemlesser" + tag: { } + } + type: "item" + }] + x: -28.0d + y: 2.5d + } + { + dependencies: ["487275B970530E3F"] + id: "626C07DB8B8C5A04" + rewards: [{ + id: "0B2775EDC84F8DBC" + type: "xp" + xp: 100 + }] + shape: "diamond" + subtitle: "&oHolds a max of &b1,024&r &3Will" + tasks: [{ + id: "04BCD1D949FCB24D" + item: { + Count: 1 + id: "bloodmagic:soulgemcommon" + tag: { + souls: 0.0d + } + } + type: "item" + }] + x: -28.5d + y: 3.0d + } + { + dependencies: ["626C07DB8B8C5A04"] + id: "20458B8987CD6CB9" + rewards: [ + { + id: "706507A5BDE8CAF5" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "2178E35E8A340BDB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + subtitle: "&oHolds a max of &b4,096&r &3Will" + tasks: [{ + id: "25B30F1BCCEE920A" + item: { + Count: 1 + id: "bloodmagic:soulgemgreater" + tag: { + souls: 0.0d + } + } + type: "item" + }] + x: -29.0d + y: 2.5d + } + { + dependencies: ["5886C648D14180E1"] + description: [ + "Combing &3Reinforced Slate&r with some blood in our new &o&bTier: III&r &6Blood Altar&r will give us &9Imbued Slates&r." + "" + "This is the next upgrade for our &4Blood Magic&r journey." + ] + id: "375FF0D8ACD2E17F" + min_width: 250 + rewards: [ + { + id: "467291771E176EC8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "13BA22D02A7F803B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2BEC3F34860494B0" + item: "bloodmagic:infusedslate" + type: "item" + }] + x: -18.0d + y: -1.0d + } + { + dependencies: ["375FF0D8ACD2E17F"] + description: ["This rune increases the total capacity of the &6Blood Altar&r by &o&b20%&r for each &cCapacity Rune&r."] + id: "0B2B8247DA280E90" + min_width: 250 + rewards: [ + { + id: "7CF045B2A95086EB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "689B274606BAE53E" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "41758E5DA17E2FDF" + item: "bloodmagic:altarcapacityrune" + type: "item" + }] + x: -17.5d + y: -2.0d + } + { + dependencies: ["375FF0D8ACD2E17F"] + description: ["Increases the flow rate of &2LP&r in and out of the &6Blood Altar&r when pumping to and from an external tank by &o&b20,000&r per rune."] + id: "47B985B56C582D6A" + min_width: 250 + rewards: [ + { + id: "31EA9D6A3290C38D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C1166162A896890" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "00D5D96DA535CFE7" + item: "bloodmagic:dislocationrune" + type: "item" + }] + x: -18.5d + y: -2.0d + } + { + dependencies: ["431C44439CA54077"] + description: ["The last piece of &6Slate&r."] + id: "7CA3AE708F46CEBF" + rewards: [ + { + id: "0FE381A79B163DDA" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "61C56AD8DB07F85F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "57F75D0B2554BA61" + item: "bloodmagic:demonslate" + type: "item" + }] + x: -14.0d + y: -2.5d + } + { + dependencies: ["7CA3AE708F46CEBF"] + description: [ + "This rune &o&bincreases&r the capacity of the &6Altar&r by a multiplicative amount of &o&b7,5%&r per rune." + "" + "These apply after regular &aCapacity Runes&r." + ] + id: "6C0D4CBC089988ED" + min_width: 250 + rewards: [ + { + id: "2A8726C8BB765154" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "080ACBADC5BA1356" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0B14A7CBC056CC9F" + item: "bloodmagic:bettercapacityrune" + type: "item" + }] + x: -14.5d + y: -4.5d + } + { + dependencies: ["7CA3AE708F46CEBF"] + description: [ + "This rune creates a &o&b1,000&r &2LP&r internal buffer whenever the &6Altar&r is not being used for crafting or &o&bfilling blood orbs&r." + "" + "Whenever an item is placed inside of the &6Altar&r, it will instantly consume the stored charge and apply it to the item." + "" + "No more &o&bwaiting&r once placed!" + ] + id: "6C57FF70679AF123" + min_width: 250 + rewards: [ + { + id: "5E890AEA3E9B9188" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "48A2A926BC6A85FF" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "73F90730D99D6384" + item: "bloodmagic:chargingrune" + type: "item" + }] + x: -14.0d + y: -4.0d + } + { + dependencies: ["2214B7DCE4075A02"] + description: ["You are too &n&6POWERFUL&r ! ! !"] + id: "396AA75774059D0B" + rewards: [ + { + id: "493159D4211DD8E5" + type: "xp" + xp: 5000 + } + { + exclude_from_claim_all: true + id: "2E57F2CBBAC382B3" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "600A5AEE6C546B4C" + item: "bloodmagic:etherealslate" + type: "item" + }] + x: -11.0d + y: 2.0d + } + { + dependencies: ["7CA3AE708F46CEBF"] + description: [ + "This rune &o&baccelerates&r the operations of other runes, like the &aCharging&r or &9Displacement Rune&r." + "" + "It removes &o&b1&r tick of delay per rune, down to a minimum of &o&b1&r operation per tick." + ] + id: "0EE2D22A577D10B0" + min_width: 250 + rewards: [ + { + id: "0FDD0D502E4E581C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "35370D74B010E1AC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "7EB95246A2F0981D" + item: "bloodmagic:accelerationrune" + type: "item" + }] + x: -13.5d + y: -4.5d + } + { + dependencies: ["0E8418B42A744030"] + description: [ + "&cTau Fruit&r can be obtained from &o&bloot chests&r within the &4Hidden Realm&r. You'll need this to upgrade your &6Blood Altar&r even further!" + "" + "Once collected, the fruit &o&bcan be planted&r to farm it. However, it has &o&b2&r potential products instead of one." + "" + "Growing the fruit naturally will result in more &cTau Fruit&r, which can be turned into &7Oil&r. But what if we give it some &cBlood&r?" + ] + id: "50A28E1946047A6E" + min_width: 300 + rewards: [ + { + id: "4899CDA6BDDEB8C3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3287D5C488380DB8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2D780C226FCF4A03" + item: "bloodmagic:weak_tau" + type: "item" + }] + x: -16.0d + y: 2.0d + } + { + dependencies: ["50A28E1946047A6E"] + description: [ + "Just like everything in this pack, the fruit thirsts for &cBlood&r. Plant the fruit and &o&bforce a mob&r on top of it." + "" + "It will drain the &aLife Force&r of the mob to become &6Saturated Tau&r." + ] + id: "5E2D15E4A410B5DA" + min_width: 300 + rewards: [ + { + id: "5511EA668DC7B429" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "6843F20A9FDD52D1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "102AEEB23B1AA7EF" + item: "bloodmagic:strong_tau" + type: "item" + }] + x: -14.0d + y: 2.0d + } + { + dependencies: ["375FF0D8ACD2E17F"] + description: [ + "While not fully implemented yet, the &cAlchemical Reaction Chamber&r functions like a &7Furnace&r." + "" + "This is currently the only way to obtain &aWeak Blood Shards&r, which we'll need to upgrade our &6Altar&r." + ] + id: "308581359FEF32E9" + min_width: 250 + rewards: [ + { + id: "7798ABBC4BAB13CC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "725D7F157EF03C56" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1589663D302CE21E" + item: "bloodmagic:alchemicalreactionchamber" + type: "item" + }] + x: -16.0d + y: 0.5d + } + { + dependencies: ["375FF0D8ACD2E17F"] + id: "0E51D6BB2BC756B6" + rewards: [ + { + id: "7848C02921758A7E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4DD178A1A3233204" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + subtitle: "&oHolds a max of &b150,000&r &2LP" + tasks: [{ + id: "7BB6F203FCA31A25" + item: "bloodmagic:magicianbloodorb" + type: "item" + }] + x: -18.0d + y: -2.5d + } + { + dependencies: ["7CA3AE708F46CEBF"] + id: "048BD38532A1DDCF" + rewards: [ + { + id: "08B35AB2E64B3B71" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "111A91B224197E86" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "&oHolds a max of &b1,000,000&r &2LP" + tasks: [{ + id: "2F13F6D6E170BBEC" + item: "bloodmagic:masterbloodorb" + type: "item" + }] + x: -15.5d + y: -2.5d + } + { + dependencies: [ + "5E2D15E4A410B5DA" + "308581359FEF32E9" + ] + description: [ + "I hope by this point, you've been stocking up on some &3Demon Will&r with a &bSentient Sword&r. If not, make sure to go and grab some!" + "" + "With our &eSaturated Tau&r and our &9Alchemical Reaction Chamber&r, we can make the required materials to upgrade our &6Altar&r and &4Blood Orb&r, the &cWeak Blood Shard&r." + "" + "This does require the &aSanguine Rieverter&r, which takes a couple of upgrades to your &dTartaric Gem&r." + ] + id: "25343A0C4C22AA60" + min_width: 250 + rewards: [ + { + id: "3A386B0E3C9940DE" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5623A02DEF1F4BF1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "3A104E7D6C6AA524" + item: "bloodmagic:weakbloodshard" + type: "item" + } + { + id: "04EAE604D8B668B3" + item: "bloodmagic:largebloodstonebrick" + type: "item" + } + { + id: "6C20FD13B73935A7" + item: { + Count: 1 + id: "bloodmagic:sanguinereverter" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: -14.0d + y: 0.5d + } + { + dependencies: ["7CA3AE708F46CEBF"] + description: [ + "Now we'll need to make the &2Dusk&r version of the &9Ritual Diviner&r." + "" + "This gives us access to even &o&bmore rituals&r, including the ritual that gets us to the &4Demon Realm&r." + ] + id: "263925A79EBB270F" + min_width: 250 + rewards: [ + { + id: "6647598F7C4C2325" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "33DC7B2E19B9AA39" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "46C11FFD8A06B63E" + item: { + Count: 1 + id: "bloodmagic:duskscribetool" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "088CD8231DD1A37A" + item: "bloodmagic:ritualdivinerdusk" + type: "item" + } + ] + title: "&b&oTier: II&r &6Rituals" + x: -12.5d + y: -2.5d + } + { + dependencies: ["3DA7D0BA045CE7AB"] + description: [ + "Before we can craft the &4Hellfire Forge&r, we'll need a way to power it by acquiring &3Demon Will&r." + "" + "To start collecting it, we'll need to create some &7Soul Snares&r that we can use on mobs." + "" + "Once you use a few of these &o&bon a mob&r, white &o&bparticles&r will appear around them. Slay them, and you'll acquire &7Demonic Will&r." + ] + id: "506D48AD9FB2E89D" + min_width: 300 + rewards: [ + { + id: "07EB91CE33392DD5" + type: "xp" + xp: 25 + } + { + count: 2 + id: "598CB96CD0142818" + item: "bloodmagic:soulsnare" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7C39B2EE4B370870" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + count: 3L + id: "3D1BAA6CA8B979A9" + item: "bloodmagic:soulsnare" + type: "item" + } + { + id: "42D29681DC076E3C" + item: { + Count: 1 + id: "bloodmagic:basemonstersoul" + tag: { + souls: 5.0d + } + } + match_nbt: false + type: "item" + } + ] + title: "Collecting Demonic Will" + x: -30.0d + y: 0.5d + } + { + dependencies: ["6AAB831CB3FB536A"] + description: [ + "The &eAlchemy Table&r can craft various objects, catalysts, and more by using &2LP&r from a player's &dSoul Netuork&r." + "" + "This table can also convert many things, like &cRotten Flesh&r to &aLeather&r, &eSand&r to &3Clay&r, &7Strings&r to &bCobweb&r etc. It's pretty useful!" + ] + id: "7CC2D826CA6BBDDB" + min_width: 300 + rewards: [ + { + id: "080A6AA97A0A41E9" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "3A352B8EB3B4EC03" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "33ECB0563BA9E2CB" + item: "bloodmagic:alchemytable" + type: "item" + }] + x: -25.5d + y: 0.5d + } + { + dependencies: ["4B51189C36B8D291"] + description: [ + "There are several &3Rune&r types that can change how an &6Altar&r functions." + "" + "For example, &aSpeed Runes&r increase the speed of all crafting operations within the &6Altar&r by &o&b20%&r per rune." + "" + "This is the &o&bfirst rune&r you can use to upgrade your &6Blood Altar&r." + ] + id: "49F57CE3B472FF6D" + min_width: 250 + rewards: [ + { + id: "422BF2738AC9D3D3" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "64C4B81B6A845869" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3EF20FD3AC7ED48B" + item: "bloodmagic:speedrune" + type: "item" + }] + x: -24.5d + y: -2.5d + } + { + dependencies: ["2C3CA7B9D1A7DC47"] + description: [ + "This rune &o&bincreases&r the amount of &2LP&r gained from getting blood from &o&bPlayers&r." + "" + "Each rune gives a bonus of &o&b10%&r additively." + ] + id: "6CE4ED7A2642674F" + min_width: 250 + rewards: [ + { + id: "5898710F2074585F" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "0A59EEEE63129686" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6692D1D1E4E4F758" + item: "bloodmagic:selfsacrificerune" + type: "item" + }] + x: -21.5d + y: -2.5d + } + { + dependencies: ["2C3CA7B9D1A7DC47"] + description: [ + "To upgrade our &6Blood Altar&r to &o&bTier: III&r, we need &o&b28&r more runes. " + "" + "You need to place &o&b5&r &cBlood Runes&r (Blank or better) one block &o&bdown&r and two blocks &o&baway&r from the &o&bTier: II&r &6Altar&r runes, along each edge." + "" + "You'll then want to create a pillar in each corner out of any block, with a pillar cap of &eGlowstone&r sitting one block higher than the &6Blood Altar&r itself. Any &nnon-air&r block can be used for the pillar, as long as the cap is &eGlowstone&r." + "" + "If you want to check if the &6Blood Altar&r was built correctly, use a &dDivination Sigil&r to check the &o&bTier&r." + ] + icon: "bloodmagic:altar" + id: "5886C648D14180E1" + min_width: 350 + progression_mode: "linear" + rewards: [ + { + id: "7698DE23F4AEC268" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3B3D1B87C4DC60D0" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.0d + tasks: [{ + count: 28L + id: "45FE50B70B45B915" + item: "bloodmagic:blankrune" + type: "item" + }] + title: "&fBlood Altar&r &b&oTier: III" + x: -20.0d + y: -1.0d + } + { + dependencies: [ + "375FF0D8ACD2E17F" + "25343A0C4C22AA60" + ] + description: [ + "To upgrade our &6Blood Altar&r, we'll need &o&b56&r total &cBlood Runes&r (Blank or better)." + "" + "We'll do just like we did last time. Go one block &o&bdown&r and two blocks &o&bout&r, then place &o&b7&r &cBlood Runes&r along each edge. You're basically making a &7Pyramid&r at this point." + "" + "We want to create &o&bpillars&r in each of the corners, starting &o&babove&r the new ring of runes. These pillars are &o&b5&r tall, with the pillar cap being made of &4Bloodstone Bricks&r or &4Large Bloodstone Bricks&r." + "" + "Look in your &aSanguine Scientien&r and search for the &6Blood Altar&r &o&bTier: IV&r section. All of the information is there. You can even &eclick&r the eye to &o&bvisualize the structure&r." + ] + icon: "bloodmagic:altar" + id: "431C44439CA54077" + min_width: 300 + progression_mode: "linear" + rewards: [ + { + id: "553B8263DE5508F5" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "6DD0C4D13917FCA0" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.0d + tasks: [{ + count: 48L + id: "03DBCA5695879C49" + item: "bloodmagic:blankrune" + type: "item" + }] + title: "&fBlood Altar&r &b&oTier: IV" + x: -14.0d + y: -1.0d + } + { + dependencies: ["2C3CA7B9D1A7DC47"] + id: "08143AD0D63FFD1F" + rewards: [ + { + id: "223ED7C4E7DAA411" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "51599517C534BDEC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + subtitle: "&oHolds a max of &b25,000&r &2LP" + tasks: [{ + id: "46DC0EE4792CCA0D" + item: "bloodmagic:apprenticebloodorb" + type: "item" + }] + x: -22.0d + y: -3.0d + } + { + dependencies: ["7CC2D826CA6BBDDB"] + description: [ + "With our &9Alchemy Table&r and our &cOrb full of Blood&r, we want to make some &7Arcane Ashes&r." + "" + "With the &7Arcane Ashes&r, we'll be able to &ndraw&r a circle on the ground, known as an &dAlchemy Array&r. You can insert &o&b2&r items in by &eRight-clicking&r, and will either craft a new item or perform an action, like turning &o&bday&r into &o&bnight&r!" + ] + id: "1F3B9803AFAEED5F" + min_width: 300 + rewards: [ + { + id: "4BD9ABC2D427A1FB" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "542E514886974254" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6168644A110A263A" + item: { + Count: 1 + id: "bloodmagic:arcaneashes" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -25.5d + y: 2.0d + } + { + dependencies: ["1F3B9803AFAEED5F"] + description: [ + "The &6Divination Sigil&r is probably the &o&b1st&r of many sigils that you would like to craft in &cBlood Magic&r. In order to craft the sigil, you need to create an &dAlchemy Array&r and use &4Redstone Dust&r and a &3Blank Slate&r as the base and catalyst items, respectively." + "" + "This &6Sigil&r has two primary uses:" + "" + "&o&b1&r) When you &eRight-click&r with the &6Sigil&r in your hand, it uill display the amount of &2LP&r you have in your &dSoul Network&r." + "" + "&o&b2&r) If you &eRight-click&r a &cBlood Altar&r with it, you'll see hou much &2LP&r is stored, the max it can store, and what tier the altar is." + ] + id: "281AAC27DEBEE84D" + min_width: 250 + rewards: [ + { + id: "7F59BF8F2886B028" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2B1B11F0EB52690A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "19EF9DDE6B18A8B5" + item: "bloodmagic:divinationsigil" + type: "item" + }] + x: -26.0d + y: 2.5d + } + { + dependencies: ["1F3B9803AFAEED5F"] + description: [ + "The &9Water Sigil&r is a rather simple sigil. When you &eRight-click&r while looking at a block, you can drain &o&b100&r &2LP&r from your &dSoul Network&r to place a &o&bsource block&r of water in the world." + "" + "If there's not enough &2LP&r, it will instead drain the toll from your health." + "" + "The &9Water Sigil&r can be crafted using a &aWater Reagent&r and a &3Blank Slate&r." + "" + "What's more, it can be used in the &dAlchemy Table&r to automate the production of &aWater Buckets&r. The &9Sigil&r is &o&bnot consumed&r in this recipe." + ] + id: "7EED2502F1F38147" + min_width: 250 + rewards: [ + { + id: "1B7AF47021D62F36" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "32FC43CC4C42D079" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "7825C546B68A7F85" + item: "bloodmagic:watersigil" + type: "item" + }] + x: -25.0d + y: 2.5d + } + { + dependencies: ["1F3B9803AFAEED5F"] + description: [ + "The sister sigil to the &9Water Sigil&r. Press &eRight-click&r when holding the &6Lava Sigil&r to create a source block of lava on the ground, for the cost of &o&b1,000&r &2LP&r." + "" + "The &6Lava Sigil&r can be crafted in an &dAlchemy Array&r using a &aLava Reagent&r and a &3Blank Slate&r, it'll drain &b5&r hearts from you if you don't have enough &2LP&r in your &dSoul Network&r." + "" + "What's more, it can be used in the &dAlchemy Table&r to automate the production of &aLava Buckets&r. The &6Sigil&r is &o&bnot consumed&r in this recipe." + ] + id: "3AADA53EC01FB0ED" + min_width: 250 + rewards: [ + { + id: "438796468164D727" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "71D1228ED927B875" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "4EFA9FB003D8D147" + item: "bloodmagic:lavasigil" + type: "item" + }] + x: -25.5d + y: 3.0d + } + { + dependencies: ["4578C0EE82F66BD9"] + description: [ + "While not required, the &9Ritual Diviner&r is great to have as it shows &o&bexactly&r how the &dRitual&r is built, and helps build it. Totally recommended to make one." + "" + "To build a ritual, &eShift+Right-click&r with the &9Ritual Diviner&r in the air until you find the ritual you want to create. You can &eShift+Left-click&r to go back as well." + "" + "Start by doing the &5Edge of the Hidden Realm&r ritual, as we'll need a few items from the dimension to get started." + "" + "Once selected with the &9Ritual Diviner&r, &eRight-click&r on a &6Master Ritual Stone&r until the structure is complete. You will need a bunch of &3Ritual Stones&r to perform these rituals. Once the structure is fully built, you can &eRight-click&r the &6Master Ritual Stone&r with a &cWeak Activation Crystal&r to activate it." + ] + id: "0E8418B42A744030" + min_width: 300 + rewards: [ + { + id: "76C8BCBEA45D07D2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "29FE302F824B28DC" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "6B1FDBAA650C202A" + item: "bloodmagic:ritualdiviner" + type: "item" + } + { + id: "7D265539B810DCE3" + item: "bloodmagic:activationcrystalweak" + type: "item" + } + ] + x: -18.0d + y: 2.0d + } + { + dependencies: [ + "431C44439CA54077" + "42CDD69527871332" + ] + description: [ + "To upgrade our &6Blood Altar&r to &o&bTier: V&r, we'll need a total of &o&b108&r &3Runes&r, as well as &o&b4&r &aDemonite Blocks&r." + "" + "Follow the &eSanguine Scietiem&r for a detailed guide on &o&bhow to build&r the structure." + "" + "You want to start by going one block &o&bdown&r and three blocks &o&bout&r from the previous set of runes of your &6Blood Altar&r &o&bTier: IV&r. You want to place &o&b15&r runes along each side." + "" + "In the corners of the newly created ring, place a &aDemonite Block&r with one empty space on each side." + ] + icon: "bloodmagic:altar" + id: "2214B7DCE4075A02" + min_width: 300 + progression_mode: "linear" + rewards: [ + { + id: "4CDB053241630DAD" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "39F61B14739DC0A9" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.0d + tasks: [{ + count: 64L + id: "3830486EDCC81431" + item: "bloodmagic:blankrune" + type: "item" + }] + title: "&fBlood Altar&r &b&oTier: V" + x: -11.0d + y: -1.0d + } + { + dependencies: ["0E8418B42A744030"] + description: [ + "Once you make it to the &4Hidden Realm&r, you'll find a &eChest&r with some &o&bbasic loot&r in it." + "" + "Keep an eye out for &3Iron Keys&r. These &nunlock&r the &o&bextra rooms&r within the &4Hidden Realm&r, giving access to even &o&bmore loot&r." + ] + id: "6DD7D0A248FEAC00" + min_width: 250 + optional: true + rewards: [ + { + id: "78BC6412E5FF7EF2" + type: "xp" + xp: 100 + } + { + id: "3ABC3307A93EF27C" + item: "bloodmagic:simplekey" + type: "item" + } + { + exclude_from_claim_all: true + id: "57A5932ADCE50AD6" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "049052953E05D38F" + item: "bloodmagic:simplekey" + type: "item" + }] + title: "Dungeon Keys" + x: -20.0d + y: 2.0d + } + { + dependencies: ["42CDD69527871332"] + description: ["Using loot from the &4Demon Realm&r, you can upgrade each rune to &o&bdouble its effect&r."] + id: "2CA28551F2A5B761" + min_width: 250 + rewards: [ + { + id: "63047FEB0BE55B5A" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "11CC56A5336E257E" + table_id: 6305167096659659419L + type: "loot" + } + ] + shape: "diamond" + tasks: [ + { + id: "4BD6380E3CB0AFA1" + item: "bloodmagic:sacrificerune2" + type: "item" + } + { + id: "4A26B1A6BDC9BEF2" + item: "bloodmagic:selfsacrificerune2" + type: "item" + } + { + id: "374B021596B02DB5" + item: "bloodmagic:altarcapacityrune2" + type: "item" + } + { + id: "642940CFA557BEF9" + item: "bloodmagic:bettercapacityrune2" + type: "item" + } + { + id: "5F5E0CDAB56FBAA8" + item: "bloodmagic:orbcapacityrune2" + type: "item" + } + ] + title: "&dReinforced Runes" + x: -11.0d + y: -4.0d + } + { + dependencies: ["7CA3AE708F46CEBF"] + description: [ + "&2Teleposition Sigil&r - Will teleport the user to a linked &3Teleposer&r at the cost of &o&b1,000&r &2LP&r. You can &eShift-click&r with the sigil on a &3Teleposer&r to set the location." + "" + "&5Suppression Sigil&r - You can push liquids away from you in a &o&b6&r block radius." + ] + id: "5E2CB036B00758AE" + min_width: 300 + rewards: [ + { + id: "12698FAA72C0BF02" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "4D4714DF70577806" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [ + { + id: "5A91384EF5463B4D" + item: "bloodmagic:telepositionsigil" + type: "item" + } + { + id: "097D8139589AF377" + item: { + Count: 1 + id: "bloodmagic:sigilofsuppression" + tag: { } + } + type: "item" + } + ] + title: "&b&oTier: IV&r &4Sigils" + x: -14.0d + y: -5.0d + } + { + dependencies: ["263925A79EBB270F"] + description: [ + "Performing the &5Pathway to the Endless Realm&r ritual will give you access to the proper &4Demon Realm&r." + "" + "This is the only place where you can find &dDemonite Ore&r. This is used to create the &6Blood Altar&r &o&bTier: V&r." + "" + "There is also a ton of &o&brare loot&r, so make sure to keep an eye out for &9Intricate Hellforged Parts&r." + ] + id: "42CDD69527871332" + min_width: 250 + rewards: [ + { + id: "5A9B7EEF24D6703A" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "4FBA062D35BD8866" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7877DD9632B05697" + item: "bloodmagic:rawdemonite" + type: "item" + }] + title: "&4The Demon Realm" + x: -11.0d + y: -2.5d + } + { + dependencies: ["2C3CA7B9D1A7DC47"] + description: [ + "&9Air Sigil&r - &aRight-click&r to throw you in a direction you are facing for &o&b50&r &2LP&r." + "" + "&dVoid Sigil&r - &aRight-click&r on any liquid to void it, costing &o&b50&r &2LP&r." + "" + "&cSeer's Sigil&r - A better version of the &3Divination Sigil&r. Gives more info when looking at &6Altars&r." + "" + "&7Miner's Sigil&r - &eShift+Right-click&r to use &o&b100&r &o&2LP&r per &o&b5&r seconds to give yourself a &5Haste&r buff." + "" + "&2Green Gove Sigil&r - &eRight-clicking&r a crop that is growable will give it a bonemeal effect for &o&b150&r &2LP&r. &eShift+Right-clicking&r will consume &o&b150&r &2LP&r per &o&b5&r seconds, increasing the growth rate of a &o&b7x7x5&r area." + ] + id: "4C6B73322F56BE73" + min_width: 300 + rewards: [ + { + id: "3D60528942A0F56B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0CC0DB46E656B443" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "54A7E248C8A40239" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "bloodmagic:growthsigil" + tag: { } + } + { + Count: 1b + id: "bloodmagic:miningsigil" + tag: { } + } + { + Count: 1b + id: "bloodmagic:seersigil" + } + { + Count: 1b + id: "bloodmagic:voidsigil" + } + { + Count: 1b + id: "bloodmagic:airsigil" + } + ] + } + } + title: "{atm9.quest.bloodMagic.tier2Sigils}" + type: "item" + }] + title: "&b&oTier: II&r &6Sigils" + x: -22.0d + y: 0.5d + } + { + dependencies: ["375FF0D8ACD2E17F"] + description: [ + "&cBlood Lamp&r - Launches a blood light when used. Costs &o&b10&r &2LP&r" + "" + "&9Holding&r - Holds up to &o&b5&r other &3Sigils&r at a time, providing their &dPassive Effects&r and allowing you to activate them on a while. You can &o&bkeybind&r buttons to access the inventory and cycle through the &3Sigils&r." + "" + "&6Magnetism&r - Aotivate for a magnet up to &o&b7&r blocks at the cost of &o&b50&r &2LP&r every &o&b5&r seconds." + ] + id: "1780A9FDD6983435" + min_width: 300 + rewards: [ + { + id: "3CD9508C03CFE55C" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "157B517A74228BAD" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "36BBEFDBCCEC8DE0" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "bloodmagic:bloodlightsigil" + } + { + Count: 1b + id: "bloodmagic:sigilofholding" + tag: { + currentSigil: 5 + } + } + { + Count: 1b + id: "bloodmagic:sigilofmagnetism" + tag: { } + } + ] + } + } + title: "{atm9.quest.bloodMagic.tier3Sigils}" + type: "item" + }] + title: "&b&oTier: III&r &5Sigils" + x: -20.0d + y: 0.5d + } + { + dependencies: ["0E51D6BB2BC756B6"] + description: [ + "You can create &6Living Equipment&r by making some &eBinding Reagents&r in an &dAlchemy Table&r. You'll also need at least a &7Common Tartaric Gem&r in order to hold the &3Demon Will&r required." + "" + "&6Living Equipment&r is the equivalent in durability of &bDiamond Armor&r, and can be repaired in an &8Anvil&r using &eBinding Rieagents&r." + "" + "It starts off as the equivalent of &7Iron&r, but has &9Upgrade Points&r that can be spent to train it in specific ways. It starts with &o&b100&r, but there are ways to &nincrease this limit&r." + "" + "As you use it, it will \"&2learn&r\" from you. You can see what it has learned so far by &cholding left shift&r while looking at it." + ] + id: "41030E1E341C3A4E" + min_width: 320 + rewards: [ + { + id: "6D8D96707F3F4A83" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "51622DE8D3E8179F" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [ + { + id: "26FD5D4411242B25" + item: { + Count: 1 + id: "bloodmagic:livinghelmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "37A82F03CFF9D25A" + item: { + Count: 1 + id: "bloodmagic:livingplate" + tag: { + Damage: 0 + livingStats: { + maxPoints: 100 + upgrades: [ ] + } + } + } + type: "item" + } + { + id: "671E6A4CA8F8F77B" + item: { + Count: 1 + id: "bloodmagic:livingleggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5E9B38CD413946E0" + item: { + Count: 1 + id: "bloodmagic:livingboots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&6Living Armor Set" + x: -18.0d + y: -4.0d + } + { + dependencies: ["7C8D74692C963000"] + hide_until_deps_complete: true + id: "02B4D230796B448B" + optional: true + rewards: [ + { + id: "7F5A3379D599C947" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "599725AA50CF64F3" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "octagon" + tasks: [ + { + id: "7FF62693868CE0A2" + item: { + Count: 1 + id: "bloodmagic:soulpickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6DF43858A0971DE6" + item: { + Count: 1 + id: "bloodmagic:soulaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3937DA34C5E49CCC" + item: { + Count: 1 + id: "bloodmagic:soulshovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2A4E34A3A0DB867C" + item: { + Count: 1 + id: "bloodmagic:soulscythe" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Sentient Tools" + x: -27.0d + y: 1.5d + } + { + dependencies: ["7CC2D826CA6BBDDB"] + id: "6EE19E46103B3B89" + rewards: [ + { + id: "4E508665AC8A5A69" + type: "xp" + xp: 20 + } + { + id: "24B9642EA7718101" + item: "minecraft:diamond" + type: "item" + } + { + exclude_from_claim_all: true + id: "5490296EA48BD274" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0D6F587A30C3998D" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "bloodmagic:reagentwater" + } + { + Count: 1b + id: "bloodmagic:reagentlava" + } + { + Count: 1b + id: "bloodmagic:reagentvoid" + } + { + Count: 1b + id: "bloodmagic:reagentgrowth" + } + { + Count: 1b + id: "bloodmagic:reagentfastminer" + } + { + Count: 1b + id: "bloodmagic:reagentmagnetism" + } + { + Count: 1b + id: "bloodmagic:reagentair" + } + { + Count: 1b + id: "bloodmagic:reagentbloodlight" + } + { + Count: 1b + id: "bloodmagic:reagentsight" + } + { + Count: 1b + id: "bloodmagic:reagentbinding" + } + { + Count: 1b + id: "bloodmagic:reagentholding" + } + { + Count: 1b + id: "bloodmagic:reagentsuppression" + } + { + Count: 1b + id: "bloodmagic:reagentteleposition" + } + ] + } + } + title: "Reagents" + type: "item" + }] + x: -24.0d + y: 0.5d + } + { + dependencies: [ + "3DA7D0BA045CE7AB" + "3E671B3A7EAE23C1" + ] + icon_scale: 2.0d + id: "651641905B3BCA50" + rewards: [ + { + id: "56586A5D8856D8EC" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "237B0F60D25A26E4" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "20BA45CCEC281527" + item: "tomeofblood:novice_tome_of_blood" + type: "item" + }] + x: -31.0d + y: -1.0d + } + { + dependencies: [ + "4B51189C36B8D291" + "2E6B809BDF02CE75" + ] + icon_scale: 2.0d + id: "67BBDB9D401D1FF3" + rewards: [ + { + id: "430F33738857948C" + type: "xp" + xp: 400 + } + { + exclude_from_claim_all: true + id: "1CFE630E48475195" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "2BAC1708E518220E" + item: "tomeofblood:apprentice_tome_of_blood" + type: "item" + }] + x: -24.0d + y: -3.0d + } + { + dependencies: [ + "5886C648D14180E1" + "3DE2A8EB8E71BD98" + ] + icon_scale: 2.0d + id: "5BD092819731FCE6" + rewards: [ + { + id: "76C8CBF11585D3B7" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "35FE8CA92733D892" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "401D617B036DFFF2" + item: "tomeofblood:archmage_tome_of_blood" + type: "item" + }] + x: -20.0d + y: -3.0d + } + ] + title: "&3&oBlood Magic" +} diff --git a/minecraft/config/ftbquests/quests/chapters/blue_skies.snbt b/minecraft/config/ftbquests/quests/chapters/blue_skies.snbt new file mode 100644 index 0000000..b196f2f --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/blue_skies.snbt @@ -0,0 +1,2097 @@ +{ + autofocus_id: "663C8A3A0D93AE0F" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "blue_skies" + group: "09A82B0D5D5E7906" + icon: "blue_skies:star_flare" + id: "74560EE6653E7696" + images: [ + { + height: 2.0d + image: "kubejs:textures/item/bluski.png" + rotation: 0.0d + width: 6.5d + x: 0.0d + y: -4.5d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -0.8571428571428541d + y: -3.232142857142861d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 0.8928571428571459d + y: -3.1964285714285694d + } + { + height: 1.6d + image: "kubejs:textures/item/blskmo1.png" + rotation: 0.0d + width: 2.0d + x: 4.0d + y: -3.0d + } + { + height: 2.2d + image: "kubejs:textures/item/blskmo2.png" + rotation: 0.0d + width: 1.7d + x: -3.857142857142854d + y: 1.7678571428571388d + } + { + height: 2.5d + image: "kubejs:textures/item/blskmo3.png" + rotation: 0.0d + width: 1.7d + x: 5.250000000000007d + y: 2.125d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 0.0d + y: -2.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 0.0d + y: 4.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 8.5d + y: 2.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -8.0d + y: 2.5d + } + ] + order_index: 1 + quest_links: [ ] + quests: [ + { + description: [ + "The Everbright is a realm of eternal day and frigid cold. Home to large beasts and ethereal mobs, you’ll need to keep an eye on your back as you traverse through this world. Be sure to watch out for snow storms that bring thick fog and more enemies than usual. As you explore, you’ll encounter the Summoner’s Blinding Dungeon and the Nature Dungeon, home of the Starlit Crusher." + "" + "&4Your tools will be less effective in this dimension" + ] + icon: "blue_skies:everbright_portal" + id: "41ACBFB2805BFB3E" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "11FC9BFEC867C299" + table_id: 1235506154212082407L + type: "random" + }] + shape: "rsquare" + tasks: [ + { + count: 10L + id: "65A0AFD882D72CD5" + item: "blue_skies:turquoise_stonebrick" + type: "item" + } + { + id: "2B51A5FB0062B21E" + item: { + Count: 1 + id: "blue_skies:zeal_lighter" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Visit the &9Everbright" + x: -1.5d + y: -3.0d + } + { + description: [ + "The Everdawn has its sun forever rising. With this being a much more humid and warm world, insects and reptiles flourish. Before entering, it’s worth preparing for poison and fire as many parts of this world may inflict those on you. Venture across this diverse landscape to uncover the Alchemist’s Blinding Dungeon and then the Poison Dungeon, lair of the Arachnarch." + "" + "&4Your tools will be less effective in this dimension" + ] + icon: "blue_skies:everdawn_portal" + id: "663C8A3A0D93AE0F" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "705FB7DC5201039E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [ + { + count: 10L + id: "16F50EE720A214BA" + item: "blue_skies:lunar_stonebrick" + type: "item" + } + { + id: "44EE55ACE1FE61D0" + item: { + Count: 1 + id: "blue_skies:zeal_lighter" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 1.5d + y: -3.0d + } + { + dependencies: [ + "41ACBFB2805BFB3E" + "663C8A3A0D93AE0F" + ] + dependency_requirement: "one_completed" + id: "2C084EC64C064C08" + rewards: [ + { + count: 8 + id: "38BFAA78F50DBD2C" + item: "blue_skies:cooked_carabeef" + type: "item" + } + { + exclude_from_claim_all: true + id: "1486118350050B59" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2D6A73C9093EAA6D" + item: "blue_skies:moonstone_shard" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + dependencies: ["2C084EC64C064C08"] + id: "7843EA1D75051743" + rewards: [ + { + count: 4 + id: "15C2D4C1DF52B8F7" + item: "blue_skies:bluebright_chest" + type: "item" + } + { + exclude_from_claim_all: true + id: "153FCE9AB3592C65" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3773BF56F3FC773D" + item: { + Count: 1 + id: "blue_skies:pyrope_gem" + tag: { } + } + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["7843EA1D75051743"] + id: "7C217A533C98933B" + rewards: [ + { + count: 16 + id: "762F1501280B7250" + item: "blue_skies:azulfo_horn" + type: "item" + } + { + exclude_from_claim_all: true + id: "1ACBF3C964B94CAC" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "333DA7623110E275" + item: { + Count: 1 + id: "blue_skies:aquite" + tag: { } + } + type: "item" + }] + x: 0.0d + y: 1.0d + } + { + dependencies: ["7C217A533C98933B"] + id: "294597E7511AF1C2" + rewards: [ + { + count: 24 + id: "00859B424B90E294" + item: "blue_skies:bug_guts" + type: "item" + } + { + exclude_from_claim_all: true + id: "557ACB991CF0935D" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0127D3AC3F128953" + item: "blue_skies:diopside_gem" + type: "item" + }] + x: 0.0d + y: 2.0d + } + { + dependencies: ["294597E7511AF1C2"] + id: "0114DA1F84199E73" + rewards: [ + { + id: "43ADBD45C4A900DF" + item: "blue_skies:astrolabe" + type: "item" + } + { + exclude_from_claim_all: true + id: "3EADD737C92D8E6A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "03350457867F7771" + item: "blue_skies:charoite" + type: "item" + }] + x: 0.0d + y: 3.0d + } + { + dependencies: ["5B2813DDE61E5F81"] + id: "4D9D49F45A79E00A" + rewards: [ + { + id: "3FD6E095831DD6E2" + item: { + Count: 1 + id: "blue_skies:prepared_food" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "79ECF4D185855C2F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "24CB78439BD505EE" + item: "blue_skies:falsite_ingot" + type: "item" + }] + x: -5.5d + y: -1.5d + } + { + dependencies: ["4D9D49F45A79E00A"] + id: "4E3C85B95539C402" + rewards: [ + { + id: "3F6C1CE8CEFE8E46" + item: "blue_skies:warding_pearl" + type: "item" + } + { + exclude_from_claim_all: true + id: "4046EC4A3BC97A48" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "48578570F50C86FA" + item: "blue_skies:warding_pearl" + type: "item" + }] + x: -6.0d + y: -2.5d + } + { + dependencies: ["41ACBFB2805BFB3E"] + id: "5B2813DDE61E5F81" + rewards: [ + { + count: 12 + id: "53AA5BB267565614" + item: "blue_skies:pine_fruit" + type: "item" + } + { + exclude_from_claim_all: true + id: "6D1FFBE03AC0A03E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6C03F9A5355F6218" + item: "blue_skies:soul_fragment" + type: "item" + }] + x: -3.5d + y: -1.5d + } + { + dependencies: ["41ACBFB2805BFB3E"] + hide_dependency_lines: true + id: "3C7802679071506E" + rewards: [{ + exclude_from_claim_all: true + id: "4387E26B48DE83B2" + table_id: 1235506154212082407L + type: "random" + }] + shape: "rsquare" + size: 1.5d + tasks: [{ + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/summdung.png" + } + } + id: "2D39742BF94C46F2" + structure: "blue_skies:everbright_blinding_dungeon" + title: "Find and enter the Summoner's dungeon" + type: "structure" + }] + title: "&9The Summoner's Blinding Dungeon" + x: -3.874999999999993d + y: 3.732142857142854d + } + { + dependencies: ["3C7802679071506E"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "017789C6FBA28DEA" + rewards: [ + { + id: "4A3DB21ACB7EF7F6" + item: { + Count: 1 + id: "reliquary:mob_charm" + tag: { + Damage: 0 + entity: "blue_skies:summoner" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "2131BCDAA00DEB53" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + tasks: [{ + entity: "blue_skies:summoner" + icon: { + Count: 1 + id: "blue_skies:summoner_spawn_egg" + tag: { } + } + id: "6F07E0A32AB2406E" + type: "kill" + value: 1L + }] + x: -3.374999999999993d + y: 4.982142857142854d + } + { + dependencies: ["2C084EC64C064C08"] + id: "3189F82B3A0C0EE1" + rewards: [{ + exclude_from_claim_all: true + id: "41B624823967FB89" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "04851780CA37E7AD" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:bluebright_spear" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:starlit_spear" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:frostbright_spear" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:lunar_spear" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:dusk_spear" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:maple_spear" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:comet_spear" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:soulbound_spear" + tag: { + Damage: 0 + } + } + ] + } + } + title: "Make any kind of spear" + type: "item" + }] + title: "&9The Trident in the Blue Skies Dimension" + x: 1.0d + y: -0.5d + } + { + dependencies: ["7843EA1D75051743"] + id: "0645E719B181BD61" + rewards: [{ + exclude_from_claim_all: true + id: "5889A7F70ED66DE6" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "373F77C4B1636CA9" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:pyrope_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:pyrope_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:pyrope_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:pyrope_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&cPyrope Tools" + type: "item" + }] + title: "&cPyrope Tools" + x: -1.0d + y: 0.5d + } + { + dependencies: ["7843EA1D75051743"] + id: "6CFE636DAD494C51" + rewards: [{ + exclude_from_claim_all: true + id: "6D13F485FEF2AE08" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [ + { + id: "351781B048121384" + item: { + Count: 1 + id: "blue_skies:pyrope_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "62364798CBD56BCD" + item: { + Count: 1 + id: "blue_skies:pyrope_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "00AE6A1E242A65BE" + item: { + Count: 1 + id: "blue_skies:pyrope_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "35467CE4D491A80F" + item: { + Count: 1 + id: "blue_skies:pyrope_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&cPyrope Armor" + x: 1.0d + y: 0.5d + } + { + dependencies: ["7C217A533C98933B"] + id: "374314B98907B290" + rewards: [{ + exclude_from_claim_all: true + id: "27D04EBD6466FFBD" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "4C0FE9AE1F00C5A8" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:aquite_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:aquite_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:aquite_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:aquite_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&9Aquite Tools" + type: "item" + }] + x: -1.0d + y: 1.5d + } + { + dependencies: ["294597E7511AF1C2"] + id: "478D91746DC7BE35" + rewards: [{ + exclude_from_claim_all: true + id: "03E7F3331800D600" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "6B92D4E8D22D9237" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:diopside_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:diopside_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:diopside_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:diopside_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&2Diopside Tools" + type: "item" + }] + x: -1.0d + y: 2.5d + } + { + dependencies: ["0114DA1F84199E73"] + id: "5998D83CEAC8D229" + rewards: [{ + exclude_from_claim_all: true + id: "64F9462F898A98DB" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "40C7EF520F1642F9" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:charoite_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:charoite_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:charoite_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:charoite_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&5Charoite Toola" + type: "item" + }] + x: -1.0d + y: 3.5d + } + { + dependencies: ["7C217A533C98933B"] + id: "6C661BC12504B5F6" + rewards: [{ + exclude_from_claim_all: true + id: "38E1EB3BB731A4B1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "783F88568A664D5C" + item: { + Count: 1 + id: "blue_skies:aquite_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2C939BAE54E4F3F5" + item: { + Count: 1 + id: "blue_skies:aquite_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "611A20B1E535F6AB" + item: { + Count: 1 + id: "blue_skies:aquite_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4C6FBBFB68E25E7B" + item: { + Count: 1 + id: "blue_skies:aquite_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&9Aquite Armor" + x: 1.0d + y: 1.5d + } + { + dependencies: ["294597E7511AF1C2"] + id: "330BEDEDF5174FD2" + rewards: [{ + exclude_from_claim_all: true + id: "1BF653B08BF00B16" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "6AEFD81DE227EF77" + item: { + Count: 1 + id: "blue_skies:diopside_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4E059B99B0408F9B" + item: { + Count: 1 + id: "blue_skies:diopside_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3C219BF6B4579411" + item: { + Count: 1 + id: "blue_skies:diopside_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "18E2B8FDC7D2FB4F" + item: { + Count: 1 + id: "blue_skies:diopside_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&2Diopside Armor" + x: 1.0d + y: 2.5d + } + { + dependencies: ["0114DA1F84199E73"] + id: "1C30C85D7D012914" + rewards: [{ + exclude_from_claim_all: true + id: "4D7BA8DFC039D361" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [ + { + id: "7069ADDD701AFDE0" + item: { + Count: 1 + id: "blue_skies:charoite_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "281CCB926336B9FE" + item: { + Count: 1 + id: "blue_skies:charoite_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6CF62ACE2E7C0B26" + item: { + Count: 1 + id: "blue_skies:charoite_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1CDD4F5E1FFE2A08" + item: { + Count: 1 + id: "blue_skies:charoite_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&5Charoite Armor" + x: 1.0d + y: 3.5d + } + { + dependencies: ["3C7802679071506E"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "57C189D791ADCF49" + rewards: [{ + exclude_from_claim_all: true + id: "211E379C7E26A063" + table_id: 1235506154212082407L + type: "random" + }] + shape: "square" + tasks: [{ + id: "067D8BB289321535" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:ethereal_arc" + tag: { } + } + { + Count: 1b + id: "blue_skies:soulbound_spear" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:summoning_tome" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:summoning_table" + } + { + Count: 1b + id: "blue_skies:blinding_rage" + } + ] + } + } + title: "Collect any of the Summoner's drops" + type: "item" + }] + x: -4.374999999999993d + y: 4.982142857142854d + } + { + dependencies: ["41ACBFB2805BFB3E"] + hide_dependency_lines: true + id: "3BB20A9B6C8E206F" + rewards: [{ + exclude_from_claim_all: true + id: "185C2FFB7DD8BFB6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 1.5d + tasks: [{ + icon: "blue_skies:nature_stone" + id: "34DBBDE5D774CA1D" + structure: "blue_skies:nature_dungeon" + type: "structure" + }] + title: "&9The Natur's Dungeon" + x: -6.482142857142854d + y: 3.7678571428571317d + } + { + dependencies: ["3BB20A9B6C8E206F"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "6A76EABEB0655C25" + rewards: [ + { + id: "60DE7779A20E2EAF" + item: { + Count: 1 + id: "reliquary:mob_charm" + tag: { + Damage: 0 + entity: "blue_skies:starlit_crusher" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "739DD28D510E5EA5" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + tasks: [{ + entity: "blue_skies:starlit_crusher" + icon: { + Count: 1 + id: "blue_skies:starlit_crusher_spawn_egg" + tag: { } + } + id: "2BFE9D16723B4A52" + type: "kill" + value: 1L + }] + x: -5.982142857142854d + y: 5.017857142857132d + } + { + dependencies: ["3BB20A9B6C8E206F"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "35C4891A6E5BBE81" + rewards: [{ + exclude_from_claim_all: true + id: "6DF5D4C0A1E20CB4" + table_id: 6305167096659659419L + type: "random" + }] + shape: "square" + tasks: [{ + id: "4820A5BF5C340886" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:crushing_hammer" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:nature_arc" + tag: { } + } + { + Count: 1b + id: "blue_skies:defying_starlight" + } + ] + } + } + title: "Collect any of the Starlit Crusher drops" + type: "item" + }] + x: -6.982142857142854d + y: 5.017857142857132d + } + { + dependencies: ["20A5F775133EA736"] + id: "135213F1292A078E" + rewards: [{ + exclude_from_claim_all: true + id: "2C4F78E8E4D48586" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "35F48ABECA642B21" + item: { + Count: 1 + id: "blue_skies:moonstone_shield" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.0d + y: -0.5d + } + { + dependencies: ["456C960BCF327B58"] + id: "1154A75FF6AA6661" + rewards: [ + { + count: 12 + id: "58971DA5E0E8FB4D" + item: "blue_skies:cooked_venison" + type: "item" + } + { + exclude_from_claim_all: true + id: "3AB2F316B987DA1A" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "547257A9868721C6" + item: "blue_skies:bag_of_spoils" + type: "item" + }] + x: 7.0d + y: -2.5d + } + { + dependencies: ["20A5F775133EA736"] + id: "456C960BCF327B58" + rewards: [ + { + count: 16 + id: "705AE30FF21460BA" + item: "blue_skies:crescent_fruit" + type: "item" + } + { + exclude_from_claim_all: true + id: "6F6E15EFFD5E79DF" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "5B8AF352DB480FFE" + item: "blue_skies:fox_pelt" + type: "item" + }] + x: 6.0d + y: -2.0d + } + { + dependencies: ["456C960BCF327B58"] + id: "2B62DC26BE1348BB" + rewards: [ + { + count: 16 + id: "057A44744BB2594B" + item: "blue_skies:moonstone_crystal" + type: "item" + } + { + count: 16 + id: "4081D330313EEA33" + item: "blue_skies:sunstone_crystal" + type: "item" + } + { + exclude_from_claim_all: true + id: "6538B1F1C6EC297B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "38A2F806C62B2219" + item: "blue_skies:camel_saddle" + type: "item" + }] + x: 6.0d + y: -3.0d + } + { + dependencies: ["663C8A3A0D93AE0F"] + id: "20A5F775133EA736" + rewards: [ + { + count: 64 + id: "6351BE4A8E037BBF" + item: "blue_skies:polished_rimestone" + type: "item" + } + { + exclude_from_claim_all: true + id: "22A458DD33FABA46" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "451F24A8D4BD82C4" + item: { + Count: 1 + id: "blue_skies:moonstone" + tag: { } + } + type: "item" + }] + x: 3.5d + y: -1.5d + } + { + dependencies: ["20A5F775133EA736"] + id: "161BF1763C114498" + rewards: [{ + exclude_from_claim_all: true + id: "56D0E6553797FC0A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "56CEA6861F049BED" + item: "blue_skies:horizonite_ingot" + type: "item" + }] + x: 6.5d + y: 0.0d + } + { + dependencies: ["161BF1763C114498"] + id: "4DD7E4B904F1504C" + rewards: [{ + exclude_from_claim_all: true + id: "128130AF2AACD19A" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "0C111367588773FE" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:horizonite_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:horizonite_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:horizonite_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:horizonite_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&6Horizonite Tools" + type: "item" + }] + x: 6.5d + y: 1.0d + } + { + dependencies: ["161BF1763C114498"] + id: "72B4975C73DEBB6B" + rewards: [ + { + id: "6F5CFB52FB3463BD" + item: { + Count: 1 + id: "blue_skies:horizonite_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "2AE179EBCDAF2572" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "7F2A6BD1FFFEB75E" + item: { + Count: 1 + id: "blue_skies:horizonite_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6EFDBA1878E2F682" + item: { + Count: 1 + id: "blue_skies:horizonite_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1174D60EF3CCCB20" + item: { + Count: 1 + id: "blue_skies:horizonite_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1747F390ACA0D3C8" + item: { + Count: 1 + id: "blue_skies:horizonite_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 7.5d + y: -0.5d + } + { + dependencies: ["4D9D49F45A79E00A"] + id: "75363036F9175784" + rewards: [ + { + id: "687805BA0B04EF03" + item: "blue_skies:star_emitter" + type: "item" + } + { + exclude_from_claim_all: true + id: "6022F54C745C8DFE" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7E3416406801DD53" + item: "blue_skies:star_emitter" + type: "item" + }] + x: -6.5d + y: -1.5d + } + { + dependencies: ["161BF1763C114498"] + id: "76DD3732F076A321" + rewards: [ + { + count: 4 + id: "4E6C3D225C9BE962" + item: "blue_skies:everbright_charoite_ore" + type: "item" + } + { + count: 4 + id: "0BCF878EE048E9A7" + item: "blue_skies:everbright_emerald_ore" + type: "item" + } + { + count: 4 + id: "438EF50D9B2214F1" + item: "blue_skies:ventium_ore" + type: "item" + } + { + count: 4 + id: "4F74D21D7A286B52" + item: "blue_skies:horizonite_ore" + type: "item" + } + { + exclude_from_claim_all: true + id: "6FB7A485BF3674DC" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "71D3147A423894E0" + item: "blue_skies:horizonite_forge" + type: "item" + }] + x: 7.508928571428562d + y: 0.5625000000000071d + } + { + dependencies: ["663C8A3A0D93AE0F"] + hide_dependency_lines: true + id: "094607CA20877658" + rewards: [{ + exclude_from_claim_all: true + id: "37007F6C01C61126" + table_id: 6305167096659659419L + type: "random" + }] + shape: "rsquare" + size: 1.5d + tasks: [{ + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/alche.png" + } + } + id: "747AF53CF9EDA8D7" + structure: "blue_skies:everdawn_blinding_dungeon" + title: "Find and enter the Alchemist's dungeon" + type: "structure" + }] + title: "&9The Alchemist's Blinding Dungeon" + x: 3.75d + y: 3.75d + } + { + dependencies: ["663C8A3A0D93AE0F"] + hide_dependency_lines: true + id: "67AC4227929EC5F9" + rewards: [{ + exclude_from_claim_all: true + id: "742E4815179CA8CF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 1.5d + tasks: [{ + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/poidung.png" + } + } + id: "291EB1597817026E" + structure: "blue_skies:poison_dungeon" + title: "Find and enter the Poison dungeon" + type: "structure" + }] + title: "&9The Poison Dungeon" + x: 6.75d + y: 3.75d + } + { + dependencies: ["4D9D49F45A79E00A"] + id: "0323B0B3D6905A80" + rewards: [{ + exclude_from_claim_all: true + id: "7E80A2DED6395838" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "1DF18AD72C1D1C1E" + item: "blue_skies:ventium_ingot" + type: "item" + }] + x: -5.026785714285722d + y: 0.0625d + } + { + dependencies: ["0323B0B3D6905A80"] + id: "729762F02CF749E8" + rewards: [ + { + count: 8 + id: "40BDD6A2978CE829" + item: "blue_skies:black_brewberry" + type: "item" + } + { + exclude_from_claim_all: true + id: "0AE1BABE481EA226" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "02F285C333BEEBD9" + item: { + Count: 1 + id: "blue_skies:ventium_shears" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.419642857142868d + y: 1.0982142857142847d + } + { + dependencies: ["0323B0B3D6905A80"] + id: "70CBD6D1E43DD08C" + rewards: [ + { + count: 8 + id: "235AF159A41407BE" + item: "blue_skies:pink_brewberry" + type: "item" + } + { + exclude_from_claim_all: true + id: "2D84F9E81E6A0C43" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "777694D71918F380" + item: "blue_skies:ventium_bucket" + type: "item" + }] + x: -6.562500000000007d + y: 0.9553571428571388d + } + { + dependencies: ["094607CA20877658"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "4051BAFC14B957F5" + rewards: [ + { + id: "1FC999F64618DCC2" + item: { + Count: 1 + id: "reliquary:mob_charm" + tag: { + Damage: 0 + entity: "blue_skies:alchemist" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "152098A0E826F401" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + tasks: [{ + entity: "blue_skies:alchemist" + icon: { + Count: 1 + id: "blue_skies:alchemist_spawn_egg" + tag: { } + } + id: "7DC0E3DAB8C6A235" + type: "kill" + value: 1L + }] + x: 4.223214285714292d + y: 5.026785714285715d + } + { + dependencies: ["094607CA20877658"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "6EB5FB43AF467429" + rewards: [{ + exclude_from_claim_all: true + id: "6EB9D048C0EFA841" + table_id: 6305167096659659419L + type: "random" + }] + shape: "square" + tasks: [{ + id: "454FEA86647AD1B2" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:spike_shield" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:dusk_arc" + tag: { } + } + { + Count: 1b + id: "blue_skies:alchemy_table" + } + { + Count: 1b + id: "blue_skies:blinding_rage" + } + ] + } + } + title: "Collect any of the Alchemist's drops" + type: "item" + }] + x: 3.223214285714292d + y: 5.026785714285715d + } + { + dependencies: ["67AC4227929EC5F9"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "0BBE7107955F0C37" + rewards: [{ + exclude_from_claim_all: true + id: "1AA9567800701A83" + table_id: 5236874501558129216L + type: "random" + }] + shape: "square" + tasks: [{ + id: "4634B9BDF8742327" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "blue_skies:venom_sac" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:poison_arc" + tag: { } + } + { + Count: 1b + id: "blue_skies:different_sword" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "blue_skies:venomous_encounter" + } + ] + } + } + title: "Collect any of the Arachnarch's drops" + type: "item" + }] + x: 6.223214285714299d + y: 5.026785714285715d + } + { + dependencies: ["67AC4227929EC5F9"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "14B4343601ACC676" + rewards: [ + { + id: "156634FB0E945C2D" + item: { + Count: 1 + id: "reliquary:mob_charm" + tag: { + Damage: 0 + entity: "blue_skies:arachnarch" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1BBCA670BBBF1662" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + tasks: [{ + entity: "blue_skies:arachnarch" + icon: { + Count: 1 + id: "blue_skies:arachnarch_spawn_egg" + tag: { } + } + id: "4603949C702D2CBD" + type: "kill" + value: 1L + }] + x: 7.223214285714299d + y: 5.026785714285715d + } + { + dependencies: ["70CBD6D1E43DD08C"] + id: "380D72E1EBCE6502" + rewards: [ + { + count: 8 + id: "6E4D08344D4F1A6A" + item: "blue_skies:cooked_grittle_flatfish" + type: "item" + } + { + count: 8 + id: "53F673D3895CD5E9" + item: "blue_skies:cooked_municipal_monkfish" + type: "item" + } + { + count: 8 + id: "6332D73586E09630" + item: "blue_skies:cooked_charscale_moki" + type: "item" + } + { + count: 8 + id: "79FA4E55908831F4" + item: "blue_skies:cooked_horizofin_tunid" + type: "item" + } + { + exclude_from_claim_all: true + id: "191A57534047EE32" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "1B427DC3EE226F04" + item: "blue_skies:ventium_grittle_flatfish_bucket" + type: "item" + } + { + id: "3C23063BAE5759B4" + item: "blue_skies:ventium_municipal_monkfish_bucket" + type: "item" + } + { + id: "635CB505BF86143A" + item: "blue_skies:ventium_charscale_moki_bucket" + type: "item" + } + { + id: "16D273B4C725F237" + item: "blue_skies:ventium_horizofin_tunid_bucket" + type: "item" + } + ] + x: -7.491071428571438d + y: 0.5624999999999929d + } + { + dependencies: ["2C084EC64C064C08"] + description: ["You can get the key by trading with the Gatekeeper."] + hide_dependency_lines: true + id: "05A5684D3A12FDBB" + rewards: [{ + exclude_from_claim_all: true + id: "6BF45A7CBD08F1E2" + table_id: 6305167096659659419L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "6C8EF4C2AE756A5B" + item: "blue_skies:blinding_key" + type: "item" + }] + x: 0.0d + y: 5.0d + } + { + dependencies: ["05A5684D3A12FDBB"] + description: ["You can get the key by trading with the Gatekeeper or buy it in the shop."] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "5A344ECF1E5172AD" + rewards: [{ + exclude_from_claim_all: true + id: "734506C3761F1915" + table_id: 6305167096659659419L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "57DA016F8F61A54B" + item: "blue_skies:nature_key" + type: "item" + }] + x: -1.0d + y: 5.0d + } + { + dependencies: ["05A5684D3A12FDBB"] + description: ["You can get the key by trading with the Gatekeeper or buy it in the shop."] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "2FA12080898C0772" + rewards: [{ + exclude_from_claim_all: true + id: "7C32811075B83CEA" + table_id: 1235506154212082407L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "76028EDBE36ABC01" + item: "blue_skies:poison_key" + type: "item" + }] + x: 1.0d + y: 5.0d + } + { + dependencies: ["0323B0B3D6905A80"] + id: "6BD25630E4D56A59" + rewards: [ + { + count: 8 + id: "19C7A611A3C1E37E" + item: "blue_skies:brewberry" + type: "item" + } + { + exclude_from_claim_all: true + id: "1B5615E573A10BCA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4A9E8C90788969D4" + item: "blue_skies:tool_box" + type: "item" + }] + x: -6.098214285714292d + y: -0.0446428571428612d + } + { + dependencies: ["5B2813DDE61E5F81"] + id: "0AF8077771A3D4B2" + rewards: [ + { + count: 6 + id: "7A2D78D1DF5431C6" + item: "blue_skies:winter_leaves" + type: "item" + } + { + exclude_from_claim_all: true + id: "57168C37C9A0E5B8" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "4FC786799E47E188" + item: "blue_skies:snowcap_pinhead" + type: "item" + }] + x: -2.7410714285714306d + y: -0.6875000000000071d + } + { + dependencies: ["0AF8077771A3D4B2"] + id: "02F22A0F41E310B9" + rewards: [ + { + count: 12 + id: "7EF95B9BA23EE6EB" + item: "blue_skies:star_flare" + type: "item" + } + { + exclude_from_claim_all: true + id: "5C9B3CFE5FDF4E74" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3FEEF51E19D3D08B" + item: "blue_skies:snowcap_oven" + type: "item" + }] + x: -2.919642857142861d + y: 0.3124999999999929d + } + { + dependencies: ["5B2813DDE61E5F81"] + id: "61219066E1E82111" + rewards: [ + { + count: 4 + id: "130D15A6B6B73E0F" + item: "blue_skies:pearl" + type: "item" + } + { + exclude_from_claim_all: true + id: "2BBEDC6421CBE306" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "19E9A47DD38431AA" + item: "blue_skies:pearl" + type: "item" + }] + x: -3.669642857142861d + y: -2.473214285714292d + } + { + dependencies: ["503203997E8D59A7"] + description: ["Just a beautiful block."] + id: "2FB342873B0CE5F9" + rewards: [ + { + count: 64 + id: "6BC6D6004F8BE5F0" + item: "blue_skies:crystal_sandstone_pillar" + type: "item" + } + { + exclude_from_claim_all: true + id: "28CEAF02655A7682" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Why not?" + tasks: [{ + count: 64L + id: "18EA724B89224D12" + item: "blue_skies:cinderstone" + type: "item" + }] + title: "&6&lThe Cinderstone" + x: 3.5d + y: 1.5d + } + { + dependencies: ["20A5F775133EA736"] + id: "503203997E8D59A7" + rewards: [ + { + count: 12 + id: "4225FE1035CE66C4" + item: "blue_skies:fiery_beans" + type: "item" + } + { + count: 12 + id: "6A0FD98BCC8D2C0A" + item: "blue_skies:pine_fruit" + type: "item" + } + { + count: 12 + id: "1ED8F3E279444016" + item: "blue_skies:scalefruit" + type: "item" + } + { + count: 12 + id: "29D0864AAA840C72" + item: "blue_skies:winter_leaves" + type: "item" + } + { + exclude_from_claim_all: true + id: "23C8BFA001F44D88" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "165BAE5C4A06110D" + item: "blue_skies:food_prep_table" + type: "item" + }] + x: 4.0d + y: 0.5d + } + ] + title: "&3&oBlue Skies" +} diff --git a/minecraft/config/ftbquests/quests/chapters/botania.snbt b/minecraft/config/ftbquests/quests/chapters/botania.snbt new file mode 100644 index 0000000..38fd118 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/botania.snbt @@ -0,0 +1,4240 @@ +{ + autofocus_id: "6FBE0BF8A7ADBB26" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "botania" + group: "4814F40AB34427B6" + icon: "botania:dandelifeon" + id: "1BDEBA367410E2CD" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -7.75d + y: -10.05357142857143d + } + { + height: 2.0d + image: "kubejs:item/botania_logo" + rotation: 0.0d + width: 5.0d + x: 3.5d + y: -0.5d + } + ] + order_index: 3 + quest_links: [ ] + quests: [ + { + dependencies: ["11E16D072634AAF5"] + description: [ + "&aBotania&r is a tech mod themed around natural magic." + "" + "Gameplay is centered around creating &5Magical Flowers&r and devices using &bMana&r, the power of the &eEarth&r." + "" + "To start your journey in Botania, you'll need plenty of &5Mystical Flowers&r!" + "" + "For more information on the items in the mod, make sure to check out the &aLexica Botania&r. " + ] + icon: { + Count: 1 + id: "botania:lexicon" + tag: { + "botania:elven_unlock": 1b + } + } + id: "46B386FC16966543" + min_width: 300 + rewards: [ + { + id: "1025BD41F937967E" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "412C67D2B406271C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oEnder Crafter&r quest*" + tasks: [{ + id: "071B5C826F3084B0" + type: "checkmark" + }] + title: "Welcome to &3Botania" + x: -8.5d + y: -9.5d + } + { + dependencies: ["46B386FC16966543"] + description: [ + "Around the world, you may stumble upon a large variety of &5Mystical Flowers&r. They come in a total of &n16 different colors&r." + "" + "These flowers can be plucked for &dMystical Petals&r, which are used in the creation of magical instruments and plants. &eRight-clicking&r a petal upon the ground will bury it, making it emit particles. " + "" + "There're also some taller variants of the typical &5Mystical Flowers&r around the world. These can only be gathered with &7Shears&r, but can be plucked for twice the petals a normal flower would yield. They're a bit too big for dye, though." + "" + "Tall flower variants can be made manually by fertilizing a &5Mystical Flower&r or a &3Buried Petal&r with &bBone Meal&r." + ] + id: "0EC58920BF996185" + rewards: [ + { + id: "1414BC6D57272DC5" + item: "botania:flower_bag" + type: "item" + } + { + exclude_from_claim_all: true + id: "0630BAA5FDF9C70F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4814C619F355BF39" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "botania:mystical_flowers" + } + } + title: "Any &dMystical Flowers" + type: "item" + }] + title: "Mystical Flowers" + x: -8.5d + y: -8.0d + } + { + dependencies: ["0EC58920BF996185"] + description: ["This &2Floral Fertilizer&r will grow &5Mystical Flowers&r in the nearby vicinity, if you ever run low on those."] + id: "341C5C44245DE5E6" + rewards: [ + { + count: 2 + id: "4D0742A93D3569EE" + item: "botania:fertilizer" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "63A1F18005FC170F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "02E5377D476566A7" + item: "botania:fertilizer" + type: "item" + }] + title: "Floral Fertilizer" + x: -9.5d + y: -8.0d + } + { + dependencies: ["0EC58920BF996185"] + description: [ + "To create plant life that can do their bidding, a botanist needs a special means of infusing plants with mystical energy." + "" + "Now that we have some flowers, we can start converting the basic flora into functioning and generating flora using the &7Petal Apothecary&r!" + "" + "To start harnessing the energy from &eMystical Flower Petals&r, we will need to fill the &3Apothecary&r with &bWater&r. " + "" + "To create items, just throw the appropriate items for the recipe into the &3Apothecary&r. Right clicking with an empty hand will remove items from it as well." + "" + "Once a recipe has been completed, you will have about &n20 seconds&r where &bright clicking with an empty hand&r will refill the last recipe, making it &neasier&r to create multiple of the same items!" + ] + icon: "botania:apothecary_default" + id: "109C0AE9202A6AB8" + min_width: 300 + rewards: [ + { + id: "003DC15292494EB8" + type: "xp" + xp: 10 + } + { + id: "5BBF4DFD0AD137F1" + item: "botania:magenta_mystical_flower" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "1630CE2A7D9DDD75" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "4141A9873EAE5BCF" + item: "botania:apothecary_default" + type: "item" + }] + x: -8.5d + y: -6.5d + } + { + dependencies: ["3A20210242A1C865"] + description: [ + "When it comes right down to it, &3Dreamwood&r simply conducts &bMana&r better than &4Livingwood&r." + "" + "A few adjustments in recipe (like substituting &dElementium&r for &6Gold&r) yield an &7Elven Mana Spreader&r, which conducts more &bMana&r, faster, and for longer without &bMana&r Loss. Unfortunately, these can't be turned into &ePulse Mana Spreaders&r." + "" + "Combining this already-powerful spreader with a &0Gaia Spirit&r and a &dDragonstone&r gem yields an even more potent variant. &2The Gaia Spreader&r is the &6gold&r standard of &eMana Spreaders&r, with upgrades pretty much all around." + "" + "Do note that these spreaders fire larger payloads at once (and thus might fire less often)." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "31B17D808AB30388" + rewards: [ + { + id: "5DD3DC7C04C22E14" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0FE74CC12B331BD4" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "39947F7610DB553E" + item: "botania:elven_spreader" + type: "item" + }] + x: 7.0d + y: -5.5d + } + { + dependencies: ["3A20210242A1C865"] + description: [ + "&eMythic Botany&r mod adds to the &bMana&r system with the &5Mana-Infuser&r." + "" + "It is an upgrade to the &9Terrestrial Agglomeration Plate&r that requires a gold &6Shimmerock&r plate and allows the creation of &2Alfsteel&r, a higher-tiered material than &eTerrasteel&r." + ] + icon: "mythicbotany:mana_infuser" + id: "3F9049E485ED4779" + rewards: [ + { + id: "631DCD13F4274503" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7E4B86CAF7477A24" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "494F3098DA7B2386" + item: "mythicbotany:mana_infuser" + type: "item" + } + { + count: 4L + id: "36FF52FAD8B60BAA" + item: "minecraft:gold_block" + type: "item" + } + { + count: 5L + id: "19C76C46ACDB9701" + item: "botania:shimmerrock" + type: "item" + } + ] + x: 7.0d + y: -4.5d + } + { + dependencies: ["3F9049E485ED4779"] + description: [ + "It has been well established at this point that &bMana&r is excellent at performing spontaneous recombinations." + "" + "Some limited magics have managed to harness this by absorbing the latent mana in the globules left behind when the living pass." + "" + "The &dAlfsteel Pylon&r helps to speed that process along, injecting pure &bMana&r directly into these &6Mendable&r items." + "" + "Use a &aMana Spreader&r to send mana into the &dPylon&r. Any items enchanted with &4Mending&r that find themselves atop the &dPylon&r will rapidly repair at the cost of &bMana&r." + ] + id: "14FF5120BE45772E" + rewards: [ + { + id: "6495B73415C3609E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "76BDB76B86ECA12E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "53DD56784E316818" + item: "mythicbotany:alfsteel_pylon" + type: "item" + }] + x: 7.0d + y: -3.0d + } + { + dependencies: ["27CD17C4B3613171"] + description: [ + "We all know, &aBotania&r is a tech mod... magic mod... tech mod... magic mod? Tech mod!? It's a mod. A fancy mod with &bMana&r, &9Mystical Flowers&r, &6Elves&r and the &3Gaia&r. Sometimes it can be hard or annoying to automate all the things in &aBotania&r." + "" + "&dBotanical Machinery&r will help you automate basically everything from &aBotania&r. Quite uncommon in the world of &aBotania&r, this mod adds plenty of &nmachines&r. What machines? Find out below!" + "" + "Use Sparks to transfer mana from &5Mana Batery&r to &7Machines&r." + "" + "All machines are &ncompatible&r with other mods. You can automate everything with &eRefined Storage&r." + ] + hide_dependency_lines: true + id: "778BEBE262A9F57B" + rewards: [ + { + id: "5E56125AF5F2867E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6616D6B5B4932245" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + subtitle: "It's something that makes the mod magical" + tasks: [{ + id: "083ECC3B439F545B" + item: "botanicalmachinery:mana_battery" + type: "item" + }] + title: "&5Botanical Machinery" + x: 1.0d + y: -3.5d + } + { + dependencies: ["778BEBE262A9F57B"] + description: [ + "This single block has a tiny version of an &6Alfheim Portal&r inside." + "" + "It allows for trade with the elves without the need of having a gigantic portal around." + "" + "Just be careful not to put any bread inside..." + ] + id: "5B71E7C1B1A10F15" + rewards: [ + { + id: "3DFEF8DE4A9FD393" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "577720F64D19059A" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Auto Alfheim Portal" + tasks: [{ + id: "5A5A6B3C0E02C96F" + item: "botanicalmachinery:alfheim_market" + type: "item" + }] + x: 2.0d + y: -4.5d + } + { + dependencies: ["778BEBE262A9F57B"] + description: ["An improved version of the &5Botanical Brewery&r that receives &bMana&r from &eSparks&r and lets you automate brews easily."] + id: "2FD09C136E62C857" + rewards: [ + { + id: "4F41E4F713B581C5" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "10414215A10691A6" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Auto Potions" + tasks: [{ + id: "3C9CDE64A7A2E334" + item: "botanicalmachinery:mechanical_brewery" + type: "item" + }] + x: 2.5d + y: -3.5d + } + { + dependencies: ["778BEBE262A9F57B"] + description: [ + "The &9Agglomeration Plate&r usually requires a stabilising platform underneath it." + "" + "Not anymore with this device. This machine is pretty unknown to the regular botanist, so give it a shot!" + ] + id: "20E9DDDD7B494D88" + rewards: [ + { + id: "20717A4079861019" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "490CBC6A78387838" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Auto Terrasteel" + tasks: [{ + id: "62F1C3BEF84F7D42" + item: "botanicalmachinery:industrial_agglomeration_factory" + type: "item" + }] + x: 2.0d + y: -2.5d + } + { + dependencies: ["778BEBE262A9F57B"] + description: [ + "This device allows you to create runes a lot more easily." + "" + "Really, it's nothing more than a normal &aRunic Altar&r, which can be automated using &bhoppers&r." + ] + id: "023FEB5056A55197" + rewards: [ + { + id: "22D7D13506DAD3B0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "13A470C0EADA44EE" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Auto Runes" + tasks: [{ + id: "40F6F7F20A7EF3FB" + item: "botanicalmachinery:mechanical_runic_altar" + type: "item" + }] + x: 1.0d + y: -2.0d + } + { + dependencies: ["778BEBE262A9F57B"] + description: [ + "Just like a regular &9Mana Pool&r, this can store quite some mana." + "" + "It is also capable of mana infusion. As with any other pool, you can use catalysts." + "" + "However, this pool requires you to put them into its inventory and not to place them below it." + ] + id: "6AE0FDB5088FDAF1" + rewards: [ + { + id: "04E331A107BD75DA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "072F82846BFD3F51" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Auto Mana Pool" + tasks: [{ + id: "0DD351C868606B65" + item: "botanicalmachinery:mechanical_mana_pool" + type: "item" + }] + x: 0.0d + y: -2.5d + } + { + dependencies: ["778BEBE262A9F57B"] + description: [ + "By planting a &dFloating Pure Daisy&r onto a platform made out of &5Elementium&r, it is capable of processing &o8&r blocks at once in only a single block space." + "" + "It can also handle fluids." + ] + id: "1355E60676609056" + rewards: [ + { + id: "3D0FE0576671476B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6B5FA50F743D1362" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Auto Living Wood/Rock" + tasks: [{ + id: "489FFBDBA1AB3CFE" + item: "botanicalmachinery:mechanical_daisy" + type: "item" + }] + x: -0.5d + y: -3.5d + } + { + dependencies: ["778BEBE262A9F57B"] + description: ["An improved version of the &9Apothecary&r that uses water, seeds and ingredients to create all the flowers your heart desires."] + id: "37505E128D75DFC6" + rewards: [ + { + id: "173EF550D9107EF1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3C2B31FC3389735B" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Auto Apothecary" + tasks: [{ + id: "1A4DC5A5A89086BF" + item: "botanicalmachinery:mechanical_apothecary" + type: "item" + }] + x: 0.0d + y: -4.5d + } + { + dependencies: ["109C0AE9202A6AB8"] + description: [ + "The &bPure Daisy&r is one of the first flowers you'll create!" + "" + "Far from being just the most basic, the &bPure Daisy&r is the most important flower a botanist can have." + "" + "This flower will purify up to 8 nearby &eAncient Log&r (&dNature's Aura&r) and the &eInfused Rock&r (&dNature's Aura&r) into their purified counterparts, &aLivingwood&r and &aLivingrock&r (This only converts in a 1 block radius around the flower)." + "" + "A few other blocks can also be purified by placing them around the flower. While not as unique and essential as the living blocks, these recipes still can come in handy: &cNetherrack&r purifies into &3Cobblestone&r, &0Soul Sand&r into &eSand&r, &bIce&r into &9Packed Ice&r, and &1Water&r into &bSnow&r." + ] + id: "74153127E494F8B4" + min_width: 300 + rewards: [ + { + id: "1A6EB799CF6E00AA" + type: "xp" + xp: 50 + } + { + id: "57A6BA5D81495FCA" + item: "botania:pure_daisy" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "550D626123B7C185" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "59AF94AEAC55D6E7" + item: "botania:pure_daisy" + type: "item" + }] + x: -8.5d + y: -5.0d + } + { + dependencies: ["74153127E494F8B4"] + description: ["Pure Daisy will purify &eInfused Rock&r (&dNature's Aura&r) into purified counterpart &aLivingrock&r."] + id: "23ADD20D9B1AE0F3" + rewards: [ + { + id: "4D7BE00A8ADC513A" + type: "xp" + xp: 50 + } + { + count: 2 + id: "57294532E4B0C398" + item: "naturesaura:infused_stone" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "5875148688C0BC46" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "66BBC650D92AD2D0" + item: "botania:livingrock" + type: "item" + }] + title: "&7Livingrock" + x: -7.5d + y: -4.0d + } + { + dependencies: ["74153127E494F8B4"] + description: ["Pure Daisy will purify &eAncient Log&r (&dNature's Aura&r) into purified counterpart &aLivingwood&r."] + id: "597E4D997A20736D" + rewards: [ + { + id: "7DBF2C3A190ED049" + type: "xp" + xp: 50 + } + { + count: 2 + id: "017F6E30AA0FD5C6" + item: "naturesaura:ancient_log" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "087F0895914A9347" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "3CC2E22FFC03582A" + item: "botania:livingwood_log" + type: "item" + }] + title: "&2Livingwood&r" + x: -9.5d + y: -4.0d + } + { + dependencies: ["597E4D997A20736D"] + description: [ + "The &2Wand of the Forest&r is a &nmust-have&r for a huge number of botanical tasks." + "" + "The wand has two modes: &aBind Mode&r and &9Function Mode&r." + "" + "In &aBind Mode&r, &nsneak-right click&r it on a compatible block to select it, then &nsneak-right click&r elsewhere to bind the two blocks." + "" + "In &9Function Mode&r it simply doesn't perform this function, freeing the &nsneak-right click&r action up for other tasks. " + "" + "The two modes can be switched between by &nsneak-right clicking&r the wand in the air." + "" + "&nSneak-right clicking&r a block in &9Function Mode&r rotates the block around the axis of the side it was clicked on-- for example, using the wand on the top of a Chest will change the direction it faces. Most blocks with orientations can be reoriented this way." + ] + hide_until_deps_complete: false + id: "205BBDFBCA582E3B" + rewards: [ + { + id: "6C7723D96B6F7F14" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7A10637D9D2999FD" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "59FB36F10FBA2E3D" + item: { + Count: 1 + id: "botania:twig_wand" + tag: { + color1: 0 + color2: 0 + } + } + type: "item" + }] + title: "&3Wand of the Forest" + x: -9.5d + y: -3.0d + } + { + dependencies: ["205BBDFBCA582E3B"] + description: [ + "The &2Mana Spreader&r shoots Mana from point &oA&r&b to point &oB&r&b. It faces a cardinal direction when placed, but &nsneak-right clicking&r it with a &aWand of the Forest&r on a face points it elsewhere. It can be aimed at other blocks with a wand in &7Bind Mode&r." + "" + "Holding a Wand of the Forest makes nearby spreaders display aiming beams. Hovering over a spreader highlights its target. The sparkles show where &bMana Loss&r begins to occur. As long as the target of the spreader can accept Mana (that is, can contain Mana and isn't full), the spreader will repeatedly fire &bMana Bursts&r, which travel to their destination and transfer their &bMana&r to it." + "" + "Applying a &cRedstone&r Signal to a spreader will pause its firing of bursts. If finer control is required, a &dPulse Mana Spreader&r is recommended, as it fires upon a redstone signal in lieu of a target." + ] + id: "1C48F2612F2FA828" + rewards: [ + { + id: "218AF7485E1F319F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "78CC6E9BB0243661" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0B0D56F682F2791A" + item: "botania:mana_spreader" + type: "item" + }] + title: "Directing Mana" + x: -9.5d + y: -2.0d + } + { + dependencies: ["1C48F2612F2FA828"] + description: [ + "When you combine a piece of &4Redstone&r with a &2Mana Spreader&r, it creates a &9Pulse Mana Spreader&r." + "" + "These can be controlled to only shoot a mana pulse when given a redstone pulse." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "4C22BA5824662C7E" + optional: true + rewards: [ + { + id: "51FB8A5FF90A645C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "456B18713D458AAD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "06C2FA45E55D9369" + item: "botania:redstone_spreader" + type: "item" + }] + x: -9.494642857142857d + y: -1.1321428571428527d + } + { + dependencies: ["23ADD20D9B1AE0F3"] + description: [ + "The &9Mana Pool&r is a storage for &bMana&r." + "" + "Tossing certain resources into a Mana Pool, once it has some mana stored inside, will infuse them with Mana from the pool, turning them into more magically-useful forms, like Manasteel, Mana Diamonds, Mana Pearls." + "" + "To generate &bMana&r, you'll need to make a &2Generating Flower&r, like the &9Hydroangeas&r or the &cEndoflame&r." + "" + "The &9Mana Pool&r stores a massive amount of &bMana&r. &aWand of the Forest&r can read the &bMana&r levels in a pool, much like a &eMana Spreader&r." + ] + hide_until_deps_complete: false + id: "7A359C1F5E041C4F" + min_width: 300 + rewards: [ + { + id: "3F5C579642C1615A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3099CF7685D5F2F8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "57D1954039E03CDB" + item: "botania:mana_pool" + type: "item" + } + { + id: "558649C69096D2D7" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:hydroangeas" + } + { + Count: 1b + id: "botania:endoflame" + } + ] + } + } + title: "Starter Generating Flowers" + type: "item" + } + ] + title: "&bMana&r" + x: -7.5d + y: -3.0d + } + { + dependencies: ["7A359C1F5E041C4F"] + description: [ + "The &bMana Splitter&r can be used as a way of splitting incoming &bMana&r bursts into several &9Mana Pools&r at once." + "" + "&7Sparks&r are used to transfer &bMana&r to specific blocks, which are needed for in the progression of &aBotania&r." + "" + "To use a &7Spark&r, place one over a &9Mana Pool&r, then another over a nearby block that can accept it. Think of this like \"wirelessly\" transferring &bMana&r from your &9Mana Pools&r to the desired nearby block." + "" + "To remove a &7Spark&r, &esneak-right&r click it with a &2Wand of the Forest&r." + ] + id: "2CBBE8EF07B1D3DA" + rewards: [ + { + id: "7E54B8C8C4E93FB9" + type: "xp" + xp: 50 + } + { + id: "69F76C08DFE4EFB7" + item: "botania:spark" + type: "item" + } + { + exclude_from_claim_all: true + id: "0AF188E1D852A6EF" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [ + { + id: "6979609EF9040D79" + item: "botania:mana_distributor" + type: "item" + } + { + id: "4EA054C6C0255900" + item: "botania:spark" + type: "item" + } + ] + x: -7.0d + y: -2.0d + } + { + dependencies: ["7A359C1F5E041C4F"] + description: [ + "The &9Mana Tablet&r is a portable &9Mana Pool&r!" + "" + "Tossing the tablet into a &9Mana Pool&r will allow it to either give or take &bMana&r from the pool. You can switch between the modes by &esneak-right&r clicking with a &2Wand of the Forest&r." + ] + id: "2162EA0216E27D68" + rewards: [ + { + id: "45AC19C3D395E86B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "48B8EFFD215D5C51" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0ADA4C174CEF2EEE" + item: "botania:mana_tablet" + type: "item" + }] + x: -8.0d + y: -2.0d + } + { + dependencies: ["7A359C1F5E041C4F"] + description: ["The &9Band of Mana&r is a wearable Mana Tablet that can be equipped like a trinket."] + id: "379AC75F99212089" + rewards: [ + { + id: "2174A01222882E0A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4D3FF422251ECE21" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "088F2F276200B262" + item: "botania:mana_ring" + type: "item" + }] + x: -7.5d + y: -1.5d + } + { + dependencies: ["379AC75F99212089"] + description: ["By upgrading the &9Band of Mana&r with an ingot of &6Terrasteel&r, it creates the &dGreater Band of Mana&r which allows it to hold up to &o4x&r the amount of &bMana&r."] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "2F01BF021E1BE0A2" + optional: true + rewards: [ + { + id: "583C2E0F0D7B585E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7A20BBD6F5614FA3" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3678AFFD31942CF3" + item: "botania:mana_ring_greater" + type: "item" + }] + x: -8.0d + y: -0.5d + } + { + dependencies: ["109C0AE9202A6AB8"] + description: ["The &cEndoflame&r will absorb any combustible items or blocks dropped nearby, one at a time. It will then burn them to generate &bMana&r."] + id: "177658CA70DB0C89" + rewards: [ + { + id: "3E0E8CD62EB71566" + type: "xp" + xp: 50 + } + { + id: "5F65DAF582B70C32" + item: "minecraft:coal_block" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "43A62CABE8EAA474" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "circle" + tasks: [{ + id: "0F3DB7859AC1FA8A" + item: "botania:endoflame" + type: "item" + }] + title: "&cBurning Items&r to Create Mana" + x: -7.5d + y: -6.0d + } + { + dependencies: ["109C0AE9202A6AB8"] + description: ["These flowers generate Mana by consuming &bWater Source Blocks&r in a 3x3 area around it. These are very slow, and will eventually decay."] + hide_dependency_lines: false + hide_until_deps_complete: false + id: "5D4F9B54A54EEBD6" + rewards: [ + { + id: "1FCDEEAB8174E4E1" + type: "xp" + xp: 50 + } + { + id: "77562C003B1B35AE" + item: "cookingforblockheads:sink" + type: "item" + } + { + exclude_from_claim_all: true + id: "7ED62D54966BEC70" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "361773BACA86686E" + item: "botania:hydroangeas" + type: "item" + }] + title: "Using &9Water&r to Create Mana" + x: -7.5d + y: -7.0d + } + { + dependencies: ["7A359C1F5E041C4F"] + description: ["Found only in treasure chests, the &0Black Lotus&r can be thrown into a non-empty &9Mana Pool&r to give it a good deal of concentrated &bMana&r."] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "5E2AA5695D1F21D7" + optional: true + rewards: [ + { + id: "01D5B1969828031B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "329F3C7FE01A46F0" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "490EAAA3703A576F" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:black_lotus" + } + { + Count: 1b + id: "botania:blacker_lotus" + } + ] + } + } + title: "Black Lotus" + type: "item" + }] + title: "The Elusive Mana-infused Lotus" + x: -8.530357142857142d + y: -2.953571428571429d + } + { + dependencies: [ + "07F65584D1525191" + "609284EA5EDD6A64" + ] + dependency_requirement: "one_completed" + hide_dependency_lines: true + id: "7D583D8AD37085A6" + optional: true + rewards: [ + { + id: "428239A003A33940" + type: "xp" + xp: 150 + } + { + id: "2B2CFBC1228AF750" + item: "botania:manasteel_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7B139418E578420A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0573FE02AA798A3A" + item: { + Count: 1 + id: "aiotbotania:manasteel_aiot" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&9Manasteel&r AIOT" + x: -4.0d + y: -9.5d + } + { + dependencies: ["70C5A902C0D26628"] + id: "07F65584D1525191" + rewards: [ + { + id: "43F14C9FC6B8D8A8" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7B61D8BCE887453C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "76BA8B9CAF7F42CF" + item: { + Count: 1 + id: "botania:manasteel_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&9Manasteel Sword" + x: -5.0d + y: -8.0d + } + { + dependencies: ["70C5A902C0D26628"] + description: [ + "Similar to the qualities of &7Iron&r, &9Manasteel Armor&r has superior &nenchantability&r and &ndurability&r." + "" + "&9Manasteel&r items can also repair themselves with &bMana&r from the user's &einventory&r." + ] + hide_until_deps_complete: false + id: "64DB69F741EA5BEE" + rewards: [ + { + id: "02369900BB48EB59" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "4BE3ABEAC6696544" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "731919E7ED474146" + item: { + Count: 1 + id: "botania:manasteel_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6ABD8D027FD1C170" + item: { + Count: 1 + id: "botania:manasteel_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "41EBB5AAF5F27DCA" + item: { + Count: 1 + id: "botania:manasteel_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "248AD65A97AFB7DB" + item: { + Count: 1 + id: "botania:manasteel_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&9Manasteel Armor" + x: -4.0d + y: -8.5d + } + { + dependencies: ["70C5A902C0D26628"] + id: "609284EA5EDD6A64" + rewards: [ + { + id: "68E57DDA535C30D4" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "731F11F572EBB49C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4F1B648C3517B8B0" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:manasteel_pick" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "botania:manasteel_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "botania:manasteel_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "botania:manasteel_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&9Manasteel Tools" + type: "item" + }] + x: -3.0d + y: -8.0d + } + { + dependencies: ["7A359C1F5E041C4F"] + description: [ + "By tossing in certain items into a &3Mana Pool&r, you can infuse them with &bMana&r." + "" + "Creating &9Manasteel&r or &bMana Diamond&r blocks will save your time, but more &bMana&r is required!" + ] + hide_until_deps_complete: false + id: "70C5A902C0D26628" + rewards: [ + { + id: "1F416DEEB92E89D8" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "607B52F0ADBE3D69" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "43C86CA84DC14E8A" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:manasteel_ingot" + } + { + Count: 1b + id: "botania:mana_pearl" + } + { + Count: 1b + id: "botania:mana_diamond" + } + { + Count: 1b + id: "botania:mana_string" + } + { + Count: 1b + id: "botania:mana_powder" + } + { + Count: 1b + id: "botania:quartz_mana" + } + { + Count: 1b + id: "botania:manasteel_block" + } + { + Count: 1b + id: "botania:mana_glass" + } + { + Count: 1b + id: "botania:mana_diamond_block" + } + ] + } + } + title: "&3Mana-Infused Resources" + type: "item" + }] + x: -4.0d + y: -6.5d + } + { + dependencies: ["70C5A902C0D26628"] + description: [ + "While the &bManaweave Robes&r don't offer the greatest overall protection, the set &obonus&r is pretty powerful!" + "" + "When all four pieces are worn, you'll get a &b&odiscount&r on &bMana&r cost for &b&oMana Tools&r and &b&oRods&r." + "" + "The set can also repair itself using &bMana&r from one's &einventory&r." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "05A845C811A9A4A0" + rewards: [ + { + id: "31C822F989CE89D1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6B18EF42C5D3B2F0" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + id: "6F1EBC95C7BC93DF" + item: "botania:manaweave_cloth" + type: "item" + } + { + id: "380292B73C32D32D" + item: { + Count: 1 + id: "botania:manaweave_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0E65D022473C0996" + item: { + Count: 1 + id: "botania:manaweave_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "75862C1E5E59C465" + item: { + Count: 1 + id: "botania:manaweave_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0E6BE4209A3BFC82" + item: { + Count: 1 + id: "botania:manaweave_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Manaweave Robes" + x: -5.5d + y: -6.5d + } + { + dependencies: ["70C5A902C0D26628"] + description: [ + "The &dAlchemy Catalyst&r can be placed under a &bMana Pool&r to allow it to perform &9Alchemy&r. " + "" + "This is useful to convert certain items into more useful items, like &cRotten Flesh&r into &4Leather&r." + ] + id: "32DF4BC46620F952" + rewards: [ + { + id: "5105A5CC9AE334EF" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "211DBE62A985CB01" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0B5B67B066E672CD" + item: "botania:alchemy_catalyst" + type: "item" + }] + x: -2.5d + y: -6.5d + } + { + dependencies: ["70C5A902C0D26628"] + description: [ + "&9Runes&r are vital crafting components in many of the more advanced recipes in Botania, and these are created on a &aRunic Altar&r." + "" + "To use the &aAltar&r, start by placing the components of the rune you want on it. This can be done either by right clicking or dropping the item. It will also need &bMana&r, so make sure to point a &2Mana Spreader&r that is getting &bMana&r towards it as well." + "" + "Once you've finished placing the items, you can hover over the &aAltar&r with your wand and it will show you the progress of the recipe. When it completes, drop a piece of &3Livingrock&r on the Altar, then use your wand to collect your &eRune&r." + "" + "A total of &o16&r &eRunes&r exist. The most elementary runes are named after the &2Four Elements&r, the intermediate runes are named after the &eFour Seasons&r, and the most advanced runes are named after the &cSeven Deadly Sins&r. A separate &dRune of Mana&r also exists outside this progression." + "" + "Runes used for recipes in the Runic Altar function as catalysts, and will not be consumed." + "" + "Just like the &3Petal Apothecary&r, &eright-clicking&r the &aAltar&r with an empty hand after a recipe is complete will refill it with the items used in the last recipe." + ] + id: "0631F054A9B97A40" + min_width: 300 + rewards: [ + { + id: "576C91544B6A673C" + type: "xp" + xp: 100 + } + { + id: "1848175848E1EC33" + item: "botania:rune_greed" + type: "item" + } + { + exclude_from_claim_all: true + id: "774C8CEBEBF2085C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "1B91D26F0A805561" + item: "botania:runic_altar" + type: "item" + } + { + id: "5A06ED36DD9E9681" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:rune_water" + } + { + Count: 1b + id: "botania:rune_fire" + } + { + Count: 1b + id: "botania:rune_earth" + } + { + Count: 1b + id: "botania:rune_air" + } + { + Count: 1b + id: "botania:rune_mana" + } + ] + } + } + title: "Basic Runes" + type: "item" + } + ] + x: -4.0d + y: -5.0d + } + { + dependencies: ["0631F054A9B97A40"] + description: ["When equipped, the &9Band of Aura&r will slowly generate a trickle of &bMana&r over time, and stores it into &oMana-containing&r items within your &einventory&r."] + hide_dependency_lines: false + id: "6A56574BC562B227" + rewards: [ + { + id: "4B467BD98812A91F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1DE74FA22925CFE7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "04EDE2305855A16B" + item: "botania:aura_ring" + type: "item" + }] + x: -3.0d + y: -4.0d + } + { + dependencies: ["0631F054A9B97A40"] + description: [ + "To create &aTerrasteel&r, we'll first need to set up the multiblock for it. " + "" + "For starters, its creation requires a &9Terrestrial Agglomeration Plate&r placed over a checkerboard pattern of &1Lapis Lazuli Blocks&r and &3Livingrock&r (or &7Shimmerrock&r). This block then needs to be provided with &bMana&r, with &7Sparks&r being the most efficient mode of transfer." + ] + icon: "botania:terra_plate" + id: "65238A6DCDDDFA0D" + rewards: [ + { + id: "369F0385E3D1A45B" + type: "xp" + xp: 100 + } + { + id: "34946BD2BA2E9192" + item: "botania:rune_lust" + type: "item" + } + { + exclude_from_claim_all: true + id: "0E91873B3A9A2556" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "76F8BB9B8C181006" + item: "botania:terra_plate" + type: "item" + } + { + count: 5L + id: "3979F9123607CE43" + item: "botania:livingrock" + type: "item" + } + { + count: 4L + id: "5BDBE9C2E0B8F70A" + item: "minecraft:lapis_block" + type: "item" + } + ] + x: -1.5d + y: -5.0d + } + { + dependencies: ["6A56574BC562B227"] + description: ["By upgrading the &9Band of Aura&r with an ingot of &6Terrasteel&r, it increases the mana generation rate of the band significantly."] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "70C25BFA6FFA1799" + optional: true + rewards: [ + { + id: "3D5C2F4B20A5829D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "34FB81BC4B1FA240" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "34385B9406728C43" + item: "botania:aura_ring_greater" + type: "item" + }] + x: -2.0d + y: -4.0d + } + { + dependencies: ["30F7B68093D76590"] + description: [ + "&2Incense Sticks&r can be infused with Brews in a &dBotanical Brewery&r." + "" + "These can be lit using &oflint and steel&r on an &9Incense Plate&r to provide the brew effect for sixty times longer than its liquid counterpart, in a &n30-block&r radius around the plate." + ] + id: "0D9354ABA2AE2A11" + rewards: [ + { + id: "401FF6D8EC4E3C9B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "55D6C5A9187F9864" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0B549F7000B06C0D" + item: "botania:incense_stick" + type: "item" + }] + x: -5.5d + y: -3.0d + } + { + dependencies: ["0631F054A9B97A40"] + description: ["Using vials, Mana, and reagents in a &aBotanical Brewery&r, you can create &9Brews&r which are just like Potions."] + id: "30F7B68093D76590" + rewards: [ + { + id: "1E29B9EBAF70CA6C" + type: "xp" + xp: 100 + } + { + count: 2 + id: "33010A0CBCEC5323" + item: "botania:vial" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "58248DC7FD4068E1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4E9712523E4B94E8" + item: "botania:brewery" + type: "item" + }] + x: -5.0d + y: -4.0d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Dramatically increases the speed of the &aMana Bursts&r at the expense of initial capacity and faster mana loss."] + hide_dependency_lines: true + id: "2D1533268C835672" + rewards: [ + { + id: "27C4C4ECBDD8CFB2" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4F56E19F33DDD10C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "4447633E574741FD" + item: "botania:lens_speed" + type: "item" + }] + x: -5.0d + y: -2.0d + } + { + dependencies: ["0631F054A9B97A40"] + description: [ + "To upgrade the &2Mana Spreader&r, you can attach &9Mana Lenses&r to the front of the Spreader. However, the most basic Mana Lens does nothing." + "" + "You'll need to upgrade the Mana Lens to give it different effects on the bursts of Mana it sends out. Lenses can also be dyed by crafting it with any color, or with a Mana Pearl to create a Rainbow Lens." + "" + "By combining a Mana Lens with specific runes and items, we can use them to upgrade our Spreaders. You can also combine 2 lenses together with a &aSlime Ball&r to create &9Composite Lenses&r, combining the powers to create even stronger effects." + ] + id: "6FBE0BF8A7ADBB26" + min_width: 300 + rewards: [ + { + id: "3B601334FFB56069" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5819E9E1664A19F1" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "3E76CBAA617FAA35" + item: "botania:lens_normal" + type: "item" + }] + title: "Upgrading Mana Spreaders" + x: -4.0d + y: -3.5d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Significantly increases the amount of time a &aMana Burst&r can go without starting to lose &bMana&r, but slows it down as well."] + hide_dependency_lines: true + id: "4CED346215DDBAC0" + rewards: [ + { + id: "7362FD9B9AB62AB8" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "10D457D42DAB0188" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "58A4565F18420732" + item: "botania:lens_time" + type: "item" + }] + x: -3.0d + y: -2.0d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Doubles the amount of &bMana&r a &aMana Burst&r can carry, at the cost of speed and increased mana loss over longer distances."] + hide_dependency_lines: true + id: "7A82D66B1B138F0F" + rewards: [ + { + id: "57CA8F5150562EDE" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "2E2BCBB615B927AB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "1F0DDF8D08AA2D09" + item: "botania:lens_power" + type: "item" + }] + x: -3.5d + y: -2.5d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Allows &aMana Bursts&r to bounce off of walls."] + hide_dependency_lines: true + id: "504ADBD7E2476827" + rewards: [ + { + id: "477A3BF01D3F9CAF" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "28C60410A29B1B9A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "46729DA26469F064" + item: "botania:lens_bounce" + type: "item" + }] + x: -4.0d + y: -2.0d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Decreases the amount of time that it takes for a &aMana Burst&r to start losing its &bMana&r, but will also decrease its rate of loss."] + hide_dependency_lines: true + id: "5A7FF6D0AED656DC" + rewards: [ + { + id: "136B2862652086D9" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5173A140B4E2E818" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5FBA2E1E91367CB5" + item: "botania:lens_efficiency" + type: "item" + }] + x: -4.5d + y: -2.5d + } + { + dependencies: ["23A2865FBE7831AB"] + description: [ + "Tired of using a shovel to level out grass? Try using the &2Rod of Terra Firma&r!" + "" + "At the cost of &bMana&r, this will flatten the surrounding land to your own altitude by charging up the rod by &eholding right click&r." + "" + "All blocks removed by the rod are not &nrecoverable&r." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "2EB6088D4E85DA42" + optional: true + rewards: [ + { + id: "158F5E8E623CFFCA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "01EAFE1CCBD85DBB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1DCCF34086BB0191" + item: "botania:terraform_rod" + type: "item" + }] + x: -1.5d + y: -6.5d + } + { + dependencies: ["65238A6DCDDDFA0D"] + description: [ + "Now it's time to make &aTerrasteel&r!" + "" + "&6Terrasteel&r needs a lot of &bMana&r to craft, requiring the use of &7Sparks&r. Place several &7Sparks&r over your &dMana Pools&r, then one over the &9T.A. Plate&r to direct your mana for crafting." + "" + "Once you have the platform ready for crafting, toss one &9Manasteel Ingot&r, &bMana Diamond&r, and a &3Mana Pearl&r on the plate to start crafting &6Terrasteel&r." + ] + icon: "botania:terrasteel_ingot" + id: "23A2865FBE7831AB" + min_width: 400 + rewards: [ + { + id: "5F4FB5C3386BFBE9" + type: "xp" + xp: 100 + } + { + count: 6 + id: "01AE2E3604971EE1" + item: "botania:terrasteel_nugget" + random_bonus: 6 + type: "item" + } + { + exclude_from_claim_all: true + id: "13302CEA1F8F2898" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + count: 6L + id: "1DFC017C335D814E" + item: "botania:terrasteel_ingot" + type: "item" + }] + title: "&6Terrasteel" + x: 0.0d + y: -6.5d + } + { + dependencies: ["23A2865FBE7831AB"] + description: ["With the damage of a &dDiamond Sword&r, the &2Terra Blade&r will sometimes fire a beam that will deal as much as a melee hit would."] + id: "24C0F267B330CD23" + rewards: [ + { + id: "570A696F06A33952" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5B79BB854B3BA723" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "679F0AA9731DAF88" + item: { + Count: 1 + id: "botania:terra_sword" + tag: { + Damage: 0 + } + } + title: "&6Terra Blade" + type: "item" + }] + x: -1.0d + y: -8.0d + } + { + dependencies: ["23A2865FBE7831AB"] + description: [ + "Just like &9Manasteel Armor&r, &6Terrasteel Armor&r can repair itself using &bMana&r." + "" + "It has the durability comparable to &dDiamond Armor&r as well." + ] + hide_until_deps_complete: false + id: "10F2044D080D6209" + rewards: [ + { + id: "652C453A738FEC70" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "2EA973A616B19868" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "7502EF4CC54F1E6E" + item: { + Count: 1 + id: "botania:terrasteel_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "30BFF28FAC3C6862" + item: { + Count: 1 + id: "botania:terrasteel_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1295FFF7C7E5C731" + item: { + Count: 1 + id: "botania:terrasteel_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "69DDDE2C4D586735" + item: { + Count: 1 + id: "botania:terrasteel_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&6Terrasteel Armor" + x: 0.0d + y: -8.5d + } + { + dependencies: ["23A2865FBE7831AB"] + description: [ + "It's not just a pickaxe, the &6Terra Shatterer&r also acts just like a &bMana Tablet&r when tossed into a &9Mana Pool&r and can store a ton of mana. However, you will not be able to release the absorbed mana from the &6Shatterer&r. " + "" + "The higher the amount of &bMana&r stored in the tool, the higher the rank that it has, with &lD&r being the lowest and &lSS&r being the highest." + "" + "Increasing the tool's rank does not increase the speed of it, but instead increases the AoE of its &bActive Ability&r, which can be toggled on and off by &esneak-right&r clicking. When active, it increases the &6Shatterer's&r mining width and height based on the rank. Being at a rank of D will not have an ability." + "" + "As long as the tool is &nactive&r, it will consume its stored mana." + "" + "Using Mana, the &2Terra Truncator&r will feel entire trees in one fell swoop." + ] + id: "4143C1CF83DE922E" + min_width: 300 + rewards: [ + { + id: "55F2CC37949D63B0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "042DBCF9DF7A4409" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "75ACECE8E7049FFD" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:terra_pick" + tag: { + Damage: 0 + mana: 9999 + } + } + { + Count: 1b + id: "botania:terra_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "aiotbotania:terra_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "aiotbotania:terra_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&6Terrasteel Tools" + type: "item" + }] + x: 1.0d + y: -8.0d + } + { + dependencies: [ + "24C0F267B330CD23" + "4143C1CF83DE922E" + ] + dependency_requirement: "one_completed" + hide_dependency_lines: true + id: "427854436214D856" + optional: true + rewards: [ + { + id: "0D61EA31B31F5D09" + type: "xp" + xp: 250 + } + { + id: "30BC0C30D49D271A" + item: "botania:terrasteel_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "19D27DBF55708410" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "452C356D4E2D5863" + item: { + Count: 1 + id: "aiotbotania:terra_aiot" + tag: { + Damage: 0 + mana: 9999 + } + } + type: "item" + }] + title: "&6Terrasteel&r AIOT" + x: 0.0d + y: -9.5d + } + { + dependencies: [ + "497C981D49B7FBD6" + "1BCA04665A8F5EF5" + ] + hide_dependency_lines: true + id: "7A638812AD62D449" + optional: true + rewards: [ + { + id: "6E678AEF8B8966BC" + type: "xp" + xp: 350 + } + { + id: "5D697F07FA4F3EE2" + item: "botania:elementium_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "63625F0CFEEF7FA6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "59AED21010D90C69" + item: { + Count: 1 + id: "aiotbotania:elementium_aiot" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&dElementium&r AIOT" + x: 4.5d + y: -9.5d + } + { + dependencies: ["3A20210242A1C865"] + description: ["Increases the chance of a &5Pixie&r spawning when hit, and augments the strength of any &5Pixies&r that are spawned."] + id: "497C981D49B7FBD6" + rewards: [ + { + id: "302C4454A0407139" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "45C42201BD2539A0" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1BF03F0B36123366" + item: { + Count: 1 + id: "botania:elementium_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.5d + y: -8.0d + } + { + dependencies: ["3A20210242A1C865"] + description: [ + "Just like most armor in Botania, the &9Elementium&r set can repair itself with mana." + "" + "It also has a chance to spawn a &aPixie&r whenever the wearer is harmed. " + ] + hide_until_deps_complete: false + id: "2F388BE777C43EB6" + rewards: [ + { + id: "2FFD52FE7AC45EFB" + type: "xp" + xp: 350 + } + { + exclude_from_claim_all: true + id: "7544AA8F60EACD02" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "5820572224CA1F4C" + item: { + Count: 1 + id: "botania:elementium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3E0174D5D8FB4712" + item: { + Count: 1 + id: "botania:elementium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2E1C97AD850434EC" + item: { + Count: 1 + id: "botania:elementium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4B1C5F307D76F97A" + item: { + Count: 1 + id: "botania:elementium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 4.5d + y: -8.5d + } + { + dependencies: ["3A20210242A1C865"] + description: [ + "&dElementium Pickaxe&r:" + "Has an ability to clear away &3Cobblestone&r, &7Dirt&r, &cNetherrack&r, and other common materials, leaving behind only ores and fine resources." + "" + "Can combine with the &eTerra Shatterer&r in a crafting grid, which will allow the latter to take on the former's power. This cannot be &nundone&r." + "" + "&dElementium Axe&r:" + "Can drop &0skulls&r from certain mobs or players when dealing the finishing blow. Can also be enchanted with &6Looting&r." + "" + "&dElementium Shovel&r:" + "When breaking a block that is affected by gravity, this will &nauto-break&r all blocks above or below it." + "" + "&dElementium Hoe&r:" + "&nInstantly moisten&r farmland it creates." + ] + id: "1BCA04665A8F5EF5" + rewards: [ + { + id: "74433A30F54CDA76" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "57DFE404C8FD5867" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7EBD7DCB98AAD9B7" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:elementium_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "botania:elementium_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "botania:elementium_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "botania:elementium_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&dElementium Tools" + type: "item" + }] + x: 5.5d + y: -8.0d + } + { + dependencies: ["1EF7664F5D8C5FF1"] + description: [ + "While you may not be able to enter the &dPortal to Alfheim&r, you can perform an &2Elven Trade&r by tossing in certain items through the portal. This does use mana for each trade! These materials can also be used to upgrade some of your items, like creating &2Elven Mana Spreaders&r." + "" + "Throwing in our &aLexica Botania&r will also upgrade it with &6Elven Knowledge&r, giving you more insight into your journey in Botania." + ] + icon: "botania:dragonstone" + id: "3A20210242A1C865" + min_width: 300 + rewards: [ + { + id: "54485635405DA167" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7DF28546F3BBEBC7" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [ + { + id: "6A9E12C2483D4883" + item: { + Count: 1 + id: "botania:lexicon" + tag: { + "botania:elven_unlock": 1b + } + } + type: "item" + } + { + id: "5BD644B2A02DF9C0" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:pixie_dust" + } + { + Count: 1b + id: "botania:quartz_elven" + } + { + Count: 1b + id: "botania:elf_glass" + } + { + Count: 1b + id: "botania:elementium_block" + } + { + Count: 1b + id: "botania:elementium_ingot" + } + { + Count: 1b + id: "botania:dreamwood_log" + } + { + Count: 1b + id: "botania:dreamwood" + } + { + Count: 1b + id: "botania:dragonstone_block" + } + { + Count: 1b + id: "botania:dragonstone" + } + ] + } + } + title: "Alfheim Resources" + type: "item" + } + ] + title: "Communing with Elves" + x: 4.5d + y: -6.5d + } + { + dependencies: ["3A20210242A1C865"] + description: [ + "With the new Elven materials, we're able to upgrade our sparks using &dAugments&r. With the Augment in hand, you can right click a spark with it to upgrade it. Using the wand, you can sneak-right click to remove it." + "" + "&9Dispersive Augment&r: Allows a Spark to drain the Mana in its pool to charge nearby players' Mana-containing items." + "" + "&9Dominant Augment&r: Makes a Spark pull Mana from nearby non-augmented Sparks' pools into its own." + "" + "&9Recessive Augment&r: Makes a Spark distribute all of the Mana in its pool into nearby non-augmented or Dispersive Sparks' pools." + "" + "&9Isolated Augment&r: Prevents a Spark from interacting with any Dominant or Recessive Sparks." + ] + id: "5CB5F4CD521F6361" + min_width: 300 + rewards: [ + { + id: "02D21C31266770EA" + type: "xp" + xp: 100 + } + { + id: "740AE948A993ECAF" + item: "botania:spark_changer" + type: "item" + } + { + exclude_from_claim_all: true + id: "5ED00F263A23F2D8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "28B797392467C851" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:spark_upgrade_dispersive" + } + { + Count: 1b + id: "botania:spark_upgrade_dominant" + } + { + Count: 1b + id: "botania:spark_upgrade_recessive" + } + { + Count: 1b + id: "botania:spark_upgrade_isolated" + } + ] + } + } + title: "Spark Augments" + type: "item" + }] + title: "&3Spark Augments" + x: 5.5d + y: -4.5d + } + { + dependencies: ["3A20210242A1C865"] + description: ["Similar to the &cAlchemy Catalyst&r, when placed under a &bMana Pool&r, the &9Conjuration Catalyst&r unlocks the abillity to use conjuration recipes. "] + id: "1DCFC67A8E3DCA2C" + rewards: [ + { + id: "770A8047DB3CAB67" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0AC11A4EDCD92F13" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "258C1DEBF18D2EBA" + item: "botania:conjuration_catalyst" + type: "item" + }] + x: 3.5d + y: -4.5d + } + { + dependencies: ["23A2865FBE7831AB"] + description: [ + "To create a &dPortal to Alfheim&r, start with the frame. We'll need to use 8 Livingwood blocks, 3 Glimmering Livingwood blocks, and an &9Elven Gateway Core&r to create the frame." + "" + "Once the frame is created, we'll need to open it by using at least &d2 Mana Pools&r, a huge amount of mana, and a &aNatura Pylon&r over the 2 pools. These mana pools can be within an 11x11x11 area around the core." + "" + "With everything set up, &eright click&r the &6Elven Core&r with your wand to activate the portal." + ] + id: "1EF7664F5D8C5FF1" + min_width: 500 + rewards: [ + { + id: "2082E1DD4BF81D00" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "6869B5DC842EB2DE" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "420577A05AAC9A18" + item: "botania:alfheim_portal" + type: "item" + } + { + count: 2L + id: "184D19EC756FBCD8" + item: "botania:natura_pylon" + type: "item" + } + { + count: 3L + id: "763D84A4488A3008" + item: "botania:glimmering_livingwood_log" + type: "item" + } + { + count: 8L + id: "08AECABD8E75A495" + item: "botania:livingwood" + type: "item" + } + { + count: 2L + id: "440C37529DEF7536" + item: "botania:mana_pool" + type: "item" + } + ] + title: "&3The Portal to Alfheim" + x: 2.0d + y: -6.5d + } + { + dependencies: ["3A20210242A1C865"] + description: [ + "With Botania, you can create a &dCorporea Network&r by using &9Corporea Sparks&r over inventories." + "" + "While the network will need at least one &bMaster&r &9Corporea Spark&r to work, you can expand the network with as many Corporea Sparks as you want. When these Sparks are placed, it will connect to all of the same colored Corporea Sparks and form an item network. Each Spark only has a range of 8 blocks." + "" + "These Sparks can only see the inventory directly beneath it, but can only access items from its top side. Each Spark can also see every item in the Corporea network, and can be accessed by other Corporea blocks, like the Funnel or Index." + ] + id: "634E71DBAE81D197" + min_width: 300 + rewards: [ + { + id: "24B9FEA1C04B9C8C" + type: "xp" + xp: 100 + } + { + id: "4E72102CBCCB0C69" + item: "botania:spark" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "652BC247EAB41D31" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "5F0667A0930319F8" + item: "botania:corporea_spark" + type: "item" + } + { + id: "3844BA7E922E8B45" + item: "botania:corporea_spark_master" + type: "item" + } + ] + title: "&3The Corporea Network&r" + x: 4.5d + y: -4.0d + } + { + dependencies: ["634E71DBAE81D197"] + description: [ + "The &9Corporea Funnel&r is a simple version of the Index, and can be used to request items from the Network by giving it a &credstone&r signal." + "" + "To tell the &0Funnel&r which item to request, place the item in an &7Item Frame&r on the block. If the &0Funnel&r has more than one item frame on it, the &0Funnel&r will pick one at random. Rotating the item in the frame will change the request quantity." + ] + id: "4ECFB1256BD6A7AA" + rewards: [ + { + id: "0924F6AEDAFE95F8" + type: "xp" + xp: 100 + } + { + id: "05D76B40D8603E67" + item: "create:andesite_funnel" + type: "item" + } + { + exclude_from_claim_all: true + id: "1E2D73ABC764E677" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "27FBB10E434FBD29" + item: "botania:corporea_funnel" + type: "item" + }] + x: 3.5d + y: -2.5d + } + { + dependencies: ["634E71DBAE81D197"] + description: ["The &9Corporea Crystal Cube&r is used to show the total count of an item in the Corporea Network of the Spark placed above it by right clicking it with that item."] + id: "7440E522FC31C341" + optional: true + rewards: [ + { + id: "400B276E83E4995C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "39A1F5E5372EB495" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1550070280A21DC5" + item: "botania:corporea_crystal_cube" + type: "item" + }] + x: 5.5d + y: -2.5d + } + { + dependencies: ["634E71DBAE81D197"] + description: [ + "The &5Corporea Index&r is the interface block you need to access and request items from the &9Corporea Network&r of the Corporea Spark placed above it." + "" + "To use this, approach the Index and it will intercept Chat Messages from nearby players. These players can request items from the network by typing in what they are looking to get. For example, you could say &310 Iron Ingots&r, and if the system has it, it will drop it out for you." + ] + id: "7DF7F9CD9A795E69" + rewards: [ + { + id: "523E4CE81DF8F862" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "1AC8C9B5CCA2A821" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3611F94A69522BA9" + item: "botania:corporea_index" + type: "item" + }] + x: 4.5d + y: -2.0d + } + { + dependencies: ["3A20210242A1C865"] + description: [ + "To continue your journey, you will need to get your hands on &6Gaia Spirits&r. To do this, you will need to perform the &9Ritual of Gaia&r." + "" + "You will need &o4&r &eGaia Pylons&r around an &aActive Beacon&r, as well as a single &6Terrasteel&r ingot. Once the structure is built, &esneak-right&r click the Beacon with the &6Terrasteel&r ingot and prepare for the fight of your life." + ] + icon: "botania:gaia_pylon" + id: "04CE14D92603FC7A" + min_width: 300 + rewards: [ + { + id: "52FC59CC8DB9CEEE" + type: "xp_levels" + xp_levels: 20 + } + { + id: "09F936A7659D022E" + item: "botania:rune_wrath" + type: "item" + } + { + exclude_from_claim_all: true + id: "6FABF202A9308A14" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + count: 4L + id: "21810A64B844C70E" + item: "botania:gaia_pylon" + type: "item" + } + { + id: "157BF2FA7A40BE0D" + item: "minecraft:beacon" + type: "item" + } + ] + title: "&aSummoning the&r &5Guardian of Gaia&r" + x: 7.0d + y: -6.5d + } + { + dependencies: ["0331107259F7B68C"] + description: ["The best &2Mana Spreader&r you can get."] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "4E03AC9D56202353" + optional: true + rewards: [ + { + id: "635C477D56FB88B2" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "6B7F32D2241E744C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2D5337F7895CC160" + item: "botania:gaia_spreader" + type: "item" + }] + x: 9.0d + y: -5.5d + } + { + dependencies: ["0331107259F7B68C"] + description: [ + "Summoning the &eGaia Guardian&r is necessary to acquire the first &6Gaia Spirits&r. The &eGaia Guardian&r drops &o8&r &6Gaia Spirits&r." + "" + "It is recommended to use half of these spirits to craft the &dGaia Spirit Ingot&r, which can be used in place of &6Terrasteel&r to summon the &0Gaia Guardian II&r, which drops &o16&r Spirits on death." + ] + hide_until_deps_complete: false + id: "27CD17C4B3613171" + rewards: [ + { + id: "6F718ABCAB882225" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "7859BF62BAAEA0DB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3DE2A054C6F00FBE" + item: "botania:gaia_ingot" + type: "item" + }] + x: 9.0d + y: -7.5d + } + { + dependencies: ["0331107259F7B68C"] + description: ["There are many trinkets that harness the power of &6Gaia Spirits&r. Make sure to check them out!"] + id: "66F1609053B5407C" + optional: true + rewards: [ + { + id: "67DD0610BB6C4893" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "36F47E29BAF1B525" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "44A3CDE54F2A5149" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "botania:black_hole_talisman" + } + { + Count: 1b + id: "botania:spawner_mover" + } + { + Count: 1b + id: "botania:astrolabe" + } + { + Count: 1b + id: "botania:holy_cloak" + } + { + Count: 1b + id: "botania:diva_charm" + } + { + Count: 1b + id: "botania:super_lava_pendant" + } + { + Count: 1b + id: "botania:unholy_cloak" + } + { + Count: 1b + id: "botania:laputa_shard" + } + { + Count: 1b + id: "botania:super_cloud_pendant" + } + { + Count: 1b + id: "botania:flight_tiara" + } + { + Count: 1b + id: "botania:mana_bomb" + } + { + Count: 1b + id: "botania:missile_rod" + } + { + Count: 1b + id: "botania:balance_cloak" + } + { + Count: 1b + id: "botania:super_travel_belt" + } + ] + } + } + title: "Gaia Trinkets" + type: "item" + }] + title: "&aGaia Gear and Trinkets&r" + x: 10.0d + y: -6.5d + } + { + dependencies: ["04CE14D92603FC7A"] + description: [ + "Upon defeating the &9Guardian of Gaia&r, you'll be rewarded with &6Gaia Spirits&r." + "" + "Both the game difficulty and the number of people participating in the ritual determine the amount of drops you will receive." + ] + icon: "botania:gaia_head" + id: "0331107259F7B68C" + rewards: [ + { + id: "3914369E0BBE0076" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "0451B9DA3C2FD5A9" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + entity: "botania:doppleganger" + icon: "botania:gaia_head" + id: "615316948CD5BB35" + type: "kill" + value: 1L + }] + x: 9.0d + y: -6.5d + } + { + dependencies: ["3F9049E485ED4779"] + description: [ + "&2Alfsteel&r is created via an infusion ritual atop a &5Mana Infuser&r." + "" + "To form one &2Alfsteel&r Ingot, throw an &dElementium&r Ingot, a &cPixie Dust&r, and a &5Dragonstone&r onto the plate." + "" + "The plate then must receive &o2,000,000&r &bMana&r (&n2 full Mana Pools&r), without any of the 3 items being &npicked up&r." + "" + "If any of the items are picked up, the infusion will &cfail&r." + "" + "As an indication of progress, several wisps of glowing &dpink&r smoke will fly out from the plate, rotate, fade from &9blue&r to &agreen&r, and finally crash together on the items, combining them into &2Alfsteel&r." + ] + id: "523E631AF16750C6" + min_width: 300 + rewards: [ + { + id: "5469C8C8FFF587ED" + type: "xp_levels" + xp_levels: 20 + } + { + count: 6 + id: "191FF474190209A4" + item: "mythicbotany:alfsteel_nugget" + random_bonus: 6 + type: "item" + } + { + exclude_from_claim_all: true + id: "6CDACFBBB4596778" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + subtitle: "Craft an Alfsteel Ingot." + tasks: [{ + count: 6L + id: "2E9397D3AC2C06AA" + item: "mythicbotany:alfsteel_ingot" + type: "item" + }] + title: "&2Alfsteel" + x: 9.0d + y: -3.0d + } + { + dependencies: ["70C25BFA6FFA1799"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "791C64A3DA422671" + optional: true + rewards: [ + { + id: "4B18A45BBC8CEDC8" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "2AB26D37E317D070" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1392E42D6A70ECDF" + item: "mythicbotany:mana_ring_greatest" + type: "item" + }] + x: -2.5d + y: -3.0d + } + { + dependencies: ["2F01BF021E1BE0A2"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "6D9A71919DEC7B7B" + optional: true + rewards: [ + { + id: "57FC10B0110B6EB5" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "2573F036C7CD5313" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3C4710F6B768395F" + item: "mythicbotany:aura_ring_greatest" + type: "item" + }] + x: -7.0d + y: -0.5d + } + { + dependencies: ["523E631AF16750C6"] + description: ["The &2Alf Blade&r uses &bMana&r from &9Mana Tablet&r or any other &bMana&r providing item in the player's &ainventory&r to prevent item damage or repair itself, using &o100&r &bMana&r per point of durability."] + id: "29FF08B720EF79FC" + optional: true + rewards: [ + { + id: "0C1A541748C32C6A" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "746BD4415D50E8A3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0AB3C163609EA230" + item: { + Count: 1 + id: "mythicbotany:alfsteel_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&2Alf Blade" + x: 8.0d + y: -2.0d + } + { + dependencies: ["523E631AF16750C6"] + id: "2EA487780DC60CE8" + optional: true + rewards: [ + { + id: "0BBB3E3C94AA08D1" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "346DBE0EEE620E4E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6492A6753A7A0ABD" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mythicbotany:alfsteel_pick" + tag: { + Damage: 0 + mana: 9999 + } + } + { + Count: 1b + id: "mythicbotany:alfsteel_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "aiotbotania:alfsteel_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "aiotbotania:alfsteel_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&2Alfsteel Tools" + type: "item" + }] + x: 10.0d + y: -2.0d + } + { + dependencies: [ + "29FF08B720EF79FC" + "2EA487780DC60CE8" + ] + hide_dependency_lines: true + id: "14598EAB4BBA185D" + optional: true + rewards: [ + { + id: "5D5926E658360204" + type: "xp" + xp: 450 + } + { + id: "7164F9E0E46560F9" + item: "mythicbotany:alfsteel_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "0D3DEBAFE57655E7" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "4AF41C67532659E5" + item: { + Count: 1 + id: "aiotbotania:alfsteel_aiot" + tag: { + Damage: 0 + mana: 9999 + } + } + type: "item" + }] + title: "&2Alfsteel&r AIOT" + x: 9.0d + y: -0.5d + } + { + dependencies: ["45BB8D86B7FDBE08"] + description: [ + "The &dDrum of the Wild&r is, simply put, the &eHorn of the Wild's&r percussion counterpart. It serves the exact same purpose as a handheld Horn, but as a block." + "" + "A &2Mana Burst&r colliding with it will produce a drumbeat that destroys nearby vegetation." + "" + "Note that the drum does not store &bMana&r; thus, to trigger it, a &aPulse Mana Spreader&r or a &7Mana Blaster&r is required." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "0B7466DBB69F89E4" + optional: true + rewards: [ + { + id: "67AAFAEC79F89420" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2ADCE7793B2501C6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "4BE941B143D1AEDE" + item: "botania:drum_wild" + type: "item" + }] + x: -10.15d + y: -5.25d + } + { + dependencies: ["58994465AC0DB441"] + description: [ + "The &6Drum of the Canopy&r is like the &dDrum of the Wild&r in that it's the percussion counterpart of a greenery-wrecking horn. " + "" + "It serves the exact same purpose as the handheld &eHorn of the Canopy&r, but as a block. It's operated identically to the &dDrum of the Wild&r." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "1D62965217492282" + optional: true + rewards: [ + { + id: "1FF793C2A83E9726" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "62210E82335BC7F6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "7E6F2B8BB6BB8831" + item: "botania:drum_canopy" + type: "item" + }] + x: -10.15d + y: -5.95d + } + { + dependencies: ["597E4D997A20736D"] + description: [ + "Clearing out large areas of &aTall Grass&r by hand is a nuisance, as is the process of harvesting large fields of crops." + "" + "Simply blowing into the &dHorn of the Wild&r will cause any nearby vegetation to quickly uproot, leaving behind drops as if they had been broken by hand." + "" + "The horn can be tuned to break leaves or snow instead." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "45BB8D86B7FDBE08" + optional: true + rewards: [ + { + id: "1CDA28997911DF33" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "697F62226505963F" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "61EA590A1D3C18F1" + item: "botania:horn_grass" + type: "item" + }] + x: -9.45d + y: -4.8999999999999995d + } + { + dependencies: ["45BB8D86B7FDBE08"] + description: ["Breaking leaves in a 19×19×15 area around the player."] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "58994465AC0DB441" + optional: true + rewards: [ + { + id: "58FEBABF00FE0C80" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "75AFD4629E2BAA34" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "3EEE2ACB94D074EE" + item: "botania:horn_leaves" + type: "item" + }] + x: -9.45d + y: -5.6d + } + { + dependencies: ["7A359C1F5E041C4F"] + description: [ + "The &0Mana Void&r is, in layman's terms, a grave for &bMana&r." + "" + "Any &bMana&r poured into this block will simply vanish into the &nvoid&r, never to be seen again." + "" + "Placing one of these under a &9Mana Pool&r will allow the pool to always accept &bMana&r, but void any it can't hold." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "4885E0E4AE16153C" + optional: true + rewards: [ + { + id: "78B48E9D259D9F26" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "289403F574155F2A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 0.65d + tasks: [{ + id: "2D6946CEEFF65B35" + item: "botania:mana_void" + type: "item" + }] + x: -6.530357142857142d + y: -2.953571428571429d + } + { + dependencies: ["27CD17C4B3613171"] + description: ["Using Gaia Ingots to summon the harder version of the &5Guardian of Gaia&r will get you more &6Gaia Spirits&r, but the Guardian can also drop the &6Dice of Fate&r."] + id: "50A2D68A83A50F47" + rewards: [ + { + id: "73704F1B32D0A15F" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "343668633567AAA5" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.5d + tasks: [{ + id: "5348CBD95103744A" + item: "botania:dice" + type: "item" + }] + title: "&6Dice of Fate&r" + x: 9.0d + y: -9.0d + } + { + dependencies: ["50A2D68A83A50F47"] + hide_until_deps_complete: false + id: "6AFC5FE71A80913E" + optional: true + rewards: [ + { + id: "0423B21E4757A2E6" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1AECB2ACC14CA5FA" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "408C9E36F8C27D8C" + item: "botania:infinite_fruit" + type: "item" + }] + x: 10.15d + y: -9.1d + } + { + dependencies: ["50A2D68A83A50F47"] + hide_until_deps_complete: false + id: "780B0A790C6AF9DB" + optional: true + rewards: [ + { + id: "01E797D246D95395" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4A96AEEF2C5835FC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "371A7D51171C67D4" + item: "botania:king_key" + type: "item" + }] + x: 10.15d + y: -9.799999999999999d + } + { + dependencies: ["50A2D68A83A50F47"] + hide_until_deps_complete: false + id: "16DE70DE2463A5DD" + optional: true + rewards: [ + { + id: "020513DCA252A8B9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4ADF27EE526133B0" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "337F2A21222F5FFC" + item: "botania:flugel_eye" + type: "item" + }] + x: 10.15d + y: -8.4d + } + { + dependencies: ["50A2D68A83A50F47"] + hide_until_deps_complete: false + id: "0C56CB7815A1355C" + optional: true + rewards: [ + { + id: "2B5648DCC65FFD87" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "152869143FD276F9" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "078E142753C8FA7B" + item: { + Count: 1 + id: "botania:odin_ring" + tag: { + baubleUUID: [I; + -68256365 + -428781930 + -1518441386 + -645335533 + ] + } + } + type: "item" + }] + x: 7.7d + y: -9.799999999999999d + } + { + dependencies: ["50A2D68A83A50F47"] + hide_until_deps_complete: false + id: "4E7B1FF823C85AD6" + optional: true + rewards: [ + { + id: "3FBDEEEB45C98853" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4011D8046B76DEEF" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "05993154671C0697" + item: "botania:thor_ring" + type: "item" + }] + x: 7.7d + y: -9.1d + } + { + dependencies: ["50A2D68A83A50F47"] + hide_until_deps_complete: false + id: "1EE1EF4695A39876" + optional: true + rewards: [ + { + id: "5CD71910DADB23AD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "04DDD28AAE61EBE6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "46081AC3349324C9" + item: "botania:loki_ring" + type: "item" + }] + x: 7.7d + y: -8.4d + } + { + dependencies: ["523E631AF16750C6"] + description: [ + "&6Full Armor Set Bonus:" + "&b(Will of the Ancients)&r" + "" + "&o20%&r less &bMana&r cost on &aMana Tools&r and &aRods&r." + "Regen even if hunger isn't topped off." + "&bPassive Mana&r generation on &9Mana Tablets&r." + "Makes you reach a little bit further." + ] + id: "7C29023A902CF6C3" + rewards: [ + { + id: "38BAB4AB62103DD3" + type: "xp" + xp: 450 + } + { + exclude_from_claim_all: true + id: "202FAE3B610E0D45" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "0CD00B99FFDD9A05" + item: { + Count: 1 + id: "mythicbotany:alfsteel_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2F8E54481EA25998" + item: { + Count: 1 + id: "mythicbotany:alfsteel_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2603DC2A242BF746" + item: { + Count: 1 + id: "mythicbotany:alfsteel_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3EF17929C7D3744D" + item: { + Count: 1 + id: "mythicbotany:alfsteel_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&2Alfsteel Armor" + x: 9.0d + y: -1.5d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Makes gravity affect a Mana Burst, making it move in an arc. It also slightly increases the time before it starts to lose mana."] + hide_dependency_lines: true + id: "665B4A8FF5277316" + optional: true + rewards: [ + { + id: "48A5A90DEE2E614E" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "73DF8E7ECF123CF2" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "5698F1ECAA82616E" + item: "botania:lens_gravity" + type: "item" + }] + x: -3.685714285714285d + y: -0.4517857142857151d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Allows Mana Bursts to break through blocks by using its own mana."] + hide_dependency_lines: true + id: "3722E5A8BE99C5B1" + optional: true + rewards: [ + { + id: "65BDF707606009F8" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4C99C3F6C7D2AA7B" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "671D9D2E3EDF31D9" + item: "botania:lens_mine" + type: "item" + }] + x: -4.385714285714284d + y: -1.1517857142857153d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Allows Mana Bursts to use its own mana to damage any living being it hits."] + hide_dependency_lines: true + id: "533624CA5C2A7BBD" + optional: true + rewards: [ + { + id: "696217E057A6C1AD" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "323B86E6A2765BE3" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6BF8FAA764F765F1" + item: "botania:lens_damage" + type: "item" + }] + x: -5.085714285714284d + y: -1.1517857142857153d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["This lens allows a Mana Burst to pass through blocks, while decreasing the amount of time it can survive without losing mana."] + hide_dependency_lines: true + id: "5EF08646D8F4C432" + optional: true + rewards: [ + { + id: "435A71444B76B6C4" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "74A015AB25995058" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "7EF55A6F1C4D84A7" + item: "botania:lens_phantom" + type: "item" + }] + x: -5.785714285714285d + y: -1.1517857142857153d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Allows a Mana Burst to home in on any nearby blocks that can receive Mana. This also slightly decreases the speed of the burst."] + hide_dependency_lines: true + id: "79A19D0B2F94EFDC" + optional: true + rewards: [ + { + id: "7923DCD4C5364E57" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "25FC80ACEFF236F4" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6F5CDA3C118F1D62" + item: "botania:lens_magnet" + type: "item" + }] + x: -3.685714285714285d + y: -1.1517857142857153d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Imbues a Mana Burst with entropic forces, or in simple terms, turns it into a bomb when it hits something that can't receive Mana."] + hide_dependency_lines: true + id: "7AD4D212633DAEC8" + optional: true + rewards: [ + { + id: "186E7D9A67A97FAF" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "2D9829A2253EA621" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0A25BA85F56FB561" + item: "botania:lens_explosive" + type: "item" + }] + x: -2.9857142857142858d + y: -1.1517857142857153d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Allows a Mana Burst to influence nearby dropped items, experience orbs, and falling blocks, having them move in the exact same vector of the motion as the burst itself."] + hide_dependency_lines: true + id: "5732936F1FD1D4AE" + optional: true + rewards: [ + { + id: "62FDD1E9AF0AC18A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3FFF717ADA761338" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3686E63D875EBFB8" + item: "botania:lens_influence" + type: "item" + }] + x: -2.285714285714283d + y: -1.1517857142857153d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["When a block is hit by a Mana Burst from this lens, the block will fall as if it were Sand or Gravel."] + hide_dependency_lines: true + id: "3CD45533D0BDF26D" + optional: true + rewards: [ + { + id: "7FC8A1841922B1CC" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4EF418DB00B47AEB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1732E57F7595BB7E" + item: "botania:lens_weight" + type: "item" + }] + x: -5.085714285714284d + y: -0.4517857142857151d + } + { + dependencies: [ + "6FBE0BF8A7ADBB26" + "3A20210242A1C865" + ] + description: [ + "Needs to be dyed with a color first." + "" + "Allows the Mana Bursts to paint any colorable block it hits, as well as any colorable block it is connected to. It also works on sheep. " + ] + hide_dependency_lines: true + id: "68DC8A2B4BEF9878" + optional: true + rewards: [ + { + id: "2BE5158003577809" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "226A886EFB7D5CA5" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1C3B5F68898949A4" + item: "botania:lens_paint" + type: "item" + }] + x: -2.9857142857142858d + y: 0.24821428571428417d + } + { + dependencies: [ + "6FBE0BF8A7ADBB26" + "3A20210242A1C865" + ] + description: ["Allows the Mana Bursts to launch festive fireworks when they hit a block."] + hide_dependency_lines: true + id: "478352E24CE1F45F" + optional: true + rewards: [ + { + id: "1871B498998A7526" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1995249B8886EA54" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2F04E0FD92572BE8" + item: "botania:lens_firework" + type: "item" + }] + x: -4.385714285714284d + y: 0.24821428571428417d + } + { + dependencies: [ + "6FBE0BF8A7ADBB26" + "3A20210242A1C865" + ] + description: ["This converts the Mana Spreader's bursts to only fire a continuous particle rather than short bursts. No mana is consumed. Great for decorative uses."] + hide_dependency_lines: true + id: "7B95C7407A1F5550" + optional: true + rewards: [ + { + id: "7C77D58570AC86F4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "69F7AA65FDA2CE92" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6D405361F834914E" + item: "botania:lens_flare" + type: "item" + }] + x: -5.085714285714284d + y: 0.24821428571428417d + } + { + dependencies: [ + "6FBE0BF8A7ADBB26" + "3A20210242A1C865" + ] + description: ["Using this on a Spreader will cause it to only fire a Mana Burst only if it can hit a mob or player."] + hide_dependency_lines: true + id: "0E7E559F2750F7D3" + optional: true + rewards: [ + { + id: "34B66471DE4B62D4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "67A71FEFFAB0DE08" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3B9B92618158074B" + item: "botania:lens_tripwire" + type: "item" + }] + x: -5.785714285714285d + y: 0.24821428571428417d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Greatly decreases the amount of Mana a Mana Burst carries and dramatically increases the burst's speed and distance."] + hide_dependency_lines: true + id: "182EBB06B81BDF98" + optional: true + rewards: [ + { + id: "77A4DD94109B7676" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "52053989AA14EF67" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "4C80AD2C05E0CE73" + item: "botania:lens_messenger" + type: "item" + }] + x: -2.9857142857142858d + y: -0.4517857142857151d + } + { + dependencies: [ + "6FBE0BF8A7ADBB26" + "3A20210242A1C865" + ] + description: ["This lens will redirect any Mana Spreaders or entities it collides with to face towards teh block or entity that fired the burst."] + hide_dependency_lines: true + id: "03C475ABEFF04DEF" + optional: true + rewards: [ + { + id: "651D17D05A4AEE6F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0A69A0A1D4452152" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "28089D55C29C8A5D" + item: "botania:lens_redirect" + type: "item" + }] + x: -3.685714285714285d + y: 0.24821428571428417d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Causes the Mana Burst to create flame on the block it hits. This flame provides light and is purely decorative. It can be put out by using another Mana Burst on it."] + hide_dependency_lines: true + id: "0C557A9494F58400" + optional: true + rewards: [ + { + id: "7BAE162D0F0DFF80" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5887C5EE41430624" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "229487A1B2657BF0" + item: "botania:lens_light" + type: "item" + }] + x: -5.785714285714285d + y: -0.4517857142857151d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Allows the Mana Burst to move a block just as if a piston would."] + hide_dependency_lines: true + id: "14EB725643E9F8FE" + optional: true + rewards: [ + { + id: "235D599CD40C83BA" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "28BE9FA78B834EF6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "24EBCD71A8C65AAE" + item: "botania:lens_piston" + type: "item" + }] + x: -2.285714285714283d + y: -0.4517857142857151d + } + { + dependencies: ["6FBE0BF8A7ADBB26"] + description: ["Allows the Mana Burst to catch blocks on fire. It will not work on living beings."] + hide_dependency_lines: true + id: "12BEB76EB924379C" + optional: true + rewards: [ + { + id: "21DDAB78B2C17D66" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "47D40DBAA8BA73CD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "55AD493BAD9D6E10" + item: "botania:lens_fire" + type: "item" + }] + x: -4.385714285714284d + y: -0.4517857142857151d + } + { + dependencies: [ + "6FBE0BF8A7ADBB26" + "3A20210242A1C865" + ] + hide_dependency_lines: true + id: "4CC46A4E71320140" + optional: true + rewards: [ + { + id: "71D834AFD30CAC03" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4E42EEF4F8572539" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "58FACC24E092C8EB" + item: "botania:lens_warp" + type: "item" + }] + x: -2.285714285714283d + y: 0.24821428571428417d + } + ] + title: "&3&oBotania" +} diff --git a/minecraft/config/ftbquests/quests/chapters/brewery.snbt b/minecraft/config/ftbquests/quests/chapters/brewery.snbt new file mode 100644 index 0000000..4e5435b --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/brewery.snbt @@ -0,0 +1,361 @@ +{ + autofocus_id: "446CAE53FCE9BA74" + default_hide_dependency_lines: false + default_quest_shape: "hexagon" + disable_toast: true + filename: "brewery" + group: "33C9D311E461F30C" + icon: "brewery:beer_wheat" + id: "2E65F7F8FB721270" + images: [{ + height: 2.7d + image: "kubejs:item/brewery" + rotation: 0.0d + width: 7.0d + x: 0.0d + y: -5.0d + }] + order_index: 2 + quest_links: [ ] + quests: [ + { + id: "2FFFFFBD89D5E365" + rewards: [{ + exclude_from_claim_all: true + id: "3B45E0B68F2BD54F" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "690707937251A1C0" + item: "brewery:wooden_brewingstation" + type: "item" + }] + x: -2.5d + y: 0.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "0CD745288D5C4ACC" + rewards: [{ + exclude_from_claim_all: true + id: "4EE8FABA6FA6371F" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "40B35A4A3B411307" + item: "brewery:copper_brewingstation" + type: "item" + }] + x: -2.5d + y: 1.0d + } + { + dependencies: ["0CD745288D5C4ACC"] + id: "53FD99B7DE6FDA26" + rewards: [{ + exclude_from_claim_all: true + id: "1D88BDB08D9CDA5B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "63EC1733597795EA" + item: "brewery:netherite_brewingstation" + type: "item" + }] + x: -2.5d + y: 2.0d + } + { + id: "446CAE53FCE9BA74" + rewards: [{ + exclude_from_claim_all: true + id: "4B8C3E38C1852003" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1DA7D9AE7DA88588" + item: "farm_and_charm:silo_wood" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["446CAE53FCE9BA74"] + id: "677E25B40ED99D3F" + rewards: [{ + exclude_from_claim_all: true + id: "262DBE8C5247CA26" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "334039F0B0E15526" + item: "farm_and_charm:silo_copper" + type: "item" + }] + x: 0.0d + y: 2.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "4D660A51DF400C38" + rewards: [{ + exclude_from_claim_all: true + id: "6073430638505EDE" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3A2FDF6C8E295989" + item: "brewery:beer_wheat" + type: "item" + }] + x: -1.0d + y: 1.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "511437BD39D3499B" + rewards: [{ + exclude_from_claim_all: true + id: "628ACA8751D24B3B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "2FD8CF81355631EF" + item: "brewery:beer_hops" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "52765E35D8C0DF6C" + rewards: [{ + exclude_from_claim_all: true + id: "660332391323EAC9" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "74CF076370C8A03C" + item: "brewery:beer_barley" + type: "item" + }] + x: 1.0d + y: 2.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "785E395B2AC7F0FC" + rewards: [{ + exclude_from_claim_all: true + id: "6276D74DFB98102A" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "232F8B75354F0DD7" + item: "brewery:beer_haley" + type: "item" + }] + x: -1.0d + y: 0.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "2FC2B7A63BD2602B" + rewards: [{ + exclude_from_claim_all: true + id: "203F0F7CD62E7002" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1812A6241F5B8F1C" + item: "brewery:whiskey_maggoallan" + type: "item" + }] + x: -1.0d + y: -1.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "6F08AC28225AC765" + rewards: [{ + exclude_from_claim_all: true + id: "69F8BDD5AFF94C8F" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7DAF2BB1F3924A23" + item: "brewery:whiskey_carrasconlabel" + type: "item" + }] + x: 1.0d + y: 0.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "7A3283887D453020" + rewards: [{ + exclude_from_claim_all: true + id: "0C38AAB7F9B79B79" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "73D74C38111CC997" + item: "brewery:whiskey_lilitusinglemalt" + type: "item" + }] + x: 1.0d + y: -1.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "3997FEF26A2984E9" + rewards: [{ + exclude_from_claim_all: true + id: "470ED4B2A6E187BE" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1FAE90ED1661EAAD" + item: "brewery:whiskey_jojannik" + type: "item" + }] + x: -1.0d + y: 2.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "0DDFC7825A7871AF" + rewards: [{ + exclude_from_claim_all: true + id: "3C19EF3ACD34A9F2" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "636BE9A6647A3652" + item: "brewery:whiskey_cristelwalker" + type: "item" + }] + x: 1.0d + y: 1.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "70A2F0061112549D" + rewards: [{ + exclude_from_claim_all: true + id: "6BFF8996D453D435" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3C0F7160780BE65D" + item: "brewery:pork_knuckle" + type: "item" + }] + x: 2.5d + y: 1.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "7F4BB637AA7F8FD0" + rewards: [{ + exclude_from_claim_all: true + id: "7F70ABD2AB5D3921" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "70BB458361414E5E" + item: "brewery:fried_chicken" + type: "item" + }] + x: 2.5d + y: -1.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "57EA613CBF709CE4" + rewards: [{ + exclude_from_claim_all: true + id: "20835EBBD8FD5ABF" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4B90BCB2ECB06FEF" + item: "brewery:half_chicken" + type: "item" + }] + x: 2.5d + y: 2.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "2D33345BC1F5CE21" + rewards: [{ + exclude_from_claim_all: true + id: "4714D16ADEE45DA5" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "617370CCBD517938" + item: "brewery:sausage" + type: "item" + }] + x: 3.5d + y: 1.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "65669491809CE21A" + rewards: [{ + exclude_from_claim_all: true + id: "0BBA3BBB4118B1C3" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "6FDB045D248D2414" + item: "brewery:potato_salad" + type: "item" + }] + x: 3.5d + y: 0.0d + } + { + dependencies: ["2FFFFFBD89D5E365"] + id: "38D8C8968540313C" + rewards: [{ + exclude_from_claim_all: true + id: "04A5FB02171ABE88" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0171AF93D50BD306" + item: "brewery:pretzel" + type: "item" + }] + x: 2.5d + y: 0.0d + } + ] + title: "&3&oLet's Do:&r &o&fBrewery" +} diff --git a/minecraft/config/ftbquests/quests/chapters/candlelight.snbt b/minecraft/config/ftbquests/quests/chapters/candlelight.snbt new file mode 100644 index 0000000..523abb4 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/candlelight.snbt @@ -0,0 +1,499 @@ +{ + autofocus_id: "4EBA87F1762F05DF" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "candlelight" + group: "33C9D311E461F30C" + icon: "candlelight:beef_wellington" + id: "6C0271CAF44022DA" + images: [{ + height: 2.7d + image: "kubejs:item/candlelight" + rotation: 0.0d + width: 7.0d + x: 1.0d + y: -5.5d + }] + order_index: 3 + quest_links: [ ] + quests: [ + { + id: "26C149A164CCFBA3" + rewards: [{ + exclude_from_claim_all: true + id: "3D999796289C813D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "22D37C47004E7583" + item: "candlelight:cooking_pot" + type: "item" + }] + x: 3.0d + y: 0.0d + } + { + id: "4EBA87F1762F05DF" + rewards: [{ + exclude_from_claim_all: true + id: "7036CF2E543C617A" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "151A451ACE6FC600" + item: { + Count: 1 + id: "candlelight:cooking_pan" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["26C149A164CCFBA3"] + description: ["A table set or a bowl can be placed in the world, allowing any food to be eaten from it to provide more hunger and saturation."] + id: "53B07A1BFA694C66" + rewards: [{ + exclude_from_claim_all: true + id: "6800925D6D9EFD43" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Click to learn more!" + tasks: [ + { + id: "30A74C11F14AE40A" + item: "candlelight:plate" + type: "item" + } + { + id: "3861DDFEBEDF42BA" + item: "candlelight:bowl" + type: "item" + } + { + id: "694320AEF8DA7BAB" + item: "candlelight:glass" + type: "item" + } + { + id: "77A4E7997ABD6492" + item: "candlelight:wine_glass" + type: "item" + } + { + id: "0297BBC5A35BE062" + item: "candlelight:napkin" + type: "item" + } + ] + x: -2.0d + y: 1.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "539EE93380458999" + rewards: [{ + exclude_from_claim_all: true + id: "119A4EB756F70630" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "11404EA8873199A3" + item: "candlelight:mozzarella" + type: "item" + }] + x: -2.0d + y: -1.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "11D55F9EA3997603" + rewards: [{ + exclude_from_claim_all: true + id: "4FFCF40E7589814E" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3B7524CE25CB86E0" + item: "candlelight:tomato_soup" + type: "item" + }] + x: 4.0d + y: 1.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "55F5E93221541530" + rewards: [{ + exclude_from_claim_all: true + id: "27650A8F88E2BCEB" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1BBB96BE1F1D3070" + item: "candlelight:mushroom_soup" + type: "item" + }] + x: 3.0d + y: -1.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "04ABC543480738D8" + rewards: [{ + exclude_from_claim_all: true + id: "1D502532DA4824D3" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "06BF1D90CBD25E2D" + item: "candlelight:beetroot_salad" + type: "item" + }] + x: 4.0d + y: -1.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "17B58DAE2D09D17D" + rewards: [{ + exclude_from_claim_all: true + id: "272302664CB6471B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "49D744846C6BAB84" + item: "farm_and_charm:raw_pasta" + type: "item" + }] + x: 3.0d + y: 1.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "37B401C74C68E60C" + rewards: [{ + exclude_from_claim_all: true + id: "04D88974D0CCD13D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4403EBBF841A391C" + item: "candlelight:bolognese" + type: "item" + }] + x: 1.0d + y: -1.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "1A5C116F8405BEAC" + rewards: [{ + exclude_from_claim_all: true + id: "3EAE2DB76D1A7152" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "650B4BF97F656999" + item: "candlelight:chicken_teriyaki" + type: "item" + }] + x: 4.0d + y: 0.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "066504F31390ADB9" + rewards: [{ + exclude_from_claim_all: true + id: "47A0E5B16BF3A829" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "43005B6A3D6E48EE" + item: "candlelight:salad" + type: "item" + }] + x: -2.0d + y: 0.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "16F4E49FC581F76C" + rewards: [{ + exclude_from_claim_all: true + id: "655049DFC3CFFCA4" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "66F9069545CE9C66" + item: "candlelight:beef_tartare" + type: "item" + }] + x: 2.0d + y: -1.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "5D18506B2EE253DA" + rewards: [{ + exclude_from_claim_all: true + id: "176EE5DFDFE0D5F8" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "577A47478692988F" + item: { + Count: 1 + id: "candlelight:beef_with_mushroom_in_wine_and_potatoes" + tag: { + StoredEffects: [ ] + } + } + type: "item" + }] + x: -1.0d + y: 1.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "629A468E7E5120C1" + rewards: [{ + exclude_from_claim_all: true + id: "1E387FD1F1D24120" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4A688FF1AB0C8ED0" + item: "candlelight:chicken_alfredo" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "16B24F9D13D713B4" + rewards: [{ + exclude_from_claim_all: true + id: "07A1B09871554679" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "2766A6365FD8E941" + item: { + Count: 1 + id: "candlelight:roasted_lamb_with_lettuce" + tag: { + StoredEffects: [ ] + } + } + type: "item" + }] + x: -1.0d + y: 2.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "10D579D53C021F7E" + rewards: [{ + exclude_from_claim_all: true + id: "25F879243DCBD89D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "6BA94E2C60E089BB" + item: "delightfulsandwich:tomato_and_lettuce_sandwich" + type: "item" + }] + x: 1.5d + y: -2.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "4C2F2E550A336925" + rewards: [{ + exclude_from_claim_all: true + id: "61FBCE17629C561D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "27B18948BB78E565" + item: "candlelight:pork_ribs" + type: "item" + }] + x: 2.0d + y: 1.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "1A80648FE19C4A33" + rewards: [{ + exclude_from_claim_all: true + id: "5227C420E32888C2" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "38131DB8167CE0CB" + item: { + Count: 1 + id: "candlelight:pasta_with_bolognese" + tag: { + StoredEffects: [ ] + } + } + type: "item" + }] + x: 1.0d + y: 0.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "04FAE01C1AF76AD4" + rewards: [{ + exclude_from_claim_all: true + id: "017AD664CEF04AFC" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "38139FBBD06D29A9" + item: "candlelight:pasta_with_lettuce" + type: "item" + }] + x: -1.0d + y: -1.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "36CA81AFCDF5A5A9" + rewards: [{ + exclude_from_claim_all: true + id: "1F7F1581A4F4CC7D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7BAA791C2002866A" + item: "farm_and_charm:oat_pancake" + type: "item" + }] + x: -1.0d + y: 0.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "50627FCBB2C5A790" + rewards: [{ + exclude_from_claim_all: true + id: "3121AD5462AC394D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "07C20D9A087F2DA3" + item: "candlelight:tomato_mozzarella_salad" + type: "item" + }] + x: 0.5d + y: -2.0d + } + { + dependencies: ["26C149A164CCFBA3"] + id: "53464D8920A3B6E9" + rewards: [{ + exclude_from_claim_all: true + id: "120EE08449B32CD2" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4ABAA3ED94D648C4" + item: "candlelight:lasagne" + type: "item" + }] + x: 2.0d + y: 0.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "3A8BB7919BD29285" + rewards: [{ + exclude_from_claim_all: true + id: "67C4222AE00E0A1B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7BE03CEAA4B1B7E3" + item: { + Count: 1 + id: "candlelight:roastbeef_with_glazed_carrots" + tag: { + StoredEffects: [ ] + } + } + type: "item" + }] + x: 1.0d + y: 2.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "093688EE2F196B74" + rewards: [{ + exclude_from_claim_all: true + id: "4C502D2B332E1BE8" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "2A6DFFF4F10C05C7" + item: "candlelight:beef_wellington" + type: "item" + }] + x: 0.0d + y: 1.0d + } + { + dependencies: ["4EBA87F1762F05DF"] + id: "50D69A5CA0A4B9AE" + rewards: [{ + exclude_from_claim_all: true + id: "6525CF357C38EF6C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "15BDBB08B8A06304" + item: "candlelight:tropical_fish_supreme" + type: "item" + }] + x: 1.0d + y: 1.0d + } + ] + title: "&3&oLet's Do:&r &o&fCandlelight" +} diff --git a/minecraft/config/ftbquests/quests/chapters/cataclysm.snbt b/minecraft/config/ftbquests/quests/chapters/cataclysm.snbt new file mode 100644 index 0000000..2c40c91 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/cataclysm.snbt @@ -0,0 +1,2355 @@ +{ + autofocus_id: "6BBF35D29E70FDD4" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "cataclysm" + group: "6F0E78F18F0B5785" + icon: "cataclysm:altar_of_fire" + id: "59395B6806F2A98A" + images: [ + { + height: 1.0d + image: "kubejs:item/quest" + rotation: 0.0d + width: 0.3d + x: 2.208973374295951d + y: -2.5d + } + { + height: 3.5d + image: "kubejs:item/the_netherite_monstrosity" + rotation: 0.0d + width: 3.5d + x: 2.0d + y: 5.0d + } + { + height: 5.0d + image: "kubejs:item/the_ender_guardian" + rotation: 0.0d + width: 5.0d + x: 8.0d + y: 2.2857142857142776d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1003584229390682d + x: 5.0d + y: 0.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1003584229390682d + x: -8.5d + y: 5.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1003584229390682d + x: 8.5d + y: -4.0d + } + { + height: 1.5d + image: "kubejs:item/cataclysm_logo" + order: 2 + rotation: 0.0d + width: 10.0d + x: 1.5d + y: -4.0d + } + { + height: 1.0d + image: "ars_nouveau:block/fire_1" + order: 1 + rotation: 0.0d + width: 0.7d + x: 5.0d + y: -4.5d + } + { + height: 1.0d + image: "minecraft:block/campfire_fire" + order: 1 + rotation: 0.0d + width: 0.5d + x: 2.5d + y: -1.4642857142857082d + } + { + height: 1.0d + image: "enderio:block/fluid_cloud_seed_concentrated_still" + rotation: 0.0d + width: 0.03125d + x: 0.5d + y: -4.0d + } + { + height: 1.0d + image: "twilightforest:block/portal_barrier" + rotation: 0.0d + width: 9.0d + x: 3.0d + y: -4.0d + } + { + height: 1.0d + image: "botania:block/apothecary_mountain_side" + order: 2 + rotation: 0.0d + width: 1.0d + x: 2.5d + y: -0.9642857142857082d + } + { + height: 1.0d + image: "botania:block/apothecary_mossy_side" + order: 1 + rotation: 0.0d + width: 1.0d + x: 0.5d + y: -0.9642857142857082d + } + { + height: 1.0d + image: "minecraft:block/soul_campfire_fire" + rotation: 0.0d + width: 0.5d + x: 0.5d + y: -1.4642857142857082d + } + { + height: 1.0d + image: "alexscaves:textures/particle/tremorzilla_tectonic_lightning_5.png" + rotation: 180.0d + width: 1.0d + x: 0.0d + y: -0.4642857142857082d + } + { + height: 1.0d + image: "alexscaves:textures/particle/tremorzilla_retro_lightning_5.png" + rotation: 90.0d + width: 1.0d + x: 2.917946748591902d + y: -0.3392857142857082d + } + { + height: 4.0d + image: "kubejs:item/the_ignis" + rotation: 0.0d + width: 4.0d + x: -1.7963389656938133d + y: -3.4464285714285765d + } + { + height: 4.0d + image: "kubejs:item/the_harbinger" + rotation: 0.0d + width: 4.0d + x: -8.413370455709178d + y: 3.419642857142861d + } + { + height: 4.0d + image: "kubejs:item/the_leviathan" + rotation: 0.0d + width: 4.0d + x: 4.525089605734756d + y: -2.1964285714285765d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1003584229390682d + x: -2.0d + y: 0.5d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["689F32883C4E9502"] + description: [ + "&9Cataclysm Dungeons&r are not that easy to find, so a &aSpecial Eye&r might help you find them." + "" + "Each of the different &aEyes&r will &o&blead you&r to its set structure, and don't worry them &o&bbreaking is very rare&r." + ] + id: "18EB86F91CBBCCC6" + min_width: 250 + rewards: [ + { + id: "56EF6BB8D6C04B9B" + type: "xp" + xp: 25 + } + { + count: 2 + id: "46F7870C6154ED61" + item: "minecraft:ender_eye" + random_bonus: 1 + type: "item" + } + ] + size: 1.5d + tasks: [{ + id: "648E89CEF275D455" + item: "minecraft:ender_eye" + type: "item" + }] + title: "I will find you!" + x: 8.5d + y: -1.5d + } + { + dependencies: ["18EB86F91CBBCCC6"] + description: ["The &cEye of Mech&r will take you to the &2Ancient Factory&r to fight &4The Harbinger&r."] + id: "775AB10F8196F27B" + min_width: 260 + rewards: [ + { + id: "74950014681BFE4E" + type: "xp" + xp: 100 + } + { + id: "662ECCA96EC08D8D" + item: { + Count: 1 + id: "apotheosis:potion_charm" + tag: { + Damage: 0 + Potion: "minecraft:long_regeneration" + } + } + type: "item" + } + ] + tasks: [{ + id: "23B2C8BA85A59929" + item: "cataclysm:mech_eye" + type: "item" + }] + title: "&2Eye of Mech" + x: 8.5d + y: -3.0d + } + { + dependencies: ["18EB86F91CBBCCC6"] + description: ["The &eEye of Flame&r will take you to the &6Burning Arena&r to fight the &4Ignis&r."] + id: "43A5B83862D9E94C" + min_width: 250 + rewards: [ + { + id: "02BDCB8617BBEF65" + type: "xp" + xp: 100 + } + { + id: "2CF2BBFDD24C4534" + item: { + Count: 1 + id: "apotheosis:potion_charm" + tag: { + Damage: 0 + Potion: "minecraft:long_strength" + } + } + type: "item" + } + ] + tasks: [{ + id: "3A18B988A59BE186" + item: "cataclysm:flame_eye" + type: "item" + }] + title: "&4Eye of Flame" + x: 8.5d + y: 0.0d + } + { + dependencies: ["18EB86F91CBBCCC6"] + description: ["The &dEye of Void&r will take you to the &aRuined Citadel&r to fight the &5Ender Guardian&r."] + id: "62C32905C33E2D88" + min_width: 250 + rewards: [ + { + id: "1271C9F1714D948F" + type: "xp" + xp: 100 + } + { + id: "20CAB401093A9C7C" + item: { + Count: 1 + id: "apotheosis:potion_charm" + tag: { + Damage: 0 + Potion: "minecraft:long_slow_falling" + } + } + type: "item" + } + ] + tasks: [{ + id: "41D397FD467CCBD1" + item: "cataclysm:void_eye" + type: "item" + }] + title: "&5Eye of Void" + x: 9.5d + y: -0.5d + } + { + dependencies: ["18EB86F91CBBCCC6"] + description: ["The &6Eye of Monstrous&r will take you to the &cForge of Souls&r to fight the &4Netherite Monstrousity&r."] + id: "7C848C7011726470" + min_width: 270 + rewards: [ + { + id: "668FDAADDA431DB5" + type: "xp" + xp: 100 + } + { + id: "7B15956689B4EB7D" + item: { + Count: 1 + id: "apotheosis:potion_charm" + tag: { + Damage: 0 + Potion: "minecraft:long_fire_resistance" + } + } + type: "item" + } + ] + tasks: [{ + id: "40208E5FC2BBFAEA" + item: "cataclysm:monstrous_eye" + type: "item" + }] + title: "&4Eye of Monstrous" + x: 7.5d + y: -0.5d + } + { + dependencies: ["18EB86F91CBBCCC6"] + description: ["The &9Eye of Abyss&r will take you to the &dSunken City&r to fight the &1Leviathan&r."] + id: "3E8C7D92F99496BE" + min_width: 250 + rewards: [ + { + id: "6AE6700A024E8767" + type: "xp" + xp: 100 + } + { + id: "46DDEB3DFFEA576F" + item: { + Count: 1 + id: "apotheosis:potion_charm" + tag: { + Damage: 0 + Potion: "minecraft:long_water_breathing" + } + } + type: "item" + } + ] + tasks: [{ + id: "2E1B52E024B7A6F8" + item: "cataclysm:abyss_eye" + type: "item" + }] + title: "&2Eye of Abyss" + x: 9.5d + y: -2.5d + } + { + dependencies: ["18EB86F91CBBCCC6"] + description: ["The &6Eye of Desert&r will take you to the &cCursed Pyramid&r to fight the &eAncient Riemnant&r."] + id: "2542D8A6894816C6" + min_width: 260 + rewards: [ + { + id: "76D98498E06700B4" + type: "xp" + xp: 100 + } + { + id: "4722FC191D5534FC" + item: { + Count: 1 + id: "apotheosis:potion_charm" + tag: { + Damage: 0 + Potion: "minecraft:long_swiftness" + } + } + type: "item" + } + ] + tasks: [{ + id: "7C31D3E8DF8C47C5" + item: "cataclysm:desert_eye" + type: "item" + }] + title: "&2Eye of Desert" + x: 7.5d + y: -2.5d + } + { + dependencies: ["689F32883C4E9502"] + icon: "minecraft:netherrack" + id: "565376084F05ED6E" + rewards: [{ + id: "3A69256DA7F4B3D8" + type: "xp_levels" + xp_levels: 3 + }] + subtitle: "&3&o2 Bosses to fight" + tasks: [{ + id: "37716E88BEA5337E" + type: "checkmark" + }] + title: "&4The Nether" + x: 1.5d + y: 3.5d + } + { + dependencies: ["689F32883C4E9502"] + icon: "minecraft:grass_block" + id: "0496E8E786262464" + rewards: [{ + id: "4906AE0DC2D9A5FC" + type: "xp" + xp: 1 + }] + subtitle: "&3&o3 Bosses to fight" + tasks: [{ + dimension: "minecraft:overworld" + id: "0F998B5ABA5A3DE8" + title: "Visit Dimension: &2Overworld" + type: "dimension" + }] + title: "&2Overworld" + x: -7.0d + y: -3.5d + } + { + dependencies: ["689F32883C4E9502"] + icon: "minecraft:end_stone" + id: "392EAE8BE71510C1" + rewards: [{ + id: "1B086CB583DD67B8" + type: "xp_levels" + xp_levels: 15 + }] + subtitle: "&3&o1 Boss to fight" + tasks: [{ + id: "4B4C73C6525B9FEE" + type: "checkmark" + }] + title: "&5The End" + x: 9.898169482846917d + y: 2.0d + } + { + dependencies: ["1C5EA7D62BAF2108"] + description: [ + "The &5Leviathan&r has &o&b2,000&r hearts, sharp teeth, and strong tentacles." + "" + "It can &o&bchomp&r on you, &o&bsmack&r you with its tentacles, or can hold you still and fire &o&ba beam&r at you. When brought &o&bbelow half health&r its beams become &o&bmuch more used and much more dangerous&r. It will fire beams all around it and will randomly fire them from its outh at you." + "" + "If you some how kill it you'll be granted a &9Tidal Claw&r, an &dAbyssal Egg&r, and could be a musio disc: &6Predator of The Abyss&r." + ] + icon: { + Count: 1 + id: "draconicevolution:mob_soul" + tag: { + EntityName: "cataclysm:the_leviathan" + } + } + id: "746DE905D45A396C" + min_width: 310 + rewards: [ + { + id: "4A8367A3CD1FCD75" + type: "xp" + xp: 1500 + } + { + id: "7467CDD59ABB8EC6" + item: "cataclysm:music_disc_the_leviathan" + type: "item" + } + { + exclude_from_claim_all: true + id: "0CD670EE89C89AFE" + table_id: 7708913941106525583L + type: "loot" + } + ] + shape: "rsquare" + tasks: [{ + entity: "cataclysm:the_leviathan" + id: "043F030DD013235B" + type: "kill" + value: 1L + }] + title: "&5The Leviathan" + x: -9.5d + y: -0.5d + } + { + dependencies: ["7AED8FD7FB023AD8"] + description: [ + "The &4Harbinger&r takes a lot of inspiration from what powers him, the &dNether Star&r." + "" + "He will &o&bfly around&r and shoot &0Wither Missiles&r at you which can give you &o&dwither effect&r. He also has &o&elasers&r he can shoot you with, laser gatlings and a &o&bbig mouth beam&r. He has &o&b1,365&r hearts and &o&ba big weakness&r, the &6EMPs&r. When powered with &cRedstone&r they'll damage &nall the machines nearby&r." + "" + "Once defeated he'll drop a block of &3Witherite&r and perhaps a music disc: &5Doom of the Forsaken&r." + ] + icon: { + Count: 1 + id: "draconicevolution:mob_soul" + tag: { + EntityName: "cataclysm:the_harbinger" + } + } + icon_scale: 1.5d + id: "17CA9D80D8EC3EF7" + min_width: 300 + rewards: [ + { + id: "731E446F7A234DC4" + type: "xp" + xp: 1300 + } + { + id: "295889AD38B69219" + item: "cataclysm:music_disc_the_harbinger" + type: "item" + } + { + exclude_from_claim_all: true + id: "04F5772920441CFA" + table_id: 7708913941106525583L + type: "loot" + } + ] + shape: "rsquare" + tasks: [{ + entity: "cataclysm:the_harbinger" + id: "212643C57CFE4F25" + type: "kill" + value: 1L + }] + title: "&4The Harbinger" + x: -4.5d + y: -0.5d + } + { + dependencies: ["0B7F2B63D867D221"] + description: [ + "The &2Ancient Remnant&r is master of his domain, sand." + "" + "He has &o&b1,200&r hearts and multiple attacks like &o&bsmacking&r you with his claws, &o&bslamming&r the ground, and making &o&bsandstorms&r which will lift you high in the air. It will also &o&bdash&r at you and suing its full body weight at you. Its attacks remain the same through the whole fight and careful of the &aKoboletons&r they got sticky hands." + "" + "Once defeated will drop its &3Skull&r, &eSandstorm in a bottle&r, and at a &o&bchance&r its music disc: &6The Dryest Beast&r." + ] + icon: { + Count: 1 + id: "draconicevolution:mob_soul" + tag: { + EntityName: "cataclysm:ancient_remnant" + } + } + icon_scale: 1.5d + id: "33B1D3FD4C0B5514" + min_width: 300 + rewards: [ + { + id: "3682CF0D602E7B5E" + type: "xp" + xp: 1000 + } + { + id: "6D940C5594DBCBEF" + item: "cataclysm:music_disc_ancient_remnant" + type: "item" + } + { + exclude_from_claim_all: true + id: "53C2932E1F663CBB" + table_id: 7708913941106525583L + type: "loot" + } + ] + shape: "rsquare" + tasks: [{ + entity: "cataclysm:ancient_remnant" + id: "331CDAB944917322" + type: "kill" + value: 1L + }] + title: "&eAncient Remnant" + x: -7.0d + y: -0.5d + } + { + dependencies: ["0F8F0F7880235BA2"] + description: [ + "The &cNetherite Monstrosity&r lives up to his name, he's a beast of &3Netherite&r and &6Lava&r and has &o&b1,000&r hearts." + "" + "It has &o&bvery basic attacks&r, if you get close he'll ground slam you, if you're farther he'll shoot lava at you which creates lava &nsource blocks&r." + "" + "When killed he'll drop the &4Infernal Forge&r, &6Monstrous Horn&r, and maybe a music disc: &eSoul Bound Inferno&r." + ] + icon: { + Count: 1 + id: "draconicevolution:mob_soul" + tag: { + EntityName: "cataclysm:netherite_monstrosity" + } + } + icon_scale: 1.5d + id: "53154550397E9704" + min_width: 300 + rewards: [ + { + id: "3BF3C60EB215B0A5" + type: "xp" + xp: 1700 + } + { + id: "6F067DAC77BA39D3" + item: "cataclysm:music_disc_netherite_monstrosity" + type: "item" + } + { + exclude_from_claim_all: true + id: "2CDE42DB6489D730" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + entity: "cataclysm:netherite_monstrosity" + id: "1FFD677F6F52F10B" + type: "kill" + value: 1L + }] + title: "&cNetherite Monstrosity" + x: -1.0d + y: 4.5d + } + { + dependencies: ["7F4963FCAE5337EC"] + description: [ + "Once you use the &7Burning Ashes&r on the &eAlter of Flame&r you'll get the &6Ignis&r." + "" + "He has &o&b2,250&r hearts and has a massive &o&bsword&r and &o&bshield&r. The shield &o&bwill block damage&r you give and the sword can be used &o&bto stab you&r. Once stabbed, you &o&bcan't move&r you can &o&bonly attack&r. He can also pounce on you and throw &o&efireballs&r at you. Once you beat his health halfway he will start stage &o&b2&r. At stage 2 he will change colors to a &o&blight blue&r and will get &nmany more attacks&r with his sword and shield. Also throughout the fight &nall damage&r he gives to you, &nheals him&r." + "" + "Once defeated he'll drop &o&b1&r &cIgnitium&r which you can use to craft your own versions of his weapons. He also might drop his music disc: &6Burning Retribution&r." + ] + icon: { + Count: 1 + id: "draconicevolution:mob_soul" + tag: { + EntityName: "cataclysm:ignis" + } + } + icon_scale: 1.5d + id: "7D57A14810BC0CBE" + min_width: 300 + rewards: [ + { + id: "5297F3B72454B5DC" + type: "xp" + xp: 1000 + } + { + id: "799848AAE4E50355" + item: "cataclysm:music_disc_ignis" + type: "item" + } + { + exclude_from_claim_all: true + id: "4CE2A888D5B41096" + table_id: 7708913941106525583L + type: "loot" + } + ] + tasks: [{ + entity: "cataclysm:ignis" + id: "5A6C5151B3A21A3E" + type: "kill" + value: 1L + }] + title: "&6Ignis" + x: 5.0d + y: 4.5d + } + { + dependencies: ["21A0FD474FBB49F7"] + description: [ + "The &dEnder Guardian&r is a hulking beast of endstone purpur, and obsidian." + "" + "It has &o&b999&r hearts and &o&b2&r stages. In first stage it will have very basic attacks of &o&bpunching&r you, &o&bdashing&r, using &o&9shulker orbs&r, hitting you with &5Void Runes&r, and can &nstunlock&r you. Once you beat it down half way it's helmet will break exposing it's real head and starting the &o&b2nd&r stage." + "" + "To start he will break the floor of the arena exposing the floor below, then he will use the same moves while pulling you closer. Also he is &o&bimmune to arrows&r so plese use a good &6Sword&r!" + "" + "Once killed it will drop a &2Gauntlet of Guard&r and has a chance of dropping its music disc: &dGuardian of the Abyss&r." + ] + icon: { + Count: 1 + id: "draconicevolution:mob_soul" + tag: { + EntityName: "cataclysm:ender_guardian" + } + } + icon_scale: 1.5d + id: "2B115519A21F9CB7" + min_width: 300 + rewards: [ + { + id: "3C7D70C72D14A9B7" + type: "xp" + xp: 1000 + } + { + id: "129E21690A7D61BC" + item: "cataclysm:music_disc_ender_guardian" + type: "item" + } + { + exclude_from_claim_all: true + id: "1517C93BBC5FFCCD" + table_id: 7708913941106525583L + type: "loot" + } + ] + tasks: [{ + entity: "cataclysm:ender_guardian" + id: "56CD54E84D962527" + type: "kill" + value: 1L + }] + title: "&dEnder Guardian" + x: 9.898169482846917d + y: 4.0d + } + { + dependencies: ["565376084F05ED6E"] + description: [ + "The &4Soul Black Smith&r resides in the &cNether&r." + "" + "Don't overlook it thinking it is a &3Bastion&r, it's much worse. You can find &2Netherite&r and the &6Netherite Monstrosity&r. You won't need anything to activate him, just your presence." + ] + icon: "minecraft:polished_blackstone_bricks" + id: "0F8F0F7880235BA2" + min_width: 300 + rewards: [ + { + id: "0D4094A99D3713BE" + type: "xp" + xp: 50 + } + { + count: 2 + id: "282347A225A1811E" + item: "minecraft:golden_apple" + random_bonus: 1 + type: "item" + } + ] + subtitle: "&6&oHome of the Netherite Monstrosity" + tasks: [{ + id: "7EDD3301703FD7E5" + structure: "cataclysm:soul_black_smith" + title: "Find Structure: &2Soul Black Smith" + type: "structure" + }] + title: "&3The Soul Black Smith" + x: -1.0d + y: 3.5d + } + { + dependencies: ["565376084F05ED6E"] + description: [ + "Don't worry you won't mistake this one for a &3Bastion&r." + "" + "The &cBurning Arena&r is quite empty besides the &eIgnited Revenants&r and the &6Altar of Flame&r." + ] + icon: "minecraft:nether_bricks" + id: "50C9CB8FB16E453D" + min_width: 300 + rewards: [ + { + id: "237D6D8BE6928A53" + type: "xp" + xp: 50 + } + { + count: 2 + id: "716ED212777D40F4" + item: "minecraft:golden_apple" + random_bonus: 1 + type: "item" + } + ] + subtitle: "&6&oHome of the Ignis" + tasks: [{ + id: "28EA523F9834EB02" + structure: "cataclysm:burning_arena" + title: "Find Structure: &2Burning Arena" + type: "structure" + }] + title: "&cThe Burning Arena" + x: 3.5d + y: 3.5d + } + { + dependencies: ["392EAE8BE71510C1"] + description: [ + "Another structure to cover the barren &5End&r, the &dRuined Citadel&r." + "" + "In it you'll find &9Endmaptera&r, &1Ender Golem&r, and the &5Altar of Void&r. Thankfully you don't need to sacrifice anything to summon the &6Ender Guardian&r, just get to the &5Altar of Void&r." + ] + icon: "minecraft:purpur_block" + id: "21A0FD474FBB49F7" + min_width: 300 + rewards: [ + { + id: "0E4F5BE4311AFD17" + type: "xp" + xp: 50 + } + { + count: 2 + id: "383C9F5683B48CC8" + item: "minecraft:golden_apple" + random_bonus: 1 + type: "item" + } + ] + subtitle: "&6&oHome of the Ender Guardian" + tasks: [{ + id: "20930238A87763FA" + structure: "cataclysm:ruined_citadel" + title: "Find Structure: &2Ruined Citadel" + type: "structure" + }] + title: "&dThe Ruined Citadel" + x: 9.898169482846917d + y: 3.0d + } + { + dependencies: ["0496E8E786262464"] + description: [ + "&eThe Cursed Pyramid&r spawns in deserts and it's very hard to miss." + "" + "A massive pyramid with huge pillars by the entrance. In it you'll find a lot of &o&btraps&r, &o&bhusks&r, and &o&bloot&r! Once you get to the bottom you'll find many &2Koboletons&r and a &6Sleeping Giant&r." + ] + icon: "minecraft:sandstone" + id: "70CDA5F1593DB4B2" + min_width: 300 + rewards: [ + { + id: "3B1AB9D9D7693D0A" + type: "xp" + xp: 50 + } + { + count: 2 + id: "24A125C6D729EF81" + item: "minecraft:golden_apple" + random_bonus: 1 + type: "item" + } + ] + subtitle: "&6&oHome of Ancient Remnant" + tasks: [{ + id: "397BEEBF069AE7BF" + structure: "cataclysm:cursed_pyramid" + title: "Find Structure: &2Cursed Pyramid" + type: "structure" + }] + title: "&aThe Cursed Pyramid" + x: -7.0d + y: -2.5d + } + { + dependencies: ["0496E8E786262464"] + description: [ + "The &9Sunken City&r is the &7Dungeon&r that houses the &dDeeplings&r, &eCoralssus&r, and The &5Leviathan&r, and it spawns in &bOceans&r." + "" + "Once you get through it's defenses you'll find the &6Altar of Abyss&r which brings us to &o&bthe next quest&r!" + ] + icon: "minecraft:stone_bricks" + id: "45FBEABEBA7CC09E" + min_width: 300 + rewards: [ + { + id: "451FA6DFCC677723" + type: "xp" + xp: 50 + } + { + count: 2 + id: "395CB0D4A06BF037" + item: "minecraft:golden_apple" + random_bonus: 1 + type: "item" + } + ] + subtitle: "&6&oHome of The Leviathan" + tasks: [{ + id: "78AFAE165BEF2155" + structure: "cataclysm:sunken_city" + title: "Find Structure: &2Sunken City" + type: "structure" + }] + title: "&9The Sunken City" + x: -9.5d + y: -2.5d + } + { + dependencies: ["0496E8E786262464"] + description: [ + "&4The Ancient Factory&r lies deep underground in the &2Overworld&r." + "" + "With many redstone machines including &eThe Watchers&r, &9The Frowler&r, and &6The Harbinger&r." + ] + icon: "minecraft:redstone_block" + id: "747B62A955D0C629" + min_width: 300 + rewards: [ + { + id: "0FB62F7623EE1566" + type: "xp" + xp: 50 + } + { + count: 2 + id: "7C97A5635DB8A7B1" + item: "minecraft:golden_apple" + random_bonus: 1 + type: "item" + } + ] + subtitle: "&6&oHome of The Harbinger" + tasks: [{ + id: "1D372E69BEEA8873" + structure: "cataclysm:ancient_factory" + title: "Find Structure: &2Ancient Factory" + type: "structure" + }] + title: "&4The Ancient Factory" + x: -4.5d + y: -2.5d + } + { + dependencies: ["70CDA5F1593DB4B2"] + description: [ + "Once you get to the bottom of the &eCursed Pyramid&r you'll find find the &6Ancient Remnant&r. " + "" + "Use the &2Necklace of Desert&r to &o&bressurect the beast&r. To find it you'll need &o&bto brush the sus sand&r in the &eCursed Pyramid&r." + ] + id: "0B7F2B63D867D221" + min_width: 300 + rewards: [{ + id: "4F0CB668086E8409" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "4A5A607229B4F242" + item: "cataclysm:necklace_of_the_desert" + type: "item" + }] + x: -7.0d + y: -1.5d + } + { + dependencies: ["50C9CB8FB16E453D"] + description: [ + "You'll have to fight the &2Ignited Revenant&r first to get &7Burning Ashes&r." + "" + "Once you have them use them on the &eAltar of Fire&r to summon the &6Ignis&r." + ] + id: "7F4963FCAE5337EC" + min_width: 310 + rewards: [ + { + id: "00E951C28246D673" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "45142C9343664EA6" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + id: "57450A930AC4C581" + item: "cataclysm:burning_ashes" + type: "item" + }] + x: 5.0d + y: 3.5d + } + { + dependencies: ["45FBEABEBA7CC09E"] + description: [ + "In order to fight &5The Leviathan&r you'll need a sacrifice, yeah the &6Abyssal Sacrifice&r." + "" + "You'll need a &7Nautil Shell&r, &dHeart of the Sea&r, &aAthame&r, and &cCrystalized Coral&r. All of those can be gotten from the &9Sunken City&r. The other blocks probably not." + "" + "Just take your sacrifice and place it in the &6Altar of Abyss&r and &5Leviathan&r will awaken!" + ] + id: "1C5EA7D62BAF2108" + min_width: 300 + rewards: [ + { + id: "7E2DC21F026C3502" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5FDB50F64835B8F9" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Waking up The Leviathan" + tasks: [{ + id: "7E6867522EE80BE7" + item: "cataclysm:abyssal_sacrifice" + type: "item" + }] + x: -9.5d + y: -1.5d + } + { + dependencies: ["747B62A955D0C629"] + description: ["To power up &6The Harbinger&r you'll need a &dNether Star&r, which you get from killing the &0Wither&r."] + id: "7AED8FD7FB023AD8" + min_width: 300 + rewards: [ + { + id: "1CAE20319F62FDF9" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7FEED2514190D91D" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + id: "44C13A2789671FD7" + item: "minecraft:nether_star" + type: "item" + }] + x: -4.5d + y: -1.5d + } + { + dependencies: ["53154550397E9704"] + description: [ + "The &4Infernal Forge&r is a drop from the &cNetherite Monstrosity&r and is technically &o&bnot a weapon&r, it's a &npickaxe&r!" + "" + "It can mine up to &o&bnetherite tier&r, so it can mine &6Allthemodium&r ore. When &eRight-clicked&r it will attack in an &o&bAOE&r mode. Pounding the ground hitting &neverything&r close by. " + ] + hide_dependent_lines: true + id: "2A196974431FCC42" + min_width: 300 + rewards: [ + { + id: "5C7099165A4BBB68" + type: "xp_levels" + xp_levels: 5 + } + { + id: "01118387F1B2781B" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "minecraft:efficiency" + lvl: 3s + }] + } + } + type: "item" + } + ] + tasks: [{ + id: "1FA495218EEB8C0B" + item: { + Count: 1 + id: "cataclysm:infernal_forge" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.5d + y: 5.5d + } + { + dependencies: ["746DE905D45A396C"] + description: [ + "&9Tidal Claws&r are a confirmed drop from &5The Leviathan&r." + "" + "It has &o&btwo&r modes, &o&battack&r and &o&bgrapple&r. Attack is with &eLeft-click&r, grapple is with &eRight-click&r." + "" + "When you use its &2Attack&r it will launch the claw and go through max of &o&b5&r mobs. Dealing damage and giving &4Abyssal Curse&r which will continue to damage them." + "" + "The &aGrapple&r does similar but will latch on to whatever is in range and pull you toward it." + "" + "There's &nno durability&r." + ] + id: "46CC8E7ED59F51D2" + min_width: 300 + rewards: [{ + id: "0F474F6CB37307EC" + type: "xp" + xp: 10 + }] + tasks: [{ + id: "6EEB24B8CF4BC0BC" + item: "cataclysm:tidal_claws" + type: "item" + }] + x: -10.0d + y: 0.5d + } + { + dependencies: ["17CA9D80D8EC3EF7"] + description: [ + "&6Witherite&r is a drop from &4The Harbinger&r it will always drop &o&b1&r block which can be made into &o&b9&r ingots." + "" + "&6Witherite&r is used to craft &o&b3&r weapons and the &3Mechanical Fusion Anvil&r." + ] + id: "6ED61438A8A1EAA4" + rewards: [ + { + id: "08B12B4EFB41FB54" + type: "xp" + xp: 10 + } + { + id: "5EB6F3A2E8C332F3" + item: "minecraft:redstone_block" + random_bonus: 1 + type: "item" + } + ] + tasks: [{ + count: 9L + id: "30D591AD26B6E40E" + item: "cataclysm:witherite_ingot" + type: "item" + }] + title: "Witherite Ingots" + x: -4.5d + y: 0.5d + } + { + dependencies: ["53154550397E9704"] + description: [ + "By combining a &3Netherite Upgrade Template&r, a &0Netherite Helmet&r, and a &cMonstrous Horn&r to make the &4Monstrous Helm&r." + "" + "It has better stats and when you're at half health it'll do &o&bknockback everything close&r to you and &nincrease&r defense stats." + ] + id: "6FC4146E534C51DA" + min_width: 300 + rewards: [ + { + id: "2E1F58FA11EB8458" + type: "xp_levels" + xp_levels: 5 + } + { + id: "14496A68BE48A10C" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "minecraft:protection" + lvl: 3s + }] + } + } + type: "item" + } + ] + tasks: [{ + id: "441555E3052F2EAF" + item: { + Count: 1 + id: "cataclysm:monstrous_helm" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.5d + y: 5.5d + } + { + dependencies: ["746DE905D45A396C"] + description: [ + "The &dAbyssal Egg&r is also a drop from &5The Leviathan&r." + "" + "Place down the &o&bEgg&r and wait awhile and you'll have your own &6Baby Leviathan&r. Like its" + "mother it'll attack other sea creatures, but &o&bwon't attack you first&r." + ] + id: "7CBEBBCB9D95D11A" + min_width: 300 + rewards: [{ + id: "771E135DA78BC194" + type: "xp" + xp: 10 + }] + tasks: [{ + id: "2AFECDD5BEFC5ADC" + item: "cataclysm:abyssal_egg" + type: "item" + }] + x: -9.0d + y: 0.5d + } + { + dependencies: ["6ED61438A8A1EAA4"] + description: [ + "The &4Gatling Laser&r is a weapon you can make from &6Witherite&r." + "" + "By using &cRedstone&r in your inventory you can shoot &eLasers&r which start fires and do damage. It shoots &o&b50&r lasers per &o&b1&r redstone." + ] + id: "5EDB5A2D744CE415" + min_width: 300 + rewards: [ + { + id: "64601C87E7DDB64D" + type: "xp" + xp: 100 + } + { + count: 7 + id: "4F966066BC2F5262" + item: "minecraft:redstone" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "52F710E925BA3EDC" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "65B3C002F6542BDD" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + id: "6CECFDF3DCC27679" + item: { + Count: 1 + id: "cataclysm:laser_gatling" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: 1.5d + } + { + dependencies: ["6ED61438A8A1EAA4"] + description: [ + "The &4Meat Shredder&r is a melee weapon you can make from &6Witherite&r." + "" + "It has two attacks, tapping &eLeft-click&r and &3holding&r it. When you tap &eLeft-click&r it'll use the &4Meat Shredder&r like an &2Axe&r, hitting them once from a decent range. When you &3hold&r it though it will &o&brepeatedly shred&r them with it's &9Saw&r doing &o&bmuch quicker&r damage from closer." + ] + id: "04B40BB107F14330" + min_width: 300 + rewards: [ + { + id: "38032EB559953799" + type: "xp" + xp: 100 + } + { + id: "5EA33DF497D2DDC7" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "minecraft:sharpness" + lvl: 3s + }] + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "36E62A68551973A2" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "5909857CF94BAAFF" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + id: "73D8510344655F06" + item: "cataclysm:meat_shredder" + type: "item" + }] + x: -4.5d + y: 2.0d + } + { + dependencies: ["6ED61438A8A1EAA4"] + description: [ + "The &5Wither Assault Shoulder Weapon&r (&o&bW.A.S.W&r) is the last weapon you can make from &6Witherite&r." + "" + "It has &o&b2&r different projectiles it can shoot: &3Wither Missiles&r and &7Wither Howitzers&r. The &3Wither Missiles&r shoot from just holding &eRight-click&r, and will damage whatever hit them with &nlow&r cooldown." + "" + "The &7Wither Howitzers&r are fired when you &eShift+Right-click&r, they damage a bigger area and leave an area of &dwither effect&r that damages whatever walks in it. They have &nmuch longer&r cooldown" + "though." + ] + hide_dependent_lines: true + id: "445C9117198936B6" + min_width: 300 + rewards: [ + { + id: "6924670AFE72174B" + type: "xp" + xp: 100 + } + { + id: "1812D43EB383CAB4" + item: "minecraft:milk_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "12B8AE82426BB29E" + table_id: 5236874501558129216L + type: "loot" + } + { + exclude_from_claim_all: true + id: "662CEDBED12CC0B1" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + id: "6A510114AEC33021" + item: "cataclysm:wither_assault_shoulder_weapon" + type: "item" + }] + title: "W.A.S.W." + x: -3.5d + y: 1.5d + } + { + dependencies: ["6ED61438A8A1EAA4"] + description: [ + "The &dMechanical Fusion Anvil&r will be needed to make the &o&bvoid&r and &o&bfused&r weapons." + "" + "It places like a normal &3Anvil&r but does not have &ndurability&r." + ] + id: "683C260C854C5AA3" + rewards: [ + { + id: "4469946C8CF65D59" + type: "xp_levels" + xp_levels: 5 + } + { + id: "6E39B5718DEA46B4" + item: "cataclysm:witherite_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "4D7CD131FE31CBC1" + table_id: 5236874501558129216L + type: "loot" + } + { + exclude_from_claim_all: true + id: "79EF0B8ED1EAABC0" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + id: "100B82B7AB9DADCD" + item: "cataclysm:mechanical_fusion_anvil" + type: "item" + }] + x: -4.5d + y: 3.5d + } + { + dependencies: [ + "683C260C854C5AA3" + "2A196974431FCC42" + ] + description: [ + "The &5Void Forge&r is not much different from the &4Infernal Forge&r." + "" + "Same attack damage and speed, same pickaxe tier. Just summons &dVoid Runes&r when attacking." + "" + "Can be crafted by combining an &4Infernal Forge&r and a &9Void Core&r in a &eMechanical Fusion Anvil&r." + ] + id: "6BC3CF8937DEDE89" + min_width: 300 + rewards: [ + { + id: "795BCC4329CB247B" + type: "xp_levels" + xp_levels: 5 + } + { + id: "34CD7C5CA6AA0E6D" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:miners_fervor" + lvl: 3s + }] + } + } + type: "item" + } + ] + tasks: [{ + id: "29537CE0D9AC9F93" + item: { + Count: 1 + id: "cataclysm:void_forge" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.5d + y: 5.0d + } + { + dependencies: [ + "683C260C854C5AA3" + "445C9117198936B6" + ] + description: [ + "The &5Void Assault Shoulder Weapon&r (&o&bV.A.S.W&r) is just like the &dWither&r version but better." + "" + "Now it only shoots &6Void Howitzers&r which will do &o&bmore damage&r and cause void runes to come out of the ground in the area the &3Howitzer&r hit. Just at the cost of the &nlong&r cooldown." + "" + "It can be crafted by combining the &6W.A.S.W.&r and a &9Void Core&r in the &aMechanical Infusion Anvil&r." + ] + id: "74ACCEB6DC9EF6F7" + min_width: 300 + rewards: [ + { + id: "44E1BD43B6BFAAC1" + type: "xp_levels" + xp_levels: 5 + } + { + exclude_from_claim_all: true + id: "561F9782B95D426D" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + id: "0297FDAF038E1ACB" + item: "cataclysm:void_assault_shoulder_weapon" + type: "item" + }] + title: "V.A.S.W." + x: -3.5d + y: 4.5d + } + { + dependencies: [ + "683C260C854C5AA3" + "4D644A9829C240CB" + "2CD58FC229BC0C28" + ] + description: [ + "The &5Gauntlet of Bulwark&r acts not as you'd assume. Instead of &o&bbringing&r mobs closer it &o&bpushes&r them away, when holding &eRight-click&r, and gives them &6Blazing Brand&r. Then when you release &eRight-click&r you'll do the normal charge." + "" + "It's made by fusing the &dGauntlet of Guard&r with a &cBulwark of Flame&r in the &aMechanical Fusion Anvil&r." + ] + id: "1D56D3B444A4B2D4" + min_width: 300 + rewards: [ + { + id: "13571F7B5EE6A68A" + type: "xp_levels" + xp_levels: 5 + } + { + id: "1700CA845EDB64F8" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:scavenger" + lvl: 3s + }] + } + } + type: "item" + } + ] + tasks: [{ + id: "40327827EAA920D4" + item: "cataclysm:gauntlet_of_bulwark" + type: "item" + }] + x: -5.5d + y: 4.5d + } + { + dependencies: ["7D57A14810BC0CBE"] + description: [ + "&6Ignitium&r is like &0Netherite&r but takes actual skill to get it." + "" + "The &6Ignis&r will only drop &o&b1&r so get good use of it. You can use it to upgrade your netherite armor or use it to make &o&b2&r weapons." + ] + id: "291C76140DE97E3C" + min_width: 300 + rewards: [ + { + id: "13FF107EA73DE33A" + type: "xp" + xp: 1000 + } + { + count: 2 + id: "09506B5A22FD32BC" + item: "cataclysm:ignitium_ingot" + random_bonus: 1 + type: "item" + } + ] + tasks: [{ + count: 3L + id: "71E5AA7065D681E9" + item: "cataclysm:ignitium_ingot" + type: "item" + }] + title: "Ignitium" + x: 7.0d + y: 4.5d + } + { + dependencies: ["291C76140DE97E3C"] + description: [ + "If you like the &2Ignis' Shield&r you can make one of your own with &6Ignitium&r." + "" + "The &4Bulwark of the Flame&r can be used like a normal shield but also has a &o&dspecial effect&r. When holding &eShift+Right-click&r, letting go will let you charge at whatever is &o&binfront of you&r, like how goats do. Whatever gets hit will take damage and if &o&bpinched against a wall&r will also &nget stunned&r." + ] + hide_dependent_lines: true + id: "4D644A9829C240CB" + min_width: 300 + rewards: [ + { + id: "527C3B72B42FB471" + type: "xp_levels" + xp_levels: 15 + } + { + id: "1EDF85EF356BA684" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "apotheosis:shield_bash" + lvl: 3s + }] + } + } + type: "item" + } + ] + tasks: [{ + id: "3521C86AC06247C4" + item: "cataclysm:bulwark_of_the_flame" + type: "item" + }] + x: 6.5d + y: 5.5d + } + { + dependencies: ["291C76140DE97E3C"] + description: [ + "The Incinerator can be used just like a normal sword and enchanted like one." + "" + "But when holding &eRight-click&r it does something no normal sword does. When you hold and let go of &eRight+click&r for a &o&bfew seconds&r, massive &o&eflames&r will strike out of the ground in the direction you are looking at then &nwill explode&r." + ] + id: "2BCB788924BBD849" + min_width: 300 + rewards: [ + { + id: "1F71512FF71A514C" + type: "xp_levels" + xp_levels: 30 + } + { + id: "44D31D2F652D5C04" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "minecraft:sharpness" + lvl: 7s + }] + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0C259A714CBA3AC6" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "350E253627C272D3" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "4F4D4F196ED24844" + item: "cataclysm:the_incinerator" + type: "item" + }] + x: 7.5d + y: 5.5d + } + { + dependencies: ["2B115519A21F9CB7"] + description: [ + "The &dGauntlet of Guard&r is more of a tool than a weapon, it brings in mobs closer when you hold &eRight-click&r with it." + "" + "Then you can &o&bsmack the enemies&r with it to do a bit of damage." + ] + hide_dependent_lines: true + id: "2CD58FC229BC0C28" + min_width: 300 + rewards: [ + { + id: "2C5D932EB748D597" + type: "xp" + xp: 50 + } + { + id: "1EEEA8D09BD258CF" + item: { + Count: 1 + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "tombstone:soulbound" + lvl: 1s + }] + } + } + type: "item" + } + ] + tasks: [{ + id: "25FAA04164EF0360" + item: "cataclysm:gauntlet_of_guard" + type: "item" + }] + x: 9.898169482846917d + y: 5.0d + } + { + dependencies: ["689F32883C4E9502"] + description: ["&2Cataclysm&r offers plenty of &dMinibosses&r and mobs that help the &6Bosses&r as well!"] + icon: { + Count: 1 + id: "cataclysm:bone_reptile_helmet" + tag: { + Damage: 0 + } + } + id: "6BBF35D29E70FDD4" + rewards: [{ + id: "0767C3DBA5C55589" + type: "xp" + xp: 1 + }] + shape: "diamond" + size: 2.0d + tasks: [{ + id: "05E1FB6DF026AD11" + title: "Minibosses and Enemies" + type: "checkmark" + }] + title: "&dCataclysm Minibosses" + x: 1.5d + y: 0.5357142857142918d + } + { + dependencies: ["6BBF35D29E70FDD4"] + description: [ + "The &eProwler&r is a miniboss guarding the &6Ancient Factory&r." + "" + "He may look &o&bpowered down&r but once you get too close you'll note &o&bthat's very wrong&r. He has &o&b1,500&r &o&chearts&r and has &o&b2&r &o&aattacks&r: &dShoulder Missiles&r similar to the &o&bWASW&r and a &9Saw&r he uses for upclose combat." + "" + "On death he'll drop &cRedstone&r and &3Iron&r plus &eXP&r, and he's also weak to the &o&bEMF&r attacks." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/prowler" + } + } + icon_scale: 1.1d + id: "3459CAEB59CBD60E" + min_width: 300 + rewards: [ + { + id: "0BD3899DF73DA511" + type: "xp" + xp: 300 + } + { + count: 2 + id: "3584FC80EE3F517C" + item: "minecraft:iron_block" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "32020599EF899006" + table_id: 5236874501558129216L + type: "loot" + } + { + exclude_from_claim_all: true + id: "59A0FBF8465351F9" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + entity: "cataclysm:the_prowler" + icon: "cataclysm:the_prowler_spawn_egg" + id: "7DBF4C90566816D2" + type: "kill" + value: 1L + }] + title: "&2The Prowler" + x: 1.5d + y: 2.035714285714292d + } + { + dependencies: ["6BBF35D29E70FDD4"] + description: [ + "The &2Coralssus&r works as a guard and steed for the &dSunken City&r." + "" + "They're used with the &1Deeplings&r but he's different! They have &o&b110&r &o&chearts&r and basic attacks but the &1Deeplings&r with them make it &o&bmuch more dangerous&r. Its attacks are just &o&bsmacking&r and &o&bthrowing&r you." + "" + "When killed it'll drop &6Crystalized Coral&r which is needed to make the &5Abyssal Sacrifice&r." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/coralssus" + } + } + icon_scale: 1.2d + id: "1744E700CF742CE2" + min_width: 300 + rewards: [ + { + id: "4EEFDF477BFC84BC" + type: "xp" + xp: 300 + } + { + id: "2622838220FFF260" + item: "cataclysm:crystallized_coral_fragments" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "0A8A85A6582A8A93" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + entity: "cataclysm:coralssus" + icon: "cataclysm:coralssus_spawn_egg" + id: "2BF15BDF1224FB2E" + type: "kill" + value: 1L + }] + title: "&2Coralssus" + x: 3.0d + y: 0.5357142857142918d + } + { + dependencies: ["6BBF35D29E70FDD4"] + description: [ + "The &dAmethyst Crab&r lives in the &aLush Caves&r with the &7Axolotls&r." + "" + "It has &o&b2,000&r &o&chearts&r and is initially &o&bneutral&r. That means it won't attack first but it will hit you back. It has a few attacks one being just smacking you with its claws. It can also throw &dAmethysts&r at you and burrow under the ground." + "" + "On death it'll drop its meat and shells. Its meat can be blessed in an &5Altar of Amethyst&r to be better. The &9Shells&r can be crafted together to make &eBloom Stone Pauldrons&r which have similar stats to &0Netherite Armor&r but can do similar abilities as the &dCrab&r itself." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/amethyst_crab" + } + } + icon_scale: 1.2d + id: "631796E7615C04FA" + min_width: 300 + rewards: [ + { + id: "1E62949DDFB9AC4C" + type: "xp" + xp: 500 + } + { + count: 2 + id: "60059E1A55CFFC7F" + item: "cataclysm:blessed_amethyst_crab_meat" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4C583D1AC9A8FFAA" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "3780294C9D629EBB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + entity: "cataclysm:amethyst_crab" + icon: "cataclysm:amethyst_crab_spawn_egg" + id: "1FC04EDCAF7CBD0D" + type: "kill" + value: 1L + }] + title: "&2Amethyst Crab" + x: 2.5d + y: 0.035714285714291805d + } + { + dependencies: ["6BBF35D29E70FDD4"] + description: [ + "In order to fight the &6Ignis&r you'll need to make your way through the &2Ignited Revenant&r for it's &eBurning Ashes&r." + "" + "This won't be &o&beasy fight&r, he has &o&b800&r &o&chearts&r, it's &o&ashields&r will stop you from attacking it so &o&bavoid&r those." + "" + "Once you kill it you can get to the &6Ignis&r." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/ignited_revenant" + } + } + icon_scale: 1.3d + id: "1B4ED65C614B102F" + min_width: 300 + rewards: [ + { + id: "7A6E685EC8423671" + type: "xp" + xp: 300 + } + { + count: 2 + id: "188D723BB7299D81" + item: "cataclysm:dying_ember" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "2CCBA867E5633C3E" + table_id: 5236874501558129216L + type: "loot" + } + { + exclude_from_claim_all: true + id: "082B31E01297850B" + table_id: 6305167096659659419L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + entity: "cataclysm:ignited_revenant" + icon: "cataclysm:ignited_revenant_spawn_egg" + id: "6186918546506DB1" + type: "kill" + value: 1L + }] + title: "&4Ignited Revenant" + x: 0.5d + y: 1.0357142857142918d + } + { + dependencies: ["33B1D3FD4C0B5514"] + description: [ + "&6Sandstorm in a Bottle&r is an item you wear for a &o&bspecial effect&r." + "" + "It goes in the &7Belt&r slot and when you press default &o&bX&r you will turn into a &eSandstorm&r." + "" + "It is solely for &o&bmovement&r, as you can fly for a little bit, it doesn't deal damage or reflect it, just movement. It &ndoesn't negate fall damage&r though so careful when you get out of it." + ] + id: "1178E4123E8818E2" + min_width: 300 + rewards: [{ + id: "28AB21CA01AC78C3" + type: "xp" + xp: 10 + }] + tasks: [{ + id: "2E84C6ED13C503B6" + item: "cataclysm:sandstorm_in_a_bottle" + type: "item" + }] + x: -6.5d + y: 0.5d + } + { + dependencies: ["6BBF35D29E70FDD4"] + description: [ + "The &9Ender Golem&r keeps guard of the &5Ruined Citadel&r, well multiple of them do. Technically you &o&bdon't need&r to fight them to fight the &dEnder Guardian&r but you definitely should." + "" + "The &9Ender Golem&r has &o&b450&r &o&chearts&r and a few &o&eattacks&r. It attacks like a normal &3Iron Golem&r but also has &6Void Core&r attacks. The &6Void Core&r works like the &3Evoker Jaws&r with things coming out of the ground to &o&bdeal damage&r." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/ender_golem" + } + } + icon_scale: 1.3d + id: "6B5BC33667C782EC" + min_width: 300 + rewards: [ + { + id: "32E563BA90197B82" + type: "xp" + xp: 700 + } + { + id: "3D4DC3517D635680" + item: "cataclysm:void_core" + type: "item" + } + { + exclude_from_claim_all: true + id: "6CC77CAA8F02FB30" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "3635E5D70A9F5856" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + entity: "cataclysm:ender_golem" + icon: "cataclysm:ender_golem_spawn_egg" + id: "37AF6786E3E6BE61" + type: "kill" + value: 1L + }] + title: "&5Ender Golem" + x: 0.5d + y: 0.035714285714291805d + } + { + dependencies: ["071125FC42EBEAB9"] + description: [ + "&6Cataclysm&r is a mod that adds &o&bdifficult&r dungeons, &o&bchallenging&r boss-fights and &o&bpowerful&r items." + "" + "This mod's bosses are inspired by &dMinecraft Dungeons&r, being much more &o&aunique&r, &o&9complex&r and &o&cpowerful&r compared to &eVanilla's&r." + "" + "Defeat them in battle to prove yourself and earn &o&bpowerful gear&r!" + ] + hide_dependent_lines: true + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "cataclysm:textures/mob_effect/blazing_brand.png" + } + } + id: "689F32883C4E9502" + min_width: 300 + rewards: [{ + id: "7ED9DC0B961F5633" + type: "xp" + xp: 1 + }] + shape: "gear" + size: 1.7d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "5603E578E9EFC748" + title: "{atm9.quest.cataclysm.cataclysm}" + type: "checkmark" + }] + title: "Welcome to &4Cataclysm" + x: 1.5d + y: -1.874999999999993d + } + { + dependencies: ["33B1D3FD4C0B5514"] + description: [ + "Then the &6Remnant Skull&r it's a confirmed drop from the &2Ancient Remnant&r and when used will spawn a &eModern Revenant&r, but much smaller and nicer than the &eAncient&r one though." + "" + "You can tame it by feeding it a &3Sniffer Egg&r then it will act like a dog. Attacking what attacks you or what you attack. It also has 3 modes: &o&bfollow&r, &o&bwander&r, and &o&bstay&r. Follow it will &o&bfollow you&r. Wander will have it &o&bwalking around&r a certain area. And stay will have it &o&blay down&r in one spot." + ] + id: "4FA7774D89171BB3" + min_width: 300 + rewards: [{ + id: "0FD86A8921860891" + type: "xp" + xp: 10 + }] + tasks: [{ + id: "59F963AD4A674C28" + item: "cataclysm:remnant_skull" + type: "item" + }] + x: -7.5d + y: 0.5d + } + { + dependencies: ["6BBF35D29E70FDD4"] + description: [ + "&2Endermaptera&r are the cockroaches of the &dEnd&r. They live in and around the &5Ruined Citadel&r." + "" + "They have the &o&bleast health&r of any &4Cataclysm&r mobs at &o&b8&r &o&chearts&r and only &o&b1&r &o&eattack&r." + "" + "They will drop &9Void Jaws&r which can be used to craft &6Void Scatter Arrows&r." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/endermaptera" + } + } + icon_scale: 1.3d + id: "465B08461B460DAC" + min_width: 300 + rewards: [ + { + id: "5879D64684D8F6AF" + type: "xp" + xp: 50 + } + { + count: 2 + id: "07E9F13AAF0CAEA5" + item: "cataclysm:void_jaw" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "4E7375CF22B9EB83" + table_id: 5236874501558129216L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + entity: "cataclysm:endermaptera" + icon: "cataclysm:endermaptera_spawn_egg" + id: "5A4F3C501FCA8D4A" + type: "kill" + value: 5L + }] + title: "&5Endermaptera" + x: 0.0d + y: 0.5357142857142918d + } + { + dependencies: ["6BBF35D29E70FDD4"] + description: [ + "&2Koboletons&r are mini &eDino Skeletons&r who serve the &6Ancient Remnant&r." + "" + "They only have &o&b12&r and a half &o&chearts&r and &o&b1&r &o&eattack&r." + "" + "They also drop their &o&bbones&r but they only make bonemeal." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/koboleton" + } + } + icon_scale: 1.3d + id: "4FA156C383C9C438" + min_width: 300 + rewards: [ + { + id: "7DAC7FB8F3EE678C" + type: "xp" + xp: 70 + } + { + id: "44411D6790059642" + item: { + Count: 1 + id: "cataclysm:khopesh" + tag: { + Damage: 0 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1356764348B06B06" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + entity: "cataclysm:koboleton" + id: "3ED2F1DCEF876342" + type: "kill" + value: 5L + }] + title: "&2Koboleton" + x: 1.0d + y: 1.5357142857142918d + } + { + dependencies: ["6BBF35D29E70FDD4"] + description: [ + "The &4Watchers&r... well they watch the &6Ancient Factory&r." + "" + "They'll attack anything they see with their laser beams! They have &o&b12&r and a half &o&chearts&r, can &o&9fly&r, and are &o&3weak&r to &o&bEMF&r attacks as well." + "" + "Like the &eProwler&r they drop &cRedstone&r and &3Iron&r on death." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/watcher" + } + } + icon_scale: 1.3d + id: "4BF5EB050EC14C80" + min_width: 300 + rewards: [ + { + id: "0AAE099AFE44D7A5" + type: "xp" + xp: 100 + } + { + count: 4 + id: "1079980073F18F42" + item: "minecraft:redstone_block" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "10926BE40424FEDA" + table_id: 5236874501558129216L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + entity: "cataclysm:the_watcher" + icon: "cataclysm:the_watcher_spawn_egg" + id: "115CC8CB465CC75B" + type: "kill" + value: 3L + }] + title: "&2The Watcher" + x: 2.0d + y: 1.5357142857142918d + } + { + dependencies: ["6BBF35D29E70FDD4"] + description: [ + "The &1Deeplings&r are an ancient race of &o&bsea monsters&r who live and guard the &dSunken City&r." + "" + "They have their own rankings: &6Anglers&r, &9Brutes&r, &ePriests&r, and &3Warlocks&r. Each carrying &o&bdifferent weapons&r which they can drop." + "" + "The &eDeepling Priest&r drops the &7Athame&r which we need for the &5Abyssal Sacrifice&r." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/deepling_brute" + } + } + icon_scale: 1.2d + id: "6E08D4E6BC3FB99F" + min_width: 300 + rewards: [ + { + id: "2E1B5B46DFCE1EC8" + type: "xp" + xp: 500 + } + { + id: "3E3C2F7F57ED89C6" + item: { + Count: 1 + id: "cataclysm:coral_spear" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7ACE139EDA50A9C3" + item: { + Count: 1 + id: "cataclysm:coral_bardiche" + tag: { + Damage: 0 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "4BA206CB57C22AF2" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "diamond" + tasks: [ + { + entity: "cataclysm:deepling" + icon: "cataclysm:deepling_spawn_egg" + id: "32F07A1E7D1DB677" + type: "kill" + value: 1L + } + { + entity: "cataclysm:deepling_angler" + icon: "cataclysm:deepling_angler_spawn_egg" + id: "1292EDE5AE9A6208" + type: "kill" + value: 1L + } + { + entity: "cataclysm:deepling_brute" + icon: "cataclysm:deepling_brute_spawn_egg" + id: "0F979803BAD37C6D" + type: "kill" + value: 1L + } + { + entity: "cataclysm:deepling_priest" + icon: "cataclysm:deepling_priest_spawn_egg" + id: "1FD4301EF1879E2F" + type: "kill" + value: 1L + } + { + entity: "cataclysm:deepling_warlock" + icon: "cataclysm:deepling_warlock_spawn_egg" + id: "77D7886DB72A9515" + type: "kill" + value: 1L + } + ] + title: "&2Deeplings" + x: 2.5d + y: 1.0357142857142918d + } + ] + title: "Cataclysm" +} diff --git a/minecraft/config/ftbquests/quests/chapters/chipped.snbt b/minecraft/config/ftbquests/quests/chapters/chipped.snbt new file mode 100644 index 0000000..c3cb43c --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/chipped.snbt @@ -0,0 +1,414 @@ +{ + autofocus_id: "0010000000000002" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "chipped" + group: "507DDDB2170C4831" + icon: "chipped:carpenters_table" + id: "0010000000000001" + order_index: 0 + quest_links: [ ] + quests: [ + { + description: [ + "§eChipped§r adds over §e11,000 new decorative blocks§r to the game —" + "all hand-textured in the vanilla style. Stone bricks with cracks," + "chiselled patterns, and worn faces. Wood planks with knots, splits," + "and grain variations. Glass in a dozen framed styles." + "" + "None of these blocks have traditional crafting recipes." + "Instead, the mod adds §e7 specialised workbenches§r, each handling" + "a different category of material." + "" + "§eHow the workbenches work:§r" + "• Craft the workbench and place it down" + "• Right-click to open its GUI" + "• Place a vanilla block in the §einput slot§r on the left" + "• A grid of variants appears — click any to craft it §e1-for-1§r" + "" + "§eTips:§r" + "• Use §eJEI§r — hover over any Chipped block and press §eR§r to see" + " which workbench crafts it. Press §eU§r on a workbench to browse" + " everything it can produce." + "• All 7 workbenches function identically — the only difference is" + " which input blocks each one accepts." + "• Variants are purely cosmetic. A Chipped stone brick is still a" + " stone brick for crafting and building purposes." + "• Connected textures (powered by Athena) make many Chipped blocks" + " look even better when placed adjacent to each other." + ] + icon: "chipped:carpenters_table" + id: "0010000000000002" + min_width: 375 + tasks: [{ + id: "0010000000000003" + title: "Open JEI and browse what Chipped adds" + type: "checkmark" + }] + title: "Every Block Deserves a Friend" + x: 0.0d + y: 0.0d + } + { + dependencies: ["0010000000000002"] + description: [ + "The §eCarpenter's Workbench§r handles all §ewood and log variants§r." + "" + "Drop any log, plank, wood, stripped wood, or wood-based block into" + "the input slot and browse dozens of textured alternatives — from" + "rough-hewn timber to polished panels, carved frames to woven lattice." + "" + "§eBlocks it accepts:§r" + "• All log and wood variants (oak, spruce, birch, jungle, etc.)" + "• All plank types" + "• Wooden slabs, stairs, and fences have their own variants too" + "" + "§eRecipe:§r Crafting Table + Wood Axe + Iron Ingot + Planks + 3 Logs" + "" + "§eTips:§r" + "• Great for cabins, ships, taverns — anywhere you want wood to look" + " less repetitive." + "• Mix different wood species with different Chipped variants for a" + " natural, weathered look." + "• Stripped log variants are excellent for interior ceiling beams." + ] + hide_details_until_startable: true + icon: "chipped:carpenters_table" + id: "0010000000000004" + min_width: 375 + rewards: [{ + id: "666A83E76070726E" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0010000000000005" + item: "chipped:carpenters_table" + title: "Craft a Carpenter's Workbench" + type: "item" + }] + title: "Carpenter's Workbench" + x: -3.0d + y: 2.0d + } + { + dependencies: ["0010000000000002"] + description: [ + "The §eMason's Table§r handles all §estone and masonry variants§r." + "" + "This is the most-used workbench for most builds — nearly every" + "stone block in the game has a huge range of variants here." + "Big bricks, small bricks, cracked tiles, etched patterns," + "rough cobble, smooth ashlar, mossy facades." + "" + "§eBlocks it accepts:§r" + "• Stone, cobblestone, stone bricks, smooth stone" + "• Andesite, diorite, granite and their variants" + "• Sandstone, red sandstone" + "• Deepslate, blackstone, basalt, calcite, tuff" + "• Prismarine, nether bricks, end stone bricks" + "" + "§eRecipe:§r Crafting Table + 2 Iron Ingots + Brick + Clay Ball + 2 Logs" + "" + "§eTips:§r" + "• The best workbench to start with — stone variants are cheap to source" + " and the variety is enormous." + "• Mix stone brick variants with regular stone bricks for aged castle walls." + "• Deepslate variants are stunning for underground bases and dungeons." + ] + icon: "chipped:mason_table" + id: "0010000000000006" + min_width: 400 + rewards: [{ + id: "2A793C32B9F67B51" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0010000000000007" + item: "chipped:mason_table" + title: "Craft a Mason's Table" + type: "item" + }] + title: "Mason's Table" + x: -1.5d + y: 2.0d + } + { + dependencies: ["0010000000000002"] + description: [ + "The §eGlass Blower§r handles all §eglass and glass pane variants§r." + "" + "Vanilla glass is flat and boring — the Glass Blower unlocks" + "framed glass, stained glass panels with lead framing, rippled" + "glass, frosted panes, and many more architectural glass styles" + "that look incredible in windows and facades." + "" + "§eBlocks it accepts:§r" + "• Clear glass and all 16 stained glass colours" + "• Glass panes and all 16 stained glass pane colours" + "" + "§eRecipe:§r Crafting Table + Blast Furnace + 4 Logs + Bricks + Iron Ingot + Glass" + "" + "§eTips:§r" + "• Stained glass variants in warm colours (amber, rose) make" + " beautiful cathedral-style windows." + "• Frosted and ribbed glass variants are perfect for bathrooms" + " or privacy screens in builds." + "• Many glass variants have connected textures — place them adjacent" + " to each other for seamless framing effects." + ] + icon: "chipped:glassblower" + id: "0010000000000008" + min_width: 375 + rewards: [{ + id: "43565A9CDDFFD689" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0010000000000009" + item: "chipped:glassblower" + title: "Craft a Glass Blower" + type: "item" + }] + title: "Glass Blower" + x: 0.0d + y: 2.0d + } + { + dependencies: ["0010000000000002"] + description: [ + "The §eLoom§r (Chipped's version) handles all §ewool and carpet variants§r." + "" + "Wool is one of the most versatile decorative materials in vanilla —" + "and Chipped's Loom multiplies that versatility enormously." + "Knitted textures, woven patterns, cushion faces, tufted upholstery," + "and tightly wrapped bales are all available here." + "" + "§eBlocks it accepts:§r" + "• All 16 wool colours" + "• All 16 carpet colours" + "" + "§eRecipe:§r Crafting Table + 3 Sticks + 4 Logs + Wool" + "" + "§eTips:§r" + "• This is a different block to the vanilla Loom — the Chipped Loom" + " does not do banner crafting. Use the vanilla Loom for that." + "• Wool variants make excellent furniture blocks — sofa arms, cushion " + " seats, and padded walls all look great with these textures." + "• Mix carpet variants on floors for patterned rug effects." + ] + icon: "chipped:loom_table" + id: "001000000000000A" + min_width: 375 + rewards: [{ + id: "246460BC3E0E52DD" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "001000000000000B" + item: "chipped:loom_table" + title: "Craft a Chipped Loom" + type: "item" + }] + title: "Loom" + x: 1.5d + y: 2.0d + } + { + dependencies: [ + "0010000000000004" + "0010000000000006" + ] + description: [ + "The §eBotanist's Workbench§r handles §eplant-based and organic blocks§r." + "" + "This is the most niche of the seven workbenches, but the results" + "are some of the most charming — bundled hay bales, carved pumpkins" + "with decorative faces, dried floral arrangements, and" + "atmospheric mushroom block variants for Nether and forest builds." + "" + "§eBlocks it accepts:§r" + "• Hay bales" + "• Pumpkins (carved and uncarved)" + "• Melon blocks" + "• Shroomlight" + "• Vines and hanging moss" + "• Various mushroom blocks" + "" + "§eRecipe:§r Crafting Table + 3 Flower Pots + 2 Slabs + 2 Sticks" + "" + "§eTips:§r" + "• Hay bale variants make wonderful rustic floor and wall textures" + " for barns, farmhouses, and cottages." + "• Shroomlight variants are great for atmospheric Nether decoration —" + " they still emit light." + "• Pumpkin variants give you a lot of decorative options for" + " autumn-themed or spooky builds." + ] + icon: "chipped:botanist_workbench" + id: "001000000000000C" + min_width: 375 + rewards: [{ + id: "0BF6FC5391D67FAB" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "001000000000000D" + item: "chipped:botanist_workbench" + title: "Craft a Botanist's Workbench" + type: "item" + }] + title: "Botanist's Workbench" + x: -3.0d + y: 4.0d + } + { + dependencies: [ + "0010000000000008" + "001000000000000A" + ] + description: [ + "The §eAlchemy Bench§r handles §emystical and end-game decorative blocks§r." + "" + "This is the most expensive workbench to craft — it needs an" + "Enchanting Table and a Brewing Stand — but it unlocks some of the" + "most striking decorative blocks in the mod." + "" + "§eBlocks it accepts:§r" + "• Obsidian and crying obsidian" + "• Glowstone" + "• Sea lantern" + "• Soul sand and soul soil" + "" + "§eRecipe:§r Crafting Table + Enchanting Table + Brewing Stand + 4 Slabs" + "" + "§eTips:§r" + "• Obsidian variants range from smooth polished panels to rough" + " volcanic textures — fantastic for dark, imposing builds." + "• Crying obsidian variants are visually striking as accent blocks." + "• Glowstone variants still emit full light — good for decorative" + " lighting that doesn't look like plain glowstone." + "• Sea lantern variants are excellent for underwater or aquatic builds." + ] + icon: "chipped:alchemy_bench" + id: "001000000000000E" + min_width: 350 + rewards: [{ + id: "458B2229E6C7D620" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "001000000000000F" + item: "chipped:alchemy_bench" + title: "Craft an Alchemy Bench" + type: "item" + }] + title: "Alchemy Bench" + x: 0.0d + y: 4.0d + } + { + dependencies: [ + "001000000000000A" + "0010000000000006" + ] + description: [ + "The §eMechanist's Workbench§r handles §eredstone and lighting blocks§r." + "" + "A smaller category but a uniquely useful one — these variants" + "let you integrate redstone components and light sources into" + "builds without them looking like bare functional blocks." + "" + "§eBlocks it accepts:§r" + "• Redstone lamps (including lit variants)" + "• Lanterns and soul lanterns" + "• Redstone torches" + "" + "§eRecipe:§r Redstone Torch + Piston + 2 Slabs + 2 Logs + TNT" + "" + "§eTips:§r" + "• Redstone lamp variants range from ornate iron chandeliers to" + " flush ceiling panels — perfect for builds where a plain" + " glowing square would look out of place." + "• Lantern variants have connected textures and look beautiful" + " hanging from ceilings or lining pathways." + "• The Mechanist's Workbench itself is quite a decorative block —" + " it looks great placed in a workshop or factory build." + ] + icon: "chipped:tinkering_table" + id: "0010000000000010" + min_width: 350 + rewards: [{ + id: "3B61F897071C7B40" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0010000000000011" + item: "chipped:tinkering_table" + title: "Craft a Mechanist's Workbench" + type: "item" + }] + title: "Mechanist's Workbench" + x: 3.0d + y: 4.0d + } + { + dependencies: [ + "001000000000000C" + "001000000000000E" + "0010000000000010" + ] + description: [ + "You've crafted all seven workbenches. Now put them to use." + "" + "Chipped is at its best when you stop thinking of it as a crafting" + "mod and start thinking of it as a §epaint palette§r. The goal isn't" + "to craft every block — it's to have the right texture available" + "when your build needs it." + "" + "§eSome ideas to get you started:§r" + "• Replace plain stone brick walls with §eMason's Table§r variants" + " for an aged, weathered castle or ruin" + "• Use §eCarpenter's Workbench§r variants on roof beams and" + " flooring for a cosy cottage or tavern" + "• Line windows with §eGlass Blower§r framed glass for an" + " architectural, cathedral-inspired look" + "• Add §eAlchemy Bench§r obsidian and glowstone variants for a" + " magic tower or Nether stronghold" + "• Swap out plain lanterns for §eMechanist's Workbench§r" + " variants to give your pathways personality" + "" + "§eTips:§r" + "• You don't need to redesign your whole base — pick one room or" + " one wall and experiment there first." + "• Chipped blocks work with connected textures — the more you" + " place adjacent to each other, the better they look." + "• Your workbenches themselves are decorative — arrange all seven" + " in a dedicated crafting room for a beautiful workshop aesthetic." + ] + icon: "chipped:alchemy_bench" + id: "0010000000000012" + min_width: 375 + rewards: [{ + id: "3BF9D5B100E12CEF" + type: "xp" + xp: 150 + }] + tasks: [{ + id: "0010000000000013" + title: "Use Chipped blocks to decorate part of your base or a build" + type: "checkmark" + }] + title: "The Full Workshop" + x: 0.0d + y: 6.5d + } + ] + title: "&3&oChipped" +} diff --git a/minecraft/config/ftbquests/quests/chapters/compact_machines.snbt b/minecraft/config/ftbquests/quests/chapters/compact_machines.snbt new file mode 100644 index 0000000..f888c13 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/compact_machines.snbt @@ -0,0 +1,215 @@ +{ + autofocus_id: "0000000000001CDC" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "compact_machines" + group: "7E54189F6BA49858" + icon: "compactmachines:personal_shrinking_device" + id: "0000000000001CDB" + order_index: 1 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + hide_text_until_complete: false + id: "0000000000001CDC" + rewards: [{ + exclude_from_claim_all: true + id: "73A48D8AACBF4FA7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "0000000000001CDD" + item: "compactmachines:wall" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["0000000000001CDC"] + id: "0000000000001CDF" + rewards: [{ + exclude_from_claim_all: true + id: "68562E519E46A9E1" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001CE0" + item: "compactmachines:machine_tiny" + type: "item" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["0000000000001CDC"] + id: "0000000000001CE1" + rewards: [{ + exclude_from_claim_all: true + id: "617CE58179FEBC84" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001CE2" + item: "compactmachines:machine_small" + type: "item" + }] + x: 3.0d + y: 3.0d + } + { + dependencies: ["0000000000001CDC"] + id: "0000000000001CE3" + rewards: [{ + exclude_from_claim_all: true + id: "4C8573D5747EC7E8" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001CE4" + item: "compactmachines:machine_normal" + type: "item" + }] + x: 0.0d + y: 3.0d + } + { + dependencies: ["0000000000001CDC"] + id: "0000000000001CE5" + rewards: [{ + exclude_from_claim_all: true + id: "42D4A8E5A0A071FB" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001CE6" + item: "compactmachines:machine_large" + type: "item" + }] + x: -3.0d + y: 0.0d + } + { + dependencies: ["0000000000001CDC"] + id: "0000000000001CE7" + rewards: [{ + exclude_from_claim_all: true + id: "0555A92C1A496D24" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001CE8" + item: "compactmachines:machine_giant" + type: "item" + }] + x: -3.0d + y: -3.0d + } + { + dependencies: ["0000000000001CDC"] + id: "0000000000001CE9" + rewards: [{ + exclude_from_claim_all: true + id: "51FB4CE4683FCD6B" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001CEA" + item: "compactmachines:machine_maximum" + type: "item" + }] + x: 0.0d + y: -3.0d + } + { + dependencies: ["0000000000001CDC"] + id: "0000000000001CEB" + rewards: [{ + exclude_from_claim_all: true + id: "147ABB91F09AD61B" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001CEC" + item: "compactmachines:personal_shrinking_device" + type: "item" + }] + x: 3.0d + y: -3.0d + } + { + dependencies: ["0000000000001CDC"] + id: "0000000000001CED" + rewards: [{ + exclude_from_claim_all: true + id: "2DD8B1E6E5F50D88" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [ + { + id: "0000000000001CEE" + item: { + Count: 1 + id: "compactmachines:tunnel" + tag: { + definition: { + id: "compactmachines:item" + } + } + } + type: "item" + } + { + id: "7BAC141C8FE49155" + item: { + Count: 1 + id: "compactmachines:tunnel" + tag: { + definition: { + id: "compactmachines:energy" + } + } + } + type: "item" + } + { + id: "0609445642100588" + item: { + Count: 1 + id: "compactmachines:tunnel" + tag: { + definition: { + id: "compactmachines:fluid" + } + } + } + type: "item" + } + ] + x: -3.0d + y: 3.0d + } + ] + title: "&3&oCompact Machines" +} diff --git a/minecraft/config/ftbquests/quests/chapters/cooking_for_blockheads.snbt b/minecraft/config/ftbquests/quests/chapters/cooking_for_blockheads.snbt new file mode 100644 index 0000000..5c15399 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/cooking_for_blockheads.snbt @@ -0,0 +1,733 @@ +{ + autofocus_id: "04F8A6ECC915BFE3" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "cooking_for_blockheads" + group: "2A53C3F768FB4163" + icon: "cookingforblockheads:cooking_table" + id: "65411B7D9B158DC8" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -7.553571428571431d + y: -8.11607142857143d + } + { + height: 3.0d + image: "kubejs:item/cfb" + rotation: 0.0d + width: 8.0d + x: -3.5d + y: -9.5d + } + { + height: 1.0d + image: "kubejs:item/cfb_logo" + rotation: 0.0d + width: 10.676470588235293d + x: 0.0d + y: -10.5d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["3A7FC41CC5B51F5F"] + description: [ + "&4Cooking for Blockheads&r adds a cooking book along with a &o&bfunctional kitchen&r to Minecraft." + "" + "Use the book or the &aCooking Table&r to find out what you can cook with what ingredients you currently have available, and start cooking immediately through a &nsingle click&r." + "" + "The &o&bkitchen is modular&r and can be upgraded through additional blocks, allowing for &o&bexpanded storage&r, &o&binfinite water&r for crafting provided by the &9Sink&r, or efficient and delicious cooking with the &2Oven&r." + "" + "Some people even went as far as capturing a &d&o&b&rCow in a Jar&r to provide them with &ninfinite milk&r!" + ] + icon: "cookingforblockheads:oven" + id: "3AEAEDFF7736CBAB" + min_width: 300 + rewards: [ + { + id: "6D0A17470A4F96FF" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1B66916B3ED83BA4" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oThe Food&r quest*" + tasks: [{ + id: "12FAD3A5E7BC2B50" + item: "minecraft:book" + type: "item" + }] + title: "Welcome to &4Cooking for Blockheads" + x: -8.25d + y: -7.5d + } + { + dependencies: ["3AEAEDFF7736CBAB"] + id: "317FC74309007901" + rewards: [ + { + id: "606AF84C44754B86" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "33D56A3277ECE5EA" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "441E9160E68C3269" + item: "cookingforblockheads:recipe_book" + type: "item" + }] + x: -5.5d + y: -6.5d + } + { + dependencies: ["317FC74309007901"] + id: "634C562A134AD95E" + rewards: [ + { + id: "20942B05A8D7D09F" + type: "xp" + xp: 10 + } + { + id: "1A85E84F5F46D770" + item: "cookingforblockheads:recipe_book" + type: "item" + } + { + exclude_from_claim_all: true + id: "0D30B430B26B8EE3" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "32CC866847254FEF" + item: "cookingforblockheads:crafting_book" + type: "item" + }] + x: -3.5d + y: -6.5d + } + { + dependencies: ["634C562A134AD95E"] + id: "7886A7F2FFC72A07" + rewards: [ + { + id: "32B6CD0BB588EC0C" + type: "xp" + xp: 20 + } + { + count: 2 + id: "74D8F4CFAF98B191" + item: "minecraft:beef" + type: "item" + } + { + exclude_from_claim_all: true + id: "6C25EA218B163790" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "rsquare" + size: 1.2d + tasks: [{ + id: "18CB1678A6CA4BC6" + item: "cookingforblockheads:cooking_table" + type: "item" + }] + x: -1.0d + y: -6.5d + } + { + dependencies: ["04F8A6ECC915BFE3"] + id: "7CDDE1CDE8831926" + rewards: [ + { + id: "4EFF2205874454AD" + type: "xp" + xp: 20 + } + { + count: 8 + id: "269D7ACB5820B109" + item: "minecraft:honeycomb" + type: "item" + } + { + exclude_from_claim_all: true + id: "58C425A88712FA96" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "rsquare" + size: 1.2d + tasks: [{ + id: "0A6117CF4CCA8EA6" + item: "cookingforblockheads:sink" + type: "item" + }] + x: 4.8d + y: -6.5d + } + { + dependencies: ["7886A7F2FFC72A07"] + id: "1E9718F6A93F923A" + rewards: [ + { + id: "79155DC163B48139" + type: "xp" + xp: 20 + } + { + id: "5E3C61F89F01AD7F" + item: "minecraft:cake" + type: "item" + } + { + exclude_from_claim_all: true + id: "576F7744033A8E96" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "rsquare" + size: 1.2d + tasks: [{ + id: "2AC95DD00068BA1F" + item: "cookingforblockheads:oven" + type: "item" + }] + x: 1.0d + y: -6.5d + } + { + dependencies: ["7886A7F2FFC72A07"] + id: "4CB372786E2CE73C" + rewards: [ + { + id: "199D8D3FC29B5EA3" + type: "xp" + xp: 10 + } + { + count: 16 + id: "5C5422DF2BF3A813" + item: "minecraft:apple" + type: "item" + } + { + exclude_from_claim_all: true + id: "227A57DB63D6EC4B" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "307BFCA83B795011" + item: "cookingforblockheads:counter" + type: "item" + }] + x: -1.0d + y: -4.5d + } + { + dependencies: ["4CB372786E2CE73C"] + id: "51060F9E1CE9A846" + rewards: [ + { + id: "01C3CB2A1B161C83" + type: "xp" + xp: 10 + } + { + count: 2 + id: "3CA1697C1B6F450A" + item: "minecraft:porkchop" + type: "item" + } + { + exclude_from_claim_all: true + id: "30E6C8A666CBF60B" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "49A9482D67F239CC" + item: "cookingforblockheads:corner" + type: "item" + }] + x: -1.0d + y: -3.0d + } + { + dependencies: ["4CB372786E2CE73C"] + id: "7E41FAD258C50933" + rewards: [ + { + id: "0E51A1C6396CE3DD" + type: "xp" + xp: 10 + } + { + count: 16 + id: "440DDEB7B81D4A32" + item: "minecraft:potato" + type: "item" + } + { + exclude_from_claim_all: true + id: "527B10564D89E290" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "18B7AA69ECA45805" + item: "cookingforblockheads:cabinet" + type: "item" + }] + x: -2.5d + y: -4.5d + } + { + dependencies: ["7E41FAD258C50933"] + id: "6293391B6259941B" + rewards: [ + { + id: "3C26F5019045DD49" + type: "xp" + xp: 10 + } + { + count: 2 + id: "1DC4F774F66C6565" + item: "minecraft:chicken" + type: "item" + } + { + exclude_from_claim_all: true + id: "50FC5C7710B42F65" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "6854FA8BA9442B16" + item: "cookingforblockheads:hanging_corner" + type: "item" + }] + x: -2.5d + y: -3.0d + } + { + dependencies: ["1E9718F6A93F923A"] + id: "04F8A6ECC915BFE3" + rewards: [ + { + id: "12FC0D14624F01E3" + type: "xp" + xp: 20 + } + { + count: 4 + id: "74A921E8295EFD92" + item: "minecraft:cod" + type: "item" + } + { + count: 4 + id: "27B4AC7C4770AA5F" + item: "minecraft:salmon" + type: "item" + } + { + count: 2 + id: "08B3C6A45CF29D05" + item: "minecraft:rabbit" + type: "item" + } + { + exclude_from_claim_all: true + id: "193FE8BF29EEAF4E" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "rsquare" + size: 1.2d + tasks: [{ + count: 2L + id: "79B88714F2FA2F31" + item: "cookingforblockheads:fridge" + type: "item" + }] + title: "Fridge" + x: 3.0d + y: -6.5d + } + { + dependencies: ["04F8A6ECC915BFE3"] + id: "56A9F79955C27C37" + rewards: [ + { + id: "0E2B3B250C5C6BD5" + type: "xp" + xp: 10 + } + { + count: 8 + id: "698EB967B901AFF0" + item: "minecraft:packed_ice" + type: "item" + } + { + exclude_from_claim_all: true + id: "4FE6C640E3941F33" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0727A729C8BEDA27" + item: "cookingforblockheads:ice_unit" + type: "item" + }] + x: 2.5d + y: -8.5d + } + { + dependencies: ["04F8A6ECC915BFE3"] + id: "4B447176B8F1A39E" + rewards: [ + { + id: "4EAEBF59802B23B8" + type: "xp" + xp: 10 + } + { + count: 4 + id: "0A84ACD0F0D2416B" + item: "croptopia:mango_ice_cream" + type: "item" + } + { + exclude_from_claim_all: true + id: "760068287665BB03" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5AD2363BA8A83A6F" + item: "cookingforblockheads:preservation_chamber" + type: "item" + }] + x: 3.5d + y: -8.5d + } + { + dependencies: ["1E9718F6A93F923A"] + id: "042D8188C074BF7F" + rewards: [ + { + id: "19E69C8F7040E59D" + type: "xp" + xp: 10 + } + { + count: 8 + id: "7E2DD4FBFB76D19B" + item: "minecraft:redstone" + type: "item" + } + { + exclude_from_claim_all: true + id: "4AB52DC850A31C4E" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "4468AA7E0941F1A0" + item: "cookingforblockheads:heating_unit" + type: "item" + }] + x: 1.0d + y: -8.5d + } + { + dependencies: ["4CB372786E2CE73C"] + id: "2C0367BFD72742DC" + rewards: [ + { + id: "0791672B84DD9ED9" + type: "xp" + xp: 50 + } + { + count: 8 + id: "6BE1CC26F1956ECA" + item: "croptopia:banana" + type: "item" + } + { + count: 8 + id: "18C43E4EFB08A8FF" + item: "croptopia:grape" + type: "item" + } + { + count: 8 + id: "5ED7851ED5664D19" + item: "croptopia:plum" + type: "item" + } + { + count: 8 + id: "739EC8D1BAA4407A" + item: "croptopia:kiwi" + type: "item" + } + { + count: 8 + id: "6FF17A3A0AE43C28" + item: "croptopia:pineapple" + type: "item" + } + { + count: 8 + id: "2441C399B40FB347" + item: "croptopia:orange" + type: "item" + } + { + count: 8 + id: "2D5C0CCBA7C45024" + item: "croptopia:strawberry" + type: "item" + } + { + count: 8 + id: "22610A1D4628B1F5" + item: "croptopia:apricot" + type: "item" + } + { + count: 8 + id: "2A1A01A4A1A1C1A3" + item: "croptopia:pear" + type: "item" + } + { + exclude_from_claim_all: true + id: "7A5C967A4EF354DA" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [ + { + id: "4C6A9FFE1ABE1D42" + item: "cookingforblockheads:fruit_basket" + type: "item" + } + { + id: "395A1036EA845036" + item: "cookingforblockheads:tool_rack" + type: "item" + } + { + id: "0910C911EEC15158" + item: "cookingforblockheads:spice_rack" + type: "item" + } + { + id: "438A7C2E1D72E8EA" + item: "cookingforblockheads:toaster" + type: "item" + } + ] + title: "Kitchen Accessories" + x: 1.0d + y: -3.5d + } + { + dependencies: ["2C0367BFD72742DC"] + id: "45BBF83F2604566F" + rewards: [ + { + id: "7F525F9B12C8B79D" + type: "xp" + xp: 30 + } + { + count: 8 + id: "75D69DD760E298A9" + item: "croptopia:chocolate_milkshake" + type: "item" + } + { + exclude_from_claim_all: true + id: "2262CF8F9C78408C" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + size: 2.0d + tasks: [{ + id: "5652240D4AC9EA49" + item: "cookingforblockheads:cow_jar" + type: "item" + }] + title: "&9Infinite Milk" + x: 4.0d + y: -3.5d + } + { + dependencies: ["317FC74309007901"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "22A00DE29E3A76A4" + rewards: [ + { + id: "2833CECFA4E2EF63" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "38503615DDF29DF9" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + size: 1.2d + tasks: [{ + id: "302B1895AE94A1A9" + item: "refinedcooking:kitchen_station" + type: "item" + }] + x: -5.5d + y: -4.5d + } + { + dependencies: ["22A00DE29E3A76A4"] + hide_until_deps_complete: true + id: "355F712355DAAD3A" + rewards: [ + { + id: "02F982F8FF50C4B4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1D050B2485CA67EA" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "698A2E175F0B3E58" + item: "refinedcooking:kitchen_network_card" + type: "item" + }] + x: -6.0d + y: -3.5d + } + { + dependencies: ["22A00DE29E3A76A4"] + hide_until_deps_complete: true + id: "63E44CE36F354B48" + rewards: [ + { + id: "1B4F50E4A188DA49" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5C54FA156328347B" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "73A75729C0955B45" + item: "refinedcooking:kitchen_access_point" + type: "item" + }] + x: -5.0d + y: -3.5d + } + { + dependencies: [ + "7886A7F2FFC72A07" + "7CDDE1CDE8831926" + "1E9718F6A93F923A" + "04F8A6ECC915BFE3" + ] + description: ["The &2Kitchen Floor&r connects kitchen blocks over &ndistances&r."] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "61D583A25E14DBA6" + rewards: [ + { + id: "5C78D9D6DEFC70EC" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3A33AB299ECF2590" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7B1F62CD059C2B23" + item: { + Count: 1 + id: "itemfilters:id_regex" + tag: { + value: "^cookingforblockheads:.*kitchen_floor" + } + } + title: "Kitchen Floor" + type: "item" + }] + x: 7.0d + y: -6.5d + } + ] + title: "&3&oCooking for Blockheads" +} diff --git a/minecraft/config/ftbquests/quests/chapters/create.snbt b/minecraft/config/ftbquests/quests/chapters/create.snbt new file mode 100644 index 0000000..c18a9e4 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/create.snbt @@ -0,0 +1,3317 @@ +{ + autofocus_id: "37188F03818AF4E0" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "create" + group: "69B9F7247002FE35" + icon: "create:mechanical_arm" + id: "40E292F21849AC70" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 2.499999999999993d + y: -8.625d + } + { + click: "https://create.fandom.com/wiki/Special:AllPages?from=Flour" + height: 1.0d + hover: ["Create online Wiki"] + image: "create:item/clipboard_and_quill" + rotation: 0.0d + width: 1.0d + x: 7.0d + y: -0.5d + } + { + click: "https://www.youtube.com/playlist?list=PL94rKLSM94NK7cGAvXH-U8PcWXd5lBTlE" + height: 1.0d + hover: ["YouTube Tutorial"] + image: "create:item/experience_nugget" + rotation: 0.0d + width: 1.0d + x: -7.0d + y: -9.0d + } + ] + order_index: 1 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + description: [ + "Welcome to &bCreate&r! At its core, &bCreate&r follows the same primary purpose as vanilla &cRedstone&r: Give the player items to enable &o&bfanciful creations&r. " + "" + "What sort of creations, you ask? Well, just about anything. Make rideable trains, tunnel bores, massive functional windmills, or even a working &9Rubik’s Cube&r!" + "" + "Your &dimagination&r is the &nlimit&r. " + "" + "If you have doubts about any blocks or items, hold &o&bW&r to ponder and see an amazing &o&b3D&r in-game &nwiki&r!" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "create:textures/gui/logo.png" + } + } + id: "37188F03818AF4E0" + min_width: 300 + rewards: [ + { + id: "7394A04C46D0DC31" + type: "xp" + xp: 30 + } + { + id: "46991F916A178442" + item: "create:wrench" + type: "item" + } + { + exclude_from_claim_all: true + id: "5B21058711742808" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + count: 16L + id: "3E89069CA068A10C" + item: "minecraft:andesite" + type: "item" + }] + title: "Welcome to &bCreate" + x: 2.5d + y: -7.5d + } + { + dependencies: ["37188F03818AF4E0"] + description: [ + "Using the &bSchematic&r module you can scan a section of your world and save it as a &n.&onbt&r file." + "" + "This way you can &o&breproduce&r it or &o&bshare&r the structure with others. To do this you will need to craft yourself a &2Schematic and Quill&r." + "" + "&bSchematic&r files are found in your instance folder under &n&oschematics/&r" + "" + "To see exactly how it works, I'll suggest to visit the &3GitHub&r page of the &o&bCreate&r mod by &aclicking&r the &o&blink&r below:" + "{\"text\":\"Create Wiki: Saving-a-Schematic\",\"color\":\"blue\",\"underlined\":\"true\",\"clickEvent\":{\"action\":\"open_url\",\"value\":\"https://github.com/Creators-of-Create/Create/wiki/Saving-a-Schematic\"}}" + ] + id: "7E715C95CDC287BA" + min_width: 310 + rewards: [ + { + id: "225698B558E75AFC" + type: "xp" + xp: 50 + } + { + id: "2EDE493E8707B446" + item: "create:empty_schematic" + type: "item" + } + { + exclude_from_claim_all: true + id: "6F0771E5009D7903" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "Save a Structure in your world" + tasks: [{ + id: "705CC6FD53C0FC84" + item: "create:schematic_and_quill" + type: "item" + }] + title: "&bSaving a Schematic" + x: 4.5d + y: -10.0d + } + { + dependencies: ["7E715C95CDC287BA"] + description: [ + "Using the &bSchematic&r module you can load Structures of the &n.&onbt&r format and bring them into the world. Loaded and positioned &bSchematics&r can then be placed &o&bdirectly&r or &o&bvia&r the &2Schematicannon&r." + "" + "To do this craft yourself a &9Schematic Table&r and place it in your workshop. Open it up and place the &bEmpty Schematic&r (&o&bSchematic and Quill works as well&r) in the input slot on the left. The checkered area shows the &bSchematic&r file to be loaded onto the item. You can change it to any of the files available in the &b&o/schematics&r folder." + "" + "- &eScroll&r on the text to select the &bSchematic&r you would like to load." + "- &cPress&r the check-mark &aButton&r to confirm your choice." + "" + "The &9Schematic Table&r will now &o&bstart&r to write the &bSchematic&r onto the item." + "" + "To see more precisely how it works, I'll suggest to visit the &3GitHub&r page of the &o&bCreate&r mod by &aclicking&r the &o&blink&r below:" + "{\"text\":\"Create Wiki: Loading-a-Schematic\",\"color\":\"blue\",\"underlined\":\"true\",\"clickEvent\":{\"action\":\"open_url\",\"value\":\"https://github.com/Creators-of-Create/Create/wiki/Loading-a-Schematic\"}}" + ] + id: "657CF67E4C5212EF" + min_width: 310 + rewards: [ + { + id: "15F1A16222A0FEBC" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3152D76B676477DA" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "Load a Structure and bring into your world" + tasks: [{ + id: "78B27EEBAF22C110" + item: "create:schematic_table" + type: "item" + }] + title: "&bLoading a Schematic" + x: 6.0d + y: -10.0d + } + { + dependencies: ["657CF67E4C5212EF"] + description: [ + "The &2Schematicannon&r is required for building a &oloaded&r and &opositioned&r &bSchematic&r. It will use materials from adjacent &einventories&r unless a &5Creative Crate&r has been placed next to it." + "" + "Having prepared a &bSchematic&r for placement, you are now ready to consult the &2Schematicannon&r for the construction. For this &cWorkflow&r you will need:" + "- &o&b1x&r a deployed &bSchematic&r" + "- &o&b1x&r &2Schematicannon&r" + "- &o&b1-4&rx &6Chests&r or other &eInventories&r" + "- &o&b1x&r &3Gunpowder&r (for every &o&b400&r blocks in the &bSchematic&r)" + "- &o&b1x&r Book (&o&7Optional&r&r)" + "" + "Place the &2Schematicannon&r near but outside of the &o&bboundaries&r of your &bSchematic&r. It is &dimportant&r that the target area is &nloaded&r and not &ntoo far away&r from the cannon." + "" + "To see all details, I'll suggest to visit the &3GitHub&r page of the &o&bCreate&r mod by &aclicking&r the &o&blink&r below:" + "{\"text\":\"Create Wiki: Printing-a-Schematic\",\"color\":\"blue\",\"underlined\":\"true\",\"clickEvent\":{\"action\":\"open_url\",\"value\":\"https://github.com/Creators-of-Create/Create/wiki/Printing-a-Schematic\"}}" + ] + id: "41D900070A21855E" + min_width: 310 + rewards: [ + { + id: "62A6199FF4D27B6D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "7CDA79416640ACB0" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "Place down a Structure" + tasks: [{ + id: "7725782DA7D94824" + item: "create:schematicannon" + type: "item" + }] + title: "&bPrinting a Schematic" + x: 7.5d + y: -10.0d + } + { + dependencies: ["0DFD086DE8B22565"] + description: [ + "In order to begin generating &cPower&r, a &2Windmill Bearing&r must have at least &b&o8&r &3Sail&r, &7Sail Frame&r, or &dWool&r blocks connected." + "" + "Any other block can also be &o&battached&r with &eSuper Glue&r, though it will not yield any &o&bbenefit&r. This will create a &aWindmill&r." + "" + "By default, the &2Windmill Bearing&r spins &o&bclockwise&r, though this can be changed to &o&bcounter-clockwise&r with the &cWrench&r." + "" + "For every &o&b8&r sail-type blocks connected to the &2Windmill Bearing&r, it gains &o&b1&r &dRPM&r and &o&b512&r&esu&r, which means &o&b8-15&r sails gives &o&b512&r&esu&r at &o&b1&r &dRPM&r, &o&b16-23&r gives &o&b1,024&r&esu&r at &o&b2&r &dRPM&r, etc. A &aWindmill&r will produce a &nmaximum&r of &o&b8,192&r&esu&r (&o&b128&r sail-type blocks). " + "" + "So we gonna build a &2Windmill&r with &o&b32-39&r sails, which will give us &o&b2,048&r&esu&r at &o&b4&r &dRPM&r." + "" + "&aRight-click&r the &2Windmill Bearing&r with an &o&bempty hand&r to &o&bstart&r the windmill. If you want to &cstop&r it to change the attached blocks, simply &aRight-click&r on the block with an &o&bempty hand again&r." + "" + "Scrolling the mousewheel while holding a &cWrench&r can be used to change the &o&bspin direction&r of the windmill." + ] + icon: "create:propeller" + id: "18D03F942E03807F" + min_width: 400 + rewards: [ + { + id: "74A1B5F7FF81462F" + type: "xp" + xp: 100 + } + { + id: "1DD692087A57413C" + item: { + Count: 1 + id: "create:super_glue" + tag: { + Damage: 0 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "46E97D95B54EE67A" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "It is composed of a Windmill Bearing and Wool/Sails/Sail Frames" + tasks: [ + { + id: "072518138448D131" + item: "create:windmill_bearing" + type: "item" + } + { + id: "4258AF4D50427338" + item: "create:radial_chassis" + type: "item" + } + { + count: 32L + id: "1E68823A5FE9CA8E" + item: "create:white_sail" + type: "item" + } + ] + title: "&bThe Windmill" + x: 4.0d + y: -3.5d + } + { + dependencies: ["37188F03818AF4E0"] + description: [ + "&aEngineer's Goggles&r are a wearable item that allow the user to see more details about placed machines." + "" + "The &aEngineer's Goggles&r will show the stress impact of the viewed machine while it is running." + "" + "They will also give numbers and highlight the current rotation when looking at a &dStressometer&r or &6Speedometer&r." + "" + "&bAdditionally&r, they show how much &o&bfluid&r is in a tank along with the &o&btotal storage capacity&r of the tank." + ] + id: "45AF5EFC3C051D1A" + min_width: 270 + rewards: [ + { + id: "0BA944CCFB04D9E9" + type: "xp" + xp: 10 + } + { + id: "4931D7BC98458F89" + item: "create:wheat_flour" + type: "item" + } + { + exclude_from_claim_all: true + id: "4F2F53A8E76EBDFD" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6CE8A3FB7D477EDF" + item: "create:goggles" + type: "item" + }] + x: 1.0d + y: -9.0d + } + { + dependencies: ["0DFD086DE8B22565"] + description: [ + "The &9Water Wheel&r is a source of &o&brotational power&r. It generates &o&bRotational Force&r when water flows over it." + "" + "Due to the fact that the materials required to craft it are easily accessible in the &o&bearly-game&r, the &9Water Wheel&r serves as the &o&bearliest generator&r that can be made." + "" + "Total &o&bstress capacity&r can be increased by &o&badding&r more wheels in sequence." + "" + "When water flows over a &9Water Wheel&r, it will begin to rotate. This &o&brotational power&r can be conveyed to other &o&bComponents&r from the &9Water Wheels&r' &eShaft&r." + "" + "As long as the water flows around the wheel in mostly one &o&bdirection&r, the &9Water Wheel&r will generate &o&bRotational Force&r." + "" + "The &o&bmore sides&r of the wheel the water covers, the &o&bfaster&r the wheel will rotate and the more &o&dstress capacity&r it will provide. Only &o&bflowing water&r or source blocks with bubble columns counts toward the &o&bpower generation&r." + "" + "To &o&bmaximize&r the &coutput&r from a &9Water Wheel&r, have water flowing in the right direction around &o&bas much of the wheel as possible&r." + ] + id: "178499225C1FEFD3" + min_width: 400 + rewards: [ + { + id: "2BE1C27262BDC439" + type: "xp" + xp: 10 + } + { + count: 2 + id: "61D8546C902E0873" + item: "alltheores:copper_plate" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "095C2EC12C7E7976" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "22E0E9626E50CB00" + item: "create:water_wheel" + type: "item" + }] + title: "&bThe Water Wheel" + x: 1.0d + y: -3.5d + } + { + dependencies: ["6CDCF5CAF844400E"] + description: [ + "The &6Encased Fan&r is a mechanical component that can create &o&bair streams&r. &6Encased Fans&r are used for &o&bmoving entities&r, vertical transport of items, &9Bulk Washing&r, &eBulk Blasting&r, &7Bulk Smoking&r and &bBulk Haunting&r. The &6Encased Fan&r connects to other rotational components from the &nback&r." + "" + "When powered by &o&brotational force&r, an &6Encased Fan&r creates an &o&bair stream&r that extends several blocks in front of it. This air stream &o&bpushes entities away&r from the fan or &o&bpulls entities towards&r it depending on the direction of the rotation that the fan receives. Powering an &6Encased Fan&r with faster rotational force will cause its air stream to be &nstronger&r and &nfaster&r." + "" + "Items will always be pushed, but &o&bmobs&r or &o&bplayers&r won't be pushed until the &6Fan&r is running at least &o&b4&r &dRPM&r." + "" + "&n&lBulk Item Processing&r:" + "When the air stream of an &6Encased Fan&r passes through certain blocks, the air stream downstream will apply the respective processing to items." + "" + "&9Washing&r:" + " - Water" + "&7Smoking&r:" + " - Fire" + " - Campfire" + " - Empty Blaze Burner lit with &o&bFlint and Steel&r" + " - Blaze Burner (&o&bsmouldering&r)" + "&6Blasting&r:" + " - Lava" + " - Blaze Burner(&o&bFueled&r)" + "&bHaunting&r:" + " - Soul Fire" + " - Soul Campfire" + " - Empty Blaze Burner lit with &o&bFlint and Steel&r and right clicked with &o&bSoul Sand&r or &b&oSoul Soil&r." + ] + hide_dependency_lines: true + id: "3113E091CAF37D3B" + min_width: 500 + rewards: [ + { + id: "4F01024A6B7AD4E8" + type: "xp" + xp: 10 + } + { + id: "1DDF2B9602D65F08" + item: "create:analog_lever" + type: "item" + } + { + exclude_from_claim_all: true + id: "677A4F019B28E5EC" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "715F40E62197C899" + item: "create:encased_fan" + type: "item" + }] + title: "Encased Fan" + x: -4.5d + y: -9.0d + } + { + dependencies: ["27B9C71CDEC8916F"] + description: [ + "The &eShaft&r is a basic mechanical component in &bCreate&r. A &eShaft&r can be used to &o&bconnect&r two mechanical components such that the rotation of one rotates the other, and shafts serve as the only blocks upon which &6Mechanical Belts&r can be placed." + "" + "When two mechanical components are &o&bconnected&r by a &aShaft&r, any &o&brotational force&r provided to either component will also be provided to the other component &o&bat the same speed&r. As such, if both components provide &o&bstress&r, this can cause the machine to become &noverstressed&r." + "" + "A &6Mechanical Belt&r must be placed between two &eShafts&r. The shafts must be &o&bhorizontal&r, parallel to each other, and perpendicular to the belt itself, and they must be aligned horizontally, vertically, or &o&bdiagonally&r. Please note that you &ncannot&r have any other diagonal angles other than &o&b45°&r. Additionally, no &o&bobstruction&r can exist between the two &o&bendpoints&r with the exception of other shafts." + "" + "A &aBrass Casing&r can be placed over any segment of a &6Mechanical Belt&r, and this includes segments that contain &eShafts&r." + ] + id: "0DFD086DE8B22565" + min_width: 300 + rewards: [ + { + id: "343D2FB65E4DC335" + type: "xp" + xp: 10 + } + { + count: 16 + id: "62C5F2C78EEC12F0" + item: "create:shaft" + type: "item" + } + { + exclude_from_claim_all: true + id: "21E853BE5816B05C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + count: 16L + id: "699F351F450669CB" + item: "create:shaft" + type: "item" + }] + title: "Shaft" + x: 2.5d + y: -3.0d + } + { + dependencies: ["0DFD086DE8B22565"] + description: [ + "A &6Mechanical Belt&r is a mechanical component that &o&bconveys rotation&r and &o&bmoves&r items and entities." + "" + "Placing a &6Belt&r requires at least two &3Shafts&r. Place the &6Belt&r by &aRight-clicking&r on the &o&bfirst&r shaft and then &aRight-clicking&r the &o&bsecond&r. Regardless of the length, this only consumes one &6Mechanical Belt&r. Both shafts must face &o&bthe same direction&r." + "" + "A &6Mechanical Belt&r can be placed over any number of &3Shafts&r arranged &o&bhorizontally&r, &o&bvertically&r, or &o&bdiagonally&r (&o&b45°&r towards the y axis) in a &nsingle line&r, provided that no &o&bobstructions&r are present and that the total length is &o&bno longer&r than &o&b20&r blocks. &7Andesite Casing&r and &eBrass Casing&r can be placed over any segment of a &6Belt&r." + "" + "Once a &6Belt&r is placed, it can be &o&bextended&r by &aRight-clicking&r the end with a &6Mechanical Belt&r in hand while the belt is under &o&b20&r blocks, though this &o&bdoes not consume&r the belt. &6Belts&r can also be &o&bshortened&r by &aRight-clicking&r them with a &cWrench&r. Both actions &o&brelocate&r the &3Shaft&r." + "" + "The &6Mechanical Belt&r can transport items from one location to another. Items can either be &o&bthrown&r onto the belt, and machines such as &7Funnels&r, &8Chutes&r or &dMechanical Arms&r can &o&bplace&r items onto the belt or &o&bremove&r items from the belt. " + "" + "&6Mechanical Belts&r can be &o&bdyed&r be &aRight-clicking&r on them with a &5Dye&r. This will add &o&bcolored stripes&r along the edges of the belt. To &o&bremove&r the dye, &aRight-click&r on the belt with a &9Water Bucket&r or &9Water Bottle&r." + ] + id: "6A85EFF65D461020" + min_width: 500 + rewards: [ + { + id: "24A7A9C58173B024" + type: "xp" + xp: 10 + } + { + count: 2 + id: "479034FF9E8F134B" + item: "create:belt_connector" + type: "item" + } + { + exclude_from_claim_all: true + id: "7AF0A48CFB4276F6" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "22B31A2343E78E13" + item: "create:belt_connector" + type: "item" + }] + title: "Mechanical Belt" + x: 2.5d + y: -1.5d + } + { + dependencies: ["6CDCF5CAF844400E"] + description: [ + "The &9Encased Chain Drive&r is a block that can transfer rotation much like the &eMechanical Belt&r." + "" + "The &9Encased Chain Drive&r can connect to other drives either &o&bvertically&r or &o&bhorizontally&r. If a connected &9Chain Drive&r is facing a different way, rotation will be relayed in &o&bthat direction&r." + "" + "&9Encased Chain Drives&r can also be connected to &cAdjustable Chain Gearshifts&r, which can change the &o&bspeed&r based on the &o&bredstone power input&r." + ] + hide_dependency_lines: true + id: "2A397AED9CBFB3A1" + min_width: 300 + rewards: [ + { + id: "357DC3064B7BF285" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "10F701AADD5E51C7" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "30811F99DFAC0870" + item: "create:encased_chain_drive" + type: "item" + }] + title: "Encased Chain Drive" + x: -2.5d + y: -9.0d + } + { + dependencies: ["6A85EFF65D461020"] + description: [ + "A decorative &3Tunnel&r for &eMechanical Belts&r." + "" + "A &4Wrench&r can be used to give the tunnel &o&bwindows&r." + "" + "The &3Tunnel&r does not stop items on the belt from being processed by an &dEncased Fan&r, but does stop the airflow from going beyond the belt." + "" + "&3Andesite Tunnels&r can also be used to &o&bseparate&r single items from passing stacks to side &coutputs&r." + ] + id: "0DFB605B4FD970F0" + min_width: 250 + rewards: [ + { + id: "433E856C1B7AF421" + type: "xp" + xp: 50 + } + { + id: "379AD68253CD46EF" + item: "create:andesite_tunnel" + type: "item" + } + { + exclude_from_claim_all: true + id: "635AD35849433DA1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "081EF416032F463B" + item: "create:andesite_tunnel" + type: "item" + }] + title: "Andesite Tunnels" + x: 4.0d + y: -1.0d + } + { + dependencies: ["0DFB605B4FD970F0"] + description: [ + "The &6Brass Tunnel&r is a machine that can only be placed on &eMechanical Belts&r. It can &o&bsort&r items that pass through." + "" + "Sides of the &6Brass Tunnel&r can be &0Filtered&r to only allow &o&bcertain&r items to pass. If multiple &coutputs&r are available, items will be treated according to the &o&btunnel's setting&r, being &o&bsplit&r by default." + "" + "The &aValue Settings Screen&r can be accessed from the &o&btop&r of the &6Tunnel&r. It is only viewable if the &6Tunnel&r has other &coutputs&r or is connected to other &6Tunnels&r." + "" + "&l&aValue Settings&r:" + "&o&bSplit&r - Items will be split amongst available outputs." + "&o&bForced Split&r - Only split items when all outputs are available." + "&o&bRound Robin&r - Place inputs on available outputs in a round robin fashion." + "&o&bForced Round Robin&r - Wait for unavailable outputs in a round robin sequence to become available." + "&o&bPrefer Nearest&r - Only move the item to next nearest tunnel when the nearest output is unavailable." + "&o&bRandomize&r - Output is randomized." + "&o&bSynchronize Inputs&r - Output all at once, stalling when items are missing. Synchronized tunnels may not draw from adjacent tunnels, so it may be necessary to have splitting tunnels placed before them." + ] + id: "34D4E3E1E995A6B5" + min_width: 500 + rewards: [ + { + id: "5D37A038DD9A6492" + type: "xp" + xp: 100 + } + { + id: "0BD47FCCEC61CE41" + item: "create:brass_tunnel" + type: "item" + } + { + exclude_from_claim_all: true + id: "3B7AEA3CDDE4A3C7" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "6BD4D6A5A4F03E1C" + item: "create:brass_tunnel" + type: "item" + }] + title: "Brass Tunnel" + x: 4.0d + y: 0.0d + } + { + dependencies: ["6A85EFF65D461020"] + description: [ + "&aChutes&r transport items &o&bvertically&r, similarly to &eMechanical Belts&r." + "" + "&aChutes&r can &9insert&r or &cextract&r from inventories &o&babove&r or &o&bbelow&r them, also they can be connected to other chutes &o&bupwards&r and &o&bdiagonally&r." + ] + id: "07DEA314CA78639B" + min_width: 300 + rewards: [ + { + id: "2A0CB50980F82BF8" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "04F2BBCBD68A0AD6" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 12L + id: "652FEA2E6FDA88DB" + item: "create:chute" + type: "item" + }] + title: "Chute" + x: 2.5d + y: -0.5d + } + { + dependencies: ["6CDCF5CAF844400E"] + description: [ + "The &2Depot&r is used as an interaction point for machines such as the &6Mechanical Arm&r." + "" + "Items can be &eright clicked&r or inserted onto the depot. Machines such as &9Mechanical Presses&r will interact with the items the same way they would on a &aMechanical Belt&r." + "" + "Items will stay on a &2Depot&r until a they are &o&bextracted&r by a &o&bplayer&r or another &o&bmachine&r." + "" + "&6Mechanical Arms&r are best used with &2Depots&r, as they are not usually fast enough to grab items directly off &aMechanical Belts&r at low speeds." + ] + hide_dependency_lines: true + id: "2BD81BF0B04A6FA7" + min_width: 300 + rewards: [ + { + id: "01CFFC04368E97DA" + type: "xp" + xp: 10 + } + { + id: "1FB087F0AF71D61E" + item: "create:andesite_casing" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "33084E3A5282BDAA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "568EE6021F047D61" + item: "create:depot" + type: "item" + }] + title: "Depot" + x: -1.5d + y: -9.0d + } + { + dependencies: ["5BACA82D1436C781"] + description: [ + "The &6Mechanical Arm&r is used to transfer items." + "" + "The &6Mechanical Arm&r can &o&btake&r or &o&bdeposit&r items from various blocks within a &o&b5&r block radius of where it is placed. The order it does this in is determined by its behavior as well as the order the blocks were selected in during placement. A placed &6Mechanical Arm's&r selected blocks can be viewed by hovering over it with a &cWrench&r." + "" + "The &6Mechanical Arm's&r behavior can be adjusted in the &aValue Settings Screen&r accessed from the side of the block." + "" + "- &o&dRound Robin&r: The &6Mechanical Arm&r will take from and &o&bdeposit&r to &o&bavailable inventories&r in the order they were selected in." + "" + "- &o&2Forced Round Robin&r: The same function as &o&dRound Robin&r, but the &6Mechanical Arm&r &o&bwill not move items&r until the next inventory in order of selection is &o&bavailable&r." + "" + "- &o&9Prefer First&r: The &6Mechanical Arm&r will &o&balways&r take from and &o&bdeposit&r to the first &o&bavailable inventory&r in order of selection." + "" + "The &6Mechanical Arm&r can be &o&bdisabled&r with &cRedstone&r. Before stopping, it will &o&bdeposit&r any item it is &o&bholding&r." + "" + "The arm itself cannot be &9Filtered&r, but will respect the &9Filters&r on selected blocks such as &eBrass Funnels&r while sorting. The arm &o&bwill not pick up items&r it &o&bcannot deposit&r elsewhere." + ] + id: "5C01C03BBE00ACCD" + min_width: 400 + rewards: [ + { + id: "0D087CD63A3E4092" + type: "xp" + xp: 100 + } + { + id: "102D22B910D34B81" + item: "create:precision_mechanism" + random_bonus: 1 + type: "item" + } + { + count: 6 + id: "25C900EF73AF12F5" + item: "create:andesite_alloy" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "44B307C671FAFACD" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "009A60ED8972E22E" + item: "create:mechanical_arm" + type: "item" + }] + x: -5.0d + y: -2.0d + } + { + dependencies: ["0DFD086DE8B22565"] + description: [ + "The &2Cogwheels&r are a basic mechanical component in Create that relays rotation. The &eLarge Cogwheel&r is a larger variant of the &aCogwheel&r that can relay rotation around corners and power &dRotation Speed Controllers&r." + "" + "&2Cogwheels&r have &o&b3&r main methods of interlocking:" + "" + "&o&b1&r) Two &2Cogwheels&r interlock when placed next to each other (&o&bnot diagonally&r) and facing the same direction. When &o&brotational force&r is provided to one of the cogwheels, the force will be provided to the other &aCogwheel&r at the same &o&bspeed&r but in the &o&bopposite direction&r." + "&o&b2&r) Two &eLarge Cogwheels&r interlock when placed &o&bperpendicular&r to each other, effectively changing its &o&baxis&r and &o&bdirection&r, but not its &o&bspeed&r." + "&o&b3&r) A &aCogwheel&r and a &eLarge Cogwheel&r interlock when placed &o&bdiagonally&r to each other and facing the same direction. The &eLarge Cogwheel&r will rotate at &nhalf&r the &o&bspeed&r of the &aCogwheel&r." + "" + "A &aCogwheel&r can also be used like a &3Shaft&r, &o&bconveying rotation&r from the &o&bends&r of its &o&baxis&r. Mechanical components can be &o&bconnected&r to each end, and several &2Cogwheels&r connected &o&bend-to-end&r function the same as multiple &3Shafts&r would." + "" + "Using pairs of &aCogwheels&r and &eLarge Cogwheels&r, rotational speed can be easily &o&bdoubled&r or &o&bhalved&r using the &o&bmechanic mentioned&r above. It is possible to connect many pairs of &eLarge Cogwheels&r and &aCogwheels&r to apply this mechanic repeatedly, up to &o&b256&r &dRPM&r." + "" + "A &eLarge Cogwheel&r can also be connected to a &6Rotation Speed Controller&r, to adjust &o&bspeed more precisely&r." + ] + id: "5127B662C23FC812" + min_width: 470 + rewards: [ + { + id: "5070826EE8D2E596" + type: "xp" + xp: 30 + } + { + count: 2 + id: "6DB408DBEC15787B" + item: "create:cogwheel" + type: "item" + } + { + count: 2 + id: "517734193BD5B6E7" + item: "create:large_cogwheel" + type: "item" + } + { + exclude_from_claim_all: true + id: "65F13FC1D7B7EE79" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + count: 4L + id: "4121F182B16F338F" + item: "create:large_cogwheel" + type: "item" + } + { + count: 8L + id: "2F4BCA72D23A896E" + item: "create:cogwheel" + type: "item" + } + ] + title: "&bCogwheels" + x: 4.0d + y: -2.5d + } + { + dependencies: ["6CDCF5CAF844400E"] + description: ["The &aGearshift&r &o&breverses&r outgoing rotational force when a &cRedstone&r signal is applied."] + hide_dependency_lines: true + id: "764790A4ABD9DB56" + rewards: [ + { + id: "4D03B50162C22459" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "138B1D3570C5185C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1A527041909604AD" + item: "create:gearshift" + type: "item" + }] + title: "Gearshift" + x: -3.5d + y: -9.0d + } + { + dependencies: ["6CDCF5CAF844400E"] + description: ["The &eClutch&r &o&bstops&r outgoing rotation when a &cRedstone&r signal is applied."] + hide_dependency_lines: true + id: "7CB7C7E0A0BA9A33" + rewards: [ + { + id: "47A9DF15369D988D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3C68B123A8F72AD9" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "32C2339CBE24745F" + item: "create:clutch" + type: "item" + }] + title: "Clutch" + x: -3.5d + y: -10.0d + } + { + dependencies: ["6CDCF5CAF844400E"] + description: [ + "The &2Gearbox&r is a block used to transfer rotational power." + "" + "The &2Gearbox&r can relay rotational power in four &o&bhorizontal&r directions." + "" + "When used in a &o&bstraight line&r, the &2Gearbox&r will &nreverse&r rotation." + ] + hide_dependency_lines: true + id: "5482DC02A149B6F8" + min_width: 300 + rewards: [ + { + id: "711F13A3E4E8711A" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "4997222B2566BE66" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7E328A626F39C1DD" + item: "create:gearbox" + type: "item" + }] + title: "Gearbox" + x: -4.5d + y: -10.0d + } + { + dependencies: ["0DFD086DE8B22565"] + description: [ + "&2Brackets&r are decorative items used on &3Shafts&r, &aCogwheels&r, and &9Fluid Pipes&r." + "" + "&2Brackets&r can be used as one way &o&bto keep&r adjacent pipes &o&bseparate&r from each other." + ] + id: "4DB38D4B758A861D" + min_width: 300 + rewards: [ + { + id: "24C0AC3E8A631291" + type: "xp" + xp: 10 + } + { + count: 6 + id: "609B01EA614BBA62" + item: "create:andesite_alloy" + type: "item" + } + { + exclude_from_claim_all: true + id: "5FE0D31D2959A3BB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + count: 4L + id: "63D6182AC89A37AF" + item: "create:wooden_bracket" + type: "item" + } + { + count: 4L + id: "3D0DD34C814A66E3" + item: "create:metal_bracket" + type: "item" + } + ] + title: "&bBratchets" + x: 1.0d + y: -2.5d + } + { + dependencies: ["37188F03818AF4E0"] + description: [ + "&9Casings&r are blocks used throughout many &o&bcrafting&r recipes in &bCreate&r, as well as for &o&bdecoration&r and &o&baesthetic&r purposes." + "" + "There are &o&b4&r types of &9Casings&r: &aAndesite Casings&r are mainly used in &o&bbasic contraptions&r, &6Brass Casings&r are used in more &o&badvanced machines&r, &cCopper Casings&r are &o&bstrictly for fluids&r, and &dTrain Casings&r for &o&blocomotive transportation&r." + "" + "&9Casings&r can only be crafted through &o&bphysically applying&r a valid &o&balloy&r or ingot to any &2Stripped&r variant of &2Log&r or &2Wood&r. The &2Logs&r will convert themselves into the &9Casing&r, where the player can either mine it with their preferred tool or use a &eWrench&r to place the casing in their inventory." + "" + "To make &aAndesite Casing&r you need any &2Stripped Log&r or &2Stripped Wood&r + &3Andesite Alloy&r." + ] + id: "6CDCF5CAF844400E" + min_width: 300 + rewards: [ + { + id: "560E9AA6A4D653AE" + type: "xp" + xp: 10 + } + { + id: "1171E93EBFA73AAF" + item: "create:black_seat" + type: "item" + } + { + exclude_from_claim_all: true + id: "788D1E535B94179F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "5594F0DF11C7459A" + item: "create:andesite_casing" + type: "item" + }] + x: -3.0d + y: -7.5d + } + { + dependencies: ["5127B662C23FC812"] + description: [ + "&2Mechanical Pumps&r have a &o&bmaximum&r range of &o&b16&r blocks on either side. &2Mechanical Pumps&r will &o&bmove&r fluid in only one &bdirection&r at a time." + "" + "The &4Brown&r arrow symbols on the pump indicate the &o&bdirection&r of flow. The flow &o&bdirection&r can be changed by using a &cWrench&r. When a wrench is used, the entire valve will appear to have rotated &o&b180°&r. The brown directional arrows will appear on the other side of the pump's gear." + "" + "&9Fluid Pipes&r are blocks used to transport and deal with fluids. &9Fluid Pipes&r can only move &o&bone&r liquid at a time; if different liquids intersect, the pipe will &o&bclog&r." + "" + "Clogging the pipe will give an &dAdvancement&r. Each time a &o&bfluid network&r splits, the fluid transfer rate is split between &coutputs&r. &9Fluid Pipes&r require &2Mechanical Pumps&r to move liquid." + "" + "A &2Mechanical Pump&r can only push fluid &o&b15&r blocks, so if you have a &o&blong pipeline&r, you'll need to &o&bspace pumps&r every &o&b15&r blocks to &o&bpush&r the fluid all the &o&bway through&r." + ] + id: "7116C160D7D6EC46" + min_width: 370 + rewards: [ + { + id: "6A6078B9F4AB13DF" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3B21D623278C3B0C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "2289895A07439135" + item: "create:mechanical_pump" + type: "item" + } + { + id: "06AA6D4D526243BC" + item: "create:fluid_pipe" + type: "item" + } + ] + title: "&bMechanical Pump" + x: 5.5d + y: -2.5d + } + { + dependencies: ["7116C160D7D6EC46"] + description: [ + "&9Fluid Valves&r can be used to &cclose&r or &9open&r the flow in a &o&bpipe&r." + "" + "&9Fluid Valves&r can be switched between &o&bopen&r and &o&bclosed&r by providing &o&bRotational Force&r to the side. This is often done with a &dValve Handle&r or &7Gearshift&r. A set of &o&bdirectional arrows&r on the side of the valve will also &o&brotate&r to indicate whether the valve is &9open&r or &cclosed&r." + "" + "The &dValve Handle&r functions much like the &2Hand Crank&r, though the amount and direction it rotates with one use can be adjusted in its &aValue Settings Screen&r. This may be useful for &bContraptions&r that require a certain orientation to function. The &o&bdirection of rotation&r can also be &o&binverted&r from the &dValve's&r settings by &aSneak&r using the &dValve Handle&r instead of &o&busing it&r." + "" + "The valve handle can be dyed all &o&b16&r vanilla colors by &aRight-clicking&r it with the respective &5Dye&r." + ] + id: "769B1316F09FAA26" + min_width: 300 + rewards: [ + { + id: "063C4F84F7C02E6C" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "27DE12E5F2B06EE4" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "3600D2E58BC8C55E" + item: "create:fluid_valve" + type: "item" + } + { + id: "53700B883060C9CA" + item: "create:copper_valve_handle" + type: "item" + } + ] + title: "Fluid Valves" + x: 5.5d + y: -3.5d + } + { + dependencies: [ + "769B1316F09FAA26" + "2FF0BADC06E9B1C2" + ] + description: [ + "&9Smart Fluid Pipes&r can be used to allow only a &o&bcertain&r liquid to pass through them. This can be set by placing a &o&bbucket&r or &o&bbottle&r of the liquid in the &0Filter&r slot on the pipe." + "" + "A &aList Filter&r with &o&bRespect Data&r on may be required for the &9Smart Pipe&r to distinguish between certain liquids, such as &dPotions&r." + "" + "&aList Filters&r are used to adjust the treatment of &o&bmultiple&r items at once." + ] + id: "5F9F7D6D1FAF26FF" + min_width: 300 + rewards: [ + { + id: "18072864473B61A2" + type: "xp" + xp: 10 + } + { + id: "49C23D6079075553" + item: "create:filter" + type: "item" + } + { + exclude_from_claim_all: true + id: "5BDFC369403D7A72" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2DE2165EEFCDBA19" + item: "create:smart_fluid_pipe" + type: "item" + }] + x: 7.0d + y: -3.5d + } + { + dependencies: ["2A397AED9CBFB3A1"] + description: [ + "The &dAdjustable Chain Gearshift&r functions similarly to &2Encased Chain Drive&r, but can &o&bchange the speed&r of the &coutput&r with a &o&bredstone input&r." + "" + "With a &credstone&r signal on the &9input&r, &dAdjacent Gearshifts&r will &o&bchange speed&r &coutput&r depending on the &o&bstrength&r of the signal, &o&bmaxing out at double&r. With a &credstone&r signal on an &coutput&r, the speed of said &coutput&r will be &o&bdecreased&r, being halved at most." + ] + id: "50E045B67532E6FF" + min_width: 300 + rewards: [ + { + id: "362AEFECF852F8C8" + type: "xp" + xp: 20 + } + { + id: "04F3194C7B3C6C5B" + item: "alltheores:brass_plate" + random_bonus: 1 + type: "item" + } + { + id: "23813D3A3C4C3498" + item: "alltheores:gold_plate" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "6464582F284E00F5" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0C64786C032A2CD5" + item: "create:adjustable_chain_gearshift" + type: "item" + }] + title: "Adjustable Chain Gearshift" + x: -2.5d + y: -10.0d + } + { + dependencies: ["60D2C64B06CE5073"] + description: [ + "The &5Rotation Speed Controller&r is a mechanical component that allows the player to &o&bprecisely control rotational speed&r." + "" + "For the &5Rotation Speed Controller&r to work, it must be paired with a &6Large Cogwheel&r. The &5Rotation Speed Controller&r, when powered by the &6Large Cogwheel&r, &coutputs&r any desired speed of rotational force from its sides. It also does the &o&bopposite&r; when powered from its sides, it controls the speed of the &6Large Cogwheel&r." + "" + "The rotation speed and direction can be changed in the &eValue Settings Screen&r at the &o&bfront&r or the &o&bback&r of the machine. The &o&bspeed&r can be set to any &nnon-zero&r integer from &o&b-256&r to &o&b256&r." + ] + id: "25CC0FF81BDED8B6" + min_width: 300 + rewards: [ + { + id: "109AC819CAD71DF7" + type: "xp" + xp: 100 + } + { + count: 6 + id: "5E80F5441B65BD43" + item: "alltheores:brass_plate" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "08F110E06B2237F0" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7ACA5C82B0DCA746" + item: "create:rotation_speed_controller" + type: "item" + }] + title: "&bRotation Speed Controller" + x: -7.5d + y: -6.0d + } + { + dependencies: ["642CFD0DE5BF3F38"] + description: ["The &5Electron Tube&r is an item that is only used in crafting recipes."] + id: "2FF0BADC06E9B1C2" + rewards: [ + { + id: "1CCC1B4D9EE50F1C" + type: "xp" + xp: 10 + } + { + count: 8 + id: "67EA5873DA14CCF5" + item: "minecraft:redstone_torch" + type: "item" + } + { + exclude_from_claim_all: true + id: "1374B1C03EFCE610" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7117D910BF598713" + item: "create:electron_tube" + type: "item" + }] + title: "Electron Tube" + x: 7.0d + y: -6.0d + } + { + dependencies: ["6CDCF5CAF844400E"] + description: [ + "The &9Millstone&r is a more basic equivalent of the &2Crushing Wheels&r, capable of applying &o&bmilling recipes&r to any items inserted from &nabove&r." + "" + "A &9Millstone&r can be powered by a &3shaft&r from &o&bbelow&r or by a &2cogwheel&r from the &o&bside&r." + "" + "There are &o&btwo ways&r to insert items into a &9Millstone&r:" + "" + "- &o&bDropping&r items on &ntop&r of it: Anything that can be processed &o&bwill be picked up&r if the &einput buffer&r is empty." + "- &3Hoppers&r, &eFunnels&r, &dChutes&r, and &o&bother inserters can directly feed&r it items from &nany side&r." + "" + "A &9Millstone&r will &o&btake some time&r to process inserted ingredients and will show &o&bparticles&r while it is working." + "" + "Once finished, the &9Millstone&r will not &ndrop&r or &noutput&r the result by itself, but there are &o&btwo ways&r to remove processed items:" + "" + "- &eRight-clicking&r the &9Millstone&r with an empty hand: This will &o&bmanually pick up&r everything in the &o&boutput buffer&r." + "" + "- &3Hoppers&r, &eFunnels&r, &dChutes&r, and &o&bother exporters can pull&r items out of the &o&boutput buffer&r from &nany side&r." + ] + id: "78149C89452FBF2E" + min_width: 400 + rewards: [ + { + id: "4370E6A8ED584AF6" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "4371EB4633D6B230" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "57CC5D1AC5ECF108" + item: "create:millstone" + type: "item" + }] + title: "&bMillstone" + x: -1.5d + y: -6.5d + } + { + dependencies: ["2FF0BADC06E9B1C2"] + description: [ + "The &9Deployer&r simulates &o&bplayer actions&r on blocks or entities exactly &o&b2&r blocks away from it." + "" + "The &9Deployer&r can be &o&bgiven&r items to &o&buse&r with machines or by &aRight-clicking&r the items into the hand, and can be &o&bstopped&r with a &cRedstone&r signal." + "" + "The &3Filter&r on the side of the &9Deployer&r can be &o&badjusted&r to only use &o&bcertain&r items, and is also &o&bessential&r when using a &9Deployer&r in a &bContraption&r." + "" + "The &9Deployer&r has &o&b2&r &einventory&r slots; The &o&bheld item&r and one &o&bextra&r internal slot. As well as &o&bunusable&r items, items &o&bharvested&r by the &9Deployer&r will be &o&btransferred&r to the &o&bextra&r slot to be removed by machines, during which time the &9Deployer&r will &nstall&r. Items &ncannot&r be &o&bextracted&r from the &o&bextra slot&r directly by the player." + "" + "The &9Deployer&r simulates &aRight-clicks&r by default, but it can be &o&badjusted&r to &aLeft-click&r instead by &aRight-clicking&r the front with a &cWrench&r. While in &aLeft-click&r mode, the &9Deployer&r can use &o&bnormal tools&r, such as &o&bpickaxes&r and &o&bswords&r. The tools will &o&bbehave&r as if the player was &o&bholding&r them, &o&bincluding&r mobs dropping rare items when slain by a &9Deployer&r." + "" + "When positioned above a &eMechanical Belt&r or &5Depot&r, the &9Deployer&r can use held items to build components like the &3Cogwheel&r and &6Precision Mechanism&r. Each component built in this manner can require &o&bmultiple passes&r and has a percentage chance of producing random junk &o&brather&r than the &o&bintended&r item." + ] + id: "372BC980FF166382" + min_width: 400 + rewards: [ + { + id: "01CB810E9CB3A40A" + type: "xp" + xp: 40 + } + { + id: "4383506282DA386B" + item: "create:brass_hand" + type: "item" + } + { + exclude_from_claim_all: true + id: "17D3E0319C9354F7" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0945371731CA617C" + item: "create:deployer" + type: "item" + }] + title: "&bDeployer" + x: 7.0d + y: -7.5d + } + { + dependencies: ["61678EAF0A15235A"] + description: [ + "&dPolished Rose Quartz&r is an important crafting material used in the production of &aElectron Tubes&r. It can also be used to craft its &o&btiled decorative blocks&r." + "" + "&dPolished Rose Quartz&r is created through &o&bPolishing&r, which can be done &o&bmanually&r by holding &cRose Quartz&r and &eSand Paper&r in both the &o&bmain&r and &o&boffhand&r, and &o&busing&r the &eSandpaper&r." + "" + "As with all &o&bManual Item Application&r recipes, &dPolished Rose Quartz&r production can be &o&bautomated&r through the use of &6Deployers&r." + "" + "&dPolished Rose Quartz&r can be put into a &7Stonecutter&r or through a &2Mechanical Saw&r to create some decorative blocks." + ] + icon: "create:polished_rose_quartz" + id: "642CFD0DE5BF3F38" + min_width: 300 + rewards: [ + { + id: "3C95C9FEA5B0E95F" + type: "xp" + xp: 100 + } + { + count: 4 + id: "2CD7B360560ED9D5" + item: "create:polished_rose_quartz" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "6259D068097770A7" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 32L + id: "3E949AEEF3AC2E0B" + item: "create:polished_rose_quartz" + type: "item" + }] + title: "Polished Rose Quartz" + x: 5.5d + y: -7.5d + } + { + dependencies: ["6CDCF5CAF844400E"] + description: [ + "The &dMechanical Press&r is a mechanical component that applies &2Pressing&r, &9Packing&r, and &cCompacting&r recipes to items &o&bbelow it&r. It is an important &o&bearly-game&r item, as it is used to press &3Ingots&r into &6Sheets/Plates&r, which are important ingredients for &o&bhigher-level&r components." + "" + "The &dMechanical Press&r is powered by an internal &3Shaft&r, accessed from &o&btwo opposite sides&r. Much like&3 Shafts&r, &dPresses&r will relay rotation along their &o&baxis&r. It processes items &o&bfaster&r when it receives &o&bfaster rotational power&r." + "" + "By default, the &dMechanical Press&r will apply &o&bPressing&r recipes to items underneath it. This can be set up in &o&btwo ways&r:" + "" + "- When placed &o&bone space above&r any block, it will process all valid items on the block when given &o&brotational power&r. Items with &nno pressing&r recipe are &o&bunaffected&r." + "- When placed &o&bone space above&r a &eMechanical Belt&r, it will &o&bautomatically press stacks&r of incoming items, stalling the belt until each operation is done. Items with &nno pressing&r recipe &o&bare ignored&r." + ] + id: "66AA0C89E078CBB4" + min_width: 400 + rewards: [ + { + id: "3E5378AB97E71FE5" + type: "xp" + xp: 30 + } + { + count: 6 + id: "1B6347C3760DEAF6" + item: "create:shaft" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "34EF0D43BA4014C3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "73F69BD9461BC941" + item: "create:mechanical_press" + type: "item" + }] + title: "&bMechanical Press" + x: -2.0d + y: -5.0d + } + { + dependencies: ["6CDCF5CAF844400E"] + description: [ + "The &9Mechanical Mixer&r is a mechanical component that applies &o&bmixing&r recipes and &o&bshapeless crafting&r recipes to items in &3Basins&r." + "" + "The &9Mechanical Mixer&r is powered by an internal cogwheel, and will behave as one to any adjacent components, relaying and &o&breversing rotation sideways&r." + "" + "The &9Mixer&r requires a &o&bminimum rotational speed&r of &o&b32&r &dRPM&r from its power source to work. Mixers will process &eingredients&r faster the &o&bmore speed it is given&r." + "" + "To work, a &9Mixer&r must be placed directly above a &3Basin&r, with a &o&b1&r block gap. When a &o&bvalid&r recipe is inserted by &o&bthrowing&r the &eingredients&r in the &9Mixer&r, the &9Mixer&r will automatically combine the &eingredients&r." + "" + "The &9Mechanical Mixer&r may be used to perform mixing recipes, which are not possible to make anywhere else." + "" + "Those recipes include: &o&bAndesite Alloy&r, &o&bBrass Ingot&r, &o&bBuilder's Tea&r, &o&bChocolate&r, &o&bDough&r, &o&bHoney&r, &o&bLava&r and &o&bMud&r." + ] + icon: "create:mechanical_mixer" + id: "672C231C32B4B6F0" + min_width: 300 + rewards: [ + { + id: "03F47DD3FB5150FF" + type: "xp" + xp: 50 + } + { + id: "7CB4935E456EF8DE" + item: "minecraft:cauldron" + type: "item" + } + { + count: 12 + id: "0EAF65FEB12CECA6" + item: "minecraft:cooked_cod" + type: "item" + } + { + exclude_from_claim_all: true + id: "5A1491744B2F4DE8" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "129C2831B833E9DD" + item: "create:mechanical_mixer" + type: "item" + } + { + id: "048032EF9DCA36A4" + item: "create:basin" + type: "item" + } + ] + title: "&bMechanical Mixer" + x: -4.5d + y: -7.5d + } + { + dependencies: ["0ABEFA4FA1C474F8"] + description: [ + "&6Blaze Burners&r are used for &eHeating&r and &dSuper-Heating&r &3Basins&r when doing &dMixing&r recipes. In particular, they are required to make &6Brass&r." + "" + "They can also be used as a &o&bheat source&r for &7Boilers&r used to &o&bpower&r &aSteam Engines&r. When a &nheat-able&r block is placed above a fueled &6Blaze Burner&r, the &6Burner&r will appear to channel &o&bheat&r into the block." + "" + "&aRight-clicking&r a &6Blaze Burner&r with any item that can be used as &3Furnace&r fuel will temporarily put it in a &eHeated&r state. &aRight-clicking&r a &6Blaze Burner&r with a &eBlaze Cake&r will temporarily put it in a &dSuper-Heated&r state." + "" + "A &dDeployer&r or &5Mechanical Arm&r can be used to &o&bautomatically&r fuel it, given any burnable item as an &9input&r. &o&bLava Buckets&r will be put into the &6Blaze Burner&r, the &7Bucket&r will not be consumend. They will &cstop&r adding fuel if the &6Blaze Burner's&r remaining burn time is over &o&b500&r seconds, so no fuel is &o&bwasted&r. The &6Burner&r has a &bmaximum fuel capacity&r of &o&b10,000&r seconds." + ] + id: "3726B3D349A33CA5" + min_width: 400 + rewards: [ + { + id: "4AC32BF2EF689F2C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "59A502D6F1276E70" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "63CD3AFFA0B0F449" + item: "create:blaze_burner" + type: "item" + }] + title: "&bBlaze Burner" + x: 0.0d + y: -5.5d + } + { + dependencies: ["1C2309DB4B890E71"] + description: [ + "The &aBuilder's Tea&r is a potion that restores a &o&bsingle hunger point&r and grants the drinker haste for &o&b3&r minutes." + "" + "To make one, put any &2Leaves&r, &o&b250&rmb &9Water&r, and &o&b250&rmb &fMilk&r in a &nheated&r &9Mechanical Mixer&r. Then, put the &aTea&r in a &o&bbottle&r using a &dSpout&r." + ] + id: "1750E0D71EA9CC5A" + min_width: 320 + rewards: [ + { + id: "65E41838125C255A" + type: "xp" + xp: 50 + } + { + count: 4 + id: "1F5AB7781F526315" + item: "minecraft:glass_bottle" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "3C3A30AB9181ED2E" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4FF256ED7A452462" + item: "create:builders_tea" + type: "item" + }] + x: -3.5d + y: -1.0d + } + { + dependencies: ["60D2C64B06CE5073"] + description: [ + "&9Mechanical Crafters&r are machines that can &o&bautomatically&r craft items." + "" + "&aRight-click&r the front of a &9Mechanical Crafter&r with a &cWrench&r to change the direction it sends items during crafting. The &9Mechanical Crafters&r are only connected by this path. Crafters can be &o&bautomatically filled&r by &3Funnels&r or &7Hoppers&r." + "" + "On the &o&bback&r and &o&bsides&r of &9Mechanical Crafters&r, a &cWrench&r can be used to &o&bconnect&r or &o&bdisconnect&r the &einventory&r of two adjacent crafters. Crafters can &o&bshare inventories&r while not participating in the same crafting recipe. Items can also be &2inserted&r or &cremoved&r by hand." + "" + "Each &9Mechanical Crafter&r has an internal gear that can only be powered by adjacent &9Mechanical Crafters&r or any size &2Cogwheel&r. This means only &o&b1&r &9Mechanical Crafter&r in a setup needs to be &o&bpowered&r by a &2Cogwheel&r." + "" + "When powered by &o&brotational force&r and either powered with &cRedstone&r or all crafter slots are filled, &9Mechanical Crafters&r will send their items to adjacent crafters. For a &o&bsuccessful&r recipe, the items &o&bmust eventually meet&r in one crafter." + "" + "Once all of the items reach the final &9Crafter&r, they will turn into the &o&bproduct&r. &9Crafters&r with &6Crafter Slot Covers&r act as &o&bempty spaces&r in a recipe; they can also be used &o&bto connect&r the &einventory&r of otherwise separate crafters. &6Crafter Slot Covers&r will not move as recipe items will." + ] + icon: "create:mechanical_crafter" + id: "5BACA82D1436C781" + min_width: 400 + rewards: [ + { + id: "6423BFFF0A14C4A2" + type: "xp" + xp: 20 + } + { + count: 2 + id: "1E46C0291661577C" + item: "create:mechanical_crafter" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "328AB19C315FD8C9" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + count: 4L + id: "749921C4423895F9" + item: "create:mechanical_crafter" + type: "item" + } + { + id: "6CE32BF18E2AD6EB" + item: "create:crafter_slot_cover" + type: "item" + } + ] + title: "&bThe Mechanical Crafters" + x: -6.0d + y: -3.5d + } + { + dependencies: ["5BACA82D1436C781"] + description: [ + "&2Crushing Wheels&r are the more advanced version of the &3Millstone&r. It applies &2Crushing&r recipes to &o&bany items inserted&r from the direction they are spinning away from." + "" + "Two &2Crushing Wheels&r must be placed next to each other &nhorizontally&r or &nvertically&r one block apart. Both wheels must be given &o&bopposite rotational force&r. Any items to be crushed must be inserted where the wheels rotate &o&binwards&r." + "" + "&2Crushing Wheels&r will &ckill&r &o&bmobs&r and &o&bplayers&r and eject their &ndrops&r." + "" + "&2Crushing wheels&r can be &o&bautomated&r by placing a vanilla &7Hopper&r at the &o&btop&r directly &o&bbetween&r the wheels and either a &3Depot&r or &eConveyor Belt&r &o&bbelow&r. Materials will be fed through the top &7Hopper&r." + "" + "Some recipes have &coutputs&r that &o&bonly happen by chance&r." + ] + id: "1C31403D8041E654" + min_width: 400 + rewards: [ + { + id: "0FDBC1ACA75E36F2" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "78459F3222F1E786" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "0E2ED810F6F0C1F5" + item: "create:crushing_wheel" + type: "item" + }] + title: "&bThe Crushing Wheels" + x: -7.0d + y: -2.0d + } + { + dependencies: ["6A85EFF65D461020"] + description: [ + "The &3Andesite Funnel&r is used to &cextract&r or &9insert&r materials into &einventories&r, similar in nature to the &6Brass Funnel&r." + "" + "While held, funnels &o&bprevent&r the player from accessing &einventories&r, instead placing them. &aSneak+Right-clicking&r with a &3Funnel&r places it in &9input&r mode." + "" + "Using a &4Wrench&r on the funnel switches it between &9input&r and &coutput&r mode. &cRedstone&r can be &o&bapplied&r to stop the funnel from inputting or outputting. &aRight-clicking&r a funnel on a &eMechanical Belt&r causes it to &bextend&r one block forward." + ] + id: "37B0DFD5F4BD2AC1" + min_width: 300 + rewards: [ + { + id: "0FDA0E465295DF9B" + type: "xp" + xp: 50 + } + { + id: "006A3D177857D991" + item: "create:andesite_funnel" + type: "item" + } + { + exclude_from_claim_all: true + id: "59225A0349779BB5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "5A80D0F1B99C0704" + item: "create:andesite_funnel" + type: "item" + }] + title: "Andesite Funnel" + x: 1.0d + y: -1.0d + } + { + dependencies: ["37B0DFD5F4BD2AC1"] + description: [ + "The &6Brass Funnel&r is a block that can &cextract&r or &9insert&r items into &einventories&r, much like the &3Andesite Funnel&r." + "" + "&6Funnels&r can be placed on &einventories&r &o&bwithout&r the need to &o&bsneak&r, being placed in &coutput&r mode by default. &o&bSneaking&r while placing will place the funnel in &9input&r mode." + "" + "&6Funnels&r placed on a &eMechanical Belt&r &9input&r or &coutput&r depending on the &o&bbelt's direction&r. A &4Wrench&r can be used to &o&bextend&r the funnel forwards." + "" + "When attached to a &bContraption&r, &6Brass Funnels&r can &o&bdrop&r items from the contraption's inventory or &o&bpick up&r items that collide with it. If a &0Filter&r is set, only &o&bfiltered&r items will be &o&btaken&r or &o&bdropped&r. It can also be set to &coutput&r or &9input&r either \"&nexactly&r\" or \"&nup to&r\" a set amount of items via its &dValue Settings Screen&r." + "" + "When not on a &eMechanical Belt&r, a &4Wrench&r can be used to set it to &cextract&r or &9insert&r. Otherwise, the direction of the belt determines whether the &6Funnel&r &cextracts&r or &9inserts&r." + "" + "It can be turned &coff&r with &cRedstone&r." + ] + id: "46786830FE1CED6C" + min_width: 300 + rewards: [ + { + id: "765B6B481C575544" + type: "xp" + xp: 100 + } + { + id: "6C5ECC225AA57584" + item: "create:brass_funnel" + type: "item" + } + { + exclude_from_claim_all: true + id: "2B5B81A38075632A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "0077C2AC77F0735D" + item: "create:brass_funnel" + type: "item" + }] + title: "Brass Funnel" + x: 1.0d + y: 0.0d + } + { + dependencies: ["014687B2B904513C"] + description: [ + "&9Mechanical Piston&r is a piston that can &o&bextend&r multiple blocks when powered with &o&bRotational power&r. When it comes to moving contraptions, &9Mechanical Pistons&r can be a great early start. " + "" + "To extend, the &2Piston&r must have &ePiston Extension Poles&r at the end as well as &o&bRotational power&r. The &nmaximum&r extension pole length is &o&b64&r blocks." + "" + "When the rotation is &o&breversed&r, the piston will &o&bretract&r. The &o&bend&r must be made &o&bsticky&r with a &aSlimeball&r to bring the pushed blocks back with it." + "" + "Multiple blocks can be &o&bpushed&r with the use of &dLinear Chassis&r, &5Radial Chassis&r, or &eSuper Glue&r. Such structures function similarly to rotating structures and minecart contraptions." + "" + "As a simple &o&bexample&r of where one might use these, imagine a long field of &acrops&r. A &9Mechanical Piston&r could be used to push a &o&bharvesting contraption&r back and forth over the field &o&bperiodically&r to &agather crops&r. " + ] + hide_dependency_lines: true + icon: "create:mechanical_piston" + id: "6CC4C78C9AB5EA1A" + min_width: 350 + rewards: [ + { + id: "36E3FB492B9232E4" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "48326D5D579871A0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + id: "2298BE03FF8E7AE3" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "create:mechanical_piston" + } + { + Count: 1b + id: "create:sticky_mechanical_piston" + } + ] + } + } + title: "Mechanical Pistons" + type: "item" + } + { + id: "153682B4AB397A67" + item: "create:piston_extension_pole" + type: "item" + } + ] + title: "&bMechanical Piston" + x: 9.0d + y: -5.0d + } + { + dependencies: ["014687B2B904513C"] + description: [ + "&6Cart Assembler&r can &o&battach&r a structure to carts that pass through it when supplied with a &cRedstone&r signal." + "" + "The &2Value Settings Screen&r can be accessed on the side of the &6Cart Assembler&r to change the cart contraption's movement modes." + "" + "- &o&bAlways face toward motion&r" + "- &o&bPause actors while rotating&r: Contraption &dActors&r such as a &eDeployer&r will not work while the cart rotates." + "- &o&bLock Rotation&r: The contraption will not change alignment along with the cart, and will retain the same rotation from when it was built, much like the effect of a &9Mechanical Bearing&r on a cart contraption." + "" + "Cart contraptions will &nnot&r travel through &5Nether Portals&r." + "" + "To learn more about &6Cart Assembler&r, I'll suggest to visit the &o&bCreate&r Wiki by &aclicking&r the &o&blink&r below:" + "{\"text\":\"Create Wiki: Cart Assembler\",\"color\":\"blue\",\"underlined\":\"true\",\"clickEvent\":{\"action\":\"open_url\",\"value\":\"https://create.fandom.com/wiki/Cart_Assembler\"}}" + ] + hide_dependency_lines: true + id: "64FFC1E8083428E0" + min_width: 350 + rewards: [ + { + id: "76F8DF916D52DC2D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "534EB033FF28C9D2" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "74DEA7A64D67668E" + item: "create:cart_assembler" + type: "item" + }] + title: "&bCart Assembler" + x: 12.0d + y: -5.0d + } + { + dependencies: ["014687B2B904513C"] + description: [ + "Similar to &9Windmill Bearings&r, &2Mechanical Bearing&r is meant to create and &o&brotate&r moving structures." + "" + "If another &2Mechanical Bearing&r is used within a &o&bContraption&r, facing the same way as the original, the blocks &o&battached&r to that bearing will &o&bkeep&r their alignment as the rest of the structure &o&bmoves&r." + "" + "The structure's behavior when ceasing movement can be adjusted with a &4Wrench&r. It can be told to place the blocks: &o&balways&r, &o&bonly near the initial angle&r, or &o&bnever&r." + "" + "For instance, a long &o&bsweeping armed contraption&r could be built that swings through a &aTree Farm&r, &o&bcutting down&r all the trees it encounters. " + ] + hide_dependency_lines: true + id: "6B98E20F753C41E3" + min_width: 350 + rewards: [ + { + id: "27ADE50755E64073" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0DC743554AADC259" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7C56910CE6A00F05" + item: "create:mechanical_bearing" + type: "item" + }] + title: "&bMechanical Bearing" + x: 9.5d + y: -6.0d + } + { + dependencies: ["014687B2B904513C"] + description: [ + "The &2Rope Pulley&r functions much like a &9Mechanical Piston&r, but in only &o&bone direction&r and without the need for &3Piston Extension Poles&r." + "" + "The &2Rope Pulley&r can &o&bextend&r downwards &o&b256&r blocks before stopping. It is most commonly used for &o&bexcavating&r or &o&bsimple elevators&r. The rope of the pulley is &o&bclimbable&r while disassembled." + "" + "Use &aBlock Attachment Utilities&r to push more blocks. &2Rope Pulleys&r directly above the &o&bContraption&r at the same level of the main &2Rope Pulley&r will &o&bsynchronize&r with the main pulley. Synchronized Pulleys do &nnot&r require &o&bRotational Force&r." + "" + "The &2Rope Pulley's&r current length can be monitored with a &cThreshold Switch&r." + ] + hide_dependency_lines: true + id: "01D7969415F08817" + min_width: 350 + rewards: [ + { + id: "0E0DBA6B01D28AAF" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1E543797E3239142" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "493C230106013D5D" + item: "create:rope_pulley" + type: "item" + }] + title: "&bRope Pulley" + x: 11.5d + y: -6.0d + } + { + dependencies: [ + "6CC4C78C9AB5EA1A" + "6B98E20F753C41E3" + "75B14A09FE39EDDA" + "01D7969415F08817" + "64FFC1E8083428E0" + ] + description: [ + "The &2Radial Chassis&r is a block used to &o&bconnect&r moving structures." + "" + "&2Radial Chassis&r are used to rotate a &o&bcylinder&r of blocks around them when powered by a &eBearing&r. You can &aRight-click&r on the sides while holding a &aSlimeball&r to make them &o&bsticky&r. The radius of affected blocks can be changed per chassis with a &4Wrench&r." + "" + "The &9Linear Chassis&r is one method of &o&bconnecting&r up moving structures or minecart contraptions." + "" + "&9Linear Chassis&r will &o&bautomatically&r connect to adjacent and equally aligned chassis. &aSlime&r is needed to connect a column of other blocks to their &o&bpiston-like&r surface. A &4Wrench&r can be used to adjust the size of the column. Hold &aCtrl&r with a &4Wrench&r to adjust all connected &o&bChassis&r at once. Secondary &9Linear Chassis&r can be used to have adjacent chassis that &o&bdon't connect&r to each other." + ] + hide_until_deps_visible: false + id: "6D0D6417B3EC82C9" + min_width: 400 + rewards: [ + { + id: "46D8BE5A560E44EB" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "3CF3F3B6C052E6BB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "27DB02CB71BFBD1E" + item: "create:radial_chassis" + type: "item" + } + { + id: "64659684798A7C75" + item: "create:linear_chassis" + type: "item" + } + ] + title: "&bRadial \\& Lineal Chassis" + x: 10.5d + y: -3.5d + } + { + dependencies: ["6D0D6417B3EC82C9"] + description: [ + "The &9Portable Fluid Interface&r is the fluid version of the &2Portable Storage Interface&r. It is used to &ainsert&r or &cextract&r from the fluid &einventory&r of a &bContraption&r." + "" + "The &6Interfaces&r must be placed facing each other at &o&b1-2&r blocks apart, one on a &o&bContraption&r with &9Fluid Tanks&r and one stationary. A &dFluid Pump&r is required to &ainsert&r or &cextract&r liquid from the &bContraption&r. To pump liquids to another tank, simply connect the stationary &6Interface&r and the &o&bfluid tank&r with &o&bfluid pipes&r, although pumps are required to move the liquids." + "" + "&bContraptions&r will &o&bautomatically&r stall for an &6Interface&r. A &cRedstone&r signal can be applied to &nbreak off&r the connection early." + "" + "The &2Portable Storage Interface&r is a block that allows Item &3Transporters&r to directly interact with &bContraption&r &einventories&r." + "" + "The &bContraption&r must have an &einventory&r such as a &7Chest&r or &3Barrel&r, while the stationary &6Interface&r has something &o&binserting&r or &o&bextracting&r directly from it, such as a &3Funnel&r, &8Chute&r, or &7Hopper&r. &eInventory&r will then be exchanged at the rate of the &o&binserting&r or &o&bextracting&r component." + "" + "&aShift+Right-clicking&r on a &2Portable Storage Interface&r with a &4Wrench&r will destroy the &2Portable Storage Interface&r and place it in your &einventory&r." + ] + id: "7A601D674E893EB3" + min_width: 350 + rewards: [ + { + id: "49AEE847ADAB1C6D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "328DF8035D5D663B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + id: "6F8FABD3E7BC8F54" + item: "create:portable_fluid_interface" + type: "item" + } + { + id: "3BB18E46E6C4A731" + item: "create:portable_storage_interface" + type: "item" + } + ] + title: "&bThe Portable Interfaces" + x: 10.5d + y: -1.0d + } + { + dependencies: ["6D0D6417B3EC82C9"] + description: [ + "The &2Mechanical Harvester&r is a component used to &o&bharvest&r all mature crops it comes in contact with while moving forward." + "" + "It will then either &o&bdeposit&r the items to an &einventory&r on the &o&bContraption&r or, if no &einventories&r are &o&bavailable&r, it will &bdrop&r the items on to the ground. After harvesting the plants will be reset to their initial growth state." + "" + "Unlike most components, the &2Mechanical Harvester&r cannot be &o&bpowered&r while stationary. This is likely due to the fact that in order for the &2Harvester&r to work, it &o&bmust be&r within the same block as the &o&bmature crop&r to harvest, which could not happen with a &o&r&bstationary&r component." + ] + id: "43631D4C344DEF00" + min_width: 350 + rewards: [ + { + id: "470709E4D6A87198" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1E84E987EA350474" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "057699A0162865B5" + item: "create:mechanical_harvester" + type: "item" + }] + title: "&bMechanical Harvester" + x: 9.0d + y: -2.5d + } + { + dependencies: ["6D0D6417B3EC82C9"] + description: [ + "The &2Mechanical Drill&r is a block used to break blocks." + "" + "A stationary &2Mechanical Drill&r will &o&bbreak&r blocks in the block in front of it with a time in seconds of (&o&b45&r x Hardness)/&dRPM&r and will &o&bhurt entities&r in an area around it." + "" + "A &2Mechanical Drill&r moved by components will &o&bbreak&r blocks and &o&bdamage&r entities with which it collides &nwithout&r needing a direct supply of &o&bRotational Force&r." + "" + "The time it takes for a &2Mechanical Drill&r to break a block is based on the &o&bContraption's&r speed and the block's &eHardness&r value. The damage dealt to entities is also based on the &o&bContraption's&r speed." + "" + "&aShift+Right-clicking&r on a &2Mechanical Drill&r with a &4Wrench&r will destroy the &2Mechanical Drill&r and place it in your &einventory&r." + ] + id: "66C5B278E97F70A1" + min_width: 350 + rewards: [ + { + id: "3C20791BE8AAC5E6" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "74C47208D9CAAFAC" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0AE46BB7CDAE9F12" + item: "create:mechanical_drill" + type: "item" + }] + title: "&bMechanical Drill" + x: 11.5d + y: -1.5d + } + { + dependencies: ["6D0D6417B3EC82C9"] + description: [ + "&2Mechanical Saws&r are powered through &o&brotational force&r, and when placed down facing to the side they will &o&bautomatically&r chop down wood blocks in front of them. " + "" + "When &o&bchopping down&r a tree or &o&bgiant mushroom&r, it will &o&bautomatically&r destroy the entire tree by only destroying the &o&bbottom-most block&r. This also works with &o&b2x2&r trees as long as at least the last block (&o&bhorizontally&r) is mined using the saw." + "" + "&2Mechanical sSaws&r are &o&bautomatically&r powered when on a &o&bCreate Contraption&r. The saw will &o&bdamage entities&r and &o&bbreak blocks&r at a certain speed depending on the contraption's speed." + "" + "When placed &o&bfacing upward&r, the &2Saw&r applies &o&bsawing&r or &3stonecutting&r recipes. When a recipe has multiple &coutputs&r, an &coutput&r will be &o&brandomly selected&r unless a &0Filter&r is applied to the &0Filter&r slot located next to the saw blade." + ] + id: "7FED7217CADDE60D" + min_width: 350 + rewards: [ + { + id: "39765CEC572A43E9" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "62D2FC9FFE690C9B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "61103A1231DF56A5" + item: "create:mechanical_saw" + type: "item" + }] + title: "&bMechanical Saw" + x: 9.5d + y: -1.5d + } + { + dependencies: ["6D0D6417B3EC82C9"] + description: [ + "The &2Mechanical Plough&r is a component used to break &o&bnon-collidable&r blocks." + "" + "The &2Plough&r can &nonly&r be placed on the &o&bhorizontal&r face of a solid block, however, this block is not &o&bnecessary&r to support the &2Plough&r after it is placed." + "" + "While attached to a &bContraption&r, the &2Mechanical Plough&r will break non-collidable blocks it comes in contact with (ex. &o&bsnow layers&r). The &2Mechanical Plough&r will also move or launch entities and till soil blocks." + "" + "The &2Mechanical Plow&r is useful for more than &o&bsimple farm&r maintenance, however, and can make a &o&bgreat addition&r to a moving minecart machine for pulling up &o&bextra&r track behind it." + ] + id: "7DDC0DEF59F712BE" + min_width: 350 + rewards: [ + { + id: "4CF5981FFBF3E74B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0B5A5DA0C109F445" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "6229EFE7287940A2" + item: "create:mechanical_plough" + type: "item" + }] + title: "&bMechanical Plough" + x: 12.0d + y: -2.5d + } + { + dependencies: ["37188F03818AF4E0"] + description: [ + "Create allows you to &o&bmove&r and &o&banimate&r block structures of any shape or form." + "" + "This feature is extremely &o&bpowerful&r as it proves useful in the field of &o&bautomation&r, &o&btransportation&r and &o&baesthetics&r." + "" + "&2Modular Contraptions&r are &o&bbuild-it-yourself multiblock structures&r with nearly &nendless&r possibilities. " + "" + "They can either be &o&bfixed&r in place and run using &o&brotational power&r, or they can be attached to a minecart and run for free, requiring only &o&bpowered rails&r to keep the cart moving. " + "" + "The following are some of the &especialized blocks&r that may be used for these &2contraptions&r." + ] + hide_dependency_lines: true + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "create:textures/item/minecart_contraption.png" + } + } + id: "014687B2B904513C" + min_width: 300 + rewards: [ + { + id: "15024EA2A7B299F0" + type: "xp" + xp: 10 + } + { + id: "62200E9D28B56D68" + item: "minecraft:minecart" + type: "item" + } + { + exclude_from_claim_all: true + id: "3C3F8904C957B28A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "32A2DC1569502312" + type: "checkmark" + }] + title: "&bMoving Contraptions" + x: 10.5d + y: -7.5d + } + { + dependencies: ["37188F03818AF4E0"] + description: [ + "&cRose Quartz&r is a material used to create &dPolished Rose Quartz&r, &7Rose Quartz Block&r and the &3Rose Quartz Lamp&r." + "" + "&cRose Quartz&r may be used to make &dPolished Rose Quartz&r. To do this, the player must hold &eSand Paper&r in their &o&boffhand&r, &cRose Quartz&r in their &o&bmain hand&r, and &aRight-click&r. The &dPolished Rose Quartz&r will &ndrop&r on the ground." + "" + "&cRose Quart&rz can be put into a &3Stonecutter&r or through a &2Mechanical Saw&r to create the decorative &7Rose Quartz Block&r." + ] + icon: "create:rose_quartz" + id: "61678EAF0A15235A" + min_width: 320 + rewards: [ + { + id: "0641AD421C077B63" + type: "xp" + xp: 10 + } + { + count: 2 + id: "72C3C299828C5C45" + item: "create:rose_quartz" + random_bonus: 1 + type: "item" + } + { + count: 2 + id: "275B46FFABCF8BB0" + item: "minecraft:paper" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7EED0CC9AB57A173" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "04CFEF1A9F72034E" + item: "create:rose_quartz" + type: "item" + } + { + id: "72C5041EEE1F7233" + item: { + Count: 1 + id: "create:sand_paper" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Polishing Rose Quartz" + x: 4.0d + y: -7.5d + } + { + dependencies: ["45AF5EFC3C051D1A"] + description: ["The &6Speedometer&r will show you the &o&bspeed&r of the currently connected gear."] + id: "18E43C37E2843B28" + rewards: [ + { + id: "0583FB164F8113FA" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "490FB5C79A89C0D1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4C40ECB30FFF306E" + item: "create:speedometer" + type: "item" + }] + x: 0.5d + y: -10.0d + } + { + dependencies: ["45AF5EFC3C051D1A"] + description: ["The &dStressometer&r will show you how &o&bstressed&r the system is when you connect it."] + id: "39205EB715325786" + min_width: 210 + rewards: [ + { + id: "171C2BA15B411733" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "05F9D90C0A7EA628" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "40D371E97D53C773" + item: "create:stressometer" + type: "item" + }] + x: 1.5d + y: -10.0d + } + { + dependencies: ["37188F03818AF4E0"] + description: [ + "&6Andesite Alloy&r is a material used in &9Andesite Casing&r and simple kinetic blocks, which serves as an entry-point to the mechanical components of &bCreate&r." + "" + "Among its many functions, it is an essential ingredient for crafting &3Shafts&r and both regular and large &2Cogwheels&r. &6Andesite Alloy&r is the most &o&bbasic component&r construction material in &bCreate&r." + ] + id: "27B9C71CDEC8916F" + min_width: 300 + rewards: [ + { + id: "2ADEB254B6285DAD" + type: "xp" + xp: 50 + } + { + count: 4 + id: "65A9CFFA0F06E976" + item: "create:andesite_alloy" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "17566F1A933A7C2F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 32L + id: "650D2153FFF07412" + item: "create:andesite_alloy" + type: "item" + }] + title: "Andesite Alloy" + x: 2.5d + y: -5.0d + } + { + dependencies: ["2FF0BADC06E9B1C2"] + description: [ + "&9Display Boards&r are a &o&bscalable alternative&r to the &4Sign&r." + "" + "Similarly to &dNixie Tubes&r, &9Display Boards&r can be aligned to &o&bshare&r text. &9Display Boards&r can be expanded up to &o&b32&r blocks &o&babove&r, &o&bbelow&r, and to &o&beither side&r, allowing a &o&bmaximum&r &9Display Board&r size of &o&b32x32&r. More &9Display Boards&r can be placed &o&bbeyond the limit&r, however they will &nnot function&r as part of the &o&bmain board&r." + "" + "The &9Display Board&r must be powered at an &dRPM&r of &o&b30+&r to &o&bdisplay text&r. Faster &dRPM&rs will &o&breduce&r the time between &o&bupdates&r to the &9Display Board&r. " + "" + "The &9Display Board&r has no &o&bstress impact&r. Use a &eClipboard&r or a &7Name Tag&r on a line of the &9Display Board&r to write the item's contents to it. Each &9Display Board&r block can hold &o&b2&r lines of text. Lines can be erased using an &o&bempty hand&r. Lines can also be &o&bcolored&r by using &5Dyes&r or &o&billuminated&r with &eGlow Inc Sacs&r. Items &nwill not be consumed&r on use." + "" + "&6Display Links&r can write &o&binformation&r to &9Display Boards&r." + ] + id: "4676CB58AAE7C58B" + min_width: 300 + rewards: [ + { + id: "6B6A784EAA2BD0DD" + type: "xp" + xp: 40 + } + { + count: 2 + id: "7A21801987A2A726" + item: "create:rose_quartz" + random_bonus: 2 + type: "item" + } + { + id: "180647B5BA97171A" + item: "minecraft:glow_ink_sac" + type: "item" + } + { + exclude_from_claim_all: true + id: "5433673912AAECB3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2E3CD633D9C0C4E3" + item: "create:display_board" + type: "item" + }] + x: 6.0d + y: -5.0d + } + { + dependencies: ["1CFC8384790ADFFE"] + description: ["To make &6Brass Casing&r you need any &2Stripped Log&r or &2Stripped Wood&r + &eBrass Ingot&r."] + id: "60D2C64B06CE5073" + min_width: 300 + rewards: [ + { + id: "12FA53F46A706559" + type: "xp" + xp: 20 + } + { + id: "22724768575B67CC" + item: "create:yellow_seat" + type: "item" + } + { + exclude_from_claim_all: true + id: "46FEC1E31ECB8088" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2C3C8188B26B84D5" + item: "create:brass_casing" + type: "item" + }] + x: -6.0d + y: -6.0d + } + { + dependencies: ["672C231C32B4B6F0"] + id: "1CFC8384790ADFFE" + rewards: [ + { + id: "3FB491808DE42215" + type: "xp" + xp: 10 + } + { + count: 2 + id: "58156C101106671E" + item: "alltheores:zinc_nugget" + random_bonus: 1 + type: "item" + } + { + count: 4 + id: "2F3B44F51B710CCE" + item: "alltheores:copper_nugget" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "20D643E21FAA8FF0" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3702CAE62D454CC6" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:ingots/brass" + } + } + title: "Any #forge:ingots/brass" + type: "item" + }] + title: "Brass" + x: -6.0d + y: -7.5d + } + { + dependencies: ["66AA0C89E078CBB4"] + description: ["To make &cCopper Casing&r you need any &2Stripped Log&r or &2Stripped Wood&r + &6Copper Ingot&r."] + id: "3F663416E824720C" + min_width: 300 + rewards: [ + { + id: "31424CF4F7F5E215" + type: "xp" + xp: 10 + } + { + id: "0A8FE42641E0BBB9" + item: "create:red_seat" + type: "item" + } + { + exclude_from_claim_all: true + id: "4D59AC211E668DF7" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7FE62F264B4FA5DE" + item: "create:copper_casing" + type: "item" + }] + x: -2.0d + y: -3.5d + } + { + dependencies: ["3F663416E824720C"] + description: [ + "The &9Portable Interface&r works in &o&bpairs&r. You need to have &o&bone placed&r in the world and another one on a &o&bmoving entity&r, like a &7Minecart&r." + "" + "When the two &9interfaces&r are &o&bfacing each other&r, they will &nlink&r and &ntransfer&r liquids between each other." + ] + id: "71B1B53A03A16296" + min_width: 250 + rewards: [ + { + id: "7881CE71CE6FF62F" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "745BE8362C6CDBAA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "339D26EDFBB54047" + item: "create:portable_fluid_interface" + type: "item" + }] + x: -1.0d + y: -3.0d + } + { + dependencies: ["3F663416E824720C"] + description: [ + "The &eSpout&r is used to fill items with liquid." + "" + "The &eSpout&r can be filled with up to &o&b1&r bucket of any one liquid via &9Fluid Pipes&r. It will then spout the fluid at appropriate items that pass under it via a &aConveyor Belt&r or &cDepot&r." + "" + "The &eSpout&r has &o&b8&r &6unique&r crafting recipes:" + "&o&bGrass Block&r, &o&bBlaze Cake&r, &o&bGlowstone Dust&r, &o&bRedstone Dust&r, &o&bGunpowder&r, &o&bSweet Roll&r, &o&bChocolate Glazed Berries&r and &o&bHoneyed Apple&r." + ] + id: "1C2309DB4B890E71" + min_width: 300 + rewards: [ + { + id: "605A87BCBF3F3045" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "5A741145CD8228B7" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + size: 1.3d + tasks: [{ + id: "6772D04457414991" + item: "create:spout" + type: "item" + }] + x: -2.0d + y: -2.0d + } + { + dependencies: ["3F663416E824720C"] + description: [ + "The &5Hose Pulley&r is a pump that can &o&bextract liquids&r or &o&bplace liquids&r in the world." + "" + "When &o&brotational force&r is given to the &5Hose Pully&r, it can extend the hose &o&binfinitely&r. Reversing the &o&brotational force&r will &o&bretract&r the hose back to the block. The hose of the &5Hose Pully&r must be &o&bextended&r by &o&bat least one block&r before it can function." + "" + "A Fluid Pump is required for the hose to drain or flood liquids." + "" + "- If a fluid is &o&bpumped out&r, it will &o&bdrain&r a body of liquid down to the level of the hose. If multiple &9hose pulleys&r draw from the &o&bsame source&r, it will effectively expedite the drainage process, provided that the pipe's capacity is maintained." + "- If a fluid is &o&bpumped in&r, it will &o&bflood&r a room of any size, with the hose marking the highest point of flooding." + "" + "If a liquid source is at least &o&b10,000&r blocks the &9Hose Pulley&r considers it to &o&bbe infinite&r, drawing the liquid from it without actually draining the source. Reintroducing the same liquid into the &o&binfinite source&r will deplete the fluid. This is also the &nmaximum&r flood volume in blocks." + ] + id: "77382D4114E901CB" + min_width: 450 + rewards: [ + { + id: "350ECD1976CAC169" + type: "xp" + xp: 20 + } + { + id: "52F49F5AFC3567BD" + item: "create:copper_casing" + type: "item" + } + { + exclude_from_claim_all: true + id: "6C520570F3BF1074" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "739701B00C0F8A7B" + item: "create:hose_pulley" + type: "item" + }] + x: -3.0d + y: -3.0d + } + { + dependencies: ["1C2309DB4B890E71"] + description: [ + "The &6Blaze Cake&r can be used to feed the &eBlaze Burner&r in order to make it &dSuper-Heated&r." + "" + "To make a &6Blaze Cake&r, pour &o&blava&r onto a &8Blaze Cake Base&r with a &9Spout&r." + "" + "The &6Blaze&r becomes &dSuper-Heated&r for &o&b160&r seconds. It then turns into &o&bstandard blaze&r, lasting for &o&b250&r seconds. Finally, the &6Blaze&r becomes &o&bsmoldering&r, and &ndoes not&r provide any heat." + "" + "&5Super Heated Blaze Burners&r can be used with a &3Basin&r to access &o&bspecial&r recipes. They can also be used to provide &nmore heat&r to a &eSteam Engine&r boiler." + ] + id: "4C77ABCD41383F32" + min_width: 300 + rewards: [ + { + id: "6D4AB28144D41DE4" + type: "xp" + xp: 100 + } + { + id: "49D362EFAEEEBE8F" + item: "create:blaze_cake_base" + type: "item" + } + { + exclude_from_claim_all: true + id: "596F2A0427C56B25" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2E9A4E9BFFC10819" + item: "create:blaze_cake" + type: "item" + }] + x: -0.5d + y: -1.0d + } + { + dependencies: ["2BD81BF0B04A6FA7"] + description: [ + "The &dWeighted Ejector&r flings items and entities to a targeted block up to &o&b32&r blocks away." + "" + "Before placing, &asneak&r use the &dEjector&r on a block to &o&btarget it&r. The block must be in a straight line from where the &dEjector&r is placed. The further away the target is, the longer the &dEjector&r will take to &o&brecharge&r." + "" + "The amount of items ejected can be adjusted in the &6Value Settings Screen&r accessible from either the sides of the block or the top before it has been wound up. The &dEjector&r will wait until it has the appropriate amount of items. The &dEjector&r can also be rotated along with the target block with a &aWrench&r." + "" + "Items flung still have collision, but &ccannot&r be &o&bpicked up&r or &o&bstopped&r by the &o&bplayer&r." + "" + "If the &dEjector&r is &o&brotated&r, the &edisplacement&r of the target is &o&brotated&r." + ] + id: "4EA4EDD5A7923F98" + min_width: 300 + rewards: [ + { + id: "314C7B1C1BC6C923" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6B166FDF64565E48" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "34313AA5D327317C" + item: "create:weighted_ejector" + type: "item" + }] + x: -1.5d + y: -10.0d + } + { + dependencies: ["07DEA314CA78639B"] + description: [ + "&6Smart Chutes&r behave similarly to &eBrass Funnels&r." + "" + "They can be filtered to only allow &o&bcertain&r items through, and be &o&bstopped&r with a &cRedstone&r signal. Unlike &o&bfunnels&r, they can &9insert&r and &cextract&r at the same time, but can only function &nvertically&r." + "" + "When directly below an &einventory&r, the &0Filter&r slot doubles as a &aValue Settings&r diode, much like the &eBrass Funnel&r. The &6Chute&r can be adjusted to &cextract&r up to or &o&bexactly&r a set amount of items." + "" + "The &aValue Settings&r of a &6Smart Chute&r will be &o&bsaved&r even when the &einventory&r above is &o&bdestroyed&r, though this has &o&bno effect&r on the &6Chute's&r behavior when not under an &einventory&r." + ] + id: "7E510922F28689F6" + min_width: 300 + rewards: [ + { + id: "30032762443F5440" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6DE59CD5F4CF09BF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "453E23E4C7F5870F" + item: "create:smart_chute" + type: "item" + }] + x: 2.5d + y: 0.5d + } + { + dependencies: ["37188F03818AF4E0"] + description: [ + "A &3Blaze Burner&r is a heating component that is required for certain &9Mixing&r recipes. It can be used for heating &7Steam Engines&r, &cBulk Smoking&r, &6Bulk Smelting&r, and as a decorative &elight&r source." + "" + "&6Blaze Burners&r must have &eBlazes&r in them to function. To put a &eBlaze&r in an &3Empty Blaze Burner&r, &aRight-click&r on a &eBlaze&r while holding an &3Empty Blaze Burner&r. Alternatively, an &3Empty Blaze Burner&r can be filled by &aclicking&r on a &0Blaze Spawner&r. This method can be &o&brepeated&r without risk of &o&bdestroying&r the &0Blaze Spawner&r." + ] + id: "0ABEFA4FA1C474F8" + min_width: 300 + rewards: [ + { + id: "3CEEBEBE975B1D85" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "7D145AC1EC36784C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7AB90F6C4CF59AA4" + item: "create:empty_blaze_burner" + type: "item" + }] + x: 0.0d + y: -6.5d + } + { + dependencies: ["014687B2B904513C"] + description: [ + "Be it simple &9Transportation&r of &o&bgoods&r or &o&bpeople&r, or powering a &o&bmoving quarry&r, &6Trains&r offer an elegant solution. " + "" + "&6Trains&r are large mobile contraptions that may be automated by way of &eTrain Stations&r, &3Train Schedules&r, and &2Train Signals&r. They’ll move through &o&bun-loaded&r chunks, making &o&blong-distance&r transport of materials feasible; only the &eStation&r needs to be loaded. &7Drills&r and other machines will not function in &o&bun-loaded chunks&r, however." + "" + "To learn how to Assemble it, I'll suggest to visit the &o&bCreate&r Wiki by &aclicking&r the &o&blink&r below:" + "{\"text\":\"Create Wiki: Train\",\"color\":\"blue\",\"underlined\":\"true\",\"clickEvent\":{\"action\":\"open_url\",\"value\":\"https://create.fandom.com/wiki/Train\"}}" + ] + icon: "create:track" + id: "62D9A1A16024C3CD" + min_width: 300 + rewards: [ + { + id: "0ED5FD60BF220BFA" + type: "xp" + xp: 100 + } + { + id: "06F615CE5CAF09C3" + item: "create:railway_casing" + type: "item" + } + { + exclude_from_claim_all: true + id: "3288141E0B9DFF1B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [ + { + count: 16L + id: "6EB910AAB970DD49" + item: "create:track" + type: "item" + } + { + id: "46ED06FFF6481B08" + item: "create:track_station" + type: "item" + } + { + id: "51F37EEA49A25A12" + item: "create:controls" + type: "item" + } + { + id: "5B5472A962BB6A24" + item: "create:railway_casing" + type: "item" + } + ] + title: "&bTrains" + x: 10.5d + y: -9.0d + } + { + dependencies: ["014687B2B904513C"] + description: [ + "The &9Gantry Carriage&r can be attached to &aGantry Shafts&r and if the &aShaft&r is rotating, it will move the &3Carriage&r along it." + "" + "&9Gantry Carriages&r are a &o&bContraption&r that will collide with unmovable blocks in their path." + "" + "Place &2Gantry Shafts&r along where the &9Gantry Carriage&r will move. Apply &o&brotational power&r to the shafts to move the &9Carriage&r along them, and &o&binvert&r the power to &o&bmove it back&r. Inverting the placement of the shafts will &o&binvert all movement&r. Use a &4Wrench&r to help change the orientation." + "" + "Apply a &cRedstone&r signal to the shaft to &cstop&r the carriage and send &o&brotational power&r through the &9Carriage's&r &coutput&r. This can be used to move another attached &9Gantry Carriage&r." + "" + "&2Gantry Shafts&r attached to the &9Carriage's&r &coutput&r will move along with them &o&bautomatically&r." + ] + hide_dependency_lines: true + id: "75B14A09FE39EDDA" + min_width: 350 + rewards: [ + { + id: "7BAD5AA67CAF1903" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3C1D173586651DA1" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7DA78C3A582368E2" + item: "create:gantry_carriage" + type: "item" + }] + x: 10.5d + y: -6.5d + } + { + dependencies: ["27B9C71CDEC8916F"] + description: [ + "The &9Steam Engine&r provides &o&bRotational Force&r." + "" + "It &coutputs&r the highest &o&bStress Units&r (&eSU&r) capacity of all the survival-mode power-generating blocks. It converts the pressure caused by heating &9Water&r in a &eFluid Tank&r into &o&bRotational Force&r, allowing for large scale item production and multiple contraptions." + "" + "&9Steam Engines&r use &o&bheated water&r for power and are placed on &eFluid Tanks&r used as a &o&bboiler&r. At least &o&b4&r &eFluid Tanks&r and &o&b1&r heat source block are required." + "" + "&6Boilers&r may be heated passively by any &o&bcampfire&r or &o&bmagma block&r, &o&blava&r, however by actively heating them with a &6Blaze Burner&r, they reach much higher temperatures and therefore produce more &eSU&r." + "" + "A &3Shaft&r can be used on the engine to make a &o&bkinetic output&r. The direction of the output can be adjusted through the &o&bValue Settings&r on the side of the engine." + "" + "Increasing the &o&btotal power generate&rd requires that one or more of the three characteristics (&o&7heat&r, &o&7size&r, &o&7water&r) of the &eFluid Tank&r boiler be increased. Multiple &9Steam Engines&r can be attached to a &o&bsingle boiler&r to extract more power; however, this will not increase the &ntotal power generated&r by the boiler." + ] + icon: "create:steam_engine" + id: "5B54E008C558007F" + min_width: 400 + rewards: [ + { + id: "310C8988600BC4B3" + type: "xp" + xp: 50 + } + { + id: "659B44ACBA8B2114" + item: "create:steam_whistle" + type: "item" + } + { + exclude_from_claim_all: true + id: "4FA394975CD65F2A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "7D00F9504A3F354F" + item: "create:steam_engine" + type: "item" + } + { + count: 4L + id: "20A4498D3BC9D9C1" + item: "create:fluid_tank" + type: "item" + } + ] + x: 4.0d + y: -5.0d + } + { + dependencies: ["37188F03818AF4E0"] + description: [ + "Like the &o&bshipping crates&r they replicate, &dItem Vaults&r can hold an &o&benormous number&r of items per block." + "" + "By default, each &dItem Vault&r block has a storage space of &o&b20&r stacks. Items &ncannot&r be &o&badded&r or &o&bremoved&r by the player, but by components such as &7Chutes&r and &3Funnels&r." + "" + "&dItem Vaults&r may be combined to form a &o&bmulti-block&r storage container. The base must remain &nsquare&r and can be expanded up to &o&b3x3&r, while the length can be up to &o&b3x&r the diameter for a &nmaximum&r size of &o&b3x3x9&r, and &nmaximum&r storage space of &o&b1,620&r stacks in one &dItem Vault&r multiblock." + "" + "A &cRedstone Comparator&r can be used to show the &eVault's inventory&r, outputting a signal strength of &o&b15&r when the &dVault&r is &4full&r. A &6Display Link&r can also be used on a &aSmart Observer&r or &5Threshold Switch&r facing the &dVault&r to display its &einventory&r." + "" + "Unlike with other &einventories&r, &1Trains&r will not &o&bautomatically&r take &o&bburnable&r items stored in a &dVault&r to use as &o&bfuel&r." + ] + id: "0FEC8B6C5EBF0D99" + min_width: 300 + rewards: [ + { + id: "0BC4AA147C218447" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "6B623D0715B935F0" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6EC36FA1B3FEB0D3" + item: "create:item_vault" + type: "item" + }] + x: 4.0d + y: -6.0d + } + { + dependencies: ["7116C160D7D6EC46"] + dependency_requirement: "one_completed" + description: [ + "The &aItem Drain&r drains fluid from items such as &o&bbuckets&r and &o&bbottles&r inserted onto it. It's also quite handy for getting fluids out of a &2Basin&r." + "" + "The &aItem Drain&r can hold up to &o&b1,500&rmb of fluid at a time. A &9Fluid Pump&r is needed to &cextract&r the fluid." + "" + "A &2Basin&r will &o&bautomatically&r deposit &coutput&r fluids into an &aItem Drain&r placed &o&bnear it&r." + "" + "It has &o&bsmall internal tank&r, from which fluids can be accessed by &o&bpipes&r." + ] + id: "28D17B54F4DE4D86" + min_width: 300 + rewards: [ + { + id: "6623D7B067F0C09D" + type: "xp" + xp: 10 + } + { + count: 8 + id: "797CD70FE213BEAE" + item: "minecraft:iron_bars" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "5B352975B13BE773" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "251340C776442923" + item: "create:item_drain" + type: "item" + }] + x: 7.0d + y: -2.5d + } + { + dependencies: ["1C2309DB4B890E71"] + description: [ + "&cChocolate Glazed Berries&r are a &o&bfood item&r." + "" + "Eating them restores &o&b7&r &ahunger&r and &o&b80%&r &esaturation&r - making it a &o&bmid-tier food&r item roughly on par with &7Cooked Salmon&r." + ] + id: "29E5C4F82E593A77" + min_width: 250 + rewards: [ + { + id: "6AEE1F3F747727A7" + type: "xp" + xp: 50 + } + { + id: "00CDB085E03F67EB" + item: "create:chocolate_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "42A00496DF2DB3DB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4503732347B62EED" + item: "create:chocolate_glazed_berries" + type: "item" + }] + x: -1.5d + y: -0.5d + } + { + dependencies: ["1C2309DB4B890E71"] + description: [ + "The &2Sweet Roll&r is a food item made from &o&bbread&r and &o&bmilk&r." + "" + "Eating one restores &o&b6&r &ahunger&r and &o&b9&r &esaturation&r - roughly between the &o&bnutritional value&r of &6Cooked Chicken&r and &7Cooked Salmon&r." + ] + id: "376B13BE564CC064" + min_width: 250 + rewards: [ + { + id: "4254BDECD39EDCE0" + type: "xp" + xp: 10 + } + { + id: "1A2F07B679B39A69" + item: "minecraft:milk_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "3D695F21298C4A3E" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5C293AC633C98D7F" + item: "create:sweet_roll" + type: "item" + }] + x: -2.5d + y: -0.5d + } + { + dependencies: ["2FF0BADC06E9B1C2"] + description: [ + "The &dNixie Tube&r can display &o&btext&r or &o&bnumbers&r." + "" + "The &dNixie Tube&r must be mined with a &o&bwooden pickaxe&r or &nhigher&r, or else it &o&bdrops nothing&r." + "" + "A &dNixie Tube&r may be used to display &cRedstone&r signal strength of the &o&bconnected&r redstone component. It will display the &o&bhighest connected&r signal strength." + "" + "When &aRight-clicked&r with a &nnamed&r &2Name Tag&r or a &7Clipboard&r with &o&btext&r, the &dNixie Tube&r as well as &o&badjacent&r &dNixie Tubes&r will &ndisplay&r the text." + "" + "When &2Right-clicked&r with a &5Dye&r the &o&bcolor&r of the text can be &o&bchanged&r. The &5Dye&r is &nnot&r consumed." + "" + "&dNixie Tubes&r can serve as a &o&bsource&r and target for &9Display Links&r. When used as a &o&bsource&r, the content of the &dNixie Tubes&r can be &o&bcopied&r to a target." + ] + id: "23E956EDC52E3EAE" + min_width: 300 + rewards: [ + { + id: "1DD2646496BFB888" + type: "xp" + xp: 10 + } + { + id: "22A1D38D56A43C66" + item: "create:nixie_tube" + type: "item" + } + { + exclude_from_claim_all: true + id: "1D9B2E23ECF000D2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6A3442D6230EE73E" + item: "create:nixie_tube" + type: "item" + }] + x: 5.5d + y: -6.0d + } + { + dependencies: ["60D2C64B06CE5073"] + description: [ + "A &eDisplay Link&r is used to get &o&binformation&r from a block and &o&bsend it&r to blocks that can &o&bdisplay it&r." + "" + "Use the &eDisplay Link&r on a block to &o&blink it&r, and then &o&bplace it&r on the block that will be &o&bread from&r. Though it will &o&blink to any block&r, not every block can act as a &o&bdisplay&r or &o&bsource&r. The &eLink&r can be paused with a &cRedstone&r signal." + "" + "&eDisplay Links&r have a range of &o&b64&r blocks by default." + "" + "&aRight-click&r the &eLink&r to access its &dinterface&r. Additional labels &o&bcan be added&r to the &o&boutput text&r through this &dinterface&r. Some sources provide &o&bmultiple options&r for &nformatting&r the text." + ] + id: "5AE697119ACB7E29" + min_width: 300 + rewards: [ + { + id: "67108003D04A3522" + type: "xp" + xp: 30 + } + { + count: 2 + id: "042ED83BB032EBF2" + item: "alltheores:copper_plate" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "3341BA3937907343" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "59F30ACFF76B79C2" + item: "create:display_link" + type: "item" + }] + x: -4.5d + y: -6.0d + } + { + dependencies: ["27B9C71CDEC8916F"] + description: [ + "A &aClipboard&r can be used to &9copy&r and &epaste&r a &o&bblock's settings&r, keep track of a &o&bSchematicannon's checklist&r, or another &b&bwritten checklist&r." + "" + "Use a &aClipboard&r in hand or use a placed &aClipboard&r to access its &dinterface&r. Items on the &3checklist&r can be &o&bwritten out&r or &o&bchecked off&r, or all &o&bchecked items&r can be &cerased&r." + "" + "&bCopying and Pasting&r:" + "Use the &aClipboard&r on a block with &1Value Settings&r to &o&bcopy them&r, such as a &6Brass Funnel&r or a &3Mechanical Bearing&r, then &aLeft-click&r another to &o&bpaste them&r. When pasting a setting including a &0filter&r, having a &0filter&r in the &7inventory&r will be &nrequired&r to paste the setting." + "" + "&o&bSchematicannon&r:" + "Put the &aClipboard&r in a ready &9Schematicannon&r to get the &dSchematicannon's Checklist&r. Like with a &7Book and Quill&r, the &aClipboard's&r checklist can be &o&bupdated&r by putting it in the &9Schematicannon&r again. Items can also be &o&bchecked off manually&r. Once finished with the &dSchematicannon's Checklist&r, the &aClipboard &rcan be blanked again by either using the \"&o&bErase checked items&r\" option, or putting it through the &3Crafting Grid&r." + "" + "Displaying Text:" + "A &aClipboard&r can also paste text written in it to a &1Display Board&r or &dNixie Tubes&r. &dNixie Tubes&r will only take text from the &aClipboard's&r first bullet point, whereas &1Display Boards&r will attempt to display all of a &aClipboard's&r points from the &aClipboard's&r selected page. Pasting text onto a &1Display Board&r from a &aClipboard&r works much like using a &cName Tag&r on it." + ] + id: "7FACF6929EB8E339" + min_width: 400 + rewards: [ + { + id: "2B3C31B8C7073F77" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "478B509182BF1C3C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2C9E5C8E5264CE9B" + item: "create:clipboard" + type: "item" + }] + x: 1.0d + y: -5.0d + } + { + dependencies: ["60D2C64B06CE5073"] + description: [ + "The &2Threshold Switch&r measures &o&bhow full&r an &einventory&r is and can emit a &cRedstone&r signal at adjustable &2Thresholds&r. This is shown as a &o&bchest icon&r on one of the red bars in the &dinterface&r." + "" + "When placed by the &o&bplayer&r, the &2Threshold Switch&r will attempt to orient itself toward an adjacent &einventory&r. If multiple or no &einventories&r are present, the &2Threshold Switch&r may orient itself toward the player and can be adjusted as normal using the &cWrench&r. At present, it &ncannot&r be oriented &o&bvertically&r." + "" + "Item &2Thresholds&r can be set to &o&bdetermine&r when the &credstone&r signal turns &9on&r or &coff&r. When the &2Switch&r is first placed, it stays &coff&r until it reaches &o&b75%&r &einventory&r, then stays &9on&r until it reaches &o&b25%&r &einventory&r." + "" + "{image:kubejs:textures/item/switch_gui.png width:100 height:50 align:1}" + "" + "The &o&bchest icon&r represents how full the &einventory&r is, as well as the current signal state (&9on&r/&coff&r) depending on which lane the &o&bchest icon&r is in. The arrows represent &einventory&r thresholds, illustrated by the &o&bchest icon&r switching lanes upon reaching the arrow." + "" + "The signal can be &o&binverted&r by &aclicking&r the button showing &o&btwo opposing arrows&r next to the lower &2Threshold&r bar." + ] + id: "30A0847AD5C43D7F" + min_width: 400 + rewards: [ + { + id: "4BAD0AB3EF3A4606" + type: "xp" + xp: 10 + } + { + id: "402D35E238C5414A" + item: "minecraft:comparator" + random_bonus: 1 + type: "item" + } + { + count: 2 + id: "4F47330C05324103" + item: "create:shaft" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4C93E525F44F1C5C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "59E3AC28EBF773DC" + item: "create:stockpile_switch" + type: "item" + }] + x: -7.0d + y: -5.0d + } + { + dependencies: ["60D2C64B06CE5073"] + description: [ + "The &9Smart Observer&r is a machine that emits a &cRedstone&r signal dependent on the block or items inside a container in &o&bfront of it&r." + "" + "If the &9Smart Observer&r is placed with the &o&bfront facing&r a container such as a &eMechanical Belt&r, &6Funnel&r or &3Fluid Pipe&r, it will emit a &cRedstone&r signal when an item is detected inside. A &9Smart Observer&r will also emit a signal if the block placed in front of it matches the &0Filter&r." + "" + "If a &0Filter&r is applied to the &9Smart Observer&r, it will only emit a &cRedstone&r signal when the item in the &0Filter&r is detected." + ] + id: "2943B8BAC4329505" + min_width: 400 + rewards: [ + { + id: "5F5F4CE35F7A48A5" + type: "xp" + xp: 20 + } + { + id: "4ECF3DD4BEC65B1A" + item: "minecraft:observer" + random_bonus: 1 + type: "item" + } + { + count: 2 + id: "50A16A29088B1EEC" + item: "minecraft:repeater" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "548F06F8360ECB10" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "269D87099BAF8741" + item: "create:content_observer" + type: "item" + }] + x: -5.0d + y: -5.0d + } + { + dependencies: ["37188F03818AF4E0"] + description: [ + "The &9Fluid Tank&r is a fluid storage mechanism that can store up to &o&b8,000&r mB of fluid per block." + "" + "Fluids can be &o&bstored&r and &o&bextracted&r from &9Fluid Tanks&r via &1Fluid Pipe&r. The fluid pipes can be &o&bplaced&r on any face of the &9Fluid Tank&r: &o&btop&r, &o&bbottom&r, or &o&bsides&r. The window of a tank &o&bcan be toggled&r with a &cWrench&r." + "" + "The direction of flow in the fluid pipe &o&bindicates&r whether fluids will be put into the tank or &aextracted&r from the tank; if fluid is flowing towards the tank, the fluid will be &estored&r in the tank. Likewise, if a fluid pipe is flowing away from the tank (via &aMechanical Pump&r), then fluid from the tank will be &o&bextracted&r into that pipe." + "" + "&9Fluid Tanks&r will merge with adjacent tanks, up to a maximum of &o&b3x32x3&r, allowing to store up to &o&b2,304&r buckets of &nany fluid&r." + "" + "The placement of fluid pipe connections to the tank is &o&bnot important&r for functionality. For instance, an &aextracting&r pipe can be placed at the &o&btop&r of a tank and still remove fluid from the tank, even if the fluid tank is not &o&bcompletely full&r." + ] + id: "66033C267FEE79D7" + min_width: 340 + rewards: [ + { + id: "7B8C43297D4D797B" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "3A16902123DF591D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "361FB4DFFA847BA0" + item: "create:fluid_tank" + type: "item" + }] + x: 1.0d + y: -6.0d + } + ] + title: "&3&oCreate" +} diff --git a/minecraft/config/ftbquests/quests/chapters/credits.snbt b/minecraft/config/ftbquests/quests/chapters/credits.snbt new file mode 100644 index 0000000..7810a4c --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/credits.snbt @@ -0,0 +1,137 @@ +{ + autofocus_id: "EE50FF6077108820" + default_hide_dependency_lines: false + default_quest_shape: "circle" + filename: "credits" + group: "6CD934EDA78DBCD0" + icon: "minecraft:golden_apple" + id: "69B74EE6298524C7" + order_index: 0 + quest_links: [ ] + quests: [ + { + description: [ + "Monumental Experience is the result of a lot of work from a lot of people — many of whom you'll never see in the mod list or patch notes." + "" + "This chapter is dedicated to everyone who has put their time and effort into making this pack what it is." + "" + "From bug reports to content, from emotional support to actual development — every single person listed here has made this pack better." + "" + "&eThank you all.&r" + ] + icon: "minecraft:golden_apple" + id: "5AA8B5BAD585D1F0" + min_width: 320 + rewards: [{ + id: "4B21199414B90001" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "5B8093923DB328F3" + title: "Read the credits" + type: "checkmark" + }] + title: "&e&lCredits" + x: 0.0d + y: 0.0d + } + { + description: [ + "&dCyn-SolveroftheAbsoluteGremlins&r has been an invaluable part of the Monumental Experience team as a dedicated support staff member and bug fixer." + "" + "Tracking down obscure crashes, hunting gremlins in the configs, and helping players work through issues — Cyn does the unglamorous work that keeps the pack running smoothly for everyone." + "" + "If you've ever had a bug fixed or a question answered in the Discord, there's a good chance Cyn had a hand in it." + "" + "&7Thank you for keeping the gremlins at bay.&r" + ] + icon: { + Count: 1 + id: "minecraft:iron_sword" + tag: { + Damage: 0 + } + } + id: "084C83828F393BA7" + min_width: 340 + rewards: [{ + id: "41D1CD9EFDFF4EFC" + type: "xp" + xp: 20 + }] + subtitle: "&oSupport Staff and Bug Fixer" + tasks: [{ + id: "1B2ECCEEE3465DA6" + title: "Appreciate Cyn's hard work" + type: "checkmark" + }] + title: "&dCyn-SolveroftheAbsoluteGremlins" + x: -3.0d + y: 2.0d + } + { + description: [ + "&9GeekTechMedia&r is a content creator and YouTuber who has covered Monumental Experience and helped bring the pack to a wider audience." + "" + "Creating videos, guides, and let's plays takes real time and effort — and having someone passionate enough to make content about your modpack means the world to a developer." + "" + "If you found this pack through a video, GeekTechMedia may well be the reason you're here right now." + "" + "&7Go check out their channel and show some love.&r" + ] + icon: "minecraft:spyglass" + id: "016FEEFEAC6E7DD1" + min_width: 340 + rewards: [{ + id: "25CC80BC1895C5A7" + type: "xp" + xp: 20 + }] + subtitle: "&oYouTuber and Content Creator" + tasks: [{ + id: "2DCF388B8490E54D" + title: "Check out GeekTechMedia on YouTube" + type: "checkmark" + }] + title: "&9GeekTechMedia" + x: 0.0d + y: 2.0d + } + { + description: [ + "&dDexxKnight1&r is a fellow modpack developer and a key contributor to Monumental Experience — lending experience, feedback, and direct development work to help shape the pack into what it is today." + "" + "Dexx is also the creator of &dAge of Fate&r, &9Tech Revolution&r, and &2Jurassic World Reborn 2&r — all fantastic packs in their own right." + "" + "Having another experienced developer in your corner makes an enormous difference. Monumental Experience is better because of Dexx's involvement." + "" + "&7Check out the Other Projects chapter to see what Dexx has been building.&r" + ] + icon: { + Count: 1 + id: "minecraft:diamond_sword" + tag: { + Damage: 0 + } + } + id: "4C8A6EA539853EC9" + min_width: 360 + rewards: [{ + id: "6C339CDC65876878" + type: "xp" + xp: 20 + }] + subtitle: "&oPack Developer and Contributor" + tasks: [{ + id: "745C44EF814F332E" + title: "Check out Dexx's projects" + type: "checkmark" + }] + title: "&dDexxKnight1" + x: 3.0d + y: 2.0d + } + ] + title: "&e&lCredits" +} diff --git a/minecraft/config/ftbquests/quests/chapters/cursed_ring.snbt b/minecraft/config/ftbquests/quests/chapters/cursed_ring.snbt new file mode 100644 index 0000000..a5fd2bd --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/cursed_ring.snbt @@ -0,0 +1,87 @@ +{ + always_invisible: true + autofocus_id: "5291710C67E2D280" + default_hide_dependency_lines: false + default_quest_shape: "" + disable_toast: true + filename: "cursed_ring" + group: "" + id: "7788964B831B31CA" + order_index: 3 + quest_links: [ ] + quests: [ + { + dependencies: ["31F65F523E4DB7A7"] + id: "5291710C67E2D280" + rewards: [{ + auto: "invisible" + command: "/ftbquests change_progress @s complete 2D4EE2B866D8CE35" + elevate_perms: true + id: "0E1CFD22ED1B996A" + ignore_reward_blocking: true + silent: true + team_reward: false + type: "command" + }] + tasks: [{ + advancement: "enigmaticlegacy:main/cursed_ring" + criterion: "" + id: "26F99F61DDD7D08B" + type: "advancement" + }] + title: "Complete Sweet Dreams" + x: 2.5d + y: -1.0d + } + { + dependencies: ["2D4EE2B866D8CE35"] + id: "6A0F0956AA21ECF3" + rewards: [{ + auto: "invisible" + command: "/ftbquests change_progress @s complete 403527DC1B8E4FBC" + elevate_perms: true + id: "45059B59812519CD" + ignore_reward_blocking: true + silent: true + team_reward: false + type: "command" + }] + tasks: [{ + advancement: "enigmaticlegacy:main/cursed_ring" + criterion: "" + id: "08A5586C0E77C5E0" + type: "advancement" + }] + title: "Complete Sleeping Bags" + x: 2.0d + y: -1.5d + } + { + dependencies: [ + "2D4EE2B866D8CE35" + "403527DC1B8E4FBC" + ] + id: "7AF4229045682E3F" + rewards: [{ + auto: "invisible" + command: "/ftbquests change_progress @s complete 78D285EF0AC46A6B" + elevate_perms: true + id: "5F83B8D3A9086DEE" + ignore_reward_blocking: true + silent: true + team_reward: false + type: "command" + }] + tasks: [{ + advancement: "enigmaticlegacy:main/cursed_ring" + criterion: "" + id: "6B00F6CD11581638" + type: "advancement" + }] + title: "Complete Hammocks" + x: 1.5d + y: -1.0d + } + ] + title: "Cursed Ring" +} diff --git a/minecraft/config/ftbquests/quests/chapters/cyclic.snbt b/minecraft/config/ftbquests/quests/chapters/cyclic.snbt new file mode 100644 index 0000000..2c826ae --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/cyclic.snbt @@ -0,0 +1,4373 @@ +{ + autofocus_id: "412C40C9937931B9" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "cyclic" + group: "69B9F7247002FE35" + icon: "cyclic:user" + id: "53AA952BECFDE713" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 0.154761904761898d + y: -15.607142857142854d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 7.0d + y: -10.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 11.0d + y: -10.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 6.5d + y: -17.5d + } + { + height: 2.5d + image: "cyclic:block/magnet/face" + rotation: 45.0d + width: 2.5d + x: 9.0d + y: -10.0d + } + { + height: 1.0d + image: "cyclic:item/lightning_scepter_arc" + rotation: 0.0d + width: 1.0d + x: -4.5d + y: -17.5d + } + { + height: 1.0d + image: "cyclic:item/lightning_scepter_arc" + rotation: 0.0d + width: 1.0d + x: -5.5d + y: -17.5d + } + { + height: 1.0d + image: "cyclic:block/spike/spikes_curse_side" + rotation: 0.0d + width: 3.0d + x: 8.0d + y: -17.25d + } + { + height: 1.0d + image: "cyclic:block/spike/spikes_curse_side" + rotation: 0.0d + width: 3.0d + x: 5.0d + y: -17.25d + } + { + height: 1.0d + image: "cyclic:block/spike/spikes_curse_side" + rotation: 180.0d + width: 3.0d + x: 5.0d + y: -17.75d + } + { + height: 1.0d + image: "cyclic:block/spike/spikes_curse_side" + rotation: 180.0d + width: 3.0d + x: 8.0d + y: -17.75d + } + { + height: 1.0d + image: "cyclic:block/_unused/gold_ore" + rotation: 0.0d + width: 1.0d + x: -4.214285714285715d + y: -13.767857142857139d + } + { + height: 1.0d + image: "cyclic:block/_unused/redstone_ore" + rotation: 0.0d + width: 1.0d + x: -3.5714285714285694d + y: -13.767857142857139d + } + { + height: 1.0d + image: "cyclic:block/ores/diamond" + rotation: 0.0d + width: 1.0d + x: -4.857142857142861d + y: -13.767857142857139d + } + { + height: 2.5d + image: "kubejs:textures/item/fire.png" + rotation: -90.0d + width: 1.0d + x: 3.0d + y: -17.5d + } + { + height: 2.5d + image: "kubejs:textures/item/firef.png" + rotation: 90.0d + width: 1.0d + x: 10.0d + y: -17.5d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + description: [ + "&6Cyclic&r is a mod by &dLothrazar&r. It features helpful items, blocks, inventory features, world generation, simple machines, gameplay tweaks, new villagers, and more changes that do not follow any particular theme." + "" + "In the words of the author:" + "" + "\"&o&bI just went ahead and added all the features that I wished were in the base game into one mod. So just a ton of random items and changes that have no consistent theme other than I thought they would be fun&r\"." + ] + id: "6725FEA36C75E603" + min_width: 300 + rewards: [{ + id: "386B8B75D420FD1A" + type: "xp" + xp: 10 + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "cyclic:cyclic_guide_book" + } + } + id: "5CB01BF4976EB60C" + type: "checkmark" + }] + title: "Welcome to &aCyclic" + x: -0.5d + y: -15.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &2Block Placer&r will place a block from its &einventory&r in the direction it is facing &o&bwhenever it can&r." + "" + "The &9Fluid Placer&r places fluid from its internal &atank&r in the direction it is facing, &o&bif possible&r." + ] + hide_dependency_lines: true + id: "111138B59C810AD6" + min_width: 250 + rewards: [ + { + id: "797D4561B0D31022" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "55B8DA59DF6EA333" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "7463402FAE2D897B" + item: "cyclic:placer" + type: "item" + } + { + id: "4AB1A3ECF75F58BE" + item: "cyclic:placer_fluid" + type: "item" + } + ] + title: "Block \\& Fluid Placer" + x: 3.5d + y: -9.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "&2Block Breaker&r can be used to break the block placed directly in &o&bfront&r of it, like a &o&bplayer would&r. &2Block Breaker&r doesn't require &cenergy&r to operate." + "" + "&2Block Breaker&r do not have &o&binternal item storage&r, so the broken blocks (or its loot) &cwill not&r be picked up. The &9Item Collector&r it's a good solution to pick up items without any cost of &4energy&r." + ] + hide_dependency_lines: true + id: "7B2B5E663DAD0BA1" + min_width: 250 + rewards: [ + { + id: "765F6D74DF4ACA5D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "7FB1F03B96A3F87C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "550AD6B345546727" + item: "cyclic:breaker" + type: "item" + }] + x: 3.5d + y: -11.0d + } + { + dependencies: ["1D439E19BDC4A7AA"] + description: [ + "The &2Item User&r is a powerful machine that uses the item given to it to &nright&r/&nleft&r click the block in &o&bfront&r of it with a configurable &o&btime delay&r." + "" + "The &2Item User&r requires &cenergy&r to operate." + ] + hide_dependency_lines: true + id: "59AF21CC68FA1FA5" + min_width: 250 + rewards: [ + { + id: "58D93FCF5C81F8E1" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "40FBC95B5EA283D3" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "039B0F2A499D34AC" + item: "cyclic:user" + type: "item" + }] + x: 4.5d + y: -11.0d + } + { + dependencies: ["0D5815CC13FE563D"] + description: ["&2Precise Dropper&r drops blocks from its internal buffer at a configurable &o&bstack size&r, &o&bdistance&r, and &o&bdelay&r."] + hide_dependency_lines: true + id: "4A65BC007F778F5D" + min_width: 250 + rewards: [ + { + id: "34DD1B19391A7A27" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "723BC1BC718C63D5" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "6117BDDE75538647" + item: "cyclic:dropper" + type: "item" + }] + x: 3.5d + y: -10.0d + } + { + dependencies: ["08D359D021E423FE"] + description: [ + "The &2Forester&r will attempt to place &asaplings&r in the area between &o&b1x1&r and &o&b21x21&r in front of itself, and &3harvest&r them when the saplings grow into &7trees&r, but will not pick up items." + "" + "It's time for &9Item Collector,&r again!" + "" + "The &6Harvester&r will gently &o&bfarm crops&r in an area between &o&b1x1&r and &o&b25x25&r horizontally, and vertically in both direction between &o&b1&r and &o&b64&r blocks, &o&breplanting&r the &eseeds&r (if any) after breaking the &ecrop&r." + ] + hide_dependency_lines: true + id: "7B72F9ACBD2A55AC" + min_width: 300 + rewards: [ + { + id: "76EECCF58A4D11CB" + type: "xp" + xp: 100 + } + { + count: 4 + id: "4006A8AD4A572A6E" + item: "minecraft:spruce_sapling" + random_bonus: 4 + type: "item" + } + { + count: 4 + id: "65C8ECDD4364D268" + item: "minecraft:oak_sapling" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "60DF76B98FAA2FB9" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "774A20C92351FAD4" + item: "cyclic:forester" + type: "item" + } + { + id: "2F6CAE9073CBE0F8" + item: "cyclic:harvester" + type: "item" + } + ] + title: "Forester \\& Harvester" + x: 5.5d + y: -9.0d + } + { + dependencies: ["1D439E19BDC4A7AA"] + description: [ + "Mines a configurable area between &o&b1x1&r and &o&b25x25&r horizontally, and vertically in both direction between &o&b1&r and &o&b64&r blocks. in front of the &2Miner&r." + "" + "Will attempt to mine with any &o&btool you provide it&r." + "" + "&eBlockstate Data Card&r can be used on a block to &o&bread&r and &o&bremember&r its block state." + "" + "&aSneak&r while using to filter on the block only. Can store a list of &o&b18&r blockstates. Put in any &3Crafting&r grid to erase the list. It can distinguish between identical blocks in different states such as &o&brotated stairs&r, &o&bdouble slabs&r, etc. if in exact [&o&bblockstate&r] mode." + ] + hide_dependency_lines: true + icon: "cyclic:miner" + id: "4B61F4CF32C2F44A" + min_width: 300 + rewards: [ + { + id: "639818E28E0E200C" + type: "xp" + xp: 10 + } + { + id: "221FFFD108960EBD" + item: { + Count: 1 + id: "minecraft:iron_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0613AE10FC37062A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "79CD517E5784566A" + item: "cyclic:miner" + type: "item" + } + { + id: "67DCC27CF9938A58" + item: "cyclic:blockstate_data" + type: "item" + } + ] + x: 4.5d + y: -9.0d + } + { + dependencies: ["08D359D021E423FE"] + description: [ + "The &2Shape Builder&r is an advanced building machine, and has a &o&bfixed set of shapes&r such as &ePyramid&r, &9Sphere&r, &cCylander&r, etc." + "" + "Using &cpower&r and &ablocks&r you can build &b&oany shape you want&r. Also can be used &4Shape Data Cards&r for &o&bcustom shapes&r." + "" + "Place in a &6Shape Computer&r or a &2Shape Builder&r to load with data, then click on a block to load its block." + "" + "Place &o&b2&r &9GPS Cards&r and &o&b1&r &cShape Card&r, then you can &o&bread&r, &o&bcopy&r, &o&bpaste&r, and &o&bmerge&r shapes together." + ] + hide_dependency_lines: true + icon: "cyclic:structure" + id: "4C0292782F9B81F4" + min_width: 250 + rewards: [ + { + id: "5DC05C5BE8C0D701" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "2B73BDEE51E87413" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "722D332723E86FCD" + item: "cyclic:structure" + type: "item" + } + { + id: "4095E2F1BCB00C2F" + item: "cyclic:computer_shape" + type: "item" + } + { + id: "47684E6BBA07A004" + item: "cyclic:shape_data" + type: "item" + } + { + count: 2L + id: "1616AAE1E95EB35D" + item: "cyclic:location_data" + type: "item" + } + ] + title: "The Shape Builder" + x: 5.5d + y: -11.0d + } + { + dependencies: ["1D439E19BDC4A7AA"] + description: [ + "The &2Item Collector&r picks up nearby items and stores them in its &einternal buffer&r. Items can be taken directly out of the buffer, or &o&bpiped out&r." + "" + "The &2Item Collector&r operates in a area between &o&b1x1&r and &o&b25x25&r horizontally, and vertically in both direction between &o&b1&r and &o&b64&r blocks. Toggle preview switch &non&r/&noff&r to see working area. &2Item Collector&r accepts &3Filter Data Card&r as well." + "" + "The &9Fluid Collector &rcollects fluid from the area between &o&b1x1&r and &o&b25x25&r in front of and between &o&b1&r and &o&b64&r below it, &o&breplacing&r the collected fluids with blocks from its &einternal buffer&r." + "" + "Will &cnot&r collect fluid unless it has &o&breplacement blocks&r in its buffer, &nto prevent lag&r." + ] + hide_dependency_lines: true + id: "50C3683D4BE69085" + min_width: 300 + rewards: [ + { + id: "1098EE4D082147E9" + type: "xp" + xp: 50 + } + { + id: "74AA9B9545AEA38B" + item: "minecraft:bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "4F4BB06BEDF3EFE8" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "5F3EE4D376ADFA02" + item: "cyclic:collector" + type: "item" + } + { + id: "0AC583C3CCF369D7" + item: "cyclic:collector_fluid" + type: "item" + } + ] + title: "Item \\& Fluid Collector" + x: 4.5d + y: -10.0d + } + { + dependencies: ["08D359D021E423FE"] + description: ["&dPackage&r matching items together. Compatible with all &o&b2x2&r, &o&b3x3&r recipes that are specifically merging identical items together such as &7Iron Blocks&r or &4Bricks&r."] + hide_dependency_lines: true + id: "5CC5BC642537960F" + min_width: 300 + rewards: [ + { + id: "5B72C090953BC5C9" + type: "xp" + xp: 50 + } + { + id: "0CA2A67E2DA3AC87" + item: "cyclic:gem_amber" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "6CF6D8F46348AD59" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "7CA6C18363EEFE7A" + item: "cyclic:packager" + type: "item" + }] + x: 5.5d + y: -10.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: ["The &dWorkbench&r is a simple &eCrafting Table&r that &nkeeps&r its inventory when closed."] + id: "07D94600EFF47688" + rewards: [ + { + id: "2B1C7B0A2934929F" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "07DEF5F1A8E9D579" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "00CC1955B6704E63" + item: "cyclic:workbench" + type: "item" + }] + x: -2.0d + y: -15.0d + } + { + dependencies: ["70D20CD1E662D529"] + id: "08D359D021E423FE" + rewards: [ + { + id: "6410700B7189521D" + type: "xp" + xp: 30 + } + { + id: "36659795C9E79990" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "0752B71B5BFB4EED" + item: "cyclic:gem_amber" + type: "item" + }] + x: 1.0d + y: -10.0d + } + { + dependencies: ["70D20CD1E662D529"] + id: "0C5C34A36AF49CD8" + rewards: [ + { + id: "7DFBA03E5B710B68" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7E9BCBF26B362E4F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0A28AB5B7385E05D" + item: "cyclic:gem_obsidian" + type: "item" + }] + x: 1.0d + y: -9.0d + } + { + dependencies: ["158B65BD64114835"] + description: ["The &dSolidification Chamber&r combines various &o&bfluids&r and &o&bingredients&r to &o&bsolidify&r them into something else, usually to make &o&bnew crafting ingredients&r such as &6Crysallized Amber&r, &5Crysallized Obsidian&r, &cEnriched Peat&r, etc..."] + id: "70D20CD1E662D529" + min_width: 300 + rewards: [ + { + id: "607A76EE1764036D" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "58EFEF9C0E301B34" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3B07BF8474B017E3" + item: "cyclic:solidifier" + type: "item" + }] + x: -0.5d + y: -9.5d + } + { + dependencies: ["0D5815CC13FE563D"] + description: ["The &2Melter&r, as its name implies, melts ingredients into various liquids using &cenergy&r."] + id: "158B65BD64114835" + rewards: [ + { + id: "6F905A8D0B81B3D1" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "6A1D834E906612B2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3CC953B0F4280CEE" + item: "cyclic:melter" + type: "item" + }] + x: -0.5d + y: -11.0d + } + { + dependencies: ["0C5C34A36AF49CD8"] + description: [ + "&2Uncrafting Grinder&r will lookup and reverse any &eVanilla&r &o&b2x2&r or &o&b3x3&r recipe." + "" + "May not work with specialized &dModded&r &nrecipes&r/&nmachine recipes&r." + ] + id: "0704DAF4B84D0581" + rewards: [ + { + id: "653C7B4C7C0ECE05" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "61C0AD5E788EEDDC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "434C4FDBA4FF57C3" + item: "cyclic:uncrafter" + type: "item" + }] + x: 0.0d + y: -8.0d + } + { + dependencies: ["29A9BBF53AA9CD4A"] + description: [ + "The &2Storage Bag&r can be used as a &o&3portable inventory&r with &o&b81&r slots of storage space." + "" + "&eRight-click&r with the bag in hand to open it. The bag can be set to &o&bpickup&r items, &o&brefill&r your hotbar, or to &o&bdeposit&r its items into &nany&r inventory on &eRight-click&r." + ] + id: "46C2F0D83ECD1BA9" + rewards: [ + { + id: "1F2E1C101AB23D5F" + type: "xp" + xp: 10 + } + { + id: "785CC82730CFC91A" + item: "minecraft:chest" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "41201DC1ACC689FE" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "24C918BCC923B17D" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 81 + } + } + id: "cyclic:storage_bag" + tag: { } + } + type: "item" + }] + title: "&fStorage Bag" + x: 4.0d + y: -14.5d + } + { + dependencies: ["46C2F0D83ECD1BA9"] + description: [ + "The &2Ender Bag&r provides a portable interface to your &dEnder Chest&r." + "" + "Anything you store in your &dEnder Chest&r inventory can be accessed via the &2Ender Bag&r, and vice versa." + ] + id: "6C13DD18D4B70D14" + rewards: [ + { + id: "0E344C26D3CA0C9C" + type: "xp" + xp: 10 + } + { + count: 2 + id: "5BE2BB1C726C402F" + item: "minecraft:ender_eye" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4BF5F40D31C27EAA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "10353EBE2025B585" + item: "cyclic:ender_bag" + type: "item" + }] + x: 5.5d + y: -15.0d + } + { + dependencies: ["46C2F0D83ECD1BA9"] + description: [ + "The &2Sack of Holding&r is is used to transport a container with its contents." + "" + "&aShift+Right-click&r on a tile entity to &o&bpick it up&r, and &aRight-click&r to &o&bplace it down&r." + "" + "All items of the container stays &o&bintact&r." + ] + id: "0C3C98FBE3F3110B" + rewards: [ + { + id: "5A176DA76F4FD3AE" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0E64ECF56D3BA304" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3F18638E6F5DDD62" + item: "cyclic:tile_transporter_empty" + type: "item" + }] + x: 5.5d + y: -14.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &9Monster Ball&r can be thrown at a creature to &o&bcapture it&r." + "" + "The creature &o&bwill remain&r in the ball until you &aRight-click&r a block with the &9Monster Ball&r in hand to &o&brelease it&r." + "" + "An &o&beasier&r alternative to transporting &emobs&r with leashes or minecarts." + ] + hide_dependency_lines: true + id: "69D348A55F4E48A4" + min_width: 300 + rewards: [ + { + id: "484AD18FAACEF5D1" + type: "xp" + xp: 40 + } + { + id: "640973E067C2BCAD" + item: "minecraft:amethyst_shard" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "69A65F76E780B59B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "731D5CF0FBEA2932" + item: "cyclic:magic_net" + title: "Monster Ball" + type: "item" + }] + x: 7.5d + y: -14.5d + } + { + dependencies: ["50C8020FC4A7313B"] + description: [ + "&4Ender Orb&r is an &3Ender Pearl&r that can be &o&bthrown&r, &o&bpicked up&r, and &nthrown again&r." + "" + "&1Ender Orb Translocator&r ia an &o&denhanced&r &3Ender Pearl&r that also &o&bcarries the user&r when thrown." + ] + id: "712BFCF2C39AD263" + min_width: 250 + optional: true + rewards: [ + { + id: "7C8366A402828CD8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4681EB36A69022A4" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [ + { + id: "193E9A77A2F3C262" + item: { + Count: 1 + id: "cyclic:ender_pearl_reuse" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "62CB5209FABA9607" + item: { + Count: 1 + id: "cyclic:ender_pearl_mounted" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "The Ender Orbs" + x: 7.5d + y: -12.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &6Torch Launcher&r shoots a &2Torch&r with considerable force in the direction you are &o&bfacing&r, placing the &2Torch&r wherever it lands." + "" + "Automatically consumes &2Torches&r in your inventory to &o&brefill itself&r." + ] + hide_dependency_lines: true + id: "46114E63F64D2795" + rewards: [ + { + id: "73CBB592426331E1" + type: "xp" + xp: 10 + } + { + count: 8 + id: "14CA71EDF86D554D" + item: "minecraft:torch" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "2638569ACB063B29" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7C0CF9C4D542FCDC" + item: { + Count: 1 + id: "cyclic:torch_launcher" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.5d + y: -13.5d + } + { + dependencies: ["40D728B0C5A8EB5D"] + description: [ + "&cEnergy Cable&r:" + "Transport energy between blocks. Has &o&bextraction&r mode with a &3filter&r &o&bGUI&r, and a &eyellow&r blocked state to &0disable&r the flow. Maximum of &o&b32,000&r &cRF&r/t." + "" + "&aItem Cable&r:" + "Can only transport items and energy between blocks. Has &o&bextraction&r mode with a &3filter&r &o&bGUI&r, and a &eyellow&r blocked state to &0disable&r the flow. Max speed is &o&b64&r &aitems&r/t in &neach direction&r." + "" + "&9Fluid Cable:" + "Pipe liquid between blocks. Has extraction mode with a &3filter&r &o&bGUI&r, and a &eyellow&r blocked state to &0disable&r the flow. Also &o&bcollects&r fluid from the world. Maximum of &o&b16&r &7buckets&r/t." + ] + id: "2715C4F1B35B34D3" + min_width: 300 + rewards: [ + { + id: "4A2CB1D3C272F845" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1474ACEF58C52E93" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + count: 8L + id: "7DE6B05F3089B6DC" + item: "cyclic:energy_pipe" + type: "item" + } + { + count: 8L + id: "731F196235A89B0F" + item: "cyclic:item_pipe" + type: "item" + } + { + count: 8L + id: "39062D76C73F976D" + item: "cyclic:fluid_pipe" + type: "item" + } + ] + title: "Cables" + x: -0.5d + y: -18.0d + } + { + dependencies: ["2715C4F1B35B34D3"] + description: [ + "The &9Wireless Redstone Transmitter&r and &cWireless Redstone Receiver&r allow you to transmit redstone signals between distant points." + "" + "Place a Wireless Receiver in the world and use a &dGPS Marker&r on it to store its &o&bcoordinates&r. Then insert the &dGPS Marker&r into a &9Redstone Transmitter&r." + "" + "Anytime the &9Transmitter&r receives a redstone signal, it will cause all linked &cReceivers&r to receive &o&bthe same signal&r." + "" + "&eRight-click&r on a block with the &dGPS Marker&r in hand to save its position to the Marker. Markers with &o&bsaved locations&r can be used in multiple machines from this mod such as &6Shape Builder&r." + ] + id: "5416FE933966639A" + min_width: 350 + rewards: [ + { + id: "6B92F3CBBCF23E26" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0A67CD8367A6F852" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "12D6F67857246870" + item: "cyclic:wireless_receiver" + type: "item" + } + { + id: "0841164B8F19F704" + item: "cyclic:wireless_transmitter" + type: "item" + } + { + id: "67719FD758784D3F" + item: "cyclic:location_data" + type: "item" + } + ] + title: "Wireless Redstone Receiver \\& Transmitter" + x: -1.5d + y: -18.0d + } + { + dependencies: ["0C5C34A36AF49CD8"] + description: [ + "The &dDisenchanter&r can &o&btake an enchantment off&r of an item and apply it to a &ebook&r." + "" + "Only one &denchantment&r is stripped at a time, so items with multiple &denchantments&r will need to be disenchanted &o&bmultiple&r times." + ] + id: "56FAB0452F74878E" + min_width: 300 + rewards: [ + { + id: "43E065A7EF204DCA" + type: "xp" + xp: 10 + } + { + count: 4 + id: "59390D85F1523116" + item: "minecraft:book" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "61A716220DE334B5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5ABFA858AC392049" + item: "cyclic:disenchanter" + type: "item" + }] + x: 2.0d + y: -8.0d + } + { + dependencies: ["07DB9D794A472F53"] + description: [ + "The &5Battery&r stores &o&b6,4000,000&r&cRF&r." + "" + "&cPower&r can be transferred &o&bto&r and &o&bfrom&r the &5Battery&r via &6Cables&r or by placing machines directly adjacent to the &5Battery&r." + "" + "&aItems&r can also be &o&bcharged&r in the charge slot on bottom right corner." + ] + id: "42B4E694DFD02ACD" + min_width: 300 + rewards: [ + { + id: "2E9409E474787D15" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0DBCBBBD0EE88AFB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.3d + tasks: [{ + id: "0A2D0874C9F87702" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0 + } + } + } + id: "cyclic:battery" + } + type: "item" + }] + x: -5.0d + y: -17.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "Place the &9Fishing Net &rin water and give it a &aFishing Rod&r and it will &o&bautomatically catch fish&r. " + "" + "Caught fish will be &o&bdropped&r in the world and need to be picked up &b&omanually&r or by other machines like &2Item Collector&r for example." + ] + hide_dependency_lines: true + id: "7A8D7FBC53A73A56" + rewards: [ + { + id: "5BD4F758F92FE145" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "437DE72673FA859F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "12B9C905C3230F5E" + item: "cyclic:fisher" + type: "item" + }] + x: 4.0d + y: -15.5d + } + { + dependencies: ["08D359D021E423FE"] + description: [ + "When worn, &dClimbing Gloves&r allow the player to &o&bclimb vertical surfaces&r as if a ladder or vines were present." + "" + "Can be equipped as an accessory in the &6Curios Slot&r: &eHands&r." + ] + hide_dependency_lines: true + id: "7A750DF10E92B471" + min_width: 300 + rewards: [ + { + id: "4EC45D90E562F81C" + type: "xp" + xp: 30 + } + { + id: "5E0629902B96F3B5" + item: "minecraft:leather" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "07E20F6BB536BD70" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2CEC16449285E66D" + item: { + Count: 1 + id: "cyclic:glove_climb" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.5d + y: -15.5d + } + { + dependencies: [ + "75F7F9650B677DD4" + "6211CC4AF98746E6" + "412C40C9937931B9" + "014B08B3D6ABAB99" + ] + description: ["When in your &o&binventory&r or worn as an &o&baccessory&r, combines the protection effects of the &eAntidote Charm&r, &cWither Charm&r, &6Fire Charm&r, and &5Void Charm&r."] + id: "6B9D2BB968B4463F" + min_width: 275 + rewards: [ + { + id: "1D6DE3F9B96A9F60" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "554ED27BC045D8FF" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "65D23378984ECA3B" + item: { + Count: 1 + id: "cyclic:charm_ultimate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 13.499999999999993d + y: -7.821428571428569d + } + { + dependencies: ["0C5C34A36AF49CD8"] + description: [ + "When consumed, grants the player &o&b1&r permanent, extra &cHeart&r." + "" + "Multiple can be consumed for additional &cHearts&r." + ] + id: "2F3642D6B0CAF95F" + min_width: 220 + rewards: [ + { + id: "78530253AC6D71A4" + type: "xp" + xp: 100 + } + { + id: "3E1EF1EEB7B363C3" + item: "cyclic:heart_empty" + type: "item" + } + { + exclude_from_claim_all: true + id: "5C28D4F93A6DFCAA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "heart" + tasks: [{ + id: "2A7B3E4E5DF7C4FA" + item: "cyclic:heart" + type: "item" + }] + x: 1.0d + y: -7.5d + } + { + dependencies: ["6115BE7A9E526397"] + description: ["Eat will show the &o&bnames&r a few nearby &o&bstructures&r, and their horizontal straight-line distance to your position."] + id: "2640A7557D30E133" + rewards: [ + { + id: "07C6F834BD0751C2" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1FC881FE62C704CB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5CAEFB67ACF55FAC" + item: "cyclic:apple_ender" + type: "item" + }] + x: 12.5d + y: -17.0d + } + { + dependencies: ["70D20CD1E662D529"] + description: ["Rich &6food&r that has &b&ono effects&r. Used for &o&bcrafting&r."] + hide_dependency_lines: true + id: "6115BE7A9E526397" + min_width: 220 + rewards: [ + { + id: "57680A00BE1FDA40" + type: "xp" + xp: 10 + } + { + id: "7E4C63D1841C477A" + item: "minecraft:honey_block" + type: "item" + } + { + id: "74A527374A497AC9" + item: "cyclic:apple_sprout" + type: "item" + } + { + exclude_from_claim_all: true + id: "2DD9BBBE95D99147" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "1A097B809EF9736E" + item: "cyclic:apple_honey" + type: "item" + }] + x: 13.5d + y: -16.0d + } + { + dependencies: ["6115BE7A9E526397"] + description: ["Grants &o&bpotion effects&r when eaten."] + id: "5C822E5CC5CF1E13" + rewards: [ + { + id: "0F02F357160BFA47" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "5E9410E3F2E5AEC3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3E4A6AC3B511692F" + item: "cyclic:apple_prismarine" + type: "item" + }] + x: 14.5d + y: -17.0d + } + { + dependencies: ["6115BE7A9E526397"] + description: ["Utility buffs include &o&bswim speed&r, &o&bconduit&r, &o&bwater breathing&r, &o&bnight vision&r."] + id: "50FF985123C1A518" + rewards: [ + { + id: "55F14CE99E850803" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "2A6F2956B8997A23" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "155E49380DA984C2" + item: "cyclic:apple_lapis" + type: "item" + }] + x: 15.0d + y: -16.0d + } + { + dependencies: ["6115BE7A9E526397"] + description: ["Lower levels of &o&bhealth boost&r and &o&bresistance&r."] + id: "12E931060AA686AD" + rewards: [ + { + id: "2546FCB28ED3C723" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "052F1A1B3B538D50" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1C92B7F5C5E5E47E" + item: "cyclic:apple_iron" + type: "item" + }] + x: 12.0d + y: -16.0d + } + { + dependencies: ["03A5107ACD2BC3E2"] + description: [ + "Eating an &bDiamond Apple&r will give you &o&b60&r seconds worth of &6Resistance V&r and &2Health Boost V&r for short tough fights." + "" + "Must be &ngrown&r and &nharvested&r from a &asprout&r." + ] + id: "24BA2DD2922C87EA" + min_width: 250 + rewards: [ + { + id: "6FCB210B3953A816" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "3F622D4CCB6FB13B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0C8A359334E5C8D7" + item: "cyclic:apple_diamond" + type: "item" + }] + x: 14.0d + y: -12.5d + } + { + dependencies: ["03A5107ACD2BC3E2"] + description: [ + "Eating an &2Emerald Apple&r will give you &o&bexplorative buffs&r include &eHaste III&r, &6Luck II&r, &cStrenght II&r, &dSlow Falling II&r." + "" + "Must be &ngrown&r and &nharvested&r from a &asprout&r." + ] + id: "32671A03395F3A0B" + min_width: 250 + rewards: [ + { + id: "7B4774FF2A2AF1F4" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "3C3A540BDD557076" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "23379175BBA29860" + item: "cyclic:apple_emerald" + type: "item" + }] + x: 13.0d + y: -12.5d + } + { + dependencies: ["40D728B0C5A8EB5D"] + description: [ + "&2Block Rotatator&r its not really a &9Wrench&r." + "" + "This sipmle tool can be used to &o&brotate&r simple blocks such as stairs, slabs, and similar compatible blocks that face certain directions. Try hitting blocks from &o&bdifferent angles&r." + ] + id: "01B091232C2CB515" + rewards: [ + { + id: "63492F2C7DBD3BDE" + type: "xp" + xp: 10 + } + { + count: 2 + id: "78AFA93E89FB348C" + item: "minecraft:stone" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "1BAFAD10877E1DE2" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "4E1A484C0D6E3505" + item: { + Count: 1 + id: "cyclic:rotation_wand" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.5d + y: -17.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "Use this cable &2Wrench&r by &eright-clicking&r on a &o&bCyclic&r &9Cable&r to change the cable's settings such as &o&bimport filter&r, &o&bblocked&r, &o&bnormal&r." + "" + "Blocked state only appears while player is &nsneaking&r/&ncrouching&r." + ] + id: "40D728B0C5A8EB5D" + rewards: [ + { + id: "6BDA73D0C4525788" + type: "xp" + xp: 10 + } + { + id: "6C603B563B5261E0" + item: "minecraft:oak_log" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "5E1BE8AE80BC9D35" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1CDD921492462705" + item: "cyclic:cable_wrench" + type: "item" + }] + x: -0.5d + y: -17.0d + } + { + dependencies: ["0C5C34A36AF49CD8"] + hide_dependency_lines: true + id: "0F6D2FC0B1C93686" + rewards: [ + { + id: "68B535E17897E3F4" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "08463998A17D3F7E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "pentagon" + tasks: [ + { + id: "38343145F3EFC461" + item: { + Count: 1 + id: "cyclic:crystal_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "55F8F1387A633B6D" + item: { + Count: 1 + id: "cyclic:crystal_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3B2551C2E4DDBC84" + item: { + Count: 1 + id: "cyclic:crystal_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2637AFC0BEDBEEF7" + item: { + Count: 1 + id: "cyclic:crystal_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&5Crystallized Obsidian Armor" + x: 7.5d + y: -17.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: ["&6Engraved Thunder&r can launch a projectile that will spawn a &o&bnatural lightning bolt&r when it lands."] + hide_dependency_lines: true + id: "365F9E68BAB68011" + rewards: [ + { + id: "7FB1A0FCCA712789" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "188C9BA038B4EB73" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "1FB3029FE23883E5" + item: { + Count: 1 + id: "cyclic:lightning_scepter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.5d + y: -9.5d + } + { + dependencies: ["0F6D2FC0B1C93686"] + id: "25757FFA41256265" + optional: true + rewards: [ + { + id: "3CF0B95BBABE183E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C7EC23E8C68D8ED" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "289A1F06265BCA59" + item: { + Count: 1 + id: "cyclic:crystal_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&fCrystal Sword" + x: 8.5d + y: -17.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: ["The &6Frost Bringer&r can launch &b&o3&r frozen projectiles that applies the &o&bparalyze potion effect&r to &o&ball enemies&r."] + hide_dependency_lines: true + id: "05EF86CA0EF6DF50" + rewards: [ + { + id: "4F8AACFD23DA9E5D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "15DB59396CD46734" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "254251C616BA9F86" + item: { + Count: 1 + id: "cyclic:ice_scepter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.0d + y: -9.0d + } + { + dependencies: ["08D359D021E423FE"] + description: ["&6Duskflame Hex&r can launch &o&b3&r projectiles that &o&bburn&r and &o&bdamage entities&r. Does &nnot set fire&r to the world."] + hide_dependency_lines: true + id: "00868CB5F30D0513" + rewards: [ + { + id: "40F2CAB54A6C41DB" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4266706C62D1D8A6" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "206D0EAAC53C2444" + item: { + Count: 1 + id: "cyclic:fire_scepter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 10.0d + y: -10.0d + } + { + dependencies: ["0C9253A014A20BEC"] + description: [ + "&aEmerald Apple Sprout&r can be plant below a leaf block to grow an &2Emerald Apple&r." + "" + "&3Diamond Apple Sprout&r can be plant below a leaf block to grow an &bDiamond Apple&r." + ] + id: "03A5107ACD2BC3E2" + rewards: [ + { + id: "3B5A9EFC3D63B375" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "0CD69990ABF908A3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "50E3CC1E1919816E" + item: { + Count: 1 + id: "cyclic:apple_sprout_emerald" + tag: { } + } + type: "item" + } + { + id: "589DA80E044AF51A" + item: { + Count: 1 + id: "cyclic:apple_sprout_diamond" + tag: { } + } + type: "item" + } + ] + x: 13.5d + y: -13.5d + } + { + dependencies: ["6115BE7A9E526397"] + description: [ + "Similar to &o&bmilk&r, when eaten it &o&bclears out&r potion effects." + "" + "However it only &o&bremoves harmful ones&r like &cpoison&r, and not &o&bbeneficial ones&r such as &6regeneration&r or &dnight vision&r." + ] + id: "0C9253A014A20BEC" + rewards: [ + { + id: "5BDBD3E695837417" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "7E46A9DE74275B5C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "67A355322A849203" + item: { + Count: 1 + id: "cyclic:apple_chocolate" + tag: { } + } + type: "item" + }] + x: 13.5d + y: -14.5d + } + { + dependencies: ["6115BE7A9E526397"] + description: ["Grants &o&bpotion effects&r when eaten."] + id: "7AD7E8CB7A7528C8" + rewards: [ + { + id: "119E49B2EC85885C" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "11E4B6DB919995EC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "566E5F7C30E279C3" + item: { + Count: 1 + id: "cyclic:apple_bone" + tag: { } + } + type: "item" + }] + x: 13.5d + y: -17.5d + } + { + dependencies: ["6725FEA36C75E603"] + id: "0D5815CC13FE563D" + rewards: [ + { + id: "085E5EC5C7D8BBA1" + type: "xp" + xp: 10 + } + { + count: 2 + id: "68861C19D6C45FBA" + item: "compressium:cobblestone_1" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "1CA02834ABA831B1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "3F4AD21D987A74FC" + item: "cyclic:compressed_cobblestone" + type: "item" + }] + title: "Compressed Cobblestone" + x: -0.5d + y: -12.5d + } + { + dependencies: ["0D5815CC13FE563D"] + id: "1D439E19BDC4A7AA" + rewards: [ + { + id: "64C2B216B906C414" + type: "xp" + xp: 10 + } + { + count: 2 + id: "20E99BCB11876694" + item: "cyclic:flint_block" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "52DF2853DE28B931" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "568556A09B1D9B83" + item: "cyclic:flint_block" + type: "item" + }] + title: "Flint Block" + x: 1.0d + y: -12.5d + } + { + dependencies: ["158B65BD64114835"] + description: [ + "The &2Crashing Macerator&r can grind up materials or break down components." + "" + "Grinding recipes sometimes have a &o&bchance&r for a bonus &6extra&r product." + ] + id: "7BFC05180E238D6F" + rewards: [ + { + id: "7B27C9B654CA30EA" + type: "xp" + xp: 50 + } + { + count: 2 + id: "35C2C2D336FBD061" + item: "compressium:cobblestone_1" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "7A66FC4BA3B162DE" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "12EFD3DDE2AF2671" + item: "cyclic:crusher" + type: "item" + }] + x: 1.0d + y: -11.0d + } + { + dependencies: ["07D94600EFF47688"] + description: [ + "&2Combustion Generator&r can generate &cPower&r from anything that burns as &o&bfuel&r in &3Furnaces&r." + "" + "Burn time is the same number of ticks as the furnace time, for example &o&b1&r &0Coal&r = &o&b1,600&r ticks." + "" + "The &2Combustion Generator&r producing &o&b80&r&cRF&r/t and can hold &o&b640,000&r&cRF&r." + "" + "Placing the &2Generator&r on top of a &5Battery&r will increase the holding capacity up to &o&b6,400,000&r&cRF&r." + ] + id: "56B9D8C9CA55ED9B" + min_width: 260 + rewards: [ + { + id: "25D6D9A54525F546" + type: "xp" + xp: 10 + } + { + count: 4 + id: "4A841852AD055EF2" + item: "minecraft:coal" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "3382C0E9A26A94E6" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "69033DE8DE3DDEF8" + item: "cyclic:generator_fuel" + type: "item" + }] + x: -3.5d + y: -15.0d + } + { + dependencies: ["56B9D8C9CA55ED9B"] + description: [ + "&2Devouring Generator&r can generate &cPower&r from &o&bfood type&r items." + "" + "Burn time and energy per tick are set up for example:" + "It uses both &cfood&r and &esaturation&r values, multiplied by &o&b100&r. &6Bread&r has &o&b5&r &nfood value&r + &o&b0.6&r &o(&o&b60&r&o%)&r &nsaturation value&r x &o&b100&r, will burn for &o&b560&r ticks." + "" + "The &2Devouring Generator&r producing &o&b60&r &cRF&r/t and can hold &o&b640,000&r&cRF&r." + "" + "Placing the &2Generator&r on top of a &5Battery&r will increase the holding capacity up to &o&b6,400,000&r&cRF&r." + ] + id: "0531DBF5FB8B45B5" + min_width: 300 + rewards: [ + { + id: "5691333CDC10217C" + type: "xp" + xp: 50 + } + { + id: "53C66C66428ED911" + item: "cyclic:lever_remote" + type: "item" + } + { + exclude_from_claim_all: true + id: "6C834606B6E2589F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "38CD3120367D61E0" + item: "cyclic:generator_food" + type: "item" + }] + x: -4.0d + y: -16.0d + } + { + dependencies: ["56B9D8C9CA55ED9B"] + description: [ + "&6Evaporate &rliquids to generate &cEnergy&r. " + "" + "&a&oFuel types&r:" + "&bSteam&r and &3Oxygen&r can generate &o&b20&r&cRF&r/t." + "&6Lava&r and &dHydrogen&r can generate &o&b40&r&cRF&r/t." + "&2Biofuel&r and &9Refined Fuel&r can generate &o&b100&r&cRF&r/t." + "" + "Can hold &o&b640,000&r&cRF&r. Placing the &2Generator&r on top of a &5Battery&r will increase the holding capacity up to &o&b6,400,000&r&cRF&r." + ] + id: "192D58B48A3C355D" + min_width: 300 + rewards: [ + { + id: "620041C8D8AFF9ED" + type: "xp" + xp: 20 + } + { + id: "0A8CBE8204D54739" + item: "minecraft:lava_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "4B3FB46DFB46BB4A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "35AD1AA2CE30D338" + item: "cyclic:generator_fluid" + type: "item" + }] + x: -3.0d + y: -16.0d + } + { + dependencies: ["70F97C794A75D24A"] + description: [ + "The &2Material Generator&r can generate &cPower&r from &b&ocertain mob drop&r items." + "" + "Here is the List of all items can be used as fuel:" + "" + "&o&b1&rx &aBiomass&r burns for &o&b100&r ticks and generates in total &o&b1,000&r&cRF&r or &o&b10&r&cRF&r/t." + "&o&b1&rx &cRotten Flesh&r burns for &o&b400&r ticks and generates in total &o&b8,000&r&cRF&r or &o&b20&r&cRF&r/t." + "&o&b1&rx &4Redstone&r burns for &o&b300&r ticks and generates in total &o&b12,000&r&cRF&r or &o&b40&r&cRF&r/t." + "&o&b1&rx &7Bones&r burns for &o&b400&r ticks and generates in total &o&b16,000&r&cRF&r or &o&b40&r&cRF&r/t." + "&o&b1&rx &eGlowstone&r burns for &o&b800&r ticks and generates in total &o&b32,000&r&cRF&r or &o&b40&r&cRF&r/t." + "&o&b1&rx &3Gunpowder&r burns for &o&b400&r ticks and generates in total &o&b32,000&r&cRF&r or &o&b80&r&cRF&r/t." + "&o&b1&rx &6Magma Cream&r burns for &o&b1,000&r ticks and generates in total &o&b60,000&r&cRF&r or &o&b60&r&cRF&r/t." + "&o&b1&rx &8Ender Pearls&r burns for &o&b1,600&r ticks and generates in total &o&b64,000&r&cRF&r or &o&b40&r&cRF&r/t." + "&o&b1&rx &dSpider Eye&r burns for &o&b1,200&r ticks and generates in total &o&b72,000&r&cRF&r or &o&b60&r&cRF&r/t." + "&o&b1&rx &aPhantom Membrane&r burns for &o&b1,000&r ticks and generates in total &o&b100,000&r&cRF&r or &o&b100&r&cRF&r/t." + "&o&b1&rx &5Fermented Spider Eye&r burns for &o&b1,600&r ticks and generates in total &o&b128,000&r&cRF&r or &o&b80&r&cRF&r/t." + "&o&b1&rx &6Ender Eye&r burns for &o&b1,600&r ticks and generates in total &o&b128,000&r&cRF&r or &o&b80&r&cRF&r/t." + "&o&b1&rx &bGhast Tear&r burns for &o&b2,400&r ticks and generates in total &o&b240,000&r&cRF&r or &o&b100&r&cRF&r/t." + "&o&b1&rx &4TNT&r burns for &o&b3,200&r ticks and generates in total &o&b384,000&r&cRF&r or &o&b120&r&cRF&r/t." + "&o&b1&rx &dDragon Breath&r burns for &o&b6,400&r ticks and generates in total &o&b640,000&r&cRF&r or &o&b100&r&cRF&r/t." + "&o&b1&rx &9Shulker Shell&r burns for &o&b800&r ticks and generates in total &o&b1,000,000&r&cRF&r or &o&b1,250&r&cRF&r/t." + "&o&b1&rx &2Peat&r burns for &o&b4,000&r ticks and generates in total &o&b1,000,000&r&cRF&r or &o&b250&r&cRF&r/t." + "&o&b1&rx &6Enriched Peat&r burns for &o&b1,000&r ticks and generates in total &o&b1,000,000&r&cRF&r or &o&b1,000&r&cRF&r/t." + "&o&b1&rx &eNether Star&r burns for &o&b4,000&r ticks and generates in total &o&b9,600,000&r&cRF&r or &o&b2,400&r&cRF&r/t." + ] + id: "69FC947E12CAECD3" + min_width: 500 + rewards: [ + { + id: "77A7D4414A69159F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0F9AB1D03E3D5935" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7CA3FA16F780E244" + item: "cyclic:generator_item" + type: "item" + }] + x: -3.5d + y: -12.5d + } + { + dependencies: ["2715C4F1B35B34D3"] + description: ["Wireless transmisison of &o&benergy&r, &o&bitems&r and &o&bfluid&r."] + id: "5EBC58751715CB63" + min_width: 220 + rewards: [ + { + id: "7DE71E639717E39B" + type: "xp" + xp: 50 + } + { + id: "5F3C5540E32B06A6" + item: { + Count: 1 + id: "cyclic:fire_killer" + tag: { + Damage: 0 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1246FA3140B87377" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + id: "052D13ADABD0F061" + item: "cyclic:wireless_energy" + type: "item" + } + { + id: "2F54B508573B1065" + item: "cyclic:wireless_item" + type: "item" + } + { + id: "6A980953F78C23B3" + item: "cyclic:wireless_fluid" + type: "item" + } + ] + title: "The Transfere Nodes" + x: 0.5d + y: -18.0d + } + { + dependencies: ["0C5C34A36AF49CD8"] + description: ["The &9Powered Diamond Anvil&r repairs equipment using &cEnergy&r."] + id: "68E18D5DF5023935" + rewards: [ + { + id: "574788CD979D18F7" + type: "xp" + xp: 100 + } + { + id: "4DF0173065377AA4" + item: "cyclic:gem_obsidian" + type: "item" + } + { + exclude_from_claim_all: true + id: "0A21A4A628593BE9" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "45A15FB3BFC04F3E" + item: "cyclic:anvil" + type: "item" + }] + x: 2.0d + y: -9.0d + } + { + dependencies: ["56B9D8C9CA55ED9B"] + description: [ + "When these blocks can see they skylight during the day, they will generate small amounts of &cEnergy&r." + "" + "The &2Solar Panel Generator&r producing &o&b4&r &cRF&r/&o&b3&r seconds and can hold &o&b64,000&r&cRF&r." + "" + "Placing the &2Solar Panel&r on top of a &5Battery&r will increase the holding capacity up to &o&b6,400,000&r&cRF&r." + ] + id: "5FB3DC36C823F337" + min_width: 250 + rewards: [ + { + id: "7910BBC29CCC89F8" + type: "xp" + xp: 50 + } + { + id: "014E4943937A45ED" + item: "cyclic:gem_obsidian" + type: "item" + } + { + exclude_from_claim_all: true + id: "7997EA20741E35A3" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2B563FA8E474D0D2" + item: "cyclic:generator_solar" + type: "item" + }] + x: -3.5d + y: -16.5d + } + { + dependencies: ["0D5815CC13FE563D"] + id: "70F97C794A75D24A" + rewards: [ + { + id: "75BAB3E43AE0B08F" + type: "xp" + xp: 10 + } + { + count: 2 + id: "158B97B6D3B511A9" + item: "minecraft:ender_eye" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "05E6BB1024DA42B5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4484416DD1B1FBFF" + item: "cyclic:eye_redstone" + type: "item" + }] + x: -2.0d + y: -12.5d + } + { + dependencies: ["70F97C794A75D24A"] + description: [ + "The &2Ender Book&r is a &dmagical book&r that stores the player's current location as a &9Waypoint&r." + "" + "The location can be created with &dGPS Data Card&r by &aRight-clicking&r on a block to save location coordinates." + "" + "&aSneak+Scroll-Wheel&r to &o&bpick&r location, then &aSneak+Right-click&r to &o&bteleport&r." + "" + "Jump to cancel the teleportation. The &6Ender Book&r uses durability for &o&beach&r teleportation, which can be repaired on a &8Anvil&r with &7Ender Pearls&r." + ] + id: "7707FFC50E4E1E30" + optional: true + rewards: [ + { + id: "02573D2B4C310A73" + type: "xp" + xp: 50 + } + { + id: "0094ED7901FCB62A" + item: "cyclic:location_data" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "6EADDD1D52CA836E" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + id: "3A562A746A1441AF" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 9 + } + } + id: "cyclic:ender_book" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.0d + y: -13.5d + } + { + dependencies: ["56B9D8C9CA55ED9B"] + description: [ + "The &dClaystone Battery&r holds &o&b16,000&r&cRF&r." + "" + "Powered with &credstone&r this block will output power down if &o&bpossible&r." + ] + id: "07DB9D794A472F53" + rewards: [ + { + id: "189B068DBB29541C" + type: "xp" + xp: 10 + } + { + id: "7D5EE12DD6774620" + item: "minecraft:clay_ball" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "02C7E3824D6CEDC0" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "56DCEAA0E3E30084" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0 + } + } + } + id: "cyclic:battery_clay" + } + type: "item" + }] + x: -5.0d + y: -15.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &2Lunchbox&r is basically a &eBackpack&r but only for food items." + "" + "Fill the &2Lunchbox&r with your favorite food and it will let you eat them in order &o&bleft to right&r. " + "" + "&aSneak+Right-click&r to open &2Lunchbox&r &o&bGUI&r. There is &o&b7&r slots to store your food." + ] + hide_dependency_lines: true + id: "5D1AA4FDAD9837F5" + min_width: 300 + rewards: [ + { + id: "7CE063F129E2DFB0" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "0BEC9AF9F0A5B482" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "081954FFF4571CE6" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 7 + } + } + id: "cyclic:lunchbox" + } + type: "item" + }] + x: 1.0d + y: -13.5d + } + { + dependencies: ["70D20CD1E662D529"] + description: [ + "&2Biomass&r can be created with &o&b4&r &aleaves&r, &o&b4&r &cflower&r and &o&b1&r &2sapling&r or can be made in &dSolidification Chamber&r with small amount of &9water&r and just &o&b3&r pieces of &aleaves&r." + "" + "Combine with various organic material in a &6Melter&r to create &aFluid Biomass&r, which can be used in a &dSolidification Chamber&r to make &eDry Peat Bog&r even cheaper." + ] + id: "3DB09BB0FE14BDF1" + rewards: [ + { + id: "78291331A16F03F9" + type: "xp" + xp: 10 + } + { + count: 8 + id: "46A723D5A7D3D514" + item: "minecraft:oak_leaves" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "68F52D1245339912" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "7E54BE5E64DF3A3B" + item: "cyclic:biomass" + type: "item" + }] + x: -3.5d + y: -9.5d + } + { + dependencies: ["3DB09BB0FE14BDF1"] + description: [ + "&2Dry Peat Bog&r, when placed next to water, will slowly turn into a" + "&cSaturated Peat Deposit&r, which can be &o&bsmelted&r to create fuel for the &eMaterial Generator&r." + ] + id: "2AE6C08D0BB52193" + min_width: 300 + rewards: [ + { + id: "3165AD1ABD6CD9B7" + type: "xp" + xp: 30 + } + { + count: 8 + id: "1179720CDE80F570" + item: "minecraft:dirt" + random_bonus: 8 + type: "item" + } + { + exclude_from_claim_all: true + id: "6B9329987CE8FCC9" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "66225E796E3A400C" + item: "cyclic:peat_unbaked" + type: "item" + }] + x: -3.5d + y: -11.0d + } + { + dependencies: ["2AE6C08D0BB52193"] + description: [ + "To get &2Saturated Peat Deposits&r place a &9Dry Peat Bog&r next to water. Over time the &9Dry Peat Bog&r becomes &csaturated&r and can be &o&bharvested&r." + "" + "Once &o&bharvested&r, it can be &o&bsmelted&r to create fuel for the &eMaterial Generator&r." + ] + id: "12F94FBF6FF889D4" + min_width: 300 + rewards: [ + { + id: "43090F8C66744127" + type: "xp" + xp: 50 + } + { + count: 8 + id: "1531EF6F107C9227" + item: "cyclic:biomass" + random_bonus: 12 + type: "item" + } + { + exclude_from_claim_all: true + id: "2D0B7C148E7D80B0" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5444D2D83E2FD0C4" + item: "cyclic:peat_baked" + type: "item" + }] + x: -5.0d + y: -11.0d + } + { + dependencies: [ + "12F94FBF6FF889D4" + "69FC947E12CAECD3" + ] + description: [ + "The &2Peat Farm&r takes water, which can be pumped in via a &6Sink&r (the cheapest way), and &9Dry Peat Bog&r as its &einputs&r and &o&bautomatically builds&r a &o&b15x15&r &aPeat Bog&r farm surrounding itself." + "" + "When &9Dry Peat Bog&r becomes &csaturated&r, the &2Peat Farm&r will &o&bautomatically harvest&r it and place more &9Dry Peat Bog&r in its place, but it will not collect it. To collect &cSaturated Bod Deposit&r use an &eItem Collector&r." + "" + "If you like you can build something like this:" + "" + "{image:kubejs:textures/item/peat_farm.png width:250 height:100 align:1}" + ] + id: "0800B5987F3A1286" + min_width: 300 + rewards: [ + { + id: "7D0FC18942F6EF17" + type: "xp" + xp: 100 + } + { + count: 16 + id: "3DE738B95C7ADB20" + item: "cyclic:biomass" + random_bonus: 16 + type: "item" + } + { + exclude_from_claim_all: true + id: "0DE92306093ADF05" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "43AEDCF1E39221FD" + item: "cyclic:peat_farm" + type: "item" + }] + x: -5.0d + y: -12.5d + } + { + dependencies: ["12F94FBF6FF889D4"] + description: [ + "&2Peat&r is smelted from &eSaturated Peat Deposits&r and used in a &9Material Generator&r to generate &cEnergy&r." + "" + "It can also be combined with &8Fluid Biomass&r in a &dSolidification Chamber&r to create &6Enriched Peat&r." + "" + "&2Peat&r can produce &o&b1,000,000&r&cRF&r in &o&b4,000&r ticks." + ] + id: "751F395036D1D98C" + min_width: 300 + rewards: [ + { + id: "5F53016C30A38EB2" + type: "xp" + xp: 100 + } + { + id: "1E396ADDF76679DF" + item: "cyclic:peat_fuel" + type: "item" + } + { + exclude_from_claim_all: true + id: "29B86BD2189DF57A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3FD9C6041D5CD0D4" + item: "cyclic:peat_fuel" + type: "item" + }] + x: -5.0d + y: -8.0d + } + { + dependencies: [ + "70D20CD1E662D529" + "751F395036D1D98C" + ] + description: [ + "Created by combining &aPeat&r with &8Fluid Biomass&r in a &dSolidification Chamber&r and used to provide even quicker power in a &9Material Generator&r." + "" + "&2Enriched Peat&r can produce &o&b1,000,000&r&cRF&r in &o&b1,000&r ticks." + ] + id: "0C43D3B8AE4CE1B9" + min_width: 250 + rewards: [ + { + id: "7176D7602671A22D" + type: "xp" + xp: 100 + } + { + id: "08873837E757B5BC" + item: "cyclic:peat_fuel_enriched" + type: "item" + } + { + exclude_from_claim_all: true + id: "6BF0E859DC0ECC6F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "072936CA024044AD" + item: "cyclic:peat_fuel_enriched" + type: "item" + }] + x: -2.0d + y: -8.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "&eCyclic&r offers &o&b3&r different types of &2Boomerang&r." + "" + "The &2Boomerang&r thrown will &o&bgather&r items and &o&breturns to you&r." + "" + "The &9Sharpened Boomerang&r thrown will &o&bgather&r items, &o&battacks&r your enemies and &o&breturns to you&r." + "" + "The &cMagic Boomerang&r thrown will &o&bgather&r items, &o&bstuns&r your enemies and &o&breturns to you&r." + ] + hide_dependency_lines: true + id: "6EBA6F2A9457ACCB" + min_width: 300 + rewards: [ + { + id: "56FAB5661E691B91" + type: "xp" + xp: 20 + } + { + count: 8 + id: "7278FFF68B0D540C" + item: "alltheores:copper_nugget" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "3C28A4C4349F7582" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7CF6D31F2C16C6B2" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "cyclic:boomerang_carry" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "cyclic:boomerang_damage" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "cyclic:boomerang_stun" + tag: { + Damage: 0 + } + } + ] + } + } + title: "The Boomerangs" + type: "item" + }] + x: 7.5d + y: -15.5d + } + { + dependencies: ["40D728B0C5A8EB5D"] + description: [ + "&2Antimatter Evaporator&r" + "" + "&aLeft-click&r to cycle between &9Water&r, &6Lava&r, and &3Generic Fluid&r modes." + "" + "&eRight-click&r to &nclear&r a &o&b9x9&r area of the selected &o&bfluid type&r from the world." + ] + id: "070FF5E11330C712" + rewards: [{ + exclude_from_claim_all: true + id: "4388295006F176D7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "octagon" + tasks: [{ + id: "091B3EBA39BB0CCE" + item: { + Count: 1 + id: "cyclic:antimatter_wand" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.5d + y: -17.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &2Crate&r is a container, like a chest, that is &6Reinforced&r to survive &cExplosions&r and &0Wither&r attacks." + "" + "Let's do some &o&bmath&r, shall we?" + "Requered crafting materials are &o&b4&r &6Chests&r + &o&b4&r &7Iron Bars&r and + &o&b1&r piece of &eSandstone&r = &o&b2&r &2Crates&r." + "" + "&o&b1&r &6Chest&r = &o&b27&r storage space x &o&b4&r = &o&b108&r storage space." + "&o&b1&r &2Crate&r = &o&b81&r storage space x &o&b2&r = &o&b162&r storage space." + "" + "The final result is: &o&b54&r storage space more + can be used like &dShulker Box&r or &3Backpack&r + &cExpolosions&r proof." + "" + "Pretty much awesome, &o&bright&r?" + ] + id: "29A9BBF53AA9CD4A" + min_width: 300 + rewards: [ + { + id: "46F9154052C440FE" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2EAF93A459E14CCA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "672403FFA6FD775D" + item: "cyclic:crate" + type: "item" + }] + x: 2.5d + y: -14.5d + } + { + description: ["&9Waterbreathing Charm&r prevent &o&bdrowning damage&r after air is empty."] + id: "07792B7C1D015548" + min_width: 230 + rewards: [ + { + id: "228AB8BFB664105A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0911FBD74E84C349" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3D40A3AF1267DC3D" + item: { + Count: 1 + id: "cyclic:charm_water" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 13.5d + y: -11.0d + } + { + description: [ + "&dSpeed Charm&r gives you a &o&bpassive speed boost&r, can be stacked with &o&bspeed potions&r." + "" + "&aRight-click&r in your inventory to turn it &coff&r." + "" + "By default gives you &o&b50&r% boost, it can be changed in the &o&bconfig file&r." + ] + id: "58C249347FF04A6B" + rewards: [ + { + id: "0C2E08F7D7D82D0D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "166C2DAF68317531" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2B18A8370D0CAF59" + item: { + Count: 1 + id: "cyclic:charm_speed" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 13.0d + y: -10.5d + } + { + description: ["When the &dAnti-Gravity Charm&r is active, you can &ejump&r without &o&bfalling&r at the expense of &ndurability&r while you &o&bremain in the air&r."] + id: "5BA6B77BE246D554" + rewards: [ + { + id: "77088084591DDC71" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "21B0BFCEE8F4C284" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "28EAB3EBFD0F6348" + item: { + Count: 1 + id: "cyclic:antigravity" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 14.0d + y: -10.5d + } + { + description: ["With the &4Void Charm&r in your &o&binventory&r or &o&bworn&r as an accessory, &o&bsaves&r you from the &5void&r; it &o&bdetects&r if you have fallen down below y=-&o&b30&r and &o&bteleports&r you way up into the &nsky instead&r."] + id: "014B08B3D6ABAB99" + min_width: 220 + rewards: [ + { + id: "6420ECD8F4CA7590" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "367326A5970EC361" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2F9A64E75F42EEA7" + item: { + Count: 1 + id: "cyclic:charm_void" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 13.5d + y: -9.0d + } + { + description: ["With the &eAntidote Charm&r in your &o&binventory&r or &o&bworn&r as an accessory, protects you from &cpoison&r at the &nexpense of durability&r."] + id: "6211CC4AF98746E6" + rewards: [ + { + id: "60120A185C2C43E2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6EBA843BE59B4D47" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "141903FD61887918" + item: { + Count: 1 + id: "cyclic:charm_antidote" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 14.0d + y: -9.5d + } + { + description: ["With the &6Fire Charm&r in your &o&binventory&r or &o&bworn&r as an accessory, &o&bprotects&r you from &6fire&r damage at the &nexpense of durability&r."] + id: "412C40C9937931B9" + min_width: 220 + rewards: [ + { + id: "3C1E55058A322921" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2CBD33D4845D1265" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "7B6ED26001097082" + item: { + Count: 1 + id: "cyclic:charm_fire" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 13.0d + y: -9.5d + } + { + description: ["With the &cWither Charm&r in your &o&binventory&r or &o&bworn&r as an accessory, &o&bprotects&r you from the &5Wither&r status effect at the &nexpense of durability&r."] + id: "75F7F9650B677DD4" + min_width: 230 + rewards: [ + { + id: "447564A3438F5C2E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4B394AE2A0C84D94" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "1454CF9122322915" + item: { + Count: 1 + id: "cyclic:charm_wither" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 13.5d + y: -10.0d + } + { + dependencies: ["0C9253A014A20BEC"] + description: ["Immune to &cdamage&r and death by &estarvation&r."] + id: "3F475779165E0324" + rewards: [ + { + id: "49D6A9CE8052A0F5" + type: "xp" + xp: 100 + } + { + count: 2 + id: "2914CE99E22B325B" + item: "minecraft:ghast_tear" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "3F1FF05458B13E3A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "72ACCCAFF07EABC8" + item: { + Count: 1 + id: "cyclic:charm_starvation" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 12.5d + y: -14.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &2Cask&r is a small tank for storing fluids. It holds &o&b8,000&r&9mB&r of any fluid." + "" + "&9Fluids&r can be &ninserted&r and &nremoved&r both by &o&bpipes&r and by &o&bbuckets&r and other handheld fluid &o&bcontainers&r." + ] + id: "6927029B7A2F22DC" + rewards: [ + { + id: "7CDB4508B822F9F1" + type: "xp" + xp: 10 + } + { + id: "174B5BEF0379C7AC" + item: "minecraft:barrel" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "36FFD2B1F293F0DA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3A2C468C2E721E06" + item: "cyclic:cask" + type: "item" + }] + x: 2.5d + y: -15.5d + } + { + dependencies: ["29A9BBF53AA9CD4A"] + description: [ + "Unlike the &2Crate&r the &6Mini-Crate&r &o&bcan not&r keep contents when broken, but is still &cExplosion&r proof with &o&b15&r slots of storage space." + "" + "The &6Mini-Crate&r can also be &9waterlogged&r. " + ] + id: "058EF4481C711CFB" + optional: true + rewards: [ + { + id: "309265FC8213D11B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1552681A0F09DAA9" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "54DB3F33DCE2AD28" + item: "cyclic:crate_mini" + type: "item" + }] + x: 2.5d + y: -13.5d + } + { + dependencies: ["158B65BD64114835"] + description: [ + "The &6Magma Anvil&r repairs equipment using &o&bliquid&r &6Magma&r." + "" + "Pipe it in from a &9Tank&r or something else." + ] + id: "245A3BCBD0F3CBA3" + rewards: [ + { + id: "2B493D5BC49C0F9C" + type: "xp" + xp: 50 + } + { + id: "2ED75FBEB7680AB2" + item: "cyclic:magma_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "292004F71D88C743" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "02CF9056C762BDA6" + item: "cyclic:anvil_magma" + type: "item" + }] + x: -2.0d + y: -11.0d + } + { + dependencies: ["08D359D021E423FE"] + description: ["Enables glowing &dNight Vision&r while worn, you can also turn it &9on&r and &coff&r by &aRight-clicking&r."] + id: "39BC1DF4449AE224" + min_width: 210 + rewards: [ + { + id: "67584A4CA8696AC9" + type: "xp" + xp: 50 + } + { + id: "47CC1AE5A4BE77D2" + item: "minecraft:glowstone" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "6EDBFCF1EB3715E4" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3016526D054A998D" + item: { + Count: 1 + id: "cyclic:glowing_helmet" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.0d + y: -10.0d + } + { + dependencies: ["6927029B7A2F22DC"] + description: [ + "The &9Fluid Storage Tank&r is the big brother of the &2Cask&r, able to store more fluid. It holds &o&b64,000&r&9mB&r of any fluid." + "" + "Just like by &2Cask&r the fluids can be &ainserted&r and &cremoved&r by &o&bpipes&r, &o&bbuckets&r and other handheld fluid &o&bcontainers&r." + ] + id: "48C4F0E10BD59390" + optional: true + rewards: [ + { + id: "10465D52BA56DF9B" + type: "xp" + xp: 100 + } + { + count: 2 + id: "1DB7A5FD1B99749A" + item: "minecraft:raw_iron" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "2F6CB507E91DDBBC" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "76DAB0A3EB18C738" + item: "cyclic:tank" + type: "item" + }] + x: 2.5d + y: -16.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &6Building Scepter&r is a powerful tool that comes in &o&b3&r forms; &9Fill&r, &2Place&r, and &aExchange&r." + "" + "For each, &aLeft-clicking&r on any block will change the &o&bsize&r of the area that will be affected. &aSneak+Left-clicking&r will select the block to be &o&bplaced&r by the scepter. &aRight-click&r with the scepter to &o&bplace&r or &o&bexchange&r blocks from your &dinventory&r." + "" + "• The &9Fill Scepter&r places blocks in the &o&bspecified-shape&r around the block you &aRight-click&r on." + "• The &eExchange Scepter&r swaps all blocks with your &o&bselected&r block in a shape around the block you &aRight-click&r." + "• The &2Place Scepter&r is similar to the &9Fill Scepter&r, except the blocks are placed on the &o&bsurface&r of the block you &aRight-click&r." + ] + hide_dependency_lines: true + id: "26452FCF811B8C70" + min_width: 290 + rewards: [ + { + id: "5E5B4B192E1A02C3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5C4571EE7C3DDFAF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "3A93B27A3905590B" + item: { + Count: 1 + id: "cyclic:build_scepter" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1468F7617E4C71EE" + item: { + Count: 1 + id: "cyclic:replace_scepter" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3F96A6768A19735B" + item: { + Count: 1 + id: "cyclic:offset_scepter" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Tha Building Scepters" + x: 8.5d + y: -13.5d + } + { + dependencies: ["6725FEA36C75E603"] + hide_dependency_lines: true + id: "7B6502DC3F4EA51D" + rewards: [ + { + id: "2B3820B24773697E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1587D8C0BDCC488F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "pentagon" + tasks: [ + { + id: "26B21883E4401162" + item: { + Count: 1 + id: "cyclic:emerald_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "35FC8896DED752CC" + item: { + Count: 1 + id: "cyclic:emerald_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3BB76A8B2F53FBD8" + item: { + Count: 1 + id: "cyclic:emerald_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "42FB4B4884A9ACF1" + item: { + Count: 1 + id: "cyclic:emerald_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&aEmerald Armor" + x: 5.5d + y: -17.5d + } + { + dependencies: ["7B6502DC3F4EA51D"] + id: "576FCDF8CFB316D0" + optional: true + rewards: [ + { + id: "3B21068A676BADB9" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "735B430B646F9D64" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "13F4FB02268585B0" + item: { + Count: 1 + id: "cyclic:emerald_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.5d + y: -17.5d + } + { + dependencies: ["26452FCF811B8C70"] + description: [ + "The &9Block&r &cRandomized&r will &o&bmixup the blocks&r in the nearby &o&b5x5x1&r area, to help you &o&bvary the texture&r of your &o&bwall&r or &o&bpathway&r." + "" + "&aLeft-click&r to change &o&bsize&r. It affects a flat area along the face of &o&bwhatever you hit&r. Tile entities are &nignored&r like &eChests&r etc." + ] + id: "71677437CB510BD1" + min_width: 300 + optional: true + rewards: [ + { + id: "2CB3F98074F1B5D5" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "26682B5C11635DB0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2DDEEA2768CA1003" + item: { + Count: 1 + id: "cyclic:randomize_scepter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.5d + y: -12.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: ["The &dSpawner Seeker&r can be used to find the nearest &3spawner&r to your &o&bcurrent location&r."] + hide_dependency_lines: true + id: "50C8020FC4A7313B" + rewards: [ + { + id: "4286DF8C2BBF7799" + type: "xp" + xp: 10 + } + { + count: 4 + id: "4D5FD3EC463A2F6D" + item: "minecraft:mossy_cobblestone" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "08F44B5FB147323C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0739523600D1C12C" + item: "cyclic:spawner_seeker" + type: "item" + }] + x: 7.5d + y: -13.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: ["The &2Ore Prospector&r searches out for &o&bores&r behind the block you &o&bclick on&r."] + hide_dependency_lines: true + id: "5CC2572A6AFA6225" + rewards: [ + { + id: "2D3BE84FD7422422" + type: "xp" + xp: 50 + } + { + id: "4B4DD5E2A070B61F" + item: "minecraft:emerald" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "05F117FF71D6CB2E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6053D27BEDC2411D" + item: { + Count: 1 + id: "cyclic:prospector" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.0d + y: -11.0d + } + { + dependencies: ["08D359D021E423FE"] + description: [ + "The &2Spawn Detector&r tells you &o&bexactly&r which mobs can spawn on the &o&btargeted block&r." + "" + "Natural spawns only, ignores mob &o&bspawner blocks&r. Useful for making &aSlime&r, &dWitch&r, and &0Wither Skeleton&r farms." + ] + hide_dependency_lines: true + id: "4D9DDA85969BBFFC" + rewards: [ + { + id: "7CC2DAE67E98E7A9" + type: "xp" + xp: 100 + } + { + id: "7B2428E574F0EBE5" + item: "cyclic:gem_amber" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "1EB282F9B5384A42" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "64CF6485D5CC595B" + item: { + Count: 1 + id: "cyclic:spawn_inspector" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.5d + y: -10.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &2Cave-finder&r searches out for empty space &o&bbehind&r the block you &o&bclick on&r." + "" + "Works in any &o&bdirection&r. If you hit the &o&btop&r of a block it &o&bsearches down&r, if you hit the &o&bside&r it searches &o&bbehind&r. Always in a &nstraight line&r." + "" + "Great for finding &ecaves&r while &o&bbranch mining&r." + ] + hide_dependency_lines: true + id: "0D62356F401B3DA5" + rewards: [ + { + id: "4EC11E2DAF0E2B58" + type: "xp" + xp: 50 + } + { + count: 4 + id: "2FFC47FA8F82915B" + item: "minecraft:flint" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "287AD74DC28B278A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "4EDE89C12CC250BD" + item: { + Count: 1 + id: "cyclic:spelunker" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.5d + y: -10.5d + } + { + dependencies: ["08D359D021E423FE"] + description: ["Summons a beam of &6Evoker Fangs&r in whatever direction youre facing. Must be used on an &o&bentity&r or a &o&bblock&r."] + hide_dependency_lines: true + id: "44D6FE9D5A0F1C95" + rewards: [ + { + id: "5AC5874C75366AE7" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "30100086AD5B53E5" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "63AF09F56A846F6E" + item: { + Count: 1 + id: "cyclic:evoker_fang" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.5d + y: -9.5d + } + { + dependencies: ["46114E63F64D2795"] + description: [ + "The Scepter: &9Water Infusion&r turns nearby &o&bflowing water&r into &o&bsource water&r. Fills &aLakes&r and &2Rivers&r out &nvery quickly&r." + "" + "The Scepter: &bIce Infusion&r turns nearby &o&bwater&r blocks into &o&bice&r. Costs &ndurability&r to use." + ] + id: "082F5708E4CBEDFF" + min_width: 250 + optional: true + rewards: [ + { + id: "6747913C963D2F77" + type: "xp" + xp: 100 + } + { + id: "5CEF530CA1D786FE" + item: "cyclic:gem_amber" + type: "item" + } + { + id: "0450F8DE89445FAA" + item: "cyclic:gem_obsidian" + type: "item" + } + { + exclude_from_claim_all: true + id: "59457723655DF833" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [ + { + id: "27CA97D973F16F4B" + item: { + Count: 1 + id: "cyclic:spell_water" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1328178365ED7A05" + item: { + Count: 1 + id: "cyclic:spell_ice" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Water \\& Ice Infusion" + x: 9.5d + y: -12.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "&2Teleporter&r that works only vertically, and only if it can find an &o&bempty space&r with a surface above." + "" + "Works on &o&byourself&r, or &o&btarget&r another entity." + ] + hide_dependency_lines: true + id: "623F0EBC8907241C" + rewards: [ + { + id: "6AF0E18F92045717" + type: "xp" + xp: 50 + } + { + id: "5A2F310EC7B7BD61" + item: "minecraft:redstone_lamp" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "79EE3B877E2E6920" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0904FF5ACDA226F6" + item: { + Count: 1 + id: "cyclic:elevation_wand" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.0d + y: -10.0d + } + { + dependencies: ["0C5C34A36AF49CD8"] + description: [ + "The &6Ender Scepter&r when held and charged, can be used to &dteleport&r large distances &o&bto the block that you're looking at&r." + "" + "Automatically consumes &8Ender Pearls&r in your &einventory&r to &o&brepair itself&r." + ] + hide_dependency_lines: true + id: "46072B7ED11F5ACD" + rewards: [ + { + id: "34A3C955D12B8922" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "41F7F84F3D68A48A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5DBD5E2CB1B3E7B8" + item: { + Count: 1 + id: "cyclic:teleport_wand" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 10.5d + y: -10.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "With the &2Stirrups&r you can &o&bmount any entity&r (without the control of the &3saddle&r)." + "" + "With the &9Inverted Stirrups&r you can &o&bpickup target entity&r on top of you. Use it on the &emob&r again &nto put down&r." + ] + hide_dependency_lines: true + id: "52714FCD3C896CBE" + min_width: 250 + rewards: [ + { + id: "0894EE930C84FA40" + type: "xp" + xp: 50 + } + { + count: 2 + id: "6EC42B97FD076AF0" + item: "minecraft:lead" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "0E5650856806B9BB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "40EDC1BC0FFC3EAC" + item: { + Count: 1 + id: "cyclic:stirrups" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "12248B7A6E5DD669" + item: { + Count: 1 + id: "cyclic:stirrups_reverse" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "The Stirrups" + x: 8.5d + y: -14.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "&bEnder Wing&r warps you to &dworld spawn&r at the cost of &ndurability&r." + "" + "&6Ender Wing Prime&r warps you &eback home&r at cost of &ndurability&r." + "" + "If you have an active &dRespawn Anchor&r in the &cNether&r and you are &o&bcurrently&r in the &cNether&r, you will be &nteleported there&r." + "" + "Otherwise, you will be &o&bteleported&r to your &9Bed&r if you are in the &2Overworld&r and you have slept in a &9Bed&r to set your &nrespawn point&r." + ] + hide_dependency_lines: true + id: "325B6F126D0767D3" + min_width: 300 + rewards: [ + { + id: "1A6BD57BDD88E0BD" + type: "xp" + xp: 100 + } + { + id: "3458B74092CEB2D2" + item: "cyclic:gem_amber" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "24D97F586829FE8F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "5EADA4AEB8212DE4" + item: { + Count: 1 + id: "cyclic:charm_world" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "661C57366341BCA5" + item: { + Count: 1 + id: "cyclic:charm_home" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "The Ender Wings" + x: 9.5d + y: -14.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "&2Dark Glass&r, unlike regular glass, does not let &o&blight&r pass through." + "" + "Oh, and it's also immune &eexplosions&r, &nincluding&r those caused by the &0Wither&r." + ] + hide_dependency_lines: true + id: "699028CBA84DE2E5" + rewards: [ + { + id: "2E1FF3E575707D86" + type: "xp" + xp: 50 + } + { + count: 2 + id: "4E0A4427741D9F1D" + item: "minecraft:glass" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "57ADF0E870561FF2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "617C60C6C13989F0" + item: "cyclic:dark_glass" + type: "item" + }] + x: 10.5d + y: -13.5d + } + { + dependencies: ["699028CBA84DE2E5"] + description: ["Self-connecting textures. &o&bFancy ones&r!"] + id: "698834C8ADBD4105" + optional: true + rewards: [ + { + id: "4A69E05A44A58D81" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5663722149F8B651" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "659065EA1DFCCBF3" + item: "cyclic:dark_glass_connected" + type: "item" + }] + x: 10.5d + y: -12.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: ["&6Chaos Reaper&r confuses nearby hostiles so they &o&battack each other&r."] + hide_dependency_lines: true + id: "43785D0B805EF403" + rewards: [ + { + id: "00DD6391EB0971F8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "76D52EA649A26F35" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "4D62329E3D7272D3" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0 + } + } + } + id: "cyclic:wand_hypno" + } + type: "item" + }] + x: 8.0d + y: -8.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: ["&2Spirit Seeker&r spawns homing &o&bmissiles&r at nearby &o&bhostile&r targets."] + hide_dependency_lines: true + id: "17BA956856BA4359" + rewards: [ + { + id: "36F36307519ACDDF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0417DBAD381F840E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "49317103C3B0E395" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0 + } + } + } + id: "cyclic:wand_missile" + } + type: "item" + }] + x: 9.0d + y: -7.5d + } + { + dependencies: ["0C5C34A36AF49CD8"] + description: [ + "&6Range Cannon&r is a range weapon and shooting &clasers&r from the distance on &b&oentities&r, very fast." + "" + "&6Range Cannon&r uses &cenergy&r as &o&bammo&r." + ] + hide_dependency_lines: true + id: "69E5861F0687F04D" + rewards: [ + { + id: "5AD48CAA607C29AB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "32293FAA9DB72E69" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2FF1B2A41CD299D4" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0 + } + } + } + id: "cyclic:laser_cannon" + } + type: "item" + }] + x: 10.0d + y: -8.0d + } + { + dependencies: ["08D359D021E423FE"] + description: [ + "The &6Experience Pylon&r &o&bautomatically&r collects nearby &eExperience Orbs&r and stores them as &aFluid Experience&r in its internal buffer." + "" + "&aFluid Experience&r can be pumped &9into&r and &cout&r of the &6Pylon&r." + ] + id: "34B7340DFB66C492" + rewards: [ + { + id: "6B9AB7CCA6156F36" + type: "xp" + xp: 100 + } + { + id: "5FDE6B18B9B99662" + item: "cyclic:gem_amber" + type: "item" + } + { + exclude_from_claim_all: true + id: "6FAEC8359DBE8818" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5ED85031A866811A" + item: "cyclic:experience_pylon" + type: "item" + }] + x: 2.0d + y: -11.0d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "&cSummonig Flute&r saves the &o&bID&r of a &o&btarget entity&r on use." + "" + "Using it later it will attempt to &dsummon the entity&r to you, if the &o&bdimensions match&r." + ] + hide_dependency_lines: true + id: "0DB461D1B41D2D95" + min_width: 260 + rewards: [ + { + id: "1C0720D32E3A7FD3" + type: "xp" + xp: 20 + } + { + id: "1B7ABF2A9BF337F7" + item: "minecraft:candle" + type: "item" + } + { + exclude_from_claim_all: true + id: "7828977AF816066F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "323FFB9E4479A5FF" + item: "cyclic:flute_summoning" + type: "item" + }] + x: 9.5d + y: -15.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "Eating &cEnder Inventory Cake&r will unlock a &nsecond&r &eInventory&r." + "" + "You can set a &o&bkeybind&r to access that &eInventory&r. It has &o&bstorage space&r like a single &2Chest&r." + ] + hide_dependency_lines: true + id: "1CF0A7BAA7BCAC02" + min_width: 300 + rewards: [ + { + id: "3B09B3C6D81CF9F8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "74E838F2BE14C27B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6030151E47C289F1" + item: "cyclic:inventory_cake" + type: "item" + }] + x: 10.5d + y: -14.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: ["The &4Altar of Destruction&r will &o&bprevent&r damage and desturction of nearby &6explosions&r."] + hide_dependency_lines: true + id: "52BD883638EFA6E0" + min_width: 250 + rewards: [ + { + id: "0224F971F27E2679" + type: "xp" + xp: 100 + } + { + id: "3A74B87B940F7A37" + item: "minecraft:zombie_head" + type: "item" + } + { + exclude_from_claim_all: true + id: "25A824DC6EB8E258" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4EF80412EB336F0E" + item: "cyclic:altar_destruction" + type: "item" + }] + x: 10.5d + y: -15.5d + } + { + dependencies: ["0C9253A014A20BEC"] + description: ["Grants &o&bpotion effects&r when eaten."] + id: "3D48F61AB3EEA1D2" + rewards: [ + { + id: "5A851F1AD14A02A5" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "79942E34746D6B99" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5E8E24ECCB7EDC18" + item: "cyclic:apple_chorus" + type: "item" + }] + x: 14.5d + y: -14.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: ["The &6Fireball&r is throwable like a &o&bfire charge&r, and can be also used as a &o&bcrafting ingredient&r."] + hide_dependency_lines: true + id: "73B9BCBB301AF65B" + min_width: 210 + rewards: [ + { + id: "72AED61EFD4A04CD" + type: "xp" + xp: 10 + } + { + id: "6A02E51F7AC37D06" + item: "minecraft:fire_charge" + type: "item" + } + { + exclude_from_claim_all: true + id: "7028499FA2834C9A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "22466652747769E2" + item: "cyclic:fireball" + type: "item" + }] + x: 3.5d + y: -12.5d + } + { + dependencies: [ + "70D20CD1E662D529" + "73B9BCBB301AF65B" + ] + description: ["The &9Dark Fireball&r is throwable like a &o&bfire charge&r."] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "2667DCB5038FEB1C" + min_width: 220 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "045C7BBCD67241F4" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "18D4C7C4C25C865B" + item: "cyclic:fireball_dark" + type: "item" + }] + x: 4.5d + y: -12.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &eSpark&r creates a &b&oinvisible light sources&r." + "" + "To &cremove&r the &b&oinvisible light sources&r &aRight-click&r with a &eSpark&r on it." + ] + hide_dependency_lines: true + id: "02C2AA000B9D61F9" + rewards: [ + { + id: "2E7C6259989039EB" + type: "xp" + xp: 10 + } + { + count: 4 + id: "6C5635C3A594A8B2" + item: "minecraft:torch" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "5B93DE15B97A8536" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2DE6D55F9AB81C2B" + item: "cyclic:spark" + type: "item" + }] + x: 5.5d + y: -12.5d + } + { + dependencies: ["6725FEA36C75E603"] + description: [ + "The &cRedstone Clock&r emits a redstone signal with a &o&bconfigurable delay&r, length, and signal." + "" + "Useful for contraptions that need to work on a &o&btimer&r." + ] + hide_dependency_lines: true + id: "57CFC72F2748231B" + rewards: [ + { + id: "5D07C5E5800AA3D4" + type: "xp" + xp: 10 + } + { + id: "4656533E45126AC8" + item: "cyclic:doorbell" + type: "item" + } + { + exclude_from_claim_all: true + id: "388CF0E071758B7B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2EA95DB474040451" + item: "cyclic:clock" + type: "item" + }] + x: -2.5d + y: -18.0d + } + ] + title: "&3&oCyclic" +} diff --git a/minecraft/config/ftbquests/quests/chapters/deeper_and_darker.snbt b/minecraft/config/ftbquests/quests/chapters/deeper_and_darker.snbt new file mode 100644 index 0000000..ed6a0dc --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/deeper_and_darker.snbt @@ -0,0 +1,1411 @@ +{ + autofocus_id: "0000000000000000" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "deeper_and_darker" + group: "09A82B0D5D5E7906" + icon: "deeperdarker:heart_of_the_deep" + id: "7AA3A9CA5508C2BC" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -0.5d + y: -0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -7.5d + y: -4.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 8.0d + y: -4.0d + } + ] + order_index: 6 + quest_links: [ ] + quests: [ + { + description: [ + "The &8Deep Dark&r keeps its secrets. Between the echoing wails, the warden's heartbeat, and the black silence of the Ancient Cities, something else waits." + "" + "Beyond the &0Reinforced Deepslate&r archway at the city's heart lies &5The Otherside&r: a dimension of Sculk-choked valleys, bioluminescent forests, shattered giants, and the tools to tame them all." + "" + "This chapter will take you from your first cautious Deep Dark descent, through the &cWarden&r, and into the depths of the Otherside itself." + ] + icon: "deeperdarker:heart_of_the_deep" + id: "3F329A20A14EFDF6" + min_width: 300 + rewards: [ + { + id: "7786B1B7E511A7D7" + type: "xp" + xp: 100 + } + { + count: 2 + id: "51E99647AA0BEB4B" + item: { + Count: 1 + id: "minecraft:echo_shard" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "125205B60DBAF829" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.5d + tasks: [{ + id: "7DC7267F7644DCFE" + type: "checkmark" + }] + title: "Welcome to &8&lDeeper &0&land &8&lDarker" + x: 0.0d + y: 0.0d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: [ + "&3Resonarium&r is an ore exclusive to the Otherside dimension. Its ingot resonates faintly with the sculk signal, sustaining a new tier of gear that sits between Diamond and Netherite." + "" + "To obtain Resonarium in quantity you must first enter the Otherside — but a small starter pile is often hidden in Ancient City chests to tempt the curious." + ] + icon: "deeperdarker:resonarium" + id: "33DD7122C25426EF" + rewards: [ + { + id: "427236FED470E3D6" + type: "xp" + xp: 100 + } + { + count: 2 + id: "2D1AFDCC2C834910" + item: { + Count: 1 + id: "deeperdarker:resonarium" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "5EF33931DB27F7E2" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "25CC93E527A75A5F" + item: { + Count: 1 + id: "deeperdarker:resonarium" + tag: { } + } + type: "item" + }] + title: "&3Resonarium" + x: 3.5d + y: 2.5d + } + { + dependencies: ["33DD7122C25426EF"] + description: ["The first step into the mod's weapon tier. The &3Resonarium Sword&r deals more damage than Diamond and holds a keener edge against sculk-aligned mobs."] + icon: { + Count: 1 + id: "deeperdarker:resonarium_sword" + tag: { + Damage: 0 + } + } + id: "6A5D3B25D6076C13" + rewards: [ + { + id: "1A6B948D5A2FF4D9" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "5A39D03D3CC2CFA8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "74AAA67028076672" + item: { + Count: 1 + id: "deeperdarker:resonarium_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&3Resonarium Sword" + x: 5.5d + y: 3.5d + } + { + dependencies: ["33DD7122C25426EF"] + description: ["A &3Resonarium Pickaxe&r matches Netherite for harvest level and outlasts a Diamond tool. Essential for breaking deeper Otherside stones efficiently."] + icon: { + Count: 1 + id: "deeperdarker:resonarium_pickaxe" + tag: { + Damage: 0 + } + } + id: "5C158916F4302A70" + rewards: [ + { + id: "1D12A70D07CF1CE5" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "4036CF47524A75DB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7FEDA9C52B55395A" + item: { + Count: 1 + id: "deeperdarker:resonarium_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&3Resonarium Pickaxe" + x: 5.5d + y: 2.5d + } + { + dependencies: ["33DD7122C25426EF"] + description: ["Complete the full Resonarium toolkit: &3axe&r, &3shovel&r, and &3hoe&r. Balanced for the player who wants better than Diamond without committing to Netherite's expense."] + icon: { + Count: 1 + id: "deeperdarker:resonarium_axe" + tag: { + Damage: 0 + } + } + id: "0319637DCA54DB92" + rewards: [ + { + id: "1F352625A7C27BEF" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "11824BA947AC2208" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.1d + tasks: [ + { + id: "2D113FD469B96C85" + item: { + Count: 1 + id: "deeperdarker:resonarium_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "46A3B74DF4DEBCE6" + item: { + Count: 1 + id: "deeperdarker:resonarium_shovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5F459855F0CF97C3" + item: { + Count: 1 + id: "deeperdarker:resonarium_hoe" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&3Resonarium Toolkit" + x: 5.5d + y: 1.6500000000000001d + } + { + dependencies: ["33DD7122C25426EF"] + description: [ + "Craft the complete &3Resonarium&r armor set. Protection falls between Diamond and Netherite, and the set has enchantability to spare." + "" + "A sensible choice for your first descent into the Otherside, before you can face the &cWarden&r for something finer." + ] + icon: { + Count: 1 + id: "deeperdarker:resonarium_chestplate" + tag: { + Damage: 0 + } + } + id: "222DB047EF8D0F73" + rewards: [ + { + id: "49CB8E2981181787" + type: "xp" + xp: 300 + } + { + count: 4 + id: "2067C68281B96D90" + item: { + Count: 1 + id: "deeperdarker:resonarium" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "10F007BB686A086A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "554D59FB3334E610" + item: { + Count: 1 + id: "deeperdarker:resonarium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "164CFAE5C35C096F" + item: { + Count: 1 + id: "deeperdarker:resonarium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2C6F7C9B6ACF99EB" + item: { + Count: 1 + id: "deeperdarker:resonarium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "06298F20A7C4095A" + item: { + Count: 1 + id: "deeperdarker:resonarium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&3Resonarium Armor Set" + x: 5.5d + y: 0.5d + } + { + dependencies: ["3F329A20A14EFDF6"] + description: [ + "Before the Otherside, the Deep Dark. Find a naturally-generated &0Sculk biome&r — usually at Y ≤ -52 — and begin exploring its &8Ancient Cities&r." + "" + "Move slowly. A Sculk Shrieker that detects you twice will summon the &cWarden&r, and you are nowhere near ready for that." + ] + icon: "minecraft:sculk" + id: "2E10290CF313E5A7" + rewards: [ + { + id: "4BD5CF5E8A2B31E8" + type: "xp" + xp: 100 + } + { + count: 4 + id: "18221B41FDBC0084" + item: { + Count: 1 + id: "minecraft:sculk" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "401C5BB742D08A5E" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + size: 1.3d + tasks: [{ + advancement: "deeperdarker:main/root" + criterion: "" + id: "559725A07D533342" + type: "advancement" + }] + title: "&8Descent into the &0Deep Dark" + x: -1.500000000000007d + y: -1.3035714285714377d + } + { + dependencies: ["2E10290CF313E5A7"] + description: ["&bEcho Shards&r are scattered among Ancient City loot chests. They are the base for Recovery Compasses — and, more importantly, the core ingredient of &bReinforced Echo Shards&r, which gate the Warden-tier smithing recipes."] + icon: "minecraft:echo_shard" + id: "2AED06D16AF6E132" + rewards: [ + { + id: "4CA3975F153102B1" + type: "xp" + xp: 100 + } + { + count: 2 + id: "19C24DAF962D5BE6" + item: { + Count: 1 + id: "minecraft:echo_shard" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "6D25E6277F23B688" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "0AA4367845A3FCDD" + item: { + Count: 1 + id: "minecraft:echo_shard" + tag: { } + } + type: "item" + }] + title: "&bEcho Shard" + x: -1.5d + y: -3.0d + } + { + dependencies: ["3F329A20A14EFDF6"] + description: [ + "The &8Warden Upgrade Smithing Template&r is found in Ancient City chests. It is used at a Smithing Table to upgrade Netherite gear to &cWarden&r tier, alongside Reinforced Echo Shards." + "" + "Duplicating it uses Netherrack and Diamonds, just like vanilla templates." + ] + icon: "deeperdarker:warden_upgrade_smithing_template" + id: "3F4918D8A0F35B47" + rewards: [ + { + id: "6D8245838ECB228B" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "519284F799DDC857" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "46CB1EE85587C4BF" + item: { + Count: 1 + id: "deeperdarker:warden_upgrade_smithing_template" + tag: { } + } + type: "item" + }] + title: "&8Warden Smithing Template" + x: -4.5d + y: 0.0d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: [ + "The &0Sculk Snapper&r is the Otherside's version of the zombie: numerous, relentless, and liable to appear from any patch of Sculk underfoot." + "" + "Defeat one and collect a few drops of &7Soul Dust&r — a key ingredient of the Soul Elytra." + ] + icon: "minecraft:sculk" + id: "464A410464846CFB" + rewards: [ + { + id: "784E5BB0448E5B08" + type: "xp" + xp: 150 + } + { + count: 2 + id: "5962AA56FBEBE776" + item: { + Count: 1 + id: "deeperdarker:soul_dust" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1F7B4CDB226B0A76" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + entity: "deeperdarker:sculk_snapper" + id: "5F20BCD6443AE783" + type: "kill" + value: 1L + }] + title: "&0Sculk Snapper" + x: -5.785714285714292d + y: 0.8785714285714263d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: ["A multi-segmented Sculk horror that skitters along ceilings and walls. &5Sculk Centipedes&r have surprising reach — keep your head on a swivel."] + icon: "minecraft:sculk_vein" + id: "43829F48A42ECD6E" + rewards: [ + { + id: "488A749ECEB4882E" + type: "xp" + xp: 150 + } + { + count: 4 + id: "743A4283F655CB3C" + item: { + Count: 1 + id: "minecraft:experience_bottle" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0B90CE628F968A47" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Defeat a Sculk Centipede" + tasks: [{ + entity: "deeperdarker:sculk_centipede" + id: "2E1AF396933B7CE1" + type: "kill" + value: 1L + }] + title: "&5Sculk Centipede" + x: -7.0d + y: 1.5d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: [ + "The &fShattered&r are the remnants of humans who lingered in the Otherside too long. Defeat them to collect &8Sculk Bones&r, the structural component of the Soul Elytra." + "" + "You'll need at least four for a single Soul Elytra." + ] + icon: "deeperdarker:sculk_bone" + id: "29057353BD800BF7" + rewards: [ + { + id: "7C52D45B2C7A2108" + type: "xp" + xp: 250 + } + { + count: 2 + id: "1240FD072107C136" + item: { + Count: 1 + id: "deeperdarker:sculk_bone" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0E5C54211C0A166E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + entity: "deeperdarker:shattered" + id: "76002150E74FA98B" + type: "kill" + value: 1L + }] + title: "&8Bones of the &fShattered" + x: -5.833333333333336d + y: 3.5452380952380977d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: ["&7Soul Dust&r is harvested from &0Sculk Snappers&r and the elusive &8Sculk Leech&r, or crushing other &7sculk items&r. Bank a larger supply before attempting the &1Soul Elytra&r recipe — they have a way of being consumed faster than expected."] + icon: "deeperdarker:soul_dust" + id: "34F881BF8617B8FA" + rewards: [ + { + id: "320D27F1A7585306" + type: "xp" + xp: 150 + } + { + count: 4 + id: "572560B62D5D43DD" + item: { + Count: 1 + id: "deeperdarker:soul_dust" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1C48A4984334FF31" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "2F3B3D0FD53533BE" + item: { + Count: 1 + id: "deeperdarker:soul_dust" + tag: { } + } + type: "item" + }] + title: "&7Soul Dust Stockpile" + x: -7.0d + y: 3.0d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: [ + "Deep within the Otherside's Ancient Temples — and occasionally spawned from broken Ancient Vases in the overworld Deep Dark — stalks the &5Stalker&r: a stealth boss with a four-and-some percent spawn rate and a foul temper." + "" + "Defeat it. It drops the &dSoul Crystal&r, the last component of the Soul Elytra and its only repair material (short of Mending)." + ] + icon: "deeperdarker:soul_crystal" + id: "4809E988A0B3D81B" + rewards: [ + { + id: "2C2C2EA7EA1803CB" + type: "xp" + xp: 500 + } + { + id: "6BD0D97237E9BA26" + item: { + Count: 1 + id: "deeperdarker:soul_crystal" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "653D8E333E6A8C44" + table_id: 6305167096659659419L + type: "random" + } + { + exclude_from_claim_all: true + id: "2AC110AB08B2C209" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.3d + tasks: [{ + entity: "deeperdarker:stalker" + id: "7C2DF72DAFE8665C" + type: "kill" + value: 1L + }] + title: "&5&lThe &8Stalker" + x: -5.833333333333336d + y: 2.307142857142857d + } + { + dependencies: ["3F329A20A14EFDF6"] + description: [ + "The &cWarden&r is the deadliest creature in the Overworld. It cannot be stealthed around forever; sooner or later, you must fight it." + "" + "Come prepared: full Resonarium or better, Protection IV where you can manage it, healing items, Ender Pearls, and blocks to wall yourself in. The Warden can two-shot unprepared players and will smell your heartbeat from across the city." + "" + "Defeat it and collect its signature drop: the &8Warden Carapace&r." + ] + icon: "deeperdarker:warden_carapace" + id: "49A1F863FD2D29A0" + rewards: [ + { + id: "47A909F11443F454" + type: "xp" + xp: 500 + } + { + id: "49CE74FD61168A60" + item: { + Count: 1 + id: "deeperdarker:warden_carapace" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "62CE8055AB132CB9" + table_id: 6305167096659659419L + type: "random" + } + { + exclude_from_claim_all: true + id: "67E5D865D5E0DE42" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "6243C5E63981A756" + item: { + Count: 1 + id: "deeperdarker:warden_carapace" + tag: { } + } + type: "item" + }] + title: "&c&lFace the &0Warden" + x: -3.0d + y: 0.0d + } + { + dependencies: ["49A1F863FD2D29A0"] + description: [ + "Slaying the &cWarden&r always drops a single &dHeart of the Deep&r. This is the activation key for the Otherside Portal — and it is never consumed by activation, so you may keep it." + "" + "The Heart also detects and displays the heartbeats of nearby hostile creatures when held. A useful scanning tool in unfamiliar dimensions." + ] + icon: "deeperdarker:heart_of_the_deep" + id: "2F6DD4F915AA6702" + rewards: [ + { + id: "61B37063E0BA658D" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "12F3E8BB03E66E4C" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.2d + tasks: [{ + id: "0A4EC7048FEB8DAD" + item: { + Count: 1 + id: "deeperdarker:heart_of_the_deep" + tag: { } + } + type: "item" + }] + title: "&d&lHeart of the &5Deep" + x: 2.0714285714285765d + y: -0.05357142857143771d + } + { + dependencies: [ + "2F6DD4F915AA6702" + "2AED06D16AF6E132" + ] + description: [ + "Combine 4 &8Warden Carapace&r, 4 &7Phantom Membrane&r, and 1 &bEcho Shard&r in a crafting table to produce a single &bReinforced Echo Shard&r." + "" + "A full set of Warden gear requires &nnine&r of these. Plan accordingly — that is nine Warden carapaces in the best case, and more likely twenty or more." + ] + icon: "deeperdarker:reinforced_echo_shard" + id: "74783B61756A89B8" + rewards: [ + { + id: "206653CC9A87E701" + type: "xp" + xp: 300 + } + { + count: 4 + id: "0F19AC8A3C076055" + item: { + Count: 1 + id: "minecraft:phantom_membrane" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "33F6FE10E7684D16" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "67D224C86E141F39" + item: { + Count: 1 + id: "deeperdarker:reinforced_echo_shard" + tag: { } + } + type: "item" + }] + title: "&bReinforced Echo Shard" + x: 2.0d + y: -3.0d + } + { + dependencies: ["2F6DD4F915AA6702"] + description: [ + "The &3Otherside Portal&r is built from &3Reinforced Deepslate&r, the unbreakable block that forms the central archway of every Ancient City." + "" + "Find the city's &3Reinforced Deepslate&r arch. Clear all sculk, sculk veins, and sculk catalysts from its surface — any sculk will block activation." + "" + "Then right-click the frame with your &dHeart of the Deep&r. The portal ignites in swirling teal." + ] + icon: "minecraft:reinforced_deepslate" + id: "4400A6603B118E7D" + rewards: [ + { + id: "0D6A45A80A3C923B" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "3F1E85B74AB7F357" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.3d + tasks: [{ + id: "5C56D74D3EE44166" + item: { + Count: 1 + id: "minecraft:reinforced_deepslate" + tag: { } + } + type: "item" + }] + title: "&3&lThe &5Otherside Portal" + x: 1.9500000000000002d + y: 1.3d + } + { + dependencies: ["4400A6603B118E7D"] + description: [ + "Step through the activated portal. You arrive in &5The Otherside&r: a dimension with a 1:1 coordinate ratio to the Overworld, a ceiling at Y=128, and an ambient light level of just &00.05&r." + "" + "&4&oWrite down your portal coordinates.&r The Otherside offers no map, no compass, and no mercy. If you lose the portal, death is your only way home." + ] + id: "434C3C96AC2E0FAB" + rewards: [ + { + id: "1CB767A3F11C96BA" + type: "xp" + xp: 500 + } + { + count: 64 + id: "360A5BC5A1A6BDFA" + item: { + Count: 1 + id: "minecraft:torch" + tag: { } + } + type: "item" + } + { + count: 8 + id: "566B13D0AA0B303F" + item: { + Count: 1 + id: "minecraft:ender_pearl" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "509B6A98F6EB510C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.3d + tasks: [{ + dimension: "deeperdarker:otherside" + id: "3CB995CA20CA6517" + type: "dimension" + }] + title: "&5&lEnter The &8Otherside" + x: 0.0d + y: 2.6d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: ["You have set foot in every known biome of the Otherside. Few return to tell of more than one."] + id: "5FA6B7490228FB7F" + rewards: [ + { + id: "09C38414606AF30E" + type: "xp" + xp: 400 + } + { + id: "4D733060A878A53C" + item: { + Count: 1 + id: "minecraft:compass" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "74A868C44167C5CD" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.2d + tasks: [{ + advancement: "deeperdarker:main/explore_otherside" + criterion: "" + id: "4DDDABA0CFA473D5" + type: "advancement" + }] + title: "&dCartographer of the &5Otherside" + x: 1.7999999999999998d + y: 4.8d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: [ + "The &5Ancient Temple&r is the Otherside's signature structure: a layered ruin with an &aApex level&r above and a &cBasement level&r below. The basement chests hold the dimension's rarest rewards — but so do its traps and its guardians." + "" + "Loot one completely." + ] + id: "34937F432A4F97DD" + rewards: [ + { + id: "005F1DB31172F6A2" + type: "xp" + xp: 500 + } + { + id: "1EE7031937724BDC" + item: { + Count: 1 + id: "deeperdarker:warden_carapace" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "17393D6C049E7DCA" + table_id: 6305167096659659419L + type: "random" + } + { + exclude_from_claim_all: true + id: "1F235CEDEF6417BC" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.2d + subtitle: "Loot an Ancient Temple in the Otherside" + tasks: [{ + advancement: "deeperdarker:main/find_ancient_temple" + criterion: "" + id: "4BA262DAB0F89EB0" + type: "advancement" + }] + title: "&5&lAncient &0Temple" + x: 2.4d + y: 3.5999999999999996d + } + { + dependencies: ["34937F432A4F97DD"] + description: [ + "The &3Sculk Transmitter&r is one of the rare tools of the Otherside — a wireless remote that can teleport the user to a linked location with a burst of sculk energy." + "" + "Found in Ancient Temple Basement chests and rarely dropped by boss mobs." + ] + icon: "deeperdarker:sculk_transmitter" + id: "4A69B702A5F0128E" + rewards: [ + { + id: "0B81EFAE0C34B090" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "63034D69DCF2DA4E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "64C24A22D111C5D2" + item: { + Count: 1 + id: "deeperdarker:sculk_transmitter" + tag: { } + } + type: "item" + }] + title: "&3Sculk Transmitter" + x: 5.5d + y: 7.0d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: [ + "At a &dSmithing Table&r, combine a &fNetherite Sword&r, a &8Warden Upgrade Template&r, and a &bReinforced Echo Shard&r to forge the &c&lWarden Sword&r." + "" + "It hits harder than Netherite and deals bonus damage to Sculk-aligned mobs." + ] + icon: { + Count: 1 + id: "deeperdarker:warden_sword" + tag: { + Damage: 0 + } + } + id: "3BC0093F6940CEFA" + rewards: [ + { + id: "3ECB29E56E70EA00" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "47A56AF058CF400C" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.1d + tasks: [{ + id: "79F4CC9053A930EA" + item: { + Count: 1 + id: "deeperdarker:warden_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&c&lWarden Sword" + x: -4.4d + y: 7.15d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: ["The &cWarden Pickaxe&r, upgraded from Netherite at the Smithing Table, mines faster and lasts longer than its predecessor. Its harvest level remains Netherite — the upgrade is in durability and speed."] + icon: { + Count: 1 + id: "deeperdarker:warden_pickaxe" + tag: { + Damage: 0 + } + } + id: "3FBEEE46F290FA0F" + rewards: [ + { + id: "1F02F61CD3108CB2" + type: "xp" + xp: 400 + } + { + exclude_from_claim_all: true + id: "49FF219D0709B5BB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "73C5CC8E945499BA" + item: { + Count: 1 + id: "deeperdarker:warden_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&c&lWarden Pickaxe" + x: -1.5d + y: 1.5d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: ["Complete the Warden tool set: &caxe&r, &cshovel&r, and &choe&r. Each upgrades a Netherite counterpart for one &bReinforced Echo Shard&r at the Smithing Table."] + icon: { + Count: 1 + id: "deeperdarker:warden_axe" + tag: { + Damage: 0 + } + } + id: "143E7211D172DF18" + rewards: [ + { + id: "5455F4D69F083527" + type: "xp" + xp: 400 + } + { + exclude_from_claim_all: true + id: "06BF873B6599FD04" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.1d + tasks: [ + { + id: "58F4385E4E03945E" + item: { + Count: 1 + id: "deeperdarker:warden_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "79911450A569806C" + item: { + Count: 1 + id: "deeperdarker:warden_shovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5AC5BE9769836AC0" + item: { + Count: 1 + id: "deeperdarker:warden_hoe" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&cWarden Tool Set" + x: -4.95d + y: 4.4d + } + { + dependencies: ["3F329A20A14EFDF6"] + description: [ + "Upgrade all four Netherite armor pieces at the Smithing Table using &bReinforced Echo Shards&r and the &8Warden Template&r." + "" + "The full set grants exceptional protection and — crucially — the Warden Helmet &nnegates the Darkness effect&r. Without it, extended stays in the Otherside are nearly impossible." + ] + icon: { + Count: 1 + id: "deeperdarker:warden_chestplate" + tag: { + Damage: 0 + } + } + id: "6B911ADB8B7D1592" + rewards: [ + { + id: "2E1CB51F41FBE319" + type: "xp" + xp: 750 + } + { + count: 2 + id: "36A756B93DF474E9" + item: { + Count: 1 + id: "deeperdarker:warden_carapace" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "13A4C774F77518DF" + table_id: 6305167096659659419L + type: "random" + } + { + exclude_from_claim_all: true + id: "5C6DB2A42BE55FDC" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.3d + tasks: [{ + advancement: "deeperdarker:main/warden_armor" + criterion: "" + id: "5E22E684EBADF550" + type: "advancement" + }] + title: "&c&lWarden Armor Set" + x: -2.6d + y: 4.550000000000001d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: [ + "Combine 4 &8Sculk Bones&r, 2 &7Soul Dust&r, 1 &dSoul Crystal&r, and 1 &fElytra&r at a crafting table to forge the &1Soul Elytra&r." + "" + "956 durability. 3 armor points. A built-in boost (default: B) that launches you forward with soul fire, no rockets required." + "" + "The most sought-after reward of the Deeper Dark." + ] + icon: { + Count: 1 + id: "deeperdarker:soul_elytra" + tag: { + Damage: 0 + } + } + id: "78C0BA2D1E30665D" + rewards: [ + { + id: "34C6507D243BE5DF" + type: "xp" + xp: 1000 + } + { + id: "7FCE9113D49C8D41" + item: { + Count: 1 + id: "deeperdarker:soul_crystal" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "41A98FBA4A7E6781" + table_id: 6305167096659659419L + type: "random" + } + { + exclude_from_claim_all: true + id: "6728FB80215D3325" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.4d + tasks: [{ + id: "7A537B0719849DFF" + item: { + Count: 1 + id: "deeperdarker:soul_elytra" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&1&lSoul &9Elytra" + x: -2.535714285714299d + y: 2.6607142857142776d + } + { + dependencies: ["434C3C96AC2E0FAB"] + description: [ + "The &3Sonorous Staff&r is the mod's signature magical weapon: a bass-deep ranged implement that fires echoing soul blasts." + "" + "Crafted at a smithing table using Warden Carapaces and a Heart of the Deep." + ] + icon: { + Count: 1 + id: "deeperdarker:sonorous_staff" + tag: { + Damage: 0 + } + } + id: "23CF30EBE289E21E" + rewards: [ + { + id: "3475481C713042B9" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "1BCBE40DF4708105" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.2d + tasks: [{ + id: "33BC3973E03433FB" + item: { + Count: 1 + id: "deeperdarker:sonorous_staff" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&3Sonorous &6Staff" + x: 0.0d + y: 4.8d + } + { + dependencies: [ + "6B911ADB8B7D1592" + "143E7211D172DF18" + "23CF30EBE289E21E" + "4A69B702A5F0128E" + "5FA6B7490228FB7F" + "3BC0093F6940CEFA" + "78C0BA2D1E30665D" + ] + description: [ + "You have faced the Warden and lived. You have traced the Otherside's every biome. You wear the carapace of your enemy and glide on the wings of the Shattered." + "" + "Few mortals descend this far. Fewer still return with the full tally you now carry." + "" + "&8&oThe Deep remembers you, and that is not a comforting thought.&r" + ] + icon: "deeperdarker:heart_of_the_deep" + id: "1B76F167653712DD" + rewards: [ + { + id: "6405FDBDB6F8DD8D" + type: "xp" + xp: 1500 + } + { + count: 4 + id: "0E9EEEF86CC3739F" + item: { + Count: 1 + id: "deeperdarker:reinforced_echo_shard" + tag: { } + } + type: "item" + } + { + count: 4 + id: "0F0E775D5B14D589" + item: { + Count: 1 + id: "deeperdarker:warden_carapace" + tag: { } + } + type: "item" + } + { + id: "3E388EF148C20D67" + table_id: 7708913941106525583L + type: "random" + } + ] + shape: "gear" + size: 2.0d + tasks: [{ + advancement: "deeperdarker:main/kill_all_sculk_mobs" + criterion: "" + id: "63FA80FD3F3007EA" + type: "advancement" + }] + title: "&5&lGrand Explorer of &0The Deep" + x: 0.0d + y: 7.0d + } + ] + title: "&3&oDeeper and Darker" +} diff --git a/minecraft/config/ftbquests/quests/chapters/dimensional_locks.snbt b/minecraft/config/ftbquests/quests/chapters/dimensional_locks.snbt new file mode 100644 index 0000000..d1ce2a8 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/dimensional_locks.snbt @@ -0,0 +1,210 @@ +{ + always_invisible: true + autofocus_id: "142753C4D560DB52" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "dimensional_locks" + group: "" + id: "62724F361A71DFB6" + order_index: 2 + quest_links: [ ] + quests: [ + { + dependencies: ["142753C4D560DB52"] + id: "369F3D01C618E94A" + rewards: [{ + auto: "invisible" + command: "/dimension minecraft:the_nether access grant" + elevate_perms: true + id: "0C1B1A2AEEAEC30C" + silent: true + type: "command" + }] + tasks: [{ + id: "33329C18D5E071DB" + item: "dimpaintings:nether_painting" + type: "item" + }] + x: 1.0d + y: -2.0d + } + { + id: "142753C4D560DB52" + rewards: [ + { + auto: "invisible" + command: "/dimension minecraft:the_nether access lock" + elevate_perms: true + id: "55DA085436696D35" + silent: true + type: "command" + } + { + auto: "invisible" + command: "/dimension minecraft:the_end access lock" + elevate_perms: true + id: "418A97A9DCA786B5" + silent: true + type: "command" + } + { + command: "/dimension blue_skies:everdawn access lock" + elevate_perms: true + id: "64A87A88987A75D6" + silent: true + type: "command" + } + { + command: "/dimension blue_skies:everbright access lock" + elevate_perms: true + id: "23C98942C398B906" + silent: true + type: "command" + } + { + command: "/dimension aether:the_aether access lock" + elevate_perms: true + id: "7142C92F1E5C6DBC" + silent: true + type: "command" + } + ] + tasks: [{ + dimension: "minecraft:overworld" + id: "05EC3F2D807649A1" + type: "dimension" + }] + title: "Dimensional Lock" + x: -3.5d + y: -0.5d + } + { + dependencies: ["142753C4D560DB52"] + dependency_requirement: "one_completed" + id: "53F5410F376DF3B4" + rewards: [{ + auto: "invisible" + command: "/dimension minecraft:the_end access grant" + elevate_perms: true + id: "4ECF5F80D89BC41E" + silent: true + type: "command" + }] + tasks: [{ + consume_items: false + id: "048E0693DB0F9E50" + item: "dimpaintings:end_painting" + match_nbt: false + only_from_crafting: false + type: "item" + weak_nbt_match: true + }] + x: 1.0d + y: -3.0d + } + { + dependencies: ["142753C4D560DB52"] + id: "0769723D5EBD80D4" + rewards: [{ + command: "/dimension blue_skies:everdawn access grant" + elevate_perms: true + id: "22901B5011ED6775" + silent: true + type: "command" + }] + tasks: [ + { + id: "7A7F392AFB7B8E1C" + item: { + Count: 1 + id: "blue_skies:zeal_lighter" + tag: { + Damage: 0 + } + } + type: "item" + } + { + count: 10L + id: "41E9810DCF0CAC1A" + item: "blue_skies:lunar_stonebrick" + type: "item" + } + ] + x: 1.0d + y: -1.0d + } + { + dependencies: ["142753C4D560DB52"] + id: "391D16A5A7343729" + rewards: [{ + command: "/dimension blue_skies:everbright access grant" + elevate_perms: true + id: "7C229309AD4B2C6C" + silent: true + type: "command" + }] + tasks: [ + { + id: "4FB303041D362929" + item: { + Count: 1 + id: "blue_skies:zeal_lighter" + tag: { + Damage: 0 + } + } + type: "item" + } + { + count: 10L + id: "33D68CA7873E90A7" + item: "blue_skies:turquoise_stonebrick" + type: "item" + } + ] + x: 1.0d + y: 0.0d + } + { + dependencies: ["142753C4D560DB52"] + id: "3F04F8179015E1EE" + rewards: [{ + command: "/dimension aether:the_aether access grant" + elevate_perms: true + id: "4724D17FC0F9390A" + silent: true + type: "command" + }] + tasks: [ + { + id: "7959E30BA4DD0082" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:buckets/water)" + } + } + title: "Any Water Bucket" + type: "item" + } + { + id: "704780FB35990C27" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(chipped:glowstone)" + } + } + title: "Any #chipped:glowstone" + type: "item" + } + ] + x: 1.0d + y: 1.0d + } + ] + title: "Dimensional Locks" +} diff --git a/minecraft/config/ftbquests/quests/chapters/draconic_evolution.snbt b/minecraft/config/ftbquests/quests/chapters/draconic_evolution.snbt new file mode 100644 index 0000000..afff2aa --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/draconic_evolution.snbt @@ -0,0 +1,4450 @@ +{ + autofocus_id: "69986817D58AC8BE" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "draconic_evolution" + group: "62AD16E73710A992" + icon: "draconicevolution:reactor_core" + id: "22DB8678276CFC73" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -6.214285714285715d + y: -18.5d + } + { + height: 2.0d + image: "kubejs:item/draconic_logo" + rotation: 0.0d + width: 6.0d + x: -1.5d + y: -18.0d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["7E8FE99A3C448413"] + description: [ + "&9Draconic Evolution&r adds a lot of &ahigh-tier items&r such as tools and armor as well as some &6high-tier energy&r storage and a lot of other random features such as:" + "" + "• Teleportation" + "• Mob farming (&o&bSpawning+Killing&r)" + "• Player detection" + "• Time and weather control" + "• Powerful tools and armor" + "• High tier energy storage (&cRF&r)" + ] + icon: "draconicevolution:info_tablet" + id: "0163C32CECD4BF84" + min_width: 300 + rewards: [ + { + id: "0537036B487B9576" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "6F813B98790D3EF3" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&oMining Dimension&r quest*" + tasks: [{ + id: "425ADB6B31B6A1F3" + type: "checkmark" + }] + title: "Welcome to &9Draconic Evolution" + x: -7.0d + y: -17.839285714285715d + } + { + dependencies: ["15B25555D2A6D638"] + description: ["&dDraconium Ore&r and &9Draconium Dust&r can only be processed into &9Draconium Ingots&r using the &2Energized Smelter&r from the &eMekanism&r mod."] + id: "788B33FDDB1E3F01" + min_width: 250 + rewards: [ + { + id: "243C0D14D18A43EA" + type: "xp" + xp: 30 + } + { + count: 2 + id: "7055ACA7E6C19D73" + item: "draconicevolution:draconium_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "1771D9F434E54A30" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "4F1AEBA229F2568A" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:ingots/draconium)" + } + } + title: "Any #forge:ingots/draconium" + type: "item" + }] + title: "Draconium Ingot" + x: -7.0d + y: -15.5d + } + { + dependencies: ["0163C32CECD4BF84"] + id: "15B25555D2A6D638" + rewards: [ + { + id: "77B2A656E9CE1F2A" + type: "xp" + xp: 20 + } + { + count: 4 + id: "223FFEE1F4FA556F" + item: "draconicevolution:draconium_dust" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "1F23AE45ED07C10C" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "0B190889E95EB824" + item: "draconicevolution:draconium_dust" + type: "item" + }] + title: "Draconium Dust" + x: -6.0d + y: -16.5d + } + { + dependencies: ["379C5EA9682F463B"] + description: [ + "At the center of the crafting setup is the &6Fusion Crafting Core&r. Arranged around the outside, pointing towards the core, are a number of &9Fusion Crafting Injectors&r. Crafting ingredients are placed in the injectors with a &eRight-click&r, and a focus item is placed in the core via the &o&bGUI&r." + "" + "When crafting commences, the injectors begin to draw &cRF&r power. Sparks appear around the &9Fusion Crafting Injectors&r and bubbles of energy around the held items. When sufficient &cRF&r power has been absorbed, the bubbles of energy swarm around the &6Fusion Crafting Core&r. " + "" + "When the crafting is complete, the item can be removed from the core. The &6Fusion Crafting Core&r retains information when harvested, thus if the process is disturbed prior to completion, neither the ingredients nor energy are lost." + "" + "{@pagebreak}" + "To get started the player will need at least &o&b3&r things:" + "- A substantial &cRF&r power source. Fusion crafting requires &na lot of energy&r" + "- A &6Fusion Crafting Core&r" + "- &o&b4–10&r &9Fusion Crafting Injectors&r depending on the recipe" + "- The &o&bfocus&r item to be fused" + "- The &o&bingredients&r for the fusion" + "" + "After placing the &6Fusion Crafting Core&r in a convenient location, place the &9Fusion Crafting Injectors&r around the core, pointing towards it. Injectors must be a minimum of &o&b1&r block from the core, and up to &o&b16&r blocks away. " + ] + icon: "draconicevolution:crafting_core" + icon_scale: 2.0d + id: "333AAA56BAA0E356" + min_width: 350 + rewards: [ + { + id: "2EE5BD5527F3A5CD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "48D5569782EA2E99" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + subtitle: "Fusion Crafting is a ritual-like method of crafting to create higher tier materials and tools/armor" + tasks: [ + { + id: "2D6A3E57745A0C70" + item: "draconicevolution:crafting_core" + type: "item" + } + { + count: 9L + id: "22FE97AEF836B66D" + item: "draconicevolution:basic_crafting_injector" + type: "item" + } + ] + title: "The Fusion Crafting" + x: -8.964285714285722d + y: -13.482142857142861d + } + { + dependencies: ["1F4B8A1F596DDC9D"] + description: [ + "Transformed using &o&b2&r &bDiamond&r and &o&b2&r &1Wyvern Core&r in the injectors one side, a &aWyvern Fusion Crafting Injector&r in the &4Fusion Crafting Core&r, &o&b2&r &bDiamond&r and &o&b1&r &6Awakened Draconium Block&r in the &3Crafting&r injectors on the other." + "" + "{image:kubejs:textures/item/draconic_injectors.png width:147 height:100 align:1}" + ] + id: "18E187C4B23C475D" + min_width: 300 + rewards: [ + { + id: "45964EE5C8965121" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "3D2FF40D106943A7" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Draconic Tier" + tasks: [{ + id: "4F526FA59FA86C30" + item: "draconicevolution:awakened_crafting_injector" + type: "item" + }] + x: -9.0d + y: -10.0d + } + { + dependencies: ["333AAA56BAA0E356"] + description: [ + "Created by transforming a &2Basic Fusion Crafting Injector&r with &dFusion Crafting&r." + "" + "Aside from requiring the &2Basic Fusion Crafting Injector&r placed in the &4Fusion Crafting Core&r, the transformation uses &o&b1&r &1Wyvern Core&r, &o&b2&r &9Draconic Core&r, and &o&b1&r &5Draconium Block&r placed in the &2Fusion Crafting Injectors&r one side and &o&b4&r &bDiamond&r in the Injectors on the other." + "" + "{image:kubejs:textures/item/wyvern_injectors.png width:147 height:100 align:1}" + ] + id: "1F4B8A1F596DDC9D" + min_width: 300 + rewards: [ + { + id: "0B0C3CF028126DAE" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "0D765CD1F8922058" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Wyvern Tier" + tasks: [{ + id: "7E93AB1CBCBBF3F4" + item: "draconicevolution:wyvern_crafting_injector" + type: "item" + }] + x: -9.0d + y: -11.5d + } + { + dependencies: [ + "35E9D7831F65B932" + "18E187C4B23C475D" + ] + description: [ + "Transformed using &o&b2&r &bDiamond&r and &o&b1&r &0Chaotic Core&r in the injectors one side, a &cDraconic Fusion Crafting Injector&r in the &4Fusion Crafting Core&r, &o&b2&r &bDiamond&r and &o&b1&r &0Dragon Egg&r in the &3Crafting&r injectors on the other." + "" + "{image:kubejs:textures/item/chaotic_injectors.png width:147 height:100 align:1}" + ] + id: "0C88374F9004A16A" + min_width: 300 + rewards: [ + { + id: "7475EB96D41D4CF3" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "1B88BEB45F6943E4" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Chaotic Tier" + tasks: [{ + id: "4537C51C93AEF242" + item: "draconicevolution:chaotic_crafting_injector" + type: "item" + }] + x: -9.0d + y: -8.5d + } + { + dependencies: ["788B33FDDB1E3F01"] + id: "379C5EA9682F463B" + rewards: [ + { + id: "32E849C5DD832279" + type: "xp" + xp: 100 + } + { + id: "44E07F89B46FA5F1" + item: "draconicevolution:draconium_core" + type: "item" + } + { + exclude_from_claim_all: true + id: "3B830CD726FC2374" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "442A601D6654AD48" + item: "draconicevolution:draconium_core" + type: "item" + }] + x: -7.0d + y: -13.5d + } + { + dependencies: ["379C5EA9682F463B"] + id: "5A2A93EC00A7E69D" + rewards: [ + { + id: "673C0A48E527365E" + type: "xp" + xp: 500 + } + { + id: "712249BBF1AAB961" + item: "draconicevolution:wyvern_core" + type: "item" + } + { + exclude_from_claim_all: true + id: "53AD42248C70EA1A" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "2B8C23D87AA24197" + item: "draconicevolution:wyvern_core" + type: "item" + }] + x: -7.0d + y: -11.5d + } + { + dependencies: ["5A2A93EC00A7E69D"] + id: "08F3703C95736633" + rewards: [ + { + id: "0B431E1944B37650" + type: "xp" + xp: 1000 + } + { + id: "21FA0A4DA7D7C718" + item: "draconicevolution:awakened_core" + type: "item" + } + { + exclude_from_claim_all: true + id: "5EDC247F74C1106F" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "3CB85A6D530D959B" + item: "draconicevolution:awakened_core" + type: "item" + }] + x: -7.0d + y: -10.0d + } + { + dependencies: ["08F3703C95736633"] + id: "1E8BB611C49DD549" + rewards: [ + { + id: "1172A75A39274361" + type: "xp" + xp: 10000 + } + { + id: "0CA188AD21932781" + item: "draconicevolution:chaotic_core" + type: "item" + } + { + exclude_from_claim_all: true + id: "797E22C179615D3E" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "3ACAAF3995755BAE" + item: "draconicevolution:chaotic_core" + type: "item" + }] + x: -7.0d + y: -8.5d + } + { + dependencies: ["5C2CF51D28F84CBE"] + description: [ + "Once defeated &4Chaos Guardian&r will drop &eXP&r, a &0Dragon Heart&r, and most importantly free the &0Chaos Shards&r." + "" + "Look to where &eLightning&r will strike then &o&bmine below&r it. There you will find the &0Chaos Shard&r. Mine it to be granted &o&b5&r &0Chaos Shards&r which can be crafted into &o&bsmaller parts&r of it!" + "" + "{image:kubejs:textures/item/draconic_shard.png width:150 height:100 align:1}" + ] + hide_dependency_lines: true + icon: "draconicevolution:chaos_shard" + id: "35E9D7831F65B932" + min_width: 300 + rewards: [ + { + id: "1CB61B804A682012" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "3CCA40B3C0CB757B" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + count: 5L + id: "12FC1CF4A7F7AFD5" + item: "draconicevolution:chaos_shard" + type: "item" + } + { + id: "1EB198EE78578982" + item: "draconicadditions:chaos_heart" + type: "item" + } + ] + title: "Chaos Shards" + x: -11.0d + y: -8.5d + } + { + dependencies: ["36538E16D6F75A55"] + description: [ + "It is the &o&benhanced&r version of the &dDislocator&r. It can store up to &o&b100&r different waypoints, which can additionally be used &nacross dimensions&r." + "" + "It uses &3Ender Pearls&r as fuel." + ] + id: "56754AAA741A37B2" + min_width: 250 + rewards: [ + { + id: "3A2451C99DC99DD3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1A597E640ADCBD12" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Advanced Dislocator is a teleportation device" + tasks: [{ + id: "22D095741127AA2B" + item: { + Count: 1 + id: "draconicevolution:advanced_dislocator" + tag: { } + } + type: "item" + }] + x: -3.0d + y: -16.0d + } + { + dependencies: ["15B25555D2A6D638"] + description: [ + "It is first bound to a location by &eShift+Right-clicking&r." + "" + "&aRight-clicking&r the &dCharm of Dislocation&r will teleport the user to the bound location." + "" + "It has &o&b20&r uses and after every use it will deplete &o&b2&r (&o&b2&r &o&cHeart&r) health points which cannot be avoided. The &aCharm&r will not work if the player has less than &o&b3&r (&o&b2&r and a half &o&cHearts&r) health points. It can teleport players &nacross dimensions&r." + ] + id: "36538E16D6F75A55" + min_width: 250 + rewards: [ + { + id: "0CA9F2FD2680E592" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "52633451CD775663" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Dislocator is a transportation device" + tasks: [{ + id: "62C2CA9BD7948486" + item: { + Count: 1 + id: "draconicevolution:dislocator" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.5d + y: -16.0d + } + { + dependencies: ["155A46DA0E602C03"] + id: "0C0282A70F3195DC" + rewards: [ + { + id: "22162F6D89D345E9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3909EEDB3798D916" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "1E8FFBEB699416BC" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + 652813059 + -1874247299 + -1322251119 + 388462501 + ] + } + } + } + id: "draconicevolution:wyvern_chestpiece" + } + type: "item" + }] + x: 2.5d + y: -11.5d + } + { + dependencies: ["358EB7F89D471F68"] + id: "7F086CB80FE07ECE" + rewards: [ + { + id: "067B67CA595D100B" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "0754ED8F5C0122F0" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "0A23C02AD2037E54" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + 1682656377 + 72761673 + -1443120072 + 1205855529 + ] + } + } + } + id: "draconicevolution:draconic_chestpiece" + } + type: "item" + }] + x: 2.5d + y: -10.0d + } + { + dependencies: ["41FC62F000EC481C"] + id: "566296283C6877FB" + rewards: [ + { + id: "168BD945332772DA" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "377ED78660B1EDCF" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "2D53BF6B5140188E" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + 1853762155 + -1127070664 + -1649222372 + -716844674 + ] + } + } + } + id: "draconicevolution:chaotic_chestpiece" + } + type: "item" + }] + x: 2.5d + y: -8.5d + } + { + dependencies: ["3889755985F8DC94"] + id: "65EDFC7CBE98A987" + rewards: [ + { + id: "6DACD824EF98C500" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "249716EB5AD308DB" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "2C93EE134FB726B6" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + 2092642712 + 970411123 + -1753397345 + 41635233 + ] + } + } + } + id: "draconicevolution:wyvern_pickaxe" + } + type: "item" + }] + x: -4.5d + y: -11.5d + } + { + dependencies: ["52B3DA0586070DD6"] + id: "72D69F48B5026B28" + rewards: [ + { + id: "075C78AF7CB96BD8" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "74413743A483B621" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "440807C84015AFCF" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + -770703782 + -827440592 + -1228919800 + 870948649 + ] + } + } + } + id: "draconicevolution:draconic_pickaxe" + } + type: "item" + }] + x: -4.5d + y: -10.0d + } + { + dependencies: ["27BEE3089352528E"] + id: "3F803FF0C85AA3FD" + rewards: [ + { + id: "5878ABBBC84E19DD" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "5833D076ADF8CA7A" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "24E58B46828B3C7C" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + 356482832 + -1472774140 + -1363932958 + 902378867 + ] + } + } + } + id: "draconicevolution:chaotic_pickaxe" + } + type: "item" + }] + x: -4.5d + y: -8.5d + } + { + dependencies: ["65EDFC7CBE98A987"] + id: "0299D93D8BBA3562" + rewards: [ + { + id: "16AD37C46F9E1A78" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "61049C1BE72A8D07" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "63EBAD196C828F6E" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + 2134800629 + 756236530 + -1785506932 + -394455865 + ] + } + } + } + id: "draconicevolution:wyvern_axe" + } + type: "item" + }] + x: -3.5d + y: -11.5d + } + { + dependencies: ["72D69F48B5026B28"] + id: "5F5F9C6014236F9D" + rewards: [ + { + id: "557CF4966619E9D0" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "199F9295474FA577" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "06D2090ECBC6D56E" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + -542649583 + 1992904668 + -2101569835 + 1011325776 + ] + } + } + } + id: "draconicevolution:draconic_axe" + } + type: "item" + }] + x: -3.5d + y: -10.0d + } + { + dependencies: ["3F803FF0C85AA3FD"] + id: "707E17ACF31CF677" + rewards: [ + { + id: "16D8C53A3D63BCBF" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "6AE502D5DAEF100B" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "2A41CEED9184922F" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + 26932435 + -915520074 + -1141222114 + 1339450606 + ] + } + } + } + id: "draconicevolution:chaotic_axe" + } + type: "item" + }] + x: -3.5d + y: -8.5d + } + { + dependencies: ["0299D93D8BBA3562"] + id: "16771D8FC0174F1E" + rewards: [ + { + id: "4A7D5FCFA4059AD8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5595E7F563F4C31A" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "45BE0486A9FBBAD3" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + 1066032653 + 1539001246 + -1721488467 + -978282561 + ] + } + } + } + id: "draconicevolution:wyvern_shovel" + } + type: "item" + }] + x: -2.5d + y: -11.5d + } + { + dependencies: ["5F5F9C6014236F9D"] + id: "4406593EB8FD17B4" + rewards: [ + { + id: "4EB6B84605B0BA84" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "7F23F8F0C83ECA28" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "79FAAAFAAE258B4D" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + -1634141198 + -659928392 + -2044822339 + 2075394767 + ] + } + } + } + id: "draconicevolution:draconic_shovel" + } + type: "item" + }] + x: -2.5d + y: -10.0d + } + { + dependencies: ["707E17ACF31CF677"] + id: "099923B66F7C00A7" + rewards: [ + { + id: "61665924F2F12A17" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "1CE2BBE6B3D23C39" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "380EFE7AAC4183A1" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + -1451414863 + 839405236 + -1113336951 + 1464196085 + ] + } + } + } + id: "draconicevolution:chaotic_shovel" + } + type: "item" + }] + x: -2.5d + y: -8.5d + } + { + dependencies: ["70403F3EC29EFF54"] + id: "358EB7F89D471F68" + rewards: [ + { + id: "52E24E64C0699917" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "6DA0B603F18C2FC9" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "39360B4E1038EAD6" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + -1587270573 + -704885573 + -1160589827 + 685682376 + ] + } + } + } + id: "draconicevolution:draconic_staff" + } + type: "item" + }] + x: 1.0d + y: -10.0d + } + { + dependencies: ["68EB60565082E6E7"] + id: "41FC62F000EC481C" + rewards: [ + { + id: "748612C75DC4A140" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "3BBE6DC0DC1A66D3" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "47D8E28C3FBDF336" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + mining_speed: { + hud: 1b + value: 1.0d + } + } + provider_id: [I; + -1424441587 + -2011413147 + -1582354560 + -833448710 + ] + } + } + } + id: "draconicevolution:chaotic_staff" + } + type: "item" + }] + x: 1.0d + y: -8.5d + } + { + dependencies: ["16771D8FC0174F1E"] + id: "4E5DD1BD504CF09C" + rewards: [ + { + id: "42B31E96F509E600" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "535A72BCE631695D" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "1E88172816E6E4BF" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + -371952136 + 564677123 + -1550573528 + -911293981 + ] + } + } + } + id: "draconicevolution:wyvern_sword" + } + type: "item" + }] + x: -1.0d + y: -11.5d + } + { + dependencies: ["4406593EB8FD17B4"] + id: "7958CC0E543E43FA" + rewards: [ + { + id: "28B0D7D80FF3DD36" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "5511DEE32D72D0CE" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "66F6DAF6D0B82005" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + -939602728 + -1591457725 + -1400400594 + -588941972 + ] + } + } + } + id: "draconicevolution:draconic_sword" + } + type: "item" + }] + x: -1.0d + y: -10.0d + } + { + dependencies: ["099923B66F7C00A7"] + id: "0158FEDE4BBFF7F2" + rewards: [ + { + id: "25A5DB5D48005C79" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "58319F5B6D58C22B" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "11162FA74193DDCC" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + -1930325736 + -1585560622 + -1546812258 + -1495959879 + ] + } + } + } + id: "draconicevolution:chaotic_sword" + } + type: "item" + }] + x: -1.0d + y: -8.5d + } + { + dependencies: ["4E5DD1BD504CF09C"] + id: "155A46DA0E602C03" + rewards: [ + { + id: "5AE56836434BE6A5" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2D11A86AE2506A94" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "198E61DD7EBDF4B0" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + 1992277448 + 434980479 + -1451877990 + -1693593251 + ] + } + } + } + id: "draconicevolution:wyvern_bow" + } + type: "item" + }] + x: 0.0d + y: -11.5d + } + { + dependencies: ["7958CC0E543E43FA"] + id: "70403F3EC29EFF54" + rewards: [ + { + id: "70B2D6EF2ABB456C" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "75556B7440A2E088" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "1B5408FCA86CD1BB" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + 420400188 + 2078360520 + -1635861197 + 529217172 + ] + } + } + } + id: "draconicevolution:draconic_bow" + } + type: "item" + }] + x: 0.0d + y: -10.0d + } + { + dependencies: ["0158FEDE4BBFF7F2"] + id: "68EB60565082E6E7" + rewards: [ + { + id: "7DD9663C1DC2FA33" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "075C55B1915A2512" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "0996BEC41D224EF1" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + 981805543 + -2115419511 + -1436814536 + -1820910639 + ] + } + } + } + id: "draconicevolution:chaotic_bow" + } + type: "item" + }] + x: 0.0d + y: -8.5d + } + { + dependencies: ["5A2A93EC00A7E69D"] + id: "3889755985F8DC94" + rewards: [ + { + id: "0DDBB8D6940274E9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "06A2F8018F1195A3" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "6300BEF50415BD87" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + charge_armor: { + hud: 1b + } + charge_curios: { + hud: 1b + } + charge_held_item: { + hud: 1b + } + charge_hot_bar: { + hud: 1b + } + charge_main: { + hud: 1b + } + } + provider_id: [I; + -889817126 + 2127840419 + -1604131867 + -2085436320 + ] + } + } + } + id: "draconicevolution:wyvern_capacitor" + } + type: "item" + }] + x: -5.785714285714285d + y: -11.5d + } + { + dependencies: ["08F3703C95736633"] + id: "52B3DA0586070DD6" + rewards: [ + { + id: "6E0968248FCFF348" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "0E610BBFDCEDADD9" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "3B025DD3F6AA9AE7" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + charge_armor: { + hud: 1b + } + charge_curios: { + hud: 1b + } + charge_held_item: { + hud: 1b + } + charge_hot_bar: { + hud: 1b + } + charge_main: { + hud: 1b + } + } + provider_id: [I; + 178434288 + 1210926615 + -1736508266 + 1665242149 + ] + } + } + } + id: "draconicevolution:draconic_capacitor" + } + type: "item" + }] + x: -5.785714285714285d + y: -10.0d + } + { + dependencies: ["1E8BB611C49DD549"] + id: "27BEE3089352528E" + rewards: [ + { + id: "65835160E2B7F257" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "67D762DDC3B3AB02" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "09DACE5EE16A68C8" + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 0L + } + module_host: { + modules: [ ] + properties: { + charge_armor: { + hud: 1b + } + charge_curios: { + hud: 1b + } + charge_held_item: { + hud: 1b + } + charge_hot_bar: { + hud: 1b + } + charge_main: { + hud: 1b + } + } + provider_id: [I; + 2003320162 + -1382463678 + -2035433520 + 217256676 + ] + } + } + } + id: "draconicevolution:chaotic_capacitor" + } + type: "item" + }] + x: -5.785714285714285d + y: -8.5d + } + { + dependencies: ["379C5EA9682F463B"] + id: "2D0EBFA1ECF155E1" + rewards: [ + { + id: "5159181243837381" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "56CB1FBD9C941F9C" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "5DE354C6923F39A9" + item: "draconicevolution:crystal_binder" + type: "item" + }] + x: -5.5d + y: -13.5d + } + { + dependencies: ["2D0EBFA1ECF155E1"] + id: "61BDCCF4A66FEAF9" + rewards: [ + { + id: "2B13423AEC06CD22" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2E4E53B5D4B3FC95" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "218011FABD804F84" + item: "draconicevolution:basic_relay_crystal" + type: "item" + }] + x: -4.5d + y: -13.5d + } + { + dependencies: ["61BDCCF4A66FEAF9"] + id: "17F755110BC15147" + rewards: [ + { + id: "383A8C8DCDAF981D" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "71552448DF678029" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "5537F2A1F3BC5CD0" + item: "draconicevolution:wyvern_relay_crystal" + type: "item" + }] + x: -3.5d + y: -13.5d + } + { + dependencies: ["17F755110BC15147"] + id: "14A7F7D25B6EA130" + rewards: [ + { + id: "0431EE83BB729706" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "6F5355DF01E0B112" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "06800C5D805C4E59" + item: "draconicevolution:draconic_relay_crystal" + type: "item" + }] + x: -2.5d + y: -13.5d + } + { + dependencies: ["61BDCCF4A66FEAF9"] + id: "2E3306D45DAFCD58" + rewards: [ + { + id: "3B7B4541D51F56CF" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "7DDA611DBA0D94FA" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "octagon" + tasks: [{ + id: "38F0432E6AF6671F" + item: "draconicevolution:basic_wireless_crystal" + type: "item" + }] + x: -4.0d + y: -14.5d + } + { + dependencies: ["17F755110BC15147"] + id: "1521799169846152" + rewards: [ + { + id: "154C0CC889AD19F1" + type: "xp" + xp: 400 + } + { + exclude_from_claim_all: true + id: "2565E137D025F89E" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "6B3A4D3596FF5721" + item: "draconicevolution:wyvern_wireless_crystal" + type: "item" + }] + x: -3.0d + y: -14.5d + } + { + dependencies: ["14A7F7D25B6EA130"] + id: "6FFB4D89044F8D21" + rewards: [ + { + id: "6690CDBE650334C8" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "1CF5678173A797A4" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "45D4DE277D5111FA" + item: "draconicevolution:draconic_wireless_crystal" + type: "item" + }] + x: -2.0d + y: -14.5d + } + { + dependencies: ["333AAA56BAA0E356"] + description: [ + "When fully assembled, &cRF&r can be introduced to and extracted from the structure through the use of &2Energy Pylons&r." + "" + "These can be placed anywhere within &o&b16&r blocks of the &9Core&r, and are activated by placing a block of &3Glass&r either above or below the &2Pylon&r (depending if it is below or above the &9Core&r, respectively), which will turn into a blue orb." + "" + "&9Pylons&r can be toggled between &o&binput&r and &o&boutput&r mode by &eRight-clicking&r the orb, and can move &o&b2,147,483,647&r &cRF&r/t per face." + "" + "{@pagebreak}" + "The amount of &cRF&r that can be stored inside an &6Energy Core&r of a given tier is:" + "- Tier 1 = &o&b45,500,000&r" + "- Tier 2 = &o&b273,000,000&r" + "- Tier 3 = &o&b1,640,000,000&r" + "- Tier 4 = &o&b9,880,000,000&r" + "- Tier 5 = &o&b59,300,000,000&r" + "- Tier 6 = &o&b356,000,000,000&r" + "- &9Tier 7&r = &o&62,140,000,000,000&r" + "- Tier 8 = &o&b9,223,372,036,854,775,807&r" + "" + "Guess what? We are gonna build &6Tier 7&r, yeah &o&b2&r billion &cRF&r should be enough to start with." + "OK we'll be needed some of materials to build that thing as well:" + "&o&b1x&r Energy Core" + "&o&b36x&r Energy Core Stabilizers" + "&o&b210x&r Draconium Blocks" + "&o&b328x&r Blocks of Redstone" + "&o&b2x&r Energy Pylons" + ] + hide_dependency_lines: true + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/energy_core.png" + } + } + icon_scale: 1.2d + id: "070EB3CBF9EB25F5" + min_width: 350 + rewards: [ + { + id: "542D98007AB5E5AF" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "1ED972CBDB731698" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + size: 3.0d + subtitle: "The &bEnergy Core&r is a energy storage system" + tasks: [ + { + id: "689FA112C24EA379" + item: "draconicevolution:energy_core" + type: "item" + } + { + count: 36L + id: "74D29CDDD89DE9F0" + item: "draconicevolution:energy_core_stabilizer" + type: "item" + } + { + count: 210L + id: "52CE89C019ACAFF2" + item: "draconicevolution:draconium_block" + type: "item" + } + { + count: 328L + id: "5785B7F3489C3965" + item: "minecraft:redstone_block" + type: "item" + } + { + count: 2L + id: "486D9BF55C244E64" + item: "draconicevolution:energy_pylon" + type: "item" + } + ] + title: "The Energy Core" + x: 3.5535714285714164d + y: -17.38392857142857d + } + { + description: [ + "&2Stabilizers&r are what form the &dContainment Field&r (&o&bForce Shield&r around the &4Reactor Core&r). Once &dContainment Shield&r is down to &o&b0&r while &aReactor&r is turned on it will begin a &4Meltdown&r." + "" + "All &o&b4&r &2Stabilizers&r need to be a &o&bfew blocks away&r (&nfive or more&r) from the &4Core&r and need to be around same &o&bAxis&r as the &4Core&r to work. These are also where you will pipe out &o&bOP&r from the &aReactor&r." + ] + hide_dependency_lines: true + icon_scale: 1.5d + id: "69986817D58AC8BE" + min_width: 300 + rewards: [ + { + id: "187F3B0F0CA5F52B" + type: "xp" + xp: 500 + } + { + count: 3 + id: "088060449283144D" + item: "draconicevolution:awakened_draconium_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "6210D2877CAC2F0C" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + count: 4L + id: "2184F68F4DDA4834" + item: "draconicevolution:reactor_stabilizer" + type: "item" + }] + title: "Rieactor Stabilizers" + x: 1.5d + y: -15.5d + } + { + dependencies: [ + "6616A62426ED4D15" + "69986817D58AC8BE" + ] + description: [ + "The &4Reactor Core&r is the most important part of the &2Reactor&r!" + "" + "Place it &o&b5&r blocks or more from the &9Injector&r and &9Stabilizers&r, and you can &eRight-click&r it to see it's &o&bGUI&r here you'll find a few bars, a ball, buttons, and slots. The &aBars&r go from left to right: &cHeat&r, &3Containment Field&r, &6Energy Saturation&r, and &dFuel Conversion&r." + "So the &cHeat&r is pretty important as when warming up it will raise to &o&b2,000 C°&r before being ready to activate. Make sure it doesn't get too high or else... &o&4Meltdown&r! The &o&bButtons&r change the appearance of &o&bGUI&r, to &nactivate&r or &nshutdown&r the &2Reactor&r, and &ncharge&r it." + "" + "{image:kubejs:textures/item/draconic_reactor_off_down.png width:100 height:50 align:1}" + "{image:kubejs:textures/item/draconic_reactor_off_up.png width:75 height:75 align:1}" + ] + icon_scale: 2.0d + id: "5BC6CC3C09F512A7" + min_width: 400 + rewards: [ + { + id: "2CE0BE94DA88B867" + type: "xp" + xp: 300 + } + { + count: 2 + id: "780E12216ED028B5" + item: "draconicevolution:awakened_draconium_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "0D7CC7408507CA7E" + table_id: 1235506154212082407L + type: "random" + } + ] + size: 1.2d + tasks: [{ + id: "4DCBC4B5CD5C7016" + item: "draconicevolution:reactor_core" + type: "item" + }] + x: 0.0d + y: -14.5d + } + { + description: [ + "The &2Injector&r needs to be on a &o&bdifferent side&r of all the &9Stabilizers&r and has to share the same &o&bAxis&r as the &4Core&r." + "" + "This is where &o&bOP&r will need to pumped in from! To activate and make &o&bOP&r the &cEnergy Saturation&r needs to be raised up a bit. &cEnergy Saturation&r is the stored &eEnergy&r and soon to be made &eEnergy&r." + ] + hide_dependency_lines: true + icon_scale: 1.5d + id: "6616A62426ED4D15" + min_width: 300 + rewards: [ + { + id: "0777EF93C63A24B0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "25D837C839D03145" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3A62FA10AC96760C" + item: "draconicevolution:reactor_injector" + type: "item" + }] + x: 1.5d + y: -13.5d + } + { + dependencies: ["5BC6CC3C09F512A7"] + description: [ + "The &2Reactor&r can only hold &o&b1&r Billion &o&bOP&r and while that may seem like a far number, it won't be for long." + "" + "When &cEnergy Saturation&r reaches &o&b100%&r it will increase &eHeat&r a ton which can lead to &4Meltdown&r. It will need &o&b500,000,000 OP&r to activate and a &dFlux Gate&r will help limit hou much &o&bOP&r comes in and out. (&o&b1 RF = 1 OP&r)" + "" + "They need &3Redstone&r to activate and can be used for both &nadding&r &o&bOP&r and &ntaking&r out &o&bOP&r. You'll need &eEnergy&r out to not &4Meltdown&r, try putting it in an &6Energy Core&r!" + ] + icon_scale: 1.5d + id: "6601ACCDDF6CA5FF" + min_width: 300 + rewards: [ + { + id: "473658204D612EBC" + type: "xp" + xp: 100 + } + { + id: "2C4A818C2E253AB6" + item: "minecraft:lever" + type: "item" + } + { + exclude_from_claim_all: true + id: "377ECF3F8688F556" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "5E453CAF75E1370A" + item: "draconicevolution:flux_gate" + type: "item" + }] + x: 2.5d + y: -14.0d + } + { + dependencies: ["5BC6CC3C09F512A7"] + description: [ + "The &2Reactor&r takes &6Awakened Draconium&r as fuel." + "" + "&9Fuel Conversion&r determines when the &6Awakened Draconium&r will change to &0Chaos&r. It can take only &o&b8&r blocks at a time and can only be &nFueled&r or &nRiefueled&r when the &2Reactor&r is shut off." + "" + "&o&bSAS&r mode helps to make that easier! Also fuel goes into the &o&bbottom right slots&r." + ] + icon_scale: 1.5d + id: "129E09C03E40BA57" + min_width: 300 + rewards: [ + { + id: "79FBD7779D35AE28" + type: "xp" + xp: 200 + } + { + count: 2 + id: "2C5B0E19464AB3CD" + item: "draconicevolution:awakened_draconium_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "7CF8A80235E523D0" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + count: 8L + id: "47941C447E669A0E" + item: "draconicevolution:awakened_draconium_block" + type: "item" + }] + title: "Reactor Fuel" + x: 2.5d + y: -15.0d + } + { + dependencies: [ + "129E09C03E40BA57" + "6601ACCDDF6CA5FF" + ] + description: [ + "&o&b500&r Million &cRF&r ? ✔ " + "Fuel ? ✔" + "Heat at &o&b2,000 C°&r? ✔" + "" + "Just click that &6Activate&r button and pray it doesn't &4Meltdown&r!" + "" + "{image:kubejs:textures/item/draconic_reactor_on_down.png width:100 height:50 align:1}" + "{image:kubejs:textures/item/draconic_reactor_on_up.png width:75 height:75 align:1}" + ] + icon: "draconicevolution:reactor_stabilizer" + id: "7D159D333B2AC57E" + min_width: 300 + rewards: [ + { + id: "2CC933DAF73F7D73" + type: "xp_levels" + xp_levels: 20 + } + { + exclude_from_claim_all: true + id: "2A147B047ED5521E" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "61CCAD2018478894" + title: "Activation" + type: "checkmark" + }] + title: "Activating the Reactor" + x: 3.5d + y: -14.5d + } + { + dependencies: ["2D0EBFA1ECF155E1"] + id: "295EB6CFEC029AE2" + rewards: [ + { + id: "460BA2C000666444" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2DA8626AD797D8CE" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "octagon" + tasks: [{ + id: "748F42CFD74B7147" + item: "draconicevolution:energy_transfuser" + type: "item" + }] + x: -5.0d + y: -14.5d + } + { + description: [ + "&2Modules&r are very important to our &9Draconic Evolution&r items. So important they &o&bdon't work without&r them! Most &2Modules&r are made from a &eModule Core&r or a previous &2Module&r." + "" + "Hold an item and press &eShift+C&r to open the &3Module Menu&r. There you'll see some &o&bslots&r and &o&bbuttons&r! The &cSlots&r are where &2Modules&r will actually go and the &7Grid&r is what determines how many &2Modules&r can go." + "" + "When a &2Module&r says &o&b1x1&r it'll only take &o&b1&r &cSlot&r, while one that says &o&b2x2&r will take uo &o&b4&r &cSlots&r." + "" + "The &o&blowest button on the right&r will show what &2Modules&r can be applied to the Item you are holding. The rest just change the look of &o&bGUI&r." + ] + hide_dependency_lines: true + hide_dependent_lines: true + icon_scale: 1.5d + id: "4EFFE300EC781C3E" + min_width: 300 + rewards: [ + { + id: "5048E52512ED33E7" + type: "xp" + xp: 100 + } + { + id: "02F3ACF46740CD01" + item: "draconicevolution:module_core" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "4E542EFAD4B2F0DB" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.7d + tasks: [{ + id: "526113C0A6FEE835" + item: "draconicevolution:module_core" + type: "item" + }] + title: "Modules!" + x: 4.8999999999999995d + y: -13.299999999999999d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "&2Energy Modules&r are the most important modules and are needed for using &9Draconic Evolution&r items. The amount in them determines how much &o&bOP&r an item can hold and take in, check out the &eEnergy Infuser&r to learn more about charging." + "" + "The later the &o&bTier&r of &2Energy Module&r the more &o&bOP&r items can hold and use. This is important as when items are upgraded they use more &o&bOP&r per use." + ] + icon_scale: 1.5d + id: "574E5806D1A98FE5" + min_width: 250 + rewards: [ + { + id: "112DCB95B66029E4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7A97088C75488326" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "1D76A5C236FC8717" + item: "draconicevolution:item_draconium_energy" + type: "item" + }] + x: 6.25d + y: -18.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "&2Speed Modules&r are fun, they work in just &o&babout everything&r and make them faster!" + "" + "&3Swords&r swing faster, &3Pickaxes&r mine faster, &3Axes&r chop faster, &3Bows&r shoot faster, and &3Chestplate&r makes you faster." + "" + "The better the &2Speed Module&r the faster they go! Good time to mention most stats stack up. Two &aBasic Speed Modules&r increase &dSpeed&r by &o&b20%&r then!" + ] + icon_scale: 1.5d + id: "7C54581562D2EA75" + min_width: 250 + rewards: [ + { + id: "0E96B1179E45EE74" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "74269D0E843843F8" + table_id: 1235506154212082407L + type: "random" + } + { + id: "57DA60467952EBEA" + type: "xp" + xp: 300 + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "02D424E19C5B49D3" + item: "draconicevolution:item_draconium_speed" + type: "item" + }] + x: 6.25d + y: -17.0d + } + { + dependencies: ["574E5806D1A98FE5"] + icon_scale: 1.5d + id: "120B403D56EE5C79" + rewards: [ + { + id: "778F9C152215A45B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "02D933A0619220D6" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "10764264F36D3ED8" + item: "draconicevolution:item_wyvern_energy" + type: "item" + }] + x: 6.75d + y: -18.0d + } + { + dependencies: ["120B403D56EE5C79"] + icon_scale: 1.5d + id: "5021D159A5EC2315" + rewards: [ + { + id: "0161D70B820EE7FC" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "7B51C522A97D23EE" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "30574D39064813B9" + item: "draconicevolution:item_draconic_energy" + type: "item" + }] + x: 7.25d + y: -18.0d + } + { + dependencies: ["5021D159A5EC2315"] + icon_scale: 1.5d + id: "54F78C9A945CF0E7" + rewards: [ + { + id: "1BD109EE8EFEDD19" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "43224999AEEDC50F" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "7EEBD2FBBE9762E8" + item: "draconicevolution:item_chaotic_energy" + type: "item" + }] + x: 7.75d + y: -18.0d + } + { + dependencies: ["4B9FF9E972B0E530"] + icon_scale: 1.5d + id: "4638F21544D6D337" + rewards: [ + { + id: "7F84B2AB53B59FF4" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "19268E3A50B04FC8" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "64938488390AE717" + item: "draconicevolution:item_chaotic_energy_link" + type: "item" + }] + x: 7.75d + y: -17.5d + } + { + dependencies: ["20D8DA523E900A52"] + description: ["{atm9.quest.draconic.desc.QEnT}"] + icon_scale: 1.5d + id: "4B9FF9E972B0E530" + rewards: [ + { + id: "770B32ACDCEAE09F" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "625BF2C6E4BC3EA0" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "7634D5C19B7C8904" + item: "draconicevolution:item_draconic_energy_link" + type: "item" + }] + x: 7.25d + y: -17.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "&2Wireless Energy Links&r help to make it so &dWireless Crystals&r can charge your items." + "" + "The more modules, the more &o&bOP&r it can take it and at a better rate." + ] + icon_scale: 1.5d + id: "20D8DA523E900A52" + min_width: 250 + rewards: [ + { + id: "60FCAA414DB87EF5" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3CA500246065152C" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "6263FF7F49AAC2E5" + item: "draconicevolution:item_wyvern_energy_link" + type: "item" + }] + x: 6.75d + y: -17.5d + } + { + dependencies: ["7C54581562D2EA75"] + icon_scale: 1.5d + id: "2AA08313F927981E" + rewards: [ + { + id: "27EDF789E188AE42" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "4BD40C8590DCF453" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2E73CED80A975B02" + item: "draconicevolution:item_wyvern_speed" + type: "item" + }] + x: 6.75d + y: -17.0d + } + { + dependencies: ["2AA08313F927981E"] + icon_scale: 1.5d + id: "28AF8DD34412CBAA" + rewards: [ + { + id: "71EDBFE18C69D969" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "470FB54A878E2FAB" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2335FC0A8CDCE48C" + item: "draconicevolution:item_draconic_speed" + type: "item" + }] + x: 7.25d + y: -17.0d + } + { + dependencies: ["28AF8DD34412CBAA"] + icon_scale: 1.5d + id: "2A5C5B44E9643A5D" + rewards: [ + { + id: "5583A78B178400C8" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "2E30CA85DDA252A6" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "77F5E176FDD21534" + item: "draconicevolution:item_chaotic_speed" + type: "item" + }] + x: 7.75d + y: -17.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "These modules are only for the &dDraconic Evolution Bows&r, unlike the previous ones. The &2Projectile Damage Module&r increases the damage of &eArrows&r shot by the &aBow&r." + "" + "Some Modules happen to have &o&bnegative effects&r with it, like these give a slight more &7Inaccuracy&r to &aBows&r. All of these &o&bcan stack&r!" + ] + icon_scale: 1.5d + id: "7D7E4C31DFE59E29" + min_width: 250 + rewards: [ + { + id: "5AC8805D1BC8DE2E" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "10A38EBF6B384085" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2DF91C91574F18A1" + item: "draconicevolution:item_wyvern_proj_damage" + type: "item" + }] + x: 6.75d + y: -16.5d + } + { + dependencies: ["7D7E4C31DFE59E29"] + icon_scale: 1.5d + id: "4903BDC389C73082" + rewards: [ + { + id: "497FD23D01E51409" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "6EA92D1EBC16C1B4" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "32BB5E044BAE4F77" + item: "draconicevolution:item_draconic_proj_damage" + type: "item" + }] + x: 7.25d + y: -16.5d + } + { + dependencies: ["4903BDC389C73082"] + icon_scale: 1.5d + id: "52C301DF1776E0D8" + rewards: [ + { + id: "71F705785AB2C808" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "45551BC4335CF0CA" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "45C1EEF97BCF5A10" + item: "draconicevolution:item_chaotic_proj_damage" + type: "item" + }] + x: 7.75d + y: -16.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "&2Velocity&r is the speed of an item at a certain direction. " + "" + "With each upgrade it takes less time from the &eArrow&r to go from your &aBow&r to your &cTarget&r. Comes at a cost of a little inaccuracy." + ] + icon_scale: 1.5d + id: "61419D230687CBB5" + min_width: 250 + rewards: [ + { + id: "5A013868EA997619" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "2FC60CC6E1AFDCBC" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "4EFCDD3427D5CAE8" + item: "draconicevolution:item_wyvern_proj_velocity" + type: "item" + }] + x: 6.75d + y: -16.0d + } + { + dependencies: ["61419D230687CBB5"] + icon_scale: 1.5d + id: "0499A372F55D04C8" + rewards: [ + { + id: "249CCF3168868D32" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "4C84B6204D1B6B28" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "6B2CD2E18A26E55C" + item: "draconicevolution:item_draconic_proj_velocity" + type: "item" + }] + x: 7.25d + y: -16.0d + } + { + dependencies: ["0499A372F55D04C8"] + icon_scale: 1.5d + id: "10E4ADA1D0063EB7" + rewards: [ + { + id: "5A7B08EB0C79F1F4" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "4971C41D0BEAE598" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "7E5AFCCDE171EEA5" + item: "draconicevolution:item_chaotic_proj_velocity" + type: "item" + }] + x: 7.75d + y: -16.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "Hopefully you are familiar with &aCrossbows&r and &dPiercing&r." + "" + "They have an enchantment which allows their &eArrows&r to go through &o&bmultiple targets&r and continuously dealing damage. This &2Module&r does &nexactly&r that!" + ] + icon_scale: 1.5d + id: "78FBB0C88182040E" + min_width: 260 + rewards: [ + { + id: "7EAE2B8D04495FB7" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "1FC6E3CB574F70F7" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2771CA29BA10C3F7" + item: "draconicevolution:item_wyvern_proj_penetration" + type: "item" + }] + x: 6.75d + y: -15.5d + } + { + dependencies: ["78FBB0C88182040E"] + icon_scale: 1.5d + id: "070F8045CC14B50D" + rewards: [ + { + id: "23B0FA459A5A83EC" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "03DE152EA688E11E" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "03D37837BCDC5FCB" + item: "draconicevolution:item_draconic_proj_penetration" + type: "item" + }] + x: 7.25d + y: -15.5d + } + { + dependencies: ["070F8045CC14B50D"] + icon_scale: 1.5d + id: "154D9EA863FD2A32" + rewards: [ + { + id: "36D1C7535DE02EE0" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "7DD38595A70F54D5" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "23F6AD87539D4BE0" + item: "draconicevolution:item_chaotic_proj_penetration" + type: "item" + }] + x: 7.75d + y: -15.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "With something so &o&bprimitive&r as a &aBow&r you can't expect perfect &dAccuracy&r. Well you can if you use these &2Modules&r." + "" + "The &eArrow&r is much more likely to hit its target and not go &o&boff course&r." + ] + icon_scale: 1.5d + id: "1830412AB77E9526" + min_width: 250 + rewards: [ + { + id: "302459FDDE07B388" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "38F993FEC5C6EFDD" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "3F28B3211730AFB9" + item: "draconicevolution:item_wyvern_proj_accuracy" + type: "item" + }] + x: 6.75d + y: -15.0d + } + { + dependencies: ["1830412AB77E9526"] + icon_scale: 1.5d + id: "38AD547C36BDF4C4" + rewards: [ + { + id: "6C4D618F3819A1FC" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "1B0E40B53E3D7FDD" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "59BD7F05AA2944EB" + item: "draconicevolution:item_draconic_proj_accuracy" + type: "item" + }] + x: 7.25d + y: -15.0d + } + { + dependencies: ["38AD547C36BDF4C4"] + icon_scale: 1.5d + id: "35A674E2C6F66673" + rewards: [ + { + id: "3F6E1F4EB111B9DB" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "26E484C55C7EB6C4" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "53E64B7B94EBE42A" + item: "draconicevolution:item_chaotic_proj_accuracy" + type: "item" + }] + x: 7.75d + y: -15.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "Basically when an &eArrow&r hits a mob &o&bthe force&r of the &9Mob&r applies to the &eArrow&r which will &o&bslow it down&r. Unless you have this &2Module&r." + "" + "It doesn't act as if every mob &o&bwas paper&r, it acts as if every mob &o&bisn't in the way&r. &eArrows&r &nwon't slow down&r after &dPiercing&r a target." + ] + icon_scale: 1.5d + id: "60C27206F1414DD6" + min_width: 250 + rewards: [ + { + id: "74DD5F31E90C52C4" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "07928382C36F69E8" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "7D162713642FEC01" + item: "draconicevolution:item_draconic_proj_anti_immune" + type: "item" + }] + x: 8.75d + y: -16.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "What is up with &6Physics&r and Draconic Evolution and betraying them?" + "" + "Gravity pulls the &eArrow&r down over the time it's shot. &2Gravity Compensation&r makes us worry less about that." + ] + icon_scale: 1.5d + id: "376D154F27A00BCD" + rewards: [ + { + id: "0FE17D6050D2D158" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "7E6F76E650314D2E" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "6C567B271F8A7871" + item: "draconicevolution:item_wyvern_proj_grav_comp" + type: "item" + }] + x: 6.75d + y: -14.5d + } + { + dependencies: ["376D154F27A00BCD"] + icon_scale: 1.5d + id: "265D0DB0E8CED73B" + rewards: [ + { + id: "63E0585D65EF8AEE" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "65530793696B11CD" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "53D181AA185BE944" + item: "draconicevolution:item_draconic_proj_grav_comp" + type: "item" + }] + x: 7.25d + y: -14.5d + } + { + dependencies: ["265D0DB0E8CED73B"] + icon_scale: 1.5d + id: "7EB1C1AE52A0027F" + rewards: [ + { + id: "19373AD67723BF58" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "255396DE976718C4" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "0FE2A541A688C114" + item: "draconicevolution:item_chaotic_proj_grav_comp" + type: "item" + }] + x: 7.75d + y: -14.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "Most &9Bows&r are &o&bSemi-Automatic&r. You have to draw the string, release, and put another &eArrow&r in the bow, and repeat." + "" + "Instead skip all that let the &9Bow&r &nautomatically&r fire everytime it's fully drawn. Just hold &eRight-click&r and watch it go!" + ] + icon_scale: 1.5d + id: "4ABEF61DADBD0640" + min_width: 250 + rewards: [ + { + id: "6668B922C23E77AA" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "1F053E7207215072" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "344FA029990B58A7" + item: "draconicevolution:item_wyvern_auto_fire" + type: "item" + }] + x: 8.75d + y: -15.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "&2Area of Effect&r is a phrase most Gamers would know. Basically it &o&bupgrades the working area&r of the &3Tool&r it's on. " + "" + "&aPickaxes&r with &o&b3x3&r &dAOE&r will mine in a &o&b3x3&r area. &3Swords&r with &o&b3x3&r &dAOE&r will kill all mobs hit within that area. The &nbetter&r the upgrade the &nbigger&r the area. No, it's &o&bnot stackable&r!" + ] + icon_scale: 1.5d + id: "7143CE930D08F160" + min_width: 250 + rewards: [ + { + id: "33DA81BBE84DA3F3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "65FE194F3EBF3988" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "3322B804D048BF30" + item: "draconicevolution:item_draconium_aoe" + type: "item" + }] + x: 6.25d + y: -14.0d + } + { + dependencies: ["7143CE930D08F160"] + icon_scale: 1.5d + id: "165030137EF59299" + rewards: [ + { + id: "42F9F95BEA097C15" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "118E8A9A571BCF1C" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "4F825AF56523DA5E" + item: "draconicevolution:item_wyvern_aoe" + type: "item" + }] + x: 6.75d + y: -14.0d + } + { + dependencies: ["165030137EF59299"] + icon_scale: 1.5d + id: "655BE42CD5BB9D82" + rewards: [ + { + id: "0B828DB4E96D629E" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "29447BC0A5B56E33" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2ACB040E880AA278" + item: "draconicevolution:item_draconic_aoe" + type: "item" + }] + x: 7.25d + y: -14.0d + } + { + dependencies: ["655BE42CD5BB9D82"] + icon_scale: 1.5d + id: "33D2901594655A77" + rewards: [ + { + id: "405E8C23632CCDAD" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "192157D9BE4DD8D8" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "22158164E32379BE" + item: "draconicevolution:item_chaotic_aoe" + type: "item" + }] + x: 7.75d + y: -14.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: ["Items gotten from the &3Tool&r this is on will go to your &dEnder Chest&r. The &nVanilla one&r not &nmodded one&r."] + icon_scale: 1.5d + id: "731A70C25C2C7281" + min_width: 250 + rewards: [ + { + id: "3C2EFC22CAD01C37" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "204E0750F1544E56" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2871F9FB5BF04B78" + item: "draconicevolution:item_wyvern_ender_collection" + type: "item" + }] + x: 6.75d + y: -13.5d + } + { + dependencies: ["731A70C25C2C7281"] + description: ["This one is the same as the previous one, but with &o&bfiltering options&r."] + icon_scale: 1.5d + id: "74C715F8F24B8BAE" + min_width: 250 + rewards: [ + { + id: "50079C429D5A10E3" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "394D5313E96F338F" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "5A39B70F8A227ECB" + item: "draconicevolution:item_draconic_ender_collection" + type: "item" + }] + x: 7.25d + y: -13.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: ["&o&bFiltering&r isn't enough? You want the items &o&bdestroyed&r?"] + icon_scale: 1.5d + id: "79886D63280DBBF3" + min_width: 250 + rewards: [ + { + id: "4919407CEA26427A" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "5085802C09781FD9" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "14816C5D68A251CF" + item: "draconicevolution:item_wyvern_junk_filter" + type: "item" + }] + x: 8.75d + y: -13.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: ["Pretty simple premise, &3Axes&r and &3Swords&r can do more &cDamage&r. Yes, &o&bit stacks&r!"] + icon_scale: 1.5d + id: "1C8210712349A2E3" + min_width: 250 + rewards: [ + { + id: "6B49AE187771CD5E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6B7F125A6AAC3232" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "1ED5F0AA6588F503" + item: "draconicevolution:item_draconium_damage" + type: "item" + }] + x: 6.25d + y: -13.0d + } + { + dependencies: ["1C8210712349A2E3"] + icon_scale: 1.5d + id: "1E41A5071854DEC8" + rewards: [ + { + id: "4291C38CE8A4F68A" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "4A507BDEA16FBC12" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "56370732D830D093" + item: "draconicevolution:item_wyvern_damage" + type: "item" + }] + x: 6.75d + y: -13.0d + } + { + dependencies: ["1E41A5071854DEC8"] + icon_scale: 1.5d + id: "7B9F5EEC76FDD0D4" + rewards: [ + { + id: "1B3AE141D449D1CE" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "42C0FA71179BFB06" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "0746EC1EA680B78D" + item: "draconicevolution:item_draconic_damage" + type: "item" + }] + x: 7.25d + y: -13.0d + } + { + dependencies: ["7B9F5EEC76FDD0D4"] + icon_scale: 1.5d + id: "04695DA1BD3BF1B2" + rewards: [ + { + id: "7EB0C7B99153CD98" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "05389273D8CC9DA8" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "33FC8252185CB8ED" + item: "draconicevolution:item_chaotic_damage" + type: "item" + }] + x: 7.75d + y: -13.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: ["All &2Trees&r attached to whats chopped down, comes with it."] + icon_scale: 1.5d + id: "607337D8AA20FA18" + min_width: 250 + rewards: [ + { + id: "612C406F79D6A086" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "354B59603A6057DD" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "3143C632F79A604C" + item: "draconicevolution:item_wyvern_tree_harvest" + type: "item" + }] + x: 6.75d + y: -12.5d + } + { + dependencies: ["607337D8AA20FA18"] + icon_scale: 1.5d + id: "3DF794EBCAA7AE1A" + rewards: [ + { + id: "227B175E35557671" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "00D7D18CCEA36313" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2971418598EED7C8" + item: "draconicevolution:item_draconic_tree_harvest" + type: "item" + }] + x: 7.25d + y: -12.5d + } + { + dependencies: ["3DF794EBCAA7AE1A"] + icon_scale: 1.5d + id: "7496B2380A23FDC6" + rewards: [ + { + id: "29CB9A0E60B8D6C4" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "6A6E4E78C06117CF" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "77FC8AB08FF5339C" + item: "draconicevolution:item_chaotic_tree_harvest" + type: "item" + }] + x: 7.75d + y: -12.5d + } + { + dependencies: [ + "4EFFE300EC781C3E" + "37CC51B689CB8A40" + ] + description: [ + "&2Undying&r acts as the thing that makes it, the &eRecovery Totem&r!" + "" + "When your hearts are down to &o&b0&r instead of &o&bdying&r the &6Module&r will activate, giving you &dAbsorption&r and &dRegeneration&r, saving your life. It has a &o&bCooldown&r and needs to use &o&bOP&r to power up again." + "" + "Try &nnot to die&r during that time! Better upgrades means &o&bless cooldowns&r." + ] + icon_scale: 1.5d + id: "16FF2219F110F50A" + min_width: 250 + rewards: [ + { + id: "2F75D42D59ADC5E3" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "3245BF09B35640D7" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "33FAF1015478CB17" + item: "draconicevolution:item_wyvern_undying" + type: "item" + }] + x: 6.75d + y: -12.0d + } + { + dependencies: [ + "16FF2219F110F50A" + "76064465104B1C28" + ] + icon_scale: 1.5d + id: "542AD6FD1927C3E6" + rewards: [ + { + id: "7677145A148E04C7" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "0F1C5166AB10A7D6" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "20B4C158C9DD7EA2" + item: "draconicevolution:item_draconic_undying" + type: "item" + }] + x: 7.25d + y: -12.0d + } + { + dependencies: [ + "542AD6FD1927C3E6" + "4A3A5684302C8627" + ] + icon_scale: 1.5d + id: "52EA9793A7100E75" + rewards: [ + { + id: "603BB61AE48FF666" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "662FE782CAAFA674" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "309835FD9511F154" + item: "draconicevolution:item_chaotic_undying" + type: "item" + }] + x: 7.75d + y: -12.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "&3Chestplates&r work similar to the &6Meka-Suit&r. Any damage that would be dealt to you is negated and instead &o&btaken off&r your &aShield&r." + "" + "&aShield&r capacity is how much shield you can hold, recharge rate is &o&bhow fast&r it fills up and &o&bOP&r will be used when recharging." + ] + icon_scale: 1.5d + id: "37CC51B689CB8A40" + min_width: 250 + rewards: [ + { + id: "3B13CB1215C7F490" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "6A5B97524BE0175A" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "43159CD00B790742" + item: "draconicevolution:item_wyvern_shield_capacity" + type: "item" + }] + x: 6.75d + y: -11.5d + } + { + dependencies: ["37CC51B689CB8A40"] + icon_scale: 1.5d + id: "76064465104B1C28" + rewards: [ + { + id: "2C1A99BC658521B2" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "48BA7B9D7DFA5B17" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "701E53B2A54779D9" + item: "draconicevolution:item_draconic_shield_capacity" + type: "item" + }] + x: 7.25d + y: -11.5d + } + { + dependencies: ["76064465104B1C28"] + icon_scale: 1.5d + id: "4A3A5684302C8627" + rewards: [ + { + id: "62F3B922F30E9155" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "04EED1876494C123" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2FA9F37D667C5CCD" + item: "draconicevolution:item_chaotic_shield_capacity" + type: "item" + }] + x: 7.75d + y: -11.5d + } + { + dependencies: ["37CC51B689CB8A40"] + description: ["Same as the &o&bprevious quest&r, just &o&bmore&r, &na lot more&r."] + icon_scale: 1.5d + id: "3CB8F5F1D33C8F9F" + min_width: 250 + rewards: [ + { + id: "58E8B7E037809332" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "5E729B88A39C8C29" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2CD48906720862D1" + item: "draconicevolution:item_wyvern_large_shield_capacity" + type: "item" + }] + x: 6.75d + y: -11.0d + } + { + dependencies: [ + "3CB8F5F1D33C8F9F" + "76064465104B1C28" + ] + icon_scale: 1.5d + id: "4F6A9F1AEFD535F5" + rewards: [ + { + id: "7105842E0A3072B7" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "56F66593E394ACF9" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "501BB3832EEE40E1" + item: "draconicevolution:item_draconic_large_shield_capacity" + type: "item" + }] + x: 7.25d + y: -11.0d + } + { + dependencies: [ + "4F6A9F1AEFD535F5" + "4A3A5684302C8627" + ] + icon_scale: 1.5d + id: "7081E9BF44EFBCB0" + rewards: [ + { + id: "63C9F40F44E8507A" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "6A57FCA19B2E733F" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "74CF4D2E4CBD3637" + item: "draconicevolution:item_chaotic_large_shield_capacity" + type: "item" + }] + x: 7.75d + y: -11.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "Want your &eShield&r to &o&bcome back&r and not just when you almost die? Then, you'll need &2Recovery Modules&r." + "" + "The &nmore&r modules the &nfaster&r it recovers." + ] + icon_scale: 1.5d + id: "4CD2ADD3601B8191" + min_width: 250 + rewards: [ + { + id: "023AA046559BD302" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "30105B49E6BE3052" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "4DB67015C52358FC" + item: "draconicevolution:item_wyvern_shield_recovery" + type: "item" + }] + x: 6.75d + y: -10.5d + } + { + dependencies: ["4CD2ADD3601B8191"] + icon_scale: 1.5d + id: "594BBD31461F212D" + rewards: [ + { + id: "1C64A749FED19D55" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "3AE7C7BBD5FC68C5" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "56B97A32636D2195" + item: "draconicevolution:item_draconic_shield_recovery" + type: "item" + }] + x: 7.25d + y: -10.5d + } + { + dependencies: ["594BBD31461F212D"] + icon_scale: 1.5d + id: "0AE8B51D63327EC3" + rewards: [ + { + id: "21275322A5378353" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "3FD0BEC9DD399896" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "2727668096263E0F" + item: "draconicevolution:item_chaotic_shield_recovery" + type: "item" + }] + x: 7.75d + y: -10.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: ["&2Shield Control&r changes the actual &eShield&r you have and &nwhen&r it regenerates."] + icon_scale: 1.5d + id: "1A53B6544782442E" + min_width: 250 + rewards: [ + { + id: "429CF9F3BA8F3E30" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "23776CCB6C5A3CE4" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "51EA851DDB2779B9" + item: "draconicevolution:item_wyvern_shield_control" + type: "item" + }] + x: 6.75d + y: -10.0d + } + { + dependencies: ["1A53B6544782442E"] + icon_scale: 1.5d + id: "2158A566C2F54AA9" + rewards: [ + { + id: "22D027119384928D" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "1F0D4F3296C7EF35" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "568B97C70C8462DD" + item: "draconicevolution:item_draconic_shield_control" + type: "item" + }] + x: 7.25d + y: -10.0d + } + { + dependencies: ["2158A566C2F54AA9"] + icon_scale: 1.5d + id: "0E487EACA837EA9B" + rewards: [ + { + id: "6C813E712C3C7B7F" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "2CCD84F47F9B811B" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "1FC237D67BA936FA" + item: "draconicevolution:item_chaotic_shield_control" + type: "item" + }] + x: 7.75d + y: -10.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: ["With this on your &3Chestplate&r you can &o&bGlide&r! As if you were using an &dElytra&r, but &nwithout&r cost of &eArmor&r."] + icon_scale: 1.5d + id: "5E8D527DE9D7DD46" + min_width: 250 + rewards: [ + { + id: "5061019150CF241D" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "4734C39E84209051" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "57DC917AF757F1A0" + item: "draconicevolution:item_wyvern_flight" + type: "item" + }] + x: 6.75d + y: -9.5d + } + { + dependencies: ["5E8D527DE9D7DD46"] + description: ["This one gives both &o&bGliding&r and &o&6Creative Flight&r."] + icon_scale: 1.5d + id: "3FD19A001899D8C6" + min_width: 250 + rewards: [ + { + id: "6FFC10D8583E98E5" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "4E28443A2BC54411" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "4BCB651847D1D6B1" + item: "draconicevolution:item_draconic_flight" + type: "item" + }] + x: 7.25d + y: -9.5d + } + { + dependencies: ["3FD19A001899D8C6"] + icon_scale: 1.5d + id: "236C936FE3BA8396" + rewards: [ + { + id: "0FC095C0EA9EC0D0" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "23BAFA7C795CA554" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "1D27F6BC00BA4375" + item: "draconicevolution:item_chaotic_flight" + type: "item" + }] + x: 7.75d + y: -9.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: ["Just &o&bJump Boost&r."] + icon_scale: 1.5d + id: "6B0CD6732BE0E819" + min_width: 250 + rewards: [ + { + id: "74CD8F7C4A571B27" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "45F43CF451481B28" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "310DD2EEBEF0EBA9" + item: "draconicevolution:item_draconium_jump" + type: "item" + }] + x: 6.25d + y: -9.0d + } + { + dependencies: ["6B0CD6732BE0E819"] + icon_scale: 1.5d + id: "529123A789D790E3" + rewards: [ + { + id: "43212A7DA6C76F14" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "1954829DA6DF67C8" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "1671F1293B373AF3" + item: "draconicevolution:item_wyvern_jump" + type: "item" + }] + x: 6.75d + y: -9.0d + } + { + dependencies: ["529123A789D790E3"] + icon_scale: 1.5d + id: "79FC674836B6340E" + rewards: [ + { + id: "6A77B0409CA33FAA" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "6E598C2ADA1AF5AA" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "05ABF37F8E1DE264" + item: "draconicevolution:item_draconic_jump" + type: "item" + }] + x: 7.25d + y: -9.0d + } + { + dependencies: ["79FC674836B6340E"] + icon_scale: 1.5d + id: "50013DD7370F8EDB" + rewards: [ + { + id: "45AC9C0C23B90CEA" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "025289BA18050822" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "0B88252BE82CF5C6" + item: "draconicevolution:item_chaotic_jump" + type: "item" + }] + x: 7.75d + y: -9.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "&2Auto-Feed&r will &o&bautomatically&r feed you &nany food&r in your &eInventory&r when hungry." + "" + "It has a &o&bmax&r &6Food Point&r storage though, each full bar is two &6Food Points&r. So the &3Basic&r one can only hold &o&b8&r &9Steaks&r worth." + ] + icon_scale: 1.5d + id: "40F34EBE09DA7752" + min_width: 250 + rewards: [ + { + id: "672DD8E7DD22B671" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5B1508C3B84B1FD4" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "7DC8BE92D6D7DBCC" + item: "draconicevolution:item_draconium_auto_feed" + type: "item" + }] + x: 6.25d + y: -8.5d + } + { + dependencies: ["40F34EBE09DA7752"] + icon_scale: 1.5d + id: "0252B8F77A038D17" + rewards: [ + { + id: "299BE1CC1AEE0657" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "2B6DD41369413A5D" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "4782C7D803835881" + item: "draconicevolution:item_wyvern_auto_feed" + type: "item" + }] + x: 6.75d + y: -8.5d + } + { + dependencies: ["0252B8F77A038D17"] + icon_scale: 1.5d + id: "5E671F1F370DDE43" + rewards: [ + { + id: "0FA45BA2C29B7D35" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "4413C7319AB812C0" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "527E10E9550048CA" + item: "draconicevolution:item_draconic_auto_feed" + type: "item" + }] + x: 7.25d + y: -8.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: ["&2Night Vision Module&r in a &9Draconic Evolution Chestplate&r helps get over the fear of not being able to see in the dark."] + icon_scale: 1.5d + id: "32EBB3D53AA91E09" + min_width: 250 + rewards: [ + { + id: "219059CADB633D67" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "0381460D5526CB0F" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "24DF3AAA0346AA18" + item: "draconicevolution:item_wyvern_night_vision" + type: "item" + }] + x: 8.75d + y: -10.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "Mining &o&bUnderwater&r is slower." + "" + "You can use the enchantment of &dAqua Affinity&r, or use this &2Module&r." + ] + icon_scale: 1.5d + id: "39865681B03CABAA" + min_width: 250 + rewards: [ + { + id: "68E4831F09822D59" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "1065821EECDFCA23" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "6ECA086766BF1840" + item: "draconicevolution:item_wyvern_aqua_adapt" + type: "item" + }] + x: 8.75d + y: -10.0d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: [ + "When falling your &o&bMining&r is slowed down. That includes when &o&bcreative flying&r or even bouncing in water." + "" + "Thankfully you can use &dAir Affinty&r enchantment to negate that! Not a vanilla enchantment but still helpful! The &2Module&r does the same thing!" + ] + icon_scale: 1.5d + id: "2AAE61752728EA8D" + min_width: 250 + rewards: [ + { + id: "6406FB60253FBDB5" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "30281ECB9B0D9F33" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "42F5BB7FAEE85979" + item: "draconicevolution:item_wyvern_mining_stability" + type: "item" + }] + x: 8.75d + y: -9.5d + } + { + dependencies: ["4EFFE300EC781C3E"] + description: ["Basically it turns &2Auto-Jump&r on."] + icon_scale: 1.5d + id: "4AAADEC52D16461A" + min_width: 250 + rewards: [ + { + id: "3ABE224CBC298D77" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "30ABBF3E548775F1" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 0.5d + tasks: [{ + id: "77F6D4559C370B83" + item: "draconicevolution:item_wyvern_hill_step" + type: "item" + }] + x: 8.75d + y: -9.0d + } + { + dependencies: ["106D08542AAFA166"] + description: [ + "Now the actual fight starts, he has two &eHealth Bars&r &o&bboth need&r to get taken to &o&b0&r to get the &0Chaos Shards&r." + "" + "Don't get &o&btoo close&r or he'll hit you with a barrage of &cFireballs&r! In older versions the &4Chaos Guardian&r could even kill someone in &6Creative&r mode! Fortunately it can't anymore, &o&bLOL&r!" + "" + "{image:kubejs:textures/item/draconic_guardian.png width:150 height:100 align:1}" + ] + icon: { + Count: 1 + id: "draconicevolution:mob_soul" + tag: { + EntityName: "draconicevolution:draconic_guardian" + } + } + icon_scale: 2.0d + id: "5C2CF51D28F84CBE" + min_width: 300 + rewards: [ + { + id: "60E48A4C376F2739" + type: "xp_levels" + xp_levels: 100 + } + { + exclude_from_claim_all: true + id: "0F2EBAA93AB640FC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + size: 1.5d + tasks: [{ + entity: "draconicevolution:draconic_guardian" + id: "3AFB2998606E4212" + type: "kill" + value: 1L + }] + title: "Kill the Chaos Guardian" + x: -9.0d + y: -16.0d + } + { + dependencies: ["677E1BB89A7AC8CB"] + description: [ + "The first stage of the fight involves breaking the &cCrystals&r that hold the &dChaos Guardians Shield&r. " + "" + "Destroying these crystals is no easy task without a &6Draconic Weapon&r. &4Chaos Guardian&r fire balls can weaken this shield allowing you to destroy it. You'll notice &o&bparticles being produced&r when it's vulnerable to damages and when hit will &o&bmake a noise&r. The &ncloser&r to destruction the &ndeeper&r the noise and dimmer the &cCrystal&r will get. Once they are destroyed you can finally &o&bdamage him&r!" + "" + "{image:kubejs:textures/item/draconic_end_crystal.png width:150 height:100 align:1}" + ] + icon: { + Count: 1 + id: "draconicevolution:mob_soul" + tag: { + EntityName: "draconicevolution:guardian_crystal" + } + } + id: "106D08542AAFA166" + min_width: 300 + rewards: [ + { + id: "7DA34956C362A411" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "1FDB9EF42EB4EA76" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "6A516E772C246DFE" + item: "draconicevolution:infused_obsidian" + type: "item" + }] + title: "The 14 Guardian Crystals" + x: -9.0d + y: -18.0d + } + { + dependencies: ["0163C32CECD4BF84"] + description: [ + "To get into &9Draconic Evolution&r you'll need &0Chaos Shards&r. The &0Chaos Shards&r are in &bChaos Islands&r guarded by &4Chaos Guardians&r in the &dEnd&r." + "" + "Go to the End at an &o&bX/Z&r coordinate that is a multiple of &o&b10k&r, &o&b10k&r, &o&b10k&r / &o&b10k&r, &o&b20k&r / &o&b20k&r, &o&b20k&r etc." + ] + hide_dependency_lines: true + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/3" + } + } + icon_scale: 1.5d + id: "677E1BB89A7AC8CB" + min_width: 300 + rewards: [ + { + id: "71B83D768BD18C76" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "54796A6DDA42A1A2" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "4751C8876AD20C68" + type: "checkmark" + }] + title: "Finding Chaos Island" + x: -10.5d + y: -18.0d + } + { + dependencies: ["677E1BB89A7AC8CB"] + description: [ + "Now before you get to the &5Chaos Island&r I recommend preparing, he may look like the &dEnder Dragon&r but is much more difficult. You'll want &6Draconic Weapons&r or &aTools&r that do &o&ba lot of damage&r as those will make it easier." + "" + "The &4Chaos Guardian&r will also do &o&ba crap-ton of damage&r good &3Armor&r like &dUnobtainium&r or &6Meka-Suit&r will be recommeneded. Also effects of &2Regeneration&r, &eAbsorption&r, and &cResistance&r will help you survive." + "" + "Don't worry you can &o&balways come back&r to fight another day if you aren't ready." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/nosajsword" + } + } + id: "4170940AFC334D6C" + min_width: 300 + rewards: [ + { + id: "5E19013E06B7500D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5F542D56E179B11F" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0F78DCF244DEB0A9" + type: "checkmark" + }] + title: "Gear up yourself!" + x: -10.5d + y: -17.0d + } + ] + title: "&3&oDraconic Evolution" +} diff --git a/minecraft/config/ftbquests/quests/chapters/eidolon.snbt b/minecraft/config/ftbquests/quests/chapters/eidolon.snbt new file mode 100644 index 0000000..21557cd --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/eidolon.snbt @@ -0,0 +1,1827 @@ +{ + autofocus_id: "1F59C800DAFC0A53" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "eidolon" + group: "4814F40AB34427B6" + icon: "eidolon:goblet" + id: "72FB31237B2C4821" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -6.750000000000007d + y: -11.803571428571427d + } + { + height: 2.2d + image: "kubejs:item/eidolon" + rotation: 0.0d + width: 4.5d + x: -12.0d + y: -10.0d + } + { + height: 1.0d + image: "eidolon:item/warlock_hat" + rotation: 0.0d + width: 1.0d + x: -11.642857142857146d + y: -10.67857142857143d + } + { + height: 2.5d + image: "tombstone:textures/aura/aura1.png" + rotation: 0.0d + width: 2.5d + x: -7.5d + y: -3.5d + } + { + height: 1.0d + image: "simplyswords:item/stars_edge_anim_02" + rotation: 0.0d + width: 0.016666666666666666d + x: -5.0d + y: -8.5d + } + { + height: 1.0d + image: "kubejs:item/stars_edge_anim_02" + rotation: 45.0d + width: 1.0d + x: -11.535714285714285d + y: -9.285714285714285d + } + ] + order_index: 5 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + description: ["Eidolon is a magic mod that draws on a lot of different inspirations, with aspects of alchemy and theurgy. It takes a bit of a dark perspective, also featuring mechanics themed around necromancy and soul manipulation."] + icon: "eidolon:codex" + id: "65C922C81EA9C369" + min_width: 300 + rewards: [ + { + id: "39BDDE82E52BFE9F" + type: "xp" + xp: 10 + } + { + count: 16 + id: "5981DBD30EEFA698" + item: "eidolon:smooth_stone_bricks" + type: "item" + } + { + exclude_from_claim_all: true + id: "190D2350BEE7FEDD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "0DECDD2ED9D9A583" + type: "checkmark" + }] + title: "Welcome to &cEidolon" + x: -7.5d + y: -11.25d + } + { + dependencies: ["43B8775155D7AE39"] + id: "336709E4DA06F957" + rewards: [ + { + id: "1124CD606589D1A6" + type: "xp" + xp: 10 + } + { + id: "32BB20A76BF9FF83" + item: "eidolon:pewter_blend" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "30792B414E241BD0" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + count: 4L + id: "10F509F15FB7C2B3" + item: "eidolon:pewter_ingot" + type: "item" + }] + x: -7.5d + y: -6.5d + } + { + dependencies: ["26C4A2DBB131BB6A"] + id: "1F59C800DAFC0A53" + rewards: [ + { + id: "03EBBF6A45910A11" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "2E4A6F756DBD10CB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "pentagon" + size: 1.2d + tasks: [{ + id: "447E3FCBA7DC1C7A" + item: "eidolon:worktable" + type: "item" + }] + x: -7.500000000000007d + y: -3.4464285714285694d + } + { + dependencies: ["336709E4DA06F957"] + hide_dependency_lines: true + id: "167F762303933468" + rewards: [ + { + id: "67A52163976B2F38" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3DDED1BAB3D368D2" + table_id: 6305167096659659419L + type: "loot" + } + ] + shape: "rsquare" + tasks: [{ + id: "4DD54A6BB431B226" + item: "eidolon:crucible" + type: "item" + }] + x: -2.0d + y: -6.5d + } + { + dependencies: ["336709E4DA06F957"] + id: "7BC5D8A270C8F63B" + rewards: [ + { + id: "051B2162F0CA6C69" + type: "xp" + xp: 40 + } + { + count: 2 + id: "7CC35B1880E23D19" + item: "eidolon:tallow" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "369C484B274E4D48" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "62EF378073053883" + item: "eidolon:brazier" + type: "item" + }] + x: -12.5d + y: -6.5d + } + { + dependencies: ["167F762303933468"] + id: "701E2E8807D8B464" + rewards: [ + { + id: "3DEBC5C6B972E14A" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3DE715B7BB868AAF" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "5A83A2B31EBE988D" + item: "eidolon:shadow_gem" + type: "item" + }] + x: -1.0d + y: -5.5d + } + { + dependencies: ["701E2E8807D8B464"] + hide_dependency_lines: true + id: "01C8EEECD545903A" + rewards: [ + { + id: "318D3CBF391D7B30" + type: "xp" + xp: 10 + } + { + count: 2 + id: "1B4277130A5B4774" + item: "eidolon:wicked_weave" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7E2BC3710E52CDCD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.5d + tasks: [{ + count: 8L + id: "218B64B15CFFB64D" + item: "eidolon:wicked_weave" + type: "item" + }] + x: 1.5d + y: -3.5d + } + { + dependencies: ["01C8EEECD545903A"] + id: "234980695B18FFE4" + rewards: [ + { + id: "22D39051E6BE1964" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "714367D97C602F44" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "081AC95A62BCE7C3" + item: { + Count: 1 + id: "eidolon:warlock_hat" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.5d + y: -5.0d + } + { + dependencies: ["01C8EEECD545903A"] + id: "5812B84E536D41D7" + rewards: [ + { + id: "1B691E86F569187E" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "04BC408CE5643829" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "4AD5A9AE6BD4B983" + item: { + Count: 1 + id: "eidolon:warlock_cloak" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -3.5d + } + { + dependencies: ["01C8EEECD545903A"] + id: "38671A0923059336" + rewards: [ + { + id: "00A651ED2A2FBAF0" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1CAED4909D86E9C6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0CA9EE451EACFEFB" + item: { + Count: 1 + id: "eidolon:warlock_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.5d + y: -2.0d + } + { + dependencies: ["336709E4DA06F957"] + icon: "eidolon:wooden_altar" + id: "26C4A2DBB131BB6A" + rewards: [ + { + id: "02A7F3E853EB1BC9" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1C64BE4365BBCD1A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "0A10A305B53A463A" + item: "eidolon:wooden_altar" + type: "item" + } + { + id: "7D43887A5D1C4C31" + item: "eidolon:straw_effigy" + type: "item" + } + ] + x: -7.5d + y: -5.0d + } + { + dependencies: [ + "1F59C800DAFC0A53" + "32389A5733C93F2E" + ] + icon: "eidolon:stone_altar" + id: "1CFA7CB6A32D41ED" + rewards: [ + { + id: "4EF97249D04F370D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "707728FB02765273" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "59F6C0CE41860F78" + item: "eidolon:stone_altar" + type: "item" + }] + x: -2.0d + y: -3.0d + } + { + dependencies: ["1CFA7CB6A32D41ED"] + icon: "eidolon:goblet" + id: "030879006717EA0B" + rewards: [ + { + id: "24FED704E5E2E2BC" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "6BE4B252DA342C9C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [ + { + id: "109B950CA43AF0B2" + item: "eidolon:goblet" + type: "item" + } + { + count: 2L + id: "77584853DDE9AABC" + item: "eidolon:candlestick" + type: "item" + } + { + id: "23D320B5C111281B" + item: "minecraft:wither_skeleton_skull" + type: "item" + } + { + id: "0623273FB89E0562" + item: "minecraft:wither_rose" + type: "item" + } + { + id: "107330AB421BA273" + item: "minecraft:flower_pot" + type: "item" + } + ] + title: "&5FullyUpgraded Altar" + x: -2.0d + y: -1.5d + } + { + dependencies: ["7BC5D8A270C8F63B"] + id: "32099161845730C7" + rewards: [ + { + id: "68D79EA9DC27775D" + type: "xp" + xp: 10 + } + { + id: "5F8E3A18E4DF55B5" + item: "eidolon:polished_planks" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "4E241594702F1D4B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "77BEA619A87EE80A" + item: "eidolon:stone_hand" + type: "item" + }] + x: -12.5d + y: -8.0d + } + { + dependencies: ["2AA6DF1853B5C83C"] + id: "52160854B4FCF7D7" + rewards: [ + { + id: "0FBC7713D9FE2B24" + type: "xp" + xp: 10 + } + { + count: 2 + id: "317516E9B5E40274" + item: "eidolon:polished_planks" + random_bonus: 2 + type: "item" + } + ] + tasks: [{ + id: "581ECEB40E671168" + item: "eidolon:necrotic_focus" + type: "item" + }] + x: -11.0d + y: -8.0d + } + { + dependencies: ["7BC5D8A270C8F63B"] + id: "4186E2B3EA47F3EC" + rewards: [ + { + id: "37D89C06F8280F71" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "45C8B328FFCAD4A3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + entity: "eidolon:wraith" + icon: "eidolon:spawn_wraith" + id: "5689F433AE019185" + type: "kill" + value: 3L + }] + x: -15.0d + y: -7.0d + } + { + dependencies: ["4186E2B3EA47F3EC"] + id: "7FEE3DEBDE62BBB2" + rewards: [ + { + id: "48EE2192DD37C20E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "77E47A3C9FEA63DE" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "56F9DA716005CEB3" + item: "eidolon:wraith_heart" + type: "item" + }] + x: -14.5d + y: -8.0d + } + { + dependencies: ["5FB7ACC1F11DF1E6"] + id: "4E616B94BD42B7AD" + rewards: [ + { + id: "5EEE55D94575627B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "055EB03DB875FBB7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3193CBD6EEFD37D2" + item: "eidolon:zombie_heart" + type: "item" + }] + x: -15.5d + y: -5.0d + } + { + dependencies: ["7BC5D8A270C8F63B"] + id: "5FB7ACC1F11DF1E6" + rewards: [ + { + id: "7061906227F20DB8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1747B0E13A3800B1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + entity: "eidolon:zombie_brute" + icon: "eidolon:spawn_zombie_brute" + id: "1F3DC11E1EC2479F" + type: "kill" + value: 3L + }] + x: -15.0d + y: -6.0d + } + { + dependencies: ["7BC5D8A270C8F63B"] + id: "4E825B0D6E910F7D" + rewards: [ + { + id: "79EEE1C9238720A7" + type: "xp" + xp: 10 + } + { + count: 2 + id: "0AC9861DF3590CD5" + item: "eidolon:soul_shard" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "090ACCBDA4E500C6" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "430EF74CB0A14EDE" + item: "eidolon:soul_shard" + type: "item" + }] + x: -11.5d + y: -5.5d + } + { + dependencies: ["167F762303933468"] + id: "4ABBD771E0F358DC" + rewards: [ + { + id: "6CF2A7DCD305F3AF" + type: "xp" + xp: 10 + } + { + id: "6FC0F3FBE97F0AB8" + item: "eidolon:arcane_gold_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "04770A6260EC6475" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + count: 2L + id: "2E866DE41C77B515" + item: "eidolon:arcane_gold_ingot" + type: "item" + }] + x: -2.0d + y: -9.5d + } + { + dependencies: ["275A1036E1B17B2A"] + id: "720E35C24AAC7601" + rewards: [ + { + id: "0120F6A14162150B" + type: "xp" + xp: 10 + } + { + id: "502AB033AD56E745" + item: "eidolon:enchanted_ash" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "60C33F9677C87BCB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "058B9BCBF91D090E" + item: "eidolon:enchanted_ash" + type: "item" + }] + x: -8.5d + y: -9.0d + } + { + dependencies: ["336709E4DA06F957"] + id: "2AA6DF1853B5C83C" + rewards: [ + { + id: "288B7AE4E7DFDE36" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "11261D7421EBD9F6" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "0DD1F9009E34E2F6" + item: "eidolon:pewter_inlay" + type: "item" + }] + x: -8.5d + y: -8.0d + } + { + dependencies: ["4ABBD771E0F358DC"] + id: "4650D777AFC5B5A9" + rewards: [ + { + id: "5D8F5726B4735EDD" + type: "xp" + xp: 10 + } + { + id: "33DD8882F462DBC3" + item: "eidolon:arcane_gold_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "74DFE2BF74E47E37" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "0CC8D508ED2DD53B" + item: "eidolon:gold_inlay" + type: "item" + }] + x: -2.0d + y: -11.0d + } + { + dependencies: ["4650D777AFC5B5A9"] + id: "5400D058CB0BD6BA" + rewards: [ + { + id: "7A7115C4A3679347" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3B6B3C59146C51DA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7913262881C644D3" + item: { + Count: 1 + id: "eidolon:soulfire_wand" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.0d + y: -11.0d + } + { + dependencies: ["7BC5D8A270C8F63B"] + id: "125DAF2BDF612E2E" + rewards: [ + { + id: "13BC1742F8990F6D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "251E44586BCBE662" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4B99045C18BECDE2" + item: { + Count: 1 + id: "eidolon:sapping_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -13.5d + y: -5.5d + } + { + dependencies: ["7BC5D8A270C8F63B"] + id: "7DA3EA0FDEA6332C" + rewards: [ + { + id: "653D6CF5CF8773B7" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5020ABCA56CC4541" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1C4E948234AB7C6D" + item: "eidolon:sanguine_amulet" + type: "item" + }] + x: -12.5d + y: -5.0d + } + { + dependencies: ["1F59C800DAFC0A53"] + id: "61DD1F3FDD7085A9" + rewards: [ + { + id: "664C9152C71A6736" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "04F17A901302C07F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6F4E390B7DF3EABF" + item: "eidolon:unholy_symbol" + type: "item" + }] + x: -6.0d + y: -4.5d + } + { + dependencies: ["4650D777AFC5B5A9"] + id: "5A4AD033E44AFAF4" + rewards: [ + { + id: "0BA0CBC484A0D2E9" + type: "xp" + xp: 70 + } + { + exclude_from_claim_all: true + id: "13473089204FEFD1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "65052F3E0E896A73" + item: "eidolon:soul_enchanter" + type: "item" + }] + x: -2.0d + y: -12.0d + } + { + dependencies: ["336709E4DA06F957"] + id: "65862E742955D2ED" + rewards: [ + { + id: "24D4D644D9059918" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "607DFE94AD6D5D5F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "632352AA326FD038" + item: "eidolon:wooden_brewing_stand" + type: "item" + }] + x: -6.0d + y: -6.5d + } + { + dependencies: ["61DD1F3FDD7085A9"] + id: "5AD333AED3872309" + rewards: [ + { + id: "1EB766C2BBE5EDE6" + type: "xp" + xp: 100 + } + { + id: "390F8548B7C045AA" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2FE07A06B819F8DE" + item: { + Count: 1 + id: "eidolon:reaper_scythe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.0d + y: -5.0d + } + { + dependencies: ["61DD1F3FDD7085A9"] + id: "119FA9A434F01332" + rewards: [ + { + id: "111A9C237B7F5F55" + type: "xp" + xp: 100 + } + { + id: "6E564CD61240B885" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "73C779CC5CCF0E1A" + item: { + Count: 1 + id: "eidolon:cleaving_axe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.0d + y: -4.0d + } + { + dependencies: ["1F59C800DAFC0A53"] + id: "59E7BBECC62ECAD0" + rewards: [ + { + id: "1ED8519BA202B08C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5F5B2D48F214E609" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7E165E34F4FA67E4" + item: { + Count: 1 + id: "eidolon:bonechill_wand" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: -2.5d + } + { + dependencies: ["167F762303933468"] + id: "4C0077BE12EA821D" + rewards: [ + { + id: "12C4454657FBE81C" + type: "xp" + xp: 10 + } + { + count: 2 + id: "015C596874F3F42B" + item: "minecraft:redstone" + random_bonus: 1 + type: "item" + } + { + count: 4 + id: "4ED115D564F97A47" + item: "eidolon:soul_shard" + type: "item" + } + { + exclude_from_claim_all: true + id: "2D0057B527630878" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2A034D86D2AB9DC2" + item: "eidolon:lesser_soul_gem" + type: "item" + }] + x: -1.0d + y: -7.5d + } + { + dependencies: ["1F59C800DAFC0A53"] + id: "24A88800114C4EA9" + rewards: [ + { + id: "776E8B39C6CEEB7D" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "6CF23FB2EB04A835" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "345A6742D8396B2B" + item: { + Count: 1 + id: "eidolon:reversal_pick" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -9.5d + y: -2.5d + } + { + dependencies: ["167F762303933468"] + id: "211D76B0496DD2C9" + rewards: [ + { + id: "27807710D5180A17" + type: "xp" + xp: 10 + } + { + count: 4 + id: "2618880DE1A023E2" + item: "eidolon:enchanted_ash" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "654EC69566EBF81A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "613B480E6C672AE0" + item: "eidolon:ender_calx" + type: "item" + }] + x: -0.5d + y: -6.5d + } + { + dependencies: ["01C8EEECD545903A"] + id: "07BB6BCF6DDDAD02" + rewards: [ + { + id: "6B42F3786FD8B5A8" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "545F9AB318540D65" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "79C3313308CE743F" + item: "eidolon:prestigious_palm" + type: "item" + }] + x: 3.0d + y: -3.5d + } + { + dependencies: ["65C922C81EA9C369"] + id: "43B8775155D7AE39" + rewards: [{ + exclude_from_claim_all: true + id: "72C97606C1BCCE7C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + count: 8L + id: "2CDAE5D43708BE7A" + item: "eidolon:pewter_blend" + type: "item" + }] + x: -7.5d + y: -9.5d + } + { + dependencies: ["1F59C800DAFC0A53"] + id: "144A1639E694F7E4" + rewards: [ + { + id: "1465815D2A6E89E1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "22989C5A0BF73AD3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3571B3977AEFFDCE" + item: "eidolon:warded_mail" + type: "item" + }] + x: -7.5d + y: -1.5d + } + { + dependencies: ["4650D777AFC5B5A9"] + id: "45A7233DE8241D53" + rewards: [ + { + id: "3B022910475F9E6B" + type: "xp" + xp: 40 + } + { + id: "3039D71568D3B799" + item: "eidolon:arcane_gold_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "22041B795F178E5C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "5DD05899625AA131" + item: "eidolon:resolute_belt" + type: "item" + }] + x: -1.0d + y: -11.0d + } + { + dependencies: ["4ABBD771E0F358DC"] + id: "6CAE894FABAF81B1" + rewards: [{ + exclude_from_claim_all: true + id: "7F81F524E09E10EF" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "23EFB39A2998EBCF" + item: "eidolon:basic_ring" + type: "item" + }] + x: -1.0d + y: -8.5d + } + { + dependencies: ["4ABBD771E0F358DC"] + id: "1902AEB8C44D43D8" + rewards: [ + { + id: "0CDC57768E8613DD" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "79C55305CDCCF23D" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6F415ECCE1A4C2C5" + item: "eidolon:basic_amulet" + type: "item" + }] + x: 0.5d + y: -9.5d + } + { + dependencies: ["4ABBD771E0F358DC"] + id: "16952121FAB119DB" + rewards: [ + { + id: "477B5ECBFEE33E37" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "04B41E2F2F9F1B22" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7C5F98CD0621ABB8" + item: "eidolon:goblet" + type: "item" + }] + x: -3.0d + y: -8.5d + } + { + dependencies: ["1902AEB8C44D43D8"] + id: "3931FA65CD999DA9" + rewards: [ + { + id: "56A51896D845C8B4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "100686344846F96E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "02C20F077DD7F3EE" + item: "eidolon:void_amulet" + type: "item" + }] + x: 1.5d + y: -10.5d + } + { + dependencies: ["1902AEB8C44D43D8"] + id: "5ADBFE8BE4BFED92" + rewards: [ + { + id: "4D66A81950DA0274" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "283177A6C6407FBF" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7596C15556526EF9" + item: "eidolon:glass_hand" + type: "item" + }] + x: 2.0d + y: -9.5d + } + { + dependencies: ["167F762303933468"] + id: "6616938B6A9CBDD7" + rewards: [ + { + id: "38D24A78AFD9FAF5" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "7775EDB65CBC26BF" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "3E5824FBD67B1DC2" + item: "eidolon:death_essence" + type: "item" + }] + x: -2.0d + y: -5.0d + } + { + dependencies: ["1F59C800DAFC0A53"] + id: "5C3AD6520E84FBB0" + rewards: [ + { + id: "6EEF27CD0FCDCE14" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "786F541DF17928A7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "595072C79969C7E2" + item: { + Count: 1 + id: "eidolon:deathbringer_scythe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.5d + y: -2.0d + } + { + dependencies: ["1902AEB8C44D43D8"] + id: "4690DDA5C9A4360C" + rewards: [ + { + id: "447631E86F886B4E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "32ED8F025F8EA472" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4AFC96249F30C97F" + item: "eidolon:soulbone_amulet" + type: "item" + }] + x: 1.5d + y: -8.5d + } + { + dependencies: ["167F762303933468"] + id: "4F3C85286F63CEF2" + rewards: [ + { + id: "41B5D56C0A953375" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6601A084A4E806D6" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "704F643DEDB33E94" + item: "eidolon:magic_ink" + type: "item" + }] + x: -3.0d + y: -7.5d + } + { + dependencies: [ + "4F3C85286F63CEF2" + "78E3A1CF12D7CD78" + ] + id: "1BF79BC078F44A8B" + rewards: [ + { + id: "028E0813224D5EEE" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "753E612CD1412EA5" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "17EF1E8924F35EAF" + item: "eidolon:research_table" + type: "item" + }] + x: -4.0d + y: -6.5d + } + { + dependencies: ["167F762303933468"] + id: "78E3A1CF12D7CD78" + rewards: [ + { + id: "274466912646D91E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "72083A9807B85010" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "0CB2E15C1784FCB2" + item: "eidolon:magicians_wax" + type: "item" + }] + x: -3.0d + y: -5.5d + } + { + dependencies: ["465D4C52C4FB6F00"] + id: "6D5948358340277A" + rewards: [ + { + id: "6E524097A5509B27" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "4A47DCFAA777CF0E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "55202AC1096BA7CF" + item: "eidolon:tallow" + type: "item" + }] + x: -6.5d + y: -9.0d + } + { + dependencies: ["65C922C81EA9C369"] + id: "275A1036E1B17B2A" + rewards: [ + { + id: "5B83338EB41F3780" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "081F6FCCC3B6F1C3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "13173A295091E271" + item: "minecraft:bone" + type: "item" + }] + x: -8.5d + y: -10.0d + } + { + dependencies: ["65C922C81EA9C369"] + id: "465D4C52C4FB6F00" + rewards: [ + { + id: "6B050361306B757B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3975A80548450CAF" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "557BB9954905D918" + item: "minecraft:rotten_flesh" + type: "item" + }] + x: -6.5d + y: -10.0d + } + { + dependencies: ["1F59C800DAFC0A53"] + id: "33F3B3DD35B1A496" + rewards: [ + { + id: "345717222A8E3E28" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1F2BD2A1874BD9E8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "519B946E27B5BAE5" + item: "eidolon:gravity_belt" + type: "item" + }] + x: -8.5d + y: -2.0d + } + { + dependencies: ["4186E2B3EA47F3EC"] + id: "2F179E2F66A9FC8F" + rewards: [ + { + id: "402EB99C4DB1F1D0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3672B19C23969BBE" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "73F620048BDB9ADF" + item: "eidolon:tattered_cloth" + type: "item" + }] + x: -15.5d + y: -8.0d + } + { + dependencies: ["1F59C800DAFC0A53"] + id: "1C7C471499F29209" + rewards: [{ + exclude_from_claim_all: true + id: "685D1A0274E69235" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4F594E7B5ED03F43" + item: "eidolon:holy_symbol" + type: "item" + }] + x: -9.0d + y: -4.5d + } + { + dependencies: ["1C7C471499F29209"] + id: "748163C07C9D7863" + rewards: [ + { + id: "797D082C67AB6405" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6AE835182E4A5891" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "1B5843A9AD8E7650" + item: { + Count: 1 + id: "eidolon:bonelord_helm" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -10.0d + y: -5.0d + } + { + dependencies: ["1C7C471499F29209"] + id: "55D64E4FB8912CBB" + rewards: [ + { + id: "048473CBE28FBB55" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5F9BB60FA39434B8" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5ED3FFEC30C6D54A" + item: { + Count: 1 + id: "eidolon:bonelord_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -10.0d + y: -4.0d + } + { + dependencies: ["1C7C471499F29209"] + id: "2DB1B5E16C0CC301" + rewards: [ + { + id: "71C5DC8DE0BAAC2F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7936752655109432" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "16DF0810ED595356" + item: { + Count: 1 + id: "eidolon:bonelord_greaves" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -10.5d + y: -4.5d + } + { + dependencies: ["61DD1F3FDD7085A9"] + id: "32389A5733C93F2E" + rewards: [ + { + id: "126E100EF05DAC20" + type: "xp" + xp: 100 + } + { + id: "3ECD0120BF2079F6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "62EBDAC783846B5F" + item: "eidolon:unholy_effigy" + type: "item" + }] + x: -4.5d + y: -4.5d + } + { + dependencies: ["4ABBD771E0F358DC"] + id: "34F3DAF8D84EEDEC" + rewards: [ + { + id: "283DF386C4FCDA85" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "7387AFA099B53545" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "11E1E4A376D7AA2A" + item: "eidolon:censer" + type: "item" + }] + x: -3.0d + y: -9.5d + } + { + dependencies: ["1F59C800DAFC0A53"] + id: "4F3F9F9A68D94E44" + rewards: [ + { + id: "3FFFC6E3BA39C2D2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "32D8C77B2AF4004C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "020D709C44635715" + item: { + Count: 1 + id: "eidolon:athame" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -12.5d + y: -3.0d + } + { + dependencies: ["4F3F9F9A68D94E44"] + id: "4D09F82903776C05" + rewards: [ + { + id: "68B0EED94A37A47E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "00DD39EE37765DAD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "289DA857264FF393" + item: "eidolon:planter" + type: "item" + }] + x: -12.5d + y: -1.5d + } + ] + title: "&3&oEidolon" +} diff --git a/minecraft/config/ftbquests/quests/chapters/ender_io.snbt b/minecraft/config/ftbquests/quests/chapters/ender_io.snbt new file mode 100644 index 0000000..4aa8453 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/ender_io.snbt @@ -0,0 +1,2126 @@ +{ + autofocus_id: "4D9DF84171B7453A" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "ender_io" + group: "69B9F7247002FE35" + icon: "enderio:alloy_smelter" + id: "27BF642963FBAF53" + images: [ + { + click: "https://www.curseforge.com/minecraft/mc-mods/ender-io" + height: 1.0d + image: "kubejs:item/enderio" + rotation: 0.0d + width: 6.0d + x: -5.5d + y: -9.5d + } + { + height: 1.5d + image: "botania:block/enchanter" + rotation: 45.0d + width: 1.5d + x: 3.0d + y: -5.5d + } + { + height: 1.0d + image: "botania:block/enchanter" + rotation: 0.0d + width: 0.037037037037037035d + x: -2.0d + y: -3.0d + } + { + height: 1.0d + image: "kubejs:item/quest" + rotation: 0.0d + width: 0.3d + x: -0.7500000000000213d + y: -8.5d + } + { + height: 3.0d + image: "extendedcrafting:item/singularity" + rotation: 0.0d + width: 3.0d + x: 8.357142857142847d + y: -7.946428571428569d + } + { + click: "https://www.youtube.com/watch?v=DGOh90HREsM" + height: 1.0d + hover: ["YouTube Tutorial"] + image: "enderio:block/dialing_device_button" + rotation: 0.0d + width: 1.0d + x: -5.0d + y: -7.5d + } + { + height: 1.0d + image: "enderio:textures/gui/icons/weather_thunder.png" + rotation: 0.0d + width: 1.0d + x: 5.5d + y: -2.5d + } + { + height: 1.0d + image: "enderio:textures/gui/icons/weather_rain.png" + rotation: 0.0d + width: 1.0d + x: -4.5d + y: -4.0d + } + { + height: 1.0d + image: "enderio:textures/gui/icons/weather_sun.png" + rotation: 0.0d + width: 1.0d + x: 0.5d + y: -10.0d + } + { + height: 1.0d + image: "enderio:item/conduit_probe_copy" + rotation: 45.0d + width: 1.0d + x: 0.5d + y: -7.0d + } + { + height: 1.0d + image: "enderio:item/conduit_probe_probe" + rotation: -60.0d + width: 1.0d + x: 10.0d + y: -2.5d + } + ] + order_index: 3 + quest_links: [ ] + quests: [ + { + dependencies: ["1E6717073A2504CA"] + hide_dependency_lines: true + hide_dependent_lines: true + icon_scale: 1.5d + id: "73CE7FA690FC5760" + rewards: [ + { + id: "3FC69EA5FB3B12E8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "35769CC417891744" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "69C3DDA8CCC94B14" + item: "enderio:void_chassis" + type: "item" + }] + x: 3.0d + y: -3.5d + } + { + dependencies: ["73CE7FA690FC5760"] + id: "1104AA174B3ADFA6" + rewards: [ + { + id: "1120B05C6DCFAB27" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "65233A0FF68CF237" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "17CEB1138F4E6FDA" + item: "enderio:stirling_generator" + type: "item" + }] + x: 3.0d + y: -0.5d + } + { + dependencies: ["73CE7FA690FC5760"] + id: "47379E2C3068985D" + rewards: [ + { + id: "3B0C46CF6E2C924D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "688FF2F2F689400C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2548FA036655C3F1" + item: "enderio:alloy_smelter" + type: "item" + }] + x: 3.5d + y: -2.5d + } + { + dependencies: ["73CE7FA690FC5760"] + id: "7703240374D92007" + rewards: [ + { + id: "4A9C18B8F25D6EAA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1DDBB2D22D6FAB75" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "53F64844502FC908" + item: "enderio:sag_mill" + type: "item" + }] + x: 2.5d + y: -2.5d + } + { + dependencies: ["73CE7FA690FC5760"] + id: "00B8F3AE04BF9027" + rewards: [ + { + id: "07DB0A13F6E084B4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "78ED62A0F69216C0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "72FF35E8A2384D7A" + item: "enderio:drain" + type: "item" + }] + x: 2.0d + y: -1.5d + } + { + dependencies: ["73CE7FA690FC5760"] + id: "6B13EAC5DFFF9E0F" + rewards: [ + { + id: "3FD2ED5E955B802B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5682EDED48A37C42" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "17928F697A91B050" + item: "enderio:painting_machine" + type: "item" + }] + x: 4.0d + y: -0.5d + } + { + dependencies: ["73CE7FA690FC5760"] + id: "7E1CF8DB8C0724E1" + rewards: [ + { + id: "21633958263980FF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "032EAE5FC50246BB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "012D33AEB5BFC4D3" + item: "enderio:crafter" + type: "item" + }] + x: 3.0d + y: -1.5d + } + { + dependencies: ["73CE7FA690FC5760"] + id: "0F5EC96CAAA5302B" + rewards: [ + { + id: "4BFCFB0130FCD1BE" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "416698367FDC38C0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "11152629E08CA1EF" + item: "enderio:impulse_hopper" + type: "item" + }] + x: 2.0d + y: -0.5d + } + { + dependencies: ["73CE7FA690FC5760"] + id: "3B02277DB476C566" + rewards: [ + { + id: "5AA1B9F94B03848C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "52D6E510C4BFD6B3" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "360D4D92C0DD1ECE" + item: "enderio:wired_charger" + type: "item" + }] + x: 4.0d + y: -1.5d + } + { + dependencies: ["1E6717073A2504CA"] + hide_dependent_lines: true + id: "4D9DF84171B7453A" + rewards: [ + { + id: "3F892DF4D374946E" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "655171EDE6CDDAF3" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 1.5d + tasks: [{ + id: "1A5C8D1BEAC30B48" + item: "enderio:primitive_alloy_smelter" + type: "item" + }] + x: 6.0d + y: -5.5d + } + { + dependencies: ["5BCFF8D80F8A0B5F"] + id: "1E6717073A2504CA" + rewards: [ + { + id: "0EDA313FFE33842E" + type: "xp" + xp: 20 + } + { + id: "6E891393ABC235C0" + item: "enderio:grains_of_infinity" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "086EB3B67728D6EC" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 1.0d + tasks: [{ + count: 6L + id: "3208170B5901DD4E" + item: "enderio:grains_of_infinity" + type: "item" + }] + title: "Grains of infinity" + x: -1.5d + y: -5.5d + } + { + dependencies: ["4D9DF84171B7453A"] + hide_dependent_lines: true + id: "1A8A78BB89CBF5E0" + rewards: [ + { + id: "48B70712D2D3581F" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "610DAE801A6F79C2" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 1.0d + tasks: [{ + id: "711658144701A5B6" + item: "enderio:dark_steel_ingot" + type: "item" + }] + x: 3.5d + y: -4.5d + } + { + dependencies: ["4D9DF84171B7453A"] + id: "3CCB560EC216F826" + rewards: [ + { + id: "368D6BFBECBD2429" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "767E250730392E24" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 1.0d + tasks: [{ + id: "5879FD725E4D3B96" + item: "enderio:copper_alloy_ingot" + type: "item" + }] + x: 3.5d + y: -6.5d + } + { + dependencies: ["4D9DF84171B7453A"] + hide_dependent_lines: true + id: "0359F741EACB7578" + rewards: [ + { + id: "7452EFD1153AF5CB" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "30AB4348664AABE5" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 1.0d + tasks: [{ + id: "2D932D51A7067EFC" + item: "enderio:soularium_ingot" + type: "item" + }] + x: 2.0d + y: -6.0d + } + { + dependencies: ["0359F741EACB7578"] + hide_dependent_lines: true + icon_scale: 1.5d + id: "096D7F5CBB5BCA9B" + rewards: [ + { + id: "0A8B3054084010B8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "319F76A636CBD5CB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "25E0060F6E3AA7D4" + item: "enderio:ensouled_chassis" + type: "item" + }] + x: 3.0d + y: -7.5d + } + { + dependencies: ["096D7F5CBB5BCA9B"] + id: "64A1337A3C4F7734" + rewards: [ + { + id: "7554FABBDC03A7C6" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4A20EEF1C595C04C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2C14B4C95340DDF3" + item: "enderio:soul_binder" + type: "item" + }] + x: 3.0d + y: -8.5d + } + { + dependencies: ["096D7F5CBB5BCA9B"] + id: "73688A75A466C834" + rewards: [ + { + id: "0F8B2554F5EE782B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "37736A8B76F8AE78" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3E607A817FBC5069" + item: "enderio:slice_and_splice" + type: "item" + }] + x: 2.0d + y: -8.5d + } + { + dependencies: ["096D7F5CBB5BCA9B"] + id: "6084C1D0DC705312" + rewards: [ + { + id: "4406926D626B2066" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6D50FE8D1B62C36E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "775318F6F35B2748" + item: { + Count: 1 + id: "enderio:powered_spawner" + tag: { + BlockEntityTag: { + EntityStorage: { + Entity: { + id: "aquaculture:piranha" + } + } + } + } + } + type: "item" + }] + x: 3.0d + y: -9.5d + } + { + dependencies: ["096D7F5CBB5BCA9B"] + id: "333D3DB292D5506A" + rewards: [ + { + id: "7B51AA2FFBD90A05" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "765383E580756734" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0883F77624EA39BE" + item: { + Count: 1 + id: "enderio:soul_engine" + tag: { } + } + type: "item" + }] + x: 4.0d + y: -8.5d + } + { + dependencies: ["12AA4397C05B59F8"] + id: "37BB72D33F766C9F" + rewards: [ + { + id: "13BD32F21B21641A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5FA72315F75A74EF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "165DA8ABA2EA1C85" + item: "enderio:xp_obelisk" + type: "item" + }] + x: -6.0d + y: -1.0d + } + { + dependencies: ["1A8A78BB89CBF5E0"] + id: "39CACA9B9A3FC911" + rewards: [ + { + id: "6FCCDBE67658E10A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C03059DE161D68E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "32AB6D2E4EDE6E5A" + item: "enderio:enchanter" + type: "item" + }] + x: 8.5d + y: -1.5d + } + { + dependencies: ["1A7E55C8D92456F2"] + id: "44CD6DD20F51123F" + rewards: [ + { + id: "59B0598A9F89229A" + type: "xp" + xp: 50 + } + { + count: 3 + id: "3C67258D098E3CB3" + item: "enderio:vibrant_alloy_nugget" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "003B642A76245240" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1509DD552CB910D8" + item: { + Count: 1 + id: "enderio:staff_of_travelling" + tag: { + Energy: { + EnergyStored: 0 + MaxEnergyStored: 100000 + MaxEnergyUse: 100000 + } + } + } + type: "item" + }] + x: -7.5d + y: -5.5d + } + { + dependencies: ["1A8A78BB89CBF5E0"] + id: "6DF595F9E2523C41" + rewards: [ + { + id: "6A453290778640A8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "651EE2535D376FC4" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "20CA39E30BCA2934" + item: { + Count: 1 + id: "enderio:dark_steel_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.0d + y: -0.5d + } + { + dependencies: ["1E6717073A2504CA"] + id: "518CA7324056BD2E" + rewards: [ + { + id: "4D538C7A20A20FC7" + type: "xp" + xp: 25 + } + { + id: "192E6B9198DBD397" + item: "enderio:wood_gear" + type: "item" + } + { + exclude_from_claim_all: true + id: "787C5065B1B69972" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 1.0d + tasks: [{ + id: "05DDD1029917D19E" + item: "enderio:yeta_wrench" + type: "item" + }] + x: -3.0d + y: -5.5d + } + { + dependencies: ["47783AA841823B0E"] + id: "1A7E55C8D92456F2" + rewards: [ + { + id: "0BA2E479213B8673" + type: "xp" + xp: 50 + } + { + id: "340B09A9D2A68831" + item: "mekanism:dust_emerald" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "47E612C7B98DA151" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 1.0d + tasks: [{ + id: "377850A940D7C3BC" + item: { + Count: 1 + id: "enderio:electromagnet" + tag: { + Energy: { + EnergyStored: 0 + MaxEnergyStored: 100000 + MaxEnergyUse: 100000 + } + } + } + type: "item" + }] + x: -6.0d + y: -5.5d + } + { + dependencies: ["518CA7324056BD2E"] + hide_dependency_lines: false + id: "47783AA841823B0E" + rewards: [ + { + id: "421F6DEA8F93C6DE" + type: "xp" + xp: 30 + } + { + id: "7E0D870A8C1AB5EC" + item: "minecraft:ender_pearl" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "5D3DB24DF5D94AA3" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 1.0d + tasks: [{ + id: "336FE4FBB22AAF1B" + item: "enderio:coordinate_selector" + type: "item" + }] + x: -4.5d + y: -5.5d + } + { + dependencies: ["44CD6DD20F51123F"] + icon_scale: 1.5d + id: "702AEA76BB811DD9" + rewards: [ + { + id: "11B3D9E4EAC6271E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "715617C4B1FF5657" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7BFA15B1792E7DC5" + item: "enderio:travel_anchor" + type: "item" + }] + x: -7.5d + y: -4.0d + } + { + dependencies: ["12AA4397C05B59F8"] + icon_scale: 1.5d + id: "5E52934814637713" + rewards: [ + { + id: "15079AEEFA4B82DB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "529954D1572DC0E0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "59A58F4C257165FE" + item: "enderio:xp_vacuum" + type: "item" + }] + x: -7.5d + y: -2.5d + } + { + dependencies: ["4016DCA58E347F31"] + icon_scale: 2.0d + id: "280288D5E3221C1B" + rewards: [ + { + id: "11A99DA774CD5488" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "0665A604E1249740" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + count: 8L + id: "471950ED03D63F06" + item: "enderio:energy_conduit" + type: "item" + }] + title: "Energy Conduit" + x: 8.05d + y: -6.6499999999999995d + } + { + dependencies: ["4016DCA58E347F31"] + hide_dependent_lines: true + icon_scale: 2.0d + id: "13EDFA9124D60D53" + rewards: [ + { + id: "4EC91616F966637A" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "0920AB33E162B14E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + count: 8L + id: "4EC9D9A7321F1076" + item: "enderio:item_conduit" + type: "item" + }] + title: "Item Conduit" + x: 8.4d + y: -9.45d + } + { + dependencies: ["4016DCA58E347F31"] + icon_scale: 2.0d + id: "2CDB914E84D00B66" + rewards: [ + { + id: "666FBB74F7EC02E5" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "7A0459B0B8035D8B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + count: 8L + id: "3CA0AA0DC7E9A3E7" + item: "enderio:fluid_conduit" + type: "item" + }] + title: "Fluid Conduit" + x: 7.0d + y: -7.699999999999999d + } + { + dependencies: ["5269E601F5EED47A"] + icon_scale: 2.0d + id: "4E09A9C4D7200D2A" + rewards: [ + { + id: "1718537A0ADD90A9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "11547F30C64952F2" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + subtitle: "Craft Ender Fluid Conduits" + tasks: [{ + count: 8L + id: "654DC00BA1A7B0E4" + item: "enderio:ender_fluid_conduit" + type: "item" + }] + title: "Ender Fluid Conduit" + x: 7.35d + y: -9.1d + } + { + dependencies: ["2CDB914E84D00B66"] + icon_scale: 2.0d + id: "5269E601F5EED47A" + rewards: [ + { + id: "1ED09F43CA49A46B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3BFF5A5EF9C9A7A8" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + subtitle: "Craft Pressurized Fluid Conduits" + tasks: [{ + count: 8L + id: "522DC7BBDB28D761" + item: "enderio:pressurized_fluid_conduit" + type: "item" + }] + title: "Pressurized Fluid Conduit" + x: 7.0d + y: -8.399999999999999d + } + { + dependencies: ["5BCFF8D80F8A0B5F"] + hide_dependency_lines: true + hide_dependent_lines: true + id: "4016DCA58E347F31" + rewards: [ + { + id: "0A80516D0CEA3522" + type: "xp" + xp: 10 + } + { + count: 2 + id: "4A75AD4B02A21B9C" + item: "enderio:conduit_binder" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "7B7B276D85ABE99C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + size: 1.5d + tasks: [{ + count: 8L + id: "4B04D33DD4D0B91C" + item: "enderio:conduit_binder" + title: "Conduit Binder" + type: "item" + }] + x: 8.321428571428555d + y: -7.982142857142854d + } + { + dependencies: ["1E6717073A2504CA"] + hide_dependency_lines: false + id: "3D8E75FBD89040AA" + rewards: [ + { + id: "60568F6CD4036708" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5C63FA51437FEDB1" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "68808A45DEA72952" + item: "enderio:basic_capacitor" + type: "item" + }] + x: -1.5d + y: -3.0d + } + { + dependencies: ["0B88116C06EDF9D2"] + hide_dependency_lines: true + id: "6CB8610599D88B8F" + rewards: [ + { + id: "578F7D844741C65C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C00D82D2341DA5E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "13CE72BA9623FB18" + item: "enderio:double_layer_capacitor" + type: "item" + }] + x: -1.5d + y: -2.0d + } + { + dependencies: ["045B1DF7F39940DF"] + hide_dependency_lines: true + id: "56EB12EFCAA0AB92" + rewards: [ + { + id: "562AE1F13D77D477" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "09A71F5B72E77B62" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "0B23DCEA1E5BDD9E" + item: "enderio:octadic_capacitor" + type: "item" + }] + x: -1.5d + y: -1.0d + } + { + dependencies: ["3D8E75FBD89040AA"] + id: "26509373BF382E95" + rewards: [ + { + id: "684A3C14EA7D883D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5D21F7060F0A8D21" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1717B5EB0E27A484" + item: "enderio:basic_capacitor_bank" + type: "item" + }] + x: 0.0d + y: -3.0d + } + { + dependencies: ["6CB8610599D88B8F"] + id: "694996527316F758" + rewards: [ + { + id: "4C8609F1704F129F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "49AE845BD36BE3E7" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3685E503DE5807AC" + item: "enderio:advanced_capacitor_bank" + type: "item" + }] + x: 0.0d + y: -2.0d + } + { + dependencies: ["56EB12EFCAA0AB92"] + id: "32ED08C77E435970" + rewards: [ + { + id: "623244F3C5806051" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "5F7FBB09AFDB9DDB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7B3928C178F388E0" + item: "enderio:vibrant_capacitor_bank" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + dependencies: ["1A8A78BB89CBF5E0"] + id: "1B82B4629245EC26" + rewards: [ + { + id: "54EDBB6F5F9BED46" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "49B715A9B715CE59" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1B63EA760B110516" + item: "enderio:reinforced_obsidian_block" + type: "item" + }] + x: 9.0d + y: -0.5d + } + { + dependencies: ["0B88116C06EDF9D2"] + hide_dependency_lines: true + id: "12AA4397C05B59F8" + rewards: [ + { + id: "318F3A810D7903EA" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "303CEE8F1A2A7A51" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "25D3157461CDAFA8" + item: "enderio:experience_rod" + type: "item" + }] + x: -6.0d + y: -2.5d + } + { + dependencies: ["4D9DF84171B7453A"] + id: "0B88116C06EDF9D2" + rewards: [ + { + id: "391DD945E3B89C72" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "06FB317AB332206B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6ABA9821E9ABF435" + item: "enderio:energetic_alloy_ingot" + type: "item" + }] + x: 2.0d + y: -5.0d + } + { + dependencies: ["4D9DF84171B7453A"] + id: "045B1DF7F39940DF" + rewards: [ + { + id: "6B5B005309D840FB" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "46973582F079777F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6D81F503B6013CA6" + item: "enderio:vibrant_alloy_ingot" + type: "item" + }] + x: 2.5d + y: -4.5d + } + { + dependencies: ["4D9DF84171B7453A"] + hide_dependent_lines: true + id: "349A2AF6970E3CAB" + rewards: [ + { + id: "27F554E0AEC64665" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "0989E5B466009012" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3BCC643567C78754" + item: "enderio:redstone_alloy_ingot" + type: "item" + }] + x: 2.5d + y: -6.5d + } + { + dependencies: ["4D9DF84171B7453A"] + id: "3289FED615552BF0" + rewards: [ + { + id: "2B764573AE9ED90F" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "544BA4EE32674D29" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "7AA091490317A615" + item: "enderio:pulsating_alloy_ingot" + type: "item" + }] + x: 4.0d + y: -6.0d + } + { + dependencies: ["4D9DF84171B7453A"] + id: "7295B4B792EB5103" + rewards: [ + { + id: "4B1F7E84C2AB9A06" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "740A010530A2400F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "1971863CA04A77D6" + item: "enderio:conductive_alloy_ingot" + type: "item" + }] + x: 4.0d + y: -5.0d + } + { + dependencies: ["4D9DF84171B7453A"] + id: "2CA78C74FC24502D" + rewards: [ + { + id: "4175366631999465" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "2C703A6BAE3DF614" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "44B82F83DA0C68C9" + item: "enderio:end_steel_ingot" + type: "item" + }] + x: 4.5d + y: -5.5d + } + { + dependencies: ["4016DCA58E347F31"] + icon_scale: 2.0d + id: "4D04830CBA2E04AF" + rewards: [ + { + id: "499235F8544F4756" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "43F740FD8832C10A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + count: 3L + id: "6BE63432FF59A567" + item: "enderio:chemical_conduit" + type: "item" + }] + title: "Chemical Conduit" + x: 9.8d + y: -7.699999999999999d + } + { + dependencies: ["4D04830CBA2E04AF"] + icon_scale: 2.0d + id: "70DD78CE9A860AC0" + rewards: [ + { + id: "25683119784B324D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4C1A5B2A60F715D8" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + count: 8L + id: "04A9044E6C121F0F" + item: "enderio:pressurized_chemical_conduit" + type: "item" + }] + title: "Pressurized Chemical Conduit" + x: 9.8d + y: -8.399999999999999d + } + { + dependencies: ["70DD78CE9A860AC0"] + icon_scale: 2.0d + id: "32439CCC802C8041" + rewards: [ + { + id: "1D6114C2FEB2BE02" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1F6C8116F137AE83" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + count: 8L + id: "380386A361065FCF" + item: "enderio:ender_chemical_conduit" + type: "item" + }] + title: "Ender Chemical Conduit" + x: 9.45d + y: -9.1d + } + { + dependencies: ["4016DCA58E347F31"] + hide_dependent_lines: true + icon_scale: 2.0d + id: "360B4A5D7EAC3024" + rewards: [ + { + id: "13935F38FA4583D2" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "5F3D3A91ED9643F5" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + count: 8L + id: "6680401DC6C895FC" + item: "enderio:redstone_conduit" + type: "item" + }] + title: "Redstone Conduit" + x: 8.75d + y: -6.6499999999999995d + } + { + dependencies: ["4016DCA58E347F31"] + icon_scale: 2.0d + id: "673E76FE852A39DE" + rewards: [ + { + id: "6C4EE0C46E4B6F2C" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3C3E612B27BADBC7" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + count: 3L + id: "6AEAC1E5FF37951C" + item: "enderio:heat_conduit" + type: "item" + }] + title: "Heat Conduit" + x: 7.3500000000000005d + y: -7.0d + } + { + dependencies: ["4016DCA58E347F31"] + icon_scale: 2.0d + id: "4D964354225A978A" + rewards: [ + { + id: "20D37282D6606D28" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "651356F7AA848F33" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + count: 3L + id: "2B6E9DBB2D655B49" + item: "enderio:refined_storage_conduit" + type: "item" + }] + title: "Refined Storage Conduit" + x: 9.45d + y: -7.0d + } + { + dependencies: ["3D8E75FBD89040AA"] + id: "504C80D0179154D5" + rewards: [ + { + id: "23C34326C6993B28" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3BBFDDF570AB2B86" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "29E89A54F6C5D73F" + item: "enderio:energetic_photovoltaic_module" + type: "item" + }] + x: -3.0d + y: -3.0d + } + { + dependencies: ["6CB8610599D88B8F"] + id: "75F9C3635B91F39F" + rewards: [ + { + id: "5D2AB91D2BD61F55" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "383D04ADBE063A14" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "6B3641B8A0F22057" + item: "enderio:pulsating_photovoltaic_module" + type: "item" + }] + x: -3.0d + y: -2.0d + } + { + dependencies: ["56EB12EFCAA0AB92"] + id: "3FCBC107DC9DA4F9" + rewards: [ + { + id: "7A2D0D231714A428" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "7B883D709822230C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "5F960A1BC95437EE" + item: "enderio:vibrant_photovoltaic_module" + type: "item" + }] + x: -3.0d + y: -1.0d + } + { + dependencies: ["37BB72D33F766C9F"] + id: "530C610F55422E4C" + rewards: [ + { + id: "7BC426CB045A6A78" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5C000DC817BBBD1B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1DA781B1BB4A9D0B" + item: "enderio:aversion_obelisk" + type: "item" + }] + x: -4.5d + y: -1.0d + } + { + dependencies: ["31F65F523E4DB7A7"] + description: [ + "&dEnder IO&r is a full-featured tech mod. It has armor, tools, weapons, machines, conduits, inventory management, mobs, etc." + "" + "&dEnder IO&r has been rewritten from the ground-up to support the latest version of Minecraft. Some features may be missing or work differently, however we are working to re-implement everything we know and love about the original." + ] + icon: "enderio:guardian_diode" + id: "5BCFF8D80F8A0B5F" + min_width: 300 + rewards: [ + { + id: "732BAADDF3E7FFAE" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "61D95A3E23E1425B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&o&nSign the Contract&r quest*" + tasks: [{ + id: "13C5068A28A8DFA1" + type: "checkmark" + }] + title: "Welcome to &dEnder IO" + x: -1.5d + y: -7.910714285714285d + } + { + dependencies: ["1A8A78BB89CBF5E0"] + icon_scale: 1.5d + id: "618E80188B07F72D" + rewards: [ + { + id: "2E27B3F532FE0AA2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7ADEF4763177AFF3" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "42E9D5560D97B096" + item: "enderio:vacuum_chest" + type: "item" + }] + x: -7.5d + y: -1.0d + } + { + dependencies: ["360B4A5D7EAC3024"] + icon_scale: 2.0d + id: "51A618DFE2B4746A" + rewards: [ + { + id: "7D82A938EA54802D" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "4C95154022919558" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "3AD7CC7C72A64F8A" + item: "enderio:redstone_filter_base" + type: "item" + }] + x: 9.0d + y: -5.5d + } + { + dependencies: ["51A618DFE2B4746A"] + icon_scale: 2.0d + id: "274355D740D7D4AF" + rewards: [ + { + id: "6BA98D36A4E2461E" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "1C147F25C68A9960" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 0.5d + tasks: [{ + id: "493C8D1B58956D46" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "enderio:redstone_not_filter" + } + { + Count: 1b + id: "enderio:redstone_or_filter" + } + { + Count: 1b + id: "enderio:redstone_and_filter" + } + { + Count: 1b + id: "enderio:redstone_nor_filter" + } + { + Count: 1b + id: "enderio:redstone_nand_filter" + } + { + Count: 1b + id: "enderio:redstone_xor_filter" + } + { + Count: 1b + id: "enderio:redstone_xnor_filter" + } + { + Count: 1b + id: "enderio:redstone_toggle_filter" + } + { + Count: 1b + id: "enderio:redstone_counting_filter" + } + { + Count: 1b + id: "enderio:redstone_sensor_filter" + } + { + Count: 1b + id: "enderio:redstone_timer_filter" + } + ] + } + } + title: "Redstone Filters" + type: "item" + }] + title: "&cRedstone Filters" + x: 9.0d + y: -4.75d + } + { + dependencies: ["13EDFA9124D60D53"] + icon_scale: 2.0d + id: "2A9FAF18AD150A7C" + rewards: [ + { + id: "573556B80C8D4CAE" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "49F4E290539B72C0" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 0.5d + tasks: [{ + id: "622790A3E449B936" + item: "enderio:basic_item_filter" + type: "item" + }] + x: 8.25d + y: -5.5d + } + { + dependencies: ["2A9FAF18AD150A7C"] + icon_scale: 2.0d + id: "7892AB6D8C1495FA" + rewards: [ + { + id: "044919088425AF23" + type: "xp" + xp: 100 + } + { + id: "5E2F218697353DBA" + item: "enderio:basic_item_filter" + type: "item" + } + { + exclude_from_claim_all: true + id: "5D6995AA6D7BAE1A" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 0.5d + tasks: [{ + id: "049EF47740B5A5B4" + item: "enderio:advanced_item_filter" + type: "item" + }] + x: 8.25d + y: -4.75d + } + { + dependencies: ["2CDB914E84D00B66"] + hide_dependency_lines: true + icon_scale: 2.0d + id: "0B6B6601CB180BAA" + rewards: [ + { + id: "68293CE616FFB8FE" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "5ECEE8BB7B795309" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 0.5d + tasks: [{ + id: "64378E27B183F268" + item: "enderio:basic_fluid_filter" + type: "item" + }] + x: 7.5d + y: -5.5d + } + { + dependencies: ["5BCFF8D80F8A0B5F"] + hide_dependency_lines: true + icon_scale: 2.0d + id: "2E4671264448F7E9" + rewards: [ + { + id: "24740A35D9FA37B5" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1213DC38A939653B" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 0.5d + tasks: [{ + id: "77F88FB6F601A0ED" + item: "enderio:entity_filter" + type: "item" + }] + x: 7.5d + y: -4.75d + } + { + dependencies: ["349A2AF6970E3CAB"] + icon_scale: 2.0d + id: "25F42F5DA97C717A" + rewards: [ + { + id: "39BC8A0CB2940DB1" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "37DBFD18950FA307" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 0.5d + tasks: [{ + id: "6365EB7C1DE0884C" + item: "enderio:extraction_speed_upgrade_1" + type: "item" + }] + x: 7.182142857142864d + y: -3.982142857142861d + } + { + dependencies: ["25F42F5DA97C717A"] + icon_scale: 2.0d + id: "45D9CF56E73DEBA7" + rewards: [ + { + id: "0DF979ABBEEFFBD6" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0C6E09EEBF2A6193" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 0.5d + tasks: [{ + id: "2BD58ACFDC2E243C" + item: "enderio:extraction_speed_upgrade_2" + type: "item" + }] + x: 7.932142857142864d + y: -3.982142857142861d + } + { + dependencies: ["45D9CF56E73DEBA7"] + icon_scale: 2.0d + id: "0B9B23C1F45B6B61" + rewards: [ + { + id: "65355FFC570AA29D" + type: "xp" + xp: 75 + } + { + exclude_from_claim_all: true + id: "194575EA1C84D061" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 0.5d + tasks: [{ + id: "440E3C83DD1163E4" + item: "enderio:extraction_speed_upgrade_3" + type: "item" + }] + x: 8.682142857142864d + y: -3.982142857142861d + } + { + dependencies: ["0B9B23C1F45B6B61"] + icon_scale: 2.0d + id: "5660AEAEBC77A0E6" + rewards: [ + { + id: "7C7EF15758840B70" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5D929F468AABAAD3" + table_id: 5236874501558129216L + type: "random" + } + ] + size: 0.5d + tasks: [{ + id: "1479C81CA8B04254" + item: "enderio:extraction_speed_upgrade_4" + type: "item" + }] + x: 9.432142857142864d + y: -3.982142857142861d + } + { + dependencies: ["4016DCA58E347F31"] + hide_until_deps_complete: true + id: "3DA004149051AEF6" + rewards: [ + { + id: "12132E6F799769DD" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "773A11547ABD2879" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5FD61AEC1D6DB4D4" + item: { + Count: 1 + id: "enderio:conduit_probe" + tag: { } + } + type: "item" + }] + x: -7.5d + y: -7.0d + } + ] + subtitle: ["Machinery, gadgets, ore processing \\& more.."] + title: "&3&oEnder IO" +} diff --git a/minecraft/config/ftbquests/quests/chapters/enigmatic_legacy.snbt b/minecraft/config/ftbquests/quests/chapters/enigmatic_legacy.snbt new file mode 100644 index 0000000..916cc1b --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/enigmatic_legacy.snbt @@ -0,0 +1,1609 @@ +{ + autofocus_id: "1FF431078E9F14E9" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "enigmatic_legacy" + group: "4814F40AB34427B6" + icon: "enigmaticlegacy:astral_dust" + id: "5A4525EE85A001DD" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -0.2857142857142847d + y: -7.160714285714285d + } + { + height: 1.2d + image: "kubejs:item/enigmatic_legacy" + order: 1 + rotation: 0.0d + width: 8.5d + x: -6.0d + y: -7.0d + } + { + height: 1.0d + image: "enigmaticlegacy:item/living_flame" + rotation: 0.0d + width: 1.0d + x: -8.107142857142875d + y: -7.562500000000014d + } + { + height: 1.0d + image: "enigmaticlegacy:item/void_stone" + rotation: 0.0d + width: 0.03125d + x: -9.0d + y: -5.5d + } + { + height: 1.0d + image: "enigmaticlegacy:item/void_stone" + rotation: 0.0d + width: 0.03125d + x: -9.5d + y: -5.5d + } + { + height: 1.0d + image: "enigmaticlegacy:item/void_stone" + rotation: 0.0d + width: 0.03125d + x: -4.0d + y: 2.0d + } + { + height: 0.7d + image: "enigmaticlegacy:item/void_stone" + rotation: 0.0d + width: 0.7d + x: -5.9642857142857295d + y: -7.45535714285716d + } + { + height: 1.0d + image: "enigmaticlegacy:item/enigmatic_eye" + rotation: 0.0d + width: 1.0d + x: 2.0d + y: -7.0d + } + ] + order_index: 6 + quest_links: [ ] + quests: [ + { + dependencies: ["3ABFE29062852FD6"] + description: ["When worn in the Ring slot, it will move any dropped items within 8 blocks radius towards the wearer, leaving trail of violet particles behind them."] + id: "05EA6848C4510FAB" + rewards: [ + { + id: "33E5C14302281082" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5B25FCED82CE315C" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "You see, I am a very magnetic personality..." + tasks: [{ + id: "3D80D0B72EDCBC9B" + item: "enigmaticlegacy:magnet_ring" + type: "item" + }] + x: 0.0d + y: -4.0d + } + { + dependencies: ["05EA6848C4510FAB"] + description: ["When worn in the Ring slot, it will collect any dropped items within 16 blocks radius from the wearer of the ring."] + id: "07912BA915367ECC" + rewards: [ + { + id: "17F6BA5CCC8ADA14" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7FDE5E6A493F2E51" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Don't get any close to cesspools when wearing it. You won't be happy to see what happens." + tasks: [{ + id: "0043CA3C784C1AA1" + item: "enigmaticlegacy:super_magnet_ring" + type: "item" + }] + x: 0.0d + y: -3.0d + } + { + dependencies: ["07912BA915367ECC"] + description: ["When worn in the Ring slot, it allows the player to open their Ender Chest inventory, by pressing related keybind (default: I)."] + id: "6C5F93AFCF8CACB0" + rewards: [ + { + id: "6D2D4F0E32F884FF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2C78F6E776396BDA" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Handshake with the cosmic abyss. How romantic." + tasks: [{ + id: "17D12FD831E2FB68" + item: "enigmaticlegacy:ender_ring" + type: "item" + }] + x: 0.0d + y: -2.0d + } + { + dependencies: ["3ABFE29062852FD6"] + description: ["It can be relatively rarely found in chests generated within End Cities."] + id: "5AEDAD2BA20FB750" + rewards: [ + { + id: "7845B2C59FAD60F8" + type: "xp" + xp: 100 + } + { + id: "6F90293E28CA4C43" + item: "enigmaticlegacy:etherium_ore" + type: "item" + } + { + id: "60B13242E5AC442B" + item: { + Count: 1 + id: "enigmaticlegacy:ultimate_potion_lingering" + tag: { + EnigmaticPotion: "ultimate_night_vision" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "328935DE8D802D6F" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "It's truly curious how it came to existence, given that it never appears naturally across any of the reaches of The End." + tasks: [{ + id: "29C59FD32EE013E1" + item: "enigmaticlegacy:etherium_ore" + type: "item" + }] + x: -7.0d + y: -5.0d + } + { + dependencies: ["5AEDAD2BA20FB750"] + description: ["Etherium represents \"better than diamond\" tier of equipment, available in endgame stages of progression, after reaching the Outer Islands in The End. Tools and armor made of Etherium not only have high durability and effectiveness on their own, but also possess unique abilities that make them incomparably more powerful than anything vanilla Minecraft has to offer."] + id: "5298FDCB080C6BA0" + rewards: [ + { + id: "06EA24DEA7FAB190" + type: "xp" + xp: 200 + } + { + id: "58E14871E94F2C77" + item: { + Count: 1 + id: "enigmaticlegacy:corrupted_tome" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "5F229E2A9573A2D7" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Don't let this name confuse you. It is physically solid. Very." + tasks: [{ + id: "124A53818176B966" + item: "enigmaticlegacy:etherium_ingot" + type: "item" + }] + x: -7.0d + y: -4.0d + } + { + dependencies: ["5298FDCB080C6BA0"] + description: ["When worn, etherium armor will provide the player with high defensive stats and unlike other armor, will not be visible on them."] + id: "26F5882C2D317741" + rewards: [ + { + id: "093F6F04E24DC621" + type: "xp" + xp: 2500 + } + { + exclude_from_claim_all: true + id: "35B70E21600F8678" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Next generation of bikini armor." + tasks: [{ + id: "60F52E110894E529" + item: { + Count: 1 + id: "enigmaticlegacy:etherium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: -3.5d + } + { + dependencies: ["26F5882C2D317741"] + description: ["Etherium gear has exceptionally high durability as for armor, with the helmet having 1452 durability points, cuirass having 2112, greaves having 1980 and boots having 1716. It has protection stats noticeably better than that of a diamond armor, an is also not displayed on a player when they are wearing it, providing additional advantage in PvP encounters."] + id: "25EB996570D15909" + rewards: [ + { + id: "0B85AF0D915CFB60" + type: "xp" + xp: 2500 + } + { + exclude_from_claim_all: true + id: "624CA1C94B844624" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Next generation of bikini armor." + tasks: [{ + id: "5B5F73850E03FA65" + item: { + Count: 1 + id: "enigmaticlegacy:etherium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: -2.5d + } + { + dependencies: ["25EB996570D15909"] + description: ["But the greatest power of etherium armor lies in it's set bonus. Set bonus is activated when wearing all four pieces of the armor simultaneously. When that happens, additional text describing it will be seen when viewing the tooltip of any of those pieces."] + id: "4BB85B3AB0C08772" + rewards: [ + { + id: "13D20BEC4748C790" + type: "xp" + xp: 2500 + } + { + exclude_from_claim_all: true + id: "1053826C75FF9F07" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Next generation of bikini armor." + tasks: [{ + id: "6EC376345519D1BB" + item: { + Count: 1 + id: "enigmaticlegacy:etherium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: -1.5d + } + { + dependencies: ["4BB85B3AB0C08772"] + description: ["The bonus will generate a shield around the player, whenever their health drops below 40%. Health calculations consider maximum amount of health player can have at the moment, so if they have any effects that increase or decrease maximum health they can have, the amount of health required to generate a shield will change respectively."] + id: "50FA8E9AB010689B" + rewards: [ + { + id: "0765C70E1A057D2C" + type: "xp" + xp: 2500 + } + { + exclude_from_claim_all: true + id: "399F07E6657F6A5F" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Next generation of bikini armor." + tasks: [{ + id: "2EBB01E46492ED4A" + item: { + Count: 1 + id: "enigmaticlegacy:etherium_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: -0.5d + } + { + dependencies: ["5298FDCB080C6BA0"] + description: ["When mining a block that pickaxe is effective on, it will break additional such blocks in 3x3x1 area centered around the broken block, orientated respectively to the player's sight. This effect will not trigger if they are holding Shift, however, allowing to mine individual blocks if it's required."] + id: "0141B118123EC39B" + rewards: [ + { + id: "69587AB1BF4554E1" + type: "xp" + xp: 2500 + } + { + exclude_from_claim_all: true + id: "21ECE1747FAFFF11" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Classic of all classics." + tasks: [{ + id: "2646E39F279CFDDC" + item: { + Count: 1 + id: "enigmaticlegacy:etherium_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: -3.5d + } + { + dependencies: ["0141B118123EC39B"] + description: ["When mining a block that waraxe is effective on, it will break additional such blocks in 3x3x3 area centered around the broken block. This effect will not trigger if player is holding Shift, however, allowing to mine individual blocks if it's required."] + id: "77B80530F8609F7B" + rewards: [ + { + id: "5F6BFBCF38276F0E" + type: "xp" + xp: 2500 + } + { + exclude_from_claim_all: true + id: "0616F3789C0E5D42" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "A weapon worthy of true viking... or a true lumberjack. One of these guys should suffice." + tasks: [{ + id: "28D619FDB6A04B77" + item: { + Count: 1 + id: "enigmaticlegacy:etherium_axe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: -2.5d + } + { + dependencies: ["77B80530F8609F7B"] + description: ["When mining a block that shovel is effective on, it will break additional such blocks in 3x3x1 area centered around the broken block, orientated respectively to the player's sight. This effect will not trigger if they are holding Shift, however, allowing to mine individual blocks if it's required."] + id: "178168F4134EB8E5" + rewards: [ + { + id: "12E09B30F1F69839" + type: "xp" + xp: 2500 + } + { + exclude_from_claim_all: true + id: "6013EBEF6D0E6872" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "That's one compact and portable excavator." + tasks: [{ + id: "26F96596A1BFAB20" + item: { + Count: 1 + id: "enigmaticlegacy:etherium_shovel" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: -1.5d + } + { + dependencies: ["178168F4134EB8E5"] + description: ["Pressing Right-Click while holding Etherium Broadsword in mainhand will throw it's user back a few blocks. This ability could be used again after 2 seconds cooldown expires."] + id: "2C4CD7394763E782" + rewards: [ + { + id: "649B7B813541FF6B" + type: "xp" + xp: 2500 + } + { + exclude_from_claim_all: true + id: "50AC993D8C151A1A" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "A big blade for a big boy... Oh, wait, you're a girl?" + tasks: [{ + id: "03134621A662CFF0" + item: { + Count: 1 + id: "enigmaticlegacy:etherium_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: -0.5d + } + { + dependencies: [ + "51687C4372CEB98B" + "0141B118123EC39B" + "178168F4134EB8E5" + "77B80530F8609F7B" + ] + description: ["When mining a block that breaker is effective on, it will break additional such blocks in 3x3x1 area centered around the broken block, orientated respectively to the player's sight. This effect will not trigger if they are holding Shift, however, allowing to mine individual blocks if it's required."] + id: "6575317D05AF48EC" + rewards: [ + { + id: "713CA718D0BE58F0" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "2CA1CF46568D2CB8" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + size: 1.0d + subtitle: "Insert overthinked lore stuff here." + tasks: [{ + id: "1742FB1C43F2B626" + item: { + Count: 1 + id: "enigmaticlegacy:astral_breaker" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.0d + y: -2.5d + } + { + dependencies: ["3ABFE29062852FD6"] + description: ["It can be commonly found in chests generated within End Cities."] + id: "51687C4372CEB98B" + rewards: [ + { + id: "775002E5404FDA34" + type: "xp" + xp: 100 + } + { + id: "03CC4CCABAB918C2" + item: "enigmaticlegacy:astral_dust" + type: "item" + } + { + id: "55FD49CC8F5694CA" + item: "croptopia:taco" + type: "item" + } + { + exclude_from_claim_all: true + id: "30E5158CB54CA6D8" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Shamelessly stolen from the very depths of cosmic well of time." + tasks: [{ + id: "31A76014F139F449" + item: "enigmaticlegacy:astral_dust" + type: "item" + }] + x: -4.0d + y: -4.5d + } + { + dependencies: ["3ABFE29062852FD6"] + description: ["After being bound to a location, it will teleport any entity the player Left-Clicks on to that location, vanishing from their inventory right after."] + id: "5D85DD83E65824E4" + rewards: [ + { + id: "65EDF4718ECB66FA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "31245136C601AB71" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Yes, it stares right in your eyes. Always." + tasks: [{ + id: "682D6E6C95726C19" + item: { + Count: 1 + id: "enigmaticlegacy:extradimensional_eye" + tag: { } + } + type: "item" + }] + x: -2.0d + y: -4.0d + } + { + dependencies: ["5D85DD83E65824E4"] + description: ["When worn in the Charm slot, it will consume the water in a radius and shape similar to that of a regular Sponge, if you come in contact with any water block."] + id: "5416535E697BDB2D" + rewards: [ + { + id: "2879634CB68F5F51" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "600193D808ACFBDF" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Don't leave this thing unattended. Given enough time, it will drain entire oceans." + tasks: [{ + id: "6F63514EBED396EE" + item: "enigmaticlegacy:mega_sponge" + type: "item" + }] + x: -2.0d + y: -3.0d + } + { + dependencies: ["3AE2C846449A901E"] + description: ["Has a 10% chance to behead monsters slain with this weapon. Each level of Looting enchantment applied to it increases the probability by another 5%."] + id: "037F874922352A48" + rewards: [ + { + id: "467F78E35350C9B7" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "35E1B05F7A902A4A" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Evil weapon against evil creatures. I bet this will work perfectly." + tasks: [{ + id: "357BFF7F6F286FCF" + item: { + Count: 1 + id: "enigmaticlegacy:forbidden_axe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.0d + y: -1.0d + } + { + dependencies: ["3ABFE29062852FD6"] + description: ["When equipped in the Arcane Scroll slot and activated, it will quickly consume or retreive player's experience, depending on the mode chosen. It will also collect any experience orb in the radius of 16 blocks from it's bearer. If deactivated, all of it's effects will be disabled."] + id: "34B1CC13B5B096EA" + rewards: [ + { + id: "0CC97A414D812718" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3C1EC4AACEDFDA6D" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Where do I put this scroll?.. I can't remember where I put this scroll!" + tasks: [{ + id: "3CED048E00B39131" + item: { + Count: 1 + id: "enigmaticlegacy:xp_scroll" + tag: { } + } + type: "item" + }] + x: -1.0d + y: -4.0d + } + { + dependencies: ["63ACC29415D94F54"] + description: ["When equipped in the Arcane Scroll slot, it will provide the bearer with an ability to freely fly, at the cost of slowly consuming their experience. When flying, it will also compensate mining speed penalty, boosting block breaking rate back to regular value."] + id: "58A625A699579D89" + rewards: [ + { + id: "2948ED3E67017F3F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "605718D1467DA44C" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Looks like they've made sure that the wings won't meltdown in the sunlight this time." + tasks: [{ + id: "33FE3EB6B5C5218C" + item: "enigmaticlegacy:heaven_scroll" + type: "item" + }] + x: -1.0d + y: -2.0d + } + { + dependencies: ["34B1CC13B5B096EA"] + description: ["When equpped in the Arcane Scroll slot, it will return the bearer to their respawn point within the current world in an instant of their death. The scroll itself will be dropped at the initial position of death."] + id: "63ACC29415D94F54" + rewards: [ + { + id: "32AF48D567169765" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3F40F3C7F86DB296" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "There is a special advancement for dying while having it equipped in a hardcore world. I am sure." + tasks: [{ + id: "41B4947C4F921117" + item: "enigmaticlegacy:escape_scroll" + type: "item" + }] + x: -1.0d + y: -3.0d + } + { + dependencies: ["58A625A699579D89"] + description: ["Flying will quickly drain your experience. Flying within the range of the beacon does not drain experience. Compensates for the loss of mining speed while flying."] + id: "6B0DF7364F9B5DCE" + rewards: [ + { + id: "369574373574F71A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4E1D3610661A9572" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Grants you the ability to fly." + tasks: [{ + id: "5F4CFC8434CD920E" + item: "enigmaticlegacy:fabulous_scroll" + type: "item" + }] + x: -1.0d + y: -1.0d + } + { + dependencies: ["5416535E697BDB2D"] + description: [ + "Allows you to transfer enchantments from any item, by combining the tome with it in a crafting grid." + "Item which enchantments are absorbed by the book remains intact within the grid after crafting, besides having all of it's enchantments removed." + ] + id: "3AE2C846449A901E" + rewards: [ + { + id: "21A11EC6D211B1BF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5ED462A109D2014F" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Insert overthinked lore stuff here." + tasks: [{ + id: "7489C06F99A7304D" + item: "enigmaticlegacy:enchantment_transposer" + type: "item" + }] + x: -2.0d + y: -2.0d + } + { + dependencies: ["6C5F93AFCF8CACB0"] + description: ["Piglins become neutral when equipped, increasing luck by one."] + id: "517EAF56950207E4" + rewards: [ + { + id: "1121F7B2D5CD5A61" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "109D9F9EF57AEFAC" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Useful thing to protect your finger from being cut off some day. Perhaps." + tasks: [{ + id: "216DE3E3BD32511C" + item: "enigmaticlegacy:golden_ring" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + dependencies: ["071125FC42EBEAB9"] + description: ["This mod is designed to provide tools that will aid you in exploring seemingly endless reaches of Minecraft's worlds."] + icon: "enigmaticlegacy:the_acknowledgment" + id: "3ABFE29062852FD6" + min_width: 300 + rewards: [ + { + id: "383B3A30FA21132B" + type: "xp" + xp: 10 + } + { + id: "2D16769CE1A070CD" + item: "enigmaticlegacy:recall_potion" + type: "item" + } + { + id: "7E4E54F37C95985A" + item: { + Count: 1 + id: "enigmaticlegacy:common_potion" + tag: { + EnigmaticPotion: "haste" + } + } + type: "item" + } + { + id: "18757AB4CF1B45BC" + item: { + Count: 1 + id: "enigmaticlegacy:ultimate_potion" + tag: { + EnigmaticPotion: "ultimate_night_vision" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "5A91861F30D7F2D7" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "353D92FB5AA053CE" + type: "checkmark" + }] + title: "Welcome to &5Enigmatic Legacy" + x: -1.0d + y: -6.5d + } + { + dependencies: ["3ABFE29062852FD6"] + description: ["The Ring of Seven curses is a wearable item that can be equipped in the Curios ring slot. Once it is put on, it cannot be removed. Wearing it significantly and permanently changes gameplay to be extremely challenging."] + icon: "enigmaticlegacy:cursed_ring" + id: "1FF431078E9F14E9" + min_width: 300 + rewards: [ + { + id: "7F65E89DD06BBA2C" + type: "xp" + xp: 5 + } + { + id: "2051C932F0B3E97D" + item: { + Count: 1 + id: "enigmaticlegacy:darkest_scroll" + tag: { } + } + type: "item" + } + { + id: "775473B842B0408E" + item: { + Count: 1 + id: "enigmaticlegacy:astral_fruit" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "053266CEF84CE431" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "\"Once forged by an antediluvian god, it beckons mortals and higher beings alike with promise of untold riches and immeasurable might... Be it arrogance or ignorance that leads them to believe they can harness ring's power, both are paid for in suffering the extent of which defies description.\"" + tasks: [{ + id: "499D3936E0549DD4" + type: "checkmark" + }] + title: "&5Ring of the Seven Curses" + x: 3.5d + y: -5.0d + } + { + dependencies: ["1FF431078E9F14E9"] + description: [ + "Basic bonus:" + "+4% Attack Damage" + "+7% Mining Speed" + "+4% Health Regeneration" + "The base bonus above will be multiplied by the number of cursed enchantments in all your equipment items (note the number of items). The seven curses of the Ring of Seven Curses are also counted." + "Only those who bear the seven curses are worthy of carrying this item." + ] + hide_dependency_lines: true + id: "3349BD306A590085" + rewards: [ + { + id: "6C8049BFE7FF5A0B" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "62789B0E6BEB4089" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Arcane Scroll" + tasks: [{ + id: "17D313B12A5C7549" + item: "enigmaticlegacy:cursed_scroll" + type: "item" + }] + x: 3.0d + y: -4.0d + } + { + dependencies: ["1FF431078E9F14E9"] + description: [ + "Only those who bear the Seven Curses can use this item." + "+1 Fortune Level." + "Piglins are neutral to you , even if there is a second curse, supplies will increase the yield by 100% ." + "Killing any mob provides an additional 15% chance to drop an emerald." + "Villager trading offers a 35% discount, and if you feel good, you have to suffer seven negative effects." + ] + hide_dependency_lines: true + id: "51115C97C6CDFADD" + rewards: [ + { + id: "153601DDF1978784" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "43327B9103257AA8" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Arcane Scroll" + tasks: [{ + id: "40059F17005D5735" + item: "enigmaticlegacy:avarice_scroll" + type: "item" + }] + x: 4.0d + y: -4.0d + } + { + dependencies: ["1FF431078E9F14E9"] + description: [ + "The only way to take off the Ring of Seven Curses is to go to the Nether with this stone and a soul crystal and jump into a lava lake big enough to consume this stone and soul crystal to destroy the Ring of Seven Curses." + "" + "If the lava lake is not big enough, even if you jump into it and die, it will not destroy the Ring of Seven Curses and it will also consume the evil stone (does not consume the soul crystal)." + "" + "When all goes well, the player will hear the roar of wither death upon death and find that the Ring of Seven Curses has permanently disappeared from the accessories slot upon resurrection. This process is irreversible!" + "" + "Since the Ring of Seven Curses cannot be crafted, when the Ring of Seven Curses is destroyed, players can no longer obtain it except by cheating. It would be boring if you did that, wouldn't it?" + ] + hide_dependency_lines: true + id: "041DF7D0D016B0C3" + min_width: 300 + rewards: [ + { + id: "4C9B7D452D2C0FE9" + type: "xp" + xp: 500 + } + { + id: "542DE23635DBCE43" + item: { + Count: 1 + id: "enigmaticlegacy:etherium_block" + tag: { } + } + type: "item" + } + { + id: "130D37AD3D173823" + item: { + Count: 1 + id: "extendedcrafting:the_ultimate_block" + tag: { } + } + type: "item" + } + { + id: "5E4965E56973E4EC" + item: { + Count: 1 + id: "extendedcrafting:ultimate_singularity" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "17DE6C21966B2342" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "pentagon" + size: 1.5d + subtitle: "The Cure" + tasks: [{ + id: "0771636F7C00DC8B" + item: "enigmaticlegacy:cursed_stone" + type: "item" + }] + x: 3.5d + y: 1.0d + } + { + dependencies: ["1FF431078E9F14E9"] + description: [ + "Basic bonus:" + "+1% Attack Damage" + "+1% Attack Speed" + "+0.5% Movement Speed" + "+0.5% Damage Resistance" + "These attributes are multiplied by the total of all your gear/effects." + "Only those who bear the seven mantras have the ability to obtain this thing." + "This item can only be crafted/used by players wearing the Ring of Seven Curses in the Ring Bar." + ] + hide_dependency_lines: true + id: "216383A1EA42CFDE" + rewards: [ + { + id: "244434683096C7CC" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "6C4947C100FE6353" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Talisman" + tasks: [{ + id: "279D5BC30DECE3E4" + item: "enigmaticlegacy:berserk_charm" + type: "item" + }] + x: 3.0d + y: -3.0d + } + { + dependencies: ["1FF431078E9F14E9"] + description: [ + "When equipped in the Charm slot or in your inventory, the player receives greater amount and power of enchantments when using an Enchanting Table. Enchanting has the chance to produce both treasure and curse enchants." + "This is a cursed item, meaning that can only be used when the Ring of Seven Curses is equipped." + "Due to the ability to get curse enchants with this item, it works well in conjunction with the Scroll of a Thousand Curses" + ] + hide_dependency_lines: true + id: "6C775AF4D9F399EF" + rewards: [ + { + id: "2FBE3C7B7CAB4D48" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "6896786B380B2D45" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "This item cannot burn in fire or lava." + tasks: [{ + id: "13615751FF502579" + item: "enigmaticlegacy:enchanter_pearl" + type: "item" + }] + x: 4.0d + y: -3.0d + } + { + dependencies: ["3ABFE29062852FD6"] + hide_dependency_lines: true + id: "5A31D0CCD2360586" + rewards: [ + { + id: "7549BAC5B8FBCA51" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "56CE379A15BECD33" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "4AA49A3B50EBEBBF" + item: "enigmaticlegacy:the_twist" + type: "item" + }] + x: -2.0d + y: 0.0d + } + { + dependencies: ["3ABFE29062852FD6"] + hide_dependency_lines: true + id: "443D11965967B122" + rewards: [ + { + id: "4358785FED473E66" + type: "xp" + xp: 100 + } + { + id: "12263D8B65C989BC" + item: { + Count: 1 + id: "minecraft:tipped_arrow" + tag: { + Potion: "ars_nouveau:spell_damage_potion_strong" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "3AFEC2C67DE74C80" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "5DE080B409458C2A" + item: "enigmaticlegacy:animal_guidebook" + type: "item" + }] + x: -1.0d + y: 0.0d + } + { + dependencies: ["3ABFE29062852FD6"] + hide_dependency_lines: true + id: "34E45EE36B4BCA90" + rewards: [ + { + id: "054F50E4C7D5BEBA" + type: "xp" + xp: 100 + } + { + count: 12 + id: "52734EF6374E8E5D" + item: "buildersaddition:bookshelf_dark_oak" + type: "item" + } + { + exclude_from_claim_all: true + id: "479FE562B7DE40C8" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "1EA2FA4796FF962E" + item: "enigmaticlegacy:hunter_guidebook" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["51687C4372CEB98B"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "53C3418F36947BDD" + rewards: [ + { + id: "12569320F8AE2676" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "1C486D79317DD9A6" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "02A7547207C5D765" + item: { + Count: 1 + id: "enigmaticlegacy:cosmic_heart" + tag: { } + } + type: "item" + }] + x: -1.0d + y: 2.0d + } + { + dependencies: ["51687C4372CEB98B"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "0710CD0A10741258" + rewards: [ + { + id: "74081200AF82D74E" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "1CE3F23D858D3242" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "5DA44BC686D5C641" + item: { + Count: 1 + id: "enigmaticlegacy:cosmic_cake" + tag: { } + } + type: "item" + }] + x: 0.0d + y: 2.0d + } + { + dependencies: ["51687C4372CEB98B"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "76D958C317879242" + rewards: [ + { + id: "5A5923CC09DEE48A" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "5A1D8188737660FB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "3D81CBF770FBE612" + item: { + Count: 1 + id: "enigmaticlegacy:astral_potato" + tag: { } + } + type: "item" + }] + x: -2.0d + y: 2.0d + } + { + dependencies: ["1FF431078E9F14E9"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "51B98B47B615A40F" + rewards: [ + { + id: "6EBC6E5A439AA48D" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "1D3A2424B12EC1B7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "58F55C7450B6100D" + item: { + Count: 1 + id: "enigmaticlegacy:the_infinitum" + tag: { } + } + type: "item" + }] + x: 5.0d + y: -2.5d + } + { + dependencies: ["1FF431078E9F14E9"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "0A5E009D37A67DD4" + rewards: [ + { + id: "724730F558B61794" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "43BB99B9A66AFF40" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "23D5E5C78D784F5C" + item: { + Count: 1 + id: "enigmaticlegacy:soul_compass" + tag: { } + } + type: "item" + }] + x: 5.0d + y: -3.5d + } + { + dependencies: ["1FF431078E9F14E9"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "446EC9001D51F4CA" + rewards: [ + { + id: "5793DA0FB1D4B257" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "005A57AF678137B0" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "18CD23B0622A0434" + item: { + Count: 1 + id: "enigmaticlegacy:infernal_shield" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.0d + y: -1.5d + } + { + dependencies: ["1FF431078E9F14E9"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "2FC752AD1DCF1DB0" + rewards: [ + { + id: "55CD0B0E98D017F4" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "4D90A15B081ADF6B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1C4DB3B0783133B7" + item: { + Count: 1 + id: "enigmaticlegacy:ender_slayer" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.5d + y: -1.0d + } + { + dependencies: ["1FF431078E9F14E9"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "667C87AD2C55D3C4" + rewards: [ + { + id: "24BBFD3106133BDC" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "77717B93EE4C71C4" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6A70CE42E6A2FA37" + item: { + Count: 1 + id: "enigmaticlegacy:evil_ingot" + tag: { } + } + type: "item" + }] + x: 2.0d + y: -1.5d + } + { + dependencies: ["1FF431078E9F14E9"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "391C419A602944F7" + rewards: [ + { + id: "67B16AA660F3B512" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "70271DF5780FF99B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4BFED83FE26B64E8" + item: { + Count: 1 + id: "enigmaticlegacy:desolation_ring" + tag: { } + } + type: "item" + }] + x: 2.0d + y: -2.5d + } + { + dependencies: ["1FF431078E9F14E9"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "57947EB8B3D2370F" + rewards: [ + { + id: "13680EE33DC573A9" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "04FCDF16DCE651ED" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6E8E13E8BB90FD62" + item: { + Count: 1 + id: "enigmaticlegacy:curse_transposer" + tag: { } + } + type: "item" + }] + x: 2.0d + y: -3.5d + } + { + dependencies: ["5298FDCB080C6BA0"] + hide_dependency_lines: true + id: "4A9F93181E031F6B" + rewards: [ + { + id: "3118BAAD65532B0B" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "4B472ECF17EC7645" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "pentagon" + size: 1.5d + tasks: [{ + id: "0B74A14465EFC204" + item: { + Count: 1 + id: "enigmaticlegacy:enigmatic_elytra" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.0d + y: 1.0d + } + { + dependencies: ["1FF431078E9F14E9"] + hide_dependency_lines: true + id: "0A94A6D7D5151BB1" + rewards: [ + { + id: "36579BF195EC5BBC" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "3B4BAC1C8609A37F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3A0C1546DADFD1F7" + item: "enigmaticlegacy:abyssal_heart" + type: "item" + }] + x: 4.0d + y: -2.0d + } + { + dependencies: ["1FF431078E9F14E9"] + hide_dependency_lines: true + id: "53FE2C339E3CA7A4" + rewards: [ + { + id: "5DBF31D0B799A626" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "00A980B5E14E90B3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1F10D769CF7A920E" + item: { + Count: 1 + id: "enigmaticlegacy:eldritch_amulet" + tag: { } + } + type: "item" + }] + x: 3.0d + y: -2.0d + } + ] + title: "&3&oEnigmatic Legacy" +} diff --git a/minecraft/config/ftbquests/quests/chapters/extended_crafting.snbt b/minecraft/config/ftbquests/quests/chapters/extended_crafting.snbt new file mode 100644 index 0000000..0ecb4f7 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/extended_crafting.snbt @@ -0,0 +1,1929 @@ +{ + autofocus_id: "23BBDF8CF20438C6" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "extended_crafting" + group: "69B9F7247002FE35" + icon: "extendedcrafting:ultimate_singularity" + id: "059EE974D686567D" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 3.3d + y: -13.1d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -4.0d + y: -14.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 13.5d + y: -9.0d + } + { + height: 1.0d + image: "kubejs:item/extendedcrafting_logo" + order: 1 + rotation: 0.0d + width: 11.387755102040817d + x: 5.0d + y: -15.5d + } + ] + order_index: 2 + quest_links: [ ] + quests: [ + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "3AC9CDB30455CFC7" + rewards: [ + { + id: "1DC575F246CBCC99" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "2F2899B624FB804B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "6FD3E92C40DF4BF0" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:gold" + } + } + type: "item" + }] + x: -4.8999999999999995d + y: -10.5d + } + { + dependencies: [ + "183E47DFBC340187" + "7BA12D4416DFE365" + ] + hide_dependency_lines: true + id: "00BF1724D4F902C9" + rewards: [ + { + id: "722D11DB429E2BCE" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "415019D1AF6A9CD8" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "083864D1D5521A55" + item: "extendedcrafting:basic_table" + type: "item" + }] + x: 4.0d + y: -7.0d + } + { + dependencies: [ + "5530C0D8BF092FCA" + "00000000000000AF" + ] + id: "6C8754CBAA4B7D90" + rewards: [ + { + id: "4644A399C7D36B24" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "1C94132DB22FEEBB" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "*Unlocked by completing the &b&o&nWelcome to PneumaticCraft&r quest*" + tasks: [{ + id: "1F8F90D381CFBC0B" + item: "extendedcrafting:black_iron_ingot" + type: "item" + }] + x: 1.0d + y: -12.5d + } + { + dependencies: ["6C8754CBAA4B7D90"] + id: "7E21D8137624442D" + rewards: [ + { + id: "5059C78C5CC3E223" + type: "xp" + xp: 35 + } + { + exclude_from_claim_all: true + id: "61DFCEB45033355F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0B90F5DB00927532" + item: "extendedcrafting:luminessence" + type: "item" + }] + x: -0.5d + y: -11.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + ] + hide_dependency_lines: true + id: "183E47DFBC340187" + rewards: [ + { + id: "5AE6BCB303392DE1" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0102480034429516" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "6FCDDC1725F9112D" + item: "extendedcrafting:basic_component" + type: "item" + }] + x: 2.0d + y: -9.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + ] + hide_dependency_lines: true + id: "47D23E9CB93DE790" + rewards: [ + { + id: "7977D77292549C43" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0353C1DFB16FE15C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "1B37ED02929B9A9D" + item: "extendedcrafting:advanced_component" + type: "item" + }] + x: 3.0d + y: -9.5d + } + { + dependencies: ["6C8754CBAA4B7D90"] + id: "5974F712DA017C94" + rewards: [ + { + id: "67112CE18B7B1588" + type: "xp" + xp: 35 + } + { + exclude_from_claim_all: true + id: "17814AEA28041170" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "65888C9373BDE859" + item: "extendedcrafting:black_iron_slate" + type: "item" + }] + x: -0.5d + y: -13.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + ] + hide_dependency_lines: true + id: "790B36479144770F" + rewards: [ + { + id: "00EAD3A92FB95802" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "7D97D547EC7BCD4E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "655EE2C39F3D4A3B" + item: "extendedcrafting:elite_component" + type: "item" + }] + x: 4.0d + y: -9.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + ] + hide_dependency_lines: true + id: "74C4FD5EF14EDB3A" + rewards: [ + { + id: "1D6560348F266270" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "367D29F3BCACD36C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "5ED6E0A246579FCC" + item: "extendedcrafting:ultimate_component" + type: "item" + }] + x: 5.0d + y: -9.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + "22698729A224CCBC" + ] + hide_dependency_lines: true + id: "058BAA533EFE63EB" + rewards: [ + { + id: "222906277E8EB209" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7FD9142F4EDFC978" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "2043A39906AD2C1E" + item: "extendedcrafting:redstone_component" + type: "item" + }] + x: 6.0d + y: -9.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + "0C43E0D8C4C8743F" + ] + hide_dependency_lines: true + id: "33565398C0DA7135" + rewards: [ + { + id: "66FE88B7CA746354" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6AC876EBA58B9F23" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "6143CD2016F44AE8" + item: "extendedcrafting:ender_component" + type: "item" + }] + x: 8.0d + y: -9.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + "386E842C193E1B4F" + ] + hide_dependency_lines: true + id: "501A8D68AA146608" + rewards: [ + { + id: "697D04B41793D84A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4230641A8B520D28" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "2781E8CD4FE980FC" + item: "extendedcrafting:enhanced_ender_component" + type: "item" + }] + x: 9.0d + y: -9.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + "0A6FFA0295BE1616" + ] + hide_dependency_lines: true + id: "7C3C6EE0AF2DF234" + rewards: [ + { + id: "4480E77D89994B82" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "5A04A75CDCE613A0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "453DD53D65CA3456" + item: "extendedcrafting:crystaltine_component" + type: "item" + }] + x: 10.0d + y: -9.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + "058BAA533EFE63EB" + "183E47DFBC340187" + "7C3C6EE0AF2DF234" + "33565398C0DA7135" + "501A8D68AA146608" + "74C4FD5EF14EDB3A" + ] + hide_dependency_lines: true + id: "3CB10BBE42C7A96C" + rewards: [ + { + id: "6958A5C39F92A222" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "470A366836C49D3C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "6496DE982C9FFD9A" + item: "extendedcrafting:the_ultimate_component" + type: "item" + }] + x: 11.0d + y: -9.5d + } + { + dependencies: ["5530C0D8BF092FCA"] + id: "22698729A224CCBC" + rewards: [ + { + id: "07ABB495030849F5" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "18AC175EBA3B59D8" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "144F4E5A99402EA8" + item: "extendedcrafting:redstone_ingot" + type: "item" + }] + x: 7.0d + y: -11.5d + } + { + dependencies: [ + "5530C0D8BF092FCA" + "00000000000000AF" + ] + id: "0C43E0D8C4C8743F" + rewards: [ + { + id: "19425D72CDE62497" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "1819BCB33DF78899" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "*Unlocked by completing the &b&o&nWelcome to PneumaticCraft&r quest*" + tasks: [{ + id: "2580DAA4B175FE13" + item: "extendedcrafting:ender_ingot" + type: "item" + }] + x: 7.0d + y: -13.5d + } + { + dependencies: ["0C43E0D8C4C8743F"] + description: [ + "The &aEnder Crafter&r requires power provided by &9Ender Alternators&r in a 7x7x7 area around it. The area is centered around the &aEnder Crafter&r." + "" + "If you have more Ender Alternators in the zone, you can produce faster." + ] + id: "11E16D072634AAF5" + rewards: [ + { + id: "6193FE00966B025D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3719F4D7BFC52C55" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "63C7DA2D36D1B2D9" + item: "extendedcrafting:ender_crafter" + type: "item" + } + { + count: 4L + id: "067469321364E50E" + item: "extendedcrafting:ender_alternator" + type: "item" + } + ] + title: "&3The Ender Crafter" + x: 9.0d + y: -13.5d + } + { + dependencies: ["11E16D072634AAF5"] + id: "2EC1D0576E0D417C" + rewards: [ + { + id: "3656BEABEC65A314" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "244236CE4AE8AD9D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5C2D2D8EA44EC9A3" + item: "extendedcrafting:ender_star" + type: "item" + }] + x: 11.0d + y: -13.5d + } + { + dependencies: ["2EC1D0576E0D417C"] + hide_dependency_lines: true + id: "386E842C193E1B4F" + rewards: [ + { + id: "327524BF39FDFA77" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3B638E1AD38819A5" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "76B078734C493219" + item: "extendedcrafting:enhanced_ender_ingot" + type: "item" + }] + x: 13.5d + y: -13.5d + } + { + dependencies: ["183E47DFBC340187"] + id: "7BA12D4416DFE365" + rewards: [ + { + id: "69749952C22D7CED" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "6C1D7692FF47D79C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "6B74D9EF98EC52C1" + item: "extendedcrafting:basic_catalyst" + type: "item" + }] + x: 2.0d + y: -8.5d + } + { + dependencies: ["47D23E9CB93DE790"] + id: "36EC2AF9842DE616" + rewards: [ + { + id: "3FA064B88256B550" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "2DF313E819A60082" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "09949A29031EE658" + item: "extendedcrafting:advanced_catalyst" + type: "item" + }] + x: 3.0d + y: -8.5d + } + { + dependencies: ["74C4FD5EF14EDB3A"] + id: "63CAB90493C64AF3" + rewards: [ + { + id: "26DB8781D370B25F" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "716C33CB62EABA85" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "438378079B871F9D" + item: "extendedcrafting:ultimate_catalyst" + type: "item" + }] + x: 5.0d + y: -8.5d + } + { + dependencies: ["790B36479144770F"] + id: "4FDC471CEB587D21" + rewards: [ + { + id: "0FDE2B1009618F81" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "3E45744A902E8090" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "475B340444DF0D55" + item: "extendedcrafting:elite_catalyst" + type: "item" + }] + x: 4.0d + y: -8.5d + } + { + dependencies: ["058BAA533EFE63EB"] + id: "73B42C0D21A49E3E" + rewards: [ + { + id: "334AF57B71D79DF5" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "57A33D449D5FAC0B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "5CC6BB956250E287" + item: "extendedcrafting:redstone_catalyst" + type: "item" + }] + x: 6.0d + y: -8.5d + } + { + dependencies: ["33565398C0DA7135"] + id: "618B0D093FBA3493" + rewards: [ + { + id: "0E248C02CFAC25F1" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "2090B451E0D81273" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "0200140B45388556" + item: "extendedcrafting:ender_catalyst" + type: "item" + }] + x: 8.0d + y: -8.5d + } + { + dependencies: ["501A8D68AA146608"] + id: "771A061136A9EB5B" + rewards: [ + { + id: "4985E9F52411D6D1" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "5D525F718DC54FE4" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "2DC3117CFB460CE7" + item: "extendedcrafting:enhanced_ender_catalyst" + type: "item" + }] + x: 9.0d + y: -8.5d + } + { + dependencies: [ + "47D23E9CB93DE790" + "36EC2AF9842DE616" + ] + hide_dependency_lines: true + id: "6735CD1B161A8AB2" + rewards: [ + { + id: "6BEC7F8A6C23193B" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "67BDDC336B5BFDD5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "47B0E733F050B3F0" + item: "extendedcrafting:advanced_table" + type: "item" + }] + x: 5.5d + y: -7.0d + } + { + dependencies: [ + "790B36479144770F" + "4FDC471CEB587D21" + ] + hide_dependency_lines: true + id: "083AABDD7093C1E4" + rewards: [ + { + id: "2283BE09431CCDA5" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "7A839F24F1F206B6" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "608257B6E9FBF326" + item: "extendedcrafting:elite_table" + type: "item" + }] + x: 7.5d + y: -7.0d + } + { + dependencies: [ + "74C4FD5EF14EDB3A" + "63CAB90493C64AF3" + ] + hide_dependency_lines: true + id: "588BD1C2DEC4DEE6" + rewards: [ + { + id: "6AE9F30BAEE326D6" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "09B3F3C0F995A39D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "10E081FC887016AF" + item: "extendedcrafting:ultimate_table" + type: "item" + }] + x: 9.0d + y: -7.0d + } + { + dependencies: ["00BF1724D4F902C9"] + id: "6AC18A3442FCA08B" + rewards: [ + { + id: "7390177F31F0D404" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "1FA53D116C5D60B8" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "3ECD222894F2B49F" + item: "extendedcrafting:basic_auto_table" + type: "item" + }] + x: 4.0d + y: -5.0d + } + { + dependencies: ["6735CD1B161A8AB2"] + id: "6C791BA6842F1E47" + rewards: [ + { + id: "01E6446624ADBBF0" + type: "xp" + xp: 2000 + } + { + exclude_from_claim_all: true + id: "40EFEF46DFE7E3A6" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "2EA9CDF7A9BE6839" + item: "extendedcrafting:advanced_auto_table" + type: "item" + }] + x: 5.5d + y: -5.0d + } + { + dependencies: ["083AABDD7093C1E4"] + id: "4C230E52619BEC30" + rewards: [ + { + id: "768E83787A35082A" + type: "xp" + xp: 3000 + } + { + exclude_from_claim_all: true + id: "612105B7BBEC3A43" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "76E2264331A94361" + item: "extendedcrafting:elite_auto_table" + type: "item" + }] + x: 7.5d + y: -5.0d + } + { + dependencies: ["588BD1C2DEC4DEE6"] + id: "14D8F70EEA0CE1E7" + rewards: [ + { + id: "17E7AB03E5A71DA7" + type: "xp" + xp: 5000 + } + { + exclude_from_claim_all: true + id: "5595A14CB91DA98D" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "54A37B5DF233FB38" + item: "extendedcrafting:ultimate_auto_table" + type: "item" + }] + x: 9.0d + y: -5.0d + } + { + dependencies: ["66958504698EE334"] + id: "23BBDF8CF20438C6" + rewards: [ + { + id: "499B07522170A347" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "19522EB9042F7CFA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5026A8F813F0C05B" + item: "extendedcrafting:compressor" + type: "item" + }] + x: -0.5d + y: -5.5d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "2C78B234BDE90453" + rewards: [ + { + id: "5E75525B4CF2E25B" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "37E578F769C0570F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "3DAD49D3D12ACF57" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:bronze" + } + } + type: "item" + }] + x: -4.8999999999999995d + y: -9.8d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "05DB564891E2E33C" + rewards: [ + { + id: "7F21708B23681E5B" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "6FC3C696A12A8132" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "034AEFB6250386CD" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:invar" + } + } + type: "item" + }] + x: -4.8999999999999995d + y: -9.1d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "1CEC64D4467F1A5C" + rewards: [ + { + id: "4C09EFBC58BE0204" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "0C2FF8B766CDF3C4" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "21A818255B0BBDBA" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:electrum" + } + } + type: "item" + }] + x: -4.8999999999999995d + y: -8.4d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "1EEE587EF5E7CD1E" + rewards: [ + { + id: "6251965447D6D29F" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "58393AC517613785" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "06DF6E2B71FA3369" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:lapis_lazuli" + } + } + type: "item" + }] + x: -4.8999999999999995d + y: -7.699999999999999d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "60840821A91FDAA1" + rewards: [ + { + id: "381A975FA9C63AC7" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "45781F03EE286687" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "22B8BD43BE3F7562" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:coal" + } + } + type: "item" + }] + x: -4.2d + y: -7.7d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "5F296C7E554A68C7" + rewards: [ + { + id: "1DAB2A445C6372FA" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "478B01FF50423EF4" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "269F86DB88EFC2BA" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:redstone" + } + } + type: "item" + }] + x: -3.5d + y: -7.7d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "5DF6072B55A2B707" + rewards: [ + { + id: "5224091698B20682" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "3A9515CAD41A6B96" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "602864CCDCFA298D" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:platinum" + } + } + type: "item" + }] + x: -4.2d + y: -9.8d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "48B957900CC486CC" + rewards: [ + { + id: "478343E8ECE424A4" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "1D065CC7424E0593" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "23EE1A2E95EDE011" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:diamond" + } + } + type: "item" + }] + x: -4.2d + y: -9.1d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "4CF45F0ADC0C6803" + rewards: [ + { + id: "57B6EC48A1AC0F4B" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "4D3A13F3ED0362C4" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "3A62381D3CBD2C82" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:nickel" + } + } + type: "item" + }] + x: -4.2d + y: -8.4d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "634C61375BD3032F" + rewards: [ + { + id: "6905D3637A36A704" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "3D896A8EDE31AD75" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "16B94949C1428A09" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:glowstone" + } + } + type: "item" + }] + x: -3.5d + y: -9.799999999999999d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "338BCDC639CFC66A" + rewards: [ + { + id: "7D9233582B6AFB4C" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "3274E921FD3EB6EF" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "123E118C8D7CB99D" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:steel" + } + } + type: "item" + }] + x: -3.5d + y: -9.1d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "3649703EF74144E6" + rewards: [ + { + id: "4DDDE6BF83746D8F" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "069184A4F1F39E46" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "1A8A0A9C481C7B72" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:emerald" + } + } + type: "item" + }] + x: -3.5d + y: -8.4d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "58018BA9973870A1" + rewards: [ + { + id: "5AC3BB8EE2762657" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "4BF307328A5FA190" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "4A79A19601EC4E51" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:aluminum" + } + } + type: "item" + }] + x: -2.8d + y: -10.5d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "6DD6687069F5A1D7" + rewards: [ + { + id: "0D30589310AE4E75" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "43FB604CAE0525BD" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "01C38BA5C365906A" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:silver" + } + } + type: "item" + }] + x: -2.8d + y: -9.8d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "526C345CDAE5B62E" + rewards: [ + { + id: "2711018107BDFFDF" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "77BF38A2DC900CF5" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "1255B65A5E42B3BE" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:tin" + } + } + type: "item" + }] + x: -2.8d + y: -8.4d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "6BD5C13BDF7ABE2E" + rewards: [ + { + id: "585B3CB340963C24" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "2209F3CA63C8FA17" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "03DCFE928B70B47A" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:copper" + } + } + type: "item" + }] + x: -2.8d + y: -7.699999999999999d + } + { + dependencies: ["23BBDF8CF20438C6"] + hide_dependency_lines: true + id: "01B700C0220211D5" + rewards: [ + { + id: "6E6ADD43BC3CB7E5" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "5FD55D92F3E28C47" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "05E69A54D3B8F1FE" + item: { + Count: 1 + id: "extendedcrafting:singularity" + tag: { + Id: "extendedcrafting:lead" + } + } + type: "item" + }] + x: -2.8d + y: -9.1d + } + { + dependencies: [ + "58018BA9973870A1" + "2C78B234BDE90453" + "60840821A91FDAA1" + "6BD5C13BDF7ABE2E" + "48B957900CC486CC" + "1CEC64D4467F1A5C" + "3649703EF74144E6" + "634C61375BD3032F" + "3AC9CDB30455CFC7" + "05DB564891E2E33C" + "1EEE587EF5E7CD1E" + "01B700C0220211D5" + "4CF45F0ADC0C6803" + "5DF6072B55A2B707" + "5F296C7E554A68C7" + "5F296C7E554A68C7" + "6DD6687069F5A1D7" + "338BCDC639CFC66A" + "526C345CDAE5B62E" + ] + hide_dependency_lines: true + id: "3D9A982B63582765" + rewards: [ + { + id: "7E0F5B7C474FFCFB" + type: "xp" + xp: 100000 + } + { + exclude_from_claim_all: true + id: "42241C08322FA505" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + subtitle: "The Ultimate Singularity" + tasks: [{ + id: "187735BA60615F3A" + item: "extendedcrafting:ultimate_singularity" + type: "item" + }] + title: "&5&l&oOne to rule them all" + x: -3.8499999999999943d + y: -12.089285714285708d + } + { + dependencies: ["083AABDD7093C1E4"] + hide_dependency_lines: true + id: "0A6FFA0295BE1616" + rewards: [ + { + id: "7803C1895D37AC1D" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "63601E2D323B5D81" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "105F39E89EBB6821" + item: "extendedcrafting:crystaltine_ingot" + type: "item" + }] + x: 14.5d + y: -12.5d + } + { + dependencies: ["7C3C6EE0AF2DF234"] + id: "096B6FA766A45B4B" + rewards: [ + { + id: "27EC0D1FDB054C25" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "2591491A3EE4166A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "618F0A545977BD6F" + item: "extendedcrafting:crystaltine_catalyst" + type: "item" + }] + x: 10.0d + y: -8.5d + } + { + dependencies: ["3CB10BBE42C7A96C"] + id: "0556703DAFD956F0" + rewards: [ + { + id: "7C11DF0C689E2722" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "700E0638D6C801A3" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "0AF69654B5379B18" + item: "extendedcrafting:the_ultimate_catalyst" + type: "item" + }] + x: 11.0d + y: -8.5d + } + { + dependencies: ["672C231C32B4B6F0"] + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "extendedcrafting:guide" + } + } + id: "5530C0D8BF092FCA" + min_width: 300 + rewards: [ + { + id: "0AF715B461260280" + type: "xp" + xp: 10 + } + { + count: 4 + id: "5B86CE14C59C8FDD" + item: "minecraft:black_dye" + type: "item" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&o&nMechanical Mixer&r quest*" + tasks: [{ + id: "5A2B1BC3223E3031" + type: "checkmark" + }] + title: "Welcome to &5Extended Crafting" + x: 4.0d + y: -12.5d + } + { + dependencies: [ + "6C8754CBAA4B7D90" + "5974F712DA017C94" + ] + hide_dependency_lines: true + id: "66958504698EE334" + rewards: [ + { + id: "7687EF507152BD97" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "08BBE4AE41FB7F95" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "771DD1F4D2F1DABD" + item: "extendedcrafting:frame" + type: "item" + }] + x: -0.5d + y: -7.0d + } + { + dependencies: ["22698729A224CCBC"] + description: ["Same as the &aEnder Crafter&r, the &6Flux Crafter&r requires power provided by &9Flux Alternators&r in a 7x7x7 area around it."] + id: "6E79797DBD8A54EA" + rewards: [ + { + id: "7A55DB6FA65AF146" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6E17AC97AC9ECCC2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "0AD85F5B03D91D42" + item: "extendedcrafting:flux_crafter" + type: "item" + } + { + count: 4L + id: "7EEE25C59319BB4E" + item: "extendedcrafting:flux_alternator" + type: "item" + } + ] + title: "&6The Flux Crafter" + x: 9.0d + y: -11.5d + } + { + dependencies: [ + "5974F712DA017C94" + "7E21D8137624442D" + "147EE4FB2C5F1A34" + ] + hide_dependency_lines: true + id: "0C824D2FDD62401F" + rewards: [ + { + id: "0447B7832F86314E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1432ABE5E2D63BDD" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "2F11B0E265255BC0" + item: "extendedcrafting:enhanced_redstone_component" + type: "item" + }] + x: 7.0d + y: -9.5d + } + { + dependencies: ["0C824D2FDD62401F"] + id: "1CBD77D9822D9F8B" + rewards: [ + { + id: "5B4A853A1176C107" + type: "xp" + xp: 250 + } + { + exclude_from_claim_all: true + id: "19D36B19D9610C2A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "24731D4D0B0CD09B" + item: "extendedcrafting:enhanced_redstone_catalyst" + type: "item" + }] + x: 7.0d + y: -8.5d + } + { + dependencies: ["6E79797DBD8A54EA"] + id: "68463B5E8E6698F6" + rewards: [ + { + id: "2D5738EBED964E38" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "62F9D5CAE3A80082" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "69D8441E6D3018B9" + item: "extendedcrafting:flux_star" + type: "item" + }] + x: 11.0d + y: -11.5d + } + { + dependencies: ["68463B5E8E6698F6"] + hide_dependency_lines: true + id: "147EE4FB2C5F1A34" + rewards: [ + { + id: "18A66DCF32F78A26" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5B51DA768B123900" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "6BD21B689412A9DD" + item: "extendedcrafting:enhanced_redstone_ingot" + type: "item" + }] + x: 13.5d + y: -11.5d + } + { + dependencies: [ + "11E16D072634AAF5" + "6E79797DBD8A54EA" + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "5C6453AF1DC98785" + rewards: [ + { + id: "21C0DC4ED315B195" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "33A9128C19AD7BEB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "15C6599010C94009" + item: "extendedcrafting:auto_ender_crafter" + type: "item" + } + { + id: "3445E0658213FEB4" + item: "extendedcrafting:auto_flux_crafter" + type: "item" + } + ] + title: "&bAuto Ender \\& Flux Crafters" + x: 12.5d + y: -12.5d + } + { + dependencies: ["6C8754CBAA4B7D90"] + id: "095FFE54A4BE60A3" + rewards: [ + { + id: "1697322C06309A94" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "2ACD591086127834" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5ABE27ACF6E0EBB7" + item: "extendedcrafting:pedestal" + type: "item" + }] + x: -1.5d + y: -12.5d + } + ] + title: "&3&oExtended Crafting" +} diff --git a/minecraft/config/ftbquests/quests/chapters/extreme_reactors.snbt b/minecraft/config/ftbquests/quests/chapters/extreme_reactors.snbt new file mode 100644 index 0000000..8cd8414 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/extreme_reactors.snbt @@ -0,0 +1,1659 @@ +{ + autofocus_id: "4415C9F8DA2D7E68" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "extreme_reactors" + group: "62AD16E73710A992" + icon: "bigreactors:reinforced_reactorchargingportfe" + id: "1EC3E81AC4B01484" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -5.821428571428569d + y: -10.089285714285719d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -9.0d + y: -1.0d + } + { + height: 1.0d + image: "kubejs:item/extreme_reactors" + order: 1 + rotation: 0.0d + width: 14.5d + x: 2.267857142857139d + y: -9.49107142857143d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1003584229390682d + x: 8.5d + y: -1.0d + } + { + height: 1.0d + image: "kubejs:item/radiation" + rotation: 0.0d + width: 1.0d + x: 9.0d + y: -9.5d + } + { + height: 1.0d + image: "kubejs:item/power" + rotation: 0.0d + width: 1.0d + x: -4.5d + y: -9.5d + } + { + height: 1.0d + image: "kubejs:item/electricity_1" + rotation: 0.0d + width: 1.0d + x: -1.732142857142854d + y: -8.955357142857146d + } + { + height: 1.0d + image: "kubejs:item/electricity_3" + rotation: 0.0d + width: 1.0d + x: 5.446428571428569d + y: -8.919642857142861d + } + { + height: 1.0d + image: "kubejs:item/electricity_4" + rotation: 40.0d + width: 1.0d + x: -4.053571428571431d + y: -9.133928571428577d + } + { + height: 1.0d + image: "kubejs:item/lightning_new" + rotation: 180.0d + width: 1.0d + x: 2.0d + y: -9.5d + } + { + height: 1.0d + image: "kubejs:item/upgrade_orb_lightning" + rotation: 90.0d + width: 1.0d + x: -2.5d + y: -10.0d + } + { + height: 1.0d + image: "cyclic:item/lightning_scepter_arc" + rotation: -45.0d + width: 1.0d + x: 8.5d + y: -10.0d + } + ] + order_index: 1 + quest_links: [ ] + quests: [ + { + dependencies: ["00000000000000AF"] + description: [ + "&2Extreme Reactors&r is the original port of the &eBig Reactors&r mod." + "" + "Giants Reactors to harness the power of the atom or mighty &aTurbines&r to turn steam into energy? Why not both?" + "" + "Build huge &o&bmultiblock machines&r to produce produce energy in a very efficient way. &2Extreme Reactor&r support natively the &cForge Energy Power&r system with the &cForge Energy Power Taps&r so you would be able to power the vast majority of modded machines. The mod is designed in such a way that, if needed, more power system &o&bcan be supported&r." + ] + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "bigreactors:erguide" + } + } + id: "7C4E4793DA887DE4" + min_width: 300 + rewards: [ + { + id: "5FBEBC5A2882ADAC" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0332CCA91FD7017F" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&o&nWelcome to PneumaticCraft&r quest*" + tasks: [{ + id: "7ECE44526077F3C9" + item: "alltheores:uranium_ingot" + type: "item" + }] + title: "Welcome to &2Extreme Reactors" + x: -6.5d + y: -9.5d + } + { + dependencies: ["7C4E4793DA887DE4"] + description: ["To start building our first &2Reactor&r, we'll need to smelt some &0coal&r/&8charcoal&r to create &3Graphite Bars&r."] + id: "4FA6BEA4E646B742" + rewards: [ + { + id: "65F4EF00C7FE4450" + type: "xp" + xp: 10 + } + { + id: "3B95649C0B7D7DFD" + item: "bigreactors:wrench" + type: "item" + } + { + exclude_from_claim_all: true + id: "29217E9D071C8666" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "4B83A0D1C2C3C226" + item: "bigreactors:graphite_ingot" + type: "item" + }] + title: "Graphite Bars" + x: -6.5d + y: -8.0d + } + { + dependencies: ["75AD0CEBC1335915"] + description: [ + "The smallest &aPassive Reactor&r possible, is the &o&b3x3x3&r. " + "" + "To build this, you start by building a &o&b3x3x3&r frame made out of &3Casings&r. In the middle of the bottom face, you can just use another reactor &3Casing&r. You'll want each outer wall to have a reactor component, like an &cActive Power Tap&r or &9Solid Aocess Port&r." + "" + "{@pagebreak}" + "Every reactor you build will require exactly &o&b1&r &6Reactor Controller&r, which is usually put in the middle of the &nfront wall&r. Next, we'll place &o&b1&r &eFuel Rod&r in the &ncenter&r of the multiblock, and &o&b1&r &9Control Rod&r above it on the &ntop&r face." + "" + "You will need a way to &9input&r and &coutput&r waste, which is done by using &eReactor Solid Access Forts&r. For this build, place one &o&bon the left side&r and &o&bone on the right&r." + "" + "To extract power, we'll place the &3Active Power Tap&r on the &nmiddle&r of the &o&bback wall&r. Once placed, the reactor should complete! You can now &eRight-click&r the &6Controller&r to open up the interface and turn it on!" + "" + "The &o&bbiggest reactor&r you can make using &aBasic Reactor Parts&r is &o&b5x5x5&r. To build a larger reactor, you will need &5Reinforced Reactor Parts&r." + "" + "{@pagebreak}" + "This is what a &o&b3x3x3&r reactor will look like!" + "" + "{image:kubejs:textures/item/3x3sample.png width:150 height:150 align:1}" + "" + "" + "{@pagebreak}" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "bigreactors:block/reactor/reinforced/controller_off" + } + } + icon_scale: 1.5d + id: "4AD8363D7359A072" + min_width: 320 + rewards: [ + { + id: "2B140C8CB7D9B792" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "709FCAE6092CE643" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + size: 1.0d + tasks: [ + { + count: 21L + id: "70D705C81989D87C" + item: "bigreactors:basic_reactorcasing" + type: "item" + } + { + id: "1D03F9FD56B01515" + item: "bigreactors:basic_reactorcontroller" + type: "item" + } + { + count: 2L + id: "2ADB404DAFBD7AC5" + item: "bigreactors:basic_reactorsolidaccessport" + type: "item" + } + { + id: "6E7930A4B00563C9" + item: "bigreactors:basic_reactorpowertapfe_active" + type: "item" + } + { + id: "1C89B070388F3ADF" + item: "bigreactors:basic_reactorcontrolrod" + type: "item" + } + { + id: "368FDD7ECB8C06CD" + item: "bigreactors:basic_reactorfuelrod" + type: "item" + } + ] + title: "&2The First Reactor" + x: -6.5d + y: -3.5d + } + { + dependencies: ["4FA6BEA4E646B742"] + description: [ + "To build a &2Reactor&r, you'll need to start by making &9Reactor Casings&r." + "" + "These make up the frame and walls of your &2Reactor&r, although the walls can be replaced by &bReactor Glass&r." + "" + "For future reference, the &6Basic&r can only be used with other basic parts. The &6Basic&r parts can also only be used to build smaller &2Reactors&r, as it has a certain size limit." + ] + id: "4B9E9497E44D0096" + min_width: 320 + rewards: [ + { + id: "47ED1C570E946FAB" + type: "xp" + xp: 25 + } + { + id: "27A4E5A2CB817392" + item: "bigreactors:basic_reactorglass" + type: "item" + } + { + exclude_from_claim_all: true + id: "413440B3DCBE0C3F" + table_id: 1235506154212082407L + type: "random" + } + ] + size: 1.0d + tasks: [ + { + count: 4L + id: "76E0779D896F146B" + item: "bigreactors:basic_reactorcasing" + type: "item" + } + { + id: "4EA3FF4654F9D9FF" + item: "bigreactors:basic_reactorglass" + type: "item" + } + ] + title: "Reactor Casings" + x: -6.5d + y: -6.5d + } + { + dependencies: ["4B9E9497E44D0096"] + description: [ + "To extract power or items from your reactor, or even input fuel, you'll need these required blocks." + "" + "The &aPower Tap&r provides a way for you to tap into the power that a passive reactor makes. You can attach &o&bpipes&r and &o&bcables&r to extract the power from it." + "" + "The &9Access Ports&r are required for &o&bevery reactor&r, and allows you to both &o&binput fuel&r from the reactor, or &o&bextract waste&r. Recommended is to have &o&b2&r per reactor, one for &neach job&r." + ] + id: "2A20000FAEC2E16A" + min_width: 300 + rewards: [ + { + id: "2D27EEB78C2B0AD6" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7D2FF68FF5E40FA6" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "565CF24C6904CC2A" + item: "bigreactors:basic_reactorpowertapfe_active" + type: "item" + } + { + id: "0649EBB6E6516B4C" + item: "bigreactors:basic_reactorsolidaccessport" + type: "item" + } + ] + title: "Reactor Interacting Components" + x: -5.5d + y: -6.0d + } + { + dependencies: ["4B9E9497E44D0096"] + description: [ + "The &dReactor Controller&r is &o&bthe heart&r of the reactor. When a reactor is formed, you can &eRight-click&r the terminal to open up the &o&breactor interface&r." + "" + "Depending on if it is a &aPassively Cooled&r or an &9Actively Cooled&r reactor, the interface will change. &aPassively Cooled&r reactors are used to produce power directly by burning fuel. &9Actively Cooled&r reactors use the heat created to vaporize the coolant, which is then sent into a &6Turbine&r to create power." + "" + "In the interface of a &o&bpassive reactor&r, you can &nsee&r and &ntoggle&r the status and &o&bwaste ejection&r. You'll also see the temps, how much &cFE&r/t the reactor is producing, and how much fuel the reactor is burning per tick." + ] + icon_scale: 1.5d + id: "75AD0CEBC1335915" + min_width: 300 + rewards: [ + { + id: "1CA4451AD7B71B1A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "704B2F897BCED284" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "62A0FE4CFAB9621B" + item: "bigreactors:basic_reactorcontroller" + type: "item" + }] + x: -6.5d + y: -5.0d + } + { + dependencies: ["4B9E9497E44D0096"] + description: [ + "The &9Control Rods&r are placed &o&bon the top&r face of the &2Reactor&r. You can also have &o&bmore than one&r per &2Reactor&r, but you must have &nat least&r &o&b1&r." + "" + "If you &eRight-click&r on a &9Control Rod&r, you can control &o&bhow much fuel&r is burned in the &2Reactor&r by &ninserting&r or &nretracting&r the fuel rods. The further that you extend the rods, the less fuel that will be burned." + ] + id: "7B4AAC741F0A6073" + min_width: 290 + rewards: [ + { + id: "10350943DB715DE4" + type: "xp" + xp: 50 + } + { + count: 2 + id: "5F8E7BC0F79F40DA" + item: "alltheores:raw_uranium" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "5CD72CE2877CF775" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "1FC2120A22A7BAEC" + item: "bigreactors:basic_reactorcontrolrod" + type: "item" + } + { + id: "14C67262D9F8A9A8" + item: "bigreactors:basic_reactorfuelrod" + type: "item" + } + ] + title: "Reactor Control Rods" + x: -7.5d + y: -6.0d + } + { + dependencies: ["4AD8363D7359A072"] + description: [ + "To &o&binsert fuel&r into the reactor, you'll need to pick one of the sides that has a &9Reactor Solid Access Port&r and pump in &aUranium&r from an inventory." + "" + "The &o&beasiest way&r to do this is to use something like a &3Storage Drawer&r or even just a &eChest&r with an &7Item Pipe&r connected &nat the top&r." + "" + "{image:kubejs:textures/item/importexample.png width:150 height:150 align:1}" + ] + id: "14E5349DD740D026" + min_width: 400 + progression_mode: "linear" + rewards: [ + { + id: "62DEB71BE81EBFF7" + type: "xp" + xp: 10 + } + { + count: 2 + id: "51C18C3F9496D062" + item: "alltheores:raw_uranium" + type: "item" + } + { + exclude_from_claim_all: true + id: "0AD35B5A47F3ECE2" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "159251A23C881D83" + item: "alltheores:uranium_ingot" + type: "item" + }] + title: "Passive Reactor" + x: -8.5d + y: -3.5d + } + { + dependencies: ["4AD8363D7359A072"] + description: [ + "When the reactor &o&6burns&r up fuel, it oreates &o&dwaste&r or a &cReactant&r that you'll also want to extract. That is what the other &3Solid Access Port&r is for!" + "" + "Make sure to set it to &o&coutput&r, then &o&9pipe it&r into some type of storage." + ] + id: "4745152F6FF242B3" + min_width: 250 + rewards: [ + { + id: "151D6A8ECC969D88" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1349A17D265B2543" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "77F79D09A76CFF15" + item: "bigreactors:cyanite_ingot" + type: "item" + }] + title: "The Waste" + x: -2.0d + y: -3.5d + } + { + dependencies: ["4745152F6FF242B3"] + description: [ + "Now that we have some &dCyanite&r from our &o&bsmall reactor&r, we'll want a way to &o&breprocess&r that &o&3waste&r into &nsomething useful&r. To do this, we'll need to build the &6Reprocessor&r." + "" + "This takes a lot of &dCyanite&r, so start &o&bstocking up&r! You might want to upgrade to a &o&bbigger reactor&r as well." + ] + id: "354086C858E10154" + min_width: 250 + rewards: [ + { + id: "0FB0FA47DA64F6E8" + type: "xp" + xp: 10 + } + { + id: "649B6DC14F6177E1" + item: "bigreactors:reprocessorglass" + type: "item" + } + ] + tasks: [{ + id: "0577F2FA32B65E00" + item: "bigreactors:reprocessorcasing" + type: "item" + }] + title: "Reprocessing the Waste" + x: 2.0d + y: -3.5d + } + { + description: [ + "With &dCyanite&r, we can make the &6Turbine Controller&r." + "" + "&2Turbines&r are &o&bmulti-block structures&r, just like &aReactors&r! They input vapors like &7Steam&r made by &eActively Cooled Reactors&r to create a &o&blarge amount of power&r! " + "" + "&aBasic Turbine Parts&r can only be used to build a &nmax size&r &2Turbine&r of &o&b5x5x10&r. To build a &nbigger&r &2Turbine&r, you must use &6Reinforced Turbine Parts&r." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "bigreactors:block/turbine/basic/controller_off" + } + } + icon_scale: 1.5d + id: "4415C9F8DA2D7E68" + min_width: 300 + rewards: [ + { + id: "070753D48D53413E" + type: "xp" + xp: 100 + } + { + id: "2B0244F7DF50F9E9" + item: "bigreactors:basic_turbinecasing" + type: "item" + } + { + exclude_from_claim_all: true + id: "4749ECA888DFA25D" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "square" + tasks: [ + { + count: 4L + id: "3FD4E648D3560D1B" + item: "bigreactors:basic_turbinecasing" + type: "item" + } + { + id: "738B3094737D9A6A" + item: "bigreactors:basic_turbinecontroller" + type: "item" + } + ] + title: "&2Turbines" + x: 0.0d + y: -6.5d + } + { + dependencies: ["4AD8363D7359A072"] + description: [ + "Rieactor &2Moderators&r are materials placed inside of a reactor &o&bto change how it performs&r, based on the &nproperties&r of the moderator. These are placed inside of the reactor &o&bduring construction&r." + "" + "The &o&9rarer&r the material is, the &nbetter&r of a &2Moderator&r it is. Leaving the reactor &o&bempty&r means you are using the &7air&r inside as a moderator, which isn't that great." + "" + "If you are looking for something &o&acheap&r in the early game, try using &3Graphite Blocks&r!" + ] + id: "73362EDC984B8A0F" + min_width: 300 + progression_mode: "linear" + rewards: [ + { + id: "63B8E44A7BCECE55" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1ED6C191274AA814" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "0D4AE8FBAA953732" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "minecraft:iron_block" + } + { + Count: 1b + id: "minecraft:gold_block" + } + { + Count: 1b + id: "minecraft:emerald_block" + } + { + Count: 1b + id: "minecraft:diamond_block" + } + { + Count: 1b + id: "minecraft:netherite_block" + } + { + Count: 1b + id: "minecraft:copper_block" + } + { + Count: 1b + id: "alltheores:platinum_block" + } + { + Count: 1b + id: "alltheores:osmium_block" + } + { + Count: 1b + id: "alltheores:nickel_block" + } + { + Count: 1b + id: "alltheores:lead_block" + } + { + Count: 1b + id: "alltheores:aluminum_block" + } + { + Count: 1b + id: "alltheores:silver_block" + } + { + Count: 1b + id: "alltheores:tin_block" + } + { + Count: 1b + id: "alltheores:zinc_block" + } + { + Count: 1b + id: "alltheores:steel_block" + } + { + Count: 1b + id: "alltheores:invar_block" + } + { + Count: 1b + id: "alltheores:electrum_block" + } + { + Count: 1b + id: "alltheores:bronze_block" + } + { + Count: 1b + id: "alltheores:enderium_block" + } + { + Count: 1b + id: "alltheores:lumium_block" + } + { + Count: 1b + id: "alltheores:signalum_block" + } + { + Count: 1b + id: "alltheores:brass_block" + } + { + Count: 1b + id: "botania:manasteel_block" + } + { + Count: 1b + id: "botania:terrasteel_block" + } + { + Count: 1b + id: "botania:elementium_block" + } + { + Count: 1b + id: "bigreactors:graphite_block" + } + ] + } + } + title: "Moderators" + type: "item" + }] + title: "Reactor Moderators" + x: -8.0d + y: -2.5d + } + { + dependencies: [ + "4415C9F8DA2D7E68" + "4745152F6FF242B3" + ] + description: [ + "Reactors can also be used to &o&bheat up&r coolants like &o&bwater&r to create &o&bvapor&r, like &7Steam&r." + "" + "To do this, you'll need to build a &2Reinforced Reactor&r. I'd also suggest on it being bigger than a &o&b3x3x3&r." + "" + "To input a &o&bcoolant&r, you'll need a &9Forge Fluid Port&r. This will port in &nany fluids&r into the reactor. This will also be used to &o&bexport the vapor&r created in the reactor." + "" + "If you want, you can create a &eMekanism Fluid Port&r to convert the &o&bfluid steam&r into the mekanism &o&bgas steam&r instead." + ] + id: "476755275B948A5F" + min_width: 300 + rewards: [ + { + id: "51BD764E7BB22C33" + type: "xp" + xp: 25 + } + { + id: "1B34D70A1A046D50" + item: "bigreactors:reinforced_reactorcasing" + type: "item" + } + { + exclude_from_claim_all: true + id: "5E14DF04C3BD4F79" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "122E3BB7DB314F68" + item: "bigreactors:reinforced_reactorcasing" + type: "item" + } + { + id: "3A52CAA0728D629A" + item: "bigreactors:reinforced_reactorfluidport_forge_active" + type: "item" + } + ] + title: "The Actively Cooled Reactor" + x: -2.0d + y: -6.5d + } + { + dependencies: ["4AD8363D7359A072"] + description: [ + "&2Rieactors&r are &o&bmulti-block structures&r, so you can create your own &o&bcustom size&r!" + "" + "If you're using &aBasic Reactor Parts&r, the largest size reactor you can build is &o&b5x5x5&r." + "" + "The &2Biggest Reactor&r that you can make using &6Reinforced Reactor Parts&r is &o&b32x32x48&r. There are a lot of &o&bvariables&r that contribute to the &o&boverall output of a reactor&r, so make sure to experiment!" + "" + "The &o&btaller the reactor&r, the &nmore fuel&r it can hold and burn because there are more &eFuel Rods&r, which means more &o&boverall power&r and a &o&chigher burn&r rate." + "" + "The &o&bwider the reactor&r, the &nmore efficient&r it is, as long as you don't add more &eFuel Rods&r to the design. This means &o&aless consumption&r overall." + ] + id: "3F9D553C9FA64F2A" + min_width: 300 + progression_mode: "linear" + rewards: [ + { + id: "5D819709B0E04EDE" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7ECBE8AE0C24D93E" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "52294DB4AE793F9C" + item: "bigreactors:basic_reactorcasing" + type: "item" + }] + title: "Bigger Reactor" + x: -8.0d + y: -4.5d + } + { + dependencies: ["4415C9F8DA2D7E68"] + description: [ + "The &9Fluid Port&r is used &o&bto insert&r vapors like &3Steam&r, or &o&bextract&r exhaust, like &1Water&r. Because of this, you'll need &ntwo&r for your &2Turbine&r." + "" + "The &cPower Tap&r extracts power, and is &nrequired&r to complete the multiblock." + ] + id: "186731580B14F9D2" + min_width: 250 + rewards: [ + { + id: "3030F7244EED8EBC" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "22160C65869C2EC2" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + count: 2L + id: "5E9CEEEE330B1DE0" + item: "bigreactors:basic_turbinefluidport_forge_active" + type: "item" + } + { + id: "18EB6570007F534A" + item: "bigreactors:basic_turbinepowertapfe_active" + type: "item" + } + ] + title: "Turbine Ports" + x: 0.0d + y: -8.0d + } + { + dependencies: ["4415C9F8DA2D7E68"] + description: [ + "To get a &2Turbine&r spinning, we'll need these &o&brequired components&r:" + "" + "- &eRotor Bearings&r are placed &o&bat one end&r of the shaft of the turbine. This can be on &o&bany face&r, but dictates where the shaft extrude from. This should usually be placed in the &o&bcenter of the bottom&r face." + "" + "- &9Rotor Shafts&r extend from one &eRotor Bearing&r to the &o&bopposite side&r of the turbine, all the way to a single &3Turbine Housing&r block, creating the shaft for the &2Turbine&r." + "" + "- &6Rotor Blades&r make the rotor spin. These are placed onto the &9Rotor Shafts&r and can be &o&bmultiple blocks&r in length. Each blade can handle a &o&bcertain amount of vapor&r, and determines how many are needed &o&bbased on your reactor's production rates&r." + "" + "{@pagebreak}" + "Here is an example of a &dVertical Shaft&r setup for a &2Turbine&r, with the &6Turbine Coil&r of &9Lead&r on the top." + "" + "{image:kubejs:textures/item/maxbasicturbine.png width:100 height:150 align:1}" + ] + id: "67AFCBCE7AAC3089" + min_width: 300 + rewards: [ + { + id: "6A4FD8AABCFD67B0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "33535C20EEF1E20C" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "69497C419271A8F2" + item: "bigreactors:basic_turbinerotorbearing" + type: "item" + } + { + count: 4L + id: "05559BFC34BEBF4A" + item: "bigreactors:basic_turbinerotorshaft" + type: "item" + } + { + count: 8L + id: "42F16075D25E4A94" + item: "bigreactors:basic_turbinerotorblade" + type: "item" + } + ] + title: "Turbine Shaft" + x: 1.0d + y: -5.5d + } + { + dependencies: ["4415C9F8DA2D7E68"] + description: [ + "&2Turbine Coils&r are blocks placed around the end of the &9Turbine Shaft&r, closest to the &eHousing&r block." + "" + "These are &nrequired&r to generate power from the turbine. You can have up to &o&b3&r coils per turbine, and &o&bcan mix and match different coil&r blocks." + ] + id: "3FC7FDAF84871963" + min_width: 250 + progression_mode: "linear" + rewards: [ + { + id: "1BB24164437F252C" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "630405A27EE8015A" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "5D6A9AD111A612EE" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "minecraft:iron_block" + } + { + Count: 1b + id: "minecraft:gold_block" + } + { + Count: 1b + id: "minecraft:netherite_block" + } + { + Count: 1b + id: "minecraft:copper_block" + } + { + Count: 1b + id: "alltheores:platinum_block" + } + { + Count: 1b + id: "alltheores:osmium_block" + } + { + Count: 1b + id: "alltheores:nickel_block" + } + { + Count: 1b + id: "alltheores:lead_block" + } + { + Count: 1b + id: "alltheores:aluminum_block" + } + { + Count: 1b + id: "alltheores:silver_block" + } + { + Count: 1b + id: "alltheores:tin_block" + } + { + Count: 1b + id: "alltheores:zinc_block" + } + { + Count: 1b + id: "alltheores:steel_block" + } + { + Count: 1b + id: "alltheores:invar_block" + } + { + Count: 1b + id: "alltheores:electrum_block" + } + { + Count: 1b + id: "alltheores:bronze_block" + } + { + Count: 1b + id: "alltheores:enderium_block" + } + { + Count: 1b + id: "alltheores:lumium_block" + } + { + Count: 1b + id: "alltheores:signalum_block" + } + { + Count: 1b + id: "alltheores:brass_block" + } + { + Count: 1b + id: "botania:manasteel_block" + } + { + Count: 1b + id: "botania:terrasteel_block" + } + { + Count: 1b + id: "botania:elementium_block" + } + { + Count: 1b + id: "bigreactors:ludicrite_block" + } + { + Count: 1b + id: "bigreactors:ridiculite_block" + } + { + Count: 1b + id: "bigreactors:inanite_block" + } + { + Count: 1b + id: "bigreactors:insanite_block" + } + ] + } + } + title: "Coils" + type: "item" + }] + title: "Turbine Coils" + x: 0.0d + y: -5.0d + } + { + dependencies: ["4415C9F8DA2D7E68"] + description: ["Just like the &2Reactor&r, the frame must be built out of &eCasings&r, but the walls can be &3Turbine Glass&r instead!"] + id: "2D592669F4D41793" + min_width: 250 + rewards: [ + { + id: "0AC09B3266B2EA12" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "152A77B207F74A44" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "2FC2A5929C2E0EA9" + item: "bigreactors:basic_turbineglass" + type: "item" + }] + title: "Turbine Construction Parts" + x: 1.0d + y: -7.5d + } + { + dependencies: ["4415C9F8DA2D7E68"] + description: [ + "&eRight-clicking&r on a &6Turbine Controller&r when it is fully built will show you the &dTurbine Interface&r." + "" + "Here, you can see &o&ball of the stats&r for the &2Turbine&r. Hovering over each will tell you more info &o&babout each one&r." + "" + "{@pagebreak}" + "On the &o&bbottom left&r, you'll have &o&b2&r arrows to control the &3Flow Rate&r. This controls &o&bhow much&r heated vapor is &o&bpumped&r into the &2Turbine&r. To know &o&bhow much you should set&r this to, check your reactor's &5Vapor Production Rate&r as a starting point." + "" + "{image:kubejs:textures/item/turbineui.png width:200 height:150 align:1}" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "cyclic:block/fan/fan_blades_on" + } + } + id: "775D176081DD75F5" + min_width: 400 + rewards: [ + { + id: "1EF778F5693D7E43" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "5C6AE6967AC80AA2" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "2905C4386A407A1E" + type: "checkmark" + }] + title: "Turbine Interface" + x: 2.0d + y: -6.5d + } + { + dependencies: ["354086C858E10154"] + description: [ + "The &6Reprocessor&r is a &o&b3x3x7&r multiblock structure that has &o&bspecific rules&r to complete the construction of the multiblock." + "" + "The heart of this multiblock is the &dController&r, and can be placed on &o&bany vertical face&r as long as it isn't on the frame." + ] + icon_scale: 1.5d + id: "2AF31F1769085641" + min_width: 250 + rewards: [ + { + id: "2C2ACB4FDB43D830" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "64ABF890C8C1EFB5" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "2DBC9E20BFE7F058" + item: "bigreactors:reprocessorcontroller" + type: "item" + }] + x: 6.0d + y: -3.5d + } + { + dependencies: ["2AF31F1769085641"] + description: [ + "To build &o&bthe frame&r for the &6Reprocessor&r, you'll need a lot of &8Casings&r. This also means a lot of &dCyanite&r." + "" + "Start by building a &7hollow&r &o&b3x3x7&r block tall structure. This is &o&bthe frame&r." + "" + "If done right, you'll have an empty spot in the middle of the bottom and top face. For the vertical faces, you can either use &eReprocessor Glass&r or one of the required reprocessor parts like the &cPower Port&r, &2Controller&r, etc." + "" + "{@pagebreak}" + "The frame of the &6Reprocessor&r multiblock should look like this." + "" + "{image:kubejs:textures/item/reprocessorframe.png width:100 height:175 align:1}" + "" + "{@pagebreak}" + "A fully built &6Reprocessor&r." + "" + "{image:kubejs:textures/item/reprocessorfull.png width:100 height:150 align:1}" + ] + id: "69642A3618E86DED" + min_width: 300 + rewards: [ + { + id: "6CC775F8FBE2F87F" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "451C41CD312B1C96" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + count: 52L + id: "5DF9AA03A22C4F77" + item: "bigreactors:reprocessorcasing" + type: "item" + }] + title: "The Frame" + x: 6.0d + y: -0.5d + } + { + dependencies: ["2AF31F1769085641"] + description: [ + "When building the &6Reprocessor&r, you will need &o&bat least&r one &aCollector&r and &3Waste Injector&r." + "" + "The &aReprocessor Collector&r must be placed &o&bin the center of the bottom face&r of the structure." + "" + "The &cWaste Injector&r must go &o&bin the center of the top face&r, which is where you'll &npipe in&r or &ninsert waste&r like &dCyanite Ingots&r." + ] + id: "2598273041353196" + min_width: 300 + rewards: [ + { + id: "47266F4FF5EE9BE6" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4FE1FA8940202A76" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "72B74F6051CD53A1" + item: "bigreactors:reprocessorcollector" + type: "item" + } + { + id: "221816504F2573A5" + item: "bigreactors:reprocessorwasteinjector" + type: "item" + } + ] + title: "Importing Waste" + x: 6.0d + y: -5.0d + } + { + dependencies: ["2AF31F1769085641"] + description: [ + "These three parts can be placed on &o&bany vertical face&r as long as they aren't on the frame!" + "" + "The &cPower Port&r is used to &o&bgive power&r to the multiblock machine to process waste." + "" + "The &9Fluid Injector Port&r is used &o&bto in ject&r the liquid needed, which will depend on the type of waste injected. For &dCyanite&r, that means &o&1water&r!" + "" + "The &cOutput Port&r is used &o&bto output&r the reprocessed material. You can &eRight-click&r it &o&bto grab&r the material out by hand, or &o&bpipe it out&r for automation." + ] + id: "3C3FE45CEF5E242B" + min_width: 300 + rewards: [ + { + id: "28744514E7A51886" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "036D1E8B5D4D1177" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "475BD29336FB98E8" + item: "bigreactors:reprocessorpowerport" + type: "item" + } + { + id: "530111623A8C7C58" + item: "bigreactors:reprocessorfluidinjector" + type: "item" + } + { + id: "41D67C2BF92A876A" + item: "bigreactors:reprocessoroutputport" + type: "item" + } + ] + x: 7.5d + y: -3.5d + } + { + dependencies: ["69642A3618E86DED"] + description: [ + "Once you've built a fully functional &6Reprocessor&r, you can pump in &ePower&r, &9Water&r and &dCyanite&r to create &1Blutonium&r." + "" + "This can be used as a fuel for your &2Reactor&r, and creates its own &o&3waste&r called &5Magentite&r." + ] + id: "7E07C5A6FA6B6B1F" + min_width: 270 + rewards: [ + { + id: "5A2E5241777EE9A8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3616150B5A9714E3" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "37BB2B7853E319A3" + item: "bigreactors:blutonium_ingot" + type: "item" + }] + x: 4.0d + y: -0.5d + } + { + dependencies: ["4AD8363D7359A072"] + description: [ + "Now that we are collecting some &o&3waste&r from our reactor, part of the progression &o&crequires&r you to &o&bFluidize&r some of the ingots you get." + "" + "We need to make a &2Fluidizer&r! The main component is the &6Fluidizer Controller&r. Once built, you can &eRight-click&r on this to open up the interface. Here, you can turn it &non&r or &noff&r, see what's inside, and the current power level." + ] + icon_scale: 1.5d + id: "25D4406CB86C8CBB" + min_width: 300 + rewards: [ + { + id: "7538CCED5EC0C509" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "690CBC2F6C1389B2" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "4A123A454CDD7120" + item: "bigreactors:fluidizercontroller" + type: "item" + }] + title: "The Fluidizer" + x: -6.5d + y: -0.5d + } + { + dependencies: ["25D4406CB86C8CBB"] + description: [ + "The &2Fluidizer&r is a &o&bcustomizable multiblock&r that has a &nminimum&r size of &o&b3x3x3&r." + "" + "Just like the other multiblocks, the frame will need to be made out of &7Casings&r, while the faces can be made out of &9Glass&r." + ] + id: "501C6B7580453410" + min_width: 250 + rewards: [ + { + id: "601B8E914D0C3F34" + type: "xp" + xp: 25 + } + { + id: "5C75D23B7EE80689" + item: "bigreactors:fluidizerglass" + type: "item" + } + { + exclude_from_claim_all: true + id: "6A35A97A353D3D5F" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + count: 4L + id: "1088144C68D87424" + item: "bigreactors:fluidizercasing" + type: "item" + } + { + id: "36D35DE85B71D5EC" + item: "bigreactors:fluidizerglass" + type: "item" + } + ] + title: "Fluidizer Construction Parts" + x: -5.0d + y: 0.5d + } + { + dependencies: ["25D4406CB86C8CBB"] + description: [ + "The &2Fluidizer&r can operate in one of &o&b3&r modes: &o&bSolid&r to &o&bFluid&r, combining &o&b2 Solids&r into a &o&bFluid&r, or combining &o&b2 Fluids&r into a new &o&bFluid&r. This all depends on the type of &aInjectors&r you use for the multiblock." + "" + "For example, if you want to convert &1Blutonium&r into a fluid, you can use &o&b1&r &aSolid Injector&r," + "If you want to combine &o&btwo solids together&r into something &nnew&r, you'll build the multiblock with &o&b2&r &aSolid Injectors&r. If you want to combine &o&btwo fluids&r, you'll use &o&b2&r &9Fluid Injectors&r." + "" + "This might seem confusing, but is &o&6important&r for progression. For example, you'll want to convert &cMagentite&r into a fluid in the &2Fluidizer&r first, then send it to a &eReprocessor&r with &5Ludicrite&r to create &7Ridiculite&r." + ] + id: "5914D015D8543875" + min_width: 400 + rewards: [ + { + id: "234EF5F828E7260D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "13C1B62ACEF4396B" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "730D5AE0E7A04CFB" + item: "bigreactors:fluidizersolidinjector" + type: "item" + } + { + id: "4A714BB3605492B9" + item: "bigreactors:fluidizerfluidinjector" + type: "item" + } + ] + title: "Fluidizer Injectors" + x: -5.0d + y: -1.5d + } + { + dependencies: ["25D4406CB86C8CBB"] + description: ["The &2Fluidizer&r needs &o&epower&r to operate, so a &6Power Port&r is required and to take the product the &2Fluidizer&r makes you'll be needed a &cOutput Port&r as well."] + id: "55DCA040C84DCEF3" + min_width: 250 + rewards: [ + { + id: "608980B0F3869D19" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0D817F66AFC8217F" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "52C86777BD3D8867" + item: "bigreactors:fluidizeroutputport" + type: "item" + } + { + id: "32703B3E70D87917" + item: "bigreactors:fluidizerpowerport" + type: "item" + } + ] + title: "Fluidizer Ports" + x: -4.5d + y: -0.5d + } + { + dependencies: ["7E07C5A6FA6B6B1F"] + description: [ + "Using the &6Reprocessor&r, we can combine &o&beverything&r we've made so far to make &o&bnew ingots&r." + "" + "You might need a &aFluidizer&r to complete this step!" + ] + id: "5A615BB74A5CD332" + min_width: 230 + rewards: [ + { + id: "322EA3A635D7718C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3245A675551F2270" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [ + { + id: "184BDD80596398A0" + item: "bigreactors:ludicrite_ingot" + type: "item" + } + { + id: "0C1C624F8D84DE63" + item: "bigreactors:ridiculite_ingot" + type: "item" + } + ] + x: 2.0d + y: -0.5d + } + { + dependencies: [ + "5914D015D8543875" + "55DCA040C84DCEF3" + "501C6B7580453410" + ] + description: [ + "By using the &3Fluidizer&r, we can combine &1Blutonium&r with &eYellorium&r to make &2Verderium&r." + "" + "When used &o&bas fuel&r in a reactor, &2Verderium&r produces &4Rossinite&r as a reactant. &nWe need this&r!" + "" + "To use &2Verderium&r as a fuel, you'll need to make &9Fuel Injection Ports&r for your reactor. Don't forget &o&bto empty&r out the fuel currently in your reactor, or make &o&ba new reactor&r for this purpose." + ] + id: "7C4D8AA107780795" + min_width: 350 + rewards: [ + { + id: "616B4AB941314290" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "39B42A8CF0A19F6C" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 1.0d + tasks: [{ + id: "52B5D97C5675BBA7" + item: "bigreactors:reinforced_reactorfluidaccessport" + type: "item" + }] + title: "Making Rossinite" + x: -2.0d + y: -0.5d + } + { + dependencies: [ + "7C4D8AA107780795" + "5A615BB74A5CD332" + ] + description: ["Combining &bRidiculite Ingots&r with &4Rossinite&r will create &cInanite Ingots&r."] + id: "6ADDFD55AD0DF7D4" + rewards: [ + { + id: "5C1FF3F0D5410766" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "6E24192129C7991A" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "544C4964F5B857B1" + item: "bigreactors:inanite_ingot" + type: "item" + }] + x: 0.0d + y: -0.5d + } + { + dependencies: [ + "0B1DF8A040826D87" + "6ADDFD55AD0DF7D4" + ] + description: ["One of the &o&bhardest materials&r to get in the mod!"] + icon_scale: 1.5d + id: "5AD80D3242DD3F60" + min_width: 220 + rewards: [ + { + id: "1E71505729ABB794" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "4B0DD3E02F57F9E2" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.0d + tasks: [{ + id: "53B5B370425018EC" + item: "bigreactors:insanite_block" + type: "item" + }] + x: 0.0d + y: -2.0d + } + { + dependencies: ["7C4D8AA107780795"] + description: [ + "Now that you have &4Rossinite&r, you can mix it with &bBenitoite&r to create &6Insanite Ingots&r." + "" + "&bBenitoite Ore&r can be found in the &cNether&r." + ] + id: "0B1DF8A040826D87" + rewards: [ + { + id: "1E53493A7D20123E" + type: "xp" + xp: 100 + } + { + id: "7FBBD1597E67630B" + item: "bigreactors:insanite_dust" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "345AEC54681A4EF4" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "22922E479FED9E43" + item: "bigreactors:insanite_ingot" + type: "item" + }] + x: -2.0d + y: -2.0d + } + ] + title: "&3&oExtreme Reactors" +} diff --git a/minecraft/config/ftbquests/quests/chapters/flux_networks.snbt b/minecraft/config/ftbquests/quests/chapters/flux_networks.snbt new file mode 100644 index 0000000..5405896 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/flux_networks.snbt @@ -0,0 +1,419 @@ +{ + autofocus_id: "486457F40D2A1D29" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "flux_networks" + group: "62AD16E73710A992" + icon: "fluxnetworks:flux_controller" + id: "42510D445257E239" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -3.2535714285714405d + y: -6.5794642857142875d + } + { + height: 1.5d + image: "kubejs:item/flux_networks_logo" + rotation: 0.0d + width: 12.0d + x: 3.5d + y: -6.5d + } + ] + order_index: 2 + quest_links: [ ] + quests: [ + { + dependencies: ["7AD0A09E83F4D09C"] + description: [ + "Here is the default method of converting &cRedstone Dust&r into &0Flux&r." + "" + "&bStep 1:&r Find some &5Bedrock&r." + "" + "&bStep 2:&r Place some &dObsidian&r above it, leaving one block space in between." + "" + "&bStep 3:&r Throw some &cRedstone Dust&r in the gap left by the &5Bedrock&r and &dObsidian&r." + "" + "&bStep 4:&r &aLeft-click&r the &dObsidian&r. The &dObsidian&r will crush the &cRedstone Dust&r against the &5Bedrock&r and create &0Flux&r!" + "" + "There is &nno limit&r to the amount of &cRedstone Dust&r you can use each time." + ] + id: "439C6C61A5263D31" + min_width: 300 + rewards: [ + { + id: "48CCB4B4BBD548A2" + type: "xp" + xp: 50 + } + { + count: 12 + id: "2981585CE1F27EEE" + item: { + Count: 1 + id: "fluxnetworks:flux_dust" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "3063427A2A680136" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The key crafting ingredient of the mod" + tasks: [{ + id: "02B777D641194D80" + item: "fluxnetworks:flux_dust" + type: "item" + }] + title: "&fFlux" + x: -4.0d + y: -3.0d + } + { + dependencies: ["439C6C61A5263D31"] + description: [ + "&eFlux Configurator&r can be used to &o&baccess&r, &o&bedit&r, &o&bdelete&r networks on the go, and shares the same &o&bGUI&r as connectors." + "" + "&eFlux Configurator&r can also be used to &9copy&r/&cpaste&r settings &o&bbetween connectors&r." + "" + "&bCopying Settings:&r" + "&aShift+Right-click&r on a connector to copy it's settings and then &aRight-click&r on a connector you wish to paste the settings to. If you &aRight-click&r something which isn't a connector you'll bring up the &dNetwork&r &o&bGUI&r and also you'll be able to edit the settings which the &2Configurator&r will paste." + ] + id: "1651E315517369BD" + min_width: 300 + rewards: [ + { + id: "3E912FE6F9283B4D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "32F003212CE9C95E" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Flux Configurator can also be connected to a network" + tasks: [{ + id: "7EBA08CBDBF4EEC5" + item: "fluxnetworks:flux_configurator" + type: "item" + }] + title: "&fFlux Configurator" + x: -6.0d + y: -3.0d + } + { + dependencies: ["486457F40D2A1D29"] + id: "7AA18B409FB698D2" + rewards: [ + { + id: "06B75A37A97B5589" + type: "xp" + xp: 50 + } + { + id: "2676F841A385222F" + item: "fluxnetworks:flux_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "53CAD57BDEA0BC91" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "Other key crafting ingredients of the mod!" + tasks: [{ + id: "2A6AAD2D1CD9E259" + item: "fluxnetworks:flux_block" + type: "item" + }] + title: "&fFlux Block" + x: 1.5d + y: -3.0d + } + { + dependencies: ["7AA18B409FB698D2"] + description: [ + "&9Flux Storage&r is used to &o&bstore&r excess energy. It will only be filled once each &2Flux Point&r has received enough energy." + "" + "This &cEnergy&r can only be &o&baccessed&r by removing energy with a &2Flux Point&r." + "" + "Energy Capacity: &b2,000,000&r &cFE&r" + ] + id: "1B60491EDE73447B" + min_width: 330 + rewards: [ + { + id: "72CB63173D302083" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4B38115CD9228215" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 1.3d + subtitle: "Used to Store Energy in the network" + tasks: [{ + id: "000430BA08919240" + item: "fluxnetworks:basic_flux_storage" + type: "item" + }] + title: "&fFlux Storage" + x: 4.0d + y: -3.0d + } + { + dependencies: ["486457F40D2A1D29"] + description: ["You can add energy from all sides simultaneously."] + id: "7AEAF2E101B5D652" + min_width: 230 + rewards: [ + { + id: "22B0C0F4595E68E8" + type: "xp" + xp: 10 + } + { + count: 2 + id: "7726B56CF890D892" + item: "fluxnetworks:flux_core" + type: "item" + } + { + exclude_from_claim_all: true + id: "3EC6F8981200A716" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "Used for Adding Energy to the network" + tasks: [{ + id: "1F02234419CA3CD9" + item: "fluxnetworks:flux_plug" + type: "item" + }] + title: "&fFlux Plug" + x: -2.0d + y: -4.5d + } + { + dependencies: ["486457F40D2A1D29"] + description: ["You can remove energy from all sides simultaneously."] + id: "6E9B60CCAE55E387" + min_width: 250 + rewards: [ + { + id: "7FC400880CBA8F1B" + type: "xp" + xp: 10 + } + { + id: "70CD1DED02C154BE" + item: "fluxnetworks:flux_point" + type: "item" + } + { + exclude_from_claim_all: true + id: "367D8DDE0FC9835C" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "Used to Remove Energy from the network" + tasks: [{ + id: "7F8B33C6790AE7CC" + item: "fluxnetworks:flux_point" + type: "item" + }] + title: "&fFlux Point" + x: 0.0d + y: -4.5d + } + { + dependencies: [ + "439C6C61A5263D31" + "7AA18B409FB698D2" + "486457F40D2A1D29" + ] + description: [ + "&eInventory&r charging can be &o&bconfigured&r in the &dWireless Charging Tab&r." + "" + "Only one &2Flux Controller&r can be &o&bconnected&r to a &o&bnetwork&r at one time. The &2Controller's&r '&cOutput&r' refers to energy outputted from the network via &6Wireless Charging&r." + "" + "&dNetwork's&r do &nnot&r require a &2Flux Controller&r to operate." + ] + id: "1C214DD51C58BE4D" + min_width: 300 + rewards: [ + { + id: "189C3B794E9F6565" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "14F854F124C5D64F" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + size: 2.0d + subtitle: "Required to activate Cross-dimensional inventory charging" + tasks: [{ + id: "0120A13DAF9C15AF" + item: "fluxnetworks:flux_controller" + type: "item" + }] + title: "&fFlux Controller" + x: -1.0d + y: 0.0d + } + { + dependencies: ["1B60491EDE73447B"] + description: ["Energy Capacity: &b16,000,000&r &cFE&r"] + id: "4CC229C23E5AC155" + rewards: [ + { + id: "04B53CCA9C85763E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "66F5CB9208BA6B5F" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 1.5d + subtitle: "Tier 2" + tasks: [{ + id: "28F65D4F11F6AA7B" + item: "fluxnetworks:herculean_flux_storage" + type: "item" + }] + x: 6.0d + y: -3.0d + } + { + dependencies: ["4CC229C23E5AC155"] + description: ["Energy Capacity: &b128,000,000&r &cFE&r"] + id: "6886DFF567919753" + rewards: [ + { + id: "62581571F3835125" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "33E67BEB5B27403C" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 1.7d + subtitle: "Tier 3" + tasks: [{ + id: "0E8AC367918AD54F" + item: "fluxnetworks:gargantuan_flux_storage" + type: "item" + }] + x: 8.0d + y: -3.0d + } + { + dependencies: ["672C231C32B4B6F0"] + description: [ + "&2Flux Networks&r gives you the ability to build &cWireless Energy Networks&r. It allows you to customise these networks and manage the flow of energy across your world." + "" + "Removing the need to have cables going everywhere, hence decreasing lag and saving you time. &cEnergy&r can also be transferred &dacross dimensions&r making energy management simple." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/fn.png" + } + } + id: "7AD0A09E83F4D09C" + min_width: 300 + rewards: [ + { + id: "62DA61BE68FE7437" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "16E844A4ED27760D" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oMechanical Mixer&r quest*" + tasks: [{ + id: "0A5DAF2F42E5BEB5" + type: "checkmark" + }] + title: "Welcome to &2Flux Networks" + x: -4.0d + y: -6.0d + } + { + dependencies: ["439C6C61A5263D31"] + id: "486457F40D2A1D29" + rewards: [ + { + id: "45E3B05D0201E028" + type: "xp" + xp: 70 + } + { + count: 8 + id: "28AAC867DFFA5626" + item: "minecraft:obsidian" + type: "item" + } + { + exclude_from_claim_all: true + id: "1A125920E77919AD" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "Other key crafting ingredients of the mod!" + tasks: [{ + id: "2E3C48AB30023865" + item: "fluxnetworks:flux_core" + type: "item" + }] + title: "&fFlux Core" + x: -1.0d + y: -3.0d + } + ] + title: "&3&oFlux Networks" +} diff --git a/minecraft/config/ftbquests/quests/chapters/forbidden_and_arcanus.snbt b/minecraft/config/ftbquests/quests/chapters/forbidden_and_arcanus.snbt new file mode 100644 index 0000000..1c04140 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/forbidden_and_arcanus.snbt @@ -0,0 +1,2018 @@ +{ + autofocus_id: "5523A71F1688EA88" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "forbidden_and_arcanus" + group: "4814F40AB34427B6" + icon: { + Count: 1 + id: "forbidden_arcanus:smelter_prism" + tag: { + Damage: 0 + } + } + id: "34E8FF3196478229" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -8.250000000000007d + y: -0.14285714285714235d + } + { + height: 2.0d + image: "kubejs:item/forbidden_logo" + order: 1 + rotation: 0.0d + width: 12.057692307692308d + x: 1.0d + y: 0.5d + } + { + height: 1.5d + image: "forbidden_arcanus:block/whirlwind_top" + rotation: 45.0d + width: 1.5d + x: -0.5d + y: 4.5d + } + { + height: 1.0d + image: "forbidden_arcanus:item/corrupt_soul" + rotation: 0.0d + width: 1.0d + x: 1.1785714285714235d + y: -0.28571428571430246d + } + { + height: 1.5d + image: "forbidden_arcanus:block/arcane_darkstone_pedestal" + rotation: 0.0d + width: 1.5d + x: -12.0d + y: 7.0d + } + { + height: 1.0d + image: "forbidden_arcanus:item/whirlwind_prism" + rotation: 0.0d + width: 1.0d + x: 6.5d + y: 0.5d + } + { + height: 1.0d + image: "forbidden_arcanus:item/utrem_jar_water" + rotation: 0.0d + width: 1.0d + x: -11.964285714285722d + y: 6.142857142857128d + } + ] + order_index: 7 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + description: [ + "Forbidden \\&\\ Arcanus adds new ways to get better armor, enchants, and more!" + "" + "This magic-themed mod has amazing animations, as well as some overpowered items like the &6Eternal Stella&r. " + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "forbidden_arcanus:textures/item/obsidian_skull_shield.png" + } + } + id: "5523A71F1688EA88" + min_width: 300 + rewards: [ + { + id: "60B5D56638873C6E" + type: "xp" + xp: 10 + } + { + id: "642C31932AC61B69" + item: "minecraft:cherry_sapling" + type: "item" + } + { + exclude_from_claim_all: true + id: "6C76424B72490152" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "76E8B288C37363E6" + title: "Welcome to Forbidden \\&\\ Arcanus!" + type: "checkmark" + }] + title: "Welcome to &5Forbidden \\& Arcanus!" + x: -9.0d + y: 0.5d + } + { + dependencies: ["5523A71F1688EA88"] + description: [ + "Found within the Dark Forest biome, the Edelwood Tree looks like a small tree that has been chopped in half." + "" + "You'll need to break the branches off and collect the logs, as these are used for crafting various items within the mod." + "" + "The sapling can also be bought from the Market" + ] + id: "6E3B9051503B938C" + rewards: [ + { + id: "342ACC27FDCA76C0" + type: "xp" + xp: 10 + } + { + id: "75410EA984F4305A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:growing_edelwood" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "23FF39FF02EBACAF" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "1F25B174EB5B4B9C" + item: "forbidden_arcanus:edelwood_stick" + type: "item" + } + { + id: "1BC05313036D72FD" + item: "forbidden_arcanus:edelwood_log" + type: "item" + } + ] + title: "Edelwood Trees" + x: -12.0d + y: 0.5d + } + { + dependencies: ["0B68E3C046C82860"] + description: [ + "The Mystical Dagger is used to break Dragon Heads down to Dragon Scales." + "" + "When killing mobs with it with a test tube in your inventory, it will also collect blood." + ] + id: "09CCC797BF15ADFC" + rewards: [ + { + id: "26033F1665B5FFD2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "41A9D358AD7C3B70" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3CCC73D361A4A5D6" + item: { + Count: 1 + id: "forbidden_arcanus:mystical_dagger" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -9.0d + y: 9.0d + } + { + dependencies: ["6E3B9051503B938C"] + description: [ + "The Edelwood bucket can store more than one bucket of liquid, and can also be used to capture small animals like chickens or squids." + "" + "You'll need the Permafrost enchant to use it to carry Lava." + ] + id: "0AFC5B1AF055811A" + rewards: [ + { + id: "0E316F795B1547B4" + type: "xp" + xp: 50 + } + { + count: 4 + id: "7EEAF08BCD2ABA1F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:edelwood_log" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "08BE22CA835A937B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1BD725A50F90B32C" + item: "forbidden_arcanus:edelwood_bucket" + type: "item" + }] + x: -12.5d + y: 2.0d + } + { + dependencies: ["5523A71F1688EA88"] + description: ["This is the main resource in the mod. Go out and mine some!"] + id: "29164630E1BD76B5" + rewards: [ + { + id: "12BE86FC704EBBBF" + type: "xp" + xp: 100 + } + { + count: 3 + id: "74A6774B9298935F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:arcane_crystal" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "09AAB280E9457330" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "6B4884DE48C80B1C" + item: "forbidden_arcanus:arcane_crystal" + type: "item" + }] + title: "Arcane Crystals" + x: -8.0d + y: 2.0d + } + { + dependencies: ["537E39530360AD73"] + description: [ + "You'll find the Stella Arcanum ore deep underground." + "" + "Careful when mining." + ] + id: "34592A8F4B661D8D" + rewards: [ + { + id: "51217AE3DFB997C8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "37508D8C03100C03" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "This Goes Boom Too" + tasks: [{ + id: "4D5980FEE267D06C" + item: "forbidden_arcanus:stellarite_piece" + type: "item" + }] + x: 3.0d + y: 3.5d + } + { + dependencies: ["5523A71F1688EA88"] + description: [ + "Have you seen the random floating island in the sky? Not the slime one, but the tiny one?" + "" + "These have the Nipa plant on them. You can break these and relocate them." + "" + "They produce Arcane Crystal Dust Specks over time, which can be used to create Arcane Crystal Dust." + ] + id: "260F19B468957BCD" + rewards: [ + { + id: "6FE911D60125F00B" + type: "xp" + xp: 10 + } + { + id: "534F55AB312AA20D" + item: "forbidden_arcanus:nipa" + type: "item" + } + { + id: "793E2386B75E0E82" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:arcane_crystal_dust_speck" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "6AA96489001BB564" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "60E79699A9E7FD13" + item: "forbidden_arcanus:nipa" + type: "item" + }] + title: "Nipa Plants" + x: -10.0d + y: 2.0d + } + { + dependencies: [ + "29164630E1BD76B5" + "260F19B468957BCD" + ] + dependency_requirement: "one_completed" + description: [ + "Smelting down Arcane Crystals will give you Arcane Crystal Dust." + "" + "This is used for most of the items in the mod." + ] + id: "2894F11A73335179" + rewards: [ + { + id: "3DE86B79C85EFEBC" + type: "xp" + xp: 10 + } + { + id: "32731E57E44D584E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:arcane_crystal_dust" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "4F3CC3C7AF904255" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "47D5F726006465DD" + item: "forbidden_arcanus:arcane_crystal_dust" + type: "item" + }] + x: -9.0d + y: 3.5d + } + { + dependencies: ["5523A71F1688EA88"] + description: ["Breaking spawners will now drop &9Spawner Scraps&r."] + id: "13E5783AD64E3BC2" + rewards: [ + { + id: "0E15CFABEE5C0283" + type: "xp" + xp: 50 + } + { + count: 8 + id: "15A05B58E1A81BD0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:spawner_scrap" + } + random_bonus: 8 + type: "item" + } + { + exclude_from_claim_all: true + id: "17C0ACB5562EB412" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "743C9FFD4A3D73EF" + item: "forbidden_arcanus:spawner_scrap" + type: "item" + }] + x: -6.5d + y: 0.5d + } + { + dependencies: ["13E5783AD64E3BC2"] + description: ["The &9Quantum Catcher&r is used to capture and transport mobs."] + id: "0F3BD102F9F93DDD" + rewards: [ + { + id: "5ED4399C894F175E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7ACFFB1D730AB250" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "38ECF24F59D34252" + item: "forbidden_arcanus:quantum_catcher" + type: "item" + }] + x: -5.5d + y: 0.0d + } + { + dependencies: ["5523A71F1688EA88"] + description: [ + "Found randomly in loot chests from the End City." + "" + "When used, it grants 5 minutes of creative flight." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "709118898CF960BE" + rewards: [ + { + id: "775EC533EE1FAB6A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7D143C42C560A3C7" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "2ECD2C9267A13557" + item: "forbidden_arcanus:orb_of_temporary_flight" + type: "item" + }] + x: 6.0d + y: 9.0d + } + { + dependencies: ["0B68E3C046C82860"] + description: ["This gives X-Ray vision for mobs, highlighting them from afar to make it easier to spot them."] + id: "44B1B147CDAC4E36" + optional: true + rewards: [ + { + id: "2436BF5F9939867D" + type: "xp" + xp: 100 + } + { + count: 2 + id: "162070BA225C3B96" + item: "forbidden_arcanus:deorum_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "78EAE97C03427665" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Highlights Mobs when Activated" + tasks: [{ + id: "35004413DAFA1C58" + item: { + Count: 1 + id: "forbidden_arcanus:spectral_eye_amulet" + tag: { } + } + type: "item" + }] + x: -7.5d + y: 6.0d + } + { + dependencies: ["2894F11A73335179"] + description: [ + "Using this bone meal on Farmland will convert it to Magical Farmland." + "" + "Crops will produce double the output when grown on Magical Farmland." + ] + id: "7439CFAD20E3E2BF" + optional: true + rewards: [ + { + id: "029C949DE3C11683" + type: "xp" + xp: 70 + } + { + exclude_from_claim_all: true + id: "56AD152B02FAA545" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Use on Farmland to make it Magical!" + tasks: [{ + id: "78493C576C4F0F87" + item: "forbidden_arcanus:arcane_bone_meal" + type: "item" + }] + x: -7.5d + y: 3.5d + } + { + dependencies: ["5523A71F1688EA88"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "6780984A7CE63392" + rewards: [ + { + id: "61422C7B7C8414E9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1F6048268D274B27" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + subtitle: "Can Infect Villagers and Horses" + tasks: [{ + id: "480CDA250CAFF8C2" + item: "forbidden_arcanus:zombie_arm" + type: "item" + }] + x: 5.0d + y: 8.0d + } + { + dependencies: ["5523A71F1688EA88"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "371DF7589239CB78" + rewards: [ + { + id: "6EFE2F39B54EFABB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "78DB4CA02AD2F45D" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + subtitle: "Arrow Go Boom" + tasks: [{ + id: "24C0F64218E7DD64" + item: "forbidden_arcanus:boom_arrow" + type: "item" + }] + x: 7.0d + y: 8.0d + } + { + dependencies: ["5523A71F1688EA88"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "6C832BFE4D07D897" + rewards: [ + { + id: "7069E419456D4661" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "17386599F5680C1A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "square" + subtitle: "Leaves an AoE Cloud that damages living mobs" + tasks: [{ + id: "0F88AE3ABD17518C" + item: "forbidden_arcanus:draco_arcanus_arrow" + type: "item" + }] + x: 6.0d + y: 7.0d + } + { + dependencies: ["0B68E3C046C82860"] + description: [ + "These can be planted to grow Arcane Gold Nuggets." + "" + "To create one, you'll need to find Yellow Orchids." + ] + hide_dependency_lines: false + id: "5ED1896F1986BD2B" + rewards: [ + { + id: "5A94F2FC66A32C6F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0BD3C3FFE761A2FD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "circle" + subtitle: "Growing Gold" + tasks: [{ + id: "3157685F32B838D5" + item: "forbidden_arcanus:golden_orchid_seeds" + type: "item" + }] + x: -10.5d + y: 6.0d + } + { + dependencies: ["5523A71F1688EA88"] + description: [ + "Crafted with skulls, bones, and cloth, this armor is slightly stronger than Iron." + "" + "It's also really cool looking." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "5EFC63CF97D97AB5" + rewards: [ + { + id: "4201E7FF060AB5A2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "17FEC8EDC64F5294" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + subtitle: "Armor of the Dead" + tasks: [ + { + id: "36C413F578D44CBF" + item: { + Count: 1 + id: "forbidden_arcanus:mortem_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6A341DEA25087489" + item: { + Count: 1 + id: "forbidden_arcanus:mortem_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3F1B3851C4BC39F1" + item: { + Count: 1 + id: "forbidden_arcanus:mortem_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "34E13EE51BE65AE3" + item: { + Count: 1 + id: "forbidden_arcanus:mortem_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Mortem Armor" + x: 6.0d + y: 8.0d + } + { + dependencies: ["09CCC797BF15ADFC"] + description: ["Combining a Dragon Head with a Mystical Dagger will give you Dragon Scales."] + id: "20B495B4B8B95636" + rewards: [ + { + id: "4CD12CEC53F48F4B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "79CD16357BAD390B" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Dragon Scales, Dragon Scales....." + tasks: [{ + count: 3L + id: "66035A72EEEF2FA1" + item: "forbidden_arcanus:dragon_scale" + type: "item" + }] + title: "Dragon Scales" + x: -1.5d + y: 9.0d + } + { + dependencies: ["20B495B4B8B95636"] + id: "4DA1C95BED78A662" + rewards: [ + { + id: "42F0BCA9799206B2" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "436347E913D9FD92" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Better than Netherite" + tasks: [ + { + id: "4F68A985DED494B6" + item: { + Count: 1 + id: "forbidden_arcanus:draco_arcanus_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "51FBF0E6CAAF10EB" + item: { + Count: 1 + id: "forbidden_arcanus:draco_arcanus_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2D69FAD94A981FCD" + item: { + Count: 1 + id: "forbidden_arcanus:draco_arcanus_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "528B85B2554A3691" + item: { + Count: 1 + id: "forbidden_arcanus:draco_arcanus_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&1Draco Arcanus Armor&r" + x: -0.5d + y: 8.0d + } + { + dependencies: ["20B495B4B8B95636"] + description: [ + "The Dragon Scale can be made into a Golden and Aquatic Dragon Scales." + "" + "These are mainly used to craft Tyr Armor. It is also needed in the ATM Star recipe." + ] + id: "744A01000E086CC9" + rewards: [ + { + id: "234F00EF412D61B2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5D27608DD1ED3369" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "332B4C94EE4AAB00" + item: "forbidden_arcanus:golden_dragon_scale" + type: "item" + } + { + id: "05C28BF8C6930068" + item: "forbidden_arcanus:aquatic_dragon_scale" + type: "item" + } + ] + x: 1.5d + y: 9.0d + } + { + dependencies: ["2894F11A73335179"] + description: [ + "Used to corrupt Souls and Runes. You'll need this for later." + "" + "If you throw down Dark Matter, then throw down Corrupti Dust, it'll create a Black Hole. Feed it small entities like Arrows or Experience Orbs, and it'll produce Xpetrified Orbs." + ] + id: "7CF76A542529A181" + rewards: [ + { + id: "162E81395E446AB6" + type: "xp" + xp: 100 + } + { + count: 3 + id: "4B7C235B7977605D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:obsidian_with_iron" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "5D567FF19AF40955" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "16DBF179371A23E1" + item: "forbidden_arcanus:corrupti_dust" + type: "item" + }] + x: -10.5d + y: 3.5d + } + { + dependencies: ["2894F11A73335179"] + description: [ + "Using our Arcane Crystal Dust, we'll need to combine it with other dusts and powders to create Mundabiter Dust." + "" + "This dust is used in several recipes, as well as activating the Hephaestus Forge." + ] + id: "03E7D73433AB6B7C" + rewards: [ + { + id: "0A2FEC70D103E074" + type: "xp" + xp: 100 + } + { + count: 2 + id: "6E1664DFA753893B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:mundabitur_dust" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "193F59230C5C832B" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Let the Dusts Combine" + tasks: [{ + count: 4L + id: "133BDCB7B85C4CF4" + item: "forbidden_arcanus:mundabitur_dust" + type: "item" + }] + title: "Mundabitur Dust" + x: -9.0d + y: 5.0d + } + { + dependencies: ["03E7D73433AB6B7C"] + id: "0B68E3C046C82860" + rewards: [ + { + id: "643C5E6FC352BD9F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4BB965154FFFCD37" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "3957BB8401E71721" + item: "forbidden_arcanus:deorum_ingot" + type: "item" + }] + title: "&6Deorum Ingots" + x: -9.0d + y: 7.0d + } + { + dependencies: ["744A01000E086CC9"] + id: "70112194DFFD15D3" + rewards: [ + { + id: "332909BF099BE23B" + type: "xp" + xp: 100 + } + { + count: 8 + id: "67ABFE065BFA600A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:golden_dragon_scale" + } + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "2B895C04308B2CB3" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [ + { + id: "1837D97833619166" + item: { + Count: 1 + id: "forbidden_arcanus:tyr_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "679C3B7915C403AC" + item: { + Count: 1 + id: "forbidden_arcanus:tyr_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2B5AFD104DE50D5F" + item: { + Count: 1 + id: "forbidden_arcanus:tyr_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "11795A1BD0916EC2" + item: { + Count: 1 + id: "forbidden_arcanus:tyr_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&5Tyr Armor" + x: 1.5d + y: 7.5d + } + { + dependencies: ["3799ACDA92F96FD1"] + description: [ + "Killing passive mobs will increase your corruption. Killing Aureal Entities has a higher chance to increase your corruption." + "" + "Be careful! At higher levels of corruption, negative things will happen!" + "" + "Making a Sanity Meter will give your UI an upgrade to show your total corruption, for those who want to hit new high scores and such." + ] + id: "25911D0B7C403A4F" + rewards: [ + { + id: "31A2D2A4B3CB93AB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "021D07ECF6720AFF" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Am I going insane?" + tasks: [{ + id: "2A496D23BEBBA31A" + item: "forbidden_arcanus:sanity_meter" + type: "item" + }] + title: "Sanity" + x: -5.5d + y: 2.5d + } + { + dependencies: ["0B68E3C046C82860"] + description: ["You've probably already acquired some Darkstone, but we'll need it to craft the forge."] + id: "5F5675E30ED046F7" + rewards: [ + { + id: "56404219A611CF0F" + type: "xp" + xp: 30 + } + { + count: 32 + id: "62FCA5782E30D5EF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:darkstone" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "3C16EC4CB2DFF76D" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 64L + id: "0031710AA90315AC" + item: "forbidden_arcanus:darkstone" + type: "item" + }] + title: "Prepping For the Forge" + x: -3.5d + y: 7.0d + } + { + dependencies: ["5F5675E30ED046F7"] + description: [ + "We'll be using all of that Darkstone to create the &1Hephaestus Forge&r." + "" + "Once you have all of the blocks needed, you'll need to build the platform for the forge." + "" + "After having built the below pattern, place the Smithing Table in the central spot above the Arcane Chiseled Polished Darkstone block. In order to transform it into the desired Hephaestus Forge you'll now only need to sneak and right-click with the Mundabitur Dust on the Smithing Table a bolt of corrupted lightning will strike the block and transform it. " + "" + "{image:kubejs:textures/item/forge.png width:170 height:145 align:1}" + ] + icon: "forbidden_arcanus:hephaestus_forge" + id: "73349B993DE69954" + min_width: 500 + rewards: [ + { + id: "11369C066386D75D" + type: "xp_levels" + xp_levels: 10 + } + { + count: 6 + id: "7CE967F9DDD855BB" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:aureal_bottle" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "25654A033A60A033" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + count: 48L + id: "2429D427160A65D5" + item: "forbidden_arcanus:polished_darkstone" + type: "item" + } + { + count: 9L + id: "3D6D6E05A9D04FC5" + item: "forbidden_arcanus:arcane_chiseled_polished_darkstone" + type: "item" + } + { + count: 4L + id: "2F27161BBD1D059A" + item: "forbidden_arcanus:chiseled_arcane_polished_darkstone" + type: "item" + } + { + id: "754E2CB9BDC2549E" + item: "minecraft:smithing_table" + type: "item" + } + { + id: "2FC5F424A0583DFD" + item: "forbidden_arcanus:mundabitur_dust" + type: "item" + } + ] + title: "&1The Hephaestus Forge" + x: -3.5d + y: 4.5d + } + { + dependencies: ["13E5783AD64E3BC2"] + description: [ + "The &9Lens of Veritatis&r is used to see Aureal entities." + "" + "These are entities that will grant Aureal when killed, but will also increase your corruption...." + ] + id: "3799ACDA92F96FD1" + rewards: [ + { + id: "361FF13D5A5429DB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "14C527A8E02CEF67" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4FF431D0496FC0E5" + item: "forbidden_arcanus:lens_of_veritatis" + type: "item" + }] + x: -5.5d + y: 1.0d + } + { + dependencies: ["6E3B9051503B938C"] + description: [ + "Smelting Edelwood will give you Dark Matter." + "" + "You can make Black Holes with this." + ] + id: "310B54FB390982C5" + rewards: [ + { + id: "1B284389DED0B292" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "501000C45FA09AA0" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0FCB0911BA208C40" + item: "forbidden_arcanus:dark_matter" + type: "item" + }] + x: -11.5d + y: 2.0d + } + { + dependencies: ["0C6719D81DE5A614"] + description: [ + "Blood is collected by crafting Test Tubes, then killing mobs with the Mystical Dagger." + "" + "Note: The Test Tube must be in your inventory when killing mobs." + ] + id: "757E1521D84AC5C8" + rewards: [ + { + id: "7223A34DD27FE40E" + type: "xp" + xp: 100 + } + { + count: 2 + id: "1D7419F60FF9CE12" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:rune" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "67E03892AD9E0E28" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0C10EC722BA7DEA1" + item: "forbidden_arcanus:test_tube" + type: "item" + }] + title: "&4Blood" + x: 0.0d + y: 3.5d + } + { + dependencies: ["0C6719D81DE5A614"] + description: [ + "Aureal Bottles can be found in loot chests, but they can also be crafted using Arcane Crystal Dust." + "" + "You can also generate Aureal with Arcane Crystal Obelisks." + ] + id: "4DA04ABF4FF2625C" + rewards: [ + { + id: "68666FC2D57373D0" + type: "xp" + xp: 100 + } + { + count: 2 + id: "5687976BF9C1FF90" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:arcane_crystal_dust" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "3D51B29F014463DF" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0B41D927E575771E" + item: "forbidden_arcanus:aureal_bottle" + type: "item" + }] + title: "&9Aureal" + x: -1.0d + y: 3.5d + } + { + dependencies: ["0C6719D81DE5A614"] + description: ["Souls are gathered by creating a Soul Extractor and then using it on Soul Sand."] + icon: "forbidden_arcanus:soul" + id: "788A3685A7D07E75" + rewards: [ + { + id: "2EBC61C8851B2229" + type: "xp" + xp: 100 + } + { + count: 4 + id: "4D8F8BF4AC338368" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:soul_sand" + } + type: "item" + } + { + id: "0FA77B8AFF982EB3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:soul" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "633AC6F198DD8936" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + tasks: [ + { + id: "6558C3AA159F57D6" + item: { + Count: 1 + id: "forbidden_arcanus:soul_extractor" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "16226358D9107349" + item: "forbidden_arcanus:soul" + type: "item" + } + ] + title: "&dSouls" + x: -1.0d + y: 5.5d + } + { + dependencies: ["0C6719D81DE5A614"] + description: ["This goes in the right side of the forge."] + id: "5E45D2A2FDD67495" + rewards: [ + { + id: "03B074FCE2297BF6" + type: "xp_levels" + xp_levels: 5 + } + { + exclude_from_claim_all: true + id: "124DD32F63763BAA" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + subtitle: "Experience in a bottle" + tasks: [{ + id: "0D4ABA98B2FDB158" + item: "minecraft:experience_bottle" + type: "item" + }] + title: "&aBottle O' Enchanting" + x: 0.0d + y: 5.5d + } + { + dependencies: ["73349B993DE69954"] + description: [ + "{image:kubejs:textures/item/forge_gui.png width:200 height:150 align:1}" + "" + "The Forge requires 4 different items to be powered: Aureal, Souls, Blood, and Experience." + "" + "To learn more, follow the corner quests." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "doom:item/invisible_sphere" + } + } + id: "0C6719D81DE5A614" + rewards: [ + { + id: "4361C7754AB234B0" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "6F4229EAD3AB0A61" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "diamond" + size: 1.5d + tasks: [{ + id: "4CAF79C3D1E35958" + title: "Powering the Forge" + type: "checkmark" + }] + x: -0.4642857142857082d + y: 4.5178571428571495d + } + { + dependencies: ["73349B993DE69954"] + description: [ + "To enchant items, you'll need Darkstone Pedestals placed around the Forge." + "" + "Make sure to place these on the Arcane Chiseled Polished Darkstone." + ] + id: "76BC484FC50EAEC3" + rewards: [ + { + id: "434F08CC0F88F901" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7D36841AB0140194" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "0BC04910ED51A3A5" + item: "forbidden_arcanus:darkstone_pedestal" + type: "item" + }] + title: "Darkstone Pedestals" + x: -3.5d + y: 3.0d + } + { + dependencies: ["0C6719D81DE5A614"] + description: [ + "To perform a ritual, place the ingredients on the Arcane Pedestals." + "" + "You'll need a Blacksmith's Gavel to activate the ritual. To do this, right click on the Forge with the Gavel." + ] + id: "537E39530360AD73" + rewards: [ + { + id: "7D92F94919F2BB7D" + type: "xp" + xp: 100 + } + { + id: "4FF2C5A15C431BB6" + item: "forbidden_arcanus:deorum_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "02724C888705D88F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0309B0EB29771EC0" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forbidden_arcanus:blacksmith_gavel" + } + } + title: "Blacksmith Gavel" + type: "item" + }] + title: "Performing Rituals" + x: 1.5d + y: 4.5d + } + { + dependencies: [ + "34592A8F4B661D8D" + "1C91BD525C91FD73" + ] + description: [ + "The &6Stella Eternal&r has 3 charges, and when right-clicked, it can fully repair all of your items in your inventory." + "" + "The main purpose of this is to give the enchant Unbreakable to an item, which is done by combining it with the tool in a Smithing Table." + ] + icon_scale: 2.0d + id: "526559F94031FE43" + min_width: 300 + rewards: [ + { + id: "629C79B4071B31A3" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "15852CD55895FD1B" + table_id: 6305167096659659419L + type: "random" + } + ] + size: 1.5d + tasks: [{ + id: "662F567369FBB0AD" + item: { + Count: 1 + id: "forbidden_arcanus:eternal_stella" + tag: { } + } + type: "item" + }] + title: "&dStella Eternal" + x: 4.5d + y: 4.5d + } + { + dependencies: ["537E39530360AD73"] + description: ["This item can be combined with a tool to add the Fiery enchant, which auto-smelts blocks when harvested, or sets things ablaze."] + id: "13C766B7286C0293" + rewards: [ + { + id: "371D93A79EF7844C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "60E066B0422A8406" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6443CDA11E67A634" + item: { + Count: 1 + id: "forbidden_arcanus:smelter_prism" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.5d + y: 3.0d + } + { + dependencies: ["537E39530360AD73"] + description: [ + "This stuff is everywhere." + "" + "It can be used to give yourself experience, or used to make the Stella Eternal." + ] + id: "1C91BD525C91FD73" + rewards: [ + { + id: "5B12316594633566" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1952C5E6EF36168E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "552F1CF53E9AF9BD" + item: "forbidden_arcanus:xpetrified_orb" + type: "item" + }] + x: 3.0d + y: 5.5d + } + { + dependencies: ["20B495B4B8B95636"] + id: "33F44B87C5496158" + rewards: [ + { + id: "483938E5BF2FAFC7" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "458640B739E4F74A" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Dragon Tools" + tasks: [ + { + id: "6B1B4574299B7E42" + item: { + Count: 1 + id: "forbidden_arcanus:draco_arcanus_shovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7AC6974CDDE401B1" + item: { + Count: 1 + id: "forbidden_arcanus:draco_arcanus_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1EC5573A12A3B7F7" + item: { + Count: 1 + id: "forbidden_arcanus:draco_arcanus_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "70CEF00CFA26E97A" + item: { + Count: 1 + id: "forbidden_arcanus:draco_arcanus_hoe" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&1Draco Tools" + x: -2.5d + y: 8.0d + } + { + dependencies: ["20B495B4B8B95636"] + description: ["The Scepter shoots out energy orbs when charged up with Right-Click. If a mob is hit, it'll strike it with lightning."] + id: "3513D89C6FD2D852" + rewards: [ + { + id: "487939397BCAAC5F" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "03E04C941E7D229F" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Go Pew Pew" + tasks: [ + { + id: "49FEFEC69106EFFA" + item: { + Count: 1 + id: "forbidden_arcanus:draco_arcanus_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "388451A17A53336D" + item: "forbidden_arcanus:draco_arcanus_scepter" + type: "item" + } + ] + title: "&1Draco Weapons" + x: -1.5d + y: 7.5d + } + { + dependencies: ["73349B993DE69954"] + description: [ + "To create an Arcane Crystal Obelisk, place down an Arcane Polished Darkstone block, then place two Arcane Crystal Blocks on top of it." + "" + "Right-click with Mundabitur Dust and you'll create the obelisk." + "" + "When placed on a Arcane Chiseled Polished Darkstone block on the Hephaestus Forge structure, it will slowly generate Aureal over time." + ] + icon: "forbidden_arcanus:arcane_crystal_obelisk" + id: "11C065375DF7AC3E" + rewards: [ + { + id: "37FA801AED4BD6AC" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0577B17DED2D783C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "5400EB85133AAAEE" + title: "Arcane Crystal Obelisks" + type: "checkmark" + }] + x: -5.0d + y: 4.5d + } + { + dependencies: ["744A01000E086CC9"] + id: "16F6A99E4BD2C602" + rewards: [ + { + id: "040BA471F438CF9C" + type: "xp" + xp: 100 + } + { + count: 4 + id: "25795D890622964E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:dragon_scale" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "05AEC1BB53FEE109" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "48EE29B076DA6742" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "forbidden_arcanus:arcane_dragon_egg" + } + type: "item" + }] + x: 3.0d + y: 9.0d + } + { + dependencies: ["0B68E3C046C82860"] + id: "605C61CD7E39E36D" + rewards: [ + { + id: "3EDACA9335A655F2" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "4BF5C720482443D0" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "75F67C8D7F51B20A" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "forbidden_arcanus:reinforced_deorum_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "forbidden_arcanus:reinforced_deorum_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "forbidden_arcanus:reinforced_deorum_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "forbidden_arcanus:reinforced_deorum_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&6Reinforced Deorum Tools" + type: "item" + }] + x: -7.5d + y: 8.0d + } + { + dependencies: ["0B68E3C046C82860"] + id: "4C80D71EE7CFD378" + rewards: [ + { + id: "6CF72E79CC8A921A" + type: "xp" + xp: 300 + } + { + count: 3 + id: "66ABBF152ECADCED" + item: "forbidden_arcanus:arcane_crystal_dust" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "1A715F58823F5DC3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "3D693D1FD4E9DFE8" + item: { + Count: 1 + id: "forbidden_arcanus:reinforced_deorum_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "44937FB87A39F81F" + item: { + Count: 1 + id: "forbidden_arcanus:reinforced_deorum_blacksmith_gavel" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&6Reinforced Deorum Sword \\& Blacksmith Gavel" + x: -10.5d + y: 8.0d + } + ] + title: "&3&oForbidden \\& Arcanus" +} diff --git a/minecraft/config/ftbquests/quests/chapters/gobber.snbt b/minecraft/config/ftbquests/quests/chapters/gobber.snbt new file mode 100644 index 0000000..eca29bc --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/gobber.snbt @@ -0,0 +1,1265 @@ +{ + autofocus_id: "000000000000057C" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "gobber" + group: "4E2A2310634498BA" + icon: "gobber2:gobber2_globette" + id: "0000000000000018" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 0.75d + y: -0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -3.75d + y: -0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 5.25d + y: -0.5d + } + ] + order_index: 2 + quest_links: [ ] + quests: [ + { + dependencies: ["3378DBA1114E2954"] + id: "0000000000000554" + rewards: [{ + exclude_from_claim_all: true + id: "529EB5B0A7B4E996" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oThe Iron Tools&r quest*" + tasks: [{ + id: "0000000000000555" + item: "gobber2:gobber2_ingot" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["0000000000000554"] + id: "0000000000000556" + rewards: [{ + exclude_from_claim_all: true + id: "65B6B5B1345EDA84" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "0000000000000557" + item: { + Count: 1 + ForgeCaps: { + "agricraft:gene_inspector": { + agri_flag: 0b + } + } + id: "gobber2:gobber2_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1574343A056A36CB" + item: { + Count: 1 + id: "gobber2:gobber2_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "54C4683C2D372658" + item: { + Count: 1 + id: "gobber2:gobber2_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4D2468D97EA870C9" + item: { + Count: 1 + id: "gobber2:gobber2_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Gobber Armor" + x: 0.0d + y: 1.5d + } + { + dependencies: ["0000000000000554"] + id: "0000000000000560" + rewards: [{ + exclude_from_claim_all: true + id: "00EB97B0554DC577" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + tasks: [{ + id: "0000000000000561" + item: "gobber2:gobber2_ring" + type: "item" + }] + x: 1.5d + y: 0.0d + } + { + dependencies: ["0000000000000560"] + id: "0000000000000564" + rewards: [{ + exclude_from_claim_all: true + id: "1F5F8D67EFDE9A60" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "0000000000000565" + item: "gobber2:gobber2_ring_swiftness" + type: "item" + } + { + id: "7D4371B57BFFF8B3" + item: "gobber2:gobber2_ring_miner" + type: "item" + } + { + id: "147D0965F17E9DEF" + item: "gobber2:gobber2_ring_above" + type: "item" + } + { + id: "5F2006340E878D54" + item: "gobber2:gobber2_ring_farmer" + type: "item" + } + { + id: "24FCBD5A224ED537" + item: "gobber2:gobber2_ring_attraction" + type: "item" + } + { + id: "470790D314CFAB50" + item: "gobber2:gobber2_ring_husbandry" + type: "item" + } + { + id: "2E133CE3F42CBF8C" + item: "gobber2:gobber2_ring_sunshine" + type: "item" + } + { + id: "5C26010A303E8A07" + item: "gobber2:gobber2_ring_ascent" + type: "item" + } + ] + title: "Gobber Rings" + x: 1.5d + y: 1.5d + } + { + id: "000000000000057A" + rewards: [ + { + exclude_from_claim_all: true + id: "114AFFE55DCC781A" + table_id: 381865782302985986L + type: "random" + } + { + id: "669F6E12A7DD4D7F" + type: "xp" + xp: 100 + } + ] + shape: "gear" + size: 1.5d + tasks: [{ + id: "000000000000057B" + item: "gobber2:gobber2_ingot_nether" + type: "item" + }] + x: -4.5d + y: 0.0d + } + { + id: "000000000000057C" + rewards: [{ + exclude_from_claim_all: true + id: "7BA94CC7CBA8F15C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + tasks: [{ + id: "000000000000057D" + item: "gobber2:gobber2_ingot_end" + type: "item" + }] + x: 4.5d + y: 0.0d + } + { + dependencies: ["0000000000000554"] + id: "0000000000000580" + rewards: [{ + exclude_from_claim_all: true + id: "6C6DA378767E58B5" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [{ + id: "0000000000000581" + item: { + Count: 1 + id: "gobber2:gobber2_bow" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.5d + y: 1.5d + } + { + dependencies: ["0000000000000554"] + id: "0000000000000584" + rewards: [{ + exclude_from_claim_all: true + id: "428633EE0A3ED2C8" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "159D52DAC6858701" + item: { + Count: 1 + id: "gobber2:gobber2_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0A66DA9FCD589F55" + item: { + Count: 1 + id: "gobber2:gobber2_shovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0CB9888F45C8880E" + item: { + Count: 1 + id: "gobber2:gobber2_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "192C9286FC61BF3F" + item: { + Count: 1 + id: "gobber2:gobber2_hoe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "47D45714194591E9" + item: { + Count: 1 + id: "gobber2:gobber2_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "53142CCE643F3019" + item: { + Count: 1 + id: "gobber2:gobber2_tree_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Gobber Mining Tools" + x: -1.5d + y: -1.5d + } + { + dependencies: ["0000000000000554"] + id: "000000000000058C" + rewards: [{ + exclude_from_claim_all: true + id: "0C97DDD262A2D4F0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [{ + id: "000000000000058D" + item: { + Count: 1 + id: "gobber2:gobber2_hammer" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.5d + y: 0.0d + } + { + dependencies: ["0000000000000554"] + id: "0000000000000590" + rewards: [{ + exclude_from_claim_all: true + id: "50FCA5624AB002FB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [{ + id: "0000000000000591" + item: { + Count: 1 + id: "gobber2:gobber2_paxel" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.5d + y: -1.5d + } + { + dependencies: ["0000000000000554"] + id: "0000000000000592" + rewards: [{ + exclude_from_claim_all: true + id: "1237ECF3DCAEEEF6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + tasks: [{ + id: "0000000000000593" + item: "gobber2:gobber2_medallion" + type: "item" + }] + x: 0.0d + y: -1.5d + } + { + dependencies: ["000000000000057A"] + id: "0000000000000594" + rewards: [{ + exclude_from_claim_all: true + id: "24255C54B321EDBD" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [{ + id: "0000000000000595" + item: "gobber2:gobber2_medallion_nether" + type: "item" + }] + x: -4.5d + y: -1.5d + } + { + dependencies: ["000000000000057C"] + id: "0000000000000596" + rewards: [{ + exclude_from_claim_all: true + id: "477908BF4951184E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [{ + id: "0000000000000597" + item: "gobber2:gobber2_medallion_end" + type: "item" + }] + x: 4.5d + y: -1.5d + } + { + dependencies: ["0000000000000592"] + id: "000000000000059A" + rewards: [{ + exclude_from_claim_all: true + id: "2EBDDFAA85E64BF7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "000000000000059B" + item: "gobber2:gobber2_medallion_breathing" + type: "item" + } + { + id: "7B8E4C3806B32526" + item: "gobber2:gobber2_medallion_stepping" + type: "item" + } + { + id: "2A0F484F4D99967B" + item: "gobber2:gobber2_medallion_hero" + type: "item" + } + { + id: "1D1F81167CD40CA8" + item: "gobber2:gobber2_medallion_healing" + type: "item" + } + ] + title: "Gobber medallions" + x: 0.0d + y: -3.0d + } + { + dependencies: ["0000000000000594"] + id: "000000000000059E" + rewards: [ + { + exclude_from_claim_all: true + id: "65EF37E2B9B79B5A" + table_id: 381865782302985986L + type: "random" + } + { + id: "23217BDAF35C700B" + type: "xp" + xp: 100 + } + ] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "000000000000059F" + item: "gobber2:gobber2_medallion_glowing" + type: "item" + } + { + id: "3F24C3BDE5973EF5" + item: "gobber2:gobber2_medallion_healing2" + type: "item" + } + { + id: "58EB903C8BA62A09" + item: { + Count: 1 + id: "gobber2:gobber2_medallion_exp" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Nether medallions" + x: -4.5d + y: -3.0d + } + { + dependencies: ["0000000000000596"] + id: "00000000000005A2" + rewards: [{ + exclude_from_claim_all: true + id: "546D0AF0A38D5C97" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "00000000000005A3" + item: "gobber2:gobber2_medallion_dolphin" + type: "item" + } + { + id: "7559FE138C8CDBAE" + item: "gobber2:gobber2_medallion_healing3" + type: "item" + } + { + id: "63AC6AB6FB26E23A" + item: "gobber2:gobber2_medallion_conduit" + type: "item" + } + ] + title: "End medallions" + x: 4.5d + y: -3.0d + } + { + dependencies: ["000000000000057A"] + id: "00000000000005AE" + rewards: [{ + exclude_from_claim_all: true + id: "5980AF937C63E069" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + tasks: [{ + id: "00000000000005AF" + item: "gobber2:gobber2_ring_nether" + type: "item" + }] + x: -3.0d + y: 0.0d + } + { + dependencies: ["000000000000057A"] + id: "00000000000005B2" + rewards: [ + { + exclude_from_claim_all: true + id: "7EE399116436C662" + table_id: 381865782302985986L + type: "random" + } + { + id: "6B0CEDE55F4F6085" + type: "xp" + xp: 100 + } + ] + shape: "circle" + size: 1.5d + tasks: [{ + id: "00000000000005B3" + item: { + Count: 1 + id: "gobber2:gobber2_paxel_nether" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.0d + y: -1.5d + } + { + dependencies: ["000000000000057A"] + id: "00000000000005B6" + rewards: [ + { + exclude_from_claim_all: true + id: "3993D28D06910C75" + table_id: 381865782302985986L + type: "random" + } + { + id: "35B57240555A5DC6" + type: "xp" + xp: 100 + } + ] + shape: "circle" + size: 1.5d + tasks: [{ + id: "00000000000005B7" + item: { + Count: 1 + id: "gobber2:gobber2_bow_nether" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: 1.5d + } + { + dependencies: ["000000000000057A"] + id: "00000000000005BA" + rewards: [ + { + exclude_from_claim_all: true + id: "360027961BA2171C" + table_id: 381865782302985986L + type: "random" + } + { + id: "37DE5D36329284E2" + type: "xp" + xp: 100 + } + ] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "349D2EA878E26E84" + item: { + Count: 1 + id: "gobber2:gobber2_pickaxe_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "370ABF8CFBD2029D" + item: { + Count: 1 + id: "gobber2:gobber2_shovel_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "03672B8936F22178" + item: { + Count: 1 + id: "gobber2:gobber2_axe_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7A47D4AB652BE116" + item: { + Count: 1 + id: "gobber2:gobber2_sword_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1CE077CA173483E1" + item: { + Count: 1 + id: "gobber2:gobber2_hoe_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2CD879649E08F5EA" + item: { + Count: 1 + id: "gobber2:gobber2_tree_axe_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Gobber Nether Mining Tools" + x: -6.0d + y: -1.5d + } + { + dependencies: ["000000000000057A"] + id: "00000000000005C2" + rewards: [ + { + exclude_from_claim_all: true + id: "6591BEF757548295" + table_id: 381865782302985986L + type: "random" + } + { + id: "51FA0530E8E337E7" + type: "xp" + xp: 100 + } + ] + shape: "circle" + size: 1.5d + tasks: [{ + id: "00000000000005C3" + item: { + Count: 1 + id: "gobber2:gobber2_hammer_nether" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: 0.0d + } + { + dependencies: ["00000000000005AE"] + id: "00000000000005C6" + rewards: [ + { + exclude_from_claim_all: true + id: "182DA92719205576" + table_id: 381865782302985986L + type: "random" + } + { + id: "2B4BD4AAD2939EA2" + type: "xp" + xp: 100 + } + ] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "4C21A2E9E298422E" + item: "gobber2:gobber2_ring_repair" + type: "item" + } + { + id: "37F411F2F443793F" + item: "gobber2:gobber2_ring_blaze" + type: "item" + } + { + id: "1FB8EA7B25697CED" + item: "gobber2:gobber2_ring_acceleration" + type: "item" + } + { + id: "2FE40AA5858ADC6B" + item: "gobber2:gobber2_ring_pyro" + type: "item" + } + { + id: "701DF3AF58649BB1" + item: "gobber2:gobber2_ring_haste" + type: "item" + } + { + id: "58199E3433ED5205" + item: "gobber2:gobber2_ring_vision" + type: "item" + } + { + id: "16306E646D969658" + item: "gobber2:gobber2_ring_leaping" + type: "item" + } + { + id: "2E7FF336EA876E15" + item: "gobber2:gobber2_ring_curing" + type: "item" + } + { + id: "03362C43792885D1" + item: "gobber2:gobber2_ring_phoenix" + type: "item" + } + ] + title: "Who does not like Nether rings" + x: -3.0d + y: 1.5d + } + { + dependencies: ["000000000000057A"] + id: "00000000000005D6" + rewards: [ + { + exclude_from_claim_all: true + id: "5A85DAB6454853DA" + table_id: 381865782302985986L + type: "random" + } + { + id: "08675B4C7137F1DB" + type: "xp" + xp: 100 + } + ] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "00000000000005D7" + item: { + Count: 1 + ForgeCaps: { + "agricraft:gene_inspector": { + agri_flag: 0b + } + } + id: "gobber2:gobber2_helmet_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "748E01C47C45AC9C" + item: { + Count: 1 + id: "gobber2:gobber2_chestplate_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7910C03E2B064374" + item: { + Count: 1 + id: "gobber2:gobber2_leggings_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0769C722967E364E" + item: { + Count: 1 + id: "gobber2:gobber2_boots_nether" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: -4.5d + y: 1.5d + } + { + dependencies: ["000000000000057C"] + id: "00000000000005DE" + rewards: [{ + exclude_from_claim_all: true + id: "5D8931D2597CFE0B" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "00000000000005DF" + item: "gobber2:gobber2_ring_end" + type: "item" + }] + x: 6.0d + y: 0.0d + } + { + dependencies: ["00000000000005DE"] + id: "00000000000005E4" + rewards: [{ + exclude_from_claim_all: true + id: "4A11B347956DCE56" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "1387B0A0284D2018" + item: "gobber2:gobber2_ring_stealth" + type: "item" + } + { + id: "48BDFFF4D7B33488" + item: "gobber2:gobber2_ring_traveler" + type: "item" + } + { + id: "2E5F55955B3AB914" + item: "gobber2:gobber2_ring_enderchest" + type: "item" + } + { + id: "6741A8D3F86366CA" + item: "gobber2:gobber2_ring_dismissal" + type: "item" + } + { + id: "29A33112A8045439" + item: "gobber2:gobber2_ring_airwalking" + type: "item" + } + { + id: "41E2641843C09418" + item: "gobber2:gobber2_ring_explorer" + type: "item" + } + { + id: "571F562FCBA56500" + item: "gobber2:gobber2_ring_blink" + type: "item" + } + { + id: "2B201A8B41F18DEB" + item: "gobber2:gobber2_ring_void" + type: "item" + } + { + id: "178905D1C4691A6D" + item: "gobber2:gobber2_ring_teleport" + type: "item" + } + ] + title: "Who does not like End rings" + x: 6.0d + y: 1.5d + } + { + dependencies: ["000000000000057C"] + id: "00000000000005F8" + rewards: [{ + exclude_from_claim_all: true + id: "44C53B7898A390CA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [{ + id: "00000000000005F9" + item: { + Count: 1 + id: "gobber2:gobber2_bow_end" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.0d + y: 1.5d + } + { + dependencies: ["000000000000057C"] + id: "0000000000001415" + rewards: [{ + exclude_from_claim_all: true + id: "2000F9B7025C9ABB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "349E883EA962F2AC" + item: { + Count: 1 + id: "gobber2:gobber2_pickaxe_end" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "64F0A8834031EA3C" + item: { + Count: 1 + id: "gobber2:gobber2_shovel_end" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7AACED4174AB59F4" + item: { + Count: 1 + id: "gobber2:gobber2_axe_end" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7D94945CF5C91AF2" + item: { + Count: 1 + id: "gobber2:gobber2_hoe_end" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2E28C186A7E62292" + item: { + Count: 1 + id: "gobber2:gobber2_sword_end" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6AF8B95C176D8E67" + item: { + Count: 1 + id: "gobber2:gobber2_tree_axe_end" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 3.0d + y: -1.5d + } + { + dependencies: ["000000000000057C"] + id: "0000000000000604" + rewards: [{ + exclude_from_claim_all: true + id: "26D4E417A96CBCF0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [{ + id: "0000000000000605" + item: { + Count: 1 + id: "gobber2:gobber2_hammer_end" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["000000000000057C"] + id: "0000000000000608" + rewards: [{ + exclude_from_claim_all: true + id: "0EF60CA44EEED9F3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [{ + id: "0000000000000609" + item: { + Count: 1 + id: "gobber2:gobber2_paxel_end" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.0d + y: -1.5d + } + { + dependencies: ["000000000000057C"] + id: "000000000000060C" + rewards: [{ + exclude_from_claim_all: true + id: "148839C5A9C30FED" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "000000000000060D" + item: { + Count: 1 + ForgeCaps: { + "agricraft:gene_inspector": { + agri_flag: 0b + } + } + id: "gobber2:gobber2_helmet_end" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1B82ABC15697A4DA" + item: { + Count: 1 + id: "gobber2:gobber2_chestplate_end" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 4.5d + y: 1.5d + } + { + dependencies: ["000000000000060C"] + id: "0000000000000614" + rewards: [{ + exclude_from_claim_all: true + id: "267F077704821A8A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "0000000000000615" + item: { + Count: 1 + ForgeCaps: { + "agricraft:gene_inspector": { + agri_flag: 0b + } + } + id: "gobber2:gobber2_helmet_dragon" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2F272FBD4948364F" + item: { + Count: 1 + id: "gobber2:gobber2_chestplate_dragon" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6E79CF0B4AA9F9F7" + item: { + Count: 1 + id: "gobber2:gobber2_leggings_dragon" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "43A821632764784A" + item: { + Count: 1 + id: "gobber2:gobber2_boots_dragon" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 4.5d + y: 3.0d + } + ] + title: "&3&oGobber" +} diff --git a/minecraft/config/ftbquests/quests/chapters/herbal_brews.snbt b/minecraft/config/ftbquests/quests/chapters/herbal_brews.snbt new file mode 100644 index 0000000..0d98a50 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/herbal_brews.snbt @@ -0,0 +1,431 @@ +{ + autofocus_id: "4BFC5627EBC60A9A" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "herbal_brews" + group: "33C9D311E461F30C" + icon: "herbalbrews:lavender_tea" + id: "5F124BBB4D8AC416" + images: [{ + height: 2.7d + image: "kubejs:item/herbalbrews" + rotation: 0.0d + width: 7.0d + x: 0.0d + y: -5.5d + }] + order_index: 4 + quest_links: [ ] + quests: [ + { + dependencies: ["7501EF594DC4ED20"] + id: "01330815BDF90886" + rewards: [{ + exclude_from_claim_all: true + id: "5F089C6D6354D039" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Mainly found in jungle biomes." + tasks: [{ + id: "71CC76472955C1DB" + item: "herbalbrews:coffee_beans" + type: "item" + }] + x: -2.0d + y: -1.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "29AF2B1BEBE034B5" + rewards: [{ + exclude_from_claim_all: true + id: "587714F4D9925299" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Mainly spawns in savanna biomes." + tasks: [{ + id: "47029E719F61DE9F" + item: "herbalbrews:rooibos_leaf" + type: "item" + }] + x: 0.0d + y: 2.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "156D7FF3BCFAE8A4" + rewards: [{ + exclude_from_claim_all: true + id: "256BD8805DE47772" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Mainly spawns in mountainous biomes." + tasks: [{ + id: "22B4C6743A9601A3" + item: "herbalbrews:yerba_mate_leaf" + type: "item" + }] + x: 2.0d + y: -1.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "05FD88F325B0D4D1" + rewards: [{ + exclude_from_claim_all: true + id: "73FAFFAB6F40C454" + table_id: 5709524483953410607L + type: "random" + }] + subtitle: "Mainly spawns in jungle biomes." + tasks: [{ + id: "177E02D52B5FE3B1" + item: "herbalbrews:hibiscus" + type: "item" + }] + x: 2.0d + y: 1.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "148EE1496625D925" + rewards: [{ + exclude_from_claim_all: true + id: "7CD2FF95EA3D75F9" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "6782F0F8EE22FC2F" + item: "herbalbrews:lavender_blossom" + type: "item" + }] + x: -2.0d + y: 1.0d + } + { + id: "7501EF594DC4ED20" + rewards: [{ + exclude_from_claim_all: true + id: "28EC6E9CFC8EA89B" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "2B64ABD9D0BEC137" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "herbalbrews:copper_tea_kettle" + } + { + Count: 1b + id: "herbalbrews:tea_kettle" + } + ] + } + } + type: "item" + }] + title: "Kettle" + x: 0.0d + y: 0.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "665D7EAFF0B387C5" + rewards: [{ + exclude_from_claim_all: true + id: "450302B400EBE626" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "2DEC8DF07694EDF5" + item: "herbalbrews:tea_blossom" + type: "item" + }] + x: 2.0d + y: 0.0d + } + { + id: "4BFC5627EBC60A9A" + rewards: [{ + exclude_from_claim_all: true + id: "4613CE34F0AD2DF5" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "0E7B3C123D9CDF6B" + item: "herbalbrews:green_tea_leaf" + type: "item" + }] + x: -3.0d + y: -2.0d + } + { + dependencies: ["4BFC5627EBC60A9A"] + id: "4593029606C9E157" + rewards: [{ + exclude_from_claim_all: true + id: "1A7FBD241C339A9D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4F26B3BFD74D9F78" + item: "herbalbrews:green_tea_leaf_block" + type: "item" + }] + x: -2.0d + y: -2.0d + } + { + dependencies: ["4593029606C9E157"] + id: "5A5E440BCAB1F234" + rewards: [{ + exclude_from_claim_all: true + id: "65E468E81B0E6D0D" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4AA154EBEF6B714C" + item: "herbalbrews:dried_green_tea" + type: "item" + }] + x: -1.0d + y: -2.0d + } + { + dependencies: ["5A5E440BCAB1F234"] + id: "00B8FCACB8E450B0" + rewards: [{ + exclude_from_claim_all: true + id: "26D66E6B02BD2FB7" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1EE4E26F0B27EF40" + item: "herbalbrews:dried_green_tea_leaf_block" + type: "item" + }] + x: 0.0d + y: -2.0d + } + { + dependencies: ["00B8FCACB8E450B0"] + id: "7D39D059C565CDF1" + rewards: [{ + exclude_from_claim_all: true + id: "7FD20CAAE88724D1" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3AE48D5EE86DD711" + item: "herbalbrews:dried_black_tea" + type: "item" + }] + x: 1.0d + y: -2.0d + } + { + dependencies: ["7D39D059C565CDF1"] + id: "7A353687D42BFC48" + rewards: [{ + exclude_from_claim_all: true + id: "2B49AF3D91F31F5F" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "6931645DD904CB22" + item: "herbalbrews:mixed_tea_leaf_block" + type: "item" + }] + x: 2.0d + y: -2.0d + } + { + dependencies: ["7A353687D42BFC48"] + id: "5008A85F9D19C9E3" + rewards: [{ + exclude_from_claim_all: true + id: "400CE1770F8356C2" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "70355BDCE8C6700B" + item: "herbalbrews:dried_oolong_tea" + type: "item" + }] + x: 3.0d + y: -2.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "750550A7EF81414D" + rewards: [{ + exclude_from_claim_all: true + id: "7E2E782939D3ED27" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "42141D9849E6FC62" + item: "herbalbrews:green_tea" + type: "item" + }] + x: -1.0d + y: -1.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "605FCBDD56ED6A64" + rewards: [{ + exclude_from_claim_all: true + id: "16A08A7E356B9DEB" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "70606F8D4A0DF503" + item: "herbalbrews:black_tea" + type: "item" + }] + x: -2.0d + y: 0.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "580520FDDB8EE72C" + rewards: [{ + exclude_from_claim_all: true + id: "41D22A116D5CD4D3" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1D8581DEE3070D67" + item: "herbalbrews:lavender_tea" + type: "item" + }] + x: 0.0d + y: 1.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "0664559CC57867BE" + rewards: [{ + exclude_from_claim_all: true + id: "7161DCE516B7DF23" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "6D99A9CDE3806F32" + item: "herbalbrews:yerba_mate_tea" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "1E5A763367D015E0" + rewards: [{ + exclude_from_claim_all: true + id: "3832432AD03D05F6" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "1AEFEFED4410A900" + item: "herbalbrews:oolong_tea" + type: "item" + }] + x: -1.0d + y: 0.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "4FCCC0234ACC431C" + rewards: [{ + exclude_from_claim_all: true + id: "2314FFDAFF0EA137" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "137926D47770F834" + item: "herbalbrews:rooibos_tea" + type: "item" + }] + x: 1.0d + y: -1.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "14679719CD51D0E0" + rewards: [{ + exclude_from_claim_all: true + id: "61D2E1AB1EE3E058" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "6A32803A4992E1B6" + item: "herbalbrews:hibiscus_tea" + type: "item" + }] + x: 1.0d + y: 0.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "503347E7962CD030" + rewards: [{ + exclude_from_claim_all: true + id: "44E7CEA24DE0DEA5" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "4BBD19C2AB69CB8E" + item: "herbalbrews:milk_coffee" + type: "item" + }] + x: -1.0d + y: 1.0d + } + { + dependencies: ["7501EF594DC4ED20"] + id: "0E6B62DD7E5C0FF2" + rewards: [{ + exclude_from_claim_all: true + id: "2E54BDC57E254CF5" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "768DFF97159FE4DE" + item: "herbalbrews:coffee" + type: "item" + }] + x: 1.0d + y: 1.0d + } + ] + title: "&3&oLet's Do:&r &o&fHerbal Brews" +} diff --git a/minecraft/config/ftbquests/quests/chapters/hexerei.snbt b/minecraft/config/ftbquests/quests/chapters/hexerei.snbt new file mode 100644 index 0000000..d52f9b9 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/hexerei.snbt @@ -0,0 +1,1848 @@ +{ + autofocus_id: "61413E2A76CA0E22" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "hexerei" + group: "4814F40AB34427B6" + icon: { + Count: 1 + id: "hexerei:witch_helmet" + tag: { + Damage: 0 + } + } + id: "386999710FDB8FFE" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -12.214285714285715d + y: -9.517857142857142d + } + { + click: "https://www.youtube.com/watch?v=v-FZ3fYavTA" + height: 1.0d + hover: ["YouTube Tutorial"] + image: "hexerei:item/creative_waxing_kit" + rotation: 0.0d + width: 1.0d + x: -2.5d + y: -7.0d + } + { + height: 2.0d + image: "kubejs:item/hexerei" + rotation: 0.0d + width: 5.2d + x: -0.5d + y: -9.0d + } + { + height: 1.0d + image: "kubejs:item/witch_item" + rotation: 0.0d + width: 1.0d + x: -0.7571428571428598d + y: -10.232142857142858d + } + { + height: 1.0d + image: "kubejs:item/cursing_eye" + rotation: 0.0d + width: 1.0d + x: -0.8785714285714263d + y: -9.857142857142858d + } + ] + order_index: 8 + quest_links: [ ] + quests: [ + { + dependencies: ["00000000000000AF"] + description: [ + "Delve into the magical world by concocting various mystical items inside your witches Mixing Cauldron. Store items in your Coffers to carry around with you, soon to have much more implementation with also soon to be implemented familiars. Store your herbs and greenery items inside your herb jars for handy storage up to 1024, they act similar to storage drawers to make it easy for people to understand how to use." + "" + "Light up your area with colored candles that you can mismatch and that actually melt over time! You can put these candles out with a bucket of water if you want to use for decoration with multiple levels of burned candles. These candles will also soon be implemented with certain buffs in the area that it can give." + ] + icon: { + Count: 1 + id: "hexerei:witch_helmet" + tag: { + Damage: 0 + } + } + id: "61413E2A76CA0E22" + min_width: 300 + rewards: [ + { + id: "55A1442A9FC008BC" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1B99C44B71713EB8" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&o&nWelcome to PneumaticCraft&r quest*" + tasks: [{ + id: "20A330BEBD7AE8F3" + title: "Welcome to Hexerei!" + type: "checkmark" + }] + title: "Welcome to &cHexerei" + x: -12.5d + y: -8.5d + } + { + dependencies: ["61413E2A76CA0E22"] + dependency_requirement: "all_started" + description: ["Any decent Witch worth their salt will have a Mixing Cauldron. If you haven't found one in a Witches Village you can craft one with some iron and torches."] + hide_dependency_lines: false + hide_until_deps_visible: false + icon: "hexerei:mixing_cauldron" + id: "5188CD3E2A42E392" + rewards: [ + { + id: "05A2080E8FD17FBD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "688049C157C02A98" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.2d + subtitle: "Ready to brewing?" + tasks: [{ + id: "41426DEEED16ACA2" + item: "hexerei:mixing_cauldron" + type: "item" + }] + title: "The Mixing Cauldron" + x: -10.0d + y: -7.5d + } + { + dependencies: ["5188CD3E2A42E392"] + description: [ + "While dancing naked under the moonlight is an attractive option for any witch, there are practical reasons for wearing clothes." + "" + "Firstly, witches garments offer protection from the elements and hostile creatures. Secondly, they make you look fabulous. Fashion maketh the witch." + ] + icon: "hexerei:infused_fabric" + id: "25366610A6DB0850" + rewards: [ + { + id: "669BA6782F00205D" + type: "xp" + xp: 100 + } + { + id: "00F9B3A4A5B40666" + item: "hexerei:infused_fabric" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "0F59F2C07303C7E5" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "6E107160C65F05E9" + item: "hexerei:infused_fabric" + type: "item" + }] + title: "The Fabric Infusion" + x: -10.0d + y: -6.0d + } + { + dependencies: ["25366610A6DB0850"] + description: ["Start with the basics. Make a hat and make a statement."] + icon: { + Count: 1 + id: "hexerei:witch_helmet" + tag: { + Damage: 0 + } + } + id: "5A820ECC85890ACB" + rewards: [ + { + id: "49C5151D00062289" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "56D03280CF5A5375" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "34AA38224AFD68C9" + item: { + Count: 1 + id: "hexerei:witch_helmet" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -10.0d + y: -4.5d + } + { + dependencies: ["25366610A6DB0850"] + description: ["Making a robe will keep you warm on those cold nights. Plus who knows what you could be hiding under there. Keep 'em guessing!"] + icon: { + Count: 1 + id: "hexerei:witch_chestplate" + tag: { + Damage: 0 + } + } + id: "645261B372A3667C" + rewards: [ + { + id: "3A47C77AE36F67DD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "418E26E419EEAD82" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "5CFD2420C23BD511" + item: { + Count: 1 + id: "hexerei:witch_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -11.5d + y: -6.0d + } + { + dependencies: ["25366610A6DB0850"] + description: ["Sometimes you need better arch support. These boots are fashionable, functional, and now come with a left AND a right pair."] + icon: { + Count: 1 + id: "hexerei:witch_boots" + tag: { + Damage: 0 + } + } + id: "20426BF95656BD48" + rewards: [ + { + id: "3E1DF234F0B9CA6B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5A5ABAEAC25BAF8E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0C16493683182D22" + item: { + Count: 1 + id: "hexerei:witch_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -11.0d + y: -5.0d + } + { + dependencies: ["61413E2A76CA0E22"] + description: ["The willow tree can be found growing in swamps and marshes."] + id: "448518E29D5BE2DE" + rewards: [ + { + id: "1A67A126AD204729" + type: "xp" + xp: 25 + } + { + count: 12 + id: "168CA6333CE6DF83" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:willow_log" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "2D4EE886EA4E6DF8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + consume_items: false + count: 16L + id: "7F49063FF9CCEE5E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:willow_log" + } + only_from_crafting: false + type: "item" + }] + title: "Willow Tree" + x: -14.5d + y: -7.5d + } + { + dependencies: ["61413E2A76CA0E22"] + description: [ + "You can find mahogany trees in jungles." + "" + "This wood holds magical potential and is used in many fancy items." + ] + icon: "hexerei:mahogany_log" + id: "36FA6E6865796BC2" + rewards: [ + { + id: "0235CBA0C99D28E9" + type: "xp" + xp: 25 + } + { + count: 12 + id: "1964235A0A1D73DF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:mahogany_log" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "62024E335E66739E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + consume_items: false + count: 16L + id: "5953D4D43ADF5C72" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:mahogany_log" + } + only_from_crafting: false + type: "item" + }] + title: "Mahogany Tree" + x: -15.5d + y: -10.0d + } + { + dependencies: ["61413E2A76CA0E22"] + description: ["Breaking long grass might supply you with seeds for sage brush. Collect some seeds, plant them on tilled soil and grow them up."] + icon: "hexerei:sage_seed" + id: "6F09AE74427C4F49" + rewards: [ + { + id: "538077A01FF385EB" + type: "xp" + xp: 10 + } + { + count: 8 + id: "28BBABE284F047F4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:sage_seed" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "6419CDA19E125D46" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 1.2d + tasks: [{ + count: 16L + id: "0961B7B03180B17D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:sage_seed" + } + type: "item" + }] + title: "Sage Seeds" + x: -14.5d + y: -6.0d + } + { + dependencies: ["6F09AE74427C4F49"] + description: ["Growing sage in a garden will help with making fine smelling smoke and brews."] + icon: "hexerei:sage" + id: "3FB4E1D7A8B80DD8" + rewards: [ + { + id: "5AB41137E13A1C19" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7864191773021751" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 12L + id: "2ECD9893337AF44C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:sage" + } + type: "item" + }] + title: "The Sage" + x: -15.5d + y: -4.5d + } + { + dependencies: ["6F09AE74427C4F49"] + description: [ + "Belladonna flowers grow where the dead have fallen around swamps and marshes." + "" + "Both the berries and flowers are quite deadly toxins." + ] + id: "51EECCD1D3DB4EF6" + rewards: [ + { + id: "299354ED4A540ADA" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3EF5977AA88E363F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + count: 16L + id: "298E1A04A8B4BFA8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:belladonna_flowers" + } + type: "item" + } + { + count: 16L + id: "06FD8930E9757E1C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:belladonna_berries" + } + type: "item" + } + ] + title: "Find &6Belladonna&r flowers \\& berries" + x: -16.0d + y: -5.5d + } + { + dependencies: ["6F09AE74427C4F49"] + description: ["Mandrake flowers and its root can be harvested in swamps and marshes."] + id: "53B65B3B86663E8A" + rewards: [ + { + id: "42D31AE46C7DD3F4" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "57DA427F4696FD7C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + count: 16L + id: "49DD1912ED9A9A48" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:mandrake_flowers" + } + type: "item" + } + { + count: 16L + id: "46B693CAEC9343FD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:mandrake_root" + } + type: "item" + } + ] + title: "Find &6Mandrake&r flowers \\& roots" + x: -14.5d + y: -4.0d + } + { + dependencies: ["6F09AE74427C4F49"] + description: ["Mugwart leaves and flowers can be found growing in marshy areas."] + id: "0604D00D3293CFA5" + rewards: [ + { + id: "02936D842B14C12A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5CCFD29E12BF70C5" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + consume_items: false + count: 16L + id: "27CD35425D0271CD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:mugwort_leaves" + } + only_from_crafting: false + type: "item" + } + { + count: 16L + id: "64D8F7C60F92E0E4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:mugwort_flowers" + } + type: "item" + } + ] + title: "Find &6Mugwart&r flowers \\& leaves" + x: -13.0d + y: -5.5d + } + { + dependencies: ["6F09AE74427C4F49"] + description: ["You can find Yellow Dock flowers growing all around marshlands and swampy areas."] + id: "204137522397A650" + rewards: [ + { + id: "45F280AF376A53D4" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5CF19D7FE6B070F1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + count: 16L + id: "3B1FD61702BEED52" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:yellow_dock_flowers" + } + type: "item" + } + { + count: 16L + id: "4167738FE4760996" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:yellow_dock_leaves" + } + type: "item" + } + ] + title: "Find &6Yello Dock&r flowers \\& leaves" + x: -13.5d + y: -4.5d + } + { + dependencies: ["3FB4E1D7A8B80DD8"] + description: ["Hanging racks are a great way to dry flowers and herbs. You can hang them from the ceiling."] + id: "279A34D099446B47" + rewards: [ + { + id: "77942D972871338F" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "40C7283966A085F3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "47822C9040140546" + item: "hexerei:herb_drying_rack" + type: "item" + }] + title: "The Drying Rack" + x: -15.5d + y: -3.0d + } + { + dependencies: ["5188CD3E2A42E392"] + description: [ + "A blood sigil is used inside a mixing cauldron for various rituals." + "" + "Once you've made one, you can place it at the bottom of your mixing caulron." + ] + id: "644055153B3927D8" + rewards: [ + { + id: "13DB38D054A8613C" + type: "xp" + xp: 100 + } + { + count: 6 + id: "3A0F0155A926DA53" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:glass_bottle" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4D571A93F30E450F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6DF72E73A3B9C365" + item: "hexerei:blood_sigil" + type: "item" + }] + x: -10.035714285714285d + y: -8.982142857142854d + } + { + dependencies: ["644055153B3927D8"] + description: [ + "If you want real power, you'll have to make some sacrifices." + "" + "Start by jumping up and down inside your mixing cauldron with the Blood Sigil installed." + "" + "Oh, stop crying you big baby!" + ] + id: "5A7087D99A56AF1B" + rewards: [ + { + id: "6A76CFC85CFF1315" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3DC7198F59E57A7E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7F159825B5E2A950" + item: "hexerei:blood_bottle" + type: "item" + }] + x: -9.0d + y: -10.0d + } + { + dependencies: ["5188CD3E2A42E392"] + description: ["Killing animals out in the wilds might yield some animal fat which you can use for other useful items."] + icon: "hexerei:animal_fat" + id: "17504D612E935F29" + rewards: [ + { + id: "6DD6F0A42A16BB21" + type: "xp" + xp: 70 + } + { + count: 2 + id: "159E0B2C65ED01AF" + item: "hexerei:animal_fat" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "52CA0231917066CD" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + consume_items: false + count: 16L + id: "1552D23FE13342AD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:animal_fat" + } + only_from_crafting: false + type: "item" + }] + title: "Animal Fat" + x: -8.0d + y: -8.0d + } + { + dependencies: ["17504D612E935F29"] + description: [ + "" + "The mixing cauldron can hold more than water. Filling it with lava will allow you to make stronger items useful for making candles." + "" + "Placing the dipper on the mixing cauldron will allow you to make candles." + "" + "&6Tip:&r &oSneak-Right-Click the Dipper on the outside edge of the Mixing Cauldron." + ] + id: "23C052EA8F70B8A4" + rewards: [ + { + id: "0BB669A5A49A900B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "086C594037CF4D2B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "441E886DD51CA0EF" + item: "hexerei:candle_dipper" + type: "item" + }] + title: "The Dipper" + x: -7.0d + y: -9.0d + } + { + dependencies: ["23C052EA8F70B8A4"] + description: ["Creating candles in the dipper attached to a mixing caulron is a great way to light up the night."] + id: "5A6193314267FB5C" + rewards: [ + { + id: "7ABABFD98CDECA30" + type: "xp" + xp: 100 + } + { + id: "22D2B7CA032572E9" + item: "hexerei:candle" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "3030462264B4750C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 3L + id: "06DACE54E3313885" + item: "hexerei:candle" + type: "item" + }] + title: "Candles" + x: -5.5d + y: -9.0d + } + { + dependencies: ["5A6193314267FB5C"] + description: ["You can create a candelabra out of candles, iron and some chain. They can hang from the ceiling or sit on top of an organ if you're feeling moody."] + id: "255F13D72581040B" + rewards: [ + { + id: "22436CB69866DA26" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "12A765A15BBB0158" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "The Phantom would be proud!" + tasks: [{ + id: "3B71E4186CA8F63D" + item: "hexerei:candelabra" + type: "item" + }] + title: "Making Candelabras" + x: -4.0d + y: -9.0d + } + { + dependencies: ["5A820ECC85890ACB"] + description: ["You don't want to walk everywhere do you? Time to make a broom and take to the skies!"] + id: "433DEC854BB8B9A5" + rewards: [ + { + id: "5B75D98AAD5E31FB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "71626A460C8EEB6C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "0C704B56AFCADD54" + item: { + Count: 1 + id: "hexerei:willow_broom" + tag: { } + } + type: "item" + }] + x: -5.0d + y: -3.5d + } + { + dependencies: ["433DEC854BB8B9A5"] + description: [ + "The mahogany broom is an excelent upgrade for the standard issue broom." + "" + "It's more expensive, but you're worth it!" + ] + id: "188E2A7F6516A3D9" + rewards: [ + { + id: "057341595B3B93DA" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "7BC16F2F19FBA48C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0371D8159A35E486" + item: { + Count: 1 + id: "hexerei:mahogany_broom" + tag: { } + } + type: "item" + }] + x: -2.5d + y: -3.5d + } + { + dependencies: ["433DEC854BB8B9A5"] + description: [ + "A broom is only as good as its brush. Making a basic brush is the first start to life on the wind." + "" + "Broom brushes do have a durability and will wear out with use. Keep an eye on it!" + ] + id: "2C9922F84A45F841" + rewards: [ + { + id: "4533291C2D3919CB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "54CF27D3BED49575" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "650B6E818E5653CB" + item: { + Count: 1 + id: "hexerei:broom_brush" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.0d + y: -2.0d + } + { + dependencies: ["2C9922F84A45F841"] + description: ["The enhanced version of the broom brush has twice the durability for longer flight time."] + id: "2F631F39187A7F02" + rewards: [ + { + id: "78A6B43528BABFD6" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "6B732B57D3868DF8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3AFE6CC982C9EEAD" + item: { + Count: 1 + id: "hexerei:herb_enhanced_broom_brush" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.0d + y: -0.5d + } + { + dependencies: ["2C9922F84A45F841"] + description: [ + "A satchel bag for your broom will give it an inventory." + "" + "Perfect for bringing home leftovers from the Coven potlucks." + ] + id: "62CCEAB872211A29" + rewards: [ + { + id: "5BD199499FD0B89D" + type: "xp" + xp: 100 + } + { + id: "57C6C041A0096A04" + item: "minecraft:leather" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "10A493909322231B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2F785A0314FAE6BE" + item: "hexerei:small_satchel" + type: "item" + }] + x: -6.5d + y: -1.5d + } + { + dependencies: ["62CCEAB872211A29"] + description: ["Increasing the size of the small satchel is a good idea."] + id: "2B1705F3513F4BD5" + rewards: [ + { + id: "509FACAC58B16609" + type: "xp" + xp: 200 + } + { + count: 2 + id: "310B2D20D8D01AD8" + item: "minecraft:leather" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7909E0C01488403C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "588ECCF7E0DBC2BE" + item: "hexerei:medium_satchel" + type: "item" + }] + x: -7.5d + y: -2.0d + } + { + dependencies: ["2B1705F3513F4BD5"] + description: ["If you're going to carry all this stuff around, you might as well have more space."] + id: "2C34FF3D97D0C9E5" + rewards: [ + { + id: "3B3894D5B5D49665" + type: "xp" + xp: 300 + } + { + count: 3 + id: "0B7CD0682A096B22" + item: "minecraft:leather" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "74E3F8D12AE66917" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "04BBD6E8F394EC61" + item: "hexerei:large_satchel" + type: "item" + }] + x: -8.5d + y: -2.5d + } + { + dependencies: ["5A820ECC85890ACB"] + description: [ + "Being a witch isn't all spells, and hexes. Sometimes you just want to hit something." + "" + "This hammer will do the trick!" + ] + id: "7C44F0F59896A857" + rewards: [ + { + id: "3A72110834C56E2D" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "02FABE1B16C1C09C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2E602E2BD9F51680" + item: { + Count: 1 + id: "hexerei:warhammer" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "Witch's Warhammer" + x: -10.5d + y: -3.5d + } + { + dependencies: ["61413E2A76CA0E22"] + description: ["A coffer is a handy box that besides looking fabulos will hold onto it's inventory when you break it. It can also be named, and dyed various colors."] + id: "2BD19333A6FBF7AB" + rewards: [ + { + id: "5E6D23271DDD98BD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1796B46CB5AE38A7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "761894E3A5451034" + item: { + Count: 1 + id: "hexerei:coffer" + tag: { } + } + type: "item" + }] + x: -14.5d + y: -10.5d + } + { + dependencies: ["17504D612E935F29"] + description: [ + "Melting fat in a mixing cauldron might get you some extra tallow impurities." + "" + "Not very useful, but a nice snack in a pinch." + ] + id: "132B8D216842711C" + rewards: [ + { + id: "79DDAD5709CE5210" + type: "xp" + xp: 50 + } + { + count: 2 + id: "5A05713924A12B88" + item: "hexerei:tallow_impurity" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "6878D77D09EA4D7F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "755E0B09D60ABA11" + item: "hexerei:tallow_impurity" + type: "item" + }] + x: -6.0d + y: -7.5d + } + { + dependencies: ["2C9922F84A45F841"] + description: [ + "These gold rings serve no purpose..." + "" + "...except to put those other poor witches in their place when you fly by." + ] + id: "534DAEC3C0ECE682" + rewards: [ + { + id: "17B646FDB3AF09C2" + type: "xp" + xp: 100 + } + { + count: 4 + id: "3A2BED9708EB4671" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:gold_ingot" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "5B639C3B19A67B0B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2AB7316E0A2800B2" + item: "hexerei:gold_rings" + type: "item" + }] + x: -3.5d + y: -2.0d + } + { + dependencies: ["534DAEC3C0ECE682"] + description: [ + "Why stop at golden rings...add some flare to the end of your broom to give it your distinct style." + "" + "You can combine almost any item with the broom chain. Treat your self!" + ] + id: "0BBAD0505B5A2AF6" + rewards: [ + { + id: "4F1037D8345C26A5" + type: "xp" + xp: 100 + } + { + count: 4 + id: "66FCCDA4A52AE2CA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:gold_ingot" + } + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "45792338011A0A76" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "07FB590D1B9DE3DC" + item: { + Count: 1 + id: "hexerei:broom_keychain" + tag: { } + } + type: "item" + }] + x: -2.5d + y: -1.5d + } + { + dependencies: ["61413E2A76CA0E22"] + description: [ + "Herb jars are a handy and stylish way of storing plants and herbs you might aquire in your adventures." + "" + "Jars can be named on an anvil and will show the contents on the label." + ] + id: "6D7FC44D0F77BA36" + rewards: [ + { + id: "5F93753F31A8C713" + type: "xp" + xp: 25 + } + { + id: "45DD3BCC58527017" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:herb_jar" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "21E081415CCA8379" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4EF957893C221C26" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:herb_jar" + tag: { } + } + type: "item" + }] + x: -16.0d + y: -9.0d + } + { + dependencies: ["279A34D099446B47"] + description: ["Drying sage bundles will give you a potent herb to burn that has benificial effects."] + id: "691F9A1EB66FAF54" + rewards: [ + { + id: "6DF8FAE33E488F8F" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4BCAB96B5AA6C20F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "43AA5DAF57ACEF73" + item: { + Count: 1 + id: "hexerei:dried_sage_bundle" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -15.0d + y: -2.0d + } + { + dependencies: ["691F9A1EB66FAF54"] + description: ["Burning dried sage bundles can have medicinal properties and might even help your glaucoma."] + id: "30D2CAE712CE5ACD" + rewards: [ + { + id: "015B1B4D0BCD0B22" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "37E39D4EF4EDA3CA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2602186920CC41DA" + item: "hexerei:sage_burning_plate" + type: "item" + }] + x: -16.0d + y: -1.5d + } + { + dependencies: ["3FB4E1D7A8B80DD8"] + description: ["Take your grow sage and bundle it up with some string. Makes for easier drying."] + id: "6CA251CAEC888DD4" + rewards: [ + { + id: "15720E465EE7119E" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "670A7695E91374A9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0F612494EB49F2B5" + item: "hexerei:sage_bundle" + type: "item" + }] + x: -16.5d + y: -3.5d + } + { + dependencies: ["5188CD3E2A42E392"] + description: ["One of the witchest tool, is that one! Mixing herbs or seeds may be very useful for a witch!"] + id: "5A74A831815E817B" + rewards: [ + { + id: "3DA34204420262B5" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "064BC2329B602C95" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "The seed mixer" + tasks: [{ + id: "5AE614E7726932CA" + item: "hexerei:pestle_and_mortar" + type: "item" + }] + x: -8.0d + y: -6.5d + } + { + dependencies: ["5A74A831815E817B"] + description: ["If you did see it, maybe you could tame it with some seeds. Mix some seeds, and try to give the result to a crow. You may need to try multiple times."] + id: "6EB3CB29EF6A24C1" + rewards: [ + { + id: "29AA284238E57361" + type: "xp" + xp: 100 + } + { + count: 3 + id: "3BC2E5C708826782" + item: "hexerei:seed_mixture" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "3022A4D2220B7E2A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7DC034F5C32C9174" + item: "hexerei:seed_mixture" + type: "item" + }] + x: -6.5d + y: -5.5d + } + { + dependencies: ["6EB3CB29EF6A24C1"] + description: ["One crow is very useful, but why don't you breed more crows? Gather two crows, and then give one of them a gold nuget."] + id: "27789FAE089599A3" + rewards: [ + { + id: "11C82572693FBA7C" + type: "xp" + xp: 80 + } + { + exclude_from_claim_all: true + id: "133042319C60EF35" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "484FC5C2A6ECD8A7" + item: "minecraft:gold_nugget" + type: "item" + }] + title: "Crow Breeding" + x: -5.0d + y: -5.0d + } + { + dependencies: ["6EB3CB29EF6A24C1"] + description: ["With that flute you can give orders to your crows. This may be useful if you want to automate things!"] + id: "6C0A248D1FF03898" + rewards: [ + { + id: "0F2E0EC631B9CC34" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7EE130CCE576E3F8" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Oh yeah, they will obey you for sure" + tasks: [{ + id: "309E57CD4181BA64" + item: { + Count: 1 + id: "hexerei:crow_flute" + tag: { } + } + type: "item" + }] + x: -5.0d + y: -6.0d + } + { + dependencies: ["188E2A7F6516A3D9"] + description: ["Selenite Clusters are found in selenite geodes found under jungles and swamps."] + id: "2F39EE1D81DDDA1F" + rewards: [ + { + id: "08DB5BD39E00AF54" + type: "xp" + xp: 100 + } + { + id: "0AE68969266BBE49" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:selenite_shard" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "3424FCCF7D619D47" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "673CBF88A4839C13" + item: "hexerei:selenite_shard" + type: "item" + }] + x: -1.0d + y: -4.5d + } + { + dependencies: ["2F39EE1D81DDDA1F"] + description: ["With that tip, your broom will survive to extreme heat situations. But would you?"] + id: "70DC743DA23D7CFB" + rewards: [ + { + id: "245DA6E9B83375BB" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "1CFE7D0D2CFDC2D4" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "01774BD370F377BB" + item: { + Count: 1 + id: "hexerei:broom_netherite_tip" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -5.5d + } + { + dependencies: ["188E2A7F6516A3D9"] + description: ["Wanted to fly underwater? That broom tip is what you looking for!"] + id: "41CF18A45DC909AD" + rewards: [ + { + id: "3F86EE8348A696B0" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "0A811C55F640523A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "52FF30172B94159A" + item: { + Count: 1 + id: "hexerei:broom_waterproof_tip" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.0d + y: -3.0d + } + { + dependencies: ["61413E2A76CA0E22"] + description: [ + "This will help you find swamps and jungles." + "Leafs turns green when you are pointing to the biome." + ] + id: "2AB9092665EE8A9C" + rewards: [ + { + id: "37E4620FFDEEB946" + type: "xp" + xp: 50 + } + { + count: 3 + id: "188DD94FD12507E7" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:potion" + tag: { + Potion: "alexsmobs:long_lava_vision" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "78BB1F8DFE99C524" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "782C77E3465755D9" + item: "hexerei:dowsing_rod" + type: "item" + }] + x: -15.5d + y: -8.0d + } + { + dependencies: ["36FA6E6865796BC2"] + hide_dependency_lines: true + id: "771123B8D00124A3" + rewards: [ + { + id: "65FAA9AC775DDA11" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1C02D65FDE8B0A67" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7274BAB670D1DCB4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:book_of_shadows_altar" + } + type: "item" + }] + x: -12.5d + y: -2.5d + } + { + dependencies: ["771123B8D00124A3"] + id: "2F8754D76F6CF5AC" + rewards: [ + { + id: "3FADCA1BF352F120" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "564AEB6F2909EB02" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "32EDAC4F4CBA8894" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:book_of_shadows" + tag: { } + } + type: "item" + }] + x: -13.0d + y: -1.5d + } + { + dependencies: ["771123B8D00124A3"] + id: "070D188916BFB699" + rewards: [ + { + id: "05346A629190A496" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5558625593922670" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4EB599CA0479BB44" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "hexerei:reading_glasses" + } + type: "item" + }] + x: -12.0d + y: -1.5d + } + ] + subtitle: ["A Witchery Style Magic Mod"] + title: "&3&oHexerei" +} diff --git a/minecraft/config/ftbquests/quests/chapters/immersive_aircraft.snbt b/minecraft/config/ftbquests/quests/chapters/immersive_aircraft.snbt new file mode 100644 index 0000000..4ecb8aa --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/immersive_aircraft.snbt @@ -0,0 +1,453 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "immersive_aircraft" + group: "69B9F7247002FE35" + icon: "immersive_aircraft:biplane" + id: "137165784E1CEC9A" + order_index: 2 + quest_links: [ ] + quests: [ + { + id: "04703FD1ABDB0F4C" + rewards: [ + { + exclude_from_claim_all: true + id: "00CD91C2BBFE3C94" + table_id: 1235506154212082407L + type: "random" + } + { + id: "03AD7144B157DB9D" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "6709BDFDA691003C" + item: "immersive_aircraft:gyrodyne" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + id: "0088ED553938E5FE" + rewards: [ + { + exclude_from_claim_all: true + id: "5F1851C7B37E3808" + table_id: 1235506154212082407L + type: "random" + } + { + id: "70D716822AE08131" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "0EE49A98B9376534" + item: "immersive_aircraft:biplane" + type: "item" + }] + x: -2.0d + y: 0.0d + } + { + id: "42ED42D0566CD7CC" + rewards: [ + { + exclude_from_claim_all: true + id: "0625FF6D1A759B2F" + table_id: 1235506154212082407L + type: "random" + } + { + id: "1D3170EBC9BC6D84" + type: "xp" + xp: 100 + } + ] + subtitle: "Slow but easy to maneuver." + tasks: [{ + id: "1512CEA4C5439313" + item: "immersive_aircraft:airship" + type: "item" + }] + x: -2.0d + y: 1.0d + } + { + id: "732E63D8FE0AF497" + rewards: [ + { + exclude_from_claim_all: true + id: "6605E8C9F21F1645" + table_id: 1235506154212082407L + type: "random" + } + { + id: "64CEE988C10D21D6" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "2A1C92BBFCB54F29" + item: "immersive_aircraft:cargo_airship" + type: "item" + }] + x: 0.0d + y: 3.0d + } + { + id: "01B1A529336DC9BE" + rewards: [ + { + exclude_from_claim_all: true + id: "0C315A87323C28A7" + table_id: 1235506154212082407L + type: "random" + } + { + id: "5AC9EB17A22CBB7E" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "5990D43CBE32DEAA" + item: "immersive_aircraft:quadrocopter" + type: "item" + }] + x: -1.0d + y: -1.0d + } + { + id: "5FFC873410BD7448" + rewards: [ + { + exclude_from_claim_all: true + id: "07DDF4C6E14E231C" + table_id: 1235506154212082407L + type: "random" + } + { + id: "162F8BD54D1B5568" + type: "xp" + xp: 100 + } + ] + subtitle: "A bulkier version of the spyglass." + tasks: [{ + id: "55CAD6B57FC60B25" + item: "immersive_aircraft:telescope" + type: "item" + }] + x: 2.0d + y: 1.0d + } + { + id: "21C4B59934B85DAD" + rewards: [ + { + exclude_from_claim_all: true + id: "0B9673A74F3A84C1" + table_id: 1235506154212082407L + type: "random" + } + { + id: "33BA41DF9C9FE87D" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "156FFA9D452742D7" + item: "immersive_aircraft:bomb_bay" + type: "item" + }] + x: 1.0d + y: -1.0d + } + { + id: "2C09A60F304C13BD" + rewards: [ + { + exclude_from_claim_all: true + id: "76560AD0072DF1F7" + table_id: 1235506154212082407L + type: "random" + } + { + id: "2CF27D1FB2C4312C" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "3546CB010F9D07CE" + item: "immersive_aircraft:heavy_crossbow" + type: "item" + }] + x: 2.0d + y: 2.0d + } + { + id: "03C41257CB0FCC91" + rewards: [ + { + exclude_from_claim_all: true + id: "5826FC2E7AB97D5E" + table_id: 1235506154212082407L + type: "random" + } + { + id: "0E0A8A49C6D453BB" + type: "xp" + xp: 100 + } + ] + subtitle: "Rapid-firing cannon powered by gunpowder." + tasks: [{ + id: "3B8C0FDE37D895B3" + item: "immersive_aircraft:rotary_cannon" + type: "item" + }] + x: 2.0d + y: 0.0d + } + { + id: "7D7950020A35B2F7" + rewards: [ + { + exclude_from_claim_all: true + id: "4D576FD9849F0545" + table_id: 1235506154212082407L + type: "random" + } + { + id: "0F84D115DE200F34" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "0738869CD2185ECB" + item: "immersive_aircraft:enhanced_propeller" + type: "item" + }] + x: -1.0d + y: 0.0d + } + { + id: "561B2E5FD05E494A" + rewards: [ + { + exclude_from_claim_all: true + id: "7C968CA3FE437263" + table_id: 1235506154212082407L + type: "random" + } + { + id: "20840041E5BED5DF" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "7EF0E1738B775FCB" + item: "immersive_aircraft:eco_engine" + type: "item" + }] + x: -1.0d + y: 1.0d + } + { + id: "781390CC2B2CA30D" + rewards: [ + { + exclude_from_claim_all: true + id: "3C5B040F5F3B8109" + table_id: 1235506154212082407L + type: "random" + } + { + id: "6349A635818DD39F" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "7D8D2D9B0193B9D2" + item: "immersive_aircraft:nether_engine" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + id: "3BF12B92822A7263" + rewards: [ + { + exclude_from_claim_all: true + id: "11EE49EF427F264C" + table_id: 1235506154212082407L + type: "random" + } + { + id: "231EC867270B9FBE" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "1C335F5092D168D8" + item: "immersive_aircraft:steel_boiler" + type: "item" + }] + x: 0.0d + y: 2.0d + } + { + id: "21DD4BAC193AF5F4" + rewards: [ + { + exclude_from_claim_all: true + id: "7E3E92ECB9962BC0" + table_id: 1235506154212082407L + type: "random" + } + { + id: "33DFFDD74FEACF02" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "3439586F06CBDA13" + item: "immersive_aircraft:industrial_gears" + type: "item" + }] + x: 1.0d + y: 0.0d + } + { + id: "1B7A49364331A2D0" + rewards: [ + { + exclude_from_claim_all: true + id: "5A36ECA5EED46A8D" + table_id: 1235506154212082407L + type: "random" + } + { + id: "22803616E0DDA2A1" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "6C8440E1214AF862" + item: "immersive_aircraft:sturdy_pipes" + type: "item" + }] + x: 0.0d + y: 1.0d + } + { + id: "57FC56C587D63B40" + rewards: [ + { + exclude_from_claim_all: true + id: "2A81B975634BEF3A" + table_id: 1235506154212082407L + type: "random" + } + { + id: "0B87200A77593693" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "1B62AE7BBC36323F" + item: "immersive_aircraft:gyroscope" + type: "item" + }] + x: 1.0d + y: 2.0d + } + { + id: "535616692879E24D" + rewards: [ + { + exclude_from_claim_all: true + id: "321EBAE13E368F6C" + table_id: 1235506154212082407L + type: "random" + } + { + id: "532E91D9D4AD71C6" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "1395AA01B5134C46" + item: "immersive_aircraft:hull_reinforcement" + type: "item" + }] + x: -1.0d + y: 2.0d + } + { + id: "74CBC43F0374705C" + rewards: [ + { + exclude_from_claim_all: true + id: "58109845D568C6F8" + table_id: 1235506154212082407L + type: "random" + } + { + id: "42E6BBB3A5E201EB" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "75FE5E1A70F67313" + item: "immersive_aircraft:improved_landing_gear" + type: "item" + }] + x: 1.0d + y: 1.0d + } + { + id: "6A9D6677D4E914A8" + rewards: [ + { + exclude_from_claim_all: true + id: "635C70BACD784C51" + table_id: 1235506154212082407L + type: "random" + } + { + id: "56A66D24D2BC418F" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "433F4FE6CEB062D7" + item: "immersive_aircraft:warship" + type: "item" + }] + x: -2.0d + y: 2.0d + } + ] + title: "&2&oimmersive Aircraft" +} diff --git a/minecraft/config/ftbquests/quests/chapters/immersive_engineering.snbt b/minecraft/config/ftbquests/quests/chapters/immersive_engineering.snbt new file mode 100644 index 0000000..e0efa6b --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/immersive_engineering.snbt @@ -0,0 +1,3838 @@ +{ + autofocus_id: "39C8CD6102B26BFE" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "immersive_engineering" + group: "69B9F7247002FE35" + icon: "immersiveengineering:workbench" + id: "274D317B89DAB373" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 0.0d + y: -8.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 1.0d + y: -8.5d + } + { + click: "https://www.youtube.com/watch?v=daGgkT0pECk" + height: 3.0d + hover: ["YouTube Tutorial"] + image: "kubejs:textures/item/immer_tutorial.png" + rotation: 0.0d + width: 3.0d + x: -13.321428571428584d + y: -9.232142857142861d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -7.571428571428569d + y: -10.303571428571434d + } + ] + order_index: 5 + quest_links: [ ] + quests: [ + { + dependencies: ["2F8B1B5084313565"] + id: "774B1D4152A0B4ED" + rewards: [{ + exclude_from_claim_all: true + id: "3488682AAD7A3FB3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "20C035B018336E50" + item: { + Count: 1 + id: "immersiveengineering:hammer" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.0d + y: -8.5d + } + { + dependencies: ["774B1D4152A0B4ED"] + id: "7AEE26C5734D4C0D" + rewards: [{ + exclude_from_claim_all: true + id: "5E3B42DF3B33A408" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "500C93B20B6FAAEB" + item: { + Count: 1 + id: "immersiveengineering:wirecutter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: -10.0d + } + { + dependencies: ["7AEE26C5734D4C0D"] + id: "3EC13E3F2F7804B4" + rewards: [{ + exclude_from_claim_all: true + id: "3C5BC2581174E15A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2BBF16745D8590FA" + item: "immersiveengineering:screwdriver" + type: "item" + }] + x: -3.5d + y: -10.0d + } + { + dependencies: ["5BACA82D1436C781"] + description: [ + "&2Immersive Engineering&r is a tech mod." + "" + "Overall, it's about &o&brealism-inspired&r technology. It adds a number of structures that create a more realistic setting for power generation using the &cRF&r system." + "" + "It is best known for its multiblock machines, characterized by their &3Industrial&r look. Both single and multiblock machines operate on &o&b3&r Tiers of &cPower&r, &elow&r voltage being &o&b256&r &cRF&r/t, &9medium&r being &o&b1,024&r &cRF&r/t and &dhigh&r corresponding to &o&b4,096&r &cRF&r/t." + ] + id: "2F8B1B5084313565" + min_width: 310 + rewards: [{ + exclude_from_claim_all: true + id: "1758FD99D0759CD1" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oMechanical Crafter&r quest*" + tasks: [{ + icon: "immersiveengineering:manual" + id: "5C318DBAF7CF4826" + type: "checkmark" + }] + title: "Welcome to &eImmersive Engineering" + x: -8.25d + y: -9.75d + } + { + dependencies: ["316399F0B5F729CA"] + description: [ + "The &2Engineer's Workbench&r is a &nprofessional&r worktable for the &o&beducated engineer&r." + "" + "It is widely used to construct the items described in &9Engineer's Blueprints&r. A wide variety of blueprints &o&bcan be crafted&r, as detailed in the respective manual entry, whereas a few select ones can &o&bonly be discovered&r in the world or &o&bpurchased from villagers&r." + "" + "To use a &o&bblueprint&r in the &2Workbench&r, put it in the slot on the left of the &o&bGUI&r and the &o&bnecessary ingredients&r in the &o&bsix slots&r in the middle. The resulting items can then be &o&bretrieved&r from the right side. Hovering your mouse over these output slots will &o&binform you exactly which materials&r are needed for each item." + ] + id: "39C8CD6102B26BFE" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "7ABB0E2D9289DC04" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5D57E16F56AE2326" + item: "immersiveengineering:workbench" + type: "item" + }] + x: 0.5d + y: -5.5d + } + { + dependencies: ["174228D87BAF69B2"] + id: "6CDC36440B2D017E" + rewards: [{ + exclude_from_claim_all: true + id: "19DC0C0EEB4C4467" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3AF957724ABA0601" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 23 + } + } + id: "immersiveengineering:toolbox" + } + type: "item" + }] + x: -2.5d + y: -10.0d + } + { + dependencies: ["03C417DE427BC2BA"] + id: "0884D6C10B1047A2" + rewards: [{ + exclude_from_claim_all: true + id: "30286F0D37BAD5D9" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "7BF3E3F14FFD73F3" + item: "immersiveengineering:cloche" + type: "item" + }] + x: 4.5d + y: -5.5d + } + { + dependencies: ["774B1D4152A0B4ED"] + description: [ + "The &3Coke Oven&r is the first &o&bimportant&r machine you will need to create in order to proceed with &eImmersive Engineering&r." + "" + "It is made with &3Coke Bricks&r. To form a &3Coke Oven&r, arrange &o&b27&r of these blocks in a &o&b3x3x3&r solid cube, and &aright-click&r &o&bone of the sides' center blocks&r with an &6Engineer's Hammer&r." + "" + "The Coke Oven is easy to use; putting &0Coal&r (or a &0Block of Coal&r) in the &nleft slot&r in the &o&bGUI&r will &astart&r it. After about &o&b50&r seconds, that &0Coal&r will produce &o&b1&r &3Coal Coke&r and &o&b500&r mB of &dCreosote Oil&r. The &0Block of Coal&r, it will take about &o&b450&r seconds and produce &o&b1&r &3Block of Coal Coke&r and &o&b5,000&r mB of &dCreosote Oil&r, making it more efficient." + "" + "Wooden logs can be used in a &aCoke Oven&r as well. After about &o&b45&r seconds, that &aWood&r will produce one &8Charcoal&r and &o&b250&r mB of &dCreosote Oil&r." + "" + "Items can be inserted into the &ntop &ror sides or removed from the &nbottom&r of the &3Coke Oven&r automatically using a &6Hopper&r or similar item &o&btransportation&r block." + "" + "To remove &dCreosote Oil&r from the &dCoke Oven&r, placing empty portable &o&bfluid containers&r in the top-right corner slot will fill it with &o&b1,000&r mB of &dCreosote Oil&r, transferring the filled container to the bottom-right slot of the &o&bGUI&r." + "" + "To automatically remove &dCreosote Oil&r, a &ePump&r can be used and placed directly against the &3Coke Oven&r. The side of the &ePump&r facing away from the &3Coke Oven&r can be &o&bhammered&r with an &6Engineer's Hammer&r to &coutput&r and &b&ohammered&r while &asneaking&r to configure the (inaccessible) opposite side to accept &9input&r. The &ePump&r does need to be &cpowered&r and requires a &cRedstone&r signal." + ] + icon: "immersiveengineering:coke_oven" + id: "0DA972D85BB3C86C" + min_width: 570 + rewards: [{ + exclude_from_claim_all: true + id: "17E02622975EBF68" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Hot Topic!" + tasks: [{ + count: 27L + id: "7BDC06A5B2C203AA" + item: "immersiveengineering:cokebrick" + type: "item" + }] + title: "&aCoke Oven" + x: -7.0d + y: -7.0d + } + { + dependencies: ["0DA972D85BB3C86C"] + description: [ + "The &4Crude Blast Furnace&r is used to increase the &0Carbon&r contents in &7Iron&r, turning it into &3Steel&r. To achieve this, only pure, &o&bhigh-carbon fuels&r may be used for the furnace, specifically &3Coal Coke&r and &8Charcoal&r. This operation takes &o&b60&r seconds per ingot. One &3Coal Coke&r burns long enough to smelt one ingot, which produces one &eSlag&r piece. A &3Block of Coal Coke&r smelts &o&b10&r ingots (so it's &o&b11.11&r% more fuel efficient). A &7Block of Iron&r smelts in less time than &o&b9&r single pieces." + "" + "Along with &3Steel&r, the furnace will also create &eSlag&r, which you must remove or the furnace will cease to function. While it is technically a &8waste&r product, there are various ways to &o&brecycle&r it." + "" + "To form a &4Blast Furnace&r, arrange &o&b27&r &4Blast Bricks&r in a &o&b3x3x3&r cube, and &aright click&r &o&bone of the sides' center blocks&r with an &6Engineer's Hammer&r." + "" + "The &4Crude Blast Furnace&r is not automateable. All in- and &coutputs&r must be arranged manually through its &o&bGUI&r. If you want to &o&bautomate&r the creation of &3Steel&r, you should probably look into creating an &2Improved Blast Furnace&r. &aHoppers&r, &cConveyor Belts&r and other item transporters &o&bcan't&r hook up to the &4Crude Blast Furnace&r, but they can with the &2Improved Blast Furnace&r." + ] + icon: "immersiveengineering:blast_furnace" + id: "449C41A3AFBBE8E9" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "2820D239D50D19A2" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 27L + id: "4C382E60831988A1" + item: "immersiveengineering:blastbrick" + type: "item" + }] + title: "&aCrude Blast Furnace" + x: -7.0d + y: -5.5d + } + { + dependencies: ["449C41A3AFBBE8E9"] + description: [ + "The &dAlloy Kiln&r is a &o&bsimple furnace&r made out of heat resistant sandstone and bricks." + "" + "Within it, temperatures are &nhigh enough&r to allow metals to be &o&bmelted into a fluid state&r and mixed, creating an &o&balloy&r." + "" + "This allows the creation of &nimportant alloys&r like &eElectrum&r and &aConstantan&r without requiring the tedious mixing of dusts." + "" + "To form the &dAlloy Kiln&r, arrange &o&b8&r of the &o&bKiln Bricks&r in a &o&b2x2x2&r cube, and &eRight-click&r one of the sides' blocks with an &6Engineer's Hammer&r." + ] + icon: "immersiveengineering:alloy_smelter" + id: "5921FE935A2D7325" + min_width: 310 + rewards: [{ + exclude_from_claim_all: true + id: "61A9E44CE0771F2B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 8L + id: "5755A435D3A62F9C" + item: "immersiveengineering:alloybrick" + type: "item" + }] + title: "&aAlloy Kiln" + x: -7.0d + y: -4.0d + } + { + dependencies: ["449C41A3AFBBE8E9"] + description: [ + "The &2Improved Blast Furnace&r is the upgraded tier of the &4Crude Blast Furnace&r, capable of &o&bautomation&r and also of greater speeds once &9Blast Furnace Preheaters&r are added." + "" + "As an upgrade of the &4Crude Blast Furnace&r, the original &cBlast Bricks&r may be upgraded to &cReinforced Blast Bricks&r by adding a &aSteel Plate&r." + "" + "The &2Improved Blast Furnace&r is created by assembling &o&b27&r &cReinforced Blast Bricks&r in a &o&b3x3&r cube and placing a &7Hopper&r on the top-center block. Using an &6Engineer's Hammer&r on the &o&bfront face&r completes the structure." + "" + "The &2Improved Blast Furnace&r has hatches to &o&bautomatically&r export &3Steel&r and &eSlag&r into adjacent &ninventories&r. &3Coal Coke&r and &bIron&r may be dropped into the &ntop&r of the furnace. &3Steel&r leaves through the &nfront&r, and &eSlag&r leaves through the &nback&r. The holes on either side are for adding the &9Blast Furnace Preheaters&r." + ] + icon: "immersiveengineering:advanced_blast_furnace" + id: "0A0D08D0032BAF5B" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "7E255C94750F8FC5" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 27L + id: "6357A4BD83AD9BC6" + item: "immersiveengineering:blastbrick_reinforced" + type: "item" + } + { + id: "626FA6F700BF5698" + item: "minecraft:hopper" + type: "item" + } + ] + title: "&aImproved Blast Furnace" + x: -5.5d + y: -5.5d + } + { + dependencies: ["62EB37B4A020EF65"] + description: [ + "The &aEngineer's Crafting Table&r is a &o&bsimple upgrade&r to the normal &9Crafting Table&r. In addition to the polished, treated wood surface, it &nkeeps the ingredient inside&r the crafting grid when the &o&binterface is closed&r." + "" + "It also features a &o&bsmall drawer&r to store some of your &o&bcrafting components&r." + ] + id: "316399F0B5F729CA" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "7716F53DB4FDEAC5" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "67F741F4CF386668" + item: "immersiveengineering:craftingtable" + type: "item" + }] + x: -1.5d + y: -7.0d + } + { + dependencies: ["774B1D4152A0B4ED"] + id: "45A6D0EB9BD00422" + rewards: [{ + exclude_from_claim_all: true + id: "4B7639D8058A19EE" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2C80FF7983314472" + item: "immersiveengineering:watermill" + type: "item" + }] + x: -12.5d + y: -7.0d + } + { + dependencies: ["45A6D0EB9BD00422"] + id: "34A02E18A7E09F28" + rewards: [{ + exclude_from_claim_all: true + id: "0D14B956E12CB291" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "201A9374BCAD69B9" + item: "immersiveengineering:windmill" + type: "item" + }] + x: -13.5d + y: -7.0d + } + { + dependencies: ["45A6D0EB9BD00422"] + id: "68136624609D6D1A" + rewards: [{ + exclude_from_claim_all: true + id: "1F60781C8B6DD66A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0B8E4182FD7DC609" + item: "immersiveengineering:dynamo" + type: "item" + }] + x: -13.5d + y: -5.5d + } + { + dependencies: ["68136624609D6D1A"] + id: "612BB1D116F3B1A9" + rewards: [{ + exclude_from_claim_all: true + id: "54E9EC7A9A397811" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 4L + id: "59D765C3543EA0D2" + item: "immersiveengineering:connector_lv" + type: "item" + } + { + count: 8L + id: "79457F98DFB88BC1" + item: "immersiveengineering:connector_lv_relay" + type: "item" + } + ] + x: -12.5d + y: -4.0d + } + { + dependencies: ["68136624609D6D1A"] + id: "4FC7D81A4EB93629" + rewards: [{ + exclude_from_claim_all: true + id: "702C1D1061B98517" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 4L + id: "07E4052EB15447C1" + item: "immersiveengineering:connector_mv" + type: "item" + } + { + count: 8L + id: "1D8AE0629E9972F3" + item: "immersiveengineering:connector_mv_relay" + type: "item" + } + ] + x: -13.5d + y: -4.0d + } + { + dependencies: ["68136624609D6D1A"] + id: "61E95FF8935D144C" + rewards: [{ + exclude_from_claim_all: true + id: "0BB4FA964F9B06C1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 4L + id: "3190D14AEFD0B098" + item: "immersiveengineering:connector_hv" + type: "item" + } + { + count: 8L + id: "0B73AA64D50A2EF1" + item: "immersiveengineering:connector_hv_relay" + type: "item" + } + ] + x: -14.5d + y: -4.0d + } + { + dependencies: ["34A02E18A7E09F28"] + id: "56B290A06D1D8F08" + rewards: [{ + exclude_from_claim_all: true + id: "0D3D787585E5793E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "7C89909C5F4EC994" + item: "immersiveengineering:windmill_sail" + type: "item" + }] + x: -14.5d + y: -7.0d + } + { + dependencies: ["612BB1D116F3B1A9"] + id: "7C5BD576678F93F2" + rewards: [{ + exclude_from_claim_all: true + id: "42190625D6D70925" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "08BFBB5DD192623A" + item: "immersiveengineering:capacitor_lv" + type: "item" + }] + x: -12.5d + y: -2.5d + } + { + dependencies: ["4FC7D81A4EB93629"] + id: "408666D28CDAC1C0" + rewards: [{ + exclude_from_claim_all: true + id: "2418F9E40C0C1795" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3C26F27F226ECD96" + item: "immersiveengineering:capacitor_mv" + type: "item" + }] + x: -13.5d + y: -2.5d + } + { + dependencies: ["61E95FF8935D144C"] + id: "2881CCC6BC14F7F8" + rewards: [{ + exclude_from_claim_all: true + id: "7F7F33FD0093A957" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0DF9FA066EB0FE53" + item: "immersiveengineering:capacitor_hv" + type: "item" + }] + x: -14.5d + y: -2.5d + } + { + dependencies: ["7C5BD576678F93F2"] + id: "126E307DC35BF444" + rewards: [{ + exclude_from_claim_all: true + id: "5960E263470C7293" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 4L + id: "351489AA5A24AC49" + item: "immersiveengineering:wirecoil_copper" + type: "item" + } + { + count: 4L + id: "2C62B8481B8DD35A" + item: "immersiveengineering:wirecoil_copper_ins" + type: "item" + } + ] + x: -12.5d + y: -1.0d + } + { + dependencies: ["408666D28CDAC1C0"] + id: "25244CCCCE484427" + rewards: [{ + exclude_from_claim_all: true + id: "52A683CA74A77149" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 4L + id: "10E222B8E28D0EF2" + item: "immersiveengineering:wirecoil_electrum" + type: "item" + } + { + count: 4L + id: "7E496C83F901F190" + item: "immersiveengineering:wirecoil_electrum_ins" + type: "item" + } + ] + x: -13.5d + y: -1.0d + } + { + dependencies: ["2881CCC6BC14F7F8"] + id: "5FA0C99BF80AA097" + rewards: [{ + exclude_from_claim_all: true + id: "184EC82CE5BBA053" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 4L + id: "57D74B29F01D6B55" + item: "immersiveengineering:wirecoil_steel" + type: "item" + } + { + count: 4L + id: "1D7DE08764D44592" + item: "immersiveengineering:wirecoil_redstone" + type: "item" + } + ] + x: -14.5d + y: -1.0d + } + { + dependencies: ["126E307DC35BF444"] + id: "05926A9C5859717D" + rewards: [{ + exclude_from_claim_all: true + id: "6DD3DD4629D9B2A3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 4L + id: "7448BFFC67E75C97" + item: "immersiveengineering:wirecoil_structure_rope" + type: "item" + } + { + count: 4L + id: "4B9DDA15D97544AF" + item: "immersiveengineering:wirecoil_structure_steel" + type: "item" + } + ] + x: -12.0d + y: 0.0d + } + { + dependencies: ["0A0D08D0032BAF5B"] + id: "47709C807D643108" + rewards: [{ + exclude_from_claim_all: true + id: "352A141B79FFE8A3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 2L + id: "686223212991043C" + item: "immersiveengineering:blastfurnace_preheater" + type: "item" + }] + x: -4.5d + y: -5.5d + } + { + dependencies: ["774B1D4152A0B4ED"] + hide_dependency_lines: true + id: "010775AE2C4FFF0F" + rewards: [{ + exclude_from_claim_all: true + id: "26CD272E54D7158C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + count: 8L + id: "6E77D88CF5B2ACBB" + item: "immersiveengineering:conveyor_basic" + type: "item" + }] + x: -0.5d + y: -9.0d + } + { + dependencies: ["010775AE2C4FFF0F"] + hide_dependency_lines: true + id: "2C02528FF8BDF5AC" + rewards: [{ + exclude_from_claim_all: true + id: "58B45B58D77AAAF1" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "4944FAB8A78EE0FB" + item: "immersiveengineering:conveyor_dropper" + type: "item" + }] + x: 0.5d + y: -9.0d + } + { + dependencies: ["2C02528FF8BDF5AC"] + hide_dependency_lines: true + id: "7FF68EAFD478A4DA" + rewards: [{ + exclude_from_claim_all: true + id: "65BFFF07CF31458F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + count: 3L + id: "4B55DC110060CE35" + item: "immersiveengineering:conveyor_splitter" + type: "item" + }] + x: 1.5d + y: -9.0d + } + { + dependencies: ["7FF68EAFD478A4DA"] + hide_dependency_lines: true + id: "3A6650812CFEE8E3" + rewards: [{ + exclude_from_claim_all: true + id: "7CFADE201E3396C5" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + count: 3L + id: "41C149D6E3DF9F81" + item: "immersiveengineering:conveyor_vertical" + type: "item" + }] + x: 0.0d + y: -9.5d + } + { + dependencies: ["3A6650812CFEE8E3"] + hide_dependency_lines: true + id: "5DBF51806B6682AF" + rewards: [{ + exclude_from_claim_all: true + id: "76FE376808F24FA9" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "069FFD25AC53348B" + item: "immersiveengineering:conveyor_redstone" + type: "item" + }] + x: 1.0d + y: -9.5d + } + { + dependencies: ["5DBF51806B6682AF"] + hide_dependency_lines: true + id: "17A81B79712C25FD" + rewards: [{ + exclude_from_claim_all: true + id: "029623685400F59D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "296467CC7D4EF07A" + item: "immersiveengineering:conveyor_extract" + type: "item" + }] + x: 0.5d + y: -10.0d + } + { + dependencies: ["7F00E38513D06DF9"] + id: "63768F7BC7BD0188" + rewards: [{ + exclude_from_claim_all: true + id: "36FD296B8AA123BF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3319B3D746C5AE5F" + item: "immersiveengineering:fluid_pump" + type: "item" + }] + x: 4.5d + y: -3.5d + } + { + dependencies: ["0884D6C10B1047A2"] + id: "7F00E38513D06DF9" + rewards: [{ + exclude_from_claim_all: true + id: "018C37773BDDB051" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 8L + id: "70343EB62D023CCA" + item: "immersiveengineering:fluid_pipe" + type: "item" + }] + x: 4.5d + y: -4.5d + } + { + dependencies: ["39C8CD6102B26BFE"] + id: "1AFBE29BB6CC2C0D" + rewards: [{ + exclude_from_claim_all: true + id: "0A4FE5396F964F2D" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "27B4C42FC8A60009" + item: "immersiveengineering:component_iron" + type: "item" + } + { + id: "63D2991D4E23BCC7" + item: "immersiveengineering:component_steel" + type: "item" + } + ] + title: "Mechanical Componets" + x: 1.5d + y: -3.0d + } + { + dependencies: ["3EC13E3F2F7804B4"] + id: "174228D87BAF69B2" + rewards: [{ + exclude_from_claim_all: true + id: "66180F5A36984F89" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3BEDA424DCC8EB6F" + item: "immersiveengineering:voltmeter" + type: "item" + }] + x: -4.5d + y: -10.0d + } + { + dependencies: ["39C8CD6102B26BFE"] + id: "40DAC53EDC8E99ED" + rewards: [{ + exclude_from_claim_all: true + id: "151D450220A1E140" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "140FD8135B050589" + item: "immersiveengineering:mold_plate" + type: "item" + } + { + id: "3D91009F483E0672" + item: "immersiveengineering:mold_gear" + type: "item" + } + { + id: "2EC9B016A9034B68" + item: "immersiveengineering:mold_wire" + type: "item" + } + ] + x: -0.2857142857142776d + y: -3.375d + } + { + dependencies: ["39C8CD6102B26BFE"] + id: "0DB786DDE5B01845" + rewards: [{ + exclude_from_claim_all: true + id: "61081BDBA1E579D7" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "453E862D69DC4CD2" + item: "immersiveengineering:charging_station" + type: "item" + }] + x: 2.0d + y: -4.5d + } + { + dependencies: ["0DB786DDE5B01845"] + id: "494269546D4E54AC" + rewards: [{ + exclude_from_claim_all: true + id: "5EA98B0B77CCEDBF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "43D24B7AB8693A52" + item: "immersiveengineering:electric_lantern" + type: "item" + }] + x: 3.0d + y: -5.0d + } + { + dependencies: ["0DB786DDE5B01845"] + id: "0EB15268A3577974" + rewards: [{ + exclude_from_claim_all: true + id: "3362FA8C171C0FBD" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "46B4F115F2767D06" + item: "immersiveengineering:breaker_switch" + type: "item" + }] + x: 2.5d + y: -3.5d + } + { + dependencies: ["0DB786DDE5B01845"] + id: "128A39BB4A423C00" + rewards: [{ + exclude_from_claim_all: true + id: "7458807FB3D29868" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "308ADA1E55A23064" + item: "immersiveengineering:lantern" + type: "item" + }] + x: 3.5d + y: -4.0d + } + { + dependencies: ["0DA972D85BB3C86C"] + id: "62EB37B4A020EF65" + rewards: [{ + exclude_from_claim_all: true + id: "3DCA414AACCBE7B2" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "614AE07607D504FC" + item: "immersiveengineering:creosote_bucket" + type: "item" + }] + x: -5.5d + y: -7.0d + } + { + dependencies: ["735412C77BE7A82A"] + description: [ + "The &6Metal Press&r is a &o&b3×1×3&r multiblock machine. It stamps &ePlates&r, &dRods&r, and &2Wires&r out of &o&bmetal ingots&r." + "" + "After the blocks are in place, use an &dEngineer's Hammer&r on the &o&bpiston&r to complete the multiblock." + "" + "&ePower&r is &ainput&r through the &ntop&r, and items through the &cconveyors&r, obviously in the &o&bdirection of movement&r. The lower middle block is the &credstone control port&r, &eRight-clicking&r it with an &4Engineer's Screwdriver&r allows you to &o&binvert&r the &nredstone control&r." + ] + icon: "immersiveengineering:metal_press" + id: "2774D37126FE6785" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "5920D689215E5E79" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "The Metal Press is a 3x1x3 multi-block" + tasks: [ + { + id: "236B9F42E0351902" + item: "minecraft:piston" + type: "item" + } + { + count: 2L + id: "4335796AE6BCA8CD" + item: "immersiveengineering:steel_scaffolding_standard" + type: "item" + } + { + id: "3E689D69A5B9BA62" + item: "immersiveengineering:heavy_engineering" + type: "item" + } + { + id: "626D394EC9364504" + item: "immersiveengineering:rs_engineering" + type: "item" + } + { + count: 2L + id: "0A71774E0DB9BCA3" + item: "immersiveengineering:conveyor_basic" + type: "item" + } + ] + title: "&aMetal Press" + x: -8.5d + y: -1.0d + } + { + dependencies: ["1DCDA89DA49A8EF0"] + description: [ + "&eHigh-Voltage&r architecture might be &o&bfascinating&r, but it's not very useful unless you have &na generator&r that can actually create the &o&brequired output for it&r." + "" + "The &6Diesel Generator&r is one of the few ways of generating this sort of &eenergy&r. It is created as a complex &o&b3x5x3&r multiblock structure and will run off of &2Biodiesel&r or other types of &o&bcombustible fuel&r. Due to its high &coutput&r, it will work through fuel &o&bvery quickly&r, so make sure you have a &o&bsufficient fuel production&r to run it." + "" + "The structure is built from &dEngineering&r, &eGenerator&r and &cRadiator&r blocks as well as &9Fluid Pipes&r and &3Scaffolding&r. After it is fully arranged, &eRight-clicking&r the &o&bcentral Generator&r with an &dEngineer's Hammer&r will complete the multiblock structure." + "" + "&2Fuel&r is to be &ainput&r at the &nbottom&r corners of the &6Generator&r, whereas energy will be &coutput&r to up to &o&b3&r &aconnections&r on the &ntop&r. The &o&b4,096&rFlux/t the &o&bgenerator outputs&r will be &nsplit&r between &nall&r &o&bconnected points&r. The generator &o&bwill only run&r when &nat least&r one &o&boutput can accept energy&r." + "" + "The small terminal on the side will turn &coff&r the generator if supplied with a &credstone signal&r, this behavior can be &o&binverted&r by use of the &4Engineer's Screwdriver&r." + ] + icon: "immersiveengineering:diesel_generator" + id: "18A75E664BAC6425" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "0B28B120D53F93A4" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + subtitle: "The Diesel Generator is a 3x5x3 multi-block" + tasks: [ + { + count: 5L + id: "2BCB1479405676BE" + item: "immersiveengineering:fluid_pipe" + type: "item" + } + { + count: 4L + id: "2FE072415255F25C" + item: "immersiveengineering:generator" + type: "item" + } + { + count: 13L + id: "2861D7C9D50903B3" + item: "immersiveengineering:heavy_engineering" + type: "item" + } + { + count: 9L + id: "62A89BC9363C275C" + item: "immersiveengineering:radiator" + type: "item" + } + { + id: "332193AD8263C2A6" + item: "immersiveengineering:rs_engineering" + type: "item" + } + { + count: 6L + id: "25408BD850BBFFB6" + item: "immersiveengineering:steel_scaffolding_standard" + type: "item" + } + ] + title: "&aDiesel Generator" + x: -2.607142857142861d + y: -1.732142857142854d + } + { + dependencies: ["47ACCCE2F34C5B99"] + description: [ + "The &6Arc Furnace&r is a &o&b5×5×5&r multiblock machine used for &o&bsmelting ores&r and &o&bgrits&r into &o&bingots&r, creating &o&balloys&r including &3steel&r, and &o&brecycling&r certain tools and armor. To form the structure, &eRight-click&r the &ncauldron&r with an &dEngineer's Hammer&r." + "" + "For it to operate, the &6Arc Furnace&r needs &epower&r and &o&b3&r working &0Graphite Electrodes&r. Alloy recipies need &o&badditional additives&r. Most recipes create &7Slag&r as a byproduct. &7Slag&r must be &nremoved&r from the machine or it will cease to &o&bfunction&r, and &o&bdegrading electrodes&r need to be &nreplaced&r over time." + "" + "&eEnergy&r is input through the &o&b3&r &9connectors&r at the back, and supplying the &6control panel&r at the front with a &credstone signal&r will turn &noff&r the machine. &eRight-clicking&r the panel, '&o&bbucket&r' or vat will open the &o&binterface&r." + "" + "The &dInterface&r may look confusing upon first seeing it, but it's quite straight forward. The &o&b3&r slots &o&bat the top&r are for the &0Graphite Electrodes&r. The &o&b12&r slots on &o&bthe left&r are the input slots for &nmetals&r and &nores&r. The &o&b4&r slots on &o&bthe right&r are for \"&o&badditives&r\". An example of these would be adding &3Coke Dust&r to melting &7Iron&r in order to create &3Steel&r." + "" + "&eInputs&r and &aadditives&r are inserted through the &o&b2&r hatches at &o&bthe top&r of the structure, &einputs&r to &o&bthe left&r and &aadditives&r to &o&bthe right&r of the &nelectrodes&r. The &o&b7&r slots at &o&bthe bottom&r are &o&b6&r &coutput&r slots and a slot for &7slag&r. The &6Arc Furnace&r will &nautomatically&r push &coutput&r and &7slag&r to &o&bconnected inventories&r (this includes &4Conveyor Belts&r)." + ] + icon: "immersiveengineering:arc_furnace" + id: "7B7585BC5EAECAC7" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "21BB355A8AA2E27A" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "The Arc Furnace is a 5x5x5 multi-block" + tasks: [ + { + count: 8L + id: "44E948774E27956B" + item: "immersiveengineering:sheetmetal_steel" + type: "item" + } + { + count: 6L + id: "6B9C965372EF2FE0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "alltheores:steel_block" + } + type: "item" + } + { + count: 14L + id: "4ACA2B384E45BE54" + item: "immersiveengineering:slab_sheetmetal_steel" + type: "item" + } + { + count: 5L + id: "3E0AA8A437DCFA84" + item: "immersiveengineering:steel_scaffolding_standard" + type: "item" + } + { + count: 5L + id: "15781EC4B7875E56" + item: "immersiveengineering:heavy_engineering" + type: "item" + } + { + id: "3D445F6BFD571047" + item: "immersiveengineering:rs_engineering" + type: "item" + } + { + id: "0F72373CF9611103" + item: "minecraft:cauldron" + type: "item" + } + { + count: 10L + id: "291BC35A40CC4C8F" + item: "immersiveengineering:light_engineering" + type: "item" + } + { + count: 27L + id: "19BF1236C0B3D07B" + item: "immersiveengineering:blastbrick_reinforced" + type: "item" + } + ] + title: "&aArc Furnace" + x: -8.5d + y: -2.5d + } + { + dependencies: ["5921FE935A2D7325"] + description: [ + "The &2Crusher&r is a &o&b3×5×3&r multiblock. Crushing an ore is an &o&beffective way&r of &o&bincreasing&r their yield, for each ore creates &ntwo dusts&r which you can then smelt." + "" + "This &o&bindustrial-size crusher&r is a quick way of doing so. The machine's processing speed depends on the power supplied to it." + "" + "Applying a &credstone signal&r to the &o&bcontrol panel&r at the front will halt the crushers process, this behavior can be &ninverted&r by use of the &4Engineer's Screwdriver&r." + "" + "The structure is formed by &eRight+clicking&r the central block of the front with an &dEngineer's Hammer&r. The front is the wide side of the structure which has a &o&blight engineering block&r at the bottom." + "" + "However, it is &o&bnot only used&r for crushing ores. Every living being &o&bto fall into the machine&r will take grave &cdamage&r and the crusher will output the &o&brelevant drops&r. Likewise, all items that &o&bcannot be processed&r will be &ndestroyed&r." + ] + icon: "immersiveengineering:crusher" + id: "47ACCCE2F34C5B99" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "373E4CA702D3F00F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 10L + id: "1EFA66DBABC31C03" + item: "immersiveengineering:light_engineering" + type: "item" + } + { + count: 10L + id: "69EE28DD743D7EE6" + item: "immersiveengineering:steel_scaffolding_standard" + type: "item" + } + { + id: "2686404CCFC1FE9D" + item: "immersiveengineering:rs_engineering" + type: "item" + } + { + count: 8L + id: "135607605983DE1A" + item: "immersiveengineering:steel_fence" + type: "item" + } + { + count: 9L + id: "0F7389CCD75D3994" + item: "minecraft:hopper" + type: "item" + } + ] + title: "&aCrusher" + x: -7.0d + y: -2.5d + } + { + dependencies: ["78B6A586B9B0458C"] + description: [ + "The &2Excavator&r is one of the pinnacles of &o&bmodern engineering&r. It is able to &ndig up&r minerals from veins &o&binaccessible&r by normal mining." + "" + "In return however, the &2Excavator&r is a complex &o&b8x3x7&r multiblock structure which requires &o&b4,096&r&cRF&r/t in order to operate." + "" + "The &2Excavator&r is made of &o&btwo parts&r:" + "• The &9Bucket Wheel&r is the &o&bcenter part&r, and is formed by &eRight-Clicking&r with an &dEngineers Hammer&r on the the &nmiddle&r &3Block of Steel&r." + "• The &6Engine&r is the &o&bother part&r, and is formed by &eRight-clicking&r the &dEngineers Hammer&r on the &cHeavy Engineering Block&r in the &ncenter&r of the &o&bback side&r." + "" + "The &eenergy input&r for the &o&bengine&r is on &nits side&r, the &o&bback features&r a &credstone control panel&r and the &aitem output&r." + "" + "As the &2Excavator&r digs up &o&bores&r, the yield of the vein &o&bslowly decreases&r, but a &o&bvein of minerals&r can provide up to &o&b38,400&r blocks of ore." + ] + icon: "immersiveengineering:excavator" + id: "3AD4622409437713" + min_width: 470 + rewards: [{ + exclude_from_claim_all: true + id: "1BE962ED246751D1" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "The Excavator is a 8x3x7 multi-block" + tasks: [ + { + count: 4L + id: "1A62C725C298A89F" + item: "immersiveengineering:heavy_engineering" + type: "item" + } + { + count: 9L + id: "563A14DD29167D63" + item: "immersiveengineering:light_engineering" + type: "item" + } + { + id: "084F1DD8FFFCC65C" + item: "immersiveengineering:rs_engineering" + type: "item" + } + { + count: 3L + id: "6A276E00FC998336" + item: "immersiveengineering:radiator" + type: "item" + } + { + count: 16L + id: "6663ED14B8AF53B8" + item: "immersiveengineering:sheetmetal_steel" + type: "item" + } + { + count: 26L + id: "1A0164E7AA48A574" + item: "immersiveengineering:steel_scaffolding_standard" + type: "item" + } + { + count: 13L + id: "291BC297F060D699" + item: "alltheores:steel_block" + type: "item" + } + ] + title: "&aExcavator" + x: -4.0d + y: 0.5d + } + { + dependencies: ["735412C77BE7A82A"] + description: [ + "It is used to &o&bdetect&r and &o&banalyze&r &2Mineral Deposits&r that can be &o&bextracted&r by an &6Excavator&r." + "" + "The &6Core Sample Drill&r is placed as a &nsingle block&r but stands &o&b3&r blocks tall. The bottom block accepts (&cRF&r) &eenergy&r." + "" + "The &6Core Sample Drill&r takes &o&b10&r seconds by default to do its work (&o&b200&r ticks, &o&b8,000&r&cRF&r per use). When complete, it can be &eRight-clicked&r to receive a &dCore Sample&r." + "" + "The &o&bsample shows&r that how much &9water&r, &6lava&r or &eoil&r does this chunk have in &o&bmB&r, and what type of deposit &o&bthe chunk has&r. It is possible that the chunk &ndoes not&r have any of the &nliquids&r or &nminerals&r." + "" + "Hovering over the &6Core Sample Drill&r will show the chunk boundaries that it scans, in &6orange&r." + ] + id: "78B6A586B9B0458C" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "1CD5CEADBB1ACE8A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "7D5EE172CD3E35BD" + item: "immersiveengineering:sample_drill" + type: "item" + }] + title: "&aCore Sample Drill" + x: -5.5d + y: 0.5d + } + { + dependencies: ["774B1D4152A0B4ED"] + id: "03DBAC047E439AC4" + rewards: [{ + exclude_from_claim_all: true + id: "1CF8C37635578184" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "12D16EA1971994E5" + item: "immersiveengineering:rs_engineering" + type: "item" + }] + x: -5.5d + y: -8.5d + } + { + dependencies: ["03DBAC047E439AC4"] + id: "6A5ABE89DE5B977D" + rewards: [{ + exclude_from_claim_all: true + id: "744599890A4A29AE" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "02C171076C5E67FC" + item: "immersiveengineering:light_engineering" + type: "item" + }] + x: -4.5d + y: -8.5d + } + { + dependencies: ["6A5ABE89DE5B977D"] + id: "25EBB3837B49E752" + rewards: [{ + exclude_from_claim_all: true + id: "20951A554BEA7435" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "7E615576F2DF2ADD" + item: "immersiveengineering:heavy_engineering" + type: "item" + }] + x: -3.5d + y: -8.5d + } + { + dependencies: ["0DA972D85BB3C86C"] + id: "198000430D8AB9D8" + rewards: [{ + exclude_from_claim_all: true + id: "52737D6EBDDB6210" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3DFF037282746864" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:coal_coke)" + } + } + title: "Any #forge:coal_coke" + type: "item" + }] + x: -8.5d + y: -7.0d + } + { + dependencies: ["62EB37B4A020EF65"] + id: "576873A2E3A4D8ED" + rewards: [{ + exclude_from_claim_all: true + id: "3A7EE9498813C5A3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 16L + id: "079EF0BC98DD0605" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:treated_wood" + } + } + title: "Any Treated Wood" + type: "item" + }] + title: "The Treated Wood" + x: -4.5d + y: -7.0d + } + { + dependencies: ["316399F0B5F729CA"] + description: [ + "With the great speed and versatility of &cRedstone Wires&r and the unique properties of a &3Vacuum Tube&r, it's now possible to greatly the &o&breduce the footprint&r of &ncomplex redstone circuits&r." + "" + "Using the &9Circuit Table&r, you can create much &6smaller logic circuits&r. To do so, you will need a &o&bbackplane&r, some &o&bvacuum tubes&r and some solder like &o&blead&r or &o&bcopper wires&r. The table also needs to be supplied with energy through the input at its back." + "" + "Using the &o&bvarious components&r, you then &o&bselect&r the pattern of circuit you want to make and decide the &o&binput values&r, as well as the designated &coutput&r. The available &9in&r- and &coutputs&r are the &o&b16&r colored channels of a &cRedstone wire&r, as well as &o&b8&r \"&nRegisters&r\". These allow for a &o&btemporary storage&r of a value within the block that handles &o&bthe logic&r - more on this later." + "" + "After &o&bsetting the operator&r, &9in&r- and &coutputs&r, you see the required &o&blist of components&r next to the &o&binput slots&r on the left. The amount of components required depends on the &o&bcomplexity of the circuit&r, with &o&bNAND&r being the easiest &nto produce&r. As long as enough components are present, you can then take the &ncompleted circuit&r from &o&bthe output&r on the right." + "" + "&eHelpful shortcuts&r:" + "- When &o&bhovering over&r a &9in&r- or &coutput&r button, &o&bpress a numbered key&r to change it to the &nnumbered register&r. Press a &o&bletter&r to &o&bcycle&r through the &ncolors&r starting with that letter." + "- Pick up a &o&bfinished logic circuit&r and &eclick&r it on the &o&bcenter of the circuit table's&r interface to &ncopy&r the &o&binstructions&r to the table." + ] + id: "0933E0EF37133C32" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "0566F774776175BB" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "43004C78941976C9" + item: "immersiveengineering:circuit_table" + type: "item" + }] + x: -2.5d + y: -6.0d + } + { + dependencies: ["449C41A3AFBBE8E9"] + id: "566C0FA15F2021F1" + rewards: [{ + exclude_from_claim_all: true + id: "23BBB9F5432A4977" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 32L + id: "23D8DBFB41FF2A75" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:ingots/steel" + } + } + title: "Steel" + type: "item" + }] + title: "Steel Ingots" + x: -8.5d + y: -5.5d + } + { + dependencies: ["5921FE935A2D7325"] + id: "2D665540B859B8BE" + rewards: [{ + exclude_from_claim_all: true + id: "607545ABED398063" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "74E95EE78BA14CBA" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:ingots/brass)" + } + } + title: "Brass" + type: "item" + } + { + id: "0A7DD23F29FA6509" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:ingots/rose_gold)" + } + } + title: "Rose Gold" + type: "item" + } + { + id: "17A40B16BB399E70" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:ingots/invar)" + } + } + title: "Invar" + type: "item" + } + { + id: "58279BF25AB31A0B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:ingots/constantan)" + } + } + title: "Constantan" + type: "item" + } + { + id: "781628B94083FD6A" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:ingots/electrum)" + } + } + title: "Electrum" + type: "item" + } + { + id: "0D44639DCE8909C0" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:ingots/bronze)" + } + } + title: "Bronze" + type: "item" + } + ] + title: "Alloy Ingots" + x: -8.5d + y: -4.0d + } + { + dependencies: ["5921FE935A2D7325"] + id: "0700605567B0BE90" + rewards: [{ + exclude_from_claim_all: true + id: "12D21F8894DCB054" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "375EE73290DBEA12" + item: "immersiveengineering:insulating_glass" + type: "item" + }] + x: -5.5d + y: -4.0d + } + { + dependencies: [ + "39C8CD6102B26BFE" + "19B5CFD1781BE157" + ] + id: "28313C2FE2F8A148" + rewards: [{ + exclude_from_claim_all: true + id: "0212DAF885FAB9C3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "15AB16421BB70AC3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:circuit_board" + } + type: "item" + }] + x: -1.5d + y: -4.5d + } + { + dependencies: ["0933E0EF37133C32"] + id: "0B56E423C6D000E3" + rewards: [{ + exclude_from_claim_all: true + id: "286EA3C8FEAC2991" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2ACE7EB1623DF9A0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:logic_circuit" + } + type: "item" + }] + x: -3.5d + y: -6.0d + } + { + dependencies: ["39C8CD6102B26BFE"] + hide_dependency_lines: true + id: "4C15C2BDE902C515" + rewards: [{ + exclude_from_claim_all: true + id: "2870BF5E2435880A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "6A87676302B415B0" + item: { + Count: 1 + id: "immersiveengineering:blueprint" + tag: { + blueprint: "bannerpatterns" + } + } + match_nbt: true + type: "item" + }] + title: "Banner Patterns" + x: 0.0d + y: -7.5d + } + { + dependencies: ["39C8CD6102B26BFE"] + hide_dependency_lines: true + id: "3A9D48E33CA28949" + rewards: [{ + exclude_from_claim_all: true + id: "660F4B163FF2EF62" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "22D77EBDE80F580C" + item: { + Count: 1 + id: "immersiveengineering:blueprint" + tag: { + blueprint: "bullet" + } + } + match_nbt: true + type: "item" + }] + title: "Common Projectiles" + x: 0.5d + y: -8.0d + } + { + dependencies: ["39C8CD6102B26BFE"] + hide_dependency_lines: true + id: "7B325907CA9380E7" + rewards: [{ + exclude_from_claim_all: true + id: "139AFD0BC649E829" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "05901F0F7DD1C88F" + item: { + Count: 1 + id: "immersiveengineering:blueprint" + tag: { + blueprint: "components" + } + } + match_nbt: true + type: "item" + }] + title: "Crafting Componets" + x: 0.5d + y: -7.0d + } + { + dependencies: ["39C8CD6102B26BFE"] + hide_dependency_lines: true + id: "1421DD5F9BC68D79" + rewards: [{ + exclude_from_claim_all: true + id: "1374D599C314525C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "48F949A5DC4D6572" + item: { + Count: 1 + id: "immersiveengineering:blueprint" + tag: { + blueprint: "electrode" + } + } + match_nbt: true + type: "item" + }] + title: "Arc Furnace Electrodes" + x: -0.5d + y: -8.0d + } + { + dependencies: ["39C8CD6102B26BFE"] + hide_dependency_lines: true + id: "32328A2A7AEE2269" + rewards: [{ + exclude_from_claim_all: true + id: "205D13CABCAEC362" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "71C37BC9A8840422" + item: { + Count: 1 + id: "immersiveengineering:blueprint" + tag: { + blueprint: "molds" + } + } + match_nbt: true + type: "item" + }] + title: "Metal Press Molds" + x: 1.0d + y: -7.5d + } + { + dependencies: ["39C8CD6102B26BFE"] + hide_dependency_lines: true + id: "0436AB1658174EA4" + rewards: [{ + exclude_from_claim_all: true + id: "2134629844DD2FC4" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "5CA633D409431983" + item: { + Count: 1 + id: "immersiveengineering:blueprint" + tag: { + blueprint: "specialBullet" + } + } + match_nbt: true + type: "item" + }] + title: "Specialized Projectiles" + x: 1.5d + y: -8.0d + } + { + dependencies: ["47ACCCE2F34C5B99"] + description: [ + "The &6Mixer&r is a &o&b3x3x3&r multi-block. It accepts &aitems&r, &9liquid&r, and &eenergy&r, and produces new &9liquids&r from the result. For example, &7liquid concrete&r can be mixed from &1water&r, &esand&r, &3gravel&r, and &7clay&r." + "" + "The multiblock is completed by using the &dEngineer's Hammer&r on the central &3Iron Sheetmetal&r block." + "" + "&9Fluids&r are &ainput&r into the mixer through the port at the &nbottom&r of its powersupply. &eItems&r can be input via the two hatches at the &nback&r. The &o&bfluid port&r at the &nfront&r serves as the &o&bfluid output&r." + "" + "Applying a &credstone signal&r to the &dcontrol panel&r at the &nfront&r will halt the machine's process, this behavior can be &o&binverted&r by use of the &4Engineer's Screwdriver&r." + ] + icon: "immersiveengineering:mixer" + id: "735412C77BE7A82A" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "010AD09069E05A59" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 3L + id: "7929B8F6D3D69EC2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:fluid_pipe" + } + type: "item" + } + { + count: 5L + id: "1A574C21B279C241" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_scaffolding_standard" + } + type: "item" + } + { + count: 4L + id: "72243E4DFF604550" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:light_engineering" + } + type: "item" + } + { + count: 4L + id: "490F1B2EC27CE774" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:sheetmetal_iron" + } + type: "item" + } + { + id: "6E9D6EC276325353" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:rs_engineering" + } + type: "item" + } + { + id: "15B7D4194BA3FBBF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_fence" + } + type: "item" + } + ] + title: "&aMixer" + x: -7.0d + y: -1.0d + } + { + dependencies: ["735412C77BE7A82A"] + description: [ + "The Industrial Squeezer is a 3x3x3 multiblock structure that &o&bpresses juice&r or &o&boil&r out of &o&borganic materials&r." + "" + "After it is fully arranged, &eRight-click&r on the central &2Wooden Barrel&r from side that has the &3Engineering Blocks&r with an &dEngineer's Hammer&r to complete the multiblock structure." + "" + "&eItems&r can be input into the &6Squeezer&r via the &o&b2&r hatches at the &nback&r that are marked with &9blue&r dots. The hatch with the &6orange&r dot serves as an &citem output&r and the block below it to &9output fluids&r. Applying a &credstone signal&r to the &dcontrol panel&r at the &nfront&r will halt the machine's process, this behavior can be &o&binverted&r by use of the &4Engineer's Screwdriver&r." + "" + "The following &nlist&r shows various items that can be &o&bsqueezed&r into &ePlant Oil&r." + "" + "&cMelon Seeds&r ---> &o&b20&rmB" + "&6Pumpkin Seeds&r ---> &o&b40&rmB" + "&4Tomato Seeds&r ---> &o&b60&rmB" + "&cBeetroot Seeds&r ---> &o&b60&rmB" + "&eWheat Seeds&r ---> &o&b80&rmB" + "&2Cabbage Seeds&r ---> &o&b80&rmB" + "&7Industrial Hemp Seeds&r ---> &o&b120&rmB" + ] + icon: "immersiveengineering:squeezer" + id: "1F980CFE55E589A6" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "2C36E87CB9545990" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 2L + id: "52F2687E119993DF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:fluid_pipe" + } + type: "item" + } + { + count: 4L + id: "4A842C7C752D9F88" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:wooden_barrel" + } + type: "item" + } + { + id: "2C314156F3507E1D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:piston" + } + type: "item" + } + { + count: 6L + id: "5585CBF76125BA27" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_scaffolding_standard" + } + type: "item" + } + { + count: 2L + id: "598710D029A1402C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:light_engineering" + } + type: "item" + } + { + id: "3CD64B2FB4266325" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:rs_engineering" + } + type: "item" + } + { + count: 3L + id: "7DA128F7E449D9F3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_fence" + } + type: "item" + } + ] + title: "&aIndustrial Squeezer" + x: -5.5d + y: -1.0d + } + { + dependencies: [ + "0B2DF0B5F4247A3F" + "1F980CFE55E589A6" + ] + description: [ + "The &6Refinery&r is a complex &o&b3x5x3&r multiblock that can refine one or two fluids into another. The most common application of this is production of &2Biodiesel&r." + "" + "After it is complete, &eRight-clicking&r the central &3Heavy Engineering Block&r with an &dEngineer's Hammer&r will finish the multiblock." + "" + "&9Fluids&r are &ainput&r through the &o&b2&r ports on &o&beither side of the block&r and &coutput&r through the &6orange&r marked port at the &nfront&r. Using &o&bbuckets&r to interact with the refinery's tanks is also &o&bpossible&r. Applying a &credstone signal&r to the &dcontrol panel&r at the &nfront&r will halt the machine's process, this behavior can be &o&binverted&r by use of the &4Engineer's Screwdriver&r." + "" + "Most refinery processes require the addition of a &5catalyst&r to enable the reaction. This &5catalyst&r is &nnot consumed&r, but the process &nwill not&r work &o&bwithout it&r." + "" + "To produce &2Biodiesel&r, combine &nequal parts&r &ePlant Oil&r and &3Ethanol&r while using &7Nitrate Dust&r as a &5catalyst&r." + ] + icon: "immersiveengineering:refinery" + id: "1DCDA89DA49A8EF0" + min_width: 510 + rewards: [{ + exclude_from_claim_all: true + id: "6587CC0975CFBAD5" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 5L + id: "1DB7E63B664D66D6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:fluid_pipe" + } + type: "item" + } + { + count: 8L + id: "2A043EECD69CDADC" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_scaffolding_standard" + } + type: "item" + } + { + count: 2L + id: "183B50FF3796D313" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:light_engineering" + } + type: "item" + } + { + count: 2L + id: "25D9947E30215476" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:heavy_engineering" + } + type: "item" + } + { + count: 16L + id: "0A05C601FED10358" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:sheetmetal_iron" + } + type: "item" + } + { + id: "76A32951A5C517D8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:rs_engineering" + } + type: "item" + } + ] + title: "&aRefinery" + x: -4.25d + y: -1.732142857142854d + } + { + dependencies: ["47ACCCE2F34C5B99"] + description: [ + "The &6Fermenter&r is a &o&b3x3x3&r multiblock structure that &nextracts&r &7Ethanol&r from certain &efruits&r, &agrains&r and &2vegetables&r through a &nfermenting process&r." + "" + "After it is fully arranged, &eRight-click&r the central &3Cauldron&r with an &dEngineer's Hammer&r to complete the multiblock structure." + "" + "&eItems&r can be input into the &6Fermenter&r via the &o&b2&r hatches at the &nback&r that are marked with &9blue&r dots. The hatch with the &6orange&r dot serves as an &citem output&r and the block below it to &9output fluids&r. Applying a &credstone signal&r to the &dcontrol panel&r at the &nfront&r will halt the machine's process, this behavior can be &o&binverted&r by use of the &4Engineer's Screwdriver&r." + "" + "The following &nlist&r shows various items that can be &o&bfermented&r into &7Ethanol&r." + "" + "&cMelon Slice&r ---> &o&b20&rmB" + "&4Beetroot&r ---> &o&b40&rmB" + "&cSweet Berries&r ---> &o&b50&rmB" + "&4Tomato&r ---> &o&b80&rmB" + "&eSugar Cane&r ---> &o&b80&rmB" + "&aPotato&r ---> &o&b80&rmB" + "&cApple&r ---> &o&b80&rmB" + "&eGlow Berries&r ---> &o&b100&rmB" + "&6Honey Bottle&r ---> &o&b250&rmB" + ] + icon: "immersiveengineering:fermenter" + id: "0B2DF0B5F4247A3F" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "2D0031BDB31000BC" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 2L + id: "4AE010398D0F76DD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:fluid_pipe" + } + type: "item" + } + { + count: 6L + id: "6A59D3A7DA1D4BF5" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_scaffolding_standard" + } + type: "item" + } + { + count: 2L + id: "787C75B2820A48E5" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:light_engineering" + } + type: "item" + } + { + id: "5B5EE9C3D0290A8F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:rs_engineering" + } + type: "item" + } + { + count: 4L + id: "459EDF051684AF2F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:cauldron" + } + type: "item" + } + { + count: 4L + id: "631880E138C5A539" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:sheetmetal_iron" + } + type: "item" + } + ] + title: "&aFermenter" + x: -5.5d + y: -2.5d + } + { + dependencies: ["57175CF690ADCCBE"] + id: "19B5CFD1781BE157" + rewards: [{ + exclude_from_claim_all: true + id: "73FBCEC2574EC6ED" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "524E7087D55202C0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:plate_duroplast" + } + type: "item" + }] + x: -2.5d + y: -4.0d + } + { + dependencies: ["735412C77BE7A82A"] + description: [ + "It turns 1 Log into 6 Planks." + "" + "The multiblock is completed by using the &eEngineer's Hammer&r on the central &eIron Sheetmetal&r block." + ] + icon: "immersiveengineering:sawmill" + id: "7CE764054ECB1C45" + rewards: [{ + exclude_from_claim_all: true + id: "600EB8EC9EC55514" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "The Sawmill is a 3×5×3 wood-processing multi-block" + tasks: [ + { + count: 4L + id: "1A9A4CC96BBA94AC" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:conveyor_basic" + } + type: "item" + } + { + count: 8L + id: "6CE29B90DB476BA5" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_scaffolding_standard" + } + type: "item" + } + { + count: 6L + id: "2D4960F89D46CE0B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:light_engineering" + } + type: "item" + } + { + count: 2L + id: "6DD88EC1F137312C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:heavy_engineering" + } + type: "item" + } + { + id: "37D0E4E1BC5A2D57" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:rs_engineering" + } + type: "item" + } + { + count: 4L + id: "49BBABB6245F3513" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:sheetmetal_iron" + } + type: "item" + } + ] + title: "&aSawmill" + x: -7.0d + y: 0.5d + } + { + dependencies: ["7CE764054ECB1C45"] + id: "787A66DC52550EBF" + rewards: [{ + exclude_from_claim_all: true + id: "361DE61EACFE3290" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Can be used to make paper" + tasks: [{ + id: "3B930A490EA23536" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:dusts/wood" + } + } + title: "Wood dust" + type: "item" + }] + title: "Wood dust" + x: -8.5d + y: 0.5d + } + { + dependencies: ["787A66DC52550EBF"] + id: "2F492EC973058DF2" + rewards: [{ + exclude_from_claim_all: true + id: "54CF07F10D4CDD50" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 30L + id: "5FA7CCD8BBE3D2EF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:paper" + } + type: "item" + }] + title: "Paper" + x: -10.0d + y: 0.5d + } + { + dependencies: ["63768F7BC7BD0188"] + description: [ + "After it is fully arranged, the player must &aright-click&r the &o&bbottom-center&r &3Iron Sheetmetal&r of any side of the multi-block with an &eEngineer's Hammer&r, then the multi-block is &o&bcomplete&r." + "" + "The &2Sheetmetal Silo&r will store &o&b41,472&r &eitems&r (the size of &o&b24&r &aChests&r). They, however, &o&ball must be the same item&r." + "" + "Items can be &9piped&r into the &o&btop block&r, and &cremoved&r through the &o&bbottom block&r. Removal of items requires a &cRedstone&r signal." + "" + "The &2Silo&r will &nvisually show&r the item being stored and it's amount on &neach side&r of the &2Silo&r." + ] + icon: "immersiveengineering:silo" + id: "07D2F9D6128C2437" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "706A9944CFB4C4D8" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "The Silo is a 3x3x7 multi-block used for storing items" + tasks: [ + { + count: 4L + id: "1BC3985A186C2DE9" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:treated_fence" + } + type: "item" + } + { + count: 50L + id: "2425F1DF441AB3CF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:sheetmetal_iron" + } + type: "item" + } + ] + title: "&aSilo" + x: 4.0d + y: -2.5d + } + { + dependencies: ["63768F7BC7BD0188"] + description: [ + "After it is fully arranged, the player must &aright-click&r the &3Iron Sheetmetal&r at the &o&bbottom center&r of any side (not the &nsheetmetal&r on the &nfence&r layer) with an &eEngineer's Hammer&r, then the multi-block is &o&bcomplete&r." + "" + "The &dTank&r will store &o&b512,000&r mB (&o&b512&r &3Buckets&r). Liquids can be &9piped&r into the top or bottom blocks. For liquid to be &cremoved&r a &cRedstone&r signal is required, additionally, a &6Fluid Pump&r can be used to &o&bspeed up&r the output." + "" + "The &dTank&r will &o&bvisually&r show the liquid being stored and its amount on &neach side&r of it." + ] + icon: "immersiveengineering:tank" + id: "41F93E64432175D5" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "48A4F8A590157C99" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "The Tank is a 3x3x5 multi-block used for storing liquids" + tasks: [ + { + count: 4L + id: "35BEABEB468122C1" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:treated_fence" + } + type: "item" + } + { + count: 34L + id: "6D10733EC5EA7861" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:sheetmetal_iron" + } + type: "item" + } + ] + title: "&aTank" + x: 5.0d + y: -2.5d + } + { + dependencies: ["39C8CD6102B26BFE"] + description: [ + "The &2Assembler&r is a &o&b3x3x3&r multi-block, and is used to &o&bautomatically&r craft items." + "" + "After it is fully arranged, the player must &aright-click&r the one of the &cConveyor Belt&r with an &eEngineer's Hammer&r. Then the multi-block is &o&bcomplete&r." + "" + "Recipes can be set inside of the &2Assembler&r. The &o&bfluid tanks&r in the &2Assembler&r will automatically fill liquid containers used in recipes, such as &9Water Buckets&r." + "" + "The &2Assembler&r will &o&bautomatically&r craft the set recipes if it has the correct materials. Crafted items will remain into the &o&binventory&r of the &2Assembler&r." + "" + "If an inventory (such as a &eChest&r or &cConveyor Belt&r (for easy automation)) is connected to the end of the &2Assembler&r, the crafted item will move into that &o&binventory&r." + ] + hide_dependency_lines: true + icon: "immersiveengineering:assembler" + id: "22C1FDD2FC9A3AC2" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "254C18CA1A299697" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "The Assembler is a 3x3x3 multi-block" + tasks: [ + { + count: 2L + id: "32E749CF7FA401B3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:conveyor_basic" + } + type: "item" + } + { + count: 6L + id: "3535901AD299A947" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_scaffolding_standard" + } + type: "item" + } + { + count: 2L + id: "3212A41D0B0C0623" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:rs_engineering" + } + type: "item" + } + { + count: 2L + id: "6530D1F0F0965C18" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:light_engineering" + } + type: "item" + } + { + count: 9L + id: "77700BB741B2E029" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:sheetmetal_iron" + } + type: "item" + } + { + count: 6L + id: "2A3AC6CAEA0716FF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:slab_sheetmetal_iron" + } + type: "item" + } + ] + title: "&aAssembler" + x: 2.5d + y: -8.5d + } + { + dependencies: ["39C8CD6102B26BFE"] + description: [ + "The &2Automated Engineer's Workbench&r is a &o&b3x2x3&r multi-block. It is an automated version of the &9Engineer's Workbench&r." + "" + "After it is fully arranged, &aright-click&r the &o&bmiddle&r &4Treated Wood Slab&r with an &eEngineer's Hammer&r to complete the multiblock structure." + ] + hide_dependency_lines: true + icon: "immersiveengineering:auto_workbench" + id: "387FC4D9C4010FD8" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "5370E43EDDECB381" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 4L + id: "182926726251E7AD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:conveyor_basic" + } + type: "item" + } + { + count: 5L + id: "5D2CFCB47E515535" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_scaffolding_standard" + } + type: "item" + } + { + count: 4L + id: "723390D8EE816E6D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:light_engineering" + } + type: "item" + } + { + id: "68A2AE6ADE2E8ABA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:rs_engineering" + } + type: "item" + } + { + count: 2L + id: "473306021E3400C2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:heavy_engineering" + } + type: "item" + } + { + count: 2L + id: "11DC6A1C09FD66E6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:slab_treated_wood_horizontal" + } + type: "item" + } + ] + title: "&aAutomated Engineer's Workbench" + x: -1.5d + y: -8.5d + } + { + dependencies: ["68136624609D6D1A"] + description: [ + "It generates energy from lightning." + "" + "After it is fully arranged, the player must right-click the middle block of any side (which should be a &eLight Engineering Block&r) with an &eEngineer's Hammer&r, Then the multi-block is complete." + "" + "Stacking many Steel Fences on the middle block increases the chance of lightning hitting the middle block dramatically. One lightning strike will generate 16,000,000 RF." + "" + "All of the energy goes to the center block, but that energy will be dispersed to the blocks surrounding it." + ] + icon: "immersiveengineering:lightning_rod" + id: "26EA569336CAF392" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "7ACB5CF2420CC47A" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "he Lightning Rod is a 3x3x3 multi-block" + tasks: [ + { + count: 4L + id: "3A5DFF18260DB509" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:capacitor_hv" + } + type: "item" + } + { + count: 4L + id: "5033D7BD876E5985" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_scaffolding_standard" + } + type: "item" + } + { + count: 3L + id: "2705BCCCE7D7062A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:coil_hv" + } + type: "item" + } + { + count: 4L + id: "0867C37D50B917BC" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:treated_fence" + } + type: "item" + } + { + count: 4L + id: "3EF0BA7D78E869C6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:light_engineering" + } + type: "item" + } + { + count: 8L + id: "21CD1C476AEFCC5F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:coil_lv" + } + type: "item" + } + ] + title: "&aLightning Rod" + x: -12.0d + y: -5.5d + } + { + dependencies: ["28313C2FE2F8A148"] + description: [ + "The &dLogic Unit&r is the block in which &o&bcompleted logic circuits&r are slotted &nto be used&r. It has enough space for a total of &o&b10&r âuits&r, and features a full &o&b8&r &ainbuilt registers&r, allowing it to be used for &nany circuit&r." + "" + "For a &o&blogic unit&r to interface with the colored &credstone systems&r, it needs to have a &4Redstone Interface Connector&r attached to its side." + "" + "Every time any of the &o&battached connectors&r change their state, the &o&blogic unit cycles&r through its circuits and performs all &o&b10&r operations." + "" + "If a &o&bcircuit uses a register&r as an &coutput&r, the resulting value is kept in the register and may be used &o&bby later circuit&r as an &9input&r." + "" + "The same &o&binterface connector&r used to &9input&r can be used as an &coutput&r as well." + ] + id: "40FC88EF7AB90115" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "24BFA4AA4D04FDAF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "383BC8B4E56B9F93" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:logic_unit" + } + type: "item" + }] + x: -1.5d + y: -5.5d + } + { + dependencies: ["63262E8059EF0690"] + id: "7B3389E19277246F" + rewards: [{ + exclude_from_claim_all: true + id: "17CF8559E5C3474A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0AF3DFE3D1AEAF72" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:jerrycan" + } + type: "item" + }] + x: -11.0d + y: -9.0d + } + { + dependencies: ["774B1D4152A0B4ED"] + id: "63262E8059EF0690" + rewards: [{ + exclude_from_claim_all: true + id: "3B3FE579293F0DC1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3A1C65CB6A265041" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:earmuffs" + } + type: "item" + }] + x: -9.5d + y: -9.0d + } + { + dependencies: ["1AFBE29BB6CC2C0D"] + description: [ + "With exchangeable &3Drill Heads&r and upgrades, itsproperties are almost entirely modifiable." + "" + "To modify it, place it in an &dEngineer's Workbench&r." + "" + "The &3Drill&r runs off of &eBiodiesel&r and can be filled directly in the &2Refinery&r." + ] + icon: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 5 + } + } + id: "immersiveengineering:drill" + tag: { } + } + id: "6BEC1C688BC24782" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "3D389AB96EE2CA01" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "0988D75F473379E6" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 5 + } + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:drill" + } + type: "item" + } + { + id: "7DDA49799EE5E2B6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:drillhead_iron" + } + type: "item" + } + ] + x: 0.0d + y: -2.0d + } + { + dependencies: ["1AFBE29BB6CC2C0D"] + icon: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 5 + } + } + id: "immersiveengineering:buzzsaw" + tag: { } + } + id: "0D12560C7131D6BF" + rewards: [{ + exclude_from_claim_all: true + id: "6C61AB87AB585D8B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "5C1A28F58AC9F86F" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 5 + } + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:buzzsaw" + } + type: "item" + } + { + id: "08134AA685F34D8F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:sawblade" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: 1.0d + y: -1.5d + } + { + dependencies: ["0D12560C7131D6BF"] + id: "23F3A1E0FF956C20" + rewards: [{ + exclude_from_claim_all: true + id: "265F5FFB24BAEBB0" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "5F8B4C81C09371F3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:rockcutter" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4AE4CDC66BC9506C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:grindingdisk" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Better Sawblade" + x: 1.0d + y: 0.0d + } + { + dependencies: ["6BEC1C688BC24782"] + id: "5B59588EE09FBC5A" + rewards: [{ + exclude_from_claim_all: true + id: "4BC46124D1F9B1B2" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Better Drill Head" + tasks: [{ + id: "6DB9BA694153F655" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:drillhead_steel" + } + type: "item" + }] + x: -1.0d + y: -1.0d + } + { + dependencies: ["06E5134C2F756BED"] + id: "19735588D10C4BFB" + rewards: [{ + exclude_from_claim_all: true + id: "644B92424531E9FC" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3EF32F6E9D5A5A57" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 3 + } + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:railgun" + } + type: "item" + }] + x: 4.107142857142854d + y: -0.8571428571428541d + } + { + dependencies: ["1AFBE29BB6CC2C0D"] + id: "06E5134C2F756BED" + rewards: [{ + exclude_from_claim_all: true + id: "063574E42006D78A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "49DFC523481A07D0" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 21 + } + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:revolver" + } + type: "item" + }] + x: 2.9285714285714306d + y: -1.5d + } + { + dependencies: ["06E5134C2F756BED"] + id: "0FFFB0B253579F80" + rewards: [{ + exclude_from_claim_all: true + id: "4141486C8A8E8C2C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "145668DEB38D3FB4" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 4 + } + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:chemthrower" + } + type: "item" + }] + x: 2.607142857142854d + y: -0.3571428571428541d + } + { + dependencies: ["0FFFB0B253579F80"] + id: "7F21CEDBB09A9FD5" + rewards: [{ + exclude_from_claim_all: true + id: "5DB1DCD98B999AD5" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "311C5E5F013D1FBD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:turret_chem" + } + type: "item" + }] + x: 2.5d + y: 0.6785714285714235d + } + { + dependencies: ["19735588D10C4BFB"] + id: "7DDD4F4DE84653F0" + rewards: [{ + exclude_from_claim_all: true + id: "187FC875A85E7088" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "53F42326EBE0CBEB" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:turret_gun" + } + type: "item" + }] + x: 4.9285714285714235d + y: -0.1785714285714306d + } + { + dependencies: [ + "6BEC1C688BC24782" + "0D12560C7131D6BF" + ] + id: "2E91AD00CF0B2D44" + rewards: [{ + exclude_from_claim_all: true + id: "749963907099DA4E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "6E5DE28DC7CD1E4B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_drill_waterproof" + } + type: "item" + } + { + id: "6409BD4DB50A8E88" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_drill_capacity" + } + type: "item" + } + { + id: "69B73AB77BB8C1A5" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_drill_fortune" + } + type: "item" + } + { + id: "39B195F0EE5F4D92" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_drill_lube" + } + type: "item" + } + { + id: "0E14950290E0A950" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_drill_damage" + } + type: "item" + } + { + id: "16EBF9AFB0BAF4FA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_buzzsaw_spareblades" + } + type: "item" + } + ] + title: "Mining Drill \\& Buzzsaw's Upgrades" + x: 0.0d + y: -0.5d + } + { + dependencies: ["06E5134C2F756BED"] + id: "5A040E75321F8E80" + rewards: [{ + exclude_from_claim_all: true + id: "45191A6819E7A2E5" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "300EFB1C23D088AA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_revolver_bayonet" + } + type: "item" + } + { + id: "7D629B70E039330C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_revolver_magazine" + } + type: "item" + } + { + id: "276405C4342739CE" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_chemthrower_focus" + } + type: "item" + } + { + id: "695FA6927C3B6A0E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_railgun_scope" + } + type: "item" + } + { + id: "319C3E250764C4DC" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_railgun_capacitors" + } + type: "item" + } + { + id: "630E34814EE43AB3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_shield_shock" + } + type: "item" + } + { + id: "5FA23803A71D7002" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_chemthrower_multitank" + } + type: "item" + } + { + id: "33DFF7B3017367C4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:toolupgrade_shield_flash" + } + type: "item" + } + ] + title: "Weapon Upgrades" + x: 3.6785714285714235d + y: 0.1428571428571388d + } + { + dependencies: ["566C0FA15F2021F1"] + id: "7E4D6AC50193B3E2" + rewards: [{ + exclude_from_claim_all: true + id: "44212296037AC0AB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.2d + tasks: [ + { + id: "1E31004C15EEB8D8" + item: { + Count: 1 + id: "immersiveengineering:armor_steel_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "54E8A9529757690D" + item: { + Count: 1 + id: "immersiveengineering:armor_steel_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3C7256380E65F3A5" + item: { + Count: 1 + id: "immersiveengineering:armor_steel_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "19CB6A6222BE118C" + item: { + Count: 1 + id: "immersiveengineering:armor_steel_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Steel Armor" + x: -10.2d + y: -5.3999999999999995d + } + { + dependencies: ["39C8CD6102B26BFE"] + id: "575039EFF672065E" + rewards: [{ + exclude_from_claim_all: true + id: "0F5472FD280F5C82" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 3L + id: "01A5CEF736EBEACB" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:electron_tube" + } + type: "item" + }] + title: "Vacuum Tube" + x: 2.0d + y: -6.5d + } + { + dependencies: ["575039EFF672065E"] + id: "5A53ADA9B9BFDCBD" + rewards: [{ + exclude_from_claim_all: true + id: "6DF3EADA96E8BE06" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "641206CF70FBB845" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:component_electronic_adv" + } + type: "item" + }] + x: 3.5d + y: -7.5d + } + { + dependencies: ["1DCDA89DA49A8EF0"] + description: [ + "The &6Bottling Machine&r is a &o&b3x2x3&r multiblock used to fill &o&bliquid into containers&r." + "" + "After it is fully arranged, &eRight-clicking&r the middle &cConveyor Belt&r with an &dEngineer's Hammer&r will complete the multiblock structure. The direction of the &cconveyors&r is &nimportant&r. " + "" + "The machine can store &o&b8&r buckets of &9fluid&r, which is input through the ports on the &o&bmetal tank&r. &eEnergy&r is input through the &o&bconnection&r at the &ntop&r of the opposing side." + "" + "Generally, the &6Bottling Machine&r will be able to fill &o&bany container&r that has a &o&bfilled version available&r (&7bucket&r, &bglass bottle&r). It will also accept other items that can store &9fluids&r, like the &2Mining Drill&r or a &3Jerrycan&r. " + "" + "The machine will &nhold&r onto a container until it is &ncompletely full&r, or the machine is not being supplied with &o&bany more fluid&r. This allows it to fill even &o&blarger containers&r, provided it receives a &o&bsteady input of fluid&r. This behavior can be &ndisabled&r by &eShift+Right-clicking&r it with an &dEngineer's Hammer&r." + ] + icon: "immersiveengineering:bottling_machine" + id: "57175CF690ADCCBE" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "7A05DB778CB392EB" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 2L + id: "7C0EF5DBD0285D10" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:sheetmetal_iron" + } + type: "item" + } + { + count: 3L + id: "373166722786E515" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:steel_scaffolding_standard" + } + type: "item" + } + { + id: "4DC7DC7F9C0C854D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:rs_engineering" + } + type: "item" + } + { + count: 2L + id: "71BE95CA2FFE0380" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:light_engineering" + } + type: "item" + } + { + count: 3L + id: "09C8C5883DAD9E57" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:conveyor_basic" + } + type: "item" + } + { + id: "623EA6E58C484FD0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "immersiveengineering:fluid_pump" + } + type: "item" + } + ] + title: "&aBottling Machine" + x: -4.0d + y: -3.0d + } + { + dependencies: ["575039EFF672065E"] + id: "03C417DE427BC2BA" + rewards: [{ + exclude_from_claim_all: true + id: "1BAB45E14BB403EA" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "13798F0E86577AB2" + item: "immersiveengineering:toolupgrade_revolver_electro" + type: "item" + }] + x: 3.5d + y: -6.5d + } + { + dependencies: ["1B3E0CA28670D860"] + id: "4E4A8825B02F665B" + rewards: [{ + exclude_from_claim_all: true + id: "7DF33A156D2EA120" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "729E0A206A9B8B50" + item: "immersiveengineering:connector_bundled" + type: "item" + }] + x: -10.5d + y: -4.0d + } + { + dependencies: ["612BB1D116F3B1A9"] + id: "1B3E0CA28670D860" + rewards: [{ + exclude_from_claim_all: true + id: "4E9A4DBB986AF0CF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 4L + id: "3AC3EF56D31085A4" + item: "immersiveengineering:connector_redstone" + type: "item" + }] + x: -11.5d + y: -4.0d + } + ] + title: "&3&oImmersive Engineering" +} diff --git a/minecraft/config/ftbquests/quests/chapters/industrial_foregoing.snbt b/minecraft/config/ftbquests/quests/chapters/industrial_foregoing.snbt new file mode 100644 index 0000000..b4066c9 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/industrial_foregoing.snbt @@ -0,0 +1,2069 @@ +{ + autofocus_id: "5C2CBC6B89014BEC" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "industrial_foregoing" + group: "69B9F7247002FE35" + icon: "industrialforegoing:block_breaker" + id: "3A7FC6101E64D06C" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -3.2857142857142847d + y: -12.589285714285715d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -0.5d + y: -1.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -10.5d + y: -8.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 9.5d + y: -8.0d + } + { + click: "https://www.youtube.com/watch?v=yYCPnj_bbRA&list=PLjCIWUQ2Rykw1dLX9i055F_8PcSEgJBuj&index=1" + height: 1.0d + hover: ["YouTube Tutorial: Part 4"] + image: "industrialforegoing:item/machine_hull" + rotation: 0.0d + width: 1.0d + x: -2.0d + y: -3.0d + } + { + click: "https://www.youtube.com/watch?v=I04FY6j3nMQ&list=PLjCIWUQ2Rykw1dLX9i055F_8PcSEgJBuj&index=3" + height: 1.0d + hover: ["YouTube Tutorial: Part 2"] + image: "industrialforegoing:item/diamond_gear" + rotation: 0.0d + width: 1.0d + x: -2.0d + y: -12.0d + } + { + click: "https://www.youtube.com/watch?v=c3JivbWIxFc&list=PLjCIWUQ2Rykw1dLX9i055F_8PcSEgJBuj&index=4" + height: 1.0d + hover: ["YouTube Tutorial: Part 1"] + image: "industrialforegoing:item/processing_addon_1" + rotation: 20.0d + width: 1.0d + x: -6.0d + y: -12.0d + } + { + click: "https://www.youtube.com/watch?v=25bqrao9KqI&list=PLjCIWUQ2Rykw1dLX9i055F_8PcSEgJBuj&index=2" + height: 1.0d + hover: ["YouTube Tutorial: Part 3"] + image: "industrialforegoing:item/straw" + rotation: 0.0d + width: 1.0d + x: 3.5d + y: -8.0d + } + { + height: 7.0d + image: "kubejs:textures/item/dragons.png" + rotation: -45.0d + width: 7.0d + x: 6.5d + y: -10.5d + } + ] + order_index: 6 + quest_links: [ ] + quests: [ + { + dependencies: ["5BACA82D1436C781"] + description: [ + "&6Industrial Foregoing&r is a mod that allows you to &o&aautomate&r most of minecraft's functions." + "" + "It has machines for everything!" + "" + "- &2Mob&r and &2Animal&r farming" + "- &aPlant&r farming" + "- A suite of &bInfinity Tools&r" + "- Big &eItem&r/&9Fluid&r &nStorage&r and &eItem&r/&9Fluid&r &nTransporters&r" + "- &cPower&r generation" + "- &dEnchantments&r sorting and creation" + "- &3Ore&r collection" + "" + "And &o&bmuch more&r..." + ] + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "industrialforegoing:industrial_foregoing" + } + } + id: "484AA004E235D07D" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "2CA520CE4BC5B988" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&o&nMechanical Crafter&r quest*" + tasks: [{ + id: "5CDCDDFD361DFFBD" + type: "checkmark" + }] + title: "Welcome to &3Industrial Foregoing" + x: -4.0d + y: -12.0d + } + { + dependencies: ["371982593B9A363C"] + id: "1A4674A6B818BFE8" + rewards: [{ + exclude_from_claim_all: true + id: "141041B892C55452" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "073103F5A75FCF47" + item: "industrialforegoing:latex_processing_unit" + type: "item" + }] + x: -8.5d + y: -10.5d + } + { + dependencies: [ + "0000000000000145" + "47106CE1937C4340" + ] + dependency_requirement: "one_completed" + id: "0773B45F80E9EB41" + rewards: [{ + exclude_from_claim_all: true + id: "0514039EC2C7C867" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "01DCB25E5418893B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:plastic)" + } + } + title: "Any #forge:plastic" + type: "item" + }] + x: -8.5d + y: -5.5d + } + { + dependencies: ["484AA004E235D07D"] + id: "55C0841BBDCA69F4" + rewards: [{ + exclude_from_claim_all: true + id: "0EC5653677DD1B93" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "1375E29C154020A9" + item: "industrialforegoing:machine_frame_pity" + type: "item" + }] + title: "&aPity Machine Frame" + x: -4.0d + y: -10.5d + } + { + dependencies: ["55C0841BBDCA69F4"] + id: "513ED8B3BE23BF6E" + rewards: [{ + exclude_from_claim_all: true + id: "235CBD1D0C000720" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "46517576F726EA51" + item: "industrialforegoing:machine_frame_simple" + type: "item" + }] + title: "&bSimple Machine Frame" + x: 1.0d + y: -10.5d + } + { + dependencies: [ + "513ED8B3BE23BF6E" + "00E7410F65814081" + ] + id: "5C2CBC6B89014BEC" + rewards: [{ + exclude_from_claim_all: true + id: "1EE025B10C2228E8" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "0D3115B5D816CE73" + item: "industrialforegoing:machine_frame_advanced" + type: "item" + }] + title: "&dAdvanced Machine Frame" + x: 1.0d + y: -5.5d + } + { + dependencies: ["3CA0780203130557"] + id: "054B2BA570F930BC" + rewards: [{ + exclude_from_claim_all: true + id: "3FC183A2AF8C79B4" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "4D67EEB063B3CEF2" + item: "industrialforegoing:machine_frame_supreme" + type: "item" + }] + title: "&6Supreme Machine Frame" + x: 6.5d + y: -2.0d + } + { + dependencies: ["054B2BA570F930BC"] + hide_dependency_lines: true + id: "0CAD4E1A68F3DA0A" + rewards: [{ + exclude_from_claim_all: true + id: "5A3A90AA9A4F04E7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 2.0d + tasks: [{ + id: "7C5C10C174758873" + item: "industrialforegoing:black_hole_controller" + type: "item" + }] + title: "&aThe Black Hole Controller" + x: 8.0d + y: -10.5d + } + { + dependencies: ["55C0841BBDCA69F4"] + hide_dependency_lines: true + id: "7445BC964E4997E9" + rewards: [{ + exclude_from_claim_all: true + id: "276D4C4231FE0CAD" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6D61AF67D1F225BA" + item: "industrialforegoing:pity_black_hole_tank" + type: "item" + }] + title: "&aPity Black Hole Tank" + x: 8.0d + y: -11.0d + } + { + dependencies: ["55C0841BBDCA69F4"] + hide_dependency_lines: true + id: "6678E675B2953C23" + rewards: [{ + exclude_from_claim_all: true + id: "3361D6CBBF845EBD" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "093B1B928EF19EEB" + item: "industrialforegoing:common_black_hole_tank" + type: "item" + }] + title: "&3Common Black Hole Tank" + x: 7.5d + y: -12.0d + } + { + dependencies: ["054B2BA570F930BC"] + hide_dependency_lines: true + id: "11312D1DA1B0B740" + rewards: [{ + exclude_from_claim_all: true + id: "5D10A336000CAFCA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "2476CA6854F0E77F" + item: "industrialforegoing:supreme_black_hole_tank" + type: "item" + }] + title: "&6Supreme Black Hole Tank" + x: 6.5d + y: -8.5d + } + { + dependencies: ["513ED8B3BE23BF6E"] + hide_dependency_lines: true + id: "4EC639CAA771FB58" + rewards: [{ + exclude_from_claim_all: true + id: "2E2EC91F8EF8122B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "145CB14289DDCBE7" + item: "industrialforegoing:simple_black_hole_tank" + type: "item" + }] + title: "&bSimple Black Hole Tank" + x: 8.0d + y: -10.0d + } + { + dependencies: ["55C0841BBDCA69F4"] + hide_dependency_lines: true + id: "656EB0A3579F4119" + rewards: [{ + exclude_from_claim_all: true + id: "1C108C24272E0755" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3E5AB8D37CED9078" + item: "industrialforegoing:common_black_hole_unit" + type: "item" + }] + title: "&3Common Black Hole Unit" + x: 5.5d + y: -9.0d + } + { + dependencies: ["55C0841BBDCA69F4"] + hide_dependency_lines: true + id: "247099216FB9A068" + rewards: [{ + exclude_from_claim_all: true + id: "74A31B2924D4B771" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "53BAED0F51A8FD34" + item: "industrialforegoing:pity_black_hole_unit" + type: "item" + }] + title: "&aPity Black Hole Unit" + x: 5.0d + y: -10.0d + } + { + dependencies: ["513ED8B3BE23BF6E"] + hide_dependency_lines: true + id: "7B7BAE2DC1D7DE57" + rewards: [{ + exclude_from_claim_all: true + id: "3F7C2F1E4414FE8F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3EF83B57041442DE" + item: "industrialforegoing:simple_black_hole_unit" + type: "item" + }] + title: "&bSimple Black Hole Unit" + x: 5.0d + y: -11.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "330E4A7591F2FD1A" + rewards: [{ + exclude_from_claim_all: true + id: "19D07D63258DF804" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "00711F35F4710383" + item: "industrialforegoing:advanced_black_hole_unit" + type: "item" + }] + title: "&dAdvanced Black Hole Unit" + x: 5.5d + y: -12.0d + } + { + dependencies: ["054B2BA570F930BC"] + hide_dependency_lines: true + id: "5B584592AC60C2EA" + rewards: [{ + exclude_from_claim_all: true + id: "1789A5F7755A82BB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "428D12C5BF2797ED" + item: "industrialforegoing:supreme_black_hole_unit" + type: "item" + }] + title: "&6Supreme Black Hole Unit" + x: 6.5d + y: -12.5d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "241FC2CDF86571E6" + rewards: [{ + exclude_from_claim_all: true + id: "217993EB92AD75D8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "07E07E432B5FB305" + item: "industrialforegoing:advanced_black_hole_tank" + type: "item" + }] + title: "&dAdvanced Black Hole Tank" + x: 7.5d + y: -9.0d + } + { + dependencies: ["054B2BA570F930BC"] + id: "3AE8F1E0E7CE1434" + rewards: [{ + exclude_from_claim_all: true + id: "0D48FEA1D7A42C44" + table_id: 5236874501558129216L + type: "random" + }] + shape: "square" + tasks: [{ + id: "0EC7B27179FDB5B4" + item: "industrialforegoing:mycelial_reactor" + type: "item" + }] + x: 6.5d + y: -4.0d + } + { + dependencies: ["513ED8B3BE23BF6E"] + hide_dependency_lines: true + id: "4C841CDCB034ACB5" + rewards: [{ + exclude_from_claim_all: true + id: "644AB92C7CD2F2D6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "0965BB77913DBA44" + item: "industrialforegoing:mycelial_furnace" + type: "item" + }] + x: 7.5d + y: -4.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "5BAD582523A809FA" + rewards: [{ + exclude_from_claim_all: true + id: "1B378748A48CCEAD" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "1337A00FF100C83C" + item: "industrialforegoing:mycelial_slimey" + type: "item" + }] + x: 7.5d + y: -6.0d + } + { + dependencies: ["513ED8B3BE23BF6E"] + hide_dependency_lines: true + id: "2971172A19254B68" + rewards: [{ + exclude_from_claim_all: true + id: "1FF6AE5E58321114" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "51AB45A3DABA266E" + item: "industrialforegoing:mycelial_culinary" + type: "item" + }] + x: 7.5d + y: -7.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "05C7970BCDAB942A" + rewards: [{ + exclude_from_claim_all: true + id: "6EE9BFD401F164C4" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "1252335E81303047" + item: "industrialforegoing:mycelial_potion" + type: "item" + }] + x: 5.5d + y: -7.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "4C6FC968CBEF995B" + rewards: [{ + exclude_from_claim_all: true + id: "1EB0AFB087D09DBA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "20B8585391153D77" + item: "industrialforegoing:mycelial_disenchantment" + type: "item" + }] + x: 8.5d + y: -4.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "6D7788993C5B9139" + rewards: [{ + exclude_from_claim_all: true + id: "7F380F3FBCFD4266" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "778C256ACACD690E" + item: "industrialforegoing:mycelial_ender" + type: "item" + }] + x: 5.5d + y: -6.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "6611B10CFF5DD33C" + rewards: [{ + exclude_from_claim_all: true + id: "68AE5466217A7A73" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "5CB9AAA61B973F75" + item: "industrialforegoing:mycelial_explosive" + type: "item" + }] + x: 4.5d + y: -4.0d + } + { + dependencies: ["513ED8B3BE23BF6E"] + hide_dependency_lines: true + id: "645548A4E940BB5C" + rewards: [{ + exclude_from_claim_all: true + id: "3EAA11836C193FF9" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "18F56609A124BFD9" + item: "industrialforegoing:mycelial_frosty" + type: "item" + }] + x: 6.5d + y: -5.0d + } + { + dependencies: ["054B2BA570F930BC"] + hide_dependency_lines: true + id: "2C9ACEED49DDF974" + rewards: [{ + exclude_from_claim_all: true + id: "0BBE51E44DA9F9EB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "0E639758FA07724B" + item: "industrialforegoing:mycelial_halitosis" + type: "item" + }] + x: 8.5d + y: -6.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "1325B383BCCD6534" + rewards: [{ + exclude_from_claim_all: true + id: "31E22620A92C3E0B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "3603EF2961846C40" + item: "industrialforegoing:mycelial_magma" + type: "item" + }] + x: 7.5d + y: -5.0d + } + { + dependencies: ["513ED8B3BE23BF6E"] + hide_dependency_lines: true + id: "02CFF7F97A942D8C" + rewards: [{ + exclude_from_claim_all: true + id: "01F49B6AB239C277" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "584B9DB0E79ACFEB" + item: "industrialforegoing:mycelial_pink" + type: "item" + }] + x: 5.5d + y: -5.0d + } + { + dependencies: ["054B2BA570F930BC"] + hide_dependency_lines: true + id: "301887B504EF4F82" + rewards: [{ + exclude_from_claim_all: true + id: "42C58F47D5313AA6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "68D5216F8D5E1A00" + item: "industrialforegoing:mycelial_netherstar" + type: "item" + }] + x: 8.5d + y: -5.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "1193ABAFF90CD90C" + rewards: [{ + exclude_from_claim_all: true + id: "6F10ACC3DE1ACBD2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "46FC3DAEFC427B1B" + item: "industrialforegoing:mycelial_death" + type: "item" + }] + x: 6.5d + y: -7.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "5DFA1C0FA80815F4" + rewards: [{ + exclude_from_claim_all: true + id: "5F64BB34E57623D0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "7B962E6A8C6DD143" + item: "industrialforegoing:mycelial_rocket" + type: "item" + }] + x: 5.5d + y: -4.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + hide_until_deps_visible: false + id: "2227AB6625806066" + rewards: [{ + exclude_from_claim_all: true + id: "58FE30DC00074B58" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "1EC6A0AEF6C612DD" + item: "industrialforegoing:mycelial_crimed" + type: "item" + }] + x: 4.5d + y: -6.0d + } + { + dependencies: ["054B2BA570F930BC"] + hide_dependency_lines: true + id: "0ADFE9AD2310EE3B" + rewards: [{ + exclude_from_claim_all: true + id: "009B5479576D209C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "4ADE80FF3CA939F5" + item: "industrialforegoing:mycelial_meatallurgic" + type: "item" + }] + x: 4.5d + y: -5.0d + } + { + dependencies: ["55C0841BBDCA69F4"] + id: "6FA7CF416D1C9C9D" + rewards: [{ + exclude_from_claim_all: true + id: "3F3D1BF1343ADD03" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5A2FBF9B25E0B831" + item: "industrialforegoing:fluid_extractor" + type: "item" + }] + x: -5.5d + y: -10.5d + } + { + dependencies: ["0773B45F80E9EB41"] + id: "3B22A51CC6F798F1" + rewards: [{ + exclude_from_claim_all: true + id: "70066C3B51D25353" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "69084C208003E1AB" + item: "industrialforegoing:bioreactor" + type: "item" + }] + x: -8.5d + y: -4.0d + } + { + dependencies: ["0773B45F80E9EB41"] + id: "2649F8D4FD0ADA63" + rewards: [{ + exclude_from_claim_all: true + id: "10F1D6A7D8ABCB80" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "4B8E66D5B58A319E" + item: "industrialforegoing:dissolution_chamber" + type: "item" + }] + x: -7.5d + y: -4.5d + } + { + dependencies: ["2649F8D4FD0ADA63"] + description: [ + "&6Addons&r can increase:" + "" + "- &o&9Range&r" + "- &o&eSpeed&r" + "- &o&cEfficiency&r" + "" + "&6Addons&r are most important for &nquickier&r progress." + ] + hide_until_deps_visible: true + icon: { + Count: 1 + id: "industrialforegoing:range_addon10" + tag: { + TitaniumAugment: { + Range: 10.0f + } + } + } + id: "41B9C21ACFDC2E1A" + rewards: [{ + exclude_from_claim_all: true + id: "3B39960FAC220A20" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "34C5A702E4E32C95" + type: "checkmark" + }] + title: "&3Addons" + x: -6.5d + y: -4.5d + } + { + dependencies: ["66F1BCEE09A2680D"] + id: "01CC7AB47AE60276" + rewards: [{ + exclude_from_claim_all: true + id: "03B1D3A807622DDF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "578A40D1561A3126" + item: "industrialforegoing:mob_slaughter_factory" + type: "item" + }] + x: -4.5d + y: -5.5d + } + { + dependencies: ["0773B45F80E9EB41"] + id: "54AD9CDE86A81ADC" + rewards: [{ + exclude_from_claim_all: true + id: "54B572F714FAF8A3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "713DEDE411F98C44" + item: "industrialforegoing:plant_gatherer" + type: "item" + } + { + id: "6FE4903548616B87" + item: "industrialforegoing:plant_sower" + type: "item" + } + ] + title: "Plant Gatherer \\& Sower" + x: -10.0d + y: -5.5d + } + { + dependencies: ["76E70BD18B5A5BF6"] + id: "23F8D2B6939329F3" + rewards: [{ + exclude_from_claim_all: true + id: "0EFCEFC6031C200D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "652C171739659AAD" + item: { + Count: 1 + id: "industrialforegoing:infinity_trident" + tag: { + CanCharge: 1b + Channeling: 0b + Energy: 0L + Fluid: { + Amount: 0 + FluidName: "biofuel" + } + Loyalty: 0 + Riptide: 0 + Selected: "POOR" + Special: 0b + } + } + type: "item" + }] + x: -0.2142857142857153d + y: -9.125d + } + { + dependencies: ["76E70BD18B5A5BF6"] + id: "74C23539C132EABF" + rewards: [{ + exclude_from_claim_all: true + id: "535FA5E32B75D6A1" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "1CCB825000A8CE9C" + item: { + Count: 1 + id: "industrialforegoing:infinity_launcher" + tag: { + CanCharge: 1b + Energy: 0L + Fluid: { + Amount: 0 + FluidName: "biofuel" + } + Plunger: 0 + Selected: "POOR" + Special: 0b + } + } + type: "item" + }] + x: -2.2142857142857153d + y: -8.125d + } + { + dependencies: ["2649F8D4FD0ADA63"] + hide_until_deps_visible: true + id: "51C0F60980038AB9" + rewards: [{ + exclude_from_claim_all: true + id: "64647B493D19871E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "59AA73691072E253" + item: "industrialforegoing:pink_slime" + type: "item" + }] + x: -7.5d + y: -3.5d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "30B059CB97415938" + rewards: [{ + exclude_from_claim_all: true + id: "0BEE5EE6A39C4B27" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0930A913B569691D" + item: "industrialforegoing:material_stonework_factory" + type: "item" + }] + x: 0.0d + y: -7.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "26526DBD1CC48848" + rewards: [{ + exclude_from_claim_all: true + id: "6542E350CAF410AE" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1430D02A96678D88" + item: "industrialforegoing:mob_crusher" + type: "item" + }] + x: 2.5d + y: -6.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "7113E27E75B373C4" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "3370849D2475AF44" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "521BEE68C16E960E" + item: "industrialforegoing:enchantment_factory" + type: "item" + }] + x: 2.0d + y: -4.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "139CFD1AA7AC0319" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "0B361225988C38E1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "14D659C0EBB6BFEA" + item: "industrialforegoing:enchantment_applicator" + type: "item" + }] + x: 2.5d + y: -5.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "3C72F1176556D81D" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "6D87A827006BD1F0" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2A716B440B5EF762" + item: "industrialforegoing:enchantment_extractor" + type: "item" + }] + x: 0.0d + y: -4.0d + } + { + dependencies: ["0773B45F80E9EB41"] + id: "66F1BCEE09A2680D" + rewards: [{ + exclude_from_claim_all: true + id: "4290E7DECA421B56" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "09CAE11C932A223A" + item: "industrialforegoing:animal_feeder" + type: "item" + } + { + id: "2BEBBB25C7007D2C" + item: "industrialforegoing:animal_rancher" + type: "item" + } + { + id: "01DA0830963EB153" + item: "industrialforegoing:animal_baby_separator" + type: "item" + } + ] + title: "Animal Factory" + x: -7.0d + y: -5.5d + } + { + dependencies: ["6FA7CF416D1C9C9D"] + id: "371982593B9A363C" + rewards: [{ + exclude_from_claim_all: true + id: "30BA39DE8FB86D3A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "6C813D179A8012C5" + item: "industrialforegoing:latex_bucket" + type: "item" + }] + x: -7.0d + y: -10.5d + } + { + dependencies: ["01CC7AB47AE60276"] + id: "00E7410F65814081" + rewards: [{ + exclude_from_claim_all: true + id: "338E9D253BEC65AE" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "3A280991D7E36DF2" + item: "industrialforegoing:pink_slime_bucket" + type: "item" + }] + x: -2.5d + y: -5.5d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "09907A62A610CEB1" + rewards: [{ + exclude_from_claim_all: true + id: "6A3BF533BF4BD0E9" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "678B11AEB76F8344" + item: "industrialforegoing:mob_duplicator" + type: "item" + }] + x: 2.0d + y: -7.0d + } + { + dependencies: ["513ED8B3BE23BF6E"] + id: "5A2A5523A425B7F3" + rewards: [{ + exclude_from_claim_all: true + id: "2C5E7DA919E6FBAD" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "60E762274329A1FC" + item: "industrialforegoing:marine_fisher" + type: "item" + }] + x: 2.5d + y: -10.5d + } + { + dependencies: ["76E70BD18B5A5BF6"] + id: "12D8D3A9F88EFBA9" + rewards: [{ + exclude_from_claim_all: true + id: "6CDB435F0E4F9631" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "75DD0C71099A37ED" + item: { + Count: 1 + id: "industrialforegoing:infinity_nuke" + tag: { + CanCharge: 1b + Energy: 0L + Fluid: { + Amount: 0 + FluidName: "biofuel" + } + Selected: "POOR" + Special: 0b + } + } + type: "item" + }] + x: -0.2142857142857153d + y: -8.125d + } + { + dependencies: ["5C2CBC6B89014BEC"] + hide_dependency_lines: true + id: "76E70BD18B5A5BF6" + rewards: [{ + exclude_from_claim_all: true + id: "4FA251A73A30A48D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "6D9913F3180B3C29" + item: { + Count: 1 + id: "industrialforegoing:infinity_charger" + tag: { } + } + type: "item" + }] + x: -1.2142857142857153d + y: -8.625d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "4ABF34DC1EC7A108" + rewards: [{ + exclude_from_claim_all: true + id: "7ED0C0151F76D0AC" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "0D9F1BE88708E67E" + item: "industrialforegoing:ore_laser_base" + type: "item" + } + { + id: "7442DAC1ACAFC4B3" + item: "industrialforegoing:fluid_laser_base" + type: "item" + } + { + count: 4L + id: "1CB0BDE36E5D179E" + item: "industrialforegoing:laser_drill" + type: "item" + } + ] + title: "&dThe Laser Drill" + x: 1.0d + y: -2.0d + } + { + dependencies: ["4ABF34DC1EC7A108"] + description: ["Using &dPurple Laser Lens&r you can mine &7Ether Gas&r, which is needed for creation of the &6Supremium Machine Frame&r."] + id: "504E97B6BB638F87" + rewards: [{ + exclude_from_claim_all: true + id: "1DB7901D8AD49B38" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6E1A48B768B1EF7A" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(monumental_recipes:laser_lenses)" + } + } + title: "Laser Lens" + type: "item" + }] + title: "The Laser Lenses" + x: 3.0d + y: -2.0d + } + { + dependencies: ["513ED8B3BE23BF6E"] + id: "135C0EE181AFECE7" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "385075B2B5D0DDA5" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "779EEA5CB0181A70" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "industrialforegoing:plant_fertilizer" + } + type: "item" + }] + x: 2.0d + y: -11.5d + } + { + dependencies: ["01CC7AB47AE60276"] + id: "45FE60D77F541D08" + rewards: [{ + exclude_from_claim_all: true + id: "6C9C851DDA57FD49" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2B4B47208FFD9392" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "industrialforegoing:meat_feeder" + } + type: "item" + }] + x: -4.5d + y: -6.5d + } + { + dependencies: ["414AFCC463FD81BA"] + id: "3C86D092F681C644" + rewards: [{ + exclude_from_claim_all: true + id: "1136F810BDBFD142" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "7AC4A2599ED43A0C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "industrialforegoing:mechanical_dirt" + } + type: "item" + }] + x: -4.5d + y: -3.5d + } + { + dependencies: ["7C2FFA549CAA9F5D"] + id: "537CEDC602B81DDE" + rewards: [{ + exclude_from_claim_all: true + id: "6B2D04BB3DB84428" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5150198CAFCD9AA2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "industrialforegoing:sludge_refiner" + } + type: "item" + }] + x: -10.0d + y: -3.5d + } + { + dependencies: ["55C0841BBDCA69F4"] + id: "6ED7A16DEDC19809" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "0E066467692B2A6B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "09E0B0BFC3FED086" + item: "industrialforegoing:pitiful_generator" + type: "item" + }] + x: -3.5d + y: -9.5d + } + { + dependencies: ["55C0841BBDCA69F4"] + id: "48B63DD48437F047" + rewards: [{ + exclude_from_claim_all: true + id: "499CA7D308487FD9" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 2L + id: "113C683D6127A891" + item: "industrialforegoing:item_transporter_type" + type: "item" + } + { + count: 2L + id: "4D736EEA2C2543DE" + item: "industrialforegoing:fluid_transporter_type" + type: "item" + } + { + count: 2L + id: "4EBF793DA10D3692" + item: "industrialforegoing:world_transporter_type" + type: "item" + } + ] + title: "Item \\& Fluid Transport" + x: -4.5d + y: -9.5d + } + { + dependencies: ["1A4674A6B818BFE8"] + id: "0EA9E52B67B533DF" + rewards: [{ + exclude_from_claim_all: true + id: "0D31A77DCB76B0ED" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1CA3A2FA058EB9D5" + item: "industrialforegoing:dryrubber" + type: "item" + }] + title: "Rubber" + x: -8.5d + y: -9.0d + } + { + dependencies: ["3B22A51CC6F798F1"] + id: "7CECD479E8AE4B29" + rewards: [{ + exclude_from_claim_all: true + id: "7271F042FDF97707" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6117998F32E709D6" + item: "industrialforegoing:biofuel_bucket" + type: "item" + }] + x: -8.5d + y: -3.0d + } + { + dependencies: ["7CECD479E8AE4B29"] + id: "7AC01E9564AE9325" + rewards: [{ + exclude_from_claim_all: true + id: "159DB9343A04694A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "7A936CCD6E13A9E8" + item: "industrialforegoing:biofuel_generator" + type: "item" + }] + x: -8.5d + y: -2.0d + } + { + dependencies: ["504E97B6BB638F87"] + id: "3CA0780203130557" + rewards: [{ + exclude_from_claim_all: true + id: "779C2047E018976E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "69605D0154F3316F" + item: "industrialforegoing:ether_gas_bucket" + type: "item" + }] + x: 4.5d + y: -2.0d + } + { + dependencies: ["00E7410F65814081"] + id: "5726B7CB040A0F4E" + rewards: [{ + exclude_from_claim_all: true + id: "7A9CBE5767E48278" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5E2A607687543DAB" + item: "industrialforegoing:pink_slime_ingot" + type: "item" + }] + x: -2.5d + y: -6.5d + } + { + dependencies: [ + "45FE60D77F541D08" + "5726B7CB040A0F4E" + "5C2CBC6B89014BEC" + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "2FC30855F5EB4FCF" + rewards: [{ + exclude_from_claim_all: true + id: "1FBB1932D0549BB6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.2d + tasks: [{ + id: "4BB51D82816F6E31" + item: "industrialforegoing:washing_factory" + type: "item" + }] + x: -3.5d + y: -7.0d + } + { + dependencies: ["0773B45F80E9EB41"] + hide_dependency_lines: true + id: "616CFD4078D67B51" + rewards: [{ + exclude_from_claim_all: true + id: "01BBD7355AFE76A2" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 6L + id: "3AE63F706CF41E9B" + item: "industrialforegoing:conveyor" + type: "item" + }] + title: "Conveyor Belt" + x: -6.5d + y: -9.0d + } + { + dependencies: ["616CFD4078D67B51"] + hide_until_deps_visible: true + id: "3027584AA6138E6D" + rewards: [{ + exclude_from_claim_all: true + id: "180FE693B63280F8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "706E6BE855C4AE5C" + item: "industrialforegoing:conveyor_insertion_upgrade" + type: "item" + } + { + id: "1D7CB07E1E6F7A29" + item: "industrialforegoing:conveyor_extraction_upgrade" + type: "item" + } + ] + title: "Conveyor Insertion \\& Extraction" + x: -6.0d + y: -8.0d + } + { + dependencies: ["616CFD4078D67B51"] + hide_until_deps_visible: true + id: "06094615950AC062" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "639D3EDD62CC7F69" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "1F78346AC1AA58B4" + item: "industrialforegoing:conveyor_detection_upgrade" + type: "item" + } + { + id: "3DB99B677678BCDD" + item: "industrialforegoing:conveyor_bouncing_upgrade" + type: "item" + } + { + id: "1A64390CFB75F256" + item: "industrialforegoing:conveyor_dropping_upgrade" + type: "item" + } + { + id: "387D0194F77E1870" + item: "industrialforegoing:conveyor_blinking_upgrade" + type: "item" + } + { + id: "4C5292076C0A9E83" + item: "industrialforegoing:conveyor_splitting_upgrade" + type: "item" + } + ] + title: "Other Conveyor Upgrades" + x: -7.0d + y: -8.0d + } + { + dependencies: ["0773B45F80E9EB41"] + id: "427C3AFC0FF131CD" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "269DCE3432DBA91E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "62B10DA5B0939647" + item: "industrialforegoing:fluid_placer" + type: "item" + } + { + id: "03B095E09D58AE1B" + item: "industrialforegoing:fluid_collector" + type: "item" + } + ] + title: "Fluid Placer \\& Collector" + x: -7.5d + y: -6.75d + } + { + dependencies: ["0773B45F80E9EB41"] + id: "2CCFEE98FE3B2E97" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "6D0C44BA6B04FDBF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "796061CC713A9A91" + item: "industrialforegoing:block_breaker" + type: "item" + } + { + id: "294C729B9EBD7A3C" + item: "industrialforegoing:block_placer" + type: "item" + } + ] + title: "Block Breaker \\& Placer" + x: -9.5d + y: -6.75d + } + { + dependencies: ["0773B45F80E9EB41"] + id: "7914FE37B65E78BF" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "0B1E6E51A24C00EC" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "5A4281E7BC8070FA" + item: "industrialforegoing:sewage_composter" + type: "item" + } + { + id: "3EB946438B2233EA" + item: "industrialforegoing:spores_recreator" + type: "item" + } + { + id: "5443D997E8CF4165" + item: "industrialforegoing:water_condensator" + type: "item" + } + { + id: "4391354D69FE0D69" + item: "industrialforegoing:dye_mixer" + type: "item" + } + ] + title: "Useful misc. Machines" + x: -8.5d + y: -7.25d + } + { + dependencies: ["54AD9CDE86A81ADC"] + id: "7C2FFA549CAA9F5D" + rewards: [{ + exclude_from_claim_all: true + id: "6E9BF14F3FEC2B15" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "67612826C7E7F4A4" + item: "industrialforegoing:sludge_bucket" + type: "item" + }] + x: -10.0d + y: -4.5d + } + { + dependencies: ["76E70BD18B5A5BF6"] + id: "1DF44866B52B13A1" + rewards: [{ + exclude_from_claim_all: true + id: "763CC2A6A54E04DE" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "27A2CF11531E1699" + item: { + Count: 1 + id: "industrialforegoing:infinity_backpack" + tag: { + CanCharge: 1b + Energy: 0L + Selected: "POOR" + Special: 0b + } + } + type: "item" + }] + x: -1.2142857142857153d + y: -7.625d + } + { + dependencies: ["01CC7AB47AE60276"] + id: "414AFCC463FD81BA" + rewards: [{ + exclude_from_claim_all: true + id: "730568B55E74A2B8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "584761BFB39CBED2" + item: "industrialforegoing:meat_bucket" + type: "item" + }] + x: -4.5d + y: -4.5d + } + { + dependencies: ["513ED8B3BE23BF6E"] + id: "22702838FC507A2E" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "182CD3EE0394AA9F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "7BC5A77A97F5FEA3" + item: "industrialforegoing:hydroponic_bed" + type: "item" + }] + x: 2.0d + y: -9.5d + } + { + dependencies: ["513ED8B3BE23BF6E"] + id: "224C07AC71C5F40E" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "1D8B85AB2F895550" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "353C9F6B5E56C76E" + item: "industrialforegoing:fermentation_station" + type: "item" + }] + x: 1.0d + y: -12.0d + } + { + dependencies: ["513ED8B3BE23BF6E"] + id: "1684D52FDAAC894B" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "0A92FCC22AEA1496" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "720D4B73408CD1F0" + item: "industrialforegoing:mob_detector" + type: "item" + }] + x: 0.0d + y: -11.5d + } + { + dependencies: ["0773B45F80E9EB41"] + hide_dependency_lines: true + id: "442F62E575CC0B28" + rewards: [{ + exclude_from_claim_all: true + id: "0AEC90C9267DB259" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "55852231E24FD528" + item: "industrialforegoing:mob_imprisonment_tool" + type: "item" + }] + x: -4.0d + y: -8.5d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "4A8C60412E59E971" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "0F3FEB0DD3C4CD51" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "18A5C86DE82D9671" + item: "industrialforegoing:enchantment_sorter" + type: "item" + }] + x: 1.0d + y: -3.5d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "2782EA80C1C74EBD" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "4CDB72EC370F84B8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3EFA144FCF33A935" + item: "industrialforegoing:potion_brewer" + type: "item" + }] + x: -0.5d + y: -5.0d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "4F3EF1574F31A7E2" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "681478FAFCCB5A2F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0D1F3F6898F4E776" + item: "industrialforegoing:stasis_chamber" + type: "item" + }] + x: 1.0d + y: -7.5d + } + { + dependencies: ["5C2CBC6B89014BEC"] + id: "34AA079FFAFC64BD" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "7496CB58B6CFB80F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "363855E6A408A2E5" + item: "industrialforegoing:fluid_sieving_machine" + type: "item" + }] + x: -0.5d + y: -6.0d + } + { + dependencies: ["054B2BA570F930BC"] + id: "28B3591BFC0FA08B" + rewards: [{ + exclude_from_claim_all: true + id: "2BAA8D48DB060E38" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "12A0A25980EA485E" + item: "industrialforegoing:wither_builder" + type: "item" + }] + x: 8.5d + y: -2.0d + } + { + dependencies: ["76E70BD18B5A5BF6"] + id: "0810E8E735ADA134" + rewards: [{ + exclude_from_claim_all: true + id: "1DA73BD7D33E60AD" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "10C89041A4B1FADD" + item: { + Count: 1 + id: "industrialforegoing:infinity_drill" + tag: { + CanCharge: 1b + Energy: 0L + Fluid: { + Amount: 0 + FluidName: "biofuel" + } + Selected: "POOR" + Special: 0b + } + } + type: "item" + }] + x: -2.2142857142857153d + y: -9.125d + } + { + dependencies: ["76E70BD18B5A5BF6"] + id: "4A399C387FD1A3EA" + rewards: [{ + exclude_from_claim_all: true + id: "2BACB92E65E9451B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "7FB10C555EEBCBA8" + item: { + Count: 1 + id: "industrialforegoing:infinity_saw" + tag: { + CanCharge: 1b + Energy: 0L + Fluid: { + Amount: 0 + FluidName: "biofuel" + } + Selected: "POOR" + Special: 0b + } + } + type: "item" + }] + x: -1.7142857142857153d + y: -9.625d + } + { + dependencies: ["76E70BD18B5A5BF6"] + id: "1107B2E4F6B13A99" + rewards: [{ + exclude_from_claim_all: true + id: "773AB720DC706F64" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "17FA9E082982A0B9" + item: { + Count: 1 + id: "industrialforegoing:infinity_hammer" + tag: { + Beheading: 0 + CanCharge: 1b + Energy: 0L + Fluid: { + Amount: 0 + FluidName: "biofuel" + } + Selected: "POOR" + Special: 0b + } + } + type: "item" + }] + x: -0.7142857142857153d + y: -9.625d + } + ] + title: "&3&oIndustrial Foregoing" +} diff --git a/minecraft/config/ftbquests/quests/chapters/iron_furngens.snbt b/minecraft/config/ftbquests/quests/chapters/iron_furngens.snbt new file mode 100644 index 0000000..8dd8f08 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/iron_furngens.snbt @@ -0,0 +1,1292 @@ +{ + autofocus_id: "4F0520A262ABF5FC" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "iron_furngens" + group: "62AD16E73710A992" + icon: { + Count: 1 + id: "ironfurnaces:million_furnace" + tag: { + display: { + Name: "{\"extra\":[{\"color\":\"light_purple\",\"text\":\"R\"},{\"color\":\"red\",\"text\":\"a\"},{\"color\":\"green\",\"text\":\"i\"},{\"color\":\"light_purple\",\"text\":\"n\"},{\"color\":\"light_purple\",\"text\":\"b\"},{\"color\":\"red\",\"text\":\"o\"},{\"color\":\"blue\",\"text\":\"w\"},{\"color\":\"red\",\"text\":\" \"},{\"color\":\"red\",\"text\":\"F\"},{\"color\":\"green\",\"text\":\"u\"},{\"color\":\"blue\",\"text\":\"r\"},{\"color\":\"light_purple\",\"text\":\"n\"},{\"color\":\"red\",\"text\":\"a\"},{\"color\":\"aqua\",\"text\":\"c\"},{\"color\":\"aqua\",\"text\":\"e\"}],\"text\":\"\"}" + } + } + } + id: "38776B03328BEF2C" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -2.7857142857142776d + y: -16.624999999999996d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -3.5d + y: -9.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 9.0d + y: -9.5d + } + { + height: 1.0d + image: "kubejs:item/camel_" + rotation: 0.0d + width: 1.0d + x: 0.2142857142857153d + y: -19.03571428571428d + } + { + height: 2.0d + image: "kubejs:item/iron_furnaces" + order: 1 + rotation: 0.0d + width: 10.0d + x: 4.0d + y: -18.0d + } + { + height: 1.0d + image: "kubejs:item/caelestis_blade_strip_e" + rotation: 0.0d + width: 1.0d + x: 7.857142857142847d + y: -18.857142857142858d + } + ] + order_index: 3 + quest_links: [ ] + quests: [ + { + dependencies: ["3E9F5A571D66D654"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "4F0520A262ABF5FC" + rewards: [ + { + id: "2D36F4732957B9A4" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "291E1448DD15540D" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "0E099001B3A37382" + item: "ironfurnaces:iron_furnace" + type: "item" + }] + x: -1.5d + y: -15.0d + } + { + dependencies: ["15108C34082629CB"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "4FFA0E75873C9E43" + rewards: [ + { + id: "26EB70705A795C5C" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "4B68624010F9A2AF" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "6F78BB3F9719FC59" + item: "ironfurnaces:gold_furnace" + type: "item" + }] + x: -1.5d + y: -13.0d + } + { + dependencies: ["4FFA0E75873C9E43"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "1BD55248A4A2F746" + rewards: [ + { + id: "46B539DD52DD5843" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0393A1BAC6C8638C" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "4B91053AA9CDA2BA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:diamond_furnace" + } + type: "item" + }] + x: 0.0d + y: -13.0d + } + { + dependencies: ["1BD55248A4A2F746"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "4F90B661FCAD7F06" + rewards: [ + { + id: "340C06D7E79FD36D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6E41C3E54E32CEE1" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "47C17E03F4EE9717" + item: "ironfurnaces:emerald_furnace" + type: "item" + }] + x: 0.0d + y: -14.0d + } + { + dependencies: ["4F90B661FCAD7F06"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "7F7D391EFBC3F4B0" + rewards: [ + { + id: "443F6603873D2ABA" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0D7C4E796A32FAC5" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "7806C4C145241240" + item: "ironfurnaces:obsidian_furnace" + type: "item" + }] + x: 1.0d + y: -14.0d + } + { + dependencies: ["1BD55248A4A2F746"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "0BD51D1C1A6C9DDA" + rewards: [ + { + id: "3DC05C9093A913B7" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "601C4767FC1BEC77" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "6DCDA864CF9A8137" + item: "ironfurnaces:crystal_furnace" + type: "item" + }] + x: 0.0d + y: -12.0d + } + { + dependencies: ["7F7D391EFBC3F4B0"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "3B2DC7721D6091A9" + rewards: [ + { + id: "7FAFFCC9AA8D242C" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "3ED95D1801909D8D" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "06294D72835F86EC" + item: "ironfurnaces:netherite_furnace" + type: "item" + }] + x: 2.0d + y: -14.0d + } + { + dependencies: ["4F0520A262ABF5FC"] + dependency_requirement: "one_completed" + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "15108C34082629CB" + optional: true + rewards: [ + { + id: "2FB28D42AC3DE656" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "4B50DAE4885E2F02" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "3E0655443D5D5973" + item: "ironfurnaces:silver_furnace" + type: "item" + }] + x: -1.5d + y: -14.0d + } + { + dependencies: [ + "37C09CF1535831C8" + "7DFA2A821AF89EC8" + ] + description: [ + "Link &o&b7&r furnaces and keep them &o&ball running at the same time&r to generate &ePower&r." + "" + "Generates &o&b10,000&r &cRF&r/t when active." + ] + id: "137684A683529061" + min_width: 300 + rewards: [ + { + id: "553B0F7E7516F664" + type: "xp" + xp: 3000 + } + { + exclude_from_claim_all: true + id: "71CB2D00FDE8FD9A" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "4E4DFFB53095AC55" + item: { + Count: 1 + id: "ironfurnaces:million_furnace" + tag: { + display: { + Name: "{\"extra\":[{\"color\":\"blue\",\"text\":\"R\"},{\"color\":\"blue\",\"text\":\"a\"},{\"color\":\"aqua\",\"text\":\"i\"},{\"color\":\"blue\",\"text\":\"n\"},{\"color\":\"blue\",\"text\":\"b\"},{\"color\":\"blue\",\"text\":\"o\"},{\"color\":\"red\",\"text\":\"w\"},{\"color\":\"aqua\",\"text\":\" \"},{\"color\":\"red\",\"text\":\"F\"},{\"color\":\"blue\",\"text\":\"u\"},{\"color\":\"green\",\"text\":\"r\"},{\"color\":\"blue\",\"text\":\"n\"},{\"color\":\"yellow\",\"text\":\"a\"},{\"color\":\"light_purple\",\"text\":\"c\"},{\"color\":\"red\",\"text\":\"e\"}],\"text\":\"\"}" + } + } + } + type: "item" + }] + x: 6.75d + y: -15.0d + } + { + dependencies: [ + "3E9F5A571D66D654" + "0BD51D1C1A6C9DDA" + "1BD55248A4A2F746" + "4F90B661FCAD7F06" + "4FFA0E75873C9E43" + "4F0520A262ABF5FC" + "3B2DC7721D6091A9" + "7F7D391EFBC3F4B0" + "15108C34082629CB" + ] + description: ["Used for crafting a Rainbow Furnace."] + hide_dependency_lines: true + id: "37C09CF1535831C8" + rewards: [ + { + id: "187D81B79AAFCDC9" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "3DBFA47F48FC39B2" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "1E4C268BC783B72B" + item: "ironfurnaces:rainbow_plating" + type: "item" + }] + x: 6.0d + y: -16.0d + } + { + dependencies: ["3B2DC7721D6091A9"] + description: ["Used for crafting a Rainbow furnace and linker."] + hide_dependency_lines: true + id: "7DFA2A821AF89EC8" + rewards: [ + { + id: "294AC3A23A69C529" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "3BE0C616F55923BC" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "4A9DAA5E569E7CF0" + item: "ironfurnaces:rainbow_core" + type: "item" + }] + x: 7.5d + y: -16.0d + } + { + dependencies: ["773C9DA610091CFC"] + hide_dependency_lines: true + id: "60C1E3DDCE80E06A" + rewards: [ + { + id: "563477729028C309" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3FAA08E6E3716310" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "07D5F85E6528ABB2" + item: "ironfurnaces:upgrade_iron" + type: "item" + }] + x: -2.1d + y: -9.1d + } + { + dependencies: ["60C1E3DDCE80E06A"] + id: "4F7575CDE3E3C210" + rewards: [ + { + id: "257F8FA13A61A533" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "16A67D17DB7BF51C" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "281E6E2715EC38C9" + item: "ironfurnaces:upgrade_gold" + type: "item" + }] + x: -1.4d + y: -9.099999999999998d + } + { + dependencies: ["4F7575CDE3E3C210"] + id: "1E837BD89E89B4ED" + rewards: [ + { + id: "145197F74565E900" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "58E139C3FCB91817" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "44A42D1221FD6428" + item: "ironfurnaces:upgrade_diamond" + type: "item" + }] + x: -0.7d + y: -9.099999999999998d + } + { + dependencies: ["1E837BD89E89B4ED"] + id: "14DD40D301573E45" + rewards: [ + { + id: "7AA7DEFDAE6D0D97" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7D5C21A739371ACE" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "49D19237FE55BC89" + item: "ironfurnaces:upgrade_emerald" + type: "item" + }] + x: 0.0d + y: -9.45d + } + { + dependencies: ["14DD40D301573E45"] + id: "2BD6033A5CA7AAD9" + rewards: [ + { + id: "5C2816619486A689" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "428979951BDB5B3B" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "4E83449D3FF7351B" + item: "ironfurnaces:upgrade_obsidian" + type: "item" + }] + x: 0.6999999999999997d + y: -9.799999999999999d + } + { + dependencies: ["14DD40D301573E45"] + id: "423D21AB00898F01" + rewards: [ + { + id: "472D32D8D2FC3D9A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "18DD414336DC8CE1" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "525CAAB886F1750E" + item: "ironfurnaces:upgrade_crystal" + type: "item" + }] + x: 0.6999999999999997d + y: -9.099999999999998d + } + { + dependencies: ["2BD6033A5CA7AAD9"] + id: "2138C31FDB99FF44" + rewards: [ + { + id: "2B9AB4D30F739FBA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1916DB8CCF13286C" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2E5FB5EBA4F0DB68" + item: "ironfurnaces:upgrade_netherite" + type: "item" + }] + x: 1.4d + y: -9.799999999999999d + } + { + dependencies: ["773C9DA610091CFC"] + hide_dependency_lines: true + id: "6D42455659F8ED48" + rewards: [ + { + id: "3D841833D1E59E4A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1FFE48EE8994975B" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "36C5C3D8F24C2999" + item: "ironfurnaces:upgrade_copper" + type: "item" + }] + x: -2.1d + y: -9.799999999999999d + } + { + dependencies: ["6D42455659F8ED48"] + id: "205E8750366E846C" + rewards: [ + { + id: "0FDFF158F5B839C2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "74B9E84551A73DF9" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2A0CB14CBE4EB034" + item: "ironfurnaces:upgrade_silver" + type: "item" + }] + x: -1.4d + y: -9.799999999999999d + } + { + dependencies: ["423D21AB00898F01"] + id: "54A9FC48C8CCE281" + rewards: [ + { + id: "42025EC1A3E203DA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "13F4C3DE3AD997CE" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1E9C479379848C62" + item: "ironfurnaces:upgrade_obsidian2" + type: "item" + }] + x: 1.4d + y: -9.099999999999998d + } + { + dependencies: ["205E8750366E846C"] + id: "340F34EB836270F9" + rewards: [ + { + id: "63FD2AF19C27BF23" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7D16D66BD7DFA26B" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "234140609FFF623B" + item: "ironfurnaces:upgrade_gold2" + type: "item" + }] + x: -0.7d + y: -9.799999999999999d + } + { + dependencies: ["4F0520A262ABF5FC"] + description: ["Provide this block with &cFE&r and it will &epower&r any &drecievers&r that are &nlinked&r."] + hide_dependency_lines: true + id: "64FCC61BED04CC5F" + rewards: [ + { + id: "3B55A1893099A2CC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "37DACAB26BE80F36" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.8d + tasks: [{ + id: "4ABFEAB88829723F" + item: "ironfurnaces:heater" + type: "item" + }] + x: 6.8d + y: -13.2d + } + { + dependencies: ["4F0520A262ABF5FC"] + description: [ + "Place in a &o&bfuel slot&r of a furnace." + "" + "&3Iron&r or above &nonly&r." + ] + hide_dependency_lines: true + id: "0DF561617A0633C8" + rewards: [ + { + id: "2C91FD40C53182AD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2D94CDCD428972CC" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.8d + tasks: [{ + id: "1384363877767767" + item: "ironfurnaces:item_heater" + type: "item" + }] + x: 7.6d + y: -13.2d + } + { + dependencies: ["4F0520A262ABF5FC"] + description: [ + "Halves the &o&bcook time&r for &o&bblasting&r recipes." + "" + "Can only do &nblasting recipes&r." + ] + hide_dependency_lines: true + id: "3CF176559C2B5DB7" + min_width: 210 + rewards: [ + { + id: "1D92AB87D026B8F1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2A48A8C80CF98EDB" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.8d + tasks: [{ + id: "0F35BA4AEDC5FB2E" + item: "ironfurnaces:augment_blasting" + type: "item" + }] + x: 6.0d + y: -12.4d + } + { + dependencies: ["4F0520A262ABF5FC"] + description: [ + "Halves the &o&bcook time&r for &o&bsmoking&r recipes." + "" + "Can only do &nsmoking recipes&r." + ] + hide_dependency_lines: true + id: "3F33F9E4F02D1555" + min_width: 210 + rewards: [ + { + id: "4D3B5D2F6257918A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "509D6A2B266EE4BA" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.8d + tasks: [{ + id: "2D047E115F4373A3" + item: "ironfurnaces:augment_smoking" + type: "item" + }] + x: 6.8d + y: -12.4d + } + { + dependencies: ["4F0520A262ABF5FC"] + description: [ + "Halves &o&ball smelting recipes&r cook time." + "" + "Uses &ndouble&r the amount of &o&bfuel&r." + ] + hide_dependency_lines: true + id: "782B46D96C1FF2AE" + rewards: [ + { + id: "6C0C436964C64ECC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1ADB7D5A954FB74B" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.8d + tasks: [{ + id: "0375C6093E43FC7D" + item: "ironfurnaces:augment_speed" + type: "item" + }] + x: 7.6d + y: -12.4d + } + { + dependencies: ["4F0520A262ABF5FC"] + description: [ + "Fuel &o&bheats up&r the furnace &ntwice&r as fast." + "" + "All &o&bcooking recipes&r are &n1/4 slower&r." + ] + hide_dependency_lines: true + id: "0085D3A2C64140D7" + min_width: 210 + rewards: [ + { + id: "0033A71AAB0FC5B1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2A3CA99F22B1BFCB" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.8d + tasks: [{ + id: "5DEAA92F98DDBAAB" + item: "ironfurnaces:augment_fuel" + type: "item" + }] + x: 6.8d + y: -11.6d + } + { + dependencies: ["4F0520A262ABF5FC"] + description: [ + "&eRight-click&r to &o&bcopy&r settings." + "" + "&eShift+Right-click&r to &o&bpaste&r settings." + ] + hide_dependency_lines: true + id: "52DE931C5F538795" + rewards: [ + { + id: "51226D1431CA8F92" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "682FAB2BDD767153" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.8d + tasks: [{ + id: "3F4064075BDE5425" + item: "ironfurnaces:item_copy" + type: "item" + }] + x: 6.0d + y: -13.2d + } + { + dependencies: ["4F0520A262ABF5FC"] + description: ["Wrap up a furnace and &o&bgift it to a friend&r!"] + hide_dependency_lines: true + id: "28E8EE057F9B18C4" + min_width: 210 + rewards: [ + { + id: "00B651AF3CFBCC8D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "340EB3A07222C0C3" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "2A26FDFD6BCA8C7E" + item: "ironfurnaces:item_xmas" + type: "item" + }] + x: 6.0d + y: -9.5d + } + { + dependencies: ["773C9DA610091CFC"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "3E9F5A571D66D654" + optional: true + rewards: [ + { + id: "6B7AC8152E31EA2D" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "18FDBBD8C7C91D6B" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "2A39FD98727A3F72" + item: "ironfurnaces:copper_furnace" + type: "item" + }] + x: -1.5d + y: -16.0d + } + { + dependencies: ["5BACA82D1436C781"] + description: ["Push smelting to the absolute limit with extraordinary &asmelting speed&r, reconfigurable sides, &daugments&r for &csmoking&r and &2blasting&r and much more."] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/ir_fur" + } + } + id: "773C9DA610091CFC" + min_width: 300 + rewards: [ + { + id: "55284CB6C3DB726C" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "364C9CAFCDA90AC1" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oMechanical Crafter&r quest*" + tasks: [{ + id: "2B49076FE189A4CF" + type: "checkmark" + }] + title: "Welcome to &dIron Furnaces" + x: -3.5d + y: -16.0d + } + { + dependencies: ["4F0520A262ABF5FC"] + hide_dependency_lines: true + id: "7175F8109730B9C0" + rewards: [ + { + id: "2929A2FDC85C1368" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "72728817E26FA7DE" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "2D73B0F196627FB8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:item_spooky" + } + type: "item" + }] + x: 7.5d + y: -9.5d + } + { + dependencies: ["3B2DC7721D6091A9"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "4672AD02D376E5D0" + rewards: [ + { + id: "4703B1B6EAE207C1" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "556CE0895C5357BB" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "3547403FD96FE35F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:allthemodium_furnace" + } + type: "item" + }] + x: 3.0d + y: -14.0d + } + { + dependencies: ["4672AD02D376E5D0"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "0DC735075F12925A" + rewards: [ + { + id: "0277C229030FE110" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "62DA48AD72925391" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "5875B2A90CC9F243" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:vibranium_furnace" + } + type: "item" + }] + x: 3.0d + y: -15.0d + } + { + dependencies: ["0DC735075F12925A"] + description: ["Improved &o&aSpeed&r and fuel &dEfficiency&r."] + id: "24306D4BB13EC435" + rewards: [ + { + id: "3A6D254DFAEAF8EC" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "3D9752E5DBE6D8BA" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "29034C51BBD084A2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:unobtainium_furnace" + } + type: "item" + }] + x: 3.0d + y: -16.0d + } + { + dependencies: ["2138C31FDB99FF44"] + id: "176B5F0CBDA31F18" + rewards: [ + { + id: "7D74C447332A5641" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "018BFD9059EE1688" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "48FA540BC05A5F19" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:upgrade_allthemodium" + } + type: "item" + }] + x: 2.1d + y: -9.45d + } + { + dependencies: ["176B5F0CBDA31F18"] + id: "28733DB2238DFD14" + rewards: [ + { + id: "70D5B4801EEAC0E3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3825A34F3B2E7565" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1EFCFD771AF952CC" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:upgrade_vibranium" + } + type: "item" + }] + x: 2.8000000000000003d + y: -9.45d + } + { + dependencies: ["28733DB2238DFD14"] + id: "226575536BC934C3" + rewards: [ + { + id: "3947948F75EFDCE1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4D16FC812079DB09" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "07F6E76ABE3BFB5A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:upgrade_unobtainium" + } + type: "item" + }] + x: 3.4999999999999996d + y: -9.45d + } + { + dependencies: ["4F0520A262ABF5FC"] + hide_dependency_lines: true + id: "1C40ABD4151A61A5" + rewards: [ + { + id: "48410AC451AEC519" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "637A359EC9AE1569" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.8d + tasks: [{ + id: "2D36B2E187EFCCEC" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:augment_factory" + } + type: "item" + }] + x: 7.6d + y: -11.6d + } + { + dependencies: ["4F0520A262ABF5FC"] + hide_dependency_lines: true + id: "7CF04529EC23F186" + rewards: [ + { + id: "509FD3A65875D72A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7099C803A4DBC482" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.8d + tasks: [{ + id: "2B2F57EC4C3D48F8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "ironfurnaces:augment_generator" + } + type: "item" + }] + x: 6.0d + y: -11.6d + } + ] + title: "&3&oIron Furnaces" +} diff --git a/minecraft/config/ftbquests/quests/chapters/iron_jetpacks.snbt b/minecraft/config/ftbquests/quests/chapters/iron_jetpacks.snbt new file mode 100644 index 0000000..83ab896 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/iron_jetpacks.snbt @@ -0,0 +1,924 @@ +{ + autofocus_id: "48D4F012C2C2D360" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "iron_jetpacks" + group: "3A1C74A49BDDD6E1" + icon: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:creative" + Throttle: 1.0d + } + } + id: "54E42E542ED69BB2" + images: [ + { + height: 2.5d + image: "kubejs:item/iron-jetpacks" + rotation: 0.0d + width: 10.0d + x: 0.0d + y: -4.5d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 3.5d + y: 0.5d + } + ] + order_index: 1 + quest_links: [ ] + quests: [ + { + dependencies: [ + "071125FC42EBEAB9" + "7DC608A0643474D8" + ] + description: ["Acquire the parts for the &o&bWooden Jetpack"] + id: "245C31A66C9A0F8F" + rewards: [{ + exclude_from_claim_all: true + id: "50A76A4E8C86C151" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [ + { + id: "501453BF99082D50" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:wood" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "1AB3A713C1F7C61B" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:wood" + } + } + only_from_crafting: true + type: "item" + } + { + id: "7E45BE7DF16138D9" + item: "ironjetpacks:strap" + type: "item" + } + ] + title: "Wood Jetpack Parts" + x: 3.0d + y: 2.5d + } + { + dependencies: ["245C31A66C9A0F8F"] + description: [ + "&o&bCan store up to: 20,000 FE." + "" + ] + id: "1F4722FEE369A8E8" + rewards: [{ + exclude_from_claim_all: true + id: "03C8570AB8576E4A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft a Wood Jetpack" + tasks: [{ + id: "43EA46CB1E2D437E" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:wood" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: 3.0d + y: 4.0d + } + { + dependencies: ["7DC608A0643474D8"] + id: "5675FA54871F927C" + rewards: [{ + exclude_from_claim_all: true + id: "3D5834A5D64E550B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bStone Jetpack" + tasks: [ + { + id: "2F59CDC0083C1B1C" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:stone" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "272D30BA60177E79" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:stone" + } + } + only_from_crafting: true + type: "item" + } + ] + title: "Stone Jetpack Parts" + x: 1.5d + y: 2.5d + } + { + dependencies: ["7DC608A0643474D8"] + id: "035A6939F4617A37" + rewards: [{ + exclude_from_claim_all: true + id: "4CB6CAB71EC0C598" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bCopper Jetpack" + tasks: [ + { + id: "76AB05AA965EF9EB" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:copper" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "7BDA5C3E23BD8A2A" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:copper" + } + } + only_from_crafting: true + type: "item" + } + ] + title: "Copper Jetpack Parts" + x: 4.5d + y: 2.5d + } + { + dependencies: ["5675FA54871F927C"] + description: ["&o&bCan store up to: 100,000 FE."] + id: "300BAFE6668AC4E1" + rewards: [{ + exclude_from_claim_all: true + id: "7696E4BDFF81A443" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft a Stone Jetpack" + tasks: [{ + id: "53EFD1D5AE2BC9C8" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:stone" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: 1.5d + y: 4.0d + } + { + dependencies: ["035A6939F4617A37"] + description: [ + "&o&bCan store up to: 250,000 FE." + "" + ] + id: "2F5BEB08AF0E793E" + rewards: [{ + exclude_from_claim_all: true + id: "7C957945266AFEA0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft a Copper Jetpack" + tasks: [{ + id: "53BF61FA2D2A36A3" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:copper" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: 4.5d + y: 4.0d + } + { + dependencies: ["48D4F012C2C2D360"] + id: "54943B7912674AD0" + rewards: [{ + exclude_from_claim_all: true + id: "72CA93606717678F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bSilver Jetpack" + tasks: [ + { + id: "2D0C7F1A3A134ACE" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:silver" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "5455F37A9755CB5F" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:silver" + } + } + only_from_crafting: true + type: "item" + } + ] + title: "Silver Jetpack Parts" + x: -0.5d + y: -0.5d + } + { + dependencies: ["7DC608A0643474D8"] + dependency_requirement: "one_completed" + id: "48D4F012C2C2D360" + rewards: [{ + exclude_from_claim_all: true + id: "222F6790D7D9E910" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + subtitle: "Craft an &o&bAdvanced Coil" + tasks: [{ + id: "5A120CC9E337278D" + item: "ironjetpacks:advanced_coil" + type: "item" + }] + x: -1.5d + y: 1.0d + } + { + dependencies: ["54943B7912674AD0"] + description: [ + "&7Can store up to: &o&b1,200,000 FE." + "" + ] + id: "24606B09ED82B355" + rewards: [{ + exclude_from_claim_all: true + id: "69FF2807B63760EB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft a Silver Jetpack" + tasks: [{ + id: "21E16CD7B7580E14" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:silver" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: -0.5d + y: -2.0d + } + { + dependencies: ["48D4F012C2C2D360"] + id: "41D1EA7782529DF2" + rewards: [{ + exclude_from_claim_all: true + id: "5056D8E396E8EC7B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bBronze Jetpack" + tasks: [ + { + id: "6952455523F50263" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:bronze" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "39B9601EF655F415" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:bronze" + } + } + only_from_crafting: true + type: "item" + } + ] + title: "Bronze Jetpack Parts" + x: -4.0d + y: -0.5d + } + { + dependencies: ["48D4F012C2C2D360"] + id: "7F02FDCD31D9B9CE" + rewards: [{ + exclude_from_claim_all: true + id: "26987309FB51F1C7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bIron Jetpack" + tasks: [ + { + id: "7AD17F053C700B96" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:iron" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "2C856A2261DBC0AA" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:iron" + } + } + only_from_crafting: true + type: "item" + } + ] + title: "Iron Jetpack Parts" + x: -5.5d + y: -0.5d + } + { + dependencies: ["7F02FDCD31D9B9CE"] + description: [ + "&7Can store up to: &o&b800,000 FE." + "" + ] + id: "42824B222CD70F4C" + rewards: [{ + exclude_from_claim_all: true + id: "6CF48366D678DDDF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft an Iron Jetpack" + tasks: [{ + id: "4479327335AE4173" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:iron" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: -5.5d + y: -2.0d + } + { + dependencies: ["41D1EA7782529DF2"] + description: [ + "&7Can store up to: &o&b800,000 FE." + "" + ] + id: "35DC5500D2B9FF87" + rewards: [{ + exclude_from_claim_all: true + id: "533929BB7ED0D9B3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft a Bronze Jetpack" + tasks: [{ + id: "353501D04B20006C" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:bronze" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: -4.0d + y: -2.0d + } + { + dependencies: ["07EBA212E468FDAB"] + description: [ + "&7Can store up to: &o&b10,000,000 FE." + "" + ] + id: "0E33C9BF2E1C254C" + rewards: [{ + exclude_from_claim_all: true + id: "2F708BC75579655F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft a Gold Jetpack" + tasks: [{ + id: "4DBB2805E8679BEC" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:gold" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: 1.0d + y: -2.0d + } + { + dependencies: ["289C0EE6A4751745"] + description: [ + "&7Can store up to: &o&b12,000,000 FE." + "" + ] + id: "187635F6CF15D7CC" + rewards: [{ + exclude_from_claim_all: true + id: "50C1B96BBCF9F6A1" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft an Electrum Jetpack" + tasks: [{ + id: "1F1EBBD28CE23148" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:electrum" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: -2.5d + y: -2.0d + } + { + dependencies: ["63FE4269BDB4CABB"] + description: [ + "&7Can store up to: &o&b12,000,000 FE." + "" + ] + id: "4437EB88A3766873" + rewards: [{ + exclude_from_claim_all: true + id: "4A9B8C1BEE1A91F2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft a Steel Jetpack" + tasks: [{ + id: "1AEDBF200A30FDAF" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:steel" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: 2.5d + y: -2.0d + } + { + dependencies: ["48D4F012C2C2D360"] + dependency_requirement: "one_completed" + id: "289C0EE6A4751745" + rewards: [{ + exclude_from_claim_all: true + id: "43A8AFAEA1898E78" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bElectrum Jetpack" + tasks: [ + { + id: "17826ADABB0EA3F1" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:electrum" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "2A3B1799A6B26ED5" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:electrum" + } + } + only_from_crafting: true + type: "item" + } + ] + title: "Electrum Jetpack Parts" + x: -2.5d + y: -0.5d + } + { + dependencies: ["48D4F012C2C2D360"] + dependency_requirement: "one_completed" + id: "63FE4269BDB4CABB" + rewards: [{ + exclude_from_claim_all: true + id: "5F7C5382EC8B8432" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bSteel Jetpack" + tasks: [ + { + id: "2754D43946889718" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:steel" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "44EC84C1F949954A" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:steel" + } + } + only_from_crafting: true + type: "item" + } + ] + title: "Steel Jetpack Parts" + x: 2.5d + y: -0.5d + } + { + dependencies: ["48D4F012C2C2D360"] + dependency_requirement: "one_completed" + id: "07EBA212E468FDAB" + rewards: [{ + exclude_from_claim_all: true + id: "6C2815B689B3DAA9" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bGold Jetpack" + tasks: [ + { + id: "79CA37879F029D89" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:gold" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "709E9CBF5A488671" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:gold" + } + } + only_from_crafting: true + type: "item" + } + ] + title: "Gold Jetpack Parts" + x: 1.0d + y: -0.5d + } + { + dependencies: ["7DC608A0643474D8"] + dependency_requirement: "one_completed" + id: "7BBDC7D3EB01C04E" + rewards: [{ + exclude_from_claim_all: true + id: "7972D6A08280DE6E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + subtitle: "Craft an &o&bElite Coil" + tasks: [{ + id: "58197EAF2A627B44" + item: "ironjetpacks:elite_coil" + type: "item" + }] + x: -5.0d + y: 1.0d + } + { + dependencies: ["7BBDC7D3EB01C04E"] + id: "73F871136B853A23" + rewards: [{ + exclude_from_claim_all: true + id: "1D84B50A05141357" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bDiamond Jetpack" + tasks: [ + { + id: "44D97FBA0E3D2A3C" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:diamond" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "7288201961C5E14A" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:diamond" + } + } + only_from_crafting: true + type: "item" + } + ] + x: -5.0d + y: 2.5d + } + { + dependencies: ["73F871136B853A23"] + description: ["&o&bCan store up to: 30,000,000 FE."] + id: "29C16C6ECC8992FF" + rewards: [{ + exclude_from_claim_all: true + id: "40BF63B2072B6C35" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft a Diamond Jetpack" + tasks: [{ + id: "0305684FC8DDCB6F" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:diamond" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + title: "Diamond Jetpack Parts" + x: -5.0d + y: 4.0d + } + { + dependencies: ["7BBDC7D3EB01C04E"] + id: "3F1FFFB843E737DB" + rewards: [{ + exclude_from_claim_all: true + id: "59BD6ADEDFDA96ED" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + subtitle: "Craft an &o&bUltimate Coil" + tasks: [{ + id: "6212F4021BC0C708" + item: "ironjetpacks:ultimate_coil" + type: "item" + }] + x: -7.0d + y: 1.0d + } + { + dependencies: ["3F1FFFB843E737DB"] + id: "2C9C71BD13D1BFED" + rewards: [{ + exclude_from_claim_all: true + id: "6C52A946E8EEFA4E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Acquire the parts for the &o&bEmerald Jetpack" + tasks: [ + { + id: "37FEC8D463A80793" + item: { + Count: 1 + id: "ironjetpacks:capacitor" + tag: { + Id: "ironjetpacks:emerald" + } + } + only_from_crafting: true + type: "item" + } + { + count: 2L + id: "1211B82B50FE28BC" + item: { + Count: 1 + id: "ironjetpacks:thruster" + tag: { + Id: "ironjetpacks:emerald" + } + } + only_from_crafting: true + type: "item" + } + ] + title: "Emerald Jetpack Parts" + x: -7.0d + y: 2.5d + } + { + dependencies: ["2C9C71BD13D1BFED"] + description: ["&7Can store up to: &o&b48,000,000 FE."] + id: "759A987C17908AD0" + rewards: [{ + exclude_from_claim_all: true + id: "7C3A89DAF0811C42" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + subtitle: "Craft an Emerald Jetpack" + tasks: [{ + id: "261C548F3EE39241" + item: { + Count: 1 + id: "ironjetpacks:jetpack" + tag: { + Id: "ironjetpacks:emerald" + Throttle: 1.0d + } + } + only_from_crafting: true + type: "item" + }] + x: -7.0d + y: 4.0d + } + { + dependencies: ["071125FC42EBEAB9"] + id: "7DC608A0643474D8" + rewards: [{ + exclude_from_claim_all: true + id: "28587CEF0164828C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "33F6243719D0CC41" + item: "ironjetpacks:basic_coil" + type: "item" + }] + x: 3.0d + y: 1.0d + } + ] + subtitle: ["Reach for the sky!"] + title: "&3&oIron Jetpacks" +} diff --git a/minecraft/config/ftbquests/quests/chapters/lets_begin_the_adventure.snbt b/minecraft/config/ftbquests/quests/chapters/lets_begin_the_adventure.snbt new file mode 100644 index 0000000..dda7ff6 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/lets_begin_the_adventure.snbt @@ -0,0 +1,1121 @@ +{ + autofocus_id: "31F65F523E4DB7A7" + default_hide_dependency_lines: false + default_quest_shape: "circle" + filename: "lets_begin_the_adventure" + group: "" + icon: { + Count: 1 + id: "enchantwithmob:mob_enchant_book" + tag: { + Damage: 0 + StoredMobEnchants: [{ + EnchantLevel: 4 + MobEnchant: "enchantwithmob:protection" + }] + } + } + id: "59FB9740D5BFC784" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -4.535714285714285d + y: -1.1607142857142847d + } + { + click: "https://www.patreon.com/ModernGamingWorld" + height: 1.0d + image: "kubejs:textures/item/pateron.png" + rotation: 0.0d + width: 0.9133333333333333d + x: -6.5d + y: 4.5d + } + { + click: "https://ko-fi.com/moderngamingworld" + height: 1.0d + image: "kubejs:textures/item/kofi_s_logo_nolabel.png" + rotation: 0.0d + width: 1.0d + x: -2.5d + y: 4.5d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + description: [ + "Welcome to &6Monumental Experience&r!" + "" + "Here begins your &aJourney&r/&0Nightmare&r." + "" + "Good luck and have fun." + ] + icon: { + Count: 1 + id: "blue_skies:alchemy_scroll" + tag: { + Damage: 0 + } + } + id: "31F65F523E4DB7A7" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "771388D1F6DF8DE8" + table_id: 5987657478296879679L + type: "random" + }] + shape: "hexagon" + size: 1.5d + subtitle: "&oSign the contract to start the &b&oQuests" + tasks: [{ + icon: "villagertools:contract" + id: "071125FC42EBEAB9" + title: "Sign the contract" + type: "checkmark" + }] + title: "&c&nWelcome brave warriors of Monumental!" + x: -4.5d + y: 0.0d + } + { + dependencies: ["31F65F523E4DB7A7"] + id: "19B4AF80C4E96C64" + min_width: 350 + rewards: [{ + count: 2 + id: "67C7202BF73CE150" + item: "minecraft:oak_planks" + type: "item" + }] + subtitle: "&oI know, everybody knows that" + tasks: [{ + id: "01FF27DF600E4541" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:workbenches)" + } + } + title: "Any Crafting Table" + type: "item" + }] + title: "&6The Crafting Table" + x: -6.0d + y: 1.5d + } + { + dependencies: ["31F65F523E4DB7A7"] + description: [ + "&6Culinary Construct&r is a mod that lets you make custom sandwiches or &nbowls&r/&nstews&r out of &nany&r food items you have lying around." + "" + "&n&bThat's right, any of them&r!" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/meal.png" + } + } + id: "3A7FC41CC5B51F5F" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "5F18F92361074C98" + table_id: 5987657478296879679L + type: "random" + }] + subtitle: "&oLet's make a few sandwiches" + tasks: [{ + id: "474F8281519C3469" + item: "culinaryconstruct:culinary_station" + type: "item" + }] + title: "&6The Food" + x: -1.5d + y: 0.0d + } + { + dependencies: ["31F65F523E4DB7A7"] + description: [ + "To change what percentage of players are required to sleep in order to skip the night enter followed command:" + "" + "&b&o/gamerule playersSleepingPercentage &r (without &3angle brackets&r)" + "" + "You may set a percentage value between 0 - 100 (Default: 100)." + ] + id: "2D4EE2B866D8CE35" + min_width: 300 + rewards: [{ + count: 3 + id: "01A81297B8A3DC86" + item: "minecraft:string" + random_bonus: 2 + type: "item" + }] + subtitle: "&oIt's a very handy to have a bed" + tasks: [{ + id: "4E4539EA9C7C200F" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "minecraft:beds" + } + } + title: "Craft any bed" + type: "item" + }] + title: "&6Sweet Dreams" + x: -6.0d + y: 0.0d + } + { + dependencies: ["31F65F523E4DB7A7"] + id: "27C2B59611A27ABE" + rewards: [{ + count: 7 + id: "0A428221D6EAF224" + item: "minecraft:cobblestone" + random_bonus: 12 + type: "item" + }] + subtitle: "&oTime for cooking" + tasks: [{ + id: "23AEFD8250BB4EEA" + item: "minecraft:furnace" + type: "item" + }] + title: "&eFurnace" + x: -6.0d + y: 3.0d + } + { + dependencies: ["31F65F523E4DB7A7"] + description: [ + "Your upgrades are &bIron Chests&r, &bSophisticated Storage&r, or &bColossal Chests&r. " + "" + "&4Do not break a Colossal Chest Core without emptying it first, or your items will spew everywhere!" + ] + id: "2F75111FF8C7FEE5" + rewards: [{ + id: "71023713D151223D" + item: "minecraft:oak_planks" + random_bonus: 3 + type: "item" + }] + subtitle: "&oTemporary storage solution ;)" + tasks: [{ + id: "4AECEB9E367EEB22" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "balm:wooden_chests" + } + } + title: "Any Chest" + type: "item" + }] + title: "&fChest" + x: -3.0d + y: 1.5d + } + { + dependencies: ["31F65F523E4DB7A7"] + description: [ + "If you are not familiar with &6Doggy Talents&r mod to watch those two tutorials by &aclicking&r those two &o&blinks&r below:" + "" + "{\"text\":\"Doggy Talents: Pt 1 - Everything but Skills!\",\"color\":\"blue\",\"underlined\":\"true\",\"clickEvent\":{\"action\":\"open_url\",\"value\":\"https://www.youtube.com/watch?v=8YhjHd--2Ow\"}}" + "" + "{\"text\":\"Doggy Talents: Pt 2 - Skills!\",\"color\":\"blue\",\"underlined\":\"true\",\"clickEvent\":{\"action\":\"open_url\",\"value\":\"https://www.youtube.com/watch?v=8YhjHd--2Ow\"}}" + ] + id: "41AABD2060E95538" + min_width: 300 + rewards: [{ + id: "38038A8066AFF212" + item: "minecraft:name_tag" + type: "item" + }] + subtitle: "&oMy Best Friend Forever" + tasks: [{ + id: "083FC96065A72A08" + item: { + Count: 1 + id: "itemfilters:id_regex" + tag: { + value: "^doggytalents:.*bed.*" + } + } + title: "Dog Bad" + type: "item" + }] + title: "&9Companion for Life" + x: -3.0d + y: -1.5d + } + { + can_repeat: true + dependencies: ["31F65F523E4DB7A7"] + description: [ + "In your &9Eccentric Tome&r are all books included." + "" + "&6Right-click&r while holding Tome to open the book selection screen." + "&6Left-click&r on air to revert a book back into the Tome." + "" + "If you lose it you can always craft it back with a regular minecraft book using any crafting grid." + ] + icon: { + Count: 1 + id: "eccentrictome:tome" + tag: { + "eccentrictome:mods": { } + } + } + id: "3A72B0E6AAF8F2C0" + min_width: 250 + optional: true + rewards: [{ + id: "284E17F4591466DD" + item: { + Count: 1 + id: "eccentrictome:tome" + tag: { + "eccentrictome:items": [ + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "ad_astra:astrodux" + } + } + { + Count: 1 + id: "alexsmobs:animal_dictionary" + } + { + Count: 1 + id: "alexscaves:cave_book" + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "apotheosis:apoth_chronicle" + } + } + { + Count: 1 + id: "ars_nouveau:worn_notebook" + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "bigreactors:erguide" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "bloodmagic:guide" + } + } + { + Count: 1 + id: "botania:lexicon" + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "buildinggadgets2:buildinggadgets2book" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "caupona:book" + } + } + { + Count: 1 + id: "cookingforblockheads:recipe_book" + } + { + Count: 1 + id: "croptopia:guide" + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "cyclic:guide_book" + } + } + { + Count: 1 + id: "eidolon:codex" + } + { + Count: 1 + id: "enigmaticlegacy:the_acknowledgment" + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "extendedcrafting:guide" + } + } + { + Count: 1 + id: "forestry:foresters_manual" + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "forcecraft:force_and_you" + } + } + { + Count: 1 + id: "ftbquests:book" + } + { + Count: 1 + id: "immersiveengineering:manual" + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "industrialforegoing:industrial_foregoing" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "modularrouters:book" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "mysticalagriculture:guide" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "naturesaura:book" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "opolisutilities:opolis_book" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "pneumaticcraft:book" + } + } + { + Count: 1 + id: "rftoolsbase:manual" + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "sebastrnlib:sebastrn_mods_guide_book" + } + } + { + Count: 1 + id: "securitycraft:sc_manual" + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "sushigocrafting:sushigocrafting" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "swplanets:star_manual" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "thermal:guidebook" + } + } + { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "twilightdelight:twilight_guide" + } + } + ] + "eccentrictome:version": 2 + } + } + type: "item" + }] + subtitle: "&oYour personal portable library" + tasks: [{ + id: "624E1FE4F9278ED5" + title: "Eccentric Tome" + type: "checkmark" + }] + title: "&eThe Eccentric Tome" + x: -7.5d + y: -3.0d + } + { + dependencies: ["3A7FC41CC5B51F5F"] + id: "4EA94E2F6636AE31" + rewards: [ + { + count: 3 + id: "64089A384E6CDB54" + item: "minecraft:cooked_porkchop" + type: "item" + } + { + count: 3 + id: "673F0A74ECE2C1F1" + item: "minecraft:cooked_chicken" + type: "item" + } + { + count: 3 + id: "3BD8492735D2298B" + item: "minecraft:cooked_beef" + type: "item" + } + ] + subtitle: "&oGo get some meat supply, and I'll cook for you in a sec" + tasks: [ + { + consume_items: true + count: 3L + id: "1729570EB2FF60A5" + item: "minecraft:porkchop" + type: "item" + } + { + consume_items: true + count: 3L + id: "502D0C6472984D71" + item: "minecraft:chicken" + type: "item" + } + { + consume_items: true + count: 3L + id: "1CF6E587662C0B34" + item: "minecraft:beef" + type: "item" + } + ] + title: "&bLet's hunt" + x: -1.5d + y: -1.5d + } + { + dependencies: ["19B4AF80C4E96C64"] + id: "0BD3F155C9D1C37B" + rewards: [{ + count: 3 + id: "47FF26CCAC75EE0A" + item: "minecraft:oak_planks" + type: "item" + }] + subtitle: "&oPortable Crafting Table" + tasks: [{ + id: "288A7935F55450EF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "cyclic:crafting_stick" + } + type: "item" + }] + title: "&eThe Crafting Stick" + x: -7.5d + y: 1.5d + } + { + dependencies: ["0BD3F155C9D1C37B"] + id: "5046740F388E9B57" + rewards: [{ + count: 5 + id: "5FE9A64C488B7D59" + item: "minecraft:oak_planks" + type: "item" + }] + subtitle: "&oEven better" + tasks: [{ + id: "0D7D33F911F432F6" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 9 + } + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "cyclic:crafting_bag" + } + type: "item" + }] + title: "&aAdvanced Crafting Stick" + x: -9.0d + y: 1.5d + } + { + dependencies: ["31F65F523E4DB7A7"] + description: [ + "Welcome to &6Monumental Experience&r Quests!" + "" + "The Quest book is included in your &9Eccentric Tome&r. If you prefer you can also create a key binding to open the &cQuest Book&r." + "" + "To get started with questing, check out the tabs on the left. The Quests are divided into groups and each group has chapters." + "" + "Mods in the pack are not gated by quests. Quests are optional but &nfully&r recommended." + "" + "To view &adependencies&r to unlock the particular quest, click on little &cred&r blinking arrow on top left corner. By clicking on the text will bring you on the dependency quest." + "" + "To view Dependants to the quest, click on little &bwhite&r arrow on top right corner." + "" + "" + "{@pagebreak}" + "" + "There's also &bpage breaks&r, but those aren't used particularly often, and &epinned quests&r. By default, ðis quest will be pinned&r, assuming that's possible, so you are aware what a pinned quest is and how to remove it; press the &bthumb tack icon&r to pin or un-pin quests" + ] + icon: "ftbquests:book" + id: "45E783F0D8A1736D" + min_width: 300 + tasks: [{ + id: "1F2C60A442F7BB52" + type: "checkmark" + }] + title: "&cThe Quests" + x: -4.5d + y: -3.0d + } + { + dependencies: ["31F65F523E4DB7A7"] + id: "58C741E44DF06E15" + rewards: [{ + id: "656AE555AC733DA6" + item: "minecraft:bundle" + type: "item" + }] + subtitle: "&oNice portable storage" + tasks: [{ + id: "26F03BF1288E1C4F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:bundle" + } + type: "item" + }] + title: "&cThe Bundle" + x: -1.5d + y: 1.5d + } + { + dependencies: ["2D4EE2B866D8CE35"] + hide_until_deps_visible: true + id: "403527DC1B8E4FBC" + rewards: [ + { + count: 4 + id: "6ED5464DC7E14793" + item: "minecraft:string" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "132E826169FC7ED2" + table_id: 5987657478296879679L + type: "random" + } + ] + subtitle: "&oEven better then bed" + tasks: [{ + id: "485F212D67216803" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "comforts:sleeping_bags" + } + } + title: "Any #comforts:sleeping_bags" + type: "item" + }] + title: "&1The Sleeping Bag" + x: -7.5d + y: -1.5d + } + { + dependencies: ["403527DC1B8E4FBC"] + hide_until_deps_visible: true + id: "78D285EF0AC46A6B" + rewards: [ + { + count: 3 + id: "082AD803EED1F240" + item: "minecraft:string" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4545BE671CBC42F6" + table_id: 5987657478296879679L + type: "random" + } + ] + subtitle: "&oCan be useful to skip the day, if you need to" + tasks: [ + { + id: "6ACA003932DAB01B" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "comforts:hammocks" + } + } + title: "Any #comforts:hammocks" + type: "item" + } + { + id: "7B683D3EEAACEF43" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "comforts:rope_and_nail" + } + type: "item" + } + ] + title: "&3The Hammocks" + x: -9.0d + y: -3.0d + } + { + dependencies: ["27C2B59611A27ABE"] + hide_until_deps_visible: true + id: "6192897387317260" + rewards: [{ + count: 2 + id: "33EF09E6D763104E" + item: "minecraft:stone" + random_bonus: 5 + type: "item" + }] + subtitle: "&oMore efficiency by raw ore processing" + tasks: [{ + id: "46C82B6807989BB0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:blast_furnace" + } + type: "item" + }] + title: "&dBlast Furnace" + x: -7.5d + y: 3.0d + } + { + dependencies: ["6192897387317260"] + hide_until_deps_visible: true + id: "61DF41B4BDFB0904" + rewards: [ + { + id: "72EC67A93AA3FF71" + item: "minecraft:oak_log" + type: "item" + } + { + count: 6 + id: "15D7A77581748047" + item: "minecraft:cobblestone" + random_bonus: 8 + type: "item" + } + ] + subtitle: "&oMore efficiency by cooking food" + tasks: [{ + id: "3412A539C9203CB6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:smoker" + } + type: "item" + }] + title: "&fSmoker" + x: -9.0d + y: 3.0d + } + { + dependencies: ["19B4AF80C4E96C64"] + hide_until_deps_visible: true + id: "24FB12C77B8D5BF9" + rewards: [{ + exclude_from_claim_all: true + id: "1FB4276E8B2B2F67" + table_id: 5987657478296879679L + type: "random" + }] + subtitle: "&oTime to enchant stuff" + tasks: [{ + id: "6A154B5C2BF6E816" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:enchanting_table" + } + type: "item" + }] + title: "&4The Enchanting Table" + x: -7.5d + y: 0.0d + } + { + dependencies: ["24FB12C77B8D5BF9"] + hide_until_deps_visible: true + id: "68693BFBFF578320" + rewards: [{ + exclude_from_claim_all: true + id: "6CA6B6B3126B2C73" + table_id: 5987657478296879679L + type: "random" + }] + subtitle: "&oLet's try some cool potions" + tasks: [{ + id: "287C12AC5924EB5E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:brewing_stand" + } + type: "item" + }] + title: "The Potion Maker: &a&oApprentice" + x: -9.0d + y: -1.5d + } + { + dependencies: ["31F65F523E4DB7A7"] + description: ["This is how you will upgrade your tools, I wouldn't recommend loosing it!"] + hide_until_deps_visible: true + id: "0C696C02464BD69E" + rewards: [{ + exclude_from_claim_all: true + id: "6F82572886D9F63F" + table_id: 5987657478296879679L + type: "random" + }] + subtitle: "&oImprove your tools and weapons" + tasks: [{ + id: "5A16454016C73CD8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:smithing_table" + } + type: "item" + }] + title: "&5Smithing Table" + x: -4.5d + y: 3.0d + } + { + dependencies: ["24FB12C77B8D5BF9"] + hide_until_deps_visible: true + id: "1AFBBB797AE2F644" + rewards: [{ + exclude_from_claim_all: true + id: "79B1FB57A500D29F" + table_id: 5987657478296879679L + type: "random" + }] + subtitle: "There is basically no use outside of enchanting!" + tasks: [{ + id: "4CC01F806C34DBF3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:grindstone" + } + type: "item" + }] + title: "&eGrindstone" + x: -9.0d + y: 0.0d + } + { + dependencies: ["0C696C02464BD69E"] + hide_until_deps_visible: true + id: "3FF285B77B20C7D8" + rewards: [{ + count: 8 + id: "1F4DC6690FED4D58" + item: "pneumaticcraft:ingot_iron_compressed" + random_bonus: 7 + type: "item" + }] + subtitle: "&oIt helps you to repair your tools and weapons" + tasks: [{ + id: "33A934EF7F779A56" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:anvil" + } + type: "item" + }] + title: "&9Anvil" + x: -3.0d + y: 3.0d + } + { + dependencies: ["31F65F523E4DB7A7"] + description: [ + "Don't forget to set your home first." + "" + "Use command &d/sethome&r for setting home." + "" + "Use command &d/home&r to teleport your back to home." + "" + "Use command &d/back&r to teleport your to previous location. Can be used multiple times." + ] + icon: { + Count: 1 + id: "inventorypets:pet_house" + tag: { + Damage: 0 + } + } + id: "750DC72FD4D075B8" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "1BD3CCEA2BE74135" + table_id: 5987657478296879679L + type: "random" + }] + tasks: [{ + id: "07508401EE912F59" + type: "checkmark" + }] + title: "&6Home Sweet Home!" + x: -3.0d + y: -3.0d + } + { + dependencies: ["31F65F523E4DB7A7"] + description: [ + "Once forged by antediluvian &4God&r, it beckons mortals and higher beings alike with promise of untold riches and immeasurable might..." + "" + "Be it &o&barrogance&r or &o&bignorance&r that leads them to believe they can harness ring's power, both are paid for in &o&bsuffering&r the extent of which defies description." + "" + "Once it is put on, it &ccannot be removed&r. Wearing it &o&bsignificantly&r and &o&bpermanently&r changes gameplay to be &o&6extremely challenging&r." + "" + "Are you brave enough to wear it?" + ] + icon: "enigmaticlegacy:cursed_ring" + id: "23AA20F16618CF1F" + min_width: 300 + rewards: [ + { + id: "2641118F2672C552" + item: "enigmaticlegacy:cursed_ring" + type: "item" + } + { + id: "0C41073A5E9F3576" + item: "enigmaticlegacy:astral_fruit" + type: "item" + } + { + exclude_from_claim_all: true + id: "5AC354896FD7ECB9" + table_id: 5987657478296879679L + type: "random" + } + ] + subtitle: "Once worn, it becomes a part of you, and only with the power of god, you can unequip it" + tasks: [{ + id: "52D21064D8DC4282" + title: "The Ring of the Seve Curses" + type: "checkmark" + }] + x: -6.0d + y: -3.0d + } + { + description: ["Thanks to Dexx, The owner of Age of Fate for permission to use some their quest lines in this modpack"] + icon: { + Count: 1 + id: "reliquary:fortune_coin" + tag: { + affix_data: { + affixes: { + "apotheosis:socket": 1.0f + } + } + } + } + id: "74A8F73765A6EC20" + size: 1.5d + tasks: [{ + id: "580AC05E9FED7D11" + title: "Credits" + type: "checkmark" + }] + title: "Credits" + x: -4.5d + y: -5.25d + } + { + description: [ + "This &4Quest Book &fwas built and designed by DexxKnight1 and ModernGamingWorld, with some editing by Cyn." + "" + "Monumental Experience is licensed under &4All Rights Reserved, &fThis quest book may not be used in any other public modpacks without explicit permission from DexxKnight1 or ModernGamingWorld." + ] + id: "55C06415225FD15E" + optional: true + tasks: [{ + id: "2776372317632DFE" + title: "All Right Reserved" + type: "checkmark" + }] + x: -4.5d + y: 6.0d + } + { + dependencies: [ + "46783DEC79D20577" + "376292C2B5855BA3" + "03D6822411AF1DD9" + "775ADED3E0FEE5C0" + "06CBD180CD184FBC" + "4CF3B507D85AB4FC" + "3916DED23F800E93" + "42B04FFE3871CAF4" + "1F552C0DA2741587" + "33C8FF95807426B4" + "1D255DD5D32DA110" + "7559F5BC8A78974C" + "6D66FA9FF2740FC5" + "2CB6E6F205CA3EAC" + "24ECADE3CD4193E0" + "23C845F1F06011E5" + "261C0F3A757E5615" + "79E2640D359C6E10" + ] + dependency_requirement: "one_completed" + description: ["I can't hide this fully. You're not supposed to be here. I can only get to it the same way you did, it's &othat&r small. Condiser this an easter egg of sorts, I guess"] + disable_toast: true + hide_dependency_lines: true + hide_dependent_lines: true + hide_lock_icon: true + hide_until_deps_complete: true + hide_until_deps_visible: true + id: "666346BDA20E5BAA" + invisible: true + invisible_until_tasks: 100 + optional: true + size: 0.01d + tasks: [{ + advancement: "minecraft:story/root" + criterion: "" + id: "797BBB5CEE0291DD" + type: "advancement" + }] + title: "Mystical Agriculture Blocking" + x: -4.5d + y: 0.0d + } + ] + title: "&fLet's begin the adventure" +} diff --git a/minecraft/config/ftbquests/quests/chapters/malum.snbt b/minecraft/config/ftbquests/quests/chapters/malum.snbt new file mode 100644 index 0000000..2739fdc --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/malum.snbt @@ -0,0 +1,1326 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "malum" + group: "" + icon: "malum:spirit_altar" + id: "0A99504019AFCB5D" + images: [ + { + height: 3.0d + image: "malumquestinstaller:textures/quests/malum-logo.png" + rotation: 0.0d + width: 5.0d + x: 0.0d + y: -4.0d + } + { + height: 1.0d + image: "malumquestinstaller:textures/quests/malum-foundation.png" + rotation: 0.0d + width: 3.0d + x: -6.0d + y: -1.5d + } + { + height: 1.0d + image: "malumquestinstaller:textures/quests/malum-spiritcraft.png" + rotation: 0.0d + width: 3.0d + x: 2.5d + y: -1.5d + } + { + height: 1.0d + image: "malumquestinstaller:textures/quests/malum-totem-rites.png" + rotation: 0.0d + width: 3.0d + x: 6.5d + y: -1.5d + } + { + height: 1.0d + image: "malumquestinstaller:textures/quests/malum-creation.png" + rotation: 0.0d + width: 3.0d + x: -2.5d + y: -1.5d + } + { + height: 1.0d + image: "malumquestinstaller:textures/quests/malum-eye.png" + rotation: 0.0d + width: 1.0d + x: 0.0d + y: -2.0d + } + { + height: 1.0d + image: "malumquestinstaller:textures/quests/malum-eye1.png" + rotation: 0.0d + width: 1.0d + x: 0.0d + y: 0.0d + } + { + height: 1.0d + image: "malumquestinstaller:textures/quests/malum-eye2.png" + rotation: 0.0d + width: 1.0d + x: 0.0d + y: 2.0d + } + ] + order_index: 2 + quest_links: [ ] + quests: [ + { + description: [ + "Know this, Seeker: the essence of Malum is not mere sorcery, but the shaping of that which lies between thought and form. &dSoulstone&r (both raw and refined) is the keystone of this forgotten craft. From it are born two sacred instruments: the &6Spirit Altar&r, and the &6Crude Scythe&r." + "" + "The ancients wrote that Soulstone hums faintly near places where reality thins, its resonance whispering in the void. Seek such stones, or form them through alchemical rites, for they will awaken the latent breath of your own soul." + "" + "Rumors speak of a structure beyond the veil, a weeping thing that pulls upon certain relics and whispers trades in forgotten tongues. Some say the first Soulstone was bargained for, not made." + ] + icon: "malum:raw_soulstone" + id: "4B694F8EB223DB7C" + rewards: [ + { + count: 8 + id: "768C3A1B4AA3FBA6" + item: "malum:processed_soulstone" + type: "item" + } + { + id: "74EC215D89C55935" + type: "xp" + xp: 10 + } + ] + size: 1.0d + subtitle: "The soul is not found... it is forged in silence." + tasks: [ + { + count: 8L + id: "082D8CB18A2AB006" + item: { Count: 8, id: "malum:raw_soulstone" } + type: "item" + } + { + count: 8L + id: "66817C51A3CA0884" + item: { Count: 8, id: "malum:processed_soulstone" } + type: "item" + } + ] + title: "&dSoulstone&r" + x: -6.0d + y: -0.5d + } + { + description: [ + "A mere blade slays the flesh, but a &dCrude Scythe&r, with Soulstone embedded within, rends the spirit as well. The harvest of life and essence are one act. A single swing that calls Spirit from its vessel to the hand of the reaper." + "" + "Though humble in form, the Scythe’s arc sweeps across many foes, its reach born of ancient design. Through enchantments unknown to common smiths, the Scythe may gain strange new properties. Some call forth more souls, others grant a fleeting lift to the bearer." + "" + "Use it well, for every spirit claimed remembers its slayer." + ] + icon: { + Count: 1 + id: "malum:crude_scythe" + tag: { + Damage: 0 + } + } + id: "04F5161B22A038D6" + rewards: [ + { + exclude_from_claim_all: true + id: "2112515F95AB9904" + table_id: 5310718857371185527L + type: "random" + } + { + id: "0E47EC017583855B" + type: "xp" + xp: 10 + } + ] + subtitle: "To sever the body is mortal work. To sever the soul is art." + tasks: [ + { + id: "43C83B18AA0D1671" + item: { + Count: 1 + id: "malum:crude_scythe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7F4ED3B91E920CD2" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "malum:sacred_spirit" + } + { + Count: 1b + id: "malum:wicked_spirit" + } + { + Count: 1b + id: "malum:arcane_spirit" + } + { + Count: 1b + id: "malum:eldritch_spirit" + } + { + Count: 1b + id: "malum:aerial_spirit" + } + { + Count: 1b + id: "malum:aqueous_spirit" + } + { + Count: 1b + id: "malum:earthen_spirit" + } + { + Count: 1b + id: "malum:infernal_spirit" + } + ] + } + } + type: "item" + } + ] + title: "&dCrude Scythe&r" + x: -5.5d + y: 0.5d + } + { + description: [ + "At the heart of Malum lies the &dSpirit Altar&r, an ancient construct through which mortal hands may command the invisible tides of essence. Here, spirits, focus materials, and infusion reagents converge in a ritual of creation." + "" + "Place your chosen item upon the altar as a focal anchor, and arrange the supporting components upon pedestals within four paces. When the alignment is true, the spirits will awaken; a slow, deliberate dance of matter and will." + "" + "Should you wish to hasten the process, erect &6Runewood Obelisks&r nearby. Their quiet resonance steadies the current, drawing forth completion from the chaos of becoming." + ] + id: "17B02ECA300D7219" + rewards: [ + { + id: "3B72C52DFFB1B463" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "200E3BD6F9DC7FE9" + table_id: 5310718857371185527L + type: "random" + } + ] + subtitle: "Where will bends the ether, the world remembers the shape of thought." + tasks: [{ + id: "3EF4EFCAC62E113F" + item: "malum:spirit_altar" + type: "item" + }] + title: "&dSpirit Altar&r" + x: -2.5d + y: -0.5d + } + { + description: [ + "From the remnants of failed rituals and burnt offerings comes &dHex Ash&r, the first proof of your hand upon the arcane. Though simple, it is the foundation of much that follows." + "" + "Gather it in abundance, for countless workings of Malum require its touch. In time, you will learn that no true sorcery begins without a little ruin." + ] + id: "38EF2575654DDBB4" + rewards: [ + { + id: "29E424BB87D307CB" + type: "xp" + xp: 10 + } + { + count: 2 + id: "50F1CF0BE58CDB3C" + item: "malum:hex_ash" + random_bonus: 2 + type: "item" + } + ] + subtitle: "Even dust remembers what it once was." + tasks: [{ + count: 4L + id: "786E7E4C49792D49" + item: "malum:hex_ash" + type: "item" + }] + title: "&dHex Ash&r" + x: -6.0d + y: 2.5d + } + { + description: [ + "Even the mundane arts bend before the will of the soul. Through Arcane Metallurgy, the fusion of refined ingots with spirit essence grants them properties no forge alone could bestow." + "" + "These metals, once shaped, hum faintly with power; neither wholly physical nor ethereal. You will find them indispensable as you delve deeper into Malum’s craft, for they form the bones of tools that act as extensions of one’s own will." + "" + "Beware overuse, apprentice; for the more metal sings, the closer it draws to silence." + ] + icon: "malum:hallowed_gold_ingot" + id: "54B9902DF6B38E95" + rewards: [ + { + id: "6040ED9B1AA137F8" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1F52108528D57BFC" + table_id: 1589514472479868093L + type: "random" + } + ] + subtitle: "Metal remembers flame, but soul remembers purpose." + tasks: [ + { + id: "64811F4E7CEABF37" + item: "malum:hallowed_gold_ingot" + type: "item" + } + { + id: "13F94702176E5A72" + item: "malum:soul_stained_steel_ingot" + type: "item" + } + ] + title: "&dArcane Metallurgy&r" + x: -2.0d + y: 0.5d + } + { + description: [ + "The forests of the old world still bear the legacy of &dRunewood&r, trees whose lifeblood glows faintly beneath their bark. Their leaves shimmer in hues of amber and azure; each a reflection of the spirits dwelling within." + "" + "The wood hums softly when held, carrying latent energy suited for arcane construction. Where the sap bleeds through, scrape it carefully into bottles; a single draught can mend the flesh, or serve as a substitute for the slime of lesser beasts." + "" + "To the untrained eye, it is merely a tree. To the knowing hand, it is the memory of magic made wood." + ] + id: "0BF4DAA021C9DE28" + rewards: [ + { + count: 4 + id: "4AC4CC9D1F7E2E61" + item: "malum:runewood_planks" + type: "item" + } + { + id: "18B65118356E3376" + type: "xp" + xp: 10 + } + ] + subtitle: "The trees still whisper of the runes carved into their ancestors." + tasks: [{ + count: 4L + id: "2F3A6FA788BF966A" + item: { Count: 4, id: "malum:runewood_planks" } + type: "item" + }] + x: -6.5d + y: 0.5d + } + { + description: [ + "&dTainted Rock&r and &dTwisted rock&r are not just decorative stones but the byproducts of imbalance. They are the union of material and &bSpirit&r strained beyond harmony. Alone, they serve as eerie adornments; together, they unlock deeper creation." + "" + "The ancients found that by weaving spirits into stone, one could form new engines of alchemy and artifice. Proceed with reverence for what is twisted seldom untwists." + ] + icon: "malum:tainted_rock" + id: "0E7A32B31BD08D44" + rewards: [ + { + id: "36EB37AAA0EBAAF7" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "510E701305E2D167" + table_id: 6411675324176962717L + type: "choice" + } + ] + subtitle: "Stone remembers. Corruption teaches." + tasks: [ + { + count: 16L + id: "7A8932F0C989A929" + item: "malum:tainted_rock" + type: "item" + } + { + count: 16L + id: "622B4DED3A594F72" + item: "malum:twisted_rock" + type: "item" + } + ] + title: "&dTainted and Twisted&r" + x: -6.5d + y: 1.5d + } + { + description: [ + "The &dSpirit Crucible&r is the forge of the unseen, a conduit where thought and essence are pressed into matter. Centered upon an Alchemical Impetus, it channels Spirits into solid form, crafting dusts, gems, and relics that reflect their nature." + "" + "The Impetus itself, though powerful, is mortal in its endurance. Overuse will consume it, though a careful hand may mend its form or fashion a new one entirely." + "" + "In time, you may craft other kinds of Impetus, each unlocking further mysteries of transmutation. Treat the Crucible not as a tool, but as a heart; for when it stills, the world forgets to change." + ] + id: "60C957B013EABF8D" + rewards: [ + { + id: "1320E9C0AA4AEF80" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "423192B0C1EC9D93" + table_id: 6989367773838599872L + type: "random" + } + ] + subtitle: "The vessel remembers every flame that fed it." + tasks: [{ + id: "5E1FE6F2994BC01B" + item: "malum:spirit_crucible" + type: "item" + }] + title: "&dSpirit Crucible&r" + x: 2.5d + y: -0.5d + } + { + description: [ + "Mundane anvils serve the blacksmith, but the &dRepair Pylon&r serves the soulwright. By linking it to a nearby Spirit Crucible, one may restore the integrity of arcane gear using spirits and proper materials." + "" + "Only those items already bound to certain magics, or wholly mundane, can be repaired in this way. Yet for relics such as the Fractured Impetus, this process is not merely useful, it is the only salvation from eventual decay." + "" + "The wise keep a Pylon humming near every Crucible, for entropy never rests." + ] + id: "7C47F3FFDD372921" + rewards: [ + { + id: "3481F40B8A45A3B4" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3879F4EC26962C16" + table_id: 6989367773838599872L + type: "random" + } + ] + subtitle: "Even miracles crack with time." + tasks: [{ + id: "42C58B31DBB22161" + item: "malum:repair_pylon" + type: "item" + }] + title: "&dRepair Pylon&r" + x: 2.0d + y: 0.5d + } + { + description: [ + "While the Catalyzer may quicken the Crucible’s pace, true refinement lies in Augments. The devices that alter its nature entirely. Some strengthen speed or yield; others warp reality itself, birthing new mechanics from the old." + "" + "A &dTuning Fork&r reveals the Crucible’s current harmony, displaying its statistics and allowing minor attunements with a precise strike. Up to four Augments may be housed within a Crucible, while each linked Catalyzer may bear one of its own." + "" + "But take heed: too much perfection calls the attention of gods who despise competition." + ] + icon: "malum:blazing_diode" + id: "7F60C1E8FEE6659D" + rewards: [ + { + id: "74D5BBB356F397F1" + type: "xp" + xp: 10 + } + { + count: 4 + id: "6DA5F1C8285385E8" + item: "minecraft:clay_ball" + type: "item" + } + { + exclude_from_claim_all: true + id: "033923282B8B2631" + table_id: 5310718857371185527L + type: "random" + } + ] + subtitle: "Perfection is the art of knowing which flaws to keep." + tasks: [ + { + id: "04D394302BAAEA4F" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "malum:mending_diffuser" + } + { + Count: 1b + id: "malum:impurity_stabilizer" + } + { + Count: 1b + id: "malum:shielding_apparatus" + } + { + Count: 1b + id: "malum:warping_engine" + } + { + Count: 1b + id: "malum:accelerating_inlay" + } + { + Count: 1b + id: "malum:prismatic_focus_lens" + } + { + Count: 1b + id: "malum:blazing_diode" + } + { + Count: 1b + id: "malum:intricate_assembly" + } + ] + } + } + tags: ["augments"] + type: "item" + } + { + id: "35A1013FD423AFD5" + item: "malum:tuning_fork" + type: "item" + } + ] + title: "&dCrucible Augments&r" + x: 2.5d + y: 3.5d + } + { + description: [ + "A &dSpirit Catalyzer&r burns mortal fuel to stoke the Crucible’s hunger, its purpose simple yet dangerous; speed at any cost. Up to eight Catalyzers may serve a single Crucible, each feeding it with furnace-born energy." + "" + "This acceleration, however, tears at the Impetus, shortening its lifespan and rendering creation unstable. Those who rush the spirit’s rhythm soon learn that haste, too, has a price... often paid in silence." + ] + id: "01A8E3CE5FF88292" + rewards: [ + { + id: "332A494E11ABC42D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0C11D20A74C523DA" + table_id: 6989367773838599872L + type: "random" + } + ] + subtitle: "To hasten the work is to tempt the flame." + tasks: [{ + id: "1AFDFD0A74A5ADB8" + item: "malum:spirit_catalyzer" + type: "item" + }] + title: "&dSpirit Catalyzer&r" + x: 3.0d + y: 0.5d + } + { + description: [ + "Upon the &dWeaver’s Workbench&r, the mage becomes tailor and artist both. Here, magical spools intertwine with armor, altering appearance without diminishing its strength or essence." + "" + "Each Weave imparts a new visage, a reflection of its creator’s will. The Ancient Weave transcends mere illusion, converting armor into an alternate self entirely, while lesser weaves merely shift form." + "" + "Thus, a &bSoulhunter Robe&r may take the shape of a &bSoulstained Chestplate&r, both united under a single pattern. The wise see the lesson: power’s shape is fleeting, but its spirit remains." + ] + id: "7B406B81138B64DF" + rewards: [ + { + id: "1D13BE59C01CA043" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "62F66998A3918E82" + table_id: 6989367773838599872L + type: "random" + } + ] + subtitle: "Threads of power, once entwined, do not forgive clumsy hands." + tasks: [{ + id: "5A9EB0B26FF5D18C" + item: "malum:weavers_workbench" + type: "item" + }] + title: "&dWeaver’s Workbench&r" + x: 2.0d + y: 1.5d + } + { + description: [ + "&6Runeworking&r is the pinnacle of spiritcraft. It is the act of inscribing meaning upon the bones of creation. Through a Runic Workbench, one may channel spirits into prepared materials, shaping Runes that hold will, memory, and command." + "" + "Each rune grants power: some mirror the Spirit Rites of Totems, others imbue strength or speed, and a few hold secrets even the ancients feared to name." + "" + "To wear a rune is to host a fragment of divinity. To craft one is to question where mortal craft ends and creation begins." + "" + "Consult the &bEncyclopedia Arcana&r before attempting such work; even the old masters seldom survived their first flawless carving." + ] + icon: "malum:runic_workbench" + id: "4E05F0C42EE97D95" + rewards: [ + { + id: "24C383E59E672EC6" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "2F93C2223A81113F" + table_id: 6989367773838599872L + type: "random" + } + ] + subtitle: "Carve the truth into matter, and matter will answer." + tasks: [ + { + id: "602B72E8D9F28C2D" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "malum:runic_brooch" + } + { + Count: 1b + id: "malum:elaborate_brooch" + } + { + Count: 1b + id: "malum:glass_brooch" + } + { + Count: 1b + id: "malum:gluttonous_brooch" + } + ] + } + } + type: "item" + } + { + id: "3962A4A99AB1D9EC" + item: "malum:runic_workbench" + type: "item" + } + { + id: "78FACBD809AF289E" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "malum:rune_of_idle_restoration" + } + { + Count: 1b + id: "malum:rune_of_culling" + } + { + Count: 1b + id: "malum:rune_of_reinforcement" + } + { + Count: 1b + id: "malum:rune_of_volatile_distortion" + } + { + Count: 1b + id: "malum:rune_of_dexterity" + } + { + Count: 1b + id: "malum:rune_of_aliment_cleansing" + } + { + Count: 1b + id: "malum:rune_of_reactive_shielding" + } + { + Count: 1b + id: "malum:rune_of_fervor" + } + { + Count: 1b + id: "malum:rune_of_motion" + } + { + Count: 1b + id: "malum:rune_of_loyalty" + } + { + Count: 1b + id: "malum:rune_of_warding" + } + { + Count: 1b + id: "malum:rune_of_haste" + } + { + Count: 1b + id: "malum:rune_of_the_aether" + } + { + Count: 1b + id: "malum:rune_of_the_seas" + } + { + Count: 1b + id: "malum:rune_of_the_arena" + } + { + Count: 1b + id: "malum:rune_of_the_hells" + } + ] + } + } + type: "item" + } + ] + title: "&dRuneworking&r" + x: 3.0d + y: 1.5d + } + { + description: [ + "From Runewood, the ancients raised their Totems. Pillars that sang to the unseen. Each was bound with the mark of a spirit, its log attuned through deliberate rite. When a full set of symbols is carved, the totem’s base may be awakened, invoking the Spirit Rite bound within." + "" + "Every Rite manifests power differently: some warp the world, others bless or curse those who stand nearby. Beware, two of the same Rite, when invoked together, cancel one another out, their voices lost in discord." + "" + "A &dTotemic Staff&r reveals the totem’s domain, the invisible field in which its influence breathes. Use it to inscribe glow upon attuned logs... for power unlit is merely promise unfulfilled." + ] + icon: "malum:runewood_totem_base" + id: "0F912AD6541F2053" + rewards: [ + { + id: "18CAB57A87B66862" + type: "xp" + xp: 10 + } + { + count: 4 + id: "4C36B57C88DF4F92" + item: "malum:runewood_log" + type: "item" + } + ] + subtitle: "Wood carved with purpose becomes more than tree." + tasks: [ + { + id: "38AF3E5BE6B6777D" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "malum:runewood_totem_base" + } + { + Count: 1b + id: "malum:soulwood_totem_base" + } + ] + } + } + type: "item" + } + { + id: "7B1CDE3C3CCA1BF6" + item: "malum:totemic_staff" + type: "item" + } + ] + title: "&dRunewood Totem&r" + x: 6.5d + y: 0.5d + } + { + description: [ + "Offer five Arcane Spirits to a totem pole and speak the invocation of release... the Unchained Rite." + "" + "What follows cannot be undone. A surge of raw, archaic potential floods the land, twisting all that is natural into blighted reflection. Grass blackens, soil turns to Blighted Earth, and even the totem itself is reborn as Soulwood, forever changed." + "" + "This corruption stabilizes over time, becoming a controlled current through which new materials may be transmuted. Yet, be wary of the Soulwood Saplings it breeds. When grown, they echo the blight that birthed them, spreading their corruption anew." + "" + "Cultivate with care. What you unchain may not wish to be bound again." + ] + icon: "malum:soulwood_log" + id: "7E0178CE1082F2D0" + rewards: [ + { + id: "65452E44D0510342" + type: "xp" + xp: 10 + } + { + id: "48EBE08F2B3634F8" + item: "malum:soulwood_log" + random_bonus: 2 + type: "item" + } + ] + subtitle: "To call upon chaos is to teach the forest to scream." + tasks: [ + { + id: "745488CEEB7504E3" + item: "malum:soulwood_log" + type: "item" + } + { + id: "257854DCF37F73EB" + item: "malum:soulwood_growth" + type: "item" + } + ] + title: "&dUnchained Rite&r" + x: 6.5d + y: 1.5d + } + { + description: [ + "Through the infusion of Spirit into fine cloth, one may craft &dSpirit Fabric&r a material of ethereal resilience. It bends with the light and hums faintly when held, as though remembering the souls that wove it." + "" + "Such silk forms the base for much of Malum’s later artifice — wearable, enchantable, and profoundly attuned to the wielder’s essence. Handle it reverently; it is not just fabric, but memory, spun thin." + ] + id: "37F379D4A4C0E2EA" + rewards: [ + { + id: "3840CFB4E00A3500" + type: "xp" + xp: 10 + } + { + count: 2 + id: "05EDD3F84C2310E1" + item: "minecraft:string" + type: "item" + } + { + id: "0B05BC6FBCDAAD40" + item: "malum:hex_ash" + type: "item" + } + ] + subtitle: "Threads spun from whispers bind more tightly than steel." + tasks: [{ + id: "39CDD4DA4E2B1E09" + item: "malum:spirit_fabric" + type: "item" + }] + title: "&dSpirit Fabric&r" + x: -3.0d + y: 0.5d + } + { + description: [ + "The harvest of Spirit brings abundance and chaos. To contain it, the old scholars crafted the &dSpirit Pouch&r, a subtle weave that drinks the air of battle, pulling essence and spoils into itself before they touch the bearer’s inventory." + "" + "It can hold up to eight stacks of such bounty, releasing its contents at the user’s will. Some claim the pouch murmurs softly after long nights of harvest... A reminder of all it has consumed." + ] + id: "021EC086DCF0D920" + rewards: [{ + id: "0A1B491E586B9AC5" + type: "xp" + xp: 10 + }] + subtitle: "A true mage never lets their souls spill." + tasks: [{ + id: "3CC64851F68B6C48" + item: "malum:spirit_pouch" + type: "item" + }] + title: "&dSpirit Pouch&r" + x: -3.0d + y: 1.5d + } + { + description: [ + "Armor of Soulwoven Silk offers little against the blade, yet hums with an unseen power. Worn by those known as Soulhunters, it amplifies the wielder’s magical strength while offering modest protection." + "" + "The robe moves as if aware, its fibers subtly reacting to nearby energy. While frail to touch, it shields the spirit, whispering to those who listen: Power is not in steel, but in what it remembers." + ] + icon: { + Count: 1 + id: "malum:soul_hunter_robe" + tag: { + Damage: 0 + } + } + id: "23098931797360BE" + rewards: [ + { + id: "4687BD4BD333158C" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "631173B9B63B9E3B" + table_id: 5310718857371185527L + type: "random" + } + ] + subtitle: "The hunter’s cloak is woven from those who failed to flee." + tasks: [ + { + id: "484FA49D51F06002" + item: { + Count: 1 + id: "malum:soul_hunter_cloak" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1F80003F32A6D1FC" + item: { + Count: 1 + id: "malum:soul_hunter_robe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "281C4E81F212358E" + item: { + Count: 1 + id: "malum:soul_hunter_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "46979FDAD34F7B37" + item: { + Count: 1 + id: "malum:soul_hunter_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&dSoulhunter Garb&r" + x: -3.0d + y: 2.5d + } + { + description: [ + "When a creature’s spirit is drawn out in the reaping, it may infuse its worldly remains with new essence. These are called Soulful Drops — relics of beings whose end was not silent." + "" + "&bRotting Essence&r: drawn from the flesh of the undead" + "" + "&bGrim Talc&r: sifted from brittle bone" + "" + "&bWarp Flux&r: shed by creatures who traverse the void" + "" + "&bAstral Weave&r: the spectral remnant of skybound souls" + "" + "Collect them with care. Each is a whisper of what once was, and a promise of what may yet be remade." + ] + icon: "malum:warp_flux" + id: "6AADB6D1075BF3BF" + rewards: [{ + id: "50F1B886A9599CB9" + type: "xp" + xp: 10 + }] + subtitle: "Death leaves gifts for those who understand its language." + tasks: [ + { + id: "7B751F4C95D4E3ED" + item: "malum:rotting_essence" + type: "item" + } + { + id: "23896D93B0D3141A" + item: "malum:grim_talc" + type: "item" + } + { + id: "3EE7448081778568" + item: "malum:warp_flux" + type: "item" + } + { + id: "6DCBDC79D058DB5C" + item: "malum:astral_weave" + type: "item" + } + ] + title: "&dSoulful Drops&r" + x: -3.0d + y: 3.5d + } + { + description: [ + "In the early days, the soulwrights discovered that Spirit, in its raw form, defied all weight and measure. It drifted unseen, unheld... a song without a vessel. To harness such essence, they forged the &dSpirit Jar&r, a vessel of Hallowed Gold tempered in sacred flame." + "" + "Within these jars, spirits find stillness. Though their capacity nears infinity, each jar may cradle only a single aspect. Arcane, Wicked, or otherwise. The containment is not force, but pact; the gold itself whispers lullabies that the restless obey." + "" + "Hold one near a freshly fallen soul and listen closely. If you are worthy, the jar will sing back." + ] + id: "6CDB41035F1BCBA4" + rewards: [ + { + id: "36BF861EB5940500" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1BEC454330717C32" + table_id: 1589514472479868093L + type: "choice" + } + ] + subtitle: "Contain the formless, and you will learn the true weight of nothing." + tasks: [{ + id: "34A5B769DF0E6515" + item: "malum:spirit_jar" + type: "item" + }] + title: "&dSpirit Jar&r" + x: -2.0d + y: 1.5d + } + { + description: [ + "In the ages that followed the first Altars, even the most devoted soulwrights grew weary of the slow rhythm of Spirit Infusion. To craft a mere stack of Hex Ash could consume entire moons. Thus was born the &dRunewood Obelisk&r, a monument of Hallowed Gold and living wood, tuned to hasten the flow of the unseen." + "" + "When placed within the Altar’s reach, each Obelisk draws in latent ether and bends it toward the focus, quickening the process by one fourth. Four may stand in harmony, their combined hum weaving time itself tighter around the ritual flame." + "" + "Be wary, however, the spirits are not fond of haste. Listen too closely, and you may hear them protest in the crackle of the air." + ] + id: "7E68E606E0A554F3" + rewards: [ + { + id: "05D5B0B30DEC992C" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "51369FFE54C40910" + table_id: 6989367773838599872L + type: "random" + } + ] + subtitle: "Patience is a virtue—yet even the patient may crave swifter revelation." + tasks: [{ + id: "099ACC9E59FEF42D" + item: "malum:runewood_obelisk" + type: "item" + }] + x: 2.0d + y: 2.5d + } + { + description: [ + "Though unsuited for Spirit Infusion, the ancient design of the Runewood Obelisk found new purpose when reborn through Brilliance. By socketing this crystalline knowledge in place of Hallowed Gold, the structure no longer feeds the Altar’s hunger, it resonates with the higher harmonies of enchantment." + "" + "In this state, each &dBrilliant Obelisk&r channels the stored intellect of ages past, granting the strength of five tomes to any Enchanting Table nearby. Their radiance hums softly, a chorus of remembered study and forgotten light." + "" + "To build one is to shape the sound of learning itself. A monument not to speed, but to wisdom." + ] + id: "351A6878C554495C" + rewards: [ + { + id: "14782B83B4D3ADB3" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "12F6DD7D478FF33C" + table_id: 6989367773838599872L + type: "random" + } + ] + subtitle: "Not all power is drawn from flame. Some hum quietly in thought." + tasks: [{ + id: "2B59C474661C941D" + item: "malum:brilliant_obelisk" + type: "item" + }] + title: "&dBrilliant Obelisk&r" + x: 3.0d + y: 2.5d + } + { + description: [ + "The Crude Scythe served well in its season, its blade eager and its harvest plentiful. Yet in time, I found its strength waning, its edge dulled by the burden of countless souls. Still, I could not forsake the form that had become an extension of my will." + "" + "Through the alloying of Soulstained Steel, I reforged the scythe, binding spirit and metal in harmony. The result is a weapon both elegant and efficient, its sweep retaining the grace of the old tool while striking with newfound vigor." + "" + "Thus, the humble reaper’s instrument ascends beyond mere function. A symbol of continuity between mortal craft and the eternal harvest." + ] + id: "023AE2D6DFF7EDD8" + rewards: [ + { + id: "4E9789A31514EADC" + type: "xp" + xp: 10 + } + { + count: 2 + id: "2410239579C0E73B" + item: "malum:processed_soulstone" + random_bonus: 2 + type: "item" + } + ] + subtitle: "Even the reaper must one day sharpen his own edge." + tasks: [{ + id: "2FC1DF8115994893" + item: { + Count: 1 + id: "malum:soul_stained_steel_scythe" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&dSoulstained Scythe&r" + x: -2.0d + y: 2.5d + } + { + description: [ + "As I refined my craft, I could no longer bear the weight of crude iron. Its cold bite pressed not only upon my flesh, but upon my spirit itself. Thus, I sought to improve what once protected me." + "" + "Through the forging of Soulstained Armor, I married metal and essence, but even this union demanded care. Between each plate of Soulstained Steel, I laid a foundation of Twisted Rock, thin and sacred, to separate my mortal frame from the metal’s hungry resonance." + "" + "Now the armor shields both flesh and spirit. It hums faintly when danger nears, a reminder that even protection comes with whispers of what lies beyond." + ] + icon: { + Count: 1 + id: "malum:soul_stained_steel_chestplate" + tag: { + Damage: 0 + } + } + id: "6E3954737E59279E" + rewards: [ + { + id: "77FB7DCD3C44B20A" + type: "xp" + xp: 40 + } + { + id: "378882F133683430" + item: "malum:soul_stained_steel_ingot" + random_bonus: 3 + type: "item" + } + ] + subtitle: "Steel guards the body. The soul requires gentler hands." + tasks: [ + { + id: "669D4E3615261A40" + item: { + Count: 1 + id: "malum:soul_stained_steel_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "33A11DA393E0AFCE" + item: { + Count: 1 + id: "malum:soul_stained_steel_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5B3767120A12A1C5" + item: { + Count: 1 + id: "malum:soul_stained_steel_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3DEECBACDE8322FE" + item: { + Count: 1 + id: "malum:soul_stained_steel_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&dSoulstained Armor&r" + x: -2.0d + y: 3.5d + } + { + description: [ + "The Arcana Crystals I have gathered whisper faintly in the dark, a rhythm of hidden radiance waiting to be freed. I wondered: if light is the breath of the soul, could I not coax it to shine brighter?" + "" + "Through the use of &dLamplighter’s Tongs&r, this vision was made real. Hold the tongs in one hand, the crystal in the other, and the glow deepens, the crystal transforming into a Mote, a suspended ember of spirit-light." + "" + "These motes drift where placed, their luminescence serene and unending. They are proof that even the smallest spark can be taught to remember the sun." + ] + id: "63E74940DB1EFDD8" + rewards: [{ + id: "27513456106F0063" + type: "xp" + xp: 5 + }] + subtitle: "Even the faintest light yearns to be seen." + tasks: [{ + id: "6588B27B802A20BF" + item: "malum:lamplighters_tongs" + type: "item" + }] + title: "&dMote Making&r" + x: -2.5d + y: 4.5d + } + { + description: [ + "A &dTotem&r is not merely built, it is raised, each log a verse in a sacred conversation between earth and sky. Begin with a solid &dRunewood Base&r, the root upon which all meaning will stand. Upon it, stack up to five Runewood Logs, forming the pillar that shall carry the symbols of your chosen spirits." + "" + "{image:malumquestinstaller:textures/quests/malum-totem.png width:100 height:128 align:center}" + "{@pagebreak}" + "Once the structure stands, use the essence of a &bSpirit&r upon each log to carve its mark into the grain. When all are attuned, right-click the base to awaken the Totem, calling the Spirit Rite it represents into being. To still it, invoke the base once more, and the Rite will sleep until called again." + "" + "{image:malumquestinstaller:textures/quests/malum-totem-spirit.png width:100 height:128 align:center}" + "" + "{@pagebreak}" + "The Totem’s influence extends outward in a quiet circle, a radius of nearly sixteen blocks, its unseen current pulsing through stone and soil alike. With a Totemic Staff, the boundary becomes visible, a faint shimmer where the spirit’s breath reaches and fades." + "" + "Take care not to raise two of the same Rite within the same field. The spirits despise echoes of themselves." + ] + icon: "malum:sacred_spirit" + id: "10F07D1379F47162" + rewards: [{ + id: "2261808EA3DB9762" + type: "xp" + xp: 10 + }] + subtitle: "Raise wood to the heavens, and the spirits will stoop to listen" + tasks: [{ + id: "1DE57C4AD561D8F0" + title: "Totems" + type: "checkmark" + }] + title: "&dTotem Construction&r" + x: 6.5d + y: -0.5d + } + { + description: [ + "The &dEncyclopedia Arcana&r is no mere tome of recipes and rituals. It is a vessel of remembrance; the accumulated thoughts of soulwrights long turned to dust. Its pages shift with unseen ink, revealing what is known and hiding what is not yet earned." + "" + "Through its study, one may learn the patterns of Spirit Infusion, the rites of Runewood Totems, and the secrets of Soulbinding and Runeworking. Each discovery feeds back into the tome, awakening new passages that were once sealed by ignorance." + "" + "Treat it not as a guide, but as a companion. It listens as much as it instructs, and at times, it may whisper truths you did not seek." + "" + "To consult the Encyclopedia Arcana is to walk beside every hand that ever shaped Malum... and to risk adding your own name to its margins." + ] + id: "7B393BA4F357288C" + rewards: [ + { + id: "7B03626607AF2D19" + item: "malum:processed_soulstone" + random_bonus: 2 + type: "item" + } + { + id: "54D61DAF52949CFA" + type: "xp" + xp: 10 + } + ] + subtitle: "The book does not teach, it remembers." + tasks: [{ + id: "4DD85C34B9A4C89D" + item: "malum:encyclopedia_arcana" + type: "item" + }] + title: "&dEncyclopedia Arcana&r" + x: -5.5d + y: 1.5d + } + ] + title: "&dMalum&r" +} diff --git a/minecraft/config/ftbquests/quests/chapters/mekanism2.snbt b/minecraft/config/ftbquests/quests/chapters/mekanism2.snbt new file mode 100644 index 0000000..5e9bf30 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/mekanism2.snbt @@ -0,0 +1,2737 @@ +{ + autofocus_id: "58B125BD4876054C" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "mekanism2" + group: "69B9F7247002FE35" + icon: "mekanism:digital_miner" + id: "23983F4DC524B14B" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -15.717857142857142d + y: -7.407142857142862d + } + { + click: "https://wiki.aidancbrady.com/wiki/Main_Page" + height: 2.2d + hover: ["Mekanism Wiki"] + image: "kubejs:textures/item/mekanism2.png" + rotation: 0.0d + width: 6.56d + x: -0.5d + y: -7.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -8.5d + y: -0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 2.0d + y: -2.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -1.0d + y: 3.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -8.5d + y: -6.5d + } + ] + order_index: 8 + quest_links: [ ] + quests: [ + { + dependencies: ["0650996C7818ADB5"] + description: [ + "The &eMetallurgic Infuser&r is used to craft core crafting components throughout &dMekanism&r." + "" + "The machine works by infusing a &9material&r &nmiddle-left slot&r with an &6infuser&r &nfar-left slot&r." + "" + "This is the one of couple of ways how to get &3Steel Ingots&r." + ] + id: "162CE44400A63575" + rewards: [{ + exclude_from_claim_all: true + id: "497E959DD7DB3661" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + subtitle: "The Starting Machine" + tasks: [{ + id: "28277BA9F319240D" + item: "mekanism:metallurgic_infuser" + type: "item" + }] + x: -13.5d + y: -3.0d + } + { + dependencies: ["685159786B4BCA0A"] + description: [ + "The &9Enrichment Chamber&r uses energy to extract dusts out of certain blocks and ores. Not to be mistaken with the &aCrusher&r, this machine is the &7Pulverizer&r equivalent in other mods." + "" + "Can also be used to turn &oCoal&r or &oCharcoal&r into &0Enriched Carbon&r, &oRedstone&r into &cEnriched Redstone&r, &oDiamond&r into &bEnriched Diamond&r, &oTin Dust&r into &7Enriched Tin&r, &oGold Dust&r into &6Enriched Gold&r and &oRefined Obsidian Dust&r into &dEnriched Obsidian&r, all for use in the &eMetallurgic Infuser&r." + "" + "This breaks &n3 raw ores&r down into &n4 dusts&r." + "" + "The &9Enrichment Chamber&r is the start of your &6Ore Factory&r. It can also be upgraded to a factory machine, increasing the slots of use." + ] + id: "08DDE018A804BFE7" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "6DB2835CF94CEA3C" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Breaks Raw Ores into Dusts" + tasks: [{ + id: "1AE233B4CCFE99F7" + item: "mekanism:enrichment_chamber" + type: "item" + }] + x: -8.5d + y: -3.0d + } + { + dependencies: ["685159786B4BCA0A"] + description: [ + "The &6Osmium Compressor&r is used to create &dRefined Obsidian Ingots&r and &eGlowstone Ingots&r." + "" + "It fuses liquid &bOsmium&r (melted down &bOsmium&r Ingots placed in the machine's &nbottom&r slot) with the originating materials to create their corresponding ingots." + ] + id: "195729280394ABFB" + rewards: [{ + exclude_from_claim_all: true + id: "74DF344FBB9C8268" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6934C61AFEB0443D" + item: "mekanism:osmium_compressor" + type: "item" + }] + x: -10.5d + y: -4.5d + } + { + dependencies: ["6C25D42C36175BF4"] + description: [ + "The &9Crusher&r crushes, among other things, &3Ores&r into &7Dirty Dusts&r, &aIngots&r into &eDusts&r and &6Biomatter&r into &2Bio Fuel&r." + "" + "This is useful to convert &o&bclumps&r into &o&bdirty dust&r, which can go through an &dEnrichment Chamber&r to create the &o&bore dust&r, which then can be smelted into an &aingot&r." + ] + id: "7AE502EDB73BD57A" + rewards: [{ + exclude_from_claim_all: true + id: "1101C2F8D6AAD512" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "It's Crushing Time" + tasks: [{ + id: "431D7329CFCAF880" + item: "mekanism:crusher" + type: "item" + }] + x: -2.5d + y: -3.5d + } + { + dependencies: ["4BDE773C3359D584"] + description: [ + "The &9Digital Miner&r can be configured to mine ores only within a certain area. The &9Digital Miner&r can also be set to &nsilk touch&r ores, but this results in higher power consumption." + "" + "Like all other &7Mekanism&r machines, the &9Digital Miner&r can automatically remove ores from its &einventory&r for automated processing by other machines." + "" + "This machine &ncan mine for you&r!" + "" + "It is completely configurable, and can even replace mined blocks with cobblestone, or whatever block you provide it with!" + ] + id: "7EA6B942D1294ED6" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "75B2DED534701DDE" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "36FE95268A543F7C" + item: "mekanism:digital_miner" + type: "item" + }] + x: -13.5d + y: 3.0d + } + { + dependencies: ["58B125BD4876054C"] + description: [ + "&aFluid Tanks&r are storage blocks to store fluids." + "" + "The amount of fluid (mb) a fluid tank can store is based on its tier." + "" + "It will retain its inventory when broken. You may use a &dMechanical Pipe&r that is set to &cPull&r in order to extract the fluid out of the tank." + "" + "It has a &o&bbucket&r mode which can be toggled to scoop up liquids with it. Very useful for &6lava&r in the beginning!" + ] + hide_dependency_lines: true + id: "6DB1AAAD926486BC" + rewards: [{ + exclude_from_claim_all: true + id: "34FD31EA2006581F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "54BEF9EA9F1D4374" + item: "mekanism:basic_fluid_tank" + type: "item" + }] + x: -7.0d + y: 0.35d + } + { + dependencies: [ + "1FC7E9DBF92BE6AA" + "4204702AA6FBF40B" + "6E95E958201D50BE" + ] + description: [ + "&6Robit&r is &dMekanism's&r mechanical companion." + "" + "He can act as a &oCrafting Grid&r, a &oFurnace&r, an &oAnvil&r, a &oChest&r, or simply a &ccute little buddy&r." + ] + hide_dependency_lines: false + id: "4BDE773C3359D584" + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "1F922129ACB44DD2" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "171E6682D1578C63" + item: "mekanism:robit" + type: "item" + }] + x: -13.5d + y: 1.5d + } + { + dependencies: ["162CE44400A63575"] + description: [ + "&9Tier Installers&r are used to upgrade various machines into their &3Factory&r equivalent." + "" + "&aRight-click&r on the machine with the &9Tier Installer&r and it will upgrade that machine to a &3Factory&r - its level (Basic, Advanced, or Elite) depending on the level of the &9Factory Installer&r used." + "" + "&aBasic Tier Installers&r can be used on any machine that has a &3Factory&r associated with it that has not yet been turned into one." + "" + "However, &4Advanced Tier Installers&r can only be used on &aBasic Factories&r, while &9Elite Tier Installers&r can only be used on &4Advanced Factories&r, and &dUltimate Tier Installers&r can only be used on &9Elite Factories&r." + "" + "This is intended so that the player does not &nskip any tiers&r in the &b&oupgrade chain&r, e.g., going from &aBasic Factory&r to &dUltimate Factory&r instantly." + ] + hide_dependency_lines: true + id: "07AD45DCF9EE3C2E" + rewards: [{ + exclude_from_claim_all: true + id: "63EF0317A5F46EA7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "28A769E7676E358F" + item: "mekanism:basic_tier_installer" + type: "item" + }] + x: -15.4d + y: -0.3500000000000001d + } + { + dependencies: ["07AD45DCF9EE3C2E"] + id: "493FAE3A6088518E" + rewards: [{ + exclude_from_claim_all: true + id: "45594271180D2992" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "646785A06E01D173" + item: "mekanism:advanced_tier_installer" + type: "item" + }] + x: -15.4d + y: 0.3500000000000001d + } + { + dependencies: ["493FAE3A6088518E"] + id: "3E30EC9CA875A1F9" + rewards: [{ + exclude_from_claim_all: true + id: "63FCD1133B1327BF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "3AA211725EA97D18" + item: "mekanism:elite_tier_installer" + type: "item" + }] + x: -15.4d + y: 1.0499999999999996d + } + { + dependencies: ["3E30EC9CA875A1F9"] + id: "220C38510116BF36" + rewards: [{ + exclude_from_claim_all: true + id: "3016C46D37CB9534" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "56A8A51990C7F0A1" + item: "mekanism:ultimate_tier_installer" + type: "item" + }] + x: -15.4d + y: 1.7499999999999998d + } + { + dependencies: ["162CE44400A63575"] + description: [ + "The &9Quantum Entangloporter&r from &dMekanism&r is a machine that allows &bliquids&r/&eitems&r/&cenergy&r/&3gas&r to be sent from one &9Quantum Entangloporter&r to another through a &achannel&r." + "" + "The &9Quantum Entangloporter&r is similar to the &0Tesseract&r, but the &9Quantum Entangloporter&r can send and receive &3gasses&r while the &0Tesseract&r cannot." + ] + id: "7CC49360D07086B8" + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "1104D414671C4AAD" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Wireless Power, Gases, Fluids, Everything." + tasks: [{ + id: "0526878F9506FB48" + item: "mekanism:quantum_entangloporter" + type: "item" + }] + x: -15.5d + y: -1.5d + } + { + dependencies: ["162CE44400A63575"] + description: [ + "An &4Energy Cube&r is an advanced type of battery that is compatible with multiple energy systems." + "" + "&cEnergy&r can be input from &o&b5&r sides, and output on &o&b1&r side. The output side has a special marking which looks like a &nsmall panel&r." + "" + "Rotate the Cube by &eright-clicking&r with a &awrench&r." + "" + "&4Energy Cubes&r can be transported by &ashift-right-clicking&r with a &ewrench&r. This will “break” the Cube, but all its energy will be &nsafely stored inside&r." + "" + "When the Cube is in your &einventory&r, &nholding shift&r will display additional data about the Cube’s energy level." + ] + hide_dependency_lines: true + id: "09408C6DCAC90318" + rewards: [{ + exclude_from_claim_all: true + id: "356B9A58265D99A4" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "19C3A9D5E656FAA5" + item: "mekanism:basic_energy_cube" + type: "item" + }] + x: -16.1d + y: -0.3500000000000001d + } + { + dependencies: ["09408C6DCAC90318"] + id: "10909A87C1953F7C" + rewards: [{ + exclude_from_claim_all: true + id: "2588857F60692D8F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "3939A98E3276095B" + item: "mekanism:advanced_energy_cube" + type: "item" + }] + x: -16.1d + y: 0.34999999999999987d + } + { + dependencies: ["10909A87C1953F7C"] + id: "1DA058C68CF437DC" + rewards: [{ + exclude_from_claim_all: true + id: "1F4E6540EEFD0A4A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "0485F28A3916A974" + item: "mekanism:elite_energy_cube" + type: "item" + }] + x: -16.1d + y: 1.0499999999999996d + } + { + dependencies: ["1DA058C68CF437DC"] + id: "7AF982B6D8FD6C03" + rewards: [{ + exclude_from_claim_all: true + id: "40B01F7AA8A9A9E3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "50A250703B09FA5A" + item: "mekanism:ultimate_energy_cube" + type: "item" + }] + x: -16.1d + y: 1.7499999999999998d + } + { + dependencies: ["162CE44400A63575"] + hide_dependency_lines: true + id: "166971866A9234C7" + rewards: [{ + exclude_from_claim_all: true + id: "733F15BAB70C4DFF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "72CE838EFDDE6479" + item: "mekanism:alloy_infused" + type: "item" + }] + x: -15.049999999999999d + y: -2.8d + } + { + dependencies: ["166971866A9234C7"] + id: "7940E814260C556F" + rewards: [{ + exclude_from_claim_all: true + id: "63ED773FF8BFB562" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "2FE06FDA0A3A66C7" + item: "mekanism:alloy_reinforced" + type: "item" + }] + x: -15.75d + y: -2.8d + } + { + dependencies: ["7940E814260C556F"] + id: "019D5A05A2134C7E" + rewards: [{ + exclude_from_claim_all: true + id: "3EAD24994E8A83DE" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "0DD9B2119BB50C80" + item: "mekanism:alloy_atomic" + type: "item" + }] + x: -16.45d + y: -2.8d + } + { + dependencies: ["162CE44400A63575"] + hide_dependency_lines: true + id: "0498A578D0EC3254" + rewards: [{ + exclude_from_claim_all: true + id: "547CA56C0ED47F0D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "5E51F5B17F77573E" + item: "mekanism:basic_control_circuit" + type: "item" + }] + x: -14.7d + y: -3.5d + } + { + dependencies: [ + "0498A578D0EC3254" + "166971866A9234C7" + ] + id: "6D7CABCFB50D8B0D" + rewards: [{ + exclude_from_claim_all: true + id: "7DEB329993653D3C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "05F2EEE4DE21E2ED" + item: "mekanism:advanced_control_circuit" + type: "item" + }] + x: -15.4d + y: -3.5d + } + { + dependencies: [ + "6D7CABCFB50D8B0D" + "7940E814260C556F" + ] + id: "347C16F0F7CFAACF" + rewards: [{ + exclude_from_claim_all: true + id: "0D83B040522F75BB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "48AC2274973C4509" + item: "mekanism:elite_control_circuit" + type: "item" + }] + x: -16.099999999999998d + y: -3.5d + } + { + dependencies: [ + "347C16F0F7CFAACF" + "019D5A05A2134C7E" + ] + id: "4AA150A009E904DA" + rewards: [{ + exclude_from_claim_all: true + id: "35DF33B736ED90AA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "7E9FCA38BA758B41" + item: "mekanism:ultimate_control_circuit" + type: "item" + }] + x: -16.8d + y: -3.5d + } + { + dependencies: ["162CE44400A63575"] + description: [ + "This is the way how to obtain &3Steel&r in &dMekanism&r." + "" + "A &3Steel Ingot&r is created by smelting &3Steel Dust&r in any type of furnace." + "" + "Infusing &7Iron&r with &b&o10&r units of &0Carbon&r in a &eMetallurgic Infuser&r will give you &7Enriched Iron&r." + "" + "Infusing the &7Enriched Iron&r with a further &b&o10&r units of &0Carbon&r will give you &3Steel Dust&r," + "" + "&3Steel&r is a major crafting component in a lot of recipes in Mekanism." + ] + hide_dependency_lines: true + id: "1B6DDF50D00CBB31" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "2D95AE6820DC024B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "6B88F1F9DF50C1E4" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:ingots/steel" + } + } + title: "Steel Ingots" + type: "item" + }] + title: "Steel" + x: -8.52857142857143d + y: 0.914285714285711d + } + { + dependencies: ["1B6DDF50D00CBB31"] + description: ["&aUniversal Cables&r are &dMekanism's&r way to transfer power."] + id: "23F165DEAD225B10" + rewards: [{ + exclude_from_claim_all: true + id: "20EE52D84632F901" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "56F8A49135418FD8" + item: "mekanism:basic_universal_cable" + type: "item" + }] + title: "&aBasic Universal Cable" + x: -11.332142857142857d + y: 2.4785714285714304d + } + { + dependencies: ["23F165DEAD225B10"] + id: "618ECDB3FB534A8A" + rewards: [{ + exclude_from_claim_all: true + id: "171B9AAB358B8E8A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "445F3D8AA18A518A" + item: "mekanism:advanced_universal_cable" + type: "item" + }] + title: "&cAdvanced Universal Cables" + x: -10.982142857142858d + y: 2.8285714285714305d + } + { + dependencies: ["618ECDB3FB534A8A"] + id: "7553689BC9202E14" + rewards: [{ + exclude_from_claim_all: true + id: "3C79D559DAE19932" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "6EC6D1463C65EBF2" + item: "mekanism:elite_universal_cable" + type: "item" + }] + title: "&9Elite Universal Cables" + x: -11.332142857142857d + y: 3.1785714285714306d + } + { + dependencies: ["7553689BC9202E14"] + id: "32E093F004E8CAC6" + rewards: [{ + exclude_from_claim_all: true + id: "5B311001ADCDBD9F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "1ECDAF49CF1BC952" + item: "mekanism:ultimate_universal_cable" + type: "item" + }] + title: "&dUltimate Universal Cables" + x: -11.682142857142857d + y: 2.8285714285714305d + } + { + dependencies: ["1B6DDF50D00CBB31"] + description: [ + "&aMechanical Pipe&r is the fluid pipe for &dMekanism&r logistics." + "" + "It can be used to connect to any blocks with &nFluid Handlers&r in them." + ] + id: "2EF4DD5CC254CC80" + rewards: [{ + exclude_from_claim_all: true + id: "43E53A40D03D70CA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "45B151086147D98D" + item: "mekanism:basic_mechanical_pipe" + type: "item" + }] + title: "&aBasic Mechanical Pipe" + x: -9.932142857142857d + y: 2.4785714285714304d + } + { + dependencies: ["2EF4DD5CC254CC80"] + id: "1A72F7DA24E1BB09" + rewards: [{ + exclude_from_claim_all: true + id: "19FB864951F40B28" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "131392325AEB228E" + item: "mekanism:advanced_mechanical_pipe" + type: "item" + }] + title: "&cAdvanced Mechanical Pipe" + x: -9.582142857142857d + y: 2.8285714285714305d + } + { + dependencies: ["1A72F7DA24E1BB09"] + id: "5B3FDF651D845DF1" + rewards: [{ + exclude_from_claim_all: true + id: "63E5913D1C60CD47" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "78C482BF65B20673" + item: "mekanism:elite_mechanical_pipe" + type: "item" + }] + title: "&9Elite Mechanical Pipe" + x: -9.932142857142857d + y: 3.1785714285714306d + } + { + dependencies: ["5B3FDF651D845DF1"] + id: "01C3B23461807007" + rewards: [{ + exclude_from_claim_all: true + id: "6A0FE841DF51F42D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "25D5626BBA7615F0" + item: "mekanism:ultimate_mechanical_pipe" + type: "item" + }] + title: "&dUltimate Mechanical Pipe" + x: -10.282142857142858d + y: 2.8285714285714305d + } + { + dependencies: ["1B6DDF50D00CBB31"] + description: [ + "&aPressurized Tubes&r are used to transport &bGases&r." + "" + "The &3Pump Rate limitation&r declared in the tooltip only regards the active pumping." + "" + "The &aPipe&r can take in more if the Device can output itself and there is enough buffer in the network." + ] + id: "4434D7B66521D69A" + rewards: [{ + exclude_from_claim_all: true + id: "54A23AA14982FBE2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "685BFFC7BDA40FC3" + item: "mekanism:basic_pressurized_tube" + type: "item" + }] + title: "&aBasic Pressurized Tube" + x: -7.132142857142858d + y: 2.4785714285714304d + } + { + dependencies: ["1B6DDF50D00CBB31"] + description: [ + "The &aLogistical Transporter&r is the basic item transport pipe for &dMekanism&r logistics." + "" + "With the &6Configurator&r the player can choose to \"&bpaint&r\" the pipe with colors that can be detected by the pipe's color sorter by &eShift+Right-Clicking&r the center of a transporter with a &6Configurator&r." + "" + "It has 2 other cousins called the &9Diversion Transporter&r and the &cRestrictive Transporter&r." + ] + id: "5B681BC43371CC5C" + rewards: [{ + exclude_from_claim_all: true + id: "2FC43FFCE74763DC" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "3F972BE9DFCA1EB5" + item: "mekanism:basic_logistical_transporter" + type: "item" + }] + title: "&aBasic Logistical Transporter" + x: -8.532142857142858d + y: 2.4785714285714304d + } + { + dependencies: ["1B6DDF50D00CBB31"] + description: [ + "Similar to the &eUniversal Cable&r, the &aThermodynamic Conductor&r is &dMekanism's&r way of transferring power in the form of heat (essentially a heat pipe)." + "" + "Transfer is lossy, depending on the biome the conductor is in. Warmer biomes have a higher transfer efficiency (i.e., less heat is lost), while colder biomes are lower (i.e., more heat is lost)." + ] + id: "531E3FF1F2865C67" + rewards: [{ + exclude_from_claim_all: true + id: "79F4A8678BBEBE77" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "5F4FEC0FD7C5CC33" + item: "mekanism:basic_thermodynamic_conductor" + type: "item" + }] + title: "&aBasic Thermodynamic Conductor" + x: -5.732142857142858d + y: 2.4785714285714304d + } + { + dependencies: ["4434D7B66521D69A"] + id: "768F9EBD3E115CA6" + rewards: [{ + exclude_from_claim_all: true + id: "24F9D0E9DB6FF8F0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "2E82ABE762A77F41" + item: "mekanism:advanced_pressurized_tube" + type: "item" + }] + title: "&cAdvanced Pressurized Tubes" + x: -6.7821428571428575d + y: 2.8285714285714305d + } + { + dependencies: ["768F9EBD3E115CA6"] + id: "6424D99CBA76895B" + rewards: [{ + exclude_from_claim_all: true + id: "537D3B0ABC8407EF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "460D2FF854258953" + item: "mekanism:elite_pressurized_tube" + type: "item" + }] + title: "&9Elite Pressurized Tubes" + x: -7.132142857142858d + y: 3.1785714285714306d + } + { + dependencies: ["6424D99CBA76895B"] + id: "546F7FF099D2696E" + rewards: [{ + exclude_from_claim_all: true + id: "557EE6B68A4D50A7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "1E066CC63A95B288" + item: "mekanism:ultimate_pressurized_tube" + type: "item" + }] + title: "&dUltimate Pressurized Tubes" + x: -7.482142857142858d + y: 2.8285714285714305d + } + { + dependencies: ["5B681BC43371CC5C"] + id: "30B3469DAA8D5A0A" + rewards: [{ + exclude_from_claim_all: true + id: "3432949C26483CDF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "631FDADA57127F2E" + item: "mekanism:advanced_logistical_transporter" + type: "item" + }] + title: "&cAdvanced Logistical Transporter" + x: -8.182142857142857d + y: 2.8285714285714305d + } + { + dependencies: ["30B3469DAA8D5A0A"] + id: "46AB23E922C51517" + rewards: [{ + exclude_from_claim_all: true + id: "0B05791DB22B3D2E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "1F7689D1D5DB5E8C" + item: "mekanism:elite_logistical_transporter" + type: "item" + }] + title: "&9Elite Logistical Transporter" + x: -8.532142857142858d + y: 3.1785714285714306d + } + { + dependencies: ["46AB23E922C51517"] + id: "6C8431C216A66C1F" + rewards: [{ + exclude_from_claim_all: true + id: "4D17C984F8611CC2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "62A00D9DD3A8CA8E" + item: "mekanism:ultimate_logistical_transporter" + type: "item" + }] + title: "&dUltimate Logistical Transporter" + x: -8.882142857142858d + y: 2.8285714285714305d + } + { + dependencies: ["531E3FF1F2865C67"] + id: "7522F2DC9038ED92" + rewards: [{ + exclude_from_claim_all: true + id: "58E15FC59586843C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "7B1C318ACC88ED60" + item: "mekanism:advanced_thermodynamic_conductor" + type: "item" + }] + title: "&cAdvanced Thermodynamic Conductor" + x: -5.382142857142858d + y: 2.8285714285714305d + } + { + dependencies: ["7522F2DC9038ED92"] + id: "55E2F8C6A71E7328" + rewards: [{ + exclude_from_claim_all: true + id: "3EC1CC0757B64A01" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "72F178B9B6C32B15" + item: "mekanism:elite_thermodynamic_conductor" + type: "item" + }] + title: "&9Elite Thermodynamic Conductor" + x: -5.732142857142858d + y: 3.1785714285714306d + } + { + dependencies: ["55E2F8C6A71E7328"] + id: "5E2F9E27E6B4DF74" + rewards: [{ + exclude_from_claim_all: true + id: "7B6E8FD54BF71EB2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 8L + id: "744EA1745278F562" + item: "mekanism:ultimate_thermodynamic_conductor" + type: "item" + }] + title: "&dUltimate Thermodynamic Conductor" + x: -6.082142857142858d + y: 2.8285714285714305d + } + { + dependencies: ["195729280394ABFB"] + description: [ + "The &dRefined Obsidian Ingot&r is used to create the most durable and powerful &aTools&r and &aArmor&r in the game as well as a few other items." + "" + "However, it also the most expensive to obtain." + ] + id: "31B73D16C0199785" + rewards: [{ + exclude_from_claim_all: true + id: "502D2133D8665D24" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "69CEEFADCFA28675" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:ingots/refined_obsidian" + } + } + title: "Refined Obsidian" + type: "item" + }] + x: -11.0d + y: -5.5d + } + { + dependencies: ["195729280394ABFB"] + description: ["&6Glowstone Ingots&r can be used for making &eGlowstone Armor&r, &eRefined Glowstone Tools&r and &eTeleporter Frames&r."] + id: "58445E5B3957ACC8" + rewards: [{ + exclude_from_claim_all: true + id: "37A6BB51E6C97570" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "532EE85D4748D50D" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:ingots/refined_glowstone" + } + } + title: "Refined Glowstone" + type: "item" + }] + x: -10.0d + y: -5.5d + } + { + dependencies: [ + "18D88932916C7A98" + "407EFAF528871014" + ] + description: [ + "The &dPurification Chamber&r uses &bOxygen&r to refine ores. Each &aOre&r makes &b&o3 clumps&r and each &aRaw Ore&r makes &o&b2 clumps&r and each &aShard&r only gives &o&b1 clump&r." + "" + "&aClumps&r can then be placed in a &9Crusher&r to be turned to &o&bdirty dusts&r, which can be enriched in an &cEnrichment Chamber&r to create &o&bregular dusts&r, then through a &esmelter&r to be turned to an &6ingot&r." + "" + "This will &n&bDOUBLE&r your ingot output." + "" + "This machine requires &bOxygen&r to run, which is created by pumping &9water&r into an &6Electrolytic Separator&r." + ] + id: "6C25D42C36175BF4" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "7A36945A1FAA00EB" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "It makes Clumps" + tasks: [{ + id: "4983AE3B954BF2FE" + item: "mekanism:purification_chamber" + type: "item" + }] + x: -4.0d + y: -3.5d + } + { + dependencies: ["685159786B4BCA0A"] + description: [ + "The &aEnergized Smelter&r is your basic electric furnace that uses &cenergy&r instead of fuel to smelt items." + "" + "It can be upgraded into a &dSmelting Factory&r, increasing the total number of smelting slots up to a &nmaximum of&r &o&b9&r." + ] + id: "488DBE69595F38F8" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "07EA95E562461FCE" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Mekanism's Powered Furnace" + tasks: [{ + id: "5A081977DB9407EA" + item: "mekanism:energized_smelter" + type: "item" + }] + x: -11.5d + y: -4.5d + } + { + dependencies: ["08DDE018A804BFE7"] + description: [ + "The &9Electrolytic Separator&r sends controlled amounts of direct current into a fluid, causing the atoms in the fluid to break their bonds. This process of electrolysis is used to create some very useful gases from some rather ordinary fluids." + "" + "As the liquid is electrolyzed, the component gases will be stored in its &ainternal tanks&r. Should either tank fill completely, the &9Separator&r will turn &coff&r. Connecting a &dPressurized Tube&r or other compatible pipe to both tanks will remove the gas." + "" + "If you are only using a single gas, selecting &b&odump&r for the unused gas will vent it to the environment, preventing that internal tank from filling completely and stopping the &9Separator&r." + "" + "You'll need a bunch of these if you plan on making an &6Ore Processing Factory&r." + "" + "To start, make one of these and we'll break down the most basic fluid: &1Water&r." + ] + id: "18D88932916C7A98" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "60E23742BBD82117" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Time to Break It Down" + tasks: [{ + id: "054CC6FB5173F8A3" + item: "mekanism:electrolytic_separator" + type: "item" + }] + title: "The Start of a Tier 2 Ore Factory" + x: -6.0d + y: -3.0d + } + { + dependencies: ["407EFAF528871014"] + description: [ + "A &6Gas-Burning Generator&r creates power by consuming any burnable gas for example the &3Hydrogen&r produced by an &aElectrolytic Separator&r or &7Ethylene&r." + "" + "The &6Gas-Burning Generator&r has its own internal storage tank with a capacity of &o&b18,000&r units. &9Gas Tanks&r can be used to expand the &3Hydrogen&r storage capacity of your system." + "" + "&4Note&r: &3Hydrogen&r is burned at a maximum rate of &o&b256 mB/t&r, generating up to &o&b20,480 RF/t&r, and &7Ethylene&r is burned at a maximum rate of &o&b6.4 mB/t&r, generating up to &o&b72,192 RF/t&r. So, burning &3Hydrogen&r will not produce more power than it costs to run an &6Electrolytic Separator&r. Use for &7Ethylene&r instead." + ] + id: "3EC9D0DA61B45328" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "30A83454B229BD4C" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Burn Gases into Power!" + tasks: [{ + id: "2C13E8B67BC61E34" + item: "mekanismgenerators:gas_burning_generator" + type: "item" + }] + x: -6.0d + y: -5.0d + } + { + dependencies: ["263220DCCDB90E29"] + description: [ + "The &dChemical Injection Chamber&r uses &3Hydrogen Chloride&r gas to turn &aOres&r into &o&b4 Shards&r and &aRaw Ores&r into &o&b8 Shards&r. " + "" + "It is the start of 4x ore processing and requires a steady supply of &3Hydrogen Chloride&r, which in turn requires the player to have a &cThermal Evaporation Plant&r running." + "" + "This machine is the next step to your &6Ore Processing Factory&r. Add this to the left of your &dPurification Chamber&r to build on to your current ore factory!" + ] + id: "4F1C04C0F6769825" + rewards: [{ + exclude_from_claim_all: true + id: "4FCE6AE5AD57AC6F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "443DCB7E2E45F3DD" + item: "mekanism:chemical_injection_chamber" + type: "item" + }] + title: "The Start of a Tier 3 Ore Factory" + x: -1.0d + y: -2.0d + } + { + dependencies: ["603877AB96321F1A"] + description: [ + "The &9Chemical Infuser&r combines two gases to create another gas." + "" + "The gas gauges on the &nleft&r and &nright&r side of its &bGUI&r are the input tanks, and correspond to correspond with the left and right sides of the machine." + "" + "The gauge in the &nmiddle&r is for the resulting gas, which likewise is output through the front of the machine." + "" + "You'll need this to combine &3Chlorine&r with &bHydrogen&r to create &7Hyrdogen Chloride&r, which is then used in our &dChemical Injection Chamber&r." + ] + id: "04E2D539E33B7B0F" + rewards: [{ + exclude_from_claim_all: true + id: "5712A30142F72784" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "31D203EC92BEA66F" + item: "mekanism:chemical_infuser" + type: "item" + }] + x: 0.5d + y: -0.5d + } + { + dependencies: ["4F1C04C0F6769825"] + description: [ + "To get &3Hydrogen Chloride&r for our machines, we'll need to first create &aBrine&r." + "" + "The &cThermal Evaporation Plant&r is a multiblock structure with the purpose of converting &9Water&r to &eBrine&r." + "" + "The structure has a &o&b4x4&r block base with a height of &o&b3&r blocks to a maximum height of &o&b18&r, where the base is made with only &3Thermal Evaporation Blocks&r, and the walls contains a &eThermal Evaporation Controller&r, and at least &o&b2&r &dThermal Evaporation Valves&r." + "" + "Pump in &9Water&r, and you'll start collecting &eBrine&r, which can be pumped into an &aElectrolytic Separator&r to extract &6Chlorine&r from the gas." + "" + ] + id: "603877AB96321F1A" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "7DD438627121364A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "716D483EFC35F6F3" + item: "mekanism:thermal_evaporation_controller" + type: "item" + } + { + count: 37L + id: "33D7942176AD257D" + item: "mekanism:thermal_evaporation_block" + type: "item" + } + { + count: 2L + id: "4BAD2AADFE32215A" + item: "mekanism:thermal_evaporation_valve" + type: "item" + } + ] + title: "Thermal Evaporation Plant" + x: 0.5d + y: -2.0d + } + { + dependencies: ["1112E4E2CCEB2467"] + description: [ + "We will need to add 3 more machines to our current setup." + "" + "The &6Chemical Dissolution Chamber&r is the first machine in the 5x ore processing setup. It turns &aRaw Ores&r into &2Slurry&r using &7Sulfuric Acid&r." + "" + "The machine uses &o&b100mB&r of &7Sulfuric Acid&r for every ore dissolved and outputs &o&b1000mb&r of &2Slurry&r. This &2Slurry&r needs washing in the &dChemical Washer&r." + ] + id: "4F436770D30D8520" + rewards: [{ + exclude_from_claim_all: true + id: "66029DA97FC15BD1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1FE5AA0FF1F9BB51" + item: "mekanism:chemical_dissolution_chamber" + type: "item" + }] + title: "The Start of a Tier 4 Ore Factory" + x: -1.0d + y: 1.5d + } + { + dependencies: ["4F436770D30D8520"] + description: [ + "The &2Rotary Condensentrator&r is used for converting substances between liquid and gaseous forms at a rate of 1:1." + "" + "It has two modes: &3Decondensentrating&r, which turns &aLiquids&r into &7Gases&r, and &dCondensentrating&r, which turns &7Gases&r into &aLiquids&r." + "" + "To make &4Sulfuric Acid&r, you'll need to create &aWater Vapor&r." + "" + "Pump some &9Water&r into this machine and it'll convert it into &bVapor&r. " + ] + id: "4236B9F071BE18F3" + rewards: [{ + exclude_from_claim_all: true + id: "64AF694112EC705A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "50D9504BFFB97A27" + item: "mekanism:rotary_condensentrator" + type: "item" + }] + x: 0.5d + y: 1.0d + } + { + dependencies: ["4F436770D30D8520"] + description: [ + "The &9Chemical Oxidizer&r is used for making gases from materials. It is a crucial machine needed for Mekanism's 5x ore production system." + "" + "Okay, let's start with making &6Sulfur Dioxide&r first." + "" + "Start by placing &7Gunpowder&r in a separate &aChemical Injection Chamber&r with &3Hydrogen Chloride&r to create &eSulfur Dust&r. Or you can just pulverize &eSulfur&r from &oThermal Series&r into &eSulfur Dust&r." + "" + "Feeding the &eSulfur Dust&r into this machine, the &aChemical Oxidizer&r, will create &6Sulfur Dioxide&r. " + "" + "Now we need to create &6Sulfur Trioxide&r. Send the &6Sulfur Dioxide&r into a &cChemical Infuser&r to combine it with &bOxygen&r to create &6Sulfur Trioxide&r." + "" + "Send the &6Trioxide&r to another &cChemical Infuser&r to combine it with &bWater Vapor&r to create &eSulfuric Acid&r." + ] + id: "2E274BEEF2B0B8C7" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "1D77C73347C27FE6" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "21BFDF262D2A9DB3" + item: "mekanism:chemical_oxidizer" + type: "item" + } + { + id: "54D899FF6AE13553" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:dusts/sulfur)" + } + } + title: "Sulfur dusts" + type: "item" + } + ] + x: 0.5d + y: 2.0d + } + { + dependencies: ["603877AB96321F1A"] + description: [ + "The &cThermal Evaporation Plant&r multi-block produces &eBrine&r based on the internal temperature." + "" + "There are several methods to increase the temperature of the plant, including building them in a desert!" + "" + "The &aFuelwood Heater&r burns buckets of &6Lava&r, which can them be piped in using a pipe that transfers heat." + "" + "The &eResistive Heater&r uses &cRF/FE&r to produce heat, and can be set to use whatever &cRF/FE&r you want it to use." + ] + id: "027084AE2DF5EBA6" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "056B2DB093B52FF8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6E75525A5D88EF23" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mekanism:fuelwood_heater" + } + { + Count: 1b + id: "mekanism:resistive_heater" + } + ] + } + } + title: "Heaters" + type: "item" + }] + x: 0.5d + y: -3.5d + } + { + dependencies: ["162CE44400A63575"] + description: [ + "The &6Teleporter Portal&r is a multi-block structure that allows the player to teleport between &aTeleporters&r on the same frequency. They are configured by &eright-clicking&r the &aTeleporter&r block at the base of the &aTeleporter&r." + "" + "Their security can be configured as \"&bPublic&r\" (any player can teleport between &aTeleporters&r on this frequency) or \"&bPrivate&r\" (only the player who created/belonging to that frequency may use or add &6Teleporter Portals&r to it). They can be used to travel between dimensions." + "" + "To create a custom Portal, place down a single Teleporter block. Connect power to the block." + "" + "Create a \"Portal Frame\" with the teleporter block being the base of the portal." + "" + "The final product will be a &n4x3 portal structure&r, with the two blocks in the middle creating the portal." + ] + id: "7B0DFA55B4D8B16D" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "58DD29B736BC8B6E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 9L + id: "2C1730C4F7CB8377" + item: "mekanism:teleporter_frame" + type: "item" + } + { + id: "68FE61A81A5C1390" + item: "mekanism:teleporter" + type: "item" + } + ] + title: "Custom Portals!" + x: -11.5d + y: -2.0d + } + { + dependencies: ["162CE44400A63575"] + description: [ + "The &aEnergy Tablet&r is a portable, rechargeable battery pack that can be charged with up to &b1,000kJ&r of energy and can then be used to power other devices (not tools)." + "" + "It is also an ingredient in many recipes in &dMekanism&r." + ] + hide_dependency_lines: false + id: "1FC7E9DBF92BE6AA" + rewards: [{ + exclude_from_claim_all: true + id: "4924E483919D0775" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Portable Battery Pack" + tasks: [{ + id: "79EF9001D76FD91D" + item: "mekanism:energy_tablet" + type: "item" + }] + x: -12.5d + y: -1.0d + } + { + dependencies: ["166971866A9234C7"] + hide_dependency_lines: true + id: "3C8D9278B81BB37A" + rewards: [{ + exclude_from_claim_all: true + id: "24D1099815EADA20" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "46C5C0922839BDCA" + item: "mekanism:upgrade_speed" + type: "item" + }] + x: -16.8d + y: -0.3500000000000001d + } + { + dependencies: ["166971866A9234C7"] + hide_dependency_lines: true + id: "0ACE573560A19309" + rewards: [{ + exclude_from_claim_all: true + id: "58A09CFF12A90217" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "1B5CF4B0B6D3F6F9" + item: "mekanism:upgrade_energy" + type: "item" + }] + x: -16.8d + y: -1.05d + } + { + dependencies: ["166971866A9234C7"] + hide_dependency_lines: true + id: "763FB27929E053BE" + rewards: [{ + exclude_from_claim_all: true + id: "4C176326EDDEA8DF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "43E4874F23459DB1" + item: "mekanism:upgrade_filter" + type: "item" + }] + x: -16.8d + y: 1.05d + } + { + dependencies: ["166971866A9234C7"] + hide_dependency_lines: true + id: "001DE8028CAF0A08" + rewards: [{ + exclude_from_claim_all: true + id: "75263E2F9BE79BF4" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "126FB3CA8F2CCF11" + item: "mekanism:upgrade_muffling" + type: "item" + }] + x: -16.8d + y: 0.34999999999999987d + } + { + dependencies: ["166971866A9234C7"] + hide_dependency_lines: true + id: "09830BB2A23E94B4" + rewards: [{ + exclude_from_claim_all: true + id: "3AA61419A6F46396" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "70A4BDDF6392DC9D" + item: "mekanism:upgrade_gas" + type: "item" + }] + x: -16.8d + y: 1.7499999999999998d + } + { + dependencies: ["166971866A9234C7"] + hide_dependency_lines: true + id: "515A60B89ED5440D" + rewards: [{ + exclude_from_claim_all: true + id: "226BBA1EC34B7940" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "0872B5A950703C8A" + item: "mekanism:upgrade_stone_generator" + type: "item" + }] + x: -16.8d + y: 2.45d + } + { + dependencies: ["1FC7E9DBF92BE6AA"] + description: ["The &2Configurator&r is used to configure many of the items in &dMekanism&r, from changing pipes to \"&cPull&r or &9Push&r\" or rotating machines."] + id: "5E116409DC7D30BB" + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "10F913E43FDB52BE" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Mekanism's Wrench" + tasks: [{ + id: "2612CACBDDF9AD1A" + item: "mekanism:configurator" + type: "item" + }] + x: -12.0d + y: 0.0d + } + { + dependencies: ["18D88932916C7A98"] + description: [ + "To start breaking down &9water&r, we'll need a &nwater source&r." + "" + "The &2Kitchen Sink&r provides &ninfinite water&r, and can easily be set up to pump out &9water&r." + "" + "Of course you can always use the &oclassic&r infinite water source with a &ePump&r from &dMekanism&r." + "" + "Pump the water into your &aElectrolytic Separator&r to split the water into &3Hydrogen&r and &7Oxygen&r." + ] + icon: { + Count: 1 + id: "mekanism:creative_fluid_tank" + tag: { + mekData: { + FluidTanks: [{ + Tank: 0b + stored: { + Amount: 2147483647 + FluidName: "minecraft:water" + } + }] + } + } + } + id: "407EFAF528871014" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "0403CDBD137E49C7" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "16DAFC5C5846015A" + item: "cookingforblockheads:sink" + type: "item" + }] + title: "&9Infinite Water Source" + x: -6.0d + y: -4.0d + } + { + dependencies: ["6DB1AAAD926486BC"] + id: "30F8BA43B1BB9035" + rewards: [{ + exclude_from_claim_all: true + id: "4260E0BB21C5866A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "5FFEF5D6055A67B1" + item: "mekanism:advanced_fluid_tank" + type: "item" + }] + x: -5.95d + y: 0.7000000000000002d + } + { + dependencies: ["30F8BA43B1BB9035"] + id: "5F94483E05D2F528" + rewards: [{ + exclude_from_claim_all: true + id: "28DC6831C6D8EED0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "05059B48A8F56BC5" + item: "mekanism:elite_fluid_tank" + type: "item" + }] + x: -4.8999999999999995d + y: 0.7d + } + { + dependencies: ["5F94483E05D2F528"] + id: "712CB147B5873121" + rewards: [{ + exclude_from_claim_all: true + id: "041457B338EF467F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "33F9C615B944909A" + item: "mekanism:ultimate_fluid_tank" + type: "item" + }] + x: -3.85d + y: 0.35d + } + { + dependencies: ["58B125BD4876054C"] + description: [ + "&aChemical Tanks&r are used to store &7Gases&r." + "" + "They can be placed as a block and can interact with &dPressurized Tubes&r." + "" + "They come in the four tiers, each tier being double the capacity and output rate of its predecessor." + ] + hide_dependency_lines: true + id: "41EB0C570FC54F43" + rewards: [{ + exclude_from_claim_all: true + id: "3D749227619D11C4" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "665B9818855C0028" + item: "mekanism:basic_chemical_tank" + type: "item" + }] + x: -7.0d + y: -1.4d + } + { + dependencies: ["41EB0C570FC54F43"] + id: "1162544BA1B2B0F3" + rewards: [{ + exclude_from_claim_all: true + id: "601334AA40235228" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "78CFB8D559DA92AE" + item: "mekanism:advanced_chemical_tank" + type: "item" + }] + x: -5.95d + y: -1.75d + } + { + dependencies: ["1162544BA1B2B0F3"] + id: "4C4B1602E2AFC314" + rewards: [{ + exclude_from_claim_all: true + id: "24C0A7625C09A8F4" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "1D2AE44FA5391B71" + item: "mekanism:elite_chemical_tank" + type: "item" + }] + x: -4.8999999999999995d + y: -1.75d + } + { + dependencies: ["4C4B1602E2AFC314"] + id: "0C0D0B80B3FA26F2" + rewards: [{ + exclude_from_claim_all: true + id: "49D5D9EC3D1BAD2B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 0.7d + tasks: [{ + id: "5FD0078940E64A4C" + item: "mekanism:ultimate_chemical_tank" + type: "item" + }] + x: -3.85d + y: -1.4d + } + { + dependencies: ["7778937DF377C1B4"] + description: [ + "Generates power from the &6sun&r!" + "" + "Produces about &b17.6FE/t&r." + ] + id: "74200A48498DD7F8" + rewards: [{ + exclude_from_claim_all: true + id: "11954009CCE89DC6" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "22ACFEB806D68385" + item: "mekanismgenerators:solar_generator" + type: "item" + }] + x: -15.5d + y: -5.0d + } + { + dependencies: ["6F62B5510FA881CD"] + description: [ + "The &aHeat Generator&r has 2 modes to generate power:" + "" + "&9Passive:&r Surrounding the generator with &6lava&r source or flowing blocks creates passive power by creating heat. Place one &6lava&r source block on top, and let it flow over the sides. Make sure to connect pipes first!" + "" + "&9Active:&r Placing combustible materials such as &0coal&r or &2wood&r into the generator will burn the fuel to create power." + ] + id: "0650996C7818ADB5" + rewards: [{ + exclude_from_claim_all: true + id: "146298CE7DD88A95" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Basic Power Gen" + tasks: [{ + id: "7BA12BAB8271E170" + item: "mekanismgenerators:heat_generator" + type: "item" + }] + x: -13.5d + y: -5.0d + } + { + dependencies: ["3B43DB1A6B0A7B44"] + description: ["&9Bio-Generator&r produce electricity from &2Bio Fuel&r. It produces around &o&b140FE/t&r."] + id: "6CD1720B76F47806" + rewards: [{ + exclude_from_claim_all: true + id: "30CDEAAF76BCDF81" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "36B12984060A90FD" + item: "mekanismgenerators:bio_generator" + type: "item" + }] + x: -4.0d + y: -5.0d + } + { + dependencies: ["74200A48498DD7F8"] + description: [ + "&dAdvanced Solar Generastor&r produces &b105.6FE/t&r." + "" + "It also can be used to add extra heat to &2Thermal Evaporation Plants&r." + ] + id: "4EDD96EB60EF5814" + rewards: [{ + exclude_from_claim_all: true + id: "2B2712982DA90F49" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "4F0B3CA66BE1AEE1" + item: "mekanismgenerators:advanced_solar_generator" + type: "item" + }] + x: -16.5d + y: -5.0d + } + { + dependencies: ["0650996C7818ADB5"] + description: [ + "This is a great option for generating power." + "" + "This generates around &b40FE/t&r, and increases based on &nhow high you are&r." + "" + "The higher the &o&bY level&r, the more &cpower&r it produces!" + ] + id: "7778937DF377C1B4" + rewards: [{ + exclude_from_claim_all: true + id: "3AB9DFD44A6930D4" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Generates Power from the Wind" + tasks: [{ + id: "50624A39AD15A8A6" + item: "mekanismgenerators:wind_generator" + type: "item" + }] + x: -14.5d + y: -5.0d + } + { + description: [ + "&dMekanism&r is a tech mod that will change the way you play &aMinecraft&r." + "" + "The mod focuses on breaking down materials to their chemical makeup, and getting the best out of every material you come across. " + "" + "This mod features Hydrogen-Powered &cJetpacks&r, a &bMini-Robotic&r friend, &6Reactors&r, a &2Digital Miner&r to automate mining, and much more." + ] + icon: "alltheores:raw_osmium" + id: "58B125BD4876054C" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "2BE968D70DAC0184" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oAdvanced Alloy&r quest*" + tasks: [{ + id: "10CE7D11B912F418" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:raw_materials/osmium)" + } + } + title: "Osmium" + type: "item" + }] + title: "Welcome to&r &dMekanism:&r Phase one" + x: -15.0d + y: -6.75d + } + { + dependencies: ["58B125BD4876054C"] + id: "6F62B5510FA881CD" + rewards: [{ + exclude_from_claim_all: true + id: "7B20C7B8BA6F643F" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "The Base Crafting Ingot" + tasks: [{ + id: "52967F83338A3AC3" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:ingots/osmium)" + } + } + title: "Osmium" + type: "item" + }] + title: "Osmium" + x: -13.5d + y: -6.5d + } + { + dependencies: ["7AE502EDB73BD57A"] + description: [ + "So far, to &bDOUBLE&r our ingot output, your setup should look something like this:" + "" + "&7Raw Ore&r goes into your &aPurification Chamber&r, which is being fed &3Oxygen&r from an &6Electrolytic Separator&r." + "" + "It then outputs the product into the &9Crusher&r, which converts the ore clumps into &o&bdirty dusts&r. This &7Dirty Dust&r is fed into an &bEnrichment Chamber&r, which converts the &7Dirty Dust&r into the regular &eOre Dust&r." + "" + "The &bEnrichment Chamber&r then feeds into your &4Smelter&r." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "mekanism:block/combiner/front_active" + } + } + id: "263220DCCDB90E29" + rewards: [{ + exclude_from_claim_all: true + id: "50BF58AB79FDECF3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "46C4C1AD9FA5BEE2" + title: "Our Setup So Far" + type: "checkmark" + }] + title: "Ore Factory: &eTier 2" + x: -1.0d + y: -3.5d + } + { + dependencies: [ + "4F1C04C0F6769825" + "04E2D539E33B7B0F" + ] + description: [ + "So now, you should have &o&b5&r machines ready to go to process your &aOres&r. " + "" + "Your factory should be something like this:" + "&dChemical Injection Chamber&r => &6Purifying Chamber&r => &eCrusher&r => &2Enrichment Chamber&r => &3Smelter&r." + "" + "We can do even better then that!" + "Well buckle up, it's about to get crazy!" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "mekanism:block/crusher/front_active" + } + } + id: "1112E4E2CCEB2467" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "7213A1AE95FA7D68" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "57F40CFA03BD36EF" + title: "The Hard Part" + type: "checkmark" + }] + title: "Ore Factory: &9Tier 3" + x: -1.0d + y: -0.5d + } + { + dependencies: ["1112E4E2CCEB2467"] + description: [ + "The &9Pressurized Reaction Chamber&r (&bPRC&r) is used primarily to create &2Substrate&r (to create &bHDPE Pellets&r), &bHDPE Pellets&r (to create &dHDPE Sheets&r), and &3Ethylene&r (an efficient source of fuel used in the &cGas-Burning Generator&r). " + "" + "The &9Pressurized Reaction Chamber&r accepts a &o&bliquid&r, a &o&bgas&r, and a &o&bmaterial(s)&r; it uses these three substances to create another material(s) and some leftover gas." + "" + "Like many other &dMekanism&r machines, it has &nconfigurable sides&r; by default, it accepts &b&ogas from the left&r, accepts &b&oliquid from the back&r, and &b&ooutputs gas on the right&r." + ] + id: "587A19FC348387C5" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "4972B74F35805D51" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1C162E39F2ACA72F" + item: "mekanism:pressurized_reaction_chamber" + type: "item" + }] + x: -2.5d + y: -0.5d + } + { + dependencies: ["7AE502EDB73BD57A"] + description: [ + "&2Bio Fuel&r is a type of fuel used inside of a &dBio-Generator&r. Beyond that &2Bio Fuel&r is used in the &9Pressurized Reaction Chamber&r to create &7Ethylene&r." + "" + "The &cCrusher&r can also break down natural substances into &2Bio Fuel&r!" + ] + id: "3B43DB1A6B0A7B44" + rewards: [{ + exclude_from_claim_all: true + id: "104609B407F3BF5C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 2L + id: "05138E2E906020F3" + item: "mekanism:bio_fuel" + type: "item" + }] + title: "Bio Fuel" + x: -2.5d + y: -5.0d + } + { + dependencies: ["3B43DB1A6B0A7B44"] + description: [ + "When &2Bio Fuel&r is combined with &9Water&r and &3Hydrogen&r in a &aPressurized Reaction Chamber&r it creates &cSubstrates&r. It also creates &7Ethylene&r as a by-product." + "" + "These are needed to create &bHDPE pellets&r, which is used for end-game crafts like the &bMeka-suit&r." + ] + id: "5047792C6EF6D2AD" + rewards: [{ + exclude_from_claim_all: true + id: "3696EF4587DCA534" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 3L + id: "1F6A5B58DF94730B" + item: "mekanism:substrate" + type: "item" + }] + title: "Substrates" + x: -1.0d + y: -5.0d + } + { + dependencies: ["5047792C6EF6D2AD"] + description: ["Combining &3Oxygen&r, &7Ethylene&r, and a &eSubstrate&r in a &9Pressurized Reaction Chamber&r will create an &bHDPE Pellet&r."] + id: "76A38CCA5816CDAD" + rewards: [{ + exclude_from_claim_all: true + id: "53185650158E45B1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 3L + id: "62E8F3CC847BBD3D" + item: "mekanism:hdpe_pellet" + type: "item" + }] + title: "HDPE Pellets" + x: 0.5d + y: -5.0d + } + { + dependencies: ["76A38CCA5816CDAD"] + description: ["To get an &bHDPE Sheet&r, place &b3 HDPE Pellets&r in an &9Enrichment Chamber&r."] + id: "47106CE1937C4340" + rewards: [{ + exclude_from_claim_all: true + id: "78B3BF9AAC9C084C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6EE6F07986BAFC3B" + item: "mekanism:hdpe_sheet" + type: "item" + }] + x: 2.0d + y: -5.0d + } + { + dependencies: ["08DDE018A804BFE7"] + description: [ + "The &0Enriched Carbon&r give &n8x the amount&r of mb in a &eMetallurgic Infuser&r." + "" + "&0Enriched Carbon&r helps you to create a bunch of &7Enriched Iron&r, &3Steel Dust&r, &3Steel Block 1x&r and &6Hohlraum&r." + ] + id: "0F326EEEC2EBE4E5" + rewards: [{ + exclude_from_claim_all: true + id: "3C59B6A898EA84C9" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "4B60ACBCC3B46D1D" + item: "mekanism:enriched_carbon" + type: "item" + }] + x: -8.5d + y: -1.5d + } + { + dependencies: ["4F436770D30D8520"] + description: [ + "The &2Chemical Washer&r turns &3Slurry&r into &eClean Slurry&r using &9Water&r." + "" + "The &eClean Slurry&r then needs to be further refined by pumping it into a &dChemical Crystallizer&r." + "" + "&9Water&r is piped in through the &ntop&r of the machine." + "" + "It will be &b&o#2&r of your &b&oTier 4&r &6Ore Processing Factory&r." + ] + id: "4AFF81D3D0E78255" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "3258091557535A83" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Giving Ores a Bath" + tasks: [{ + id: "1DA159AA61B37545" + item: "mekanism:chemical_washer" + type: "item" + }] + x: -2.5d + y: 1.0d + } + { + dependencies: ["4F436770D30D8520"] + description: [ + "The &dChemical Crystallizer&r turns &eClean Slurry&r from the &9Chemical Washer&r and turns it into &aCrystals&r, which the &3Chemical Injection Chamber&r can process after." + "" + "This machine will be &o&b#3&r in your &o&bTier 4&r &6Ore Processing Factory&r." + ] + id: "3999760881C855FA" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "247705F8C871B2B6" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Turns Ore Slurry into Crystals" + tasks: [{ + id: "6F2B3A4206C129B0" + item: "mekanism:chemical_crystallizer" + type: "item" + }] + x: -2.5d + y: 2.0d + } + { + dependencies: [ + "3999760881C855FA" + "4AFF81D3D0E78255" + ] + description: [ + "A basic layout of your factory should be like this: " + "" + "&aRaw Ore&r goes into your &dChemical Dissolution Chamber&r => pumps &3A GAS&r to &9Chemical Washer&r => pumps &3A GAS&r to &6Chemical Crystallizer&r => outputs crystals to &4Chemical Injection Chamber&r => outputs shards to &1Purification Chamber&r => outputs clumps to &aCrusher&r => outputs dirty dusts to &dEnrichment Chamber&r => outputs clean dust to &cSmelter&r." + "" + "{image:kubejs:textures/item/mekanism_flowchart.png width:300 height:110 align:1 fit:true}" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "mekanism:block/dimensional_stabilizer/top_active" + } + } + id: "3C49F2EEDCCAF1DF" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "11B3B83A0C3DB3B9" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "3B3B58C438FD4397" + title: "Tier 4 Ore Processing Factory Summary" + type: "checkmark" + }] + title: "Ore Factory: &dTier 4" + x: -4.0d + y: 1.5d + } + { + dependencies: ["162CE44400A63575"] + description: [ + "The &6Chargepad&r is a wireless electric charging station." + "" + "Any rechargeable items from any mod you have in your &einventory&r will be charged while standing on it." + ] + id: "4204702AA6FBF40B" + rewards: [{ + exclude_from_claim_all: true + id: "00EFF05D694D80D2" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6190BE8B67130AB5" + item: "mekanism:chargepad" + type: "item" + }] + x: -13.5d + y: -1.0d + } + { + dependencies: [ + "4236B9F071BE18F3" + "2E274BEEF2B0B8C7" + ] + description: ["Now that we have completed the &d&oMekanism:&r &oPhase one&r, it's time to move towards making &dAntimatter Pellets&r and trying to build some &4Reactors&r."] + icon: "mekanismgenerators:fusion_reactor_controller" + id: "7E4A95B6443F23BC" + rewards: [{ + exclude_from_claim_all: true + id: "092E7549600CF055" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + subtitle: "The Path to Reactors" + tasks: [{ + id: "60BF6E0420C91050" + type: "checkmark" + }] + title: "&dMekanism:&r Phase two" + x: 2.25d + y: 1.5d + } + { + dependencies: ["162CE44400A63575"] + id: "6E95E958201D50BE" + rewards: [{ + exclude_from_claim_all: true + id: "260E5633B6ABD290" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "39FC2ACB1E15C42E" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "mekanism:personal_storage" + } + } + title: "Personal Storage" + type: "item" + }] + x: -14.5d + y: -1.0d + } + { + dependencies: ["08DDE018A804BFE7"] + description: [ + "The &cEnriched Redstone&r give &n8x the amount&r of mb in a &eMetallurgic Infuser&r." + "" + "&cEnriched Redstone&r helps you to create a bunch of &4Infused Alloy&r, &bRose Quarz&r and &aBasic Control Circuits&r." + ] + id: "2EE4A691FB043B1D" + rewards: [{ + exclude_from_claim_all: true + id: "6A502B5944C4CFD6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "7B051100771D6FC3" + item: "mekanism:enriched_redstone" + type: "item" + }] + x: -8.5d + y: -4.5d + } + { + dependencies: ["08DDE018A804BFE7"] + description: [ + "The &bEnriched Diamond&r give &n8x the amount&r of mb in a &eMetallurgic Infuser&r." + "" + "&bEnriched Diamond&r helps you to create a bunch of &9Reinforced Alloy&r and &dRefined Obsidian Dust&r." + ] + id: "745904D1CC1BC8A5" + rewards: [{ + exclude_from_claim_all: true + id: "4457CCA883407A19" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "195E2A79C5958D6A" + item: "mekanism:enriched_diamond" + type: "item" + }] + x: -8.0d + y: -4.0d + } + { + dependencies: ["08DDE018A804BFE7"] + description: [ + "The &dEnriched Obsidian&r give &n8x the amount&r of mb in a &eMetallurgic Infuser&r." + "" + "&dEnriched Obsidian&r helps you to create a bunch of &5Atomic Alloy&r." + ] + id: "2562A7B1BA0A8190" + rewards: [{ + exclude_from_claim_all: true + id: "3055D99F4B856887" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "3AEAE09273596536" + item: "mekanism:enriched_refined_obsidian" + type: "item" + }] + x: -9.0d + y: -2.0d + } + { + dependencies: ["162CE44400A63575"] + id: "685159786B4BCA0A" + rewards: [{ + exclude_from_claim_all: true + id: "2D2461A2B657B845" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "72EED8EA9FD836D8" + item: "mekanism:steel_casing" + type: "item" + }] + x: -11.0d + y: -3.0d + } + { + dependencies: ["08DDE018A804BFE7"] + description: [ + "The &6Enriched Gold&r give &n8x the amount&r of mb in a &eMetallurgic Infuser&r." + "" + "&6Enriched Gold&r helps you to create a bunch of &0Netherite Dust&r and &eGilded Blackstone&r." + ] + id: "5E87DF3AC9AEA8C5" + rewards: [{ + exclude_from_claim_all: true + id: "726768DA37518AFD" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "43FDFD89FE4F16C6" + item: "mekanism:enriched_gold" + type: "item" + }] + x: -8.0d + y: -2.0d + } + { + dependencies: ["08DDE018A804BFE7"] + description: [ + "The &3Enriched Tin&r give &n8x the amount&r of mb in a &eMetallurgic Infuser&r." + "" + "&3Enriched Tin&r helps you to create a bunch of &6Bronze Dust&r and &6Bronze&r." + ] + id: "0E5471047F7C07F3" + rewards: [{ + exclude_from_claim_all: true + id: "77BC368D472F4F90" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "08A74FC11F45F771" + item: "mekanism:enriched_tin" + type: "item" + }] + x: -9.0d + y: -4.0d + } + { + dependencies: ["41EB0C570FC54F43"] + description: [ + "The &6Jetpack&r is an item that allows the player to fly, equippable in the chestplate slot." + "" + "It uses &3Hydrogen&r gas as a fuel, of which it can store up to &o&b24,000mB&r." + ] + hide_dependency_lines: true + id: "006A26D253D4D1C2" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "3DC6196391133312" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "210CB8067DE0602D" + item: "mekanism:jetpack" + type: "item" + }] + x: -5.5d + y: -1.0d + } + { + dependencies: ["5B681BC43371CC5C"] + description: [ + "The &2Restrictive Transporter&r is the cousin of the &6Logistical Transporter&r." + "" + "Think of it as the dense mode in &3Thermal Expansion&r &bI&otem Ducts&r or &4Red Power 2&r &o&bRestriction Pipes&r." + "" + "This makes the Logistical configuration to a &o1000&r mere blocks, meaning it has the lowest priority in the logistical system, useful for making an overflow system as well as an item voiding system, as this is the last option where items in the logistical system will go." + "" + "This is the &oOpposite&r of the &9Diversion Transporter&r." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "6D33D87F46F08FEE" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "1BE2407A18B052B7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + id: "5935B47DEF82FEEE" + item: "mekanism:restrictive_transporter" + type: "item" + }] + x: -7.832142857142858d + y: 2.4785714285714304d + } + { + dependencies: ["5B681BC43371CC5C"] + description: [ + "Part of &dMekanism&r logistics, the &6Diversion Transporter&r is a special transporter that has configurable &credstone&r sensitivity. Since &6Logistical Transporters&r do not have a redstone sensitivity option, this is needed when you want to add &credstone&r sensitivity to your logistics system." + "" + "You can configure each side of Diversion Transporter separately to the following options by &eShift+Right Clicking&r with a &2Configurator&r: &b&oAlways active&r, &b&oActive with signal&r, and &b&oActive without signal&r." + "" + "&cRedstone&r sensitivity of all transmitters other than the &6Logistical Transporter&r are configurable by themselves, but cannot be done separately for each side." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "24360EEB124A8745" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "1A78FCC40E4B5BDA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 0.7d + tasks: [{ + count: 2L + id: "4361C596880E5D25" + item: "mekanism:diversion_transporter" + type: "item" + }] + title: "Diversion Transporter" + x: -9.232142857142858d + y: 2.4785714285714304d + } + { + dependencies: ["41EB0C570FC54F43"] + description: ["The &4Flamethrower&r is a ranged weapon which uses &3Hydrogen&r gas as its fuel."] + hide_dependency_lines: true + id: "7F38E9C6DA5B99EA" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "59CC115753EED101" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "2ADDE24DC501BFDE" + item: "mekanism:flamethrower" + type: "item" + }] + x: -6.5d + y: -0.5d + } + { + dependencies: ["4204702AA6FBF40B"] + description: [ + "&9Free Runners&r are an item that allows players to ascend 1-block inclines automatically (like the Horse), as well as preventing &cfall damage&r as long as they are charged. A fall will reduce the item's charge, depending on how far the fall was." + "" + "&9Free Runners&r can be charged inside of various power-related generators or storage devices, like the &aAdvanced Solar Generator&r or the &2Energy Cube&r." + ] + hide_dependency_lines: true + id: "095E1C928584FAAC" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "13B344824FBB8A69" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "5D1446769C4F7480" + item: "mekanism:free_runners" + type: "item" + }] + x: -4.5d + y: -0.5d + } + { + dependencies: ["41EB0C570FC54F43"] + description: [ + "The &dScuba Tank&r is a piece of equipment worn on the backpack (the chest armor slot) that provides underwater respiration when a Scuba Mask is worn (on the helmet armor slot)." + "" + "Like the &cJetpack&r, the &dScuba Tank&r must be filled with &3Oxygen&r gas in order to function." + "" + "The &eScuba Mask&r is an utility head armor piece, used in conjunction with the &dScuba Tank&r to breathe underwater." + ] + hide_dependency_lines: true + id: "7653935BDE025D18" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "443DFB399F7D12FA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [ + { + id: "3DDA76DECA25A858" + item: "mekanism:scuba_mask" + type: "item" + } + { + id: "133C8AA7EE020FC0" + item: "mekanism:scuba_tank" + type: "item" + } + ] + title: "Scuba Gear" + x: -5.5d + y: 0.0d + } + { + dependencies: ["1FC7E9DBF92BE6AA"] + description: [ + "The &dAtomic Disassembler&r is &o&bMekanism's&r an &o&ball-in-one&r tool, essentially the ultimate, electronic version of the &o&bpaxel&r." + "" + "The &dAtomic Disassembler&r has &o&b4&r different settings which may be &o&bcycled through&r by &eShift+Scroll-button&r or using the &nItem mode switch keybind&r:" + "" + "&2Normal&r (&o&b20²&r) - The default setting. Works as if a &o&bdiamond&r version of every tool with &o&dEfficiency II&r." + "&3Slow&r (8²) - Works as if a &o&bdiamond&r version of every tool." + "&6Fast&r (128²) - Works as if a &o&bdiamond&r version of every tool with &o&dEfficiency V&r." + "&cOff&r (0²) - &o&bDoes not affect&r the world around it, &o&bexcept&r for mobs. Good setting to leave it on if you &o&bintend to use it as your main weapon&r... and don't want to dig yourself into a death trap." + ] + id: "57E30971FCEF6709" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "56AB99C5DB176616" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1AD35B06822B93AA" + item: "mekanism:atomic_disassembler" + type: "item" + }] + x: -11.0d + y: -1.0d + } + ] + title: "&3&oMekanism:&r &o&fPhase one" +} diff --git a/minecraft/config/ftbquests/quests/chapters/mekanism_reactors.snbt b/minecraft/config/ftbquests/quests/chapters/mekanism_reactors.snbt new file mode 100644 index 0000000..c625206 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/mekanism_reactors.snbt @@ -0,0 +1,1892 @@ +{ + autofocus_id: "22C5D2CD84E6E9EF" + default_hide_dependency_lines: false + default_min_width: 200 + default_quest_shape: "" + filename: "mekanism_reactors" + group: "69B9F7247002FE35" + icon: "mekanism:modification_station" + id: "0A093D8C4429B627" + images: [ + { + height: 1.0d + image: "securitycraft:block/ani_laser" + rotation: 0.0d + width: 0.021739130434782608d + x: 12.0d + y: -4.5d + } + { + height: 1.0d + image: "securitycraft:block/ani_laser" + rotation: 0.0d + width: 0.021739130434782608d + x: 13.0d + y: -4.0d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -0.6607142857142847d + y: -3.5892857142857153d + } + ] + order_index: 9 + quest_links: [ ] + quests: [ + { + dependencies: ["24174700F7FB771C"] + description: [ + "To start our journey into the world of Mekanism Reactors, we'll start by making a &aFission Reactor&r. These are multiblock structures that generate massive amounts of heat by burning &3Fissile Fuel&r. This reactor does not produce power on its own, but the heat generated can be used to heat &bCoolant&r to be used to generate power in an &aIndustrial Turbine&r." + "" + "The &aFission Reactor&r can be very dangerous, as a meltdown can cause an &cexplosion&r as well as &2Radiation&r spreading over a &o&b5 chunk radius&r, which lasts for several &nin-game weeks&r. " + "" + "But we're going to be prepared for that. Let's make a &6Hazmat Suit&r, just in case." + ] + id: "36B1995B495AA674" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "49FE4FD579934237" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "14BF9ADCB8F43ADC" + item: "mekanism:hazmat_mask" + type: "item" + } + { + id: "0B06DCC5BA15895E" + item: "mekanism:hazmat_gown" + type: "item" + } + { + id: "1F43C3AE8239B716" + item: "mekanism:hazmat_pants" + type: "item" + } + { + id: "68B050A8CDCDCD10" + item: "mekanism:hazmat_boots" + type: "item" + } + ] + title: "Hazmat Suit" + x: 0.0d + y: -1.0d + } + { + dependencies: ["36B1995B495AA674"] + description: [ + "Just like most &dMekanism&r multiblocks, reactors can be a custom size depending on your needs. They must be cuboid, with the minimum outside size being &b&o3 wide&r, &b&o4 tall&r, and &o&b3 blocks&r deep. The maximum size is &b&o18x18x18&r." + "" + "The edges of the outer shell &bmust&r be made out of &aFission Reactor Casings&r, while the faces can be either casings or &bReactor Glass&r, &7Reactor Ports&r, or &3Reactor Logic Adapters&r. We'll get to those later." + "" + "For now, let's build a basic &b&o5x5x5&r &6Fission Reactor&r!" + ] + hide_until_deps_visible: false + id: "1482F2D45E8F761D" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "175EE43C5893E47E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "square" + tasks: [ + { + count: 53L + id: "19447D5D621A8D89" + item: "mekanismgenerators:fission_reactor_casing" + type: "item" + } + { + count: 41L + id: "0765AB709CC3C6E2" + item: "mekanismgenerators:reactor_glass" + type: "item" + } + ] + title: "&3The Fission Reactor" + x: 0.0d + y: 1.0d + } + { + dependencies: ["1482F2D45E8F761D"] + description: [ + "For us to take anything in or out of the &6Fission Reactor&r, we'll need &aFission Reactor Ports&r. These can be configured to &9input&r or &coutput&r by using the &dConfigurator&r. " + "" + "Every &6Fission Reactor&r needs a &nminimum&r of &o&b4 Ports&r:" + "" + "&o&b1 Coolant&r &9Input&r" + "&o&b1 Coolant&r &cOutput&r" + "&o&b1 Fissile Fuel&r &9Input&r" + "&o&b1 Waste&r &cOutput&r" + "" + "For this starter build, let's put a port on each side. Make sure to configure them to match the list of &9inputs&r and &coutputs&r!" + ] + id: "0696B725E840B996" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "41B04ECC66FF4663" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 4L + id: "057CDA5BC0C5F774" + item: "mekanismgenerators:fission_reactor_port" + type: "item" + }] + title: "Interacting with the Fission Reactor" + x: 1.5d + y: 2.0d + } + { + dependencies: ["1482F2D45E8F761D"] + description: [ + "Afraid of blowing up your &6Fission Reactor&r and causing a massive &4Radiation&r leak?" + "" + "So how can we prevent such a catastrophic disaster? By creating a redstone &aCircuit Breaker&r using &dFission Reactor Logic Adapters&r. Now these aren't &b&o100%&r guaranteed to stop an explosion, but they are absolutely nice to have." + "" + "Essentially, these Adapters allow us to control the &6Reactor&r using &cRedstone&r. With just one, you can use a lever to turn &9on&r and &coff&r the &6Reactor&r. However, we're going to use them for damage control." + "" + "You can also set these to give off a &cRedstone Signal&r based on a certain condition within the &6Reactor&r, like &cDamage Critical&r or &8Insufficient Fuel&r. This is useful for setting up a circuit breaker to shut &coff&r the &6Reactor&r if those ever happen." + ] + id: "5FDB48511EC1C580" + min_width: 300 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "68D084496A4D0BDE" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "16B10EA105CCC1D3" + item: "mekanismgenerators:fission_reactor_logic_adapter" + type: "item" + }] + title: "&eSafety First!" + x: 0.0d + y: 3.0d + } + { + dependencies: ["1482F2D45E8F761D"] + description: [ + "The inside of the reactor is built up of pillars using several &9Fission Fuel Assembly&r blocks, with a single &eControl Rod Assembly&r placed at the top of each pillar. These can be anywhere from &b&o1&r to &b&o15&r blocks in height, depending on the size of the reactor." + "" + "For this build, we'll put &b&o2&r of the &9Fission Fuel Assemblies&r in the &ncenter&r of our multiblock, and then put the &eControl Rod Assembly&r right on top of it." + ] + id: "3F5010269469EBE0" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "39AAB387F4776D2A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 2L + id: "032045BB026F44B3" + item: "mekanismgenerators:fission_fuel_assembly" + type: "item" + } + { + id: "0875D821930A348A" + item: "mekanismgenerators:control_rod_assembly" + type: "item" + } + ] + title: "Fuel Control" + x: 1.5d + y: 0.0d + } + { + dependencies: ["5FDB48511EC1C580"] + description: [ + "Using some vanilla mechanics and &o&b2&r &aFission Reactor Logic Adapters&r, we can create a simple circuit breaker to trip and turn &coff&r the reactor &o&ein case things get a little crazy&r." + "" + "To do this, we'll need a single piece of Redstone, a Piston, a block of either sand or gravel, and an Observer." + "" + "On one of the faces, we'll want to put a &aLogic Adapter&r down, then skip a block above it and then place another Adapter. Set the top Adapter to &9\"Activation\"&r, and the bottom Adapter to &c\"Damage Critical\"&r." + "" + "Next, in front and underneath the bottom Adapter, place any building block and stick a piece of Redstone on it leading from the Adapter. We'll then place a Piston facing up in front of that Redstone, then place our piece of sand or gravel on that Piston." + "" + "For the final part of our breaker, place the Observer with the face pointing outwards towards the &7Piston&r setup. This is &nimportant&r!" + "" + "{image:kubejs:textures/item/example_circuit.png width:100 height:150 align:1}" + "" + "Whenever the Reactor has critical damage, it will then activate the bottom Adapter, causing the redstone to get a signal, which then activates the Piston and pushes up the Gravel/Sand. This will activate the Observer, which then turns off the Reactor." + ] + icon: "minecraft:observer" + id: "7B0764DDE94E73D0" + min_width: 500 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "6D3D94B7492D3BF8" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [ + { + count: 2L + id: "25FB07BDEC8EE4EF" + item: "mekanismgenerators:fission_reactor_logic_adapter" + type: "item" + } + { + id: "6F57410F914C4D07" + item: "minecraft:redstone" + type: "item" + } + { + id: "5BC88AE46F95774D" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "minecraft:gravel" + } + { + Count: 1b + id: "minecraft:sand" + } + ] + } + } + title: "Gravel or Sand" + type: "item" + } + { + id: "584B8A392FBCD199" + item: "minecraft:piston" + type: "item" + } + { + id: "139EDEDEA3DAD312" + item: "minecraft:observer" + type: "item" + } + ] + title: "The Circuit Breaker" + x: 0.0d + y: 5.0d + } + { + dependencies: ["1DE8B0C9A7195720"] + description: [ + "When burning fuel, the &3Fission Reactor&r creates a massive amount of heat. To prevent the &6Reactor&r from converting into &4TNT&r, we need to make sure it is properly cooled." + "" + "The easiest way to do this is by giving the &6Reactor&r &9Water&r from a &aSink&r. The &aSink&r is an infinite water source, which is &b&oreally nice for a situation like this&r." + "" + "Pump out the &9Water&r into one of the &7Reactor's Ports&r that is set to &9input&r to fill up the &6Reactor&r with &9Water&r. This will be heated while the &6Reactor&r is running and get converted to &bSteam&r, which you can use to create power with in an &2Industrial Turbine&r." + "" + "&eSodium&r can also be used as a much more efficient coolant. This allows for higher burn rates and lower core temperatures." + ] + id: "2B76B2F18C2C47D2" + min_width: 300 + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "2616404C9DA31BAC" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "7E8281C007094843" + item: "cookingforblockheads:sink" + type: "item" + }] + title: "Cooling a Fission Reactor" + x: 3.0d + y: 3.0d + } + { + dependencies: [ + "0696B725E840B996" + "3F5010269469EBE0" + ] + description: [ + "Once you've finish placing in all of the required blocks to build the &6Reactor&r, it should give off &cred&r particles to show that it is &ncomplete&r." + "" + "&eRight clicking&r anywhere on the Reactor will open up the &aInterface&r. This will have all of the information you need to run the &6Reactor&r properly, as well as two buttons to turn &9on&r and &coff&r the &6Reactor&r." + "" + "On the left, you have &o&b2 tanks&r: One for &bCoolant&r and one for &3Fissile Fuel&r. On the right, you have one for &8Nuclear Waste&r, and one for &bHeated Coolant&r, which will most likely be &bSteam&r." + "" + "The &cTemperature&r bar will show you how hot the Reactor is. After a certain temp, the Reactor will start taking &4Damage&r, which will eventually cause the Reactor to explode." + "" + "To adjust the &cBurn Rate&r of the &3Fissile Fuel&r and see more statistics, click on the (I) tab on the left side. Here, you can adjust the Rate Limit, which controls how much fuel the Reactor burns per tick." + "" + "{image:kubejs:textures/item/reactor_interface.png width:280 height:120 align:1}" + ] + icon: "mekanismgenerators:fusion_reactor_controller" + id: "1DE8B0C9A7195720" + min_width: 500 + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "07D0DB0FAFB94677" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "0FA01A6872FD3B10" + type: "checkmark" + }] + title: "&3Completed Fission Reactor" + x: 3.0d + y: 1.0d + } + { + dependencies: ["3B81800EE6E77EF2"] + description: [ + "Every Reactor uses &aUranium&r somewhere for fuel, right?" + "" + "For starters, let's gather some &aUranium Ingots&r. We'll need to process these in an &9Enrichment Chamber&r to turn it into &eYellow Cake Uranium&r." + ] + icon: "mekanism:yellow_cake_uranium" + id: "7E17AB5A4492929E" + rewards: [{ + exclude_from_claim_all: true + id: "683C146BCD53CABC" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Of Course It Uses Uranium" + tasks: [{ + count: 2L + id: "1C72C0C59D65B1D0" + item: "mekanism:yellow_cake_uranium" + type: "item" + }] + title: "&aUranium" + x: 6.0d + y: 2.0d + } + { + dependencies: ["7E17AB5A4492929E"] + description: ["Once we have our hands on &eYellow Cake Uranium&r, we can send it through a &aChemical Oxidizer&r to create the gas, &2Uranium Oxide&r. "] + id: "3AF4E5D4839CEF8B" + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "27E83E3ABE29562B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "772EA844FE7C1B74" + item: "mekanism:chemical_oxidizer" + type: "item" + }] + title: "&eUranium Oxide" + x: 7.5d + y: 2.0d + } + { + dependencies: ["7E4A95B6443F23BC"] + description: [ + "As a recap, we've set up an advanced Ore Processing facility using several gases, machinery, and more." + "" + "In this chapter, we'll be using more of those to create powerful multiblock &aReactors&r, as well as advanced ways to create and store power." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/meka.png" + } + } + id: "24174700F7FB771C" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "1A314BAD123DBB3F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oMekanism: Phase one&r quest*" + tasks: [{ + id: "3153288DCE1C4FEF" + type: "checkmark" + }] + title: "Welcome to&r &dMekanism:&r Phase two" + x: 0.0d + y: -3.0d + } + { + dependencies: ["1DE8B0C9A7195720"] + description: [ + "The &6Fission Reactor&r needs &3Fissile Fuel&r to run. If you look up &3Fissile Fuel&r right now in &bJEI&r, I bet you'll get overwhelmed with everything you need to make it. It's okay, you've got this. Let's take it one step at a time." + "" + "It all boils down to creating &eUranium Hexafluoride&r. To do this, let's focus on making these two gases: &bHydrofluoric Acid&r, and &eUranium Oxide&r." + ] + icon: "mekanism:reprocessed_fissile_fragment" + id: "3B81800EE6E77EF2" + rewards: [{ + exclude_from_claim_all: true + id: "047A520C791123E4" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "382818E289EC83A6" + title: "&3Fissile Fuel Production&r" + type: "checkmark" + }] + x: 4.5d + y: 1.0d + } + { + dependencies: ["3B81800EE6E77EF2"] + description: [ + "You should have already made &2Sulfuric Acid&r for your &b&oTier 4&r &6Ore Processing Factory&r, but here is a reminder on how to get it." + "" + "Start by getting &eSulfur Dust&r either by crushing Sulfur from &9Thermal&r, or by mixing &bHydrogen Chloride&r with &3Gunpowder&r in a &dChemical Dissolution Chamber&r." + "" + "Take the &eSulfur Dust&r and run it through a &9Chemical Oxidizer&r to get &eSulfur Dioxide&r. Combine that with &bOxygen&r in a &cChemical Infuser&r to get &eSulfur Trioxide&r." + "" + "Next, we'll combine &bWater Vapor&r with the &6Sulfur Trioxide&r to make &2Sulfuric Acid&r." + ] + icon: "thermal:sulfur_dust" + id: "31EEE2875595F315" + min_width: 300 + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "5C9AF7F57C844EA6" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "A Quick Recap" + tasks: [{ + id: "4A814B13C8A44960" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:dusts/sulfur)" + } + } + title: "Sulfur Dust" + type: "item" + }] + title: "&2Sulfuric Acid" + x: 6.0d + y: 0.0d + } + { + dependencies: ["31EEE2875595F315"] + description: ["Let's take our &2Sulfuric Acid&r and combine it with &bFluorite&r in a &9Chemical Dissolution Chamber&r to make &bHydrofluoric Acid&r."] + id: "187A3F5B41D1C923" + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "197C7B6AB0A89700" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "4F5A28143EFF4944" + item: "mekanism:chemical_dissolution_chamber" + type: "item" + }] + title: "&bHydrofluoric Acid" + x: 7.5d + y: 0.0d + } + { + dependencies: [ + "187A3F5B41D1C923" + "3AF4E5D4839CEF8B" + ] + description: ["Using another &9Chemical Infuser&r, we want to combine our &bHydrofluoric Acid&r with &eUranium Oxide&r to make &2Uranium Hexafluoride&r."] + id: "3663E93E169EF8E3" + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "1A57D31492A204CC" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "73C5F4AC41EE5123" + item: "mekanism:chemical_infuser" + type: "item" + }] + title: "&2Uranium Hexafluoride" + x: 9.0d + y: 1.0d + } + { + dependencies: ["3663E93E169EF8E3"] + description: [ + "Once we have an &9Isotopic Centrifuge&r, we can run our &2Uranium Hexafluoride&r in and create &3Fissile Fuel&r!" + "" + "That wasn't really that bad, right?" + ] + icon: "mekanism:isotopic_centrifuge" + id: "16A6C47E35F3B9D0" + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "1708BB317DA80520" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "3F2371FD486D4F0E" + item: "mekanism:isotopic_centrifuge" + type: "item" + }] + title: "&3Fissile Fuel&r" + x: 11.0d + y: 1.0d + } + { + dependencies: ["3FFF9018DA2A2763"] + description: [ + "Let's go through the checklist &b&oone more time&r to ensure we have everything ready to go before we boot it up:" + "" + "1. &6Hazmat Suit&r On (Safety First!)" + "2. &9Water/coolant&r pumping into an input Port." + "3. &3Fissile Fuel&r pumping into an input Port." + "4. A Port set to output the Heated Coolant, either to a trashcan or an &2Industrial Turbine&r." + "5. A Port set to output &0Nuclear Waste&r leading to &eRadioactive Waste Barrels&r or machines to process it, or both!" + "" + "If you're ready to go, hit that &eActivate&r button!" + "" + "You can also adjust the &3Burn Rate&r to produce more &0Nuclear Waste&r, but start slow." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/radiation.png" + } + } + id: "3591EAA8E397F992" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "5473DDC4416F9342" + table_id: 5236874501558129216L + type: "random" + }] + shape: "square" + tasks: [{ + id: "27709080B4B77B09" + title: "Ready To Go!" + type: "checkmark" + }] + title: "Booting Up The Reactor" + x: 13.5d + y: 2.5d + } + { + dependencies: ["16A6C47E35F3B9D0"] + description: [ + "Once we start burning up &3Fissile Fuel&r in the &6Reactor&r, we'll get heated &bCoolant&r and &8Nuclear Waste&r." + "" + "This is where the &4Radiation&r kicks in. As long as it stays &b&osafely in some container or machine&r, you won't have any spills... right?" + "" + "The best way to store any &4Radioactive&r substance is using a &2Radioactive Waste Barrel&r. These will safely store the waste, while slowly decaying the gas without causing a &4Radiation&r spill. You don't want your &8Nuclear Waste&r sitting in your &6Reactor&r as it causes it to produce more heat, so set a port to output &8Waste&r and ship it to a barrel!" + "" + "&cImportant Note&r: Breaking &nany&r machine, barrel, pipe, or &nanything&r that has a &4Radioactive&r gas inside of it &nwill cause a Radiation leak&r. That includes the products of &8Nuclear Waste&r, like &5Polonium&r or &ePlutonium&r." + ] + id: "3FFF9018DA2A2763" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "7966C3705F1E9B0A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 3L + id: "45EC7D8BA0CCFB07" + item: "mekanism:radioactive_waste_barrel" + type: "item" + }] + title: "&8Nuclear Waste" + x: 13.5d + y: -2.0d + } + { + dependencies: ["3591EAA8E397F992"] + description: [ + "&8Nuclear Waste&r can be sent into an &dIsotopic Centrifuge&r to create &9Plutonium&r." + "" + "Sending the &9Plutonium&r into a &2Pressurized Reaction Chamber&r with some &1Water&r and &7Fluorite Dust&r will give you &9Plutonium Pellets&r." + "" + "This will also create a byproduct of &7Spent Nuclear Waste&r, which needs to be pumped into a &6Waste Barrel&r for storage." + ] + id: "2E9FC7DC2AC6FD8E" + rewards: [{ + exclude_from_claim_all: true + id: "151461285D4DBD33" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6B40312EE7C8875D" + item: "mekanism:pellet_plutonium" + type: "item" + }] + x: 13.5d + y: 4.5d + } + { + dependencies: ["1E1EF430810D08BF"] + description: [ + "Pumping &0Nuclear Waste&r into a &9Solar Neutron Activator&r will give you &dPolonium&r. " + "" + "Run the &dPolonium&r through a &2Pressurized Reaction Chamber&r with some &bFluorite Dust&r and you'll get &9Polonium Pellets&r." + "" + "This will also create a byproduct of &7Spent Nuclear Waste&r, which needs to be pumped into a &6Waste Barrel&r for storage." + ] + id: "1FAAF8216CDC3AC6" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "0C825CD1E1D01F05" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "38A344B697C93B3B" + item: "mekanism:pellet_polonium" + type: "item" + }] + x: 9.0d + y: 2.5d + } + { + dependencies: [ + "2E9FC7DC2AC6FD8E" + "1FAAF8216CDC3AC6" + ] + description: [ + "The &aSupercritical Phase Shifter&r (SPS) is another multiblock structure used to infuse &3Polonium&r with large amounts of power to create &dAntimatter&r gas, which can be crystallized into pellets." + "" + "To build the &aSPS&r, you'll need to make a total of &o&b72&r &9SPS Casings&r (&o&b60&r for the build, &o&b12&r to make the ports), &o&b3&r &eSPS Ports&r, &o&b122&r &3Reactor Glass&r, and one other item we'll talk about in the next quest." + ] + id: "068728DE3B9B13C3" + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "148E138265591861" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [ + { + count: 60L + id: "63C9D54A0F55BA9B" + item: "mekanism:sps_casing" + type: "item" + } + { + count: 122L + id: "6236D6215419A2EF" + item: "mekanismgenerators:reactor_glass" + type: "item" + } + { + count: 3L + id: "769C396EE20CD89D" + item: "mekanism:sps_port" + type: "item" + } + ] + title: "&dSupercritical Phase Shifter" + x: 11.0d + y: 4.5d + } + { + dependencies: ["1FAAF8216CDC3AC6"] + description: [ + "You've probably heard people talk about how the &6Fusion Reactor&r is the best power source in the pack. &bThat's correct&r!" + "" + "Once activated, the &6Reactor&r can push out up to &o&b200MRF/t&r with the right setup. It can also be cooled with &9Water&r to produce &7Steam&r, which can go into an &dIndustrial Turbine&r to make even more power." + "" + "To build the &6Fusion Reactor&r, we need to follow a simple pattern. Each face will look like this:" + "" + "{image:kubejs:textures/item/fusion_pattern.png width:400 height:100 align:1}" + "" + "For the top, we want replace the middle block with the &aFusion Reactor Controller&r." + "" + "For the ports, you can replace any of the &bReactor Glass&r on the sides. For this setup, we'll need two ports to input &cDeuterium&r and &eTritium&r, then a port to output power. " + "" + "{image:kubejs:textures/item/completed_fusion_reactor.png width:110 height:100 align:1}" + ] + id: "0152C49AB74B9D32" + min_width: 500 + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "408F522D972D12F5" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + subtitle: "The best power source you can get" + tasks: [ + { + id: "4005EDF7A97FD97D" + item: "mekanismgenerators:fusion_reactor_controller" + type: "item" + } + { + count: 36L + id: "6E680D259F45AF80" + item: "mekanismgenerators:fusion_reactor_frame" + type: "item" + } + { + count: 3L + id: "2369D4585A3BDCCC" + item: "mekanismgenerators:fusion_reactor_port" + type: "item" + } + { + count: 25L + id: "554C67BA24832AB4" + item: "mekanismgenerators:reactor_glass" + type: "item" + } + ] + title: "&6The Fusion Reactor" + x: 9.0d + y: 4.5d + } + { + dependencies: ["068728DE3B9B13C3"] + description: [ + "The &9Supercharged Coil&r is placed on an &3SPS Port&r in the center of two faces, like the image below. When given power, these will supercharge &dPolonium&r into &5Antimatter&r. Only &o&b1&r is required, but you can use &o&b2&r if you want." + "" + "To produce &o&b1mb&r of &5Antimatter&r, you need &o&b400MRF&r of power. If you haven't started making a &6Fusion Reactor&r, now's a good time to make it!" + "" + "{image:kubejs:textures/item/sps_coils.png width:200 height:125 align:1}" + ] + id: "2331FCDD2F2B709A" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "75FAB660E4A59B4E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "48A70F1D73DE5E37" + item: "mekanism:supercharged_coil" + type: "item" + }] + title: "The Supercharged Coils" + x: 11.0d + y: 6.0d + } + { + dependencies: ["2331FCDD2F2B709A"] + description: [ + "With all of the gathered blocks, it's time to build this thing. Below is a text guide, or you can watch the Ponder!" + "" + "The SPS will be 7x7 when built, but it isn't a cube. It follows a simple pattern, which you can follow the images below as a build guide. The pattern looks like this: " + "" + "{image:kubejs:textures/item/basic_sps_shape.png width:100 height:95 align:1}" + "" + "Each side, including the bottom and top, will follow this pattern. The Supercharged Coils should be placed across from each other in the center of their respective sides, and the remaining two ports will be used to pump in Polonium, and pump out Antimatter Gas." + "" + "Here is the completed structure below: " + "" + "{image:kubejs:textures/item/sps_complete.png width:110 height:100 align:1}" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/sps.png" + } + } + id: "2B3F2F470E06BC40" + min_width: 350 + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "223FF76E73126016" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "1C782A942C445CEF" + type: "checkmark" + }] + title: "&dCompleted SPS" + x: 13.5d + y: 6.0d + } + { + dependencies: ["2B3F2F470E06BC40"] + description: [ + "After zapping away trillions of power in the &dSPS&r, we can finally create &5Antimatter Pellets&r." + "" + "Run the &3Antimatter Gas&r you get from the &dSPS&r into a &2Chemical Crystallizer&r and you'll get &o&b1&r &5Antimatter Pellet&r for every &o&b1,000mb&r you make." + ] + id: "00EFC7B327E79076" + rewards: [{ + exclude_from_claim_all: true + id: "5B9CB1B464834E00" + table_id: 5236874501558129216L + type: "random" + }] + shape: "octagon" + size: 1.5d + tasks: [{ + id: "3B83170BC4E75158" + item: "mekanism:pellet_antimatter" + type: "item" + }] + x: 16.5d + y: 6.0d + } + { + dependencies: ["79757F66DF263FA0"] + description: [ + "The goal is to aim each &9Laser&r into a &2Laser Amplifier&r. Using one is pretty slow, so we're going to make a few." + "" + "Sticking the &9Lasers&r directly on a power source like an &aEnergy Cube&r works, or you can have them on pipes or cables. You want to give it a block of empty space between the &9Lasers&r and the &2Laser Amplifier&r." + "" + "The &2Laser Amplifier&r has a red dot on one of the faces. This is what you want to point towards the &3Laser Focus Matrix&r." + "" + "Make sure to turn the &2Laser Amplifier&r &noff&r (or activate &cRedstone&r control) and wait for it to store &nat least&r &o&b400MRF&r, then it'll be ready." + "" + "{image:kubejs:textures/item/laser_example.png width:120 height:120 align:1}" + ] + id: "320CC038A64A3195" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "4A805D9B162DD36E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "1F82E1E037CBDC34" + item: "mekanism:laser_amplifier" + type: "item" + } + { + count: 3L + id: "64C66199BBFDF908" + item: "mekanism:laser" + type: "item" + } + ] + title: "Jumpstarting Method: &dLaser Focus Array&r" + x: 6.5d + y: 6.0d + } + { + dependencies: ["12D271359D48210E"] + description: [ + "To fuel our &6Fusion Reactor&r, we'll need to create two different gases, this one being &cDeuterium&r." + "" + "To make this, we'll need to make some &eElectric Pumps&r and give them a &3Filter Upgrade&r. Place them over a source block of water, give them some power, and they'll pump out &1Heavy Water&r." + "" + "Pump the &1Heavy Water&r into an &dElectrolytic Separator&r to get &cDeuterium&r." + ] + icon: { + Count: 1 + id: "mekanism:creative_fluid_tank" + tag: { + mekData: { + FluidTanks: [{ + Tank: 0b + stored: { + Amount: 2147483647 + FluidName: "mekanismgenerators:deuterium" + } + }] + } + } + } + id: "4ABF0727AA569DD9" + rewards: [{ + exclude_from_claim_all: true + id: "2B52625C70E8A2E9" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "34228001011C4524" + item: "mekanism:electric_pump" + type: "item" + } + { + id: "1C627F3894C50E4E" + item: "mekanism:upgrade_filter" + type: "item" + } + ] + title: "&cDeuterium&r" + x: 5.5d + y: 5.0d + } + { + dependencies: [ + "4ABF0727AA569DD9" + "04B3B99637C7E275" + ] + description: [ + "To start the &6Fusion Reactor&r, we'll need a quick-shot of &dD-T Fuel&r. This is made by combining &cDeuterium&r and &eTritium&r together in a &eChemical Infuser&r." + "" + "Start by making a &4Hohlraum&r and place it into the Infuser (where the plus symbol is) to fill it with &dD-T Fuel&r. Now we're ready to &b&nSTART&r the &6Reactor&r!" + ] + id: "3593D955361B0C6D" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "2FADC2121714F542" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "789B4C8031BCDBDA" + item: "mekanismgenerators:hohlraum" + type: "item" + }] + title: "The Fuel Injector" + x: 4.5d + y: 4.5d + } + { + dependencies: ["0152C49AB74B9D32"] + description: [ + "To create a reaction for the &6Reactor&r to turn on, we're going to need to inject it with a ton of power. &o&bAnd I mean a ton of power&r." + "" + "This requires you to set up several &9Lasers&r that all need to be powered, then shooting &o&b400MFE&r directly into the &aLaser Focus Matrix&r." + "" + "The &aLaser Focus Matrix&r is placed in the center of one face of the &6Fusion Reactor&r. We'll build the &9Lasers&r next." + ] + id: "79757F66DF263FA0" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "0ADC9D5A1814A25B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5799CEC4031D454E" + item: "mekanismgenerators:laser_focus_matrix" + type: "item" + }] + x: 9.0d + y: 6.0d + } + { + dependencies: ["0152C49AB74B9D32"] + description: [ + "&6Fusion Reactors&r require a very special fuel: &dD-T Fuel&r to be exact." + "" + "There are two ways to fuel the &6Reactor&r: Either by pumping in &dD-T Fuel&r directly into the &6Reactor&r at &b&o1,000mb/t&r, or by pumping each of the two fuels in separately at controlled rates." + "" + "For starters, let's pump them in separately." + ] + icon: { + Count: 1 + id: "mekanism:creative_fluid_tank" + tag: { + mekData: { + FluidTanks: [{ + Tank: 0b + stored: { + Amount: 2147483647 + FluidName: "mekanismgenerators:fusion_fuel" + } + }] + } + } + } + id: "12D271359D48210E" + rewards: [{ + exclude_from_claim_all: true + id: "7ECF2CF6654F8034" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "71D4910C5A3CA6C4" + item: "mekanismgenerators:fusion_fuel_bucket" + type: "item" + }] + title: "&dD-T Fuel&r" + x: 6.5d + y: 4.5d + } + { + dependencies: [ + "320CC038A64A3195" + "3593D955361B0C6D" + ] + description: [ + "Hohlraum filled with D-T Fuel? &oCheck!&r" + "" + "Deuterium and Tritium ready to be pumped into the Reactor? &oCheck!&r" + "" + "A Laser Amplifier with at least 400MRF ready to shoot into the Laser Focus Matrix? &oCheck!&r" + "" + "Once you are ready, place the &5Hohlraum&r into the &aFusion Reactor Controller&r, pump in the Fuel, then activate your Laser Amplifier." + "" + "If done right, &nyou'll see the Reactor activate!&r" + "" + "" + "{image:kubejs:textures/item/fusion_activated.png width:180 height:150 align:1}" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/fusion_reactor.png" + } + } + id: "54D8B9CB3F98040F" + min_width: 300 + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "78D1E0F9198588C5" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "4B63979C49A34565" + item: { + Count: 1 + id: "mekanismgenerators:hohlraum" + tag: { + mekData: { + GasTanks: [{ + Tank: 0b + stored: { + amount: 10L + gasName: "mekanismgenerators:fusion_fuel" + } + }] + } + } + } + type: "item" + }] + title: "&6Completed Fusion Reactor" + x: 4.5d + y: 6.0d + } + { + dependencies: ["3FFF9018DA2A2763"] + description: [ + "The &9Industrial Turbine&r is a massive multiblock structure used to convert &cHeated Coolant&r into power. The minimum size is 5x5x5, with the maximum size being 17x17x18." + "" + "Just like most &dMekanism&r multiblocks, the frame must be made out of &aTurbine Casings&r. However, instead of &eReactor Glass&r, you can use &bStructural Glass&r or Casings for each face." + "" + "We're going to build this &9Industrial Turbine&r, and the quest requires the exact materials needed." + "" + "{image:kubejs:textures/item/industrial_turbine.png width:100 height:105 align:1}" + ] + id: "6313B18820445882" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "211482AB1DFC08C2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "square" + subtitle: "Building the Frame" + tasks: [ + { + count: 52L + id: "0C8EF4390F02EBC4" + item: "mekanismgenerators:turbine_casing" + type: "item" + } + { + count: 52L + id: "3CD4768A3FCA49FF" + item: "mekanism:structural_glass" + type: "item" + } + ] + title: "&9The Industrial Turbine" + x: 10.0d + y: -2.0d + } + { + dependencies: ["6313B18820445882"] + description: [ + "&9Turbine Valves&r are used to pump in &bSteam&r, as well as pumping out the power that the &9Turbine&r creates." + "" + "&8Turbine Vents&r are used to pump out excess water when using &aSaturating Condensers&r. Otherwise, these help increase the overall flow of steam within the &9Turbine&r. The total number of Vents also limit the total Steam Flow Rate. Vents can also be used on the top face of the &9Turbine&r, but for this build, we'll just be using them on the outside faces." + "" + "&aSaturating Condensers&r are used to convert &bSteam&r back into water. These are placed on or above the layer containing the &6Electromagnetic Coils&r." + ] + id: "233E438357CD89F6" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "47D29FA4D0A84B25" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 2L + id: "3E72FC25B884DFFC" + item: "mekanismgenerators:turbine_valve" + type: "item" + } + { + count: 24L + id: "4D32BE4920464ED0" + item: "mekanismgenerators:turbine_vent" + type: "item" + } + { + count: 8L + id: "2C56599158C13CDF" + item: "mekanismgenerators:saturating_condenser" + type: "item" + } + ] + title: "The Ports" + x: 8.5d + y: -3.0d + } + { + dependencies: ["6313B18820445882"] + description: [ + "The &9Turbine Rotor&r is placed in the middle of the &6Turbine&r. For every &9Turbine Rotor&r, you will need &b&o2&r &aTurbine Blades&r. For this Turbine, we'll be using &b&o3&r &9Turbine Rotors&r." + "" + "While looking at the &9Rotor&r, &eright clicking&r with &aTurbine Blades&r will place them directly onto the &9Rotor&r. The taller the &9Rotor&r, the longer the &aBlades&r will become. For this build, we are using &o&b6&r total &aBlades&r. If you plan on building a bigger &6Turbine&r, you will need to increase the width of the &6Turbine&r depending on how many &aBlades&r you plan on using." + "" + "The &dRotational Complex&r must be placed at the top of the &9Turbine Rotor&r. This is then surrounded by &ePressure Dispersers&r." + "" + "The &eDispersers&r must fill out the entire layer where the &dRotational Complex&r sits." + ] + id: "05D20B506213A449" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "59B4E439A675DA6A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + tasks: [ + { + count: 3L + id: "69CE83F6561383E5" + item: "mekanismgenerators:turbine_rotor" + type: "item" + } + { + id: "2902E36FD3AC8E68" + item: "mekanismgenerators:rotational_complex" + type: "item" + } + { + count: 8L + id: "1E9FDE2560C1AB7C" + item: "mekanism:pressure_disperser" + type: "item" + } + { + count: 6L + id: "526F17523CE9BDF5" + item: "mekanismgenerators:turbine_blade" + type: "item" + } + ] + title: "The &aRotor&r" + x: 8.5d + y: -2.0d + } + { + dependencies: ["6313B18820445882"] + description: [ + "The &9Electromagnetic Coil&r is placed directly on top of the &aRotational Complex&r to convert the kinetic energy into power." + "" + "You can use multiple, with &o&b5&r &nbeing the max&r. These must either touch another &9Coil&r, or the &aRotational Complex&r." + ] + id: "7C61906C6C87C97D" + rewards: [{ + exclude_from_claim_all: true + id: "13F1A12696C3A2EA" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "4C0CC372A8597375" + item: "mekanismgenerators:electromagnetic_coil" + type: "item" + }] + x: 8.5d + y: -1.0d + } + { + dependencies: [ + "233E438357CD89F6" + "7C61906C6C87C97D" + "05D20B506213A449" + ] + description: [ + "If you've built the &9Industrial Turbine&r properly, you will see &cred&r particles around the structure. &eRight clicking&r on the &9Turbine&r will open up the &ainterface&r." + "" + "This will tell you all of the &binformation&r that you need to know, including the total &7Steam Flow Rate&r, as well as the total &bSteam&r inside of the &9Turbine&r." + "" + "On the right, you will have a bar that shows you the &cPower&r that is stored inside of the &9Turbine&r. If this gets full, the &9Turbine&r will turn &coff&r, unless you set it to &3Vent Overflow&r." + "" + "Let's get it running!" + "" + "Once you have a fully functioning &6Fission Reactor&r, pump out the &bSteam&r directly into a &dTurbine Valve&r on your &9Turbine&r. Since we're using &2Saturating Condensers&r in this build, you can pump out &1Water&r from a &3Turbine Vent&r back into your &6Reactor&r if you want. " + "" + "{image:kubejs:textures/item/turbine_gui.png width:280 height:120 align:1}" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/industrial_turbine.png" + } + } + id: "4189BC3DFB551F4C" + min_width: 400 + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "25A084EFA9C54DCD" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "3301B13304A98C3D" + type: "checkmark" + }] + title: "&9Completed Industrial Turbine" + x: 7.0d + y: -2.0d + } + { + dependencies: ["24174700F7FB771C"] + description: [ + "If we want to create massive amounts of &4Power&r, we'll need a way to store all of it, and those &aEnergy Cubes&r just won't cut it." + "" + "We're going to create a customizable multiblock used to store large amounts of power, but first, we need to make some &3Lithium Dust&r!" + "" + "You should have some &eBrine&r being made from a previous quest using the &cThermal Evaporation Plants&r." + "" + "Run the &eBrine&r through another &cThermal Evaporation Plant&r to get &7Lithium&r, then through a &9Chemical Crystallizer&r to get &aLithium Dust&r." + ] + icon: "mekanism:dust_lithium" + id: "0FF852DE33E41C90" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "4EB797037D76045F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "square" + tasks: [{ + count: 4L + id: "31A1425AA09C33F8" + item: "mekanism:dust_lithium" + type: "item" + }] + title: "Advanced Power Storage" + x: 2.0d + y: -3.0d + } + { + dependencies: ["0FF852DE33E41C90"] + description: [ + "The &bInduction Matrix&r is a highly configurable multi-block energy storage structure." + "" + "You'll need to make a rectangular prism structure. The edges must be made out of &8Induction Casings&r. The faces can be made of either Casings, &aStructural Glass&r, or &eInduction Ports&r. It's best to have &b&o2 Ports&r: one for &9input&r, and one for &coutput&r. These can be changed using the &dConfigurator&r." + "" + "For this build, we'll be making a 5x5x5. This quest requires the exact amount of materials needed to build this." + "" + "{image:kubejs:textures/item/induction.png width:100 height:100 align:1}" + ] + hide_until_deps_visible: false + id: "673FCBF8685D0EEE" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "27719C9EACBA2BB7" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 44L + id: "6D0EB8C587E34699" + item: "mekanism:induction_casing" + type: "item" + } + { + count: 2L + id: "6468D6A69F683E6D" + item: "mekanism:induction_port" + type: "item" + } + { + count: 55L + id: "5586FBB0561715AD" + item: "mekanism:structural_glass" + type: "item" + } + ] + title: "&bThe Induction Matrix" + x: 3.0d + y: -4.0d + } + { + dependencies: ["0FF852DE33E41C90"] + description: [ + "The &9Induction Matrix&r allows you to customize how much power you can store and transfer by adding &aCells&r and &eProviders&r inside of the multiblock structure." + "" + "&aInduction Cells&r increase the total amount of power that can be stored." + "" + "&eInduction Providers&r increase the total transfer speed both in and out of the &9Matrix&r." + "" + "You can customize how many you want of each &b&oinside&r of the multiblock, but you will need &b&oat least&r one of each." + "" + "These also have higher tiers to increase your overall storage and transfer capacity." + "" + "{image:kubejs:textures/item/induction_inside.png width:200 height:100 align:1}" + ] + hide_until_deps_visible: false + id: "14D772808D1BEAE2" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "306F8DE493DB0606" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "4063C1B5F935A026" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mekanism:basic_induction_cell" + } + { + Count: 1b + id: "mekanism:advanced_induction_cell" + } + { + Count: 1b + id: "mekanism:elite_induction_cell" + } + { + Count: 1b + id: "mekanism:ultimate_induction_cell" + } + ] + } + } + title: "Induction Cells" + type: "item" + } + { + id: "2E3FF129C3668DD8" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mekanism:basic_induction_provider" + } + { + Count: 1b + id: "mekanism:advanced_induction_provider" + } + { + Count: 1b + id: "mekanism:elite_induction_provider" + } + { + Count: 1b + id: "mekanism:ultimate_induction_provider" + } + ] + } + } + title: "Induction Providers" + type: "item" + } + ] + title: "Customizing Power Limits" + x: 3.0d + y: -2.0d + } + { + dependencies: [ + "673FCBF8685D0EEE" + "14D772808D1BEAE2" + ] + description: [ + "A correctly formed &9Induction Matrix&r will spark once with &cRedstone Particles&r when you place down the last block, and will also have an interface when &eright-clicking&r the block." + "" + "To make the &9Induction Matrix&r function properly, you will want to have one &2Induction Port&r configured to &9input&r and one &2Induction Port&r to &coutput&r, using a &dConfigurator&r." + "" + "Don't be afraid to upgrade with higher tier &aCells&r and &eProviders&r! The maximum size of the &9Induction Matrix&r structure can be &o&b18x18x18&r. " + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/induction.png" + } + } + id: "07ECC87DFF2D3991" + progression_mode: "linear" + rewards: [{ + exclude_from_claim_all: true + id: "719D43C9B673D6C7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "38A0D09CC7E6EBC8" + type: "checkmark" + }] + title: "&bCompleted Induction Matrix" + x: 4.0d + y: -3.0d + } + { + dependencies: ["1FAAF8216CDC3AC6"] + description: [ + "The &dModification Station&r is used for applying modular upgrades to the &3Meka-Suit&r and the &aMeka-Tool&r in exchange for energy." + "" + "A part of the &3Meka-Suit&r (which the upgrade is compatible with) is inserted into the station along with the &aupgrade&r, resulting in the upgrade being applied to the &3Meka-Suit&r." + "" + "It functions similarly to an &0Anvil&r or a &6Power Armor Tinker Table&r from the &9Modular Powersuits&r mod." + ] + hide_dependency_lines: true + id: "22C5D2CD84E6E9EF" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "0EFC568C2CE06CF8" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "49F6EB53E31342B9" + item: "mekanism:modification_station" + type: "item" + }] + title: "&eModification Station" + x: 16.5d + y: 0.5d + } + { + dependencies: ["22C5D2CD84E6E9EF"] + description: [ + "The &eMeka-Tool&r is a &o&bmulti-use&r tool item in &dMekanism&r." + "" + "It has almost no use default but can have &9Modules&r installed to give it a wide range of functions. While the &aConfigurator&r is required to craft the &eMeka-Tool&r, It does not have that functionality." + ] + id: "738FF04BEE2342A0" + rewards: [{ + exclude_from_claim_all: true + id: "4AB50C8B3D1E75D1" + table_id: 5236874501558129216L + type: "random" + }] + shape: "circle" + tasks: [{ + id: "7C8248C053A33578" + item: { + Count: 1 + id: "mekanism:meka_tool" + tag: { + HideFlags: 2 + } + } + type: "item" + }] + x: 15.5d + y: -0.5d + } + { + dependencies: ["3591EAA8E397F992"] + description: [ + "The &6Solar Neutron Activator&r is a machine that directs the neutron radiation of the sun into its internal reservoir, allowing for the slow creation of various isotopes." + "" + "The &9input&r is at the &o&bbottom&r, the &coutput&r is at the &o&bfront&r." + "" + "It does not need &nenergy&r except for &ndirect sunlight&r which can be intercepted by transparent blocks such as glass, cables, pipes, etc." + ] + id: "1E1EF430810D08BF" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "091989C7A81E8A31" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2F361F1CADFDE83D" + item: "mekanism:solar_neutron_activator" + type: "item" + }] + x: 11.0d + y: 2.5d + } + { + dependencies: ["12D271359D48210E"] + description: ["By now, you're already making &aLithium&r. Pump that into a &dSolar Neutron Activator&r to create &eTritium&r."] + icon: { + Count: 1 + id: "mekanism:creative_fluid_tank" + tag: { + mekData: { + FluidTanks: [{ + Tank: 0b + stored: { + Amount: 2147483647 + FluidName: "mekanismgenerators:tritium" + } + }] + } + } + } + id: "04B3B99637C7E275" + rewards: [{ + exclude_from_claim_all: true + id: "2A9AC7A94D0D782E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1402F3ACDEA3D5CA" + item: "mekanismgenerators:tritium_bucket" + type: "item" + }] + title: "&eTritium" + x: 5.5d + y: 4.0d + } + { + dependencies: ["22C5D2CD84E6E9EF"] + description: [ + "The &3MekaSuit&r is a highly configurable set of late-game modular armor added in &dMekanism&r." + "" + "The &3MekaSuit &ris divided into &o&b4&r parts, the headpiece, the chest plate, the leggings, and the boots. " + "" + "Each part of the &3MekaSuit&r can be upgraded with &eModules&r that are installed with the &6Modification Station&r and can be configured by pressing \"&b\\&r\"(backslash)." + "" + "It is considered the best armor in &dMekanism&r and is very expensive to make and &o&bfully upgrade&r, even for late game players, requiring a large amount of &9Polonium&r to be processed into pellets." + "" + "With a fully upgraded suit however, the wearer becomes &nnearly&r &6Invincible&r." + ] + id: "75C0ED308F5D7417" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "01EF76322EE3FE6F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [ + { + id: "71E897B0F462061B" + item: "mekanism:mekasuit_helmet" + type: "item" + } + { + id: "73D161D7768408E9" + item: "mekanism:mekasuit_bodyarmor" + type: "item" + } + { + id: "7D7E0CD9F495548A" + item: "mekanism:mekasuit_pants" + type: "item" + } + { + id: "77086D288AF7F635" + item: "mekanism:mekasuit_boots" + type: "item" + } + ] + title: "&bMekaSuit Armor" + x: 16.5d + y: -1.0d + } + { + dependencies: ["22C5D2CD84E6E9EF"] + description: [ + "The &ePortable Teleporter&r is a player kept teleportation device." + "" + "It can store power and like all &dMekanism&r teleporters, energy drain increases with the distance the player teleports to. &aRight-clicking&r with this device in hand will open a &o&bGUI&r&b similar to that of the &9Teleporter Portal&r, allowing instant travel to any &3Teleporter Portals&r that the player has set up. The &ePortable Teleporter&r is capable of multidimensional travel." + "" + "Note that in order for the &ePortable Teleporter&r to be functional, the complete &9Teleporter Portal&r structure does not need to be built; only the &o&bTeleporter block&r must be present (and supplied with &npower&r)." + ] + id: "43FBFDBCDB69E7EE" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "2058775236928201" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0B7C60B8CBA824A4" + item: "mekanism:portable_teleporter" + type: "item" + }] + x: 17.5d + y: -0.5d + } + { + dependencies: ["00EFC7B327E79076"] + id: "2CC2D2C475F8E758" + rewards: [{ + exclude_from_claim_all: true + id: "537ECC702F832B27" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "5CE2ACFC789B27C0" + item: "mekanism:antiprotonic_nucleosynthesizer" + type: "item" + }] + x: 15.5d + y: 4.5d + } + { + dependencies: ["00EFC7B327E79076"] + description: [ + "&6QIO&r is a way of storing large amounts of items that can be stored, searched, and accessed remotely in late game." + "" + "It's comprised of at least one &aQIO Drive&r (to store items), a &9QIO Drive Array&r (to hold the &aQIO Drives&r), and at least one &3QIO Dashboard&r (to access items in the &2QIO Drive Array&r)." + "" + "Both the drive and drive array must be set to &o&bthe same frequency&r in order to work together." + "{image:kubejs:textures/item/qio_setup.png width:300 height:120 align:1}" + ] + id: "3AB541A2323AF3B3" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "797C6AE0F2D4BC94" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "765C572EBC0FB0E7" + item: "mekanism:qio_drive_array" + type: "item" + }] + x: 16.5d + y: 3.0d + } + { + dependencies: ["3AB541A2323AF3B3"] + description: [ + "&aQIO Drives&r are inserted into a &9Drive Array&r, allowing it to store more items." + "" + "Each drive has a number of items and item types it can contain. A &aBasic QIO Drive&r can contain &o&b16,000&r &nitems&r and &o&b128&r &nitem types&r." + ] + id: "3AE2172B95B58B99" + rewards: [{ + exclude_from_claim_all: true + id: "2B9BB448DFAEC144" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "659585F57F4A3AB1" + item: "mekanism:qio_drive_base" + type: "item" + }] + x: 17.5d + y: 3.0d + } + { + dependencies: ["3AE2172B95B58B99"] + description: ["A &cHyper-Dens QIO Drive&r can contain &o&b128,000&r &nitems&r and &o&b256&r &nitem types&r."] + id: "2A55024C0BA2F4EA" + rewards: [{ + exclude_from_claim_all: true + id: "30AAA6709B9779CB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "3899C752F8C33217" + item: "mekanism:qio_drive_hyper_dense" + type: "item" + }] + x: 18.0d + y: 2.5d + } + { + dependencies: ["2A55024C0BA2F4EA"] + description: ["A &9Time-Dilating QIO Drive&r can contain &o&b1,048,000&r &nitems&r and &o&b1,024&r &nitem types&r."] + id: "51844489E649C85A" + rewards: [{ + exclude_from_claim_all: true + id: "2673CD6EA2F2B012" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "5522D97DB59F27AE" + item: "mekanism:qio_drive_time_dilating" + type: "item" + }] + x: 18.5d + y: 3.0d + } + { + dependencies: ["51844489E649C85A"] + description: ["A &dSupermasiv QIO Drive&r can contain &o&b16,000,000,000&r &nitems&r and &o&b8,192&r &nitem types&r."] + id: "3658B862EEE320BD" + rewards: [{ + exclude_from_claim_all: true + id: "26B3B22AA2DA131E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "2127BF73BDE6CB48" + item: "mekanism:qio_drive_supermassive" + type: "item" + }] + x: 18.0d + y: 3.5d + } + { + dependencies: ["3AB541A2323AF3B3"] + id: "4CCA40FAB3230C75" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "67A577DFC1D93C90" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "67F2988ACBB5DB51" + item: "mekanism:portable_qio_dashboard" + type: "item" + }] + x: 15.5d + y: 3.0d + } + { + dependencies: ["3AB541A2323AF3B3"] + description: [ + "&2QIO Dashboards&r allow a user to interface with the contents of a &9QIO Drive Array&r." + "" + "It looks similar to a &echest inventory&r, but it can be searched, sorted, scrolled through, and shows all items of one type as a single stack, even if there are thousands of them." + "" + "In order to access a &9drive array&r, the &2dashboard&r must be set to the same &o&bfrequency&r as the &9drive array&r." + ] + id: "06CA244E47D9C097" + rewards: [{ + exclude_from_claim_all: true + id: "1C9124EA2F1E496B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2E47C572F5037FD4" + item: "mekanism:qio_dashboard" + type: "item" + }] + x: 16.5d + y: 2.0d + } + { + dependencies: ["22C5D2CD84E6E9EF"] + description: [ + "&9Modules&r are &eupgrades&r that can be applied to the &3Mekasuit&r and the &7Meka-Tool&r at a &dModification Station&r." + "" + "Each &o&bmodule's effects can be tuned in the config&r screen bound to your desired &akeybind&r." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "08BE431ACC886F18" + rewards: [{ + exclude_from_claim_all: true + id: "195EEFDDBCAAC082" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + tasks: [{ + id: "219454D4E0D5B3B2" + item: "mekanism:module_base" + type: "item" + }] + x: 16.5d + y: -2.0d + } + ] + title: "&3&oMekanism:&r &o&fPhase two" +} diff --git a/minecraft/config/ftbquests/quests/chapters/minecolonies.snbt b/minecraft/config/ftbquests/quests/chapters/minecolonies.snbt new file mode 100644 index 0000000..645d759 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/minecolonies.snbt @@ -0,0 +1,2242 @@ +{ + autofocus_id: "1AFDAA3909136444" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "minecolonies" + group: "4E2A2310634498BA" + icon: "minecolonies:supplycampdeployer" + id: "339B9FD46A5F4CF4" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 2.25d + y: -11.089285714285712d + } + { + height: 3.5d + image: "kubejs:item/minecolonies" + rotation: 0.0d + width: 10.0d + x: -5.5d + y: -10.5d + } + ] + order_index: 5 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + description: [ + "Minecolonies is an interactive Town building mod that allows you to create your own thriving Town within Minecraft." + "" + "It depicts real-life scenarios by providing you with different craftable options to build your own Town and enhance your gaming experience. Featuring many NPC workers such as: Builders, Crafters, Farmers, Fishermen, Guards, Barracks, Miners, Smeltery, Baker, Cook/Restuarant, Deliveryman, Animal Herders and many more planned for development. As well as a specialized buildings such as: Warehouse, Citizen Huts and a Townhall. Minecolonies gives you the ability to create a colony as rich and unique as every player" + "" + "You have full control of how to build your Town. You determine how many workers you want or need, what type of workers, where they will live, and hire or fire as you see fit. Creating a Town at your own pace. It is your Town to design and develop, you are the designer, administrator and boss." + "" + "Your Town deserves the best security you can have. Strategically add Guard Towers or Tower Barracks to protect your Town from hostile mobs and barbarians that will attack on random nights. Give them the best weapons and armour your Town has to offer. They need to be fed well to work and protect it better. Keep a busy farmer to supply the baker and the cook at the restaurant, so no one goes hungry." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "wildernature:item/common_contract" + } + } + id: "7BD92050166191A6" + min_width: 400 + rewards: [ + { + id: "7911B56139A92CF7" + type: "xp" + xp: 10 + } + { + id: "2AE500B42B59B22D" + item: "structurize:sceptergold" + type: "item" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "29F0CA2EE73B2E04" + type: "checkmark" + }] + title: "Welcome to &aMineColonies" + x: 1.5d + y: -10.5d + } + { + dependencies: ["7BD92050166191A6"] + description: [ + "Once you have chosen a location for your colony, you must place a Supply Ship or Supply Camp. You can only place one of these per world. The Supply Camp/Ship gives you the Town Hall block you need to officially start your colony. They also have some other supplies you may need during the building of your colony. Once you have the Town Hall block and the build tool, the remaining camp/ship is just decoration. You can leave it or tear it down." + "" + "Before you place the Supply Camp, you need to have a large enough flat, clear piece of land that is as large as the camp area." + "" + "For the Supply Ship, you need an area of water at least one block larger than the build area. Not all Camps or Ships are the same size." + ] + id: "01BA5896FE1F2896" + min_width: 300 + rewards: [ + { + id: "0C043BAD01192B87" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6FF44B3293364411" + table_id: 2501998888776764148L + type: "loot" + } + ] + subtitle: "Step 1: Supply Camp/Supply Ship" + tasks: [{ + id: "3245902090120C9A" + item: { + Count: 1 + id: "itemfilters:id_regex" + tag: { + value: "^minecolonies:.*supply.*" + } + } + title: "Supply Camp/Supply Ship" + type: "item" + }] + title: "&aThe Supply Ship or Supply Camp" + x: -0.5d + y: -9.5d + } + { + dependencies: ["59C805F0C3A3E7E0"] + description: [ + "The Town Hall block is what actually creates the colony. It also functions as the center of it. This is where you start using the build tool to place buildings. Using the build tool ensures you can see exactly where the building will be, which direction it will face, and if it is at the right Y level (some buildings need to be raised to the correct Y level)." + "" + "Make sure you scout your area carefully before you decide where you want to place your Town Hall. Your colony will start with a 4 chunk radius (4 chunks in each direction) from the Town Hall block. Make sure this is where you want your colony to be." + "" + "After you have carefully decided where you want to place your Town Hall (remember, the position where you placed the Town Hall block will be the center of your colony’s protected area. Once placed, the area will be set and cannot be changed), use your build tool to place the Town Hall block.Right-click the ground in the area you want to place the Town Hall. The building GUI will display showing the 3D preview of the building. You will be able to use the arrow buttons to move the building to the location you desire." + "" + "&lNote:&r Make sure you use the + and - options in the GUI to make sure you have the ground level of the hut where you want the ground level to be. Not all hut blocks sit on the ground.Once you commit to the placement of the Town Hall (green checkmark), the Town Hall block will be placed." + ] + id: "649F6004232F335C" + min_width: 400 + rewards: [ + { + id: "49619740F28C5471" + type: "xp" + xp: 100 + } + { + id: "1276EF102DE839C6" + item: "minecolonies:clipboard" + type: "item" + } + { + exclude_from_claim_all: true + id: "3B38801B6F1FED5E" + table_id: 2501998888776764148L + type: "loot" + } + ] + subtitle: "The center of your colony" + tasks: [{ + advancement: "minecolonies:minecolonies/build_town_hall" + criterion: "" + icon: "minecolonies:blockhuttownhall" + id: "607EDC7794E2FC97" + type: "advancement" + }] + title: "&aThe Town Hall" + x: 0.5d + y: -7.0d + } + { + dependencies: ["01BA5896FE1F2896"] + description: [ + "Before anything can be built, you need a Builder. The Builder must build their own Builder’s Hut before building any other huts, and they cannot build or upgrade a hut to a higher level than their own hut level." + "" + "Before you choose a place to build the Builder’s Hut, take into account the distances among the other possible building sites and obstacles like water, trees, caves, mountains, lava sources, etc. After you have selected a place for the hut, you have to craft the Builder’s Hut block and place it with your build tool. Once the hut is placed, the Builder will be automatically assigned (or you can manually assign one with the best Traits for a Builder if you changed this in the settings tab in the Town Hall’s GUI." + "" + "Now you will have to issue the build assignment so the Builder can build their own hut first. The Builder will ask for the materials they need. Make sure to check the Resource Scroll or the second page of the Builder’s Hut GUI to see what materials the Builder is requesting for any build/upgrade. Any material in the list that is still missing will be in red letters. Once the Builder’s Hut is built you can now build anything you want, like worker huts, buildings, decorations, or your own schematics." + "" + "&lNote:&r The Builder can only build or upgrade any other hut up to the level of their own hut. So, in order for the Builder to upgrade any building, the Builder’s Hut must be upgraded first. Then the Builder will be able to upgrade any other building(s)." + ] + id: "59C805F0C3A3E7E0" + min_width: 400 + rewards: [ + { + id: "51D19410FF12E562" + type: "xp" + xp: 100 + } + { + id: "5D9078C82164DD9E" + item: "minecolonies:resourcescroll" + type: "item" + } + { + id: "71354D7ACF92E092" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Step 2: Builder’s Hut" + tasks: [{ + advancement: "minecolonies:minecolonies/check_out_guide" + criterion: "" + icon: "minecolonies:blockhutbuilder" + id: "4F6E4CB69D98EDEC" + type: "advancement" + }] + title: "&aThe Builder" + x: -0.5d + y: -5.5d + } + { + dependencies: ["59C805F0C3A3E7E0"] + description: [ + "Your colonists will need a place to sleep and a house, so it is recommended to build a Tavern next. The Tavern also allows visitors to come to your colony, and you can recruit them to stay as citizens." + "" + "The Tavern is like a House in that it houses citizens, however, the Tavern houses four instead of one and can’t be upgraded to house more.Every so often, visitors will come to the Tavern. You can recruit these visitors (with items) to live and work in your colony. Don’t attack them, they’ll fight back! Upgrading the Tavern will garner more and better visitors.Recruiting used to be part of the Town Hall but has been moved here." + "" + "&lNote:&r The Tavern can only be upgraded to level 3, not level 5. You can also only have 1 Tavern per colony." + ] + id: "25B2ADF0164EBDD7" + min_width: 300 + rewards: [ + { + id: "69A5AD5129DA040F" + type: "xp" + xp: 50 + } + { + count: 32 + id: "353BDC38EB151820" + item: "twilightforest:cooked_meef" + type: "item" + } + { + count: 32 + id: "32465ED96AE80DF6" + item: "minecraft:bread" + type: "item" + } + { + exclude_from_claim_all: true + id: "05F114A5B9BF6456" + table_id: 2501998888776764148L + type: "choice" + } + ] + tasks: [{ + advancement: "minecolonies:minecolonies/build_tavern" + criterion: "" + icon: "minecolonies:blockhuttavern" + id: "750DE8A0B2B0E73A" + type: "advancement" + }] + title: "Tavern" + x: -3.9642857142857153d + y: -4.5d + } + { + dependencies: ["59C805F0C3A3E7E0"] + description: [ + "The Forester will cut down any tree in an approximate 150 block area (from themselves) that is not in a hut schematic and doesn’t have cobblestone placed beneath it." + "" + "&lNote:&r Foresters require hoes (for breaking leaves)." + ] + id: "10EFBDB2DF3301F4" + rewards: [ + { + id: "611BA68CD599AD42" + type: "xp" + xp: 50 + } + { + id: "7AEA86643D678F1B" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "The Forester’s Hut is where the Forester will go in between chopping down trees" + tasks: [{ + advancement: "minecolonies:production/build_lumberjack" + criterion: "" + icon: "minecolonies:blockhutlumberjack" + id: "09030FEDC1E5D140" + type: "advancement" + }] + title: "Forester’s Hut" + x: -2.0d + y: -3.5d + } + { + dependencies: ["59C805F0C3A3E7E0"] + description: [ + "Once they are hired, the Miner will create a shaft downward and then branch out." + "" + "The shaft the Miner creates downwards will go to a specific depth depending on the level of the Mine:" + "Mine Level 1 - Y level 50" + "Mine Level 2 - Y level 30" + "Mine Level 3+ - Bedrock" + ] + id: "3B3160E21CBAD118" + rewards: [ + { + id: "74AABAD384E51787" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1CA589DAEF0185CD" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "The Mine is where the Miner will mine for ores and materials" + tasks: [{ + advancement: "minecolonies:production/build_miner" + criterion: "" + icon: "minecolonies:blockhutminer" + id: "27744B08226BEEE5" + type: "advancement" + }] + title: "Mine" + x: -4.464285714285715d + y: -6.0d + } + { + dependencies: ["08E6410AC63CC533"] + description: [ + "Items will be stored in racks. The level of the Warehouse will determine how many Couriers will be able to use it at the same time. Level up the Warehouse to increase the amount of Couriers that can work in it. Leveling up the Warehouse will also increase its storage capacity." + "" + "&lNote:&r You can only have one Warehouse per colony." + ] + id: "6B327509E285B9BA" + rewards: [ + { + id: "2D0BE703632C0188" + type: "xp" + xp: 50 + } + { + id: "3AE54A1CA6DC2651" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Warehouse is the central storage from where a Courier will store and retrieve everything your workers harvest, craft, or need" + tasks: [{ + advancement: "minecolonies:production/build_warehouse" + criterion: "" + icon: "minecolonies:blockhutwarehouse" + id: "0A3B972C6B8BC15B" + type: "advancement" + }] + title: "Warehouse" + x: -6.0d + y: -4.562499999999993d + } + { + dependencies: ["59C805F0C3A3E7E0"] + description: [ + "The University is where a Researcher will research various upgrades to your colony." + "" + "As you level up the University, you can hire more researchers." + ] + id: "1AFDAA3909136444" + rewards: [ + { + id: "6F5AC70FF82D4420" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "55DDDCB33618944B" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Step 3: Rest of the Colony" + tasks: [{ + id: "0D6D50DCDF2533BB" + item: "minecolonies:blockhutuniversity" + type: "item" + }] + title: "&aThe University" + x: 2.5d + y: -7.0d + } + { + dependencies: ["0E86F1602C93A043"] + description: [ + "The Fisher requires a fishing rod and a body of water of a minimum of 7 blocks wide x 7 blocks long x 1 block tall to be able to work, and the water must be near his hut." + "" + "Upgrading the Fisher’s Hut will expand the range at which the Fisher can fish, and the higher the level of the Fisher’s Hut, the more loot the Fisher will be fishing out (instead of fish). This includes prismarine and sponges!" + ] + id: "01D6457585743B28" + rewards: [ + { + id: "39DFE92812B62180" + type: "xp" + xp: 50 + } + { + count: 16 + id: "0D087BF802BE8A86" + item: "minecraft:cod" + type: "item" + } + { + exclude_from_claim_all: true + id: "73690C10F235D71F" + table_id: 2501998888776764148L + type: "loot" + } + ] + subtitle: "The Fisher’s Hut is where the Fisher will catch fish" + tasks: [{ + advancement: "minecolonies:production/build_fisherman" + criterion: "" + icon: "minecolonies:blockhutfisherman" + id: "0ACDCA568DFA0CE2" + type: "advancement" + }] + title: "Fisher’s Hut" + x: -6.5d + y: -7.5d + } + { + dependencies: ["25B2ADF0164EBDD7"] + description: [ + "When citizens are hungry, they will come to the Restaurant and the Cook will give them food. The Assistant Cook also works at the Restaurant. They craft needed food to help supply the colony." + "" + "&lNote:&r You can only hire an Assistant Cook when the Restaurant is level 3 or higher." + ] + id: "2B0E3E6924D17A76" + rewards: [ + { + id: "1F6004344BB1168A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7B3F6AFDEE2EF728" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "The Restaurant is where the Cook will cook food, provided they have the necessary ingredients and fuel" + tasks: [{ + advancement: "minecolonies:production/build_cook" + criterion: "" + icon: "minecolonies:blockhutcook" + id: "4285DAAF98FF19CB" + type: "advancement" + }] + title: "Restaurant" + x: -4.5714285714285765d + y: -3.5982142857142847d + } + { + dependencies: ["59C805F0C3A3E7E0"] + description: [ + "The crops the Farmer currently cultivates are wheat, carrots, potatoes, beets, melons, pumpkins, and most crops from other mods (as long as they have normal growth behavior). Before the Farmer can start, you will have to give the Farmer a hoe, an axe (for harvesting crops), and the crop you want to cultivate." + "" + "The Farmer will also craft seeds, carved pumpkins, hay bales, composted dirt, and coarse dirt. They will only make items when they have been taught the recipes, receive a request for an item, and have the needed materials." + "" + "For the Farmer to start, you will also need to place fields. Place the Field block (it looks like a scarecrow) in the plot of farmland you want the Farmer to work on and right-click on it to access its GUI. Here you will place the seed of the crop you want this specific field to cultivate. (For potatoes, carrots, and other plants without seeds, just put the raw potato/carrot/etc in the Field.) If you decide later to change the type of crop you want cultivated in that farmland, just go into the Field’s GUI and switch the seed there." + "" + "&lNote:&r The Farmer can only learn a set number of recipes based on their hut level." + ] + id: "0E86F1602C93A043" + min_width: 400 + rewards: [ + { + id: "7CB6B505DC8F5FFA" + type: "xp" + xp: 50 + } + { + id: "794A6D9995D7DA02" + item: "minecolonies:blockhutfield" + type: "item" + } + { + exclude_from_claim_all: true + id: "476DE4B6700120F6" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "The Farm is where the Farmer will grow crops for your colony" + tasks: [ + { + advancement: "minecolonies:production/build_farmer" + criterion: "" + icon: "minecolonies:blockhutfarmer" + id: "5D6834E6E9C495E5" + type: "advancement" + } + { + id: "52DF6E10091661A5" + item: "minecolonies:blockhutfield" + type: "item" + } + ] + title: "Farm \\& Fields" + x: -4.5d + y: -7.5d + } + { + dependencies: ["59C805F0C3A3E7E0"] + description: [ + "The level of the Courier’s Hut will dictate how many items the Courier can deliver, so if you want them to carry more materials/tools, upgrade their hut. Upgrading the hut will also increase the amount of requests they can keep track of at a time." + "" + "The greater a Courier’s Agility skill, the faster they’ll run. The greater their Adaptability skill, the more huts they can visit before going back to the Warehouse." + "" + "&lNote:&r You MUST build the Warehouse to at least level 1 so the Courier can do their work." + ] + id: "08E6410AC63CC533" + rewards: [ + { + id: "09AF41A69F04A40E" + type: "xp" + xp: 50 + } + { + id: "6CE386C1094B42F6" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Courier runs back and forth from the Warehouse to all the worker huts in your colony, delivering materials to workers and putting finished products in the Warehouse" + tasks: [{ + advancement: "minecolonies:production/build_delivery_person" + criterion: "" + icon: "minecolonies:blockhutdeliveryman" + id: "419989B0F51EEC39" + type: "advancement" + }] + title: "Courier’s Hut" + x: -4.964285714285715d + y: -5.0d + } + { + dependencies: ["0E86F1602C93A043"] + description: [ + "They can also create dirt if you have the setting enabled, which the Builder can use in buildings. The Composter uses compost barrels to make compost or dirt." + "" + "&lHint:&r The higher the level of the Composter’s Hut, the more compost barrels the Composter will be able to use." + ] + id: "70C6E443BB9BA72A" + rewards: [ + { + id: "1C4C87055AF53A5D" + type: "xp" + xp: 50 + } + { + count: 3 + id: "5CD4B954EB2983FD" + item: "minecolonies:composted_dirt" + type: "item" + } + { + id: "2912E932EEFE1D48" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "The Composter’s Hut is where the Composter will turn organic materials into compost, which can be used by the Farmer or Florist to fertilize crops or flowers" + tasks: [{ + advancement: "minecolonies:production/build_composter" + criterion: "" + icon: "minecolonies:blockhutcomposter" + id: "5AD8B7AB8958984E" + type: "advancement" + }] + title: "Composter’s Hut" + x: -5.5d + y: -8.5d + } + { + dependencies: ["01D6457585743B28"] + description: [ + "You will have to capture and bring in two chickens to the Chicken Farmer’s Hut, as the Chicken Farmer will not catch and bring in any chickens." + "" + "&lNote:&r The Chicken Farmer will only keep two chickens alive per hut level, so at level 5 they will have ten chickens in their holding pens to breed and butcher." + ] + id: "47DA70D77F240688" + rewards: [ + { + id: "7A96B3CD8F08A07A" + type: "xp" + xp: 10 + } + { + count: 16 + id: "4A3051B3555E447D" + item: "minecraft:chicken" + type: "item" + } + ] + subtitle: "The Chicken Farmer’s Hut is where the Chicken Farmer will raise chickens, collect eggs, and butcher chickens for food" + tasks: [{ + id: "6E7F5BAF2C1B01E2" + item: "minecolonies:blockhutchickenherder" + type: "item" + }] + x: -8.0d + y: -7.5d + } + { + dependencies: ["47DA70D77F240688"] + description: [ + "You will have to capture and bring in two pigs to the Swineherd’s Hut, as the Swineherd will not catch and bring in any pigs." + "" + "&lNote:&r The Swineherd will only keep two pigs alive per hut level, so at level 5 they will have ten pigs in their holding pens to breed and butcher." + ] + id: "44B24D443F699CF6" + rewards: [ + { + id: "6DB43122842DBD1F" + type: "xp" + xp: 10 + } + { + count: 16 + id: "78716E9413405F90" + item: "minecraft:porkchop" + type: "item" + } + ] + subtitle: "The Swineherd’s Hut is where the Swineherd will breed and butcher pigs for food" + tasks: [{ + id: "23F29ABD0441CCA6" + item: "minecolonies:blockhutswineherder" + type: "item" + }] + x: -9.0d + y: -7.0d + } + { + dependencies: ["44B24D443F699CF6"] + description: [ + "You will have to capture and bring in two sheep to the Shepherd’s Hut, as the Shepherd will not catch and bring in any sheep." + "" + "&lNote:&r The Shepherd will only keep two sheep alive per hut level, so at level 5 they will have ten sheep in their holding pens to breed and butcher." + ] + id: "1A3C9F124B6E687F" + rewards: [ + { + id: "4CBFD3B037530647" + type: "xp" + xp: 10 + } + { + count: 16 + id: "2C8A952122BB3FF4" + item: "minecraft:mutton" + type: "item" + } + ] + subtitle: "The Shepherd’s Hut is where the Shepherd will breed and butcher sheep for food and wool" + tasks: [{ + id: "3478BD6047A8313E" + item: "minecolonies:blockhutshepherd" + type: "item" + }] + x: -9.5d + y: -6.0d + } + { + dependencies: ["1A3C9F124B6E687F"] + description: [ + "You will have to capture and bring in two cows to the Cowhand’s Hut, as the Cowhand will not catch and bring in any cows." + "" + "&lNote:&r The Cowhand will only keep two cows alive per hut level, so at level 5 they will have ten cows in their holding pens to breed and butcher." + ] + id: "527567CD8C852ED6" + rewards: [ + { + id: "14A54269B2DD1900" + type: "xp" + xp: 10 + } + { + count: 16 + id: "18F35981ACC8699F" + item: "minecraft:beef" + type: "item" + } + ] + subtitle: "The Cowhand’s Hut is where the Cowhand will breed, butcher, and milk (if you have the option enabled) cows for food and leather" + tasks: [{ + id: "4AA93698FF316FF7" + item: "minecolonies:blockhutcowboy" + type: "item" + }] + x: -9.5d + y: -5.0d + } + { + dependencies: ["1AFDAA3909136444"] + description: ["The Flower Shop cannot be built until you have a level 3 Composter’s Hut (or three level 1 Composter’s Huts, or another equivalent) and have finished the research in the University."] + id: "7BA609263896CABC" + rewards: [ + { + id: "268BC22AAC828664" + type: "xp" + xp: 50 + } + { + id: "1FF39223E8E4462B" + item: "minecraft:rose_bush" + type: "item" + } + { + id: "18B9E315C10565C3" + item: "minecraft:sunflower" + type: "item" + } + { + id: "33D50E0635B5BFF0" + item: "minecraft:lilac" + type: "item" + } + { + id: "5A82D4FE79F0183E" + item: "minecraft:peony" + type: "item" + } + { + id: "27A7F30EBBFB8F16" + table_id: 2501998888776764148L + type: "random" + } + { + exclude_from_claim_all: true + id: "0190034A5783062F" + table_id: 5987657478296879679L + type: "loot" + } + ] + subtitle: "The Flower Shop is where your Florist will grow flowers for your colony, if given compost and an axe" + tasks: [{ + advancement: "minecolonies:production/build_florist" + criterion: "" + icon: "minecolonies:blockhutflorist" + id: "0B6E1FE3D4E6E475" + type: "advancement" + }] + title: "Flower Shop" + x: 6.5d + y: -4.5d + } + { + dependencies: ["1AFDAA3909136444"] + description: [ + "A citizen will randomly level up their Intelligence as long as they’re assigned to the Library. Being a Library Student is their full-time job, so you can’t have one citizen work at the Library and another worker hut at the same time." + "" + "&lNote:&r The Library cannot be built until you finish the research in the University." + ] + id: "0D7C129C45728971" + min_width: 300 + rewards: [ + { + id: "51AAA48A5973FBDB" + type: "xp" + xp: 50 + } + { + count: 32 + id: "7B058793ED8E31A1" + item: "minecraft:bookshelf" + type: "item" + } + { + exclude_from_claim_all: true + id: "371CC9B0D6525D10" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "The Library is a way for you to raise your adult citizens’ Intelligence skill, which influences all other skill increases (at other jobs)" + tasks: [{ + advancement: "minecolonies:production/build_library" + criterion: "" + icon: "minecolonies:blockhutlibrary" + id: "62C8DC9720910F1C" + type: "advancement" + }] + title: "Library" + x: 7.5d + y: -5.0d + } + { + dependencies: ["1AFDAA3909136444"] + description: ["&cNote:&r The Crusher’s Hut cannot be built until you have a level 1 Stonemason’s Hut and have finished the research in the University."] + id: "238C2A741A6C8CA5" + rewards: [ + { + id: "349146682B507133" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7B5E2A166322954B" + table_id: 2501998888776764148L + type: "choice" + } + ] + subtitle: "The Crusher’s Hut is where the Crusher will take items and crush them into other blocks" + tasks: [{ + advancement: "minecolonies:production/build_crusher" + criterion: "" + icon: "minecolonies:blockhutcrusher" + id: "0101F33216743D5F" + type: "advancement" + }] + title: "Crusher’s Hut" + x: 2.5d + y: -9.0d + } + { + dependencies: ["1AFDAA3909136444"] + description: [ + "The Blacksmith will work when they receive a request for any of those items from another worker." + "" + "&lNote:&r The Blacksmith’s Hut cannot be built until you have a level 3 Mine (or three level 1 Mines, or another equivalent) and have finished the research in the University." + ] + id: "60247F70F86D4E33" + min_width: 300 + rewards: [ + { + id: "576FA0120872C6AE" + type: "xp" + xp: 50 + } + { + id: "316D112BCE5EBF74" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "The Blacksmith is a 3x3 crafter and can make any vanilla tools, armor, swords, and shields (no bows or redstone items)" + tasks: [{ + advancement: "minecolonies:production/build_blacksmith" + criterion: "" + icon: "minecolonies:blockhutblacksmith" + id: "16B9357028035C3F" + type: "advancement" + }] + title: "Blacksmith’s Hut" + x: 4.5d + y: -8.5d + } + { + dependencies: ["2B0E3E6924D17A76"] + description: [ + "They will only do this upon request, whether from the Cook, the postbox, or as a minimum stock in the Warehouse." + "" + "The Baker can also craft some non-vanilla breads:" + "" + "- Sweet bread, made from wheat and a honey bottle. Available at Bakery level 3. Has slightly higher saturation than normal bread, also gives you a speed boost and removes poison." + "" + "- Milk-infused bread, made from wheat and a milk bucket. Available at Bakery level 4. Removes all potion effects (like milk buckets do)." + "" + "- Golden bread, made from wheat and a gold ingot. Available at Bakery level 5. Instantly heals 2 hearts." + "" + "- Chorus bread, made from wheat and a chorus fruit. Available after completing the Know the End research in the University. Has higher saturation than normal bread and teleports you to the surface after eating it." + ] + id: "7E47815F9083FC5F" + min_width: 300 + rewards: [ + { + id: "782E2F5AFEDDF183" + type: "xp" + xp: 50 + } + { + count: 16 + id: "5477AC6B9808E793" + item: "minecraft:bread" + type: "item" + } + { + id: "2F01DC5D0D6D208F" + item: "minecraft:cake" + type: "item" + } + { + count: 32 + id: "7EE19EF309DD6784" + item: "minecraft:cookie" + type: "item" + } + ] + subtitle: "The Baker will craft bread dough, cookie dough, cake dough, and raw pumpkin pie, then bake these in a furnace to create bread, cookies, cakes, and pumpkin pies" + tasks: [{ + advancement: "minecolonies:production/build_baker" + criterion: "" + icon: "minecolonies:blockhutbaker" + id: "5006A8FC894CEC21" + type: "advancement" + }] + title: "Bakery" + x: -5.25d + y: -2.705357142857139d + } + { + dependencies: ["1AFDAA3909136444"] + description: [ + "The Carpenter will also craft a few other items, including cactus planks, shingles, timber frames, compost barrels, and racks. For them to do this, you must teach the Sawmill the recipes and the Carpenter must receive a request for an item from another worker." + "" + "&lNote:&r The Sawmill cannot be built until you have a level 3 Forester’s Hut (or three level 1 Forester’s Huts, or another equivalent) and have finished the research in the University." + ] + id: "4A81B022AAEF4B12" + min_width: 300 + rewards: [ + { + id: "031E161C7814BC3D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "209113C5056F5225" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "The Sawmill is where the Carpenter will craft any items made of at least 75% wood that do not include ingots, stone, redstone (or produce a redstone signal), or string" + tasks: [{ + advancement: "minecolonies:production/build_sawmill" + criterion: "" + icon: "minecolonies:blockhutsawmill" + id: "4E9BA44792F89BC4" + type: "advancement" + }] + title: "Sawmill" + x: 6.999999999999993d + y: -6.125000000000007d + } + { + dependencies: ["1AFDAA3909136444"] + description: [ + "Doing this will make the block the Sifter is sifting disappear." + "" + "&lNote:&r The Sifter’s Hut cannot be built until you have a level 3 Fisher’s Hut (or three level 1 Fisher’s Huts, or another equivalent) and have finished the research in the University." + ] + id: "714AB886BD12D987" + min_width: 300 + rewards: [ + { + id: "4385BD1EF382C768" + type: "xp" + xp: 50 + } + { + count: 16 + id: "402223E8D76EFD67" + item: "minecraft:dirt" + type: "item" + } + { + count: 16 + id: "3AEF8176DE5676F8" + item: "minecraft:gravel" + type: "item" + } + { + count: 16 + id: "2A00221FCE7C78C7" + item: "minecraft:sand" + type: "item" + } + { + count: 16 + id: "544FADF286B54E7A" + item: "minecraft:soul_sand" + type: "item" + } + ] + subtitle: "The Sifter’s Hut is where the Sifter will sift through dirt, gravel, sand, or soul sand to find loot" + tasks: [{ + advancement: "minecolonies:production/build_sifter" + criterion: "" + icon: "minecolonies:blockhutsifter" + id: "428E5D130C25010B" + type: "advancement" + }] + title: "Sifter’s Hut" + x: 6.0d + y: -7.0d + } + { + dependencies: ["1AFDAA3909136444"] + description: [ + "The higher the level of the Smeltery, the more furnaces the Smelter will be able to use. A higher level will also have a higher chance to double and even triple the ingot output per block of ore. The Smelter’s Strength level will sometimes determine the chance to double or triple the ingot output of ores, according to the Smeltery level." + "" + "&lNote:&r The Smeltery cannot be built until you have a level 2 Mine (or two level 1 Mines) and have finished the research in the University." + ] + id: "2B10D2581C1C4ABD" + min_width: 300 + rewards: [ + { + id: "1C98D173E9885E39" + type: "xp" + xp: 50 + } + { + count: 16 + id: "32E91487CDB8DC35" + item: "minecraft:gold_ore" + type: "item" + } + { + count: 16 + id: "0E444C96F88D6358" + item: "minecraft:iron_ore" + type: "item" + } + ] + subtitle: "The Smeltery is where the Smelter will smelt ores into ingots" + tasks: [{ + advancement: "minecolonies:production/build_smeltery" + criterion: "" + icon: "minecolonies:blockhutsmeltery" + id: "337C142DEFF2E8C5" + type: "advancement" + }] + title: "Smeltery" + x: 3.5d + y: -9.0d + } + { + dependencies: ["1AFDAA3909136444"] + description: [ + "They can also pop chorus fruits! The Stone Smelter will only work when they have been taught the recipe, receive a request from another worker, and have the needed materials." + "" + "&lNote:&r The Stone Smeltery cannot be built until you have a level 3 Smeltery (or three level 1 Smelteries, or another equivalent) and have finished the research in the University." + ] + id: "3817F83F1C62CDE7" + min_width: 300 + rewards: [ + { + id: "3162729598E7D8C7" + type: "xp" + xp: 50 + } + { + count: 64 + id: "033A29463C8036C7" + item: "minecraft:cobblestone" + type: "item" + } + { + count: 64 + id: "1AF5E5B94F96F973" + item: "minecraft:clay_ball" + type: "item" + } + ] + subtitle: "The Stone Smeltery is where the Stone Smelter will smelt cobblestone into stone, stone bricks into cracked stone bricks, clay balls into bricks, clay blocks into terracotta, terracotta into glazed terracotta, all types of stone into all types of smooth stone, and logs into charcoal" + tasks: [{ + advancement: "minecolonies:production/build_stone_smeltery" + criterion: "" + icon: "minecolonies:blockhutstonesmeltery" + id: "34526FFC19F6A674" + type: "advancement" + }] + title: "Stone Smeltery" + x: 5.5d + y: -8.0d + } + { + dependencies: ["60247F70F86D4E33"] + description: [ + "They can also craft end stone from cobblestone and an ender pearl, but only if you have completed the Know the End research in the University. The Stonemason will only work when they receive a request from another worker and have the needed materials. You will also need to teach the Stonemason’s Hut the recipes you want the Stonemason to craft." + "" + "&lNote:&r The Stonemason’s Hut cannot be built until you have a level 1 Blacksmith’s Hut and have finished the research in the University." + ] + id: "1975972CC169BF29" + min_width: 300 + rewards: [ + { + id: "799F6E6A831BB021" + type: "xp" + xp: 50 + } + { + id: "44CB798033C986E7" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "The Stonemason’s Hut is where the Stonemason will craft 3x3 recipes made entirely out of cobblestone, stone, andesite, diorite, granite, quartz, purpur, nether bricks, prismarine, sandstones, blackstone, basalt, and/or ores (no ingots or redstone items)" + tasks: [{ + advancement: "minecolonies:production/build_stonemason" + criterion: "" + icon: "minecolonies:blockhutstonemason" + id: "25FED4F6D64E4D75" + type: "advancement" + }] + title: "Stonemason’s Hut" + x: 5.321428571428569d + y: -9.205357142857146d + } + { + dependencies: ["59C805F0C3A3E7E0"] + description: [ + " The new Guard will need a bed in a house in order to spawn. However, once they are hired at the Guard Tower, that becomes their new residence and the bed in the house will open up for another new citizen (child or recruit)." + "" + "The Guard will patrol a set distance around their tower, which is based on their tower’s level." + ] + id: "5AAE0B90988577A3" + rewards: [ + { + id: "7F2B80C565627B79" + type: "xp" + xp: 50 + } + { + id: "666118E0EA971592" + item: { + Count: 1 + id: "minecraft:iron_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2C9D9EA561744C88" + item: { + Count: 1 + id: "minecraft:iron_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "79BFDEBE4E5F21A9" + item: { + Count: 1 + id: "minecraft:iron_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5F1FD028DE9F2C9E" + item: { + Count: 1 + id: "minecraft:iron_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0F2F996D315681EE" + item: { + Count: 1 + id: "minecraft:iron_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + subtitle: "The Guard Tower will employ and house 1 Guard to protect your colony" + tasks: [{ + advancement: "minecolonies:minecolonies/build_guard_tower" + criterion: "" + icon: "minecolonies:blockhutguardtower" + id: "168905A0417A71C9" + type: "advancement" + }] + title: "Guard Tower" + x: -2.9642857142857153d + y: -4.0d + } + { + dependencies: ["1AFDAA3909136444"] + description: [ + "The Barracks is the ultimate protection for your colony. The Barracks will hold 4 Barracks Towers within its structure. The Barracks Towers (unlike the normal Guard Towers) will employ and house 1 Guard for every level built! Each new Guard will need a bed in a house in order to spawn. However, once they are hired at the Barracks Tower, that becomes their new residence and the bed in the house will open up for another new citizen. Each Barracks Tower can house and employ 5 Guards for a total of 20 Guards for your colony." + "" + "&lNote:&r The Barracks cannot be built until you have a level 3 Guard Tower (or three level 1 Guard Towers, or another equivalent) and have finished the research in the University." + ] + id: "774730F99DCFB203" + min_width: 300 + rewards: [ + { + id: "48F2A7874E79E598" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1390A2359F49A61A" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Step 4: Guards are the protecting force for your colony" + tasks: [{ + advancement: "minecolonies:military/build_barracks" + criterion: "" + icon: "minecolonies:blockhutbarracks" + id: "33F574192C6C48DE" + type: "advancement" + }] + title: "&aThe Military" + x: 2.5d + y: -5.0d + } + { + dependencies: ["774730F99DCFB203"] + description: [ + "Each new Guard will need a bed in a house in order to spawn. However, once they are hired at the Barracks Tower, that becomes their new residence and the bed in the house will open up for another new citizen (child or recruit)." + "" + "The Barracks Tower locations are predetermined by the Barracks that you choose. They are placed in specific locations to fit within the Barracks." + "" + "Guard(s) will patrol a set distance around their tower, which is based on their tower’s level." + "" + "&lNote:&r If you place Barracks/Barracks Towers near your colony border and level them up, your border will expand." + ] + id: "733931C5D0F16985" + min_width: 300 + rewards: [ + { + id: "2AC7A1C3E2CB4B48" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1ED7D5BF92CA334E" + table_id: 2501998888776764148L + type: "loot" + } + ] + subtitle: "The Barracks Towers will employ and house 1 Guard for every level built (unlike the normal Guard Towers, which can only have 1 Guard at a time)" + tasks: [{ + advancement: "minecolonies:military/build_all_barracks_towers" + criterion: "" + icon: "minecolonies:blockhutbarrackstower" + id: "1CF307C748232CC4" + type: "advancement" + }] + title: "Build all 4 Barracks Towers" + x: 3.5d + y: -4.0d + } + { + dependencies: ["774730F99DCFB203"] + description: [ + "This also allows them to level up without a risk of dying to mobs. A new Archer in Training will need a bed in a house in order to spawn. However, once they are hired at the Archery, that becomes their new residence and the bed in the house will open up for another new citizen (child or recruit)." + "" + "The number of students that can be trained at a time depends on the level of the Archery." + "" + "&lNote:&r The Archery cannot be built until you have a level 3 Barracks (or three level 1 Barracks, or another equivalent) and have finished the research in the University." + ] + id: "48C80615EA9AB99B" + min_width: 300 + rewards: [ + { + id: "55209D79383F954D" + type: "xp" + xp: 50 + } + { + id: "2B429D8EA36998E7" + item: { + Count: 1 + id: "minecraft:bow" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "463E36932E3ACE1C" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Archery is where your Archers in Training will train to become Archer Guards" + tasks: [{ + advancement: "minecolonies:military/build_archery" + criterion: "" + icon: "minecolonies:blockhutarchery" + id: "7AD0497E30F4CD72" + type: "advancement" + }] + title: "Archery" + x: 2.5d + y: -3.0d + } + { + dependencies: ["774730F99DCFB203"] + description: [ + "This also allows them to level up without a risk of dying to mobs. A new Knight in Training will need a bed in a house in order to spawn. However, once they are hired at the Combat Academy, that becomes their new residence and the bed in the house will open up for another new citizen (child or recruit)." + "" + "The number of students that can be trained at a time depends on the level of the Academy." + "" + "The Knights in Training require a sword and shield to practice. They will attack the practice dummies, a pumpkin on top of a bale of hay.The Knights in Training are not actual Guards even though they will be dressed as Knight Guards. They will not help defend the colony." + "" + "&lNote:&r The Combat Academy cannot be built until you have a level 3 Barracks (or three level 1 Barracks, or another equivalent) and have finished the research in the University ." + ] + id: "56D88CF6B3413703" + min_width: 300 + rewards: [ + { + id: "294DFE4AC580804D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4B647ED791326213" + table_id: 2501998888776764148L + type: "loot" + } + ] + subtitle: "The Combat Academy is where your Knights in Training will train to become Knight Guards" + tasks: [{ + advancement: "minecolonies:military/build_combat_academy" + criterion: "" + icon: "minecolonies:blockhutcombatacademy" + id: "417DD44AB8E1C120" + type: "advancement" + }] + title: "Combat Academy" + x: 1.5d + y: -4.0d + } + { + dependencies: ["7BA609263896CABC"] + description: [ + "It has no worker, and increases colonists’ happiness just by existing. The Undertaker will visit the Mystical Site when there are no colonists to bury. Doing so will increase their Mana skill, and as such, their chance of resurrecting a killed citizen." + "" + "&lNote:&r The Mystical Site cannot be built until you have finished the research in the University." + ] + id: "7E7E7C776B35E3F8" + rewards: [ + { + id: "6F5DDC7696CFF3D1" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3C063D4DE2362F99" + table_id: 2501998888776764148L + type: "loot" + } + ] + subtitle: "The Mystical Site is a simple building to increase a colony’s overall happiness level" + tasks: [{ + advancement: "minecolonies:minecolonies/build_mysticalsite" + criterion: "" + icon: "minecolonies:blockhutmysticalsite" + id: "7455CD71F15626F2" + type: "advancement" + }] + title: "Mystical Site" + x: 7.214285714285715d + y: -3.776785714285708d + } + { + dependencies: ["0E86F1602C93A043"] + description: [ + "he Beekeeper breeds bees and harvests honeycombs or honey bottles (you can choose which on the second page of the Apiary’s GUI).The level of the Apiary determines the max number of hives the Beekeeper can take care of." + "" + "&lNote:&r If the Beekeeper is asking for hives but there are some nearby, make sure you’ve set the hives for them to take care of with the hive tool. This tool is accessed from the second page of the Apiary GUI" + ] + id: "17BFF813E6FCC0E3" + rewards: [ + { + id: "4828D300A8D6153D" + type: "xp" + xp: 50 + } + { + count: 16 + id: "457A06DD5A1CD104" + item: "minecraft:honey_bottle" + type: "item" + } + { + id: "085EEDA162661DCB" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Apiary is where the Beekeeper works" + tasks: [{ + id: "026AC0A53DB9521C" + item: "minecolonies:blockhutbeekeeper" + type: "item" + }] + x: -2.5d + y: -7.5d + } + { + dependencies: ["3817F83F1C62CDE7"] + description: [ + "The Concrete Mixer will only make concrete and concrete powder when they receive a request for a block and have the needed materials. (All their recipes are pretaught)." + "" + "&lNote:&r The Concrete Mixer’s Hut cannot be built until you have a level 1 Crusher’s Hut and have finished the research in the University." + ] + id: "7A0C2FFA2D60BC8E" + min_width: 300 + rewards: [ + { + id: "69F8B52D1D5AC242" + type: "xp" + xp: 50 + } + { + count: 32 + id: "1C40170697748649" + item: "minecraft:gravel" + type: "item" + } + { + count: 32 + id: "31A21CE3A5636872" + item: "minecraft:sand" + type: "item" + } + ] + subtitle: "The Concrete Mixer will craft all types of concrete powder and place them in flowing water (built in to their hut), then mine the resulting concrete" + tasks: [{ + id: "4986616A0A345ED3" + item: "minecolonies:blockhutconcretemixer" + type: "item" + }] + x: 6.5d + y: -8.0d + } + { + dependencies: ["7A0C2FFA2D60BC8E"] + description: [ + "They won’t dye concrete or concrete powder, though. The Dyer will only do this if they receive a request from another worker and have the necessary materials. The Dyer’s Hut automatically knows how to make green dye and red sand, but you must teach it the recipes for the other dyes and the dyed items." + "" + "&lNote:&r The Dyer cannot be built until you have a level 3 Flower Shop (or three level 1 Flower Shops, or another equivalent) and have finished the research in the University." + ] + id: "4A902A3B87897627" + min_width: 300 + rewards: [ + { + id: "0591B02653B53D52" + type: "xp" + xp: 50 + } + { + id: "7B15E8579CAB1856" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Dyer’s Hut is where the Dyer will craft dyes and dye other items, including red nether bricks and dark prismarine" + tasks: [{ + id: "2AF81FDA1A566D3A" + item: "minecolonies:blockhutdyer" + type: "item" + }] + x: 7.5d + y: -8.0d + } + { + dependencies: ["5AAE0B90988577A3"] + description: [ + "The Enchanter will collect XP from other workers to create the enchanted books. The higher their Mana level, the more XP they will collect per trip. They will not apply the enchanted books to tools and armor, you must do that yourself." + "" + "The higher the level of the Enchanter’s Tower, the higher the level of the enchanted books the Enchanter will produce (the Enchanter’s Knowledge level also contributes to this)." + "" + "The Enchanter can also craft some magical scrolls upon request:" + "- The Ultrasafe Colony Teleport Scroll, crafted with 3 paper, a compass, and the build tool. (Outputs 3 scrolls)." + "- The Ultrasafe Colony Group Teleport Scroll, crafted with 3 Ultrasafe Colony Teleport Scrolls. The Enchanter’s Tower must be at least level 2 for the Enchanter to craft this scroll." + "- The Spatial Guard Reinforcements Scroll, crafted with 1 Ultrasafe Colony Teleport Scroll, 5 lapis lazuli, 1 ender pearl, and 1 paper. (Outputs 2 scrolls). The More Scrolls research in the University must be completed for the Enchanter to craft this scroll." + "- The Worker-Where-Are-You Scroll, crafted with 1 Ultrasafe Colony Teleport Scroll, 6 glowstone dust, and 2 paper. (Outputs 5 scrolls.) The More Scrolls research in the University must be completed for the Enchanter to craft this scroll." + ] + id: "29F9218058834A42" + min_width: 400 + rewards: [ + { + id: "30BBBB406EA179B6" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6524FCBBAAD2648E" + table_id: 1235506154212082407L + type: "loot" + } + { + id: "4290A34F8261FAAC" + item: "cyclic:disenchanter" + type: "item" + } + ] + subtitle: "The Enchanter’s Tower is where the Enchanter will create enchanted books, as long as they have Ancient Tomes" + tasks: [{ + advancement: "minecolonies:production/build_enchanter" + criterion: "" + icon: "minecolonies:blockhutenchanter" + id: "49E34CAE749CD6BE" + type: "advancement" + }] + title: "Enchanter’s Tower" + x: -2.9642857142857153d + y: -3.0d + } + { + dependencies: ["4A81B022AAEF4B12"] + description: [ + "For the Fletcher to work, they must receive a request from another worker and have the necessary materials. The Fletcher’s Hut must also have been taught the crafting recipes for all the items you want the Fletcher to be able to craft." + "" + "&lNote:&r The Fletcher’s Hut cannot be built until you have a level 1 Sawmill and have finished the research in the University." + ] + id: "3336D55229F6F291" + min_width: 300 + rewards: [ + { + id: "5300DF6F444C1321" + type: "xp" + xp: 50 + } + { + count: 32 + id: "3C70BFD0A3F2B515" + item: "minecraft:white_wool" + type: "item" + } + { + count: 32 + id: "4E5F56ED54E4C2F3" + item: "minecraft:string" + type: "item" + } + ] + subtitle: "The Fletcher’s Hut is where the Fletcher will craft arrows and items that use string or wool, such as bows, fishing poles, and paintings" + tasks: [{ + id: "2D13311545CC0E68" + item: "minecolonies:blockhutfletcher" + type: "item" + }] + x: 8.0d + y: -6.0d + } + { + dependencies: ["2B10D2581C1C4ABD"] + description: [ + "For the Glassblower to work, they must receive a request from another worker and have the necessary materials, including fuel if they’re smelting sand into glass. The Glassblower’s Hut must also have been taught the crafting recipe for glass panes." + "" + "&lNote:&r The Glassblower’s Hut cannot be built until you have a level 3 Smeltery (or three level 1 Smelteries, or another equivalent) and have finished the research in the University." + ] + id: "2366B14A748E7116" + min_width: 300 + rewards: [ + { + id: "44C911A036D069DC" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "342E9E249557A680" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "The Glassblower’s Hut is where the Glassblower will smelt sand into glass and make glass panes from glass blocks" + tasks: [{ + id: "3EBCD07E7A718A9E" + item: "minecolonies:blockhutglassblower" + type: "item" + }] + x: 4.0d + y: -9.88392857142857d + } + { + dependencies: ["607E70E027A50834"] + description: [ + "The recommended maximum grave count per Graveyard level is below. This is not mandatory, and the actual amount will vary between styles." + "" + "&lNote:&r The Graveyard cannot be built until you have finished the research in the University." + ] + id: "638182A810BDACB7" + rewards: [ + { + id: "1F54B7DDB38F9D9C" + type: "xp" + xp: 50 + } + { + id: "7E7DCD43270C93A7" + item: { + Count: 1 + id: "tombstone:decorative_grave_cross" + tag: { + model_texture: 0 + } + } + type: "item" + } + { + id: "5C1ADE55FD75694D" + table_id: 1235506154212082407L + type: "random" + } + ] + subtitle: "The Graveyard is where the Undertaker will bury your deceased citizens" + tasks: [{ + id: "6B5B7395705E1FA1" + item: "minecolonies:blockhutgraveyard" + type: "item" + }] + x: 5.5d + y: -3.5d + } + { + dependencies: ["638182A810BDACB7"] + description: [ + "The Healer will heal them with various items." + "" + "&lNote:&r The Hospital cannot be built until you have finished the research in the University." + ] + id: "59CDAF55C55D8CEA" + rewards: [ + { + id: "12AF66958F2C6F98" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1EDBC1B7DF0768AB" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "748D66E0326C8464" + table_id: 5236874501558129216L + type: "loot" + } + ] + subtitle: "The Hospital is where injured or sick citizens go" + tasks: [{ + id: "5C0E259D767B2020" + item: "minecolonies:blockhuthospital" + type: "item" + }] + x: 6.142857142857139d + y: -2.5982142857142776d + } + { + dependencies: ["59C805F0C3A3E7E0"] + description: [ + "The House is also a way to get more citizens for your colony.Each level of the House will house one citizen." + "" + "For additional citizens to spawn, you first have to have enough space in your House(s) to house your first four citizens. After you have created enough space for your initial four citizens, you have two options for your colony to grow. The first way is to have at least one House at least level 2 that houses a male and a female citizen, which will allow a child to be born in the colony when there is room. You can also make space for a new citizen, go to the Tavern, wait for a traveler to show up, and then give them the items they request to recruit them." + "" + "&lNote:&r To have over 25 citizens, you must first complete the research in the University." + ] + id: "0DD2F97CCD2B06D3" + min_width: 300 + rewards: [ + { + id: "1BB3B46D1487D91F" + type: "xp" + xp: 50 + } + { + id: "52F6905446E18E24" + item: "minecolonies:blockhutcitizen" + type: "item" + } + { + exclude_from_claim_all: true + id: "10F6E044C7A59CC4" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Citizens will go to the House they are assigned to at night to sleep" + tasks: [{ + advancement: "minecolonies:minecolonies/build_citizen" + criterion: "" + icon: "minecolonies:blockhutcitizen" + id: "36D889058892FE7C" + type: "advancement" + }] + title: "House" + x: -0.5d + y: -3.0d + } + { + dependencies: ["527567CD8C852ED6"] + description: [ + "You will have to capture and bring in two rabbits to the Rabbit Hutch, as the Rabbit Herder will not catch and bring in any rabbits." + "" + "&lNote:&r The Rabbit Herder will only keep two rabbits alive per hut level, so at level 5 they will have ten rabbits in their holding pens to breed and butcher. This means they will be faster at producing and collecting meat and other drops." + ] + id: "69246A49A21C1818" + rewards: [ + { + id: "7144D7D534EC2640" + type: "xp" + xp: 10 + } + { + count: 16 + id: "5ED61D53535B0820" + item: "minecraft:rabbit" + type: "item" + } + ] + subtitle: "The Rabbit Hutch is where the Rabbit Herder will raise and butcher rabbits" + tasks: [{ + id: "665D9A2330FEFEFA" + item: "minecolonies:blockhutrabbithutch" + type: "item" + }] + x: -8.5d + y: -4.0d + } + { + dependencies: ["1975972CC169BF29"] + description: [ + "The Mechanic’s Hut is where the Mechanic will craft redstone items, rails, minecarts, clocks, compasses, sea lanterns, torches, lanterns, jack-o-lanterns, storage blocks (like blocks of iron, coal, quartz, etc), dried kelp blocks, blue ice, packed ice, enchantment tables, ender chests, tripwire hooks, sticky pistons, gates, multi-pistons, glowstone blocks, anything made with blaze rods, and many other items that no other crafter can make. For the Mechanic to work, they must receive a request from another worker and have the necessary materials. The Mechanic’s Hut must also have been taught the crafting recipes for all the items you want the Mechanic to be able to craft." + "" + "&lNote:&r The Mechanic’s Hut cannot be built until you have a level 3 Blacksmith’s Hut (or three level 1 Blacksmith’s Huts, or another equivalent) and have finished the research in the University." + ] + id: "136DFA76D880E5CF" + min_width: 300 + rewards: [ + { + id: "252EE224C861EAF4" + type: "xp" + xp: 50 + } + { + count: 16 + id: "2FDC624DCC8D74BB" + item: "minecraft:redstone_ore" + type: "item" + } + { + id: "5346BFCEEACED81D" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "The Mechanic is part of the supply production of your colony" + tasks: [{ + id: "2AF2A67B1EAE89EC" + item: "minecolonies:blockhutmechanic" + type: "item" + }] + x: 6.1785714285714235d + y: -9.705357142857142d + } + { + dependencies: ["0E86F1602C93A043"] + description: [ + "The Plantation’s level determines how many crops the Planter can plant at a time." + "" + "The Planter can also craft paper, books, sugar, and anything made with bamboo. The Planter will only make these items when they have been taught the recipes, receive a request for an item, and have the needed materials." + "" + "&lNote:&r The Plantation cannot be built until you have a level 3 Farm (or three level 1 Farms, or another equivalent) and have finished the research in the University." + ] + id: "702CD866C68E99FA" + rewards: [ + { + id: "32230017778DD2ED" + type: "xp" + xp: 50 + } + { + id: "0F715737F010CC8D" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "The Plantation is where the Planter will grow either sugar cane, bamboo, or cactus" + tasks: [{ + id: "088566B6F1B10128" + item: "minecolonies:blockhutplantation" + type: "item" + }] + x: -3.5d + y: -8.5d + } + { + dependencies: ["1AFDAA3909136444"] + description: [ + "Paper will increase the leveling speed of the Pupils.The level of the School determines how many Pupils can be taught at a time." + "" + "&lNote:&r The School cannot be built until you finish the research in the University." + ] + id: "607E70E027A50834" + rewards: [ + { + id: "211AAA0498755BE5" + type: "xp" + xp: 50 + } + { + count: 16 + id: "0E84FD645525D204" + item: "minecraft:book" + type: "item" + } + { + exclude_from_claim_all: true + id: "0187EDFD4AAC95D0" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "The School is where the Teacher will level up the Pupils’ (children) skills" + tasks: [{ + id: "61F9BEA1867DF4E9" + item: "minecolonies:blockhutschool" + type: "item" + }] + x: 5.0d + y: -4.5d + } + { + dependencies: ["36D889058892FE7C"] + id: "2FF5CFDBAFDBFF0B" + rewards: [ + { + id: "5920224463AA2666" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7BC968C932FE535A" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "43EB25F16E5C476C" + table_id: 2501998888776764148L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + advancement: "minecolonies:minecolonies/colony_population_25" + criterion: "" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/pop25.png" + } + } + id: "6399393EDB782A7F" + type: "advancement" + }] + title: "Reach colony population of 25 citizens" + x: -7.5d + y: -1.5d + } + { + dependencies: ["36D889058892FE7C"] + id: "207D687B1E77E835" + rewards: [ + { + id: "3775AC6F36A8AA4A" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "3EA670F188E73834" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "25921E0E37B9CF77" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + advancement: "minecolonies:minecolonies/colony_population_50" + criterion: "" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/pop50.png" + } + } + id: "2F83838B5D706132" + type: "advancement" + }] + title: "Reach colony population of 50 citizens" + x: -6.5d + y: -1.5d + } + { + dependencies: ["36D889058892FE7C"] + id: "3EA5F79662A298C1" + rewards: [ + { + id: "0839D2245E0CB41C" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "7BC2DE4D2F0B7520" + table_id: 7708913941106525583L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + advancement: "minecolonies:minecolonies/colony_population_75" + criterion: "" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/pop75.png" + } + } + id: "6C55223113AE1625" + type: "advancement" + }] + title: "Reach colony population of 75 citizens" + x: -5.5d + y: -1.5d + } + { + dependencies: ["33F574192C6C48DE"] + id: "1C99F96B2CEAF51B" + rewards: [ + { + id: "5981ABF98CA8B5E2" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "191F282177ACCFD3" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "4AD759D6712F3898" + table_id: 2501998888776764148L + type: "loot" + } + { + exclude_from_claim_all: true + id: "605B155EB9ACC5FE" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + advancement: "minecolonies:military/army_30" + criterion: "" + icon: { + Count: 1 + id: "forbidden_arcanus:reinforced_deorum_sword" + tag: { + Damage: 0 + } + } + id: "0FECA4B3032816FC" + type: "advancement" + }] + title: "Reach army of 30 soldiers" + x: 4.0d + y: -1.5d + } + { + dependencies: ["33F574192C6C48DE"] + id: "14794213C3F0A58D" + rewards: [ + { + id: "07C635F062A46478" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "1DEA7A8DD4252578" + table_id: 7708913941106525583L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + advancement: "minecolonies:military/army_80" + criterion: "" + icon: { + Count: 1 + id: "undergarden:forgotten_battleaxe" + tag: { + Damage: 0 + } + } + id: "6C7987F32948D441" + type: "advancement" + }] + title: "Reach army of 80 soldiers" + x: 5.0d + y: -1.5d + } + { + dependencies: ["607EDC7794E2FC97"] + id: "32B211F646F52380" + rewards: [ + { + id: "2AE8050FADF38E94" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "6BC941983493E0BF" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "3021519DFE2BEAAA" + table_id: 7708913941106525583L + type: "loot" + } + { + exclude_from_claim_all: true + id: "040872B5B293C257" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + advancement: "minecolonies:minecolonies/build_town_hall_5" + criterion: "" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/thl5.png" + } + } + id: "33D740A6346D0AA3" + type: "advancement" + }] + title: "Build Town Hall to level 5" + x: -1.5d + y: -1.5d + } + { + dependencies: ["337C142DEFF2E8C5"] + id: "559A68258E59A60D" + rewards: [ + { + id: "323873BB12908ED0" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "54E2DFC822A47DF8" + table_id: 5236874501558129216L + type: "loot" + } + { + exclude_from_claim_all: true + id: "4EC2921976F9C09B" + table_id: 7708913941106525583L + type: "loot" + } + { + exclude_from_claim_all: true + id: "3BED99C46C9EE8C2" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + advancement: "minecolonies:production/build_smeltery_5" + criterion: "" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/sl5.png" + } + } + id: "630199BF300D5A8F" + type: "advancement" + }] + title: "Build Smeltery to level 5" + x: -0.5d + y: -1.5d + } + { + dependencies: ["7455CD71F15626F2"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/msl5.png" + } + } + id: "2E9E68F8BBC93C2C" + rewards: [ + { + id: "0EF3FCA2906A9D94" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "52FBE637DB2AAFF4" + table_id: 5236874501558129216L + type: "loot" + } + { + exclude_from_claim_all: true + id: "6AB3F321A042D241" + table_id: 7708913941106525583L + type: "loot" + } + { + exclude_from_claim_all: true + id: "299EACF55F712E7E" + table_id: 5236874501558129216L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + advancement: "minecolonies:minecolonies/build_mysticalsite_5" + criterion: "" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/msl5.png" + } + } + id: "1A02C322A18EDFE8" + type: "advancement" + }] + title: "Build Mystical Site to level 5" + x: 0.5d + y: -1.5d + } + { + dependencies: ["33F574192C6C48DE"] + id: "3E8C00C8D81421F4" + rewards: [ + { + id: "446449B7D19866DC" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7B99B7EB67D77E8A" + table_id: 2501998888776764148L + type: "loot" + } + ] + shape: "diamond" + tasks: [{ + advancement: "minecolonies:military/army_8" + criterion: "" + icon: { + Count: 1 + id: "mysticalagriculture:prudentium_bow" + tag: { + Damage: 0 + } + } + id: "1F2D04AC8514F4A1" + type: "advancement" + }] + title: "Reach army of 8 soldiers" + x: 3.0d + y: -1.5d + } + { + dependencies: ["3B3160E21CBAD118"] + id: "4FBC0947A746EC91" + rewards: [ + { + id: "68F4835C15576B3C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0445EBC6C65F17AF" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "5C65877B7C355270" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + advancement: "minecolonies:production/deep_mine" + criterion: "" + id: "130A99A1327FC79D" + type: "advancement" + }] + title: "Have a Miner mine to bedrock" + x: -5.464285714285715d + y: -6.0d + } + ] + title: "&3&oMineColonies" +} diff --git a/minecraft/config/ftbquests/quests/chapters/mining_gadget.snbt b/minecraft/config/ftbquests/quests/chapters/mining_gadget.snbt new file mode 100644 index 0000000..a49c2b4 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/mining_gadget.snbt @@ -0,0 +1,602 @@ +{ + autofocus_id: "0000000000001F58" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "mining_gadget" + group: "4E2A2310634498BA" + icon: { + Count: 1 + id: "mininggadgets:mininggadget" + tag: { + battery_tier: 0 + } + } + id: "0000000000000766" + images: [{ + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 0.75d + y: -0.5d + }] + order_index: 1 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + id: "0000000000000767" + rewards: [{ + exclude_from_claim_all: true + id: "3865634CE98C1502" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "000000000000076C" + item: "mininggadgets:upgrade_empty" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["0000000000000767"] + id: "0000000000000772" + rewards: [{ + exclude_from_claim_all: true + id: "5537DF4566B7C68C" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000773" + item: "mininggadgets:modificationtable" + type: "item" + }] + x: 1.5d + y: -3.0d + } + { + dependencies: ["0000000000000767"] + id: "0000000000000774" + rewards: [{ + exclude_from_claim_all: true + id: "54E734AED1C066A5" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000775" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mininggadgets:mininggadget_simple" + tag: { + battery_tier: 0 + } + } + { + Count: 1b + id: "mininggadgets:mininggadget_fancy" + tag: { + battery_tier: 0 + } + } + { + Count: 1b + id: "mininggadgets:mininggadget" + tag: { + battery_tier: 0 + } + } + ] + } + } + title: "Mining Gadgets" + type: "item" + }] + x: -5.25d + y: 0.0d + } + { + dependencies: ["0000000000000767"] + id: "0000000000000776" + rewards: [{ + exclude_from_claim_all: true + id: "14C1111A3047AA28" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000777" + item: "mininggadgets:upgrade_efficiency_1" + type: "item" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["0000000000000776"] + id: "0000000000000778" + rewards: [{ + exclude_from_claim_all: true + id: "51C01C974F3EBAB6" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000779" + item: "mininggadgets:upgrade_efficiency_2" + type: "item" + }] + x: 4.5d + y: 0.0d + } + { + dependencies: ["0000000000000778"] + id: "000000000000077A" + rewards: [{ + exclude_from_claim_all: true + id: "7D38242D4156C8BA" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000077B" + item: "mininggadgets:upgrade_efficiency_3" + type: "item" + }] + x: 6.0d + y: 0.0d + } + { + dependencies: ["000000000000077A"] + id: "000000000000077C" + rewards: [{ + exclude_from_claim_all: true + id: "20907C9E55B978CC" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000077E" + item: "mininggadgets:upgrade_efficiency_4" + type: "item" + }] + x: 7.5d + y: 0.0d + } + { + dependencies: ["000000000000077C"] + id: "000000000000077F" + rewards: [{ + exclude_from_claim_all: true + id: "4B30DFD7972B585D" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000780" + item: "mininggadgets:upgrade_efficiency_5" + type: "item" + }] + x: 9.0d + y: 0.0d + } + { + dependencies: ["0000000000000767"] + id: "0000000000000781" + rewards: [{ + exclude_from_claim_all: true + id: "318A6AE144F51D7C" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000782" + item: "mininggadgets:upgrade_fortune_1" + type: "item" + }] + x: 0.0d + y: 2.25d + } + { + dependencies: ["0000000000000781"] + id: "0000000000000783" + rewards: [{ + exclude_from_claim_all: true + id: "53989AAF637E858B" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000784" + item: "mininggadgets:upgrade_fortune_2" + type: "item" + }] + x: 0.0d + y: 3.75d + } + { + dependencies: ["0000000000000783"] + id: "0000000000000785" + rewards: [{ + exclude_from_claim_all: true + id: "2A6FCDD6F3604777" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000786" + item: "mininggadgets:upgrade_fortune_3" + type: "item" + }] + x: 0.0d + y: 5.25d + } + { + dependencies: ["0000000000000767"] + id: "0000000000000787" + rewards: [{ + exclude_from_claim_all: true + id: "2FEEC221C57404AD" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000788" + item: "mininggadgets:upgrade_range_1" + type: "item" + }] + x: -3.0d + y: -3.0d + } + { + dependencies: ["0000000000000787"] + id: "0000000000000789" + rewards: [{ + exclude_from_claim_all: true + id: "4FCD4967C7CD4205" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000078A" + item: "mininggadgets:upgrade_range_2" + type: "item" + }] + x: -4.5d + y: -3.0d + } + { + dependencies: ["0000000000000789"] + id: "000000000000078B" + rewards: [{ + exclude_from_claim_all: true + id: "0AAEA0B8E37C6462" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000078C" + item: "mininggadgets:upgrade_range_3" + type: "item" + }] + x: -6.0d + y: -3.0d + } + { + dependencies: ["0000000000000774"] + id: "000000000000078D" + rewards: [{ + exclude_from_claim_all: true + id: "31EF54A17A748D8C" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000078E" + item: "mininggadgets:upgrade_battery_1" + type: "item" + }] + x: -5.25d + y: 2.25d + } + { + dependencies: ["000000000000078D"] + id: "000000000000078F" + rewards: [{ + exclude_from_claim_all: true + id: "2EAA98CC4CE166DC" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000790" + item: "mininggadgets:upgrade_battery_2" + type: "item" + }] + x: -5.25d + y: 3.75d + } + { + dependencies: ["000000000000078F"] + id: "0000000000000791" + rewards: [{ + exclude_from_claim_all: true + id: "63001A57FBE23EBE" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000792" + item: "mininggadgets:upgrade_battery_3" + type: "item" + }] + x: -5.25d + y: 5.25d + } + { + dependencies: ["0000000000000767"] + id: "0000000000000793" + rewards: [{ + exclude_from_claim_all: true + id: "61743062E7D3C31C" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000794" + item: "mininggadgets:upgrade_silk" + type: "item" + }] + x: -2.25d + y: 1.5d + } + { + dependencies: ["0000000000000767"] + id: "0000000000000795" + rewards: [{ + exclude_from_claim_all: true + id: "6D5F1769DA24C14B" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000796" + item: "mininggadgets:upgrade_void_junk" + type: "item" + }] + x: 1.5d + y: 2.25d + } + { + dependencies: ["0000000000000767"] + id: "0000000000000797" + rewards: [{ + exclude_from_claim_all: true + id: "7AB15C88DC16C50B" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000798" + item: "mininggadgets:upgrade_magnet" + type: "item" + }] + x: 3.0d + y: -3.0d + } + { + dependencies: ["0000000000000767"] + id: "0000000000000799" + rewards: [{ + exclude_from_claim_all: true + id: "306DB50151748321" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000079A" + item: "mininggadgets:upgrade_size_1" + type: "item" + }] + x: -1.5d + y: -3.0d + } + { + dependencies: ["0000000000000767"] + id: "000000000000079B" + rewards: [{ + exclude_from_claim_all: true + id: "17520425738AA78D" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000079C" + item: "mininggadgets:upgrade_light_placer" + type: "item" + }] + x: -1.5d + y: 3.0d + } + { + dependencies: ["0000000000000767"] + id: "000000000000079D" + rewards: [{ + exclude_from_claim_all: true + id: "1FE3A711EC76554F" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000079E" + item: "mininggadgets:upgrade_freezing" + type: "item" + }] + x: 0.0d + y: -3.0d + } + { + id: "0000000000001F54" + rewards: [{ + exclude_from_claim_all: true + id: "5568BB1037B9D51A" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001F55" + item: { + Count: 1 + id: "buildinggadgets2:gadget_building" + tag: { + state: { + data: { } + serializer: "buildinggadgets2:dummy_serializer" + state: { + Name: "minecraft:air" + } + } + } + } + type: "item" + }] + x: 5.25d + y: -3.0d + } + { + id: "0000000000001F56" + rewards: [{ + exclude_from_claim_all: true + id: "76B97AD02D5F85F2" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001F57" + item: { + Count: 1 + id: "buildinggadgets2:gadget_exchanging" + tag: { + state: { + data: { } + serializer: "buildinggadgets2:dummy_serializer" + state: { + Name: "minecraft:air" + } + } + } + } + type: "item" + }] + x: 6.75d + y: -3.0d + } + { + id: "0000000000001F58" + rewards: [{ + exclude_from_claim_all: true + id: "16C9E3B71225D260" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001F59" + item: { + Count: 1 + id: "buildinggadgets2:gadget_copy_paste" + tag: { + mode: 0b + template_id: [I; + 1480606922 + -1165931906 + -1914804027 + -727964380 + ] + } + } + type: "item" + }] + x: 8.25d + y: -3.0d + } + { + id: "0000000000001F5A" + rewards: [{ + exclude_from_claim_all: true + id: "6A99237EC80438E5" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001F5B" + item: { + Count: 1 + id: "buildinggadgets2:gadget_destruction" + tag: { + fuzzy: 1b + overlay: 1b + } + } + type: "item" + }] + x: 9.75d + y: -3.0d + } + { + dependencies: ["0000000000001F58"] + id: "0000000000001F6C" + rewards: [{ + exclude_from_claim_all: true + id: "7C905A3B6A50D1ED" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001F6D" + item: "buildinggadgets2:template_manager" + type: "item" + }] + x: 8.25d + y: -1.5d + } + ] + title: "&3&oGadgets" +} diff --git a/minecraft/config/ftbquests/quests/chapters/modular_routers.snbt b/minecraft/config/ftbquests/quests/chapters/modular_routers.snbt new file mode 100644 index 0000000..cf81cbb --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/modular_routers.snbt @@ -0,0 +1,1651 @@ +{ + autofocus_id: "48931A7034A389BD" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "modular_routers" + group: "69B9F7247002FE35" + icon: "modularrouters:modular_router" + id: "59365E12379E0C8A" + images: [{ + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 0.8607142857142875d + y: -12.589285714285722d + }] + order_index: 7 + quest_links: [ ] + quests: [ + { + dependencies: ["058BAA533EFE63EB"] + description: ["&2Modular Routers&r is a flexible mod for moving items around in numerous ways."] + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "modularrouters:book" + } + } + id: "25DA3FA3A3B192ED" + min_width: 300 + rewards: [ + { + id: "6F29589C14DA0C6C" + type: "xp" + xp: 10 + } + { + count: 8 + id: "6882C3A353272F87" + item: "croptopia_additions:weiner" + type: "item" + } + { + exclude_from_claim_all: true + id: "0D172E728EF40EF0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oRedstone Component&r Quest*" + tasks: [{ + id: "2B92EF926E2D692F" + type: "checkmark" + }] + title: "Welcome to &2Modular Routers" + x: 0.0d + y: -12.0d + } + { + dependencies: ["25DA3FA3A3B192ED"] + description: [ + "The &6Item Router&r is the centre of the system: it has a single buffer slot for items, &o&b9&r &9Module&r slots, and &o&b5&r &4Upgrade&r slots. You can &aRight-click&r an &6Item Router&r to open its &o&bGUI&r." + "" + "The router is intended to move items around, not store them. However, if you want to use it as a 1-slot chest, you can; its &einventory&r is fully accessible by vanilla &3hoppers&r and any other mods &npiping systems&r." + "" + "But to properly use a router, you need &bModules&r." + ] + id: "507D73C94684FD42" + min_width: 300 + rewards: [ + { + id: "3214404164771CFF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2DC920C0C459BD13" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "4736D4CEEC9B9093" + item: "modularrouters:modular_router" + type: "item" + }] + x: 0.0d + y: -9.5d + } + { + dependencies: ["507D73C94684FD42"] + description: [ + "&9Modules&r specify what an &aItem Router&r does." + "" + "A router can have up to &o&b9&r modules installed, and every router tick (which is every &o&b20&r server ticks or &o&b1&r second by default), it executes every installed module once, from the leftmost module to the rightmost." + "" + "There are many module types, each of which operate on the router's buffer in a specific way. All modules have a common configuration interface, which can be accessed by &aRight-clicking&r with the module in hand, or by pressing the '&o&bC&r' key (configurable) or &aMiddle-clicking&r while the mouse is over an installed module in the &aItem Router's&r &o&bGUI&r." + ] + id: "48931A7034A389BD" + min_width: 300 + rewards: [ + { + id: "5423C04A8BD1B1CB" + type: "xp" + xp: 10 + } + { + id: "47F6456BE13819D6" + item: "modularrouters:blank_module" + type: "item" + } + { + exclude_from_claim_all: true + id: "783E101181142632" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "4DCE2CDEA17B0A07" + item: "modularrouters:blank_module" + type: "item" + }] + x: 0.0d + y: -7.5d + } + { + dependencies: ["507D73C94684FD42"] + description: [ + "While &9Modules define &o&bwhat&r a &aRouter&r does, &dUpgrades&r affect &o&bhow&r the &aRouter&r does it." + "" + "There are &o&b9&r different &dUpgrade&r types." + ] + id: "6B1B5215D6D66520" + min_width: 300 + rewards: [ + { + id: "1FD31614CEE5D201" + type: "xp" + xp: 10 + } + { + id: "0CEF4A56C04BE5DF" + item: "modularrouters:blank_upgrade" + type: "item" + } + { + exclude_from_claim_all: true + id: "307277672F006848" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "77F6A022DF7737F5" + item: "modularrouters:blank_upgrade" + type: "item" + }] + x: -2.0d + y: -9.5d + } + { + dependencies: ["507D73C94684FD42"] + description: [ + "&6Augments&r are craftable items which can be inserted into (and removed from) modules." + "" + "&6Augments&r were introduced in v&o&b3.0.0&r of the mod, and replace the older module enhancement system. &9Modules&r have slots for up to four augments (although some augments stack, and multiple augments can be placed in one slot)." + ] + id: "47CB134CEB5405C6" + min_width: 300 + rewards: [ + { + id: "23BF13D626A4A062" + type: "xp" + xp: 10 + } + { + id: "1C9BCDCC3D9682A8" + item: "modularrouters:augment_core" + type: "item" + } + { + exclude_from_claim_all: true + id: "3E76058537B8082E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "251CB019C411223C" + item: "modularrouters:augment_core" + type: "item" + }] + x: 2.0d + y: -9.5d + } + { + dependencies: ["47CB134CEB5405C6"] + description: [ + "This augment can only be added to the Vacuum Module. It allows the Vacuum Module to ignore the normal pickup delay on dropped items - 40 ticks for items dropped by players, and 10 ticks for items dropped by other means (e.g. sheep shearing) - and pick up items as soon as it sees them." + "" + "It is not useful to add more than one Fast Pickup augment." + ] + hide_dependency_lines: true + id: "1813EB0CADAD17FC" + min_width: 300 + rewards: [ + { + id: "56D148EB1EFC3516" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7F8CD2E3C1074605" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "15994CE30F7F0966" + item: "modularrouters:fast_pickup_augment" + type: "item" + }] + x: 4.0d + y: -10.5d + } + { + dependencies: ["47CB134CEB5405C6"] + hide_dependency_lines: true + id: "3C743E4C1D0A6CA6" + rewards: [ + { + id: "55CB679775009369" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "709BD51A60C03616" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5AAA377D70657A1D" + item: "modularrouters:filter_round_robin_augment" + type: "item" + }] + x: 5.0d + y: -10.5d + } + { + dependencies: ["47CB134CEB5405C6"] + hide_dependency_lines: true + id: "476F22257B560CFB" + rewards: [ + { + id: "2CC73F42252E0E5A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "33B79630512411D1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "03A1471C02A81B4A" + item: "modularrouters:mimic_augment" + type: "item" + }] + x: 6.0d + y: -10.5d + } + { + dependencies: ["47CB134CEB5405C6"] + description: [ + "This augment can only be added to the Dropper and Flinger modules." + "" + "It can be stacked; each augment added will increase the pickup delay on dropped/flung items by 10 ticks (0.5 sec). This can be useful if you don't want players accidentally picking up nearby dropped items, for example." + ] + hide_dependency_lines: true + id: "13790DED40E7BB8F" + min_width: 300 + rewards: [ + { + id: "21A3A84A2C869124" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "14B7288708B5D01B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "210B7BA7DAB05F7C" + item: "modularrouters:pickup_delay_augment" + type: "item" + }] + x: 7.0d + y: -10.0d + } + { + dependencies: ["47CB134CEB5405C6"] + hide_dependency_lines: true + id: "627AEA7E9ABB0BF9" + rewards: [ + { + id: "4C298C8F5AAC57DD" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "354CA7D1F33883B6" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "770A5FF72C1A28F0" + item: "modularrouters:pushing_augment" + type: "item" + }] + x: 4.0d + y: -9.5d + } + { + dependencies: ["47CB134CEB5405C6"] + description: [ + "This augment can be added to any module which has a range (Sender Mk1/Mk2, Puller Mk1/Mk2, Extruder Mk1/Mk2, Vacuum)." + "" + "It can be stacked; each augment will reduce the range of the module by one block. This is probably only useful in conjunction with the Vacuum Module, to control the range it scans for items." + ] + hide_dependency_lines: true + id: "3DB4947E245FFFEF" + min_width: 300 + rewards: [ + { + id: "7549AA702E1B643C" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "58393CA99EA86867" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "00806D8F9F27F2FF" + item: "modularrouters:range_down_augment" + type: "item" + }] + x: 5.0d + y: -9.5d + } + { + dependencies: ["47CB134CEB5405C6"] + description: [ + "This augment can be added to any module which has a range (Sender Mk1/Mk2, Puller Mk1/Mk2, Extruder Mk1/Mk2, Vacuum)." + "" + "It can be stacked; each augment will increase the range of the module by one block." + ] + hide_dependency_lines: true + id: "1CEECE3FA318C183" + min_width: 300 + rewards: [ + { + id: "6CC95486B3FB76AB" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "05D5EAFDE2B02137" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0EBB1A27D173784B" + item: "modularrouters:range_up_augment" + type: "item" + }] + x: 6.0d + y: -9.5d + } + { + dependencies: ["47CB134CEB5405C6"] + description: [ + "This augment can be added to any module. Normally, modules are run when the router runs, no questions asked. However, if this augment is added to a module, that module can define its own redstone behaviour; an extra button is added to the module's GUI to control this." + "" + "It is not useful to add more than one Redstone Augment." + ] + hide_dependency_lines: true + id: "22CA1C4D76C0A8AD" + min_width: 300 + rewards: [ + { + id: "7C8BFCAA507D1969" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "529598126D44810D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "799856E13A710D59" + item: "modularrouters:redstone_augment" + type: "item" + }] + x: 7.0d + y: -9.0d + } + { + dependencies: ["47CB134CEB5405C6"] + description: [ + "The &2Regulator Augment&r allows for precise control over how many items may be sent to or pulled from an inventory, or the router's buffer." + "" + "When a module has the Regulator Augment activated, you will see an extra numeric textfield in its GUI where you can configure a limit. The module's tooltip text will also show the limit. This limit is interpreted differently depending on the particular module:" + "" + "&l●&r For the Sender Mk1/2/3 Modules and Player Module (in insert mode), the modules will only send an item to the inventory if there are fewer than the configured number of that item already in the inventory." + "&l●&r For the Puller and Player Module (in extract mode), the modules will only pull an item from the inventory if there are more than the configured number of that item in the inventory." + "&l●&r For the Dropper, Flinger, Placer \\& Void Modules, the modules will only run if there are more than the configured number of that item in the router's buffer." + "&l●&r For the Breaker \\& Vacuum Modules, the modules will only run if there are fewer than the configured number of that item in the router's buffer." + "&l●&r For the Fluid Module, the limit is a percentage of the target tank's capacity rather than a number of items. When pulling fluid from the target, the module will only run if there is more fluid than the configured percentage, and when pushing fluid to the target, the module will only run if there is less fluid than the configured percentage." + "" + "It is not useful to add more than one Regulator Augment." + ] + hide_dependency_lines: true + id: "5981B4EFB794DEA2" + min_width: 400 + rewards: [ + { + id: "7A9EFC1F63A87FBE" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3295D70018F2ADBC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "68269B4CDE0C9E71" + item: "modularrouters:regulator_augment" + type: "item" + }] + x: 4.0d + y: -8.5d + } + { + dependencies: ["47CB134CEB5405C6"] + description: [ + "This module can be added to any module which handles items (as opposed to &oblocks&r or &ofluids&r)." + "" + "Adding Stack Augments to a module increases the number of items it can process per tick; each Stack Augment doubles the number of items, up to a maximum of the item's natural stack size (64 for most items)." + "" + "If the router also has Stack Upgrades installed, the module's Stack Augments will override that; e.g. if a router has 6 Stack Upgrades, and a module has 2 Stack Augments, the module will process 4 items per tick, not 64." + ] + hide_dependency_lines: true + id: "06B9DB6698C1D809" + min_width: 300 + rewards: [ + { + id: "1CABE7C5B5E5E72F" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "004B6A82355961B1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "07AD1B994887B1D7" + item: "modularrouters:stack_augment" + type: "item" + }] + x: 5.0d + y: -8.5d + } + { + dependencies: ["47CB134CEB5405C6"] + description: [ + "This augment can only added to a Vacuum Module." + "" + "When this augment is added, the Vacuum Module will absorb experience orbs instead of items. The orbs will be converted into Bottles o' Enchanting at the rate of 7XP per bottle (which is the average amount of XP gained by breaking a Bottle o' Enchanting)." + "" + "If XP Juice is available (as added by EnderIO), and the router holds a fluid-containing item, orbs will instead be converted to XP Juice at the rate of 20mB per 1XP and stored in the fluid container." + ] + hide_dependency_lines: true + id: "2B55C161A8EC6702" + min_width: 300 + rewards: [ + { + id: "2E60AE672B3AAF22" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4316A7D09CCE38B4" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "06C36D5896E1DCB9" + item: "modularrouters:xp_vacuum_augment" + type: "item" + }] + x: 6.0d + y: -8.5d + } + { + dependencies: ["6B1B5215D6D66520"] + description: ["This upgrade makes the router fully immune to explosion damage, and also to being destroyed by boss mobs."] + hide_dependency_lines: true + id: "4B63DB3E7B4CB7F2" + rewards: [ + { + id: "227F1F92A7CFBF16" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "40C3BAFA683BA4E8" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5973CCABE1438048" + item: "modularrouters:blast_upgrade" + type: "item" + }] + x: -4.0d + y: -10.5d + } + { + dependencies: ["6B1B5215D6D66520"] + description: [ + "This upgrade allows you to disguise the router as another block. Sneak+Right-click the module against a block to record that block on the camouflage upgrade. When inserted into a router, that router will take on the appearance of the recorded block." + "" + "&l●&r Not all blocks can be used. In general, any block with a simple model (doesn't have to be a full cube) will work, but some more complex block models will either refuse to copy or render as a empty cube." + ] + hide_dependency_lines: true + id: "385C9CE6D5DCEDF1" + rewards: [ + { + id: "097C83A4F4A6B699" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7DECDE7C5CC43418" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3A2B499E0E348809" + item: "modularrouters:camouflage_upgrade" + type: "item" + }] + x: -4.0d + y: -9.5d + } + { + dependencies: ["6B1B5215D6D66520"] + hide_dependency_lines: true + id: "3C8DCB148456A159" + rewards: [ + { + id: "76C20A05B106A194" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "2FACF84EEB7D417D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4887A79488D9BE59" + item: "modularrouters:energy_upgrade" + type: "item" + }] + x: -5.0d + y: -10.5d + } + { + dependencies: ["6B1B5215D6D66520"] + description: [ + "This upgrade only affects the Fluid Module." + "" + "It increases the overall fluid transfer rate of the Item Router (in each direction; to the router and from the router) from the base rate of 50mB/tick by 10mB/tick, up to a maximum of 400mB/tick (all configurable)." + "" + "Therefore the maximum useful number of Fluid Transfer Upgrades in a router is 35." + ] + hide_dependency_lines: true + id: "554FDBB7BEF1C4F0" + min_width: 300 + rewards: [ + { + id: "23808319700C1ADB" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "13831A97A89A3249" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7223443AD4AE9DC8" + item: "modularrouters:fluid_upgrade" + type: "item" + }] + x: -6.0d + y: -10.5d + } + { + dependencies: ["6B1B5215D6D66520"] + description: [ + "This upgrade, when inserted, will restrict the players who can open the router's GUI. By default, it only permits the player who crafted the upgrade." + "" + "&l●&r You can add extra players to a Security Upgrade by right-clicking the player with the upgrade in your main hand." + "&l●&r You can remove players from a Security Upgrade by shift-right-clicking the player." + "&l●&r There is a maximum of 6 additional players per Security Upgrade (so 7 in total, including the creator), but you can install more than one Security Upgrade in a router if necessary." + "&l●&r The Security Upgrade does not prevent a router being broken by a player; but since upgrades and modules remain in a broken router, players can't break a router to steal modules/upgrades or reconfigure the router (when the router is placed back down, the Security Upgrade remains installed). If you want to prevent a router being broken, you may wish to explore other mods' block protection capabilities." + ] + hide_dependency_lines: true + id: "1FDD1D8397753895" + min_width: 400 + rewards: [ + { + id: "4F703E9512A9C814" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "200369D15C851A9C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "47647BAF6D2B36C5" + item: "modularrouters:security_upgrade" + type: "item" + }] + x: -5.0d + y: -9.5d + } + { + dependencies: ["6B1B5215D6D66520"] + description: [ + "By default, a router ticks every 20 server ticks, or once per second. On each tick, every installed module is executed in order, left to right." + "" + "If you need a router to run faster than this, you can add Speed Upgrades; each Speed Upgrade reduces the tick interval by 2 server ticks, down to a minimum of every 2 server ticks (or 10 times per second)." + "" + "&l●&r &bFor performance reasons, Stack Upgrades should be preferred over Speed Upgrades where possible; use Speed Upgrades judiciously and only where absolutely required for maximum item transfer rate.&r &6Be Kind To Your Server (tm)&r." + ] + hide_dependency_lines: true + id: "15C5D13473EEDB33" + min_width: 300 + rewards: [ + { + id: "6F535D2AE39C60A7" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4D1D3A745C92E0B9" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4FBE71AC7F402BE7" + item: "modularrouters:speed_upgrade" + type: "item" + }] + x: -6.0d + y: -9.5d + } + { + dependencies: ["6B1B5215D6D66520"] + description: [ + "Modules in a router operate on a single item at a time: e.g. a Sender module will send a single item from the router's buffer, regardless of how many items are in the buffer." + "" + "By adding Stack Upgrades to a router, this can be increased. Each Stack Upgrade doubles the number of items that can be processed by each module, up to a maximum of 64, or the item's native stack size. It therefore follows that 6 is the maximum number of useful Stack Upgrades which can be installed in one router." + ] + hide_dependency_lines: true + id: "350AEB600145D18B" + rewards: [ + { + id: "3C418BEE295384F5" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3593B8F44E2BA161" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "052D3716585A6076" + item: "modularrouters:stack_upgrade" + type: "item" + }] + x: -5.0d + y: -8.5d + } + { + dependencies: ["6B1B5215D6D66520"] + description: [ + "This upgrade is used to guarantee that two or more routers run at the same time. The Sync Upgrade has a tuning value of 0 .. 19 (i.e. 1 less than the base router tick rate of 20). This tuning value can be set by right-clicking the Sync Upgrade to open its GUI, or quickly set to a random value by sneak-right-clicking the upgrade." + "" + "Any routers with this upgrade installed, with same the tuning value, and with the same number of Speed Upgrades installed, will &oalways&r run on the same tick. Note that the actual tuning value doesn't matter; it only matters that the value is consistent across the routers you want to synchronise." + "" + "This is particularly useful if you have a group of routers with Extruder Modules installed, and want to ensure all modules extend/retract at the same time for a pleasing visual appearance." + ] + hide_dependency_lines: true + id: "44CD1E4893D1E21F" + min_width: 300 + rewards: [ + { + id: "209E38B8C38446F5" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "689ED4D3B2E0FC47" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "27ECECC281B2E69E" + item: "modularrouters:sync_upgrade" + type: "item" + }] + x: -4.0d + y: -8.5d + } + { + dependencies: ["48931A7034A389BD"] + hide_dependency_lines: true + id: "7743FF3AB1A75529" + rewards: [ + { + id: "161C92BDBF82D6DD" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "091C159DCF09D45D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "364A2EE58881EB45" + item: { + Count: 1 + id: "modularrouters:activator_module" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: -3.0d + y: -5.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This module tries to break a block, adjacent to the router in the module's configured direction. Most blocks are breakable, although anything with an unbreakable hardness (e.g. vanilla Bedrock or End Portal) can not be broken, nor can any fluid blocks. If the block is broken, its primary drop(s) will be pulled into the item router's buffer." + "" + "&l●&r If there's already something else in the buffer, or the buffer is full, the block will not be broken." + "&l●&r If breaking the block yields more than one type of drop (e.g. mature wheat drops both wheat and seeds), only the first drop will be pulled into the buffer and other items will be left as items on the ground. In this case, you might also want a Vacuum Module to pull in the extra drops. If there are multiple drops of the same type (e.g. redstone ore dropping several redstone dust), all stackable drops will be pulled into the buffer where possible." + "&l●&r The Breaker Module may be crafted with either a Fortune or Silk Touch enchanted book to gain those enchantments' abilities." + ] + hide_dependency_lines: true + id: "33C5F3C6F667F2D2" + min_width: 300 + rewards: [ + { + id: "29484796E6FEA5F0" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "23F88CAE687CA8F9" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "70894C77A85FB577" + item: { + Count: 1 + id: "modularrouters:breaker_module" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: -2.0d + y: -5.5d + } + { + dependencies: ["48931A7034A389BD"] + description: ["This module doesn't actually manipulate items, but instead detects specific items in the router's buffer. If the buffer contents are matched by the module's filter, it will make the router emit a redstone signal in the configured direction, or all directions if the configured direction is None. The signal level (default: 15) and signal type (default: weak) can be adjust via the module GUI."] + hide_dependency_lines: true + id: "5B2ED0E25E3B56EB" + rewards: [ + { + id: "223ECF65F965645D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5A3157F78868CBE2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "60C47076FFE846FC" + item: { + Count: 1 + id: "modularrouters:detector_module" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + SignalLevel: 15 + StrongSignal: 0b + } + } + } + type: "item" + }] + x: -1.0d + y: -5.5d + } + { + dependencies: ["48931A7034A389BD"] + hide_dependency_lines: true + id: "4CCCE0B80308B771" + rewards: [ + { + id: "165AB33FCF0B840D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "65141F87928DE6FC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "32097B9D4DE5B62C" + item: { + Count: 1 + id: "modularrouters:distributor_module" + tag: { + modularrouters: { + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 0.0d + y: -5.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This module tries to drop an item from the router's buffer as an item entity in the world. The drop will be adjacent to the router in the module's configured direction. The item entity will be placed with a zero velocity, unlike the vanilla Dropper which adds an irritating random velocity to the item." + "" + "&l●&r This is one of the few ways I'm aware of in modded Minecraft to drop a stack of items at a time (think bulk in-world crafting for AE2 crystal seeds...) Most dropper devices drop only a single item at a time, but the Item Router can drop up to a stack of items at a time if you use Stack Upgrades." + ] + hide_dependency_lines: true + id: "219A8F24431BA5A8" + rewards: [ + { + id: "1A969D41ACD18D40" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "100C24C7A0DA2E7A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4654861D4B94FA06" + item: { + Count: 1 + id: "modularrouters:dropper_module" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 1.0d + y: -5.5d + } + { + dependencies: ["48931A7034A389BD"] + hide_dependency_lines: true + id: "214C0CBF5DCEE45B" + rewards: [ + { + id: "4833A010F2DE0D8A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "45FCCBF0F88ED0E0" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2A96AABE4576FA99" + item: { + Count: 1 + id: "modularrouters:energy_distributor_module" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 2.0d + y: -5.5d + } + { + dependencies: ["48931A7034A389BD"] + hide_dependency_lines: true + id: "370E9C10F948B77C" + rewards: [ + { + id: "035467D2CC16B3C9" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "60F7A7229B49C556" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "28051372E6EE2CD7" + item: { + Count: 1 + id: "modularrouters:energy_output_module" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 3.0d + y: -5.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This module extends and withdraws a row of blocks (from the router's buffer) in the module's configured direction. By default, the module extends blocks when the router has a redstone signal, and withdraws them when the router has no signal, but a Redstone Enhancement can be added to the module to customise this behaviour." + "" + "&l●&r See also the Camouflage Upgrade, which may be useful to hide the router." + "&l●&r The default range (i.e. number of blocks which can be placed) is 12, but this can be increased up to 24 with Range Upgrades." + "&l●&r If you change the module's direction while it has blocks extended, you may get the router a little confused. In this case, breaking and replacing the router will help." + "&l●&r If you break the router while blocks are extended, it won't remember that, and you'll need to manually remove those blocks." + "&l●&r If you have multiple routers together with Extruder Modules installed (e.g. for a wide door or bridge), you may find the Sync Upgrade useful to ensure they all run on the same tick." + "&l●&r The Extruder (like the Placer) can also plant crop seeds on farmland, and cocoa beans on an adjacent jungle log." + ] + hide_dependency_lines: true + id: "7820D810C490A47A" + min_width: 300 + rewards: [ + { + id: "10D14585C5603759" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "51509A67DB0C77C5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "77BF4D79582330B7" + item: { + Count: 1 + id: "modularrouters:extruder_module_1" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: -3.0d + y: -4.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This module behaves rather like the Extruder Module Mk1, but with some important differences:" + "" + "&l●&r The Mk2 module doesn't place items from the router's buffer, but rather from a template defined within the module itself." + "&l●&r This template appears on the right-hand side of the module's GUI, has 9 slots, and can have multiple items per slot. Items placed in the template are \"ghost\" items." + "&l●&r Blocks extruded are \"virtual\" - effectively created out of nowhere, but drop nothing when broken and can't be crafted normally." + "&l●&r Therefore, this module isn't suitable for farming like the Extruder Mk1, but can be used to place doors/bridges etc. with more complex patterns than the Mk1 could." + "&l●&r The default range for the Extruder Mk2 is 24 blocks, which can be increased to 48 with Range Upgrades." + ] + hide_dependency_lines: true + id: "45176E9D4C96158E" + min_width: 300 + rewards: [ + { + id: "653D7DC4462A09B5" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "08F50F177DB62B57" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3DFDFDD5F31B883B" + item: { + Count: 1 + id: "modularrouters:extruder_module_2" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: -2.0d + y: -4.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This module behaves like the dropper module, except that it also imparts a configurable velocity to the dropped item, potentially throwing the item a considerable distance. You can adjust the item's speed, pitch and yaw via the module's GUI." + "" + "&l●&r Pitch and Yaw are in degrees, relative to a base pitch or yaw." + "&l●&r If the module ejects Up or Down, the base pitch is +90° or -90°, respectively. Otherwise, the base pitch is 0°." + "&l●&r If the module ejects Up or Down, the base yaw is the router's facing direction. Otherwise the base yaw is taken from the module's direction." + "&l●&r Example: a speed of 1.0, pitch/yaw of 0°, and a horizontal module direction, will throw an item along the ground for a distance of about 7 blocks." + ] + hide_dependency_lines: true + id: "0CF15DA52514AD7C" + min_width: 300 + rewards: [ + { + id: "184641A8731C5FC1" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "2D4C54169DE9F3DF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1CFAA67341B07E5E" + item: { + Count: 1 + id: "modularrouters:flinger_module" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + Pitch: 0.0f + Speed: 0.0f + Yaw: 0.0f + } + } + } + type: "item" + }] + x: -1.0d + y: -4.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "While Item Routers can't handle fluids directly (they don't have an internal tank), they can manipulate fluids if there is a (single) fluid container item in the buffer. This includes buckets and any fluid containers added by other mods." + "" + "The Fluid Module's GUI allows the transfer direction to be set:" + "" + "&l●&r Transfer To Router means the router will try to pull fluids from an adjacent block (either a fluid in the world or a fluid-holding block) into a fluid-holding item in the buffer." + "&l●&r Transfer From Router means the router will try to push fluids from a fluid-holding item in the buffer to the world; either pouring fluid out, or putting fluid into an adjacent tank." + "The GUI also allows the maximum transfer rate to be set. Note this is the maximum that will be attempted, and is still limited by the router's overall transfer rate, which is 1 bucket per second, and the transfer rate of the external fluid or fluid container." + "" + "The Fluid Module's filter slots will only accept fluid-containing items, and will filter by the contained fluid, not by the container item." + "" + "&l●&r Adding Speed Upgrades will not transfer fluids any faster, only more often. A router with 9 speed upgrades will still only transfer 1 bucket per second, just more often and in smaller quantities. To increase the overall transfer rate, add Fluid Transfer Upgrades." + "&l●&r Be very careful tinkering with Fluid Module settings if the router holds any dangerous fluids, such as a lava bucket. The router will not hesitate to pour lava over you if you get it wrong..." + "&l●&r Note that you can also connect fluid pipes from other mods to a router, if the buffer has a fluid container in it, and pump fluids in and out of the router. You don't need a Fluid Module installed to do this; Fluid Modules are only required if you want to actively push or pull fluids." + ] + hide_dependency_lines: true + id: "127EAF5F289669DF" + min_width: 500 + rewards: [ + { + id: "46B8D72FAD332BB7" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "73E4BB87A37BEA0E" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3EF8C1BCE77AFBD0" + item: { + Count: 1 + id: "modularrouters:fluid_module" + tag: { + modularrouters: { + Direction: "NONE" + FluidDir: 0b + MaxTransfer: 1000 + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 0.0d + y: -4.5d + } + { + dependencies: ["48931A7034A389BD"] + hide_dependency_lines: true + id: "3618BE4936552678" + rewards: [ + { + id: "5102606DB68CFFDA" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6C31B3D0C5818763" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "74F01B57F6A30E2B" + item: { + Count: 1 + id: "modularrouters:fluid_module_2" + tag: { + modularrouters: { + FluidDir: 0b + MaxTransfer: 1000 + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 1.0d + y: -4.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This module tries to place an item from the router's buffer as a block, adjacent to the router in the module's configured direction." + "" + "&l●&r If the item isn't a block or the destination block is obstructed, nothing will be done." + "&l●&r Normal Minecraft placement rules are followed; e.g. sugar cane can only be placed next to water on sand/dirt." + "&l●&r Fluid blocks will be replaced, as will replaceable blocks such as tall grass." + "&l●&r The Placer module can plant seeds on farmland, and cocoa beans on an adjacent jungle log." + ] + hide_dependency_lines: true + id: "25937073D6B084F5" + min_width: 300 + rewards: [ + { + id: "51CF6065C879F167" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "176058802F472336" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "33DC6AF2464BA053" + item: { + Count: 1 + id: "modularrouters:placer_module" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 2.0d + y: -4.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This module tries to transfer items between the router and a player's own inventory. The player can be anywhere in any dimension, making this a rather powerful module." + "" + "&l●&r The module can transfer items either from or to the player; you can set this in the module's GUI. " + "&l●&r The module can operate on either the player's main 36-slot inventory, their 4-slot armor inventory, their offhand slot, or their Ender inventory (as shown by vanilla Ender Chests). This can also be set in the module's GUI." + "&l●&r Extracted/inserted items can, of course, be filtered by the module." + "" + "A good use-case for this module would be to extract ores/cobblestone/dirt etc. from the player's inventory, and send it on to the player's main storage system in their base. With a little design, it should be possible to build a system to auto-swap your armor sets (maybe even in the field, with some wireless redstone from another mod...)" + ] + hide_dependency_lines: true + id: "7628AAFD8558ECDA" + min_width: 400 + rewards: [ + { + id: "392AA6506B0BCD17" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "526F4C60F9E737D5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0C3976E6E8B01AAA" + item: { + Count: 1 + id: "modularrouters:player_module" + tag: { + modularrouters: { + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 3.0d + y: -4.5d + } + { + dependencies: ["48931A7034A389BD"] + description: ["This module tries to pull the first eligible item from the adjacent inventory in its configured direction into the router's buffer. If the buffer is full or contains something that stacks with nothing in the inventory, nothing will be pulled."] + hide_dependency_lines: true + id: "04838933FF2647B3" + rewards: [ + { + id: "630E43F84F3F6B1A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1F5C324A2D352957" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "74614526B7421E13" + item: { + Count: 1 + id: "modularrouters:puller_module_1" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: -3.0d + y: -3.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This behaves like the Puller Mk1, but can pull items from non-adjacent inventories:" + "" + "&l●&r The inventory can be up to 12 blocks away (up to 24 with Range Upgrades)." + "&l●&r Clear line of sight is not required." + "&l●&r To select the target inventory, Sneak-Right-click the target with the Puller Mk2 module in hand. You will get a confirmation message." + "&l●&r If you need to check where a Puller Mk2 is configured to, Left-click with the module in hand, and a particle effect will stream toward the target inventory (the co-ordinates of the target are also shown in the module item's tooltip)." + ] + hide_dependency_lines: true + id: "1CCAC658D40B2C5A" + min_width: 300 + rewards: [ + { + id: "024E5744C86C252B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1E297C9BEEF3A6A2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "35FAAF2F0A425F05" + item: { + Count: 1 + id: "modularrouters:puller_module_2" + tag: { + modularrouters: { + ModuleFilter: { } + } + } + } + type: "item" + }] + x: -2.0d + y: -3.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This more powerful sender module tries to send an item from the router's buffer to a nearby inventory:" + "" + "&l●&r The target inventory can be up to 24 blocks away (up to 48 with Range Upgrades )" + "&l●&r Clear line of sight is &onot&r required" + "&l●&r To select the target inventory, Sneak-Right-click the target with the Sender Mk2 module in hand. You will get a confirmation message." + "&l●&r If you need to check where a Sender Mk2 is configured to, Left-click with the module in hand, and a particle effect will stream toward the target inventory (the co-ordinates of the target are also shown in the module item's tooltip)." + ] + hide_dependency_lines: true + id: "08B325E67E607888" + min_width: 300 + rewards: [ + { + id: "21947E85E4F669B1" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "2247452F100843CF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0B0AB4652AB6D74E" + item: { + Count: 1 + id: "modularrouters:sender_module_2" + tag: { + modularrouters: { + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 0.0d + y: -3.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This module tries to send an item from the router's buffer to an inventory in the module's configured direction:" + "" + "&l●&r The target inventory can be up to 8 blocks away (up to 16 with Range Upgrades )" + "&l●&r The target inventory must be directly along the X, Y, or Z axis." + "&l●&r The router must have clear line of sight to the target inventory; no opaque blocks, but blocks such as glass, fences, iron bars etc. are OK." + ] + hide_dependency_lines: true + id: "253B5325A0B6D723" + rewards: [ + { + id: "6E5A86D01354BFFA" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4C835FDA79E872F5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2DCA7A1A05CFEF10" + item: { + Count: 1 + id: "modularrouters:sender_module_1" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: -1.0d + y: -3.5d + } + { + dependencies: ["48931A7034A389BD"] + description: ["This top-end sender module operates very much like the Mk2 Sender, but can send to any inventory (in any dimension) with no restrictions! Note: the target inventory must be chunk-loaded; Modular Routers will not do this for you."] + hide_dependency_lines: true + id: "16245A08A35A6052" + rewards: [ + { + id: "798D3916657D09AA" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "22EB4387A0D0557B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3449F8EF87E2DFBD" + item: { + Count: 1 + id: "modularrouters:sender_module_3" + tag: { + modularrouters: { + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 1.0d + y: -3.5d + } + { + dependencies: ["48931A7034A389BD"] + description: [ + "This module scans for dropped items in a 13x13x13 cubic area around the router (i.e. up to 6 blocks in each direction), and absorbs them into the router's buffer, if possible." + "" + "&l●&r The range can be increased up to 25x25x25 (12 blocks in each direction) with Range Upgrades. Each Range Upgrade increases the distance by 1 block, so up to 6 Range Upgrades can be usefully installed." + "&l●&r The scanned area is centered on the router if the module's direction is &lNone&r. If the module has an actual direction configured, the area is offset in that direction by 6 blocks (plus one for each Range Upgrade installed). E.g. with a direction of UP, the module will only scan an area directly above the router." + ] + hide_dependency_lines: true + id: "0A66EFCD2F63B902" + min_width: 300 + rewards: [ + { + id: "1A5A57DF5998A2AC" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "371BB2D08B7BF248" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "360013130FCBDF35" + item: { + Count: 1 + id: "modularrouters:vacuum_module" + tag: { + modularrouters: { + Direction: "NONE" + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 2.0d + y: -3.5d + } + { + dependencies: ["48931A7034A389BD"] + description: ["This dangerous module permanently destroys items in the router's buffer! It is strongly recommended to configure this module with a Whitelist to prevent accidental deletion of valuable items..."] + hide_dependency_lines: true + id: "3BBC94FBF6FF733E" + rewards: [ + { + id: "098EA00F5A5AEE3C" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3A9E3661BB604228" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "48734F4B7BE95E6D" + item: { + Count: 1 + id: "modularrouters:void_module" + tag: { + modularrouters: { + ModuleFilter: { } + } + } + } + type: "item" + }] + x: 3.0d + y: -3.5d + } + { + dependencies: ["6B1B5215D6D66520"] + description: [ + "This upgrade can be used to suppress sounds and particle effects made by item routers, and can be useful if a noisy module is regularly running in a place where a player often is." + "" + "&l●&r One or more Muffler Upgrades in a router will disable all audible effects" + "&l●&r Two or more will also disable all particle effects" + "&l●&r Three or more will also disable the router's active animation; the rotating texture on the front face of the router block" + "&l●&r Note that all sounds and particle effects can also be disabled in the mod config; this upgrade is only useful if sounds/effects have not been disabled." + ] + hide_dependency_lines: true + id: "30E3A2FF5537502D" + min_width: 300 + rewards: [ + { + id: "3333F9C13975DA60" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "09484DB8FCD01879" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "75E9049CA446D80C" + item: "modularrouters:muffler_upgrade" + type: "item" + }] + x: -6.0d + y: -8.5d + } + ] + title: "&3&oModular Routers" +} diff --git a/minecraft/config/ftbquests/quests/chapters/mystical_agriculture.snbt b/minecraft/config/ftbquests/quests/chapters/mystical_agriculture.snbt new file mode 100644 index 0000000..a8e9c1c --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/mystical_agriculture.snbt @@ -0,0 +1,5630 @@ +{ + autofocus_id: "3763C9494249EC62" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "mystical_agriculture" + group: "5271FC3947DEACC8" + icon: "mysticalagradditions:creative_essence" + id: "2601819489169343" + images: [ + { + height: 3.0d + image: "kubejs:textures/item/firef.png" + rotation: 0.0d + width: 1.0d + x: 4.0d + y: -8.0d + } + { + height: 3.0d + image: "kubejs:textures/item/fire.png" + rotation: 180.0d + width: 1.0d + x: 4.0d + y: -4.0d + } + { + height: 3.0d + image: "kubejs:textures/item/fire.png" + rotation: 0.0d + width: 1.0d + x: -13.0d + y: -8.0d + } + { + height: 3.0d + image: "kubejs:textures/item/firef.png" + rotation: 180.0d + width: 1.0d + x: -13.0d + y: -4.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -13.214285714285715d + y: -6.032142857142858d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 4.214285714285708d + y: -6.067857142857143d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -9.75d + y: -11.1d + } + { + click: "https://www.youtube.com/watch?v=8VNJ1pB_wPc" + height: 1.0d + hover: ["Need a Tutorial?"] + image: "mysticalagriculture:item/mystical_flower_agglomeratio" + rotation: 0.0d + width: 1.0d + x: -12.5d + y: -10.5d + } + ] + order_index: 1 + quest_links: [ ] + quests: [ + { + dependencies: ["2E747C1C2DB534B5"] + description: [ + "&dEssence&r is the starting point for all of your growing needs in Mystical Agriculture. " + "" + "&eInferium Essence&r is the base tier of all essences. You can get this from mining, killing mobs, or by making seeds to grow them!" + "" + "To make the bigger and better essences, you'll need to make an &9Infusion Crystal&r. " + ] + id: "28586493542A3B3A" + rewards: [ + { + count: 4 + id: "014C31C3DAA88CE9" + item: "mysticalagriculture:inferium_essence" + type: "item" + } + { + exclude_from_claim_all: true + id: "57D4C967B4C858A9" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + subtitle: "&bTier:&r &a1" + tasks: [{ + id: "14C0517833A0912C" + item: "mysticalagriculture:inferium_essence" + type: "item" + }] + title: "&aInferium Essence" + x: -10.5d + y: -8.0d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "41E5E6BF7CB5063F" + rewards: [ + { + id: "5752824FD6F7BE61" + item: "mysticalagriculture:prudentium_essence" + type: "item" + } + { + exclude_from_claim_all: true + id: "2F899E9E4B4E7102" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + subtitle: "&bTier:&r &22" + tasks: [{ + id: "5B44AD7E8F44030C" + item: "mysticalagriculture:prudentium_essence" + type: "item" + }] + title: "&2Prudentium Essence&r" + x: -9.5d + y: -8.0d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "0EE7C12766C3CA1B" + rewards: [ + { + id: "4D7EA736406C81DF" + type: "xp" + xp: 30 + } + { + id: "1FF2BEF8C656BD48" + item: "mysticalagriculture:tertium_essence" + type: "item" + } + { + exclude_from_claim_all: true + id: "0FF524E5F9B9716C" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "1C482C69BF168CA7" + item: "mysticalagriculture:tertium_essence" + type: "item" + }] + title: "&cTertium Essence" + x: -5.0d + y: -8.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "3763C9494249EC62" + rewards: [ + { + id: "713BC0E05D35BC83" + item: "mysticalagriculture:imperium_essence" + type: "item" + } + { + exclude_from_claim_all: true + id: "06318817F7A03584" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + subtitle: "&bTier:&r &94" + tasks: [{ + id: "0D1F0A398BFE5635" + item: "mysticalagriculture:imperium_essence" + type: "item" + }] + title: "&9Imperium Essence" + x: -4.0d + y: -8.0d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "6C52741D22052A14" + rewards: [ + { + id: "0E5C3AFA891FDBF3" + item: "mysticalagriculture:supremium_essence" + type: "item" + } + { + exclude_from_claim_all: true + id: "55FD8B1AB4F99E42" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + subtitle: "&bTier:&r &45" + tasks: [{ + id: "5A8F544AD3C7FA43" + item: "mysticalagriculture:supremium_essence" + type: "item" + }] + title: "&4Supremium Essence" + x: 0.5d + y: -8.0d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "4970CC2851818A02" + rewards: [ + { + id: "5C076AB4B5C4F52C" + item: "mysticalagradditions:insanium_essence" + type: "item" + } + { + exclude_from_claim_all: true + id: "375E926F039F64BD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + subtitle: "&bTier:&r &16" + tasks: [{ + id: "799329ED8A028E70" + item: "mysticalagradditions:insanium_essence" + type: "item" + }] + title: "&1Insanium Essence" + x: 1.5d + y: -8.0d + } + { + dependencies: ["28586493542A3B3A"] + id: "3A83B7208433E77E" + rewards: [ + { + id: "338140994C8F4989" + item: "mysticalagriculture:inferium_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "3ED07599822EA260" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "66C0AEC5FA260CE4" + item: "mysticalagriculture:inferium_ingot" + type: "item" + }] + x: -10.5d + y: -5.5d + } + { + dependencies: ["41E5E6BF7CB5063F"] + id: "6638091197AC8D65" + rewards: [ + { + id: "3D868D2840F67280" + item: "mysticalagriculture:prudentium_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "388313AC3D0D3B5C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "654872C501719200" + item: "mysticalagriculture:prudentium_ingot" + type: "item" + }] + x: -9.5d + y: -5.5d + } + { + dependencies: ["0EE7C12766C3CA1B"] + id: "76EF8F2C8B447E67" + rewards: [ + { + id: "1FD89DE46F08709A" + item: "mysticalagriculture:tertium_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "1DFF07101E3CB237" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "43AC7E664E1CDBA0" + item: "mysticalagriculture:tertium_ingot" + type: "item" + }] + x: -5.0d + y: -5.5d + } + { + dependencies: ["3763C9494249EC62"] + id: "26AEC68A7F67C65F" + rewards: [ + { + id: "3A6E0D236E72B7FF" + item: "mysticalagriculture:imperium_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "2CA9077A7528B658" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6D18935E3E09957A" + item: "mysticalagriculture:imperium_ingot" + type: "item" + }] + x: -4.0d + y: -5.5d + } + { + dependencies: ["6C52741D22052A14"] + id: "5341CE682C69DDB1" + rewards: [ + { + id: "1D62B25C566F00D8" + item: "mysticalagriculture:supremium_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "06A33B4D71B161CA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0D58021DF156C177" + item: "mysticalagriculture:supremium_ingot" + type: "item" + }] + x: 0.5d + y: -5.5d + } + { + dependencies: ["4970CC2851818A02"] + id: "4808BBE6C5E57032" + rewards: [ + { + id: "2462C87CE70E0872" + item: "mysticalagradditions:insanium_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "423C207719F47654" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7A23ABBBBCD02C54" + item: "mysticalagradditions:insanium_ingot" + type: "item" + }] + x: 1.5d + y: -5.5d + } + { + dependencies: ["3A83B7208433E77E"] + description: [ + "The &aWatering Can&r is used to increase the speed that crops grow. Higher tiers have a larger area of effect. To use this, fill it up with some water by right clicking some water, then hold right click near your crops to water them!" + "" + "Shift+right click while looking in the air with the watering can to enable auto-watering." + "" + "&eEssence Farmland&r will increase the growth speed of the seeds. The certain seeds will require certain farmlands to be planted on." + "" + "&9Growth Accelerators&r very slightly increase the growth speed of a seed when placed directly underneath the farmland. Each tier has a range of how many blocks \"up\" it can accelerate, with Inferium being the lowest at 12." + ] + id: "449C60985F16226E" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "5CE6DC562600915E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "17A999C517EEB396" + item: { + Count: 1 + id: "mysticalagriculture:inferium_watering_can" + tag: { + Active: 0b + Water: 0b + } + } + type: "item" + } + { + id: "2A2ADB3D5B3931D1" + item: "mysticalagriculture:inferium_farmland" + type: "item" + } + { + id: "40806005E46C5B0B" + item: "mysticalagriculture:inferium_growth_accelerator" + type: "item" + } + ] + title: "&aGrowing \\& Speed up Growth&r &f&oTier 1" + x: -10.5d + y: -3.5d + } + { + dependencies: ["6638091197AC8D65"] + id: "49BA104F2E73D3D0" + rewards: [{ + exclude_from_claim_all: true + id: "2D1A64F220BD023E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "560F4668F91B05F8" + item: { + Count: 1 + id: "mysticalagriculture:prudentium_watering_can" + tag: { + Active: 0b + Water: 0b + } + } + type: "item" + } + { + id: "14380B1BB3CC4FDC" + item: "mysticalagriculture:prudentium_farmland" + type: "item" + } + { + id: "5D1BE100186EDFC9" + item: "mysticalagriculture:prudentium_growth_accelerator" + type: "item" + } + ] + title: "&2Growing \\& Speed up Growth&r &f&oTier 2" + x: -9.5d + y: -3.5d + } + { + dependencies: ["76EF8F2C8B447E67"] + id: "7076CEF6294F6310" + rewards: [{ + exclude_from_claim_all: true + id: "60D0527FE0A4A06E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "1EB079513FA9D4AF" + item: { + Count: 1 + id: "mysticalagriculture:tertium_watering_can" + tag: { + Active: 0b + Water: 0b + } + } + type: "item" + } + { + id: "236A394421CEB74C" + item: "mysticalagriculture:tertium_farmland" + type: "item" + } + { + id: "2E37A2C23AEB9A04" + item: "mysticalagriculture:tertium_growth_accelerator" + type: "item" + } + ] + title: "&cGrowing \\& Speed up Growth&r &f&oTier 3" + x: -5.0d + y: -3.5d + } + { + dependencies: ["26AEC68A7F67C65F"] + id: "5B8090AE76C3EC15" + rewards: [{ + exclude_from_claim_all: true + id: "652327CD2D86202E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "016F74D830D50BAC" + item: { + Count: 1 + id: "mysticalagriculture:imperium_watering_can" + tag: { + Active: 0b + Water: 0b + } + } + type: "item" + } + { + id: "500C65967034A16C" + item: "mysticalagriculture:imperium_farmland" + type: "item" + } + { + id: "17EC6E40A561A687" + item: "mysticalagriculture:imperium_growth_accelerator" + type: "item" + } + ] + title: "&9Growing \\& Speed up Growth&r &f&oTier 4" + x: -4.0d + y: -3.5d + } + { + dependencies: ["5341CE682C69DDB1"] + id: "3C5D84B0D51474E7" + rewards: [{ + exclude_from_claim_all: true + id: "56F13033E1513DCA" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "0760BF90FE86F459" + item: { + Count: 1 + id: "mysticalagriculture:supremium_watering_can" + tag: { + Active: 0b + Water: 0b + } + } + type: "item" + } + { + id: "2EC779926C8DEE69" + item: "mysticalagriculture:supremium_farmland" + type: "item" + } + { + id: "369D79C9DE3D54E0" + item: "mysticalagriculture:supremium_growth_accelerator" + type: "item" + } + ] + title: "&4Growing \\& Speed up Growth&r &f&oTier 5" + x: 0.5d + y: -3.5d + } + { + dependencies: ["4808BBE6C5E57032"] + id: "383784BD11018358" + rewards: [{ + exclude_from_claim_all: true + id: "5F91AA6545D7A4C3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "25300C38F2493B83" + item: { + Count: 1 + id: "mysticaladaptations:insanium_watering_can" + tag: { + Active: 0b + Water: 0b + } + } + type: "item" + } + { + id: "2FB4F020BFA11AE0" + item: "mysticalagradditions:insanium_farmland" + type: "item" + } + ] + title: "&1Growing \\& Speed up Growth&r &f&oTier 6" + x: 1.5d + y: -3.5d + } + { + dependencies: ["3A83B7208433E77E"] + description: [ + "Starting with Inferium Essence, you can create ingots to make both Essence &9Tools&r and &9Armor&r." + "" + "Essence tools can be upgraded to higher tiers, and just like the Armor, they can be &5Augmented&r in the &3Tinkering Table&r." + ] + id: "7FB0BABF99C78B45" + rewards: [{ + exclude_from_claim_all: true + id: "45ADC374E5D208C7" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "552B4340899F4F4B" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mysticalagriculture:inferium_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_hoe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_scythe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagradditions:inferium_paxel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_sickle" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_fishing_rod" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_shears" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_sword" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_bow" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:inferium_crossbow" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&aEssence Tools \\& Weapons" + type: "item" + }] + title: "&aEssence Tools \\& Weapons" + x: -12.0d + y: -5.0d + } + { + dependencies: ["4808BBE6C5E57032"] + id: "256117E2CFE18E5E" + rewards: [{ + exclude_from_claim_all: true + id: "5A0429FA15424971" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "74A0FC379DFA19F2" + item: "mysticaladaptations:insanium_reprocessor" + type: "item" + }] + x: 2.5d + y: -4.0d + } + { + dependencies: ["28586493542A3B3A"] + id: "0A8438EEDA517E19" + rewards: [{ + exclude_from_claim_all: true + id: "4F87EFFE9919A99E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1C74D5F8551CBA62" + item: "mysticalagradditions:inferium_apple" + type: "item" + }] + x: -12.0d + y: -8.0d + } + { + dependencies: ["41E5E6BF7CB5063F"] + id: "5373EC65F7FE2062" + rewards: [{ + exclude_from_claim_all: true + id: "44B0211391DDFEE1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "04D1036158D6B176" + item: "mysticalagradditions:prudentium_apple" + type: "item" + }] + x: -8.0d + y: -8.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + id: "7E7A2C868DD49183" + rewards: [{ + exclude_from_claim_all: true + id: "18FC0321EFC87B2C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1113AA46044FB551" + item: "mysticalagradditions:tertium_apple" + type: "item" + }] + x: -6.5d + y: -8.0d + } + { + dependencies: ["3763C9494249EC62"] + id: "7D9E252524844C7F" + rewards: [{ + exclude_from_claim_all: true + id: "3B0018A43C658032" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "79FC3C1CAA395D43" + item: "mysticalagradditions:imperium_apple" + type: "item" + }] + x: -2.5d + y: -8.0d + } + { + dependencies: ["6C52741D22052A14"] + id: "7AF442E4FE907D64" + rewards: [{ + exclude_from_claim_all: true + id: "03F71FCC4ECDB96B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "32866A6A146A5A0E" + item: "mysticalagradditions:supremium_apple" + type: "item" + }] + x: -1.0d + y: -8.0d + } + { + dependencies: ["4970CC2851818A02"] + id: "693FC8F01CCA749A" + rewards: [{ + exclude_from_claim_all: true + id: "6C2AC05CB13C75CE" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2E9D85D44EFD694D" + item: "mysticalagradditions:insanium_apple" + type: "item" + }] + x: 3.0d + y: -8.0d + } + { + dependencies: ["2B929B5A07037BD9"] + hide_dependency_lines: true + id: "045B515A2FC76E55" + rewards: [ + { + id: "0A3F386B531A8030" + item: "mysticalagriculture:prosperity_shard" + random_bonus: 7 + type: "item" + } + { + exclude_from_claim_all: true + id: "54C08418F5B5ECE5" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2E397DEC7A70A2A8" + item: "mysticalagriculture:prosperity_seed_base" + type: "item" + }] + x: -5.0d + y: -10.5d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "4B6170CA303076DD" + rewards: [ + { + exclude_from_claim_all: true + id: "548AF9DA216B0096" + table_id: 6305167096659659419L + type: "random" + } + { + id: "53FA8A60DD7327A8" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0548C23DFD808082" + item: "mysticalagriculture:inferium_seeds" + type: "item" + }] + x: -12.95d + y: -2.1d + } + { + dependencies: ["045B515A2FC76E55"] + hide_dependency_lines: true + id: "16F3395D7F66884E" + rewards: [ + { + id: "4C233D3750755172" + item: "mysticalagriculture:soulium_ore" + random_bonus: 5 + type: "item" + } + { + exclude_from_claim_all: true + id: "428D628D3E6B5F54" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "24902049F1152926" + item: "mysticalagriculture:soulium_seed_base" + type: "item" + }] + x: -4.0d + y: -10.5d + } + { + dependencies: ["24902049F1152926"] + description: [ + "The &9Tinkering Table&r is used to upgrade &aEssence Gear&r with &dAugments&r." + "" + "Augments can be made using the Infusion Altar. Just like the Essences, Augments have tiers!" + ] + id: "31A06D0CDFE935A7" + rewards: [ + { + id: "2FB0BD8F0550A0A3" + item: "mysticalagriculture:unattuned_augment" + type: "item" + } + { + exclude_from_claim_all: true + id: "7F0FF2A6BB84246B" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + id: "3657173CD2F2ADC9" + item: "mysticalagriculture:tinkering_table" + type: "item" + } + { + id: "68C2D2A3753B1F1C" + item: "mysticalagriculture:unattuned_augment" + type: "item" + } + ] + title: "&dTinkering Table" + x: 0.0d + y: -10.5d + } + { + dependencies: ["2E397DEC7A70A2A8"] + description: [ + "The &9Infusion Altar&r is the bread and butter of creating &aSeeds&r in the mod. You'll need to create the Altar itself, as well as 8 Pedestals." + "" + "Placing the Altar down first will show you where to put the Pedestals. To craft a seed, place the required mats in each pedestal, then give a redstone signal to the Altar." + ] + id: "458826F7BC0D3554" + rewards: [{ + exclude_from_claim_all: true + id: "74BA1DB10036AA36" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [ + { + id: "738561E10342C09F" + item: "mysticalagriculture:infusion_altar" + type: "item" + } + { + count: 8L + id: "7DE0038FF085385B" + item: "mysticalagriculture:infusion_pedestal" + type: "item" + } + ] + title: "&dThe Infusion Altar" + x: -1.0d + y: -10.5d + } + { + dependencies: [ + "5BACA82D1436C781" + "666346BDA20E5BAA" + ] + description: ["&dMystical Agriculture&r is a mod based around the concept of growing your resources with crops. Use crops to grow essences used to make materials, mob drops, tools, armor and possibly even more!"] + hide_dependency_lines: true + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "mysticalagriculture:guide" + } + } + id: "2E747C1C2DB534B5" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "75267A368DBB5AF8" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oMechanical Crafter&r quest and obtaining one seed in the &b&n&oBasic Agriculture&r chapter*" + tasks: [{ + id: "17F5C4B21CBF5F41" + type: "checkmark" + }] + title: "Welcome to &5Mystical Agriculture" + x: -10.5d + y: -10.5d + } + { + dependencies: ["16F3395D7F66884E"] + description: [ + "Most seeds are simple to make, but to make &9Mob Seeds&r, you'll need to head to the Nether to pick up some &8Soulium&r." + "" + "With the stone and ore that you find, you'll need to use these to make the &3Soulium Dagger&r and &3Soul Jars&r. Using the dagger to kill mobs, you'll be able to gather their &bsouls&r, which are used in the Infusion Altar to create the respective mob seeds." + "" + "Alternatively, you can fill Soul Jars inside of the &3Soul Extractor&r by inserting a jar and using mob items to fill them. For example, adding Rotten Flesh will give a portion of a Zombie Soul." + "" + "To make &eExperience Seeds&r you'll need filled &3Experience Capsules&r, which you have to craft with same material as needed to craft the &3Soul Jars&r." + ] + hide_dependency_lines: true + id: "66F55A558D9D8046" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "3EDE3C8EE1D16F6D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [ + { + id: "05CA2023E5C5B8EB" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "mysticalagriculture:soul_extractor" + } + type: "item" + } + { + id: "5CF8797749EB692B" + item: { + Count: 1 + id: "mysticalagriculture:soulium_dagger" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "58F4505096821850" + item: "mysticalagriculture:soul_jar" + type: "item" + } + { + id: "3C6F862E43451B59" + item: "mysticalagriculture:experience_capsule" + type: "item" + } + ] + title: "&dCreating Mob \\& Experiance Seeds" + x: 1.0d + y: -10.5d + } + { + dependencies: ["28586493542A3B3A"] + id: "42C30F37C6255D41" + rewards: [{ + exclude_from_claim_all: true + id: "4B5DFF541E99B6AD" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "546CB508C884E7C8" + item: { + Count: 1 + id: "matc:inferium_crystal" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -11.5d + y: -7.0d + } + { + dependencies: ["41E5E6BF7CB5063F"] + id: "5A5D22AD75FFED63" + rewards: [{ + exclude_from_claim_all: true + id: "5F1B01F83A00894C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0ABD9C9544738C43" + item: { + Count: 1 + id: "matc:prudentium_crystal" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.5d + y: -7.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + id: "578C0A25E1EBF7F3" + rewards: [{ + exclude_from_claim_all: true + id: "71D54106F54CC89A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6B5617EFB7742543" + item: { + Count: 1 + id: "matc:tertium_crystal" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: -7.0d + } + { + dependencies: ["3763C9494249EC62"] + id: "5E2C1972A7B897D6" + rewards: [{ + exclude_from_claim_all: true + id: "767BFB930DC6750C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "04AE9C2583D9A82B" + item: { + Count: 1 + id: "matc:imperium_crystal" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.0d + y: -7.0d + } + { + dependencies: ["6C52741D22052A14"] + id: "57F76ECE53428F47" + rewards: [{ + exclude_from_claim_all: true + id: "4637078B2F300B3D" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "317A5D7AFA2BEBEF" + item: { + Count: 1 + id: "matc:supremium_crystal" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.5d + y: -7.0d + } + { + dependencies: ["4970CC2851818A02"] + id: "5B3673023AB2E4E9" + rewards: [{ + exclude_from_claim_all: true + id: "7E77CC24F5079AE8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "559A66FC2F4E1E43" + item: "mysticalagriculture:master_infusion_crystal" + type: "item" + }] + x: 2.5d + y: -7.0d + } + { + dependencies: ["6C52741D22052A14"] + description: [ + "To awaken your Supremium Essence, you'll need to create a new Altar and 4 new Pedestals, as well as a new type of pedestal called the &cEssence Vessel&r." + "" + "The Essence Vessels will require the starter Element Essences to fill: Fire, Water, Earth, and Air." + ] + hide_dependency_lines: true + id: "586C269FAAC6D0AB" + rewards: [{ + exclude_from_claim_all: true + id: "765A447F7459ADC3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [ + { + id: "76D4ADCF47DFE086" + item: "mysticalagriculture:awakening_altar" + type: "item" + } + { + count: 4L + id: "0717B60E46E49E7C" + item: "mysticalagriculture:awakening_pedestal" + type: "item" + } + { + count: 4L + id: "22B8D074B7D4DFCA" + item: "mysticalagriculture:essence_vessel" + type: "item" + } + ] + title: "&dThe Awakening" + x: 2.0d + y: -10.5d + } + { + dependencies: ["28586493542A3B3A"] + id: "1A40EEFF4C1F1A9B" + rewards: [{ + exclude_from_claim_all: true + id: "6DE27A04BA71545E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5D649D36B560A33D" + item: "mysticalagriculture:inferium_gemstone" + type: "item" + }] + x: -11.5d + y: -9.0d + } + { + dependencies: ["3A83B7208433E77E"] + description: [ + "To start making &aEssence Gear&r, you'll need to make the Inferium Armor first." + "" + "This gear can be upgraded to higher tiers, just like the Essences. You can also &9Augment&r them with the &bTinkering Table&r!" + ] + id: "511DD8761FFFD191" + rewards: [{ + exclude_from_claim_all: true + id: "39AF6DE672BF29A8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "261B5BE0DD43381D" + item: { + Count: 1 + id: "mysticalagriculture:inferium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "074E9AB984319126" + item: { + Count: 1 + id: "mysticalagriculture:inferium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4237F3CE2CE5C472" + item: { + Count: 1 + id: "mysticalagriculture:inferium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "005C81D4F3BCA465" + item: { + Count: 1 + id: "mysticalagriculture:inferium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&aEssence Armor" + x: -12.0d + y: -6.0d + } + { + dependencies: ["28586493542A3B3A"] + description: [ + "&bProsperity Shards&r are used as one of the main crafting mats for several of the recipes in Mystical Agriculture, like seeds, ingots, and more." + "" + "You'll find these from mining!" + ] + hide_dependency_lines: true + id: "2B929B5A07037BD9" + rewards: [ + { + count: 2 + id: "05A4DF4E87F1A4C6" + item: "mysticalagriculture:prosperity_shard" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "60D73AD4A0599946" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "18A741C8206BDD32" + item: "mysticalagriculture:prosperity_shard" + type: "item" + }] + x: -6.0d + y: -10.5d + } + { + dependencies: ["41E5E6BF7CB5063F"] + id: "36ABA39A73F16008" + rewards: [{ + exclude_from_claim_all: true + id: "4F4AC54227B63A67" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "79F603B5F567A67E" + item: "mysticalagriculture:prudentium_gemstone" + type: "item" + }] + x: -8.5d + y: -9.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + id: "6B8B04A53A69E92A" + rewards: [{ + exclude_from_claim_all: true + id: "654CFEAB1541A3F0" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "097F6C68348DE064" + item: "mysticalagriculture:tertium_gemstone" + type: "item" + }] + x: -6.0d + y: -9.0d + } + { + dependencies: ["3763C9494249EC62"] + id: "3A2D958CFEEF78A2" + rewards: [{ + exclude_from_claim_all: true + id: "3C4E239789839E5F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "4014A88ACFD960E5" + item: "mysticalagriculture:imperium_gemstone" + type: "item" + }] + x: -3.0d + y: -9.0d + } + { + dependencies: ["6C52741D22052A14"] + id: "74C03FBC778BA906" + rewards: [{ + exclude_from_claim_all: true + id: "4C24969A4D214944" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "23AB38E084308893" + item: "mysticalagriculture:supremium_gemstone" + type: "item" + }] + x: -0.5d + y: -9.0d + } + { + dependencies: ["4970CC2851818A02"] + id: "412862749CB27E96" + rewards: [{ + exclude_from_claim_all: true + id: "0E25E8C61A0B0544" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0D674C346F359713" + item: "mysticalagradditions:insanium_gemstone" + type: "item" + }] + x: 2.5d + y: -9.0d + } + { + dependencies: ["4970CC2851818A02"] + description: ["This special essence is used for making most of the &6Creative&r items."] + hide_dependency_lines: true + id: "7CD3468178DB684E" + rewards: [{ + exclude_from_claim_all: true + id: "300443CD03227DBB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + subtitle: "&bTier:&r &5Creative" + tasks: [{ + id: "362BCA59E34B3E7D" + item: "mysticalagradditions:creative_essence" + type: "item" + }] + title: "&5Creative essence" + x: 4.5d + y: -10.5d + } + { + dependencies: ["6638091197AC8D65"] + id: "4E6FF002D6C5580E" + rewards: [{ + exclude_from_claim_all: true + id: "3148A1E066E1AB3D" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "780FE85F6CEE00E7" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mysticalagriculture:prudentium_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_hoe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_scythe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagradditions:prudentium_paxel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_sickle" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_fishing_rod" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_shears" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_sword" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_bow" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:prudentium_crossbow" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&2Essence Tools \\& Weapons" + type: "item" + }] + title: "&2Essence Tools \\& Weapons" + x: -8.0d + y: -5.0d + } + { + dependencies: ["6638091197AC8D65"] + id: "746C4B9DEC8DE25C" + rewards: [{ + exclude_from_claim_all: true + id: "696E27F004535E2B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "3157E80810EDB8CA" + item: { + Count: 1 + id: "mysticalagriculture:prudentium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5E7690CFA38A452F" + item: { + Count: 1 + id: "mysticalagriculture:prudentium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "08EF6A3DD7D8AA28" + item: { + Count: 1 + id: "mysticalagriculture:prudentium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4C49A2BDFA402048" + item: { + Count: 1 + id: "mysticalagriculture:prudentium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&2Essence Armor" + x: -8.0d + y: -6.0d + } + { + dependencies: ["76EF8F2C8B447E67"] + id: "2192DB99EC17807E" + rewards: [{ + exclude_from_claim_all: true + id: "289966208F9137C3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "563BFD75178EC558" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mysticalagriculture:tertium_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_hoe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_scythe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagradditions:tertium_paxel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_sickle" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_fishing_rod" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_shears" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_sword" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_bow" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:tertium_crossbow" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&cEssence Tools \\& Weapons" + type: "item" + }] + title: "&cEssence Tools \\& Weapons" + x: -6.5d + y: -5.0d + } + { + dependencies: ["26AEC68A7F67C65F"] + id: "1A6E8D9F8C1DDE91" + rewards: [{ + exclude_from_claim_all: true + id: "4F300639B6845727" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "57B3E817BE346A23" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mysticalagriculture:imperium_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_hoe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_scythe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagradditions:imperium_paxel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_sickle" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_fishing_rod" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_shears" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_sword" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_bow" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "mysticalagriculture:imperium_crossbow" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&9Essence Tools \\& Weapons" + type: "item" + }] + title: "&9Essence Tools \\& Weapons" + x: -2.5d + y: -5.0d + } + { + dependencies: ["26AEC68A7F67C65F"] + id: "70EFB06E6ADA9DA6" + rewards: [{ + exclude_from_claim_all: true + id: "69712F163E956D24" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "21457166238AD56C" + item: { + Count: 1 + id: "mysticalagriculture:imperium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7CCE5FBD1F7EE7A4" + item: { + Count: 1 + id: "mysticalagriculture:imperium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "28772D737E361EC8" + item: { + Count: 1 + id: "mysticalagriculture:imperium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "545C03BF88E2D98B" + item: { + Count: 1 + id: "mysticalagriculture:imperium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&9Essence Armor" + x: -2.5d + y: -6.0d + } + { + dependencies: ["5341CE682C69DDB1"] + id: "5004AE3D175A02A6" + rewards: [{ + exclude_from_claim_all: true + id: "47C9E4DA8B57754B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "5F4DE15DB888A6D0" + item: { + Count: 1 + id: "mysticalagriculture:supremium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7216F3D75CBFDA38" + item: { + Count: 1 + id: "mysticalagriculture:supremium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3707EE1DCAE8ABB1" + item: { + Count: 1 + id: "mysticalagriculture:supremium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3938726F8E2E871C" + item: { + Count: 1 + id: "mysticalagriculture:supremium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&4Essence Armor" + x: -1.0d + y: -6.0d + } + { + dependencies: ["76EF8F2C8B447E67"] + id: "1C7595C546E3ADF2" + rewards: [{ + exclude_from_claim_all: true + id: "506831C2731350C2" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "66D215768302D2CD" + item: { + Count: 1 + id: "mysticalagriculture:tertium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6594C5B0ECE46944" + item: { + Count: 1 + id: "mysticalagriculture:tertium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "209C8F3F0C77F4C3" + item: { + Count: 1 + id: "mysticalagriculture:tertium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "47262296ACCEC643" + item: { + Count: 1 + id: "mysticalagriculture:tertium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&cEssence Armor" + x: -6.5d + y: -6.0d + } + { + dependencies: ["5341CE682C69DDB1"] + id: "6013A55D0A31137E" + rewards: [{ + exclude_from_claim_all: true + id: "7688FB3FBF353475" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0E6A52FECFA95B95" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mysticalagriculture:supremium_pickaxe" + } + { + Count: 1b + id: "mysticalagriculture:supremium_shovel" + } + { + Count: 1b + id: "mysticalagriculture:supremium_axe" + } + { + Count: 1b + id: "mysticalagriculture:supremium_hoe" + } + { + Count: 1b + id: "mysticalagriculture:supremium_scythe" + } + { + Count: 1b + id: "mysticalagradditions:supremium_paxel" + } + { + Count: 1b + id: "mysticalagriculture:supremium_sickle" + } + { + Count: 1b + id: "mysticalagriculture:supremium_fishing_rod" + } + { + Count: 1b + id: "mysticalagriculture:supremium_shears" + } + { + Count: 1b + id: "mysticalagriculture:supremium_sword" + } + { + Count: 1b + id: "mysticalagriculture:supremium_bow" + } + { + Count: 1b + id: "mysticalagriculture:supremium_crossbow" + } + ] + } + } + title: "&4Essence Tools \\& Weapons" + type: "item" + }] + title: "&4Essence Tools \\& Weapons" + x: -1.0d + y: -5.0d + } + { + dependencies: ["4808BBE6C5E57032"] + id: "5853A6A7DC4BF393" + rewards: [{ + exclude_from_claim_all: true + id: "1C248C5F3CD127B1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "4F91836222DA028B" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mysticaladaptations:insanium_pickaxe" + } + { + Count: 1b + id: "mysticaladaptations:insanium_shovel" + } + { + Count: 1b + id: "mysticaladaptations:insanium_axe" + } + { + Count: 1b + id: "mysticaladaptations:insanium_hoe" + } + { + Count: 1b + id: "mysticaladaptations:insanium_scythe" + } + { + Count: 1b + id: "mysticaladaptations:insanium_paxel" + } + { + Count: 1b + id: "mysticaladaptations:insanium_sickle" + } + { + Count: 1b + id: "mysticaladaptations:insanium_fishing_rod" + } + { + Count: 1b + id: "mysticaladaptations:insanium_shears" + } + { + Count: 1b + id: "mysticaladaptations:insanium_sword" + } + { + Count: 1b + id: "mysticaladaptations:insanium_bow" + } + { + Count: 1b + id: "mysticaladaptations:insanium_crossbow" + } + ] + } + } + title: "&1Essence Tools \\& Weapons" + type: "item" + }] + title: "&1Essence Tools \\& Weapons" + x: 3.0d + y: -5.0d + } + { + dependencies: ["4808BBE6C5E57032"] + id: "1C14C5EED8076080" + rewards: [{ + exclude_from_claim_all: true + id: "47C333E1A46CBBA5" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "6EBFD335DFFB8247" + item: { + Count: 1 + id: "mysticaladaptations:insanium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "652B3150746A7396" + item: { + Count: 1 + id: "mysticaladaptations:insanium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2192E1739EDF3D10" + item: { + Count: 1 + id: "mysticaladaptations:insanium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4ED25B94C01B3BB7" + item: { + Count: 1 + id: "mysticaladaptations:insanium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&1Essence Armor" + x: 3.0d + y: -6.0d + } + { + dependencies: ["29C451D97A47A48C"] + hide_dependency_lines: true + id: "1E4E718BB7A63EFD" + rewards: [ + { + id: "383003E23596CADE" + item: "mysticalagriculture:awakened_supremium_essence" + type: "item" + } + { + exclude_from_claim_all: true + id: "474AEE6CBC55AEA8" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + subtitle: "&bTier:&r &6Awakened" + tasks: [{ + id: "4DBB187E9ADA4384" + item: "mysticalagriculture:awakened_supremium_essence" + type: "item" + }] + title: "&cAwakened Supremium Essence" + x: 5.5d + y: -8.0d + } + { + dependencies: ["1E4E718BB7A63EFD"] + hide_dependency_lines: true + id: "23EAABD5221EB3ED" + rewards: [{ + exclude_from_claim_all: true + id: "72F11BC94927C67C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [ + { + id: "68A5353BD2390C49" + item: "mysticalagriculture:awakened_supremium_gemstone" + type: "item" + } + { + id: "005BBA900D673A6C" + item: "mysticalagriculture:awakened_supremium_ingot" + type: "item" + } + ] + title: "Awakened Gemstone \\& Ingot" + x: 5.5d + y: -7.0d + } + { + dependencies: ["1E4E718BB7A63EFD"] + hide_dependency_lines: true + id: "6213EC800B6C9A60" + rewards: [{ + exclude_from_claim_all: true + id: "1BE0B52B373DC788" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "13BECB315865B4CB" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_pickaxe" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_shovel" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_axe" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_hoe" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_scythe" + } + { + Count: 1b + id: "mysticalagradditions:awakened_supremium_paxel" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_sickle" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_fishing_rod" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_shears" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_sword" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_bow" + } + { + Count: 1b + id: "mysticalagriculture:awakened_supremium_crossbow" + } + ] + } + } + title: "&cEssence Tools \\& Weapons" + type: "item" + }] + title: "&cEssence Tools \\& Weapons" + x: 5.5d + y: -5.0d + } + { + dependencies: ["1E4E718BB7A63EFD"] + hide_dependency_lines: true + id: "1FCFAE491EF9E348" + rewards: [{ + exclude_from_claim_all: true + id: "7C4A3288B6EB90CF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [ + { + id: "67D801F4828622CB" + item: { + Count: 1 + id: "mysticalagriculture:awakened_supremium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "73FC352D9B4014AB" + item: { + Count: 1 + id: "mysticalagriculture:awakened_supremium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "050103BF48069769" + item: { + Count: 1 + id: "mysticalagriculture:awakened_supremium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "619CC7F683EB024D" + item: { + Count: 1 + id: "mysticalagriculture:awakened_supremium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&cEssence Armor" + x: 5.5d + y: -6.0d + } + { + dependencies: ["586C269FAAC6D0AB"] + description: ["This special &eDust&r is dropped from the Wither and the Ender Dragon when killed by an &dEssence Weapon&r enchanted with &dMystical Enlightenment&r."] + hide_dependency_lines: true + id: "29C451D97A47A48C" + rewards: [ + { + id: "43D63B79C8EF4D79" + item: "mysticalagriculture:cognizant_dust" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "5439E7C2FECBB352" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3270B056E43E27CA" + item: "mysticalagriculture:cognizant_dust" + type: "item" + }] + title: "&5Cognizant Dust" + x: 3.0d + y: -10.5d + } + { + dependencies: ["7FB0BABF99C78B45"] + description: ["This special &eDust&r is dropped from the Wither and the Ender Dragon when killed by an &dEssence Weapon&r enchanted with &dMystical Enlightenment&r."] + hide_dependency_lines: true + id: "55C1EB0809EDA131" + rewards: [{ + exclude_from_claim_all: true + id: "17490DBFFD930A53" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "778FCF979EDA89B7" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "mysticalagriculture:mystical_enlightenment" + lvl: 1s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "mysticalagriculture:mystical_enlightenment" + lvl: 2s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "mysticalagriculture:mystical_enlightenment" + lvl: 3s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "mysticalagriculture:mystical_enlightenment" + lvl: 4s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "mysticalagriculture:mystical_enlightenment" + lvl: 5s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "mysticalagriculture:mystical_enlightenment" + lvl: 6s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "mysticalagriculture:mystical_enlightenment" + lvl: 7s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "mysticalagriculture:mystical_enlightenment" + lvl: 8s + }] + } + } + { + Count: 1b + id: "minecraft:enchanted_book" + tag: { + StoredEnchantments: [{ + id: "mysticalagriculture:mystical_enlightenment" + lvl: 9s + }] + } + } + ] + } + } + type: "item" + }] + title: "&bThe Mystical Enlightenment" + x: -3.0d + y: -10.5d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "35703DB3D3E994BC" + rewards: [ + { + exclude_from_claim_all: true + id: "1E6D3023BEFB24C3" + table_id: 6305167096659659419L + type: "random" + } + { + id: "65BCEB9176764C79" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &eElemental" + tasks: [{ + id: "4F89056A06291BD5" + item: "mysticalagriculture:air_seeds" + type: "item" + }] + x: -12.95d + y: -1.4d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "1576015A8F7E986C" + rewards: [ + { + exclude_from_claim_all: true + id: "231370065CDA1A51" + table_id: 6305167096659659419L + type: "random" + } + { + id: "722DB1B53456F969" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &eElemental" + tasks: [{ + id: "489DF09F954D317F" + item: "mysticalagriculture:earth_seeds" + type: "item" + }] + x: -12.95d + y: -0.7d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "49D7572392ABDA96" + rewards: [ + { + exclude_from_claim_all: true + id: "484D62255FFA3F2D" + table_id: 6305167096659659419L + type: "random" + } + { + id: "69D83638E91BBDB2" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &eElemental" + tasks: [{ + id: "484688445BA6640B" + item: "mysticalagriculture:fire_seeds" + type: "item" + }] + x: -12.95d + y: 0.0d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "0EA8C266382E5917" + rewards: [ + { + exclude_from_claim_all: true + id: "42E676B48312C844" + table_id: 6305167096659659419L + type: "random" + } + { + id: "1F10D64EF650A01C" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &eElemental" + tasks: [{ + id: "14EB220DFDAE980A" + item: "mysticalagriculture:water_seeds" + type: "item" + }] + x: -12.25d + y: -2.1d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "2C6C97E9A57C9EF9" + rewards: [ + { + exclude_from_claim_all: true + id: "2DFE59F167399F76" + table_id: 6305167096659659419L + type: "random" + } + { + id: "7CCE818A3392F1C7" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &a1" + tasks: [{ + id: "7A2679F401B07A11" + item: "mysticalagriculture:dirt_seeds" + type: "item" + }] + x: -12.25d + y: -1.4d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "373973A1539D549D" + rewards: [ + { + exclude_from_claim_all: true + id: "4A072D45279D9BFC" + table_id: 6305167096659659419L + type: "random" + } + { + id: "2D303B79B6F5C033" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &a1" + tasks: [{ + id: "53FB22E6A507C2C4" + item: "mysticalagriculture:wood_seeds" + type: "item" + }] + x: -12.25d + y: -0.7d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "66790D6BDE027D7B" + rewards: [ + { + exclude_from_claim_all: true + id: "72FB4C6AE4FBFCA8" + table_id: 6305167096659659419L + type: "random" + } + { + id: "476B9803D88EE627" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &a1" + tasks: [{ + id: "35CF3C2ABAEAE8E1" + item: "mysticalagriculture:ice_seeds" + type: "item" + }] + x: -12.25d + y: 0.0d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "1651A43757484655" + rewards: [ + { + exclude_from_claim_all: true + id: "04EF7A05C5E1F457" + table_id: 6305167096659659419L + type: "random" + } + { + id: "42CAEC37F12F439E" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &a1" + tasks: [{ + id: "746E5D28E88D0284" + item: "mysticalagriculture:stone_seeds" + type: "item" + }] + x: -11.549999999999999d + y: -2.1d + } + { + dependencies: ["28586493542A3B3A"] + hide_dependency_lines: true + id: "78A41100B637A09A" + rewards: [ + { + exclude_from_claim_all: true + id: "395D7B989F8937BC" + table_id: 6305167096659659419L + type: "random" + } + { + id: "1469BAA7392811B9" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &a1" + tasks: [{ + id: "64E2157D765A095A" + item: "mysticalagriculture:deepslate_seeds" + type: "item" + }] + x: -11.549999999999999d + y: -1.4d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "1B96485516B73830" + rewards: [ + { + exclude_from_claim_all: true + id: "32809428E630F466" + table_id: 6305167096659659419L + type: "random" + } + { + id: "2C89A71ADBB7B5AA" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "5706D796B9723D1A" + item: "mysticalagriculture:aluminum_seeds" + type: "item" + }] + x: -11.549999999999999d + y: -0.7d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "21D2AD897C70C5CB" + rewards: [ + { + exclude_from_claim_all: true + id: "7167835476103CB1" + table_id: 6305167096659659419L + type: "random" + } + { + id: "2DBD7277255A7D62" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "7EB461D5BB602674" + item: "mysticalagriculture:amethyst_seeds" + type: "item" + }] + x: -11.549999999999999d + y: 0.0d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "2C0BAAC4D4D63410" + rewards: [ + { + exclude_from_claim_all: true + id: "4A01654CB16B3D1D" + table_id: 6305167096659659419L + type: "random" + } + { + id: "5536AC1FDDDECEE2" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "2A0A60F1BE982436" + item: "mysticalagriculture:chicken_seeds" + type: "item" + }] + x: -10.85d + y: -2.1d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "77924D71C0DE73EF" + rewards: [ + { + exclude_from_claim_all: true + id: "66A65A3CEB485295" + table_id: 6305167096659659419L + type: "random" + } + { + id: "0952C2E844D3CAB0" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "17500C6199693444" + item: "mysticalagriculture:coal_seeds" + type: "item" + }] + x: -10.85d + y: -1.4d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "20926AA649A91AD0" + rewards: [ + { + exclude_from_claim_all: true + id: "1367A34BA3E057F6" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6587405780D7F7ED" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "713E5B2D4798AA2F" + item: "mysticalagriculture:coral_seeds" + type: "item" + }] + x: -10.85d + y: -0.7d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "1957128498DF7FAB" + rewards: [ + { + exclude_from_claim_all: true + id: "2A5D16D89611038E" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6D9BF6878A71F940" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "398974FF432CA283" + item: "mysticalagriculture:cow_seeds" + type: "item" + }] + x: -10.85d + y: 0.0d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "37330F749F30155A" + rewards: [ + { + exclude_from_claim_all: true + id: "61B9AF9572E9EDEC" + table_id: 6305167096659659419L + type: "random" + } + { + id: "5C8AC8A0D795EF7B" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "6A98C2B6C1D5C11C" + item: "mysticalagriculture:dye_seeds" + type: "item" + }] + x: -10.15d + y: -2.1d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "457A15660416D20E" + rewards: [ + { + exclude_from_claim_all: true + id: "4EC4AC41292B878A" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6C6424892AE92011" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "3DFC1F1426D4AA7E" + item: "mysticalagriculture:fish_seeds" + type: "item" + }] + x: -10.15d + y: -1.4d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "64C4F4459EABD8C4" + rewards: [ + { + exclude_from_claim_all: true + id: "7DFE9EBCAB83089E" + table_id: 6305167096659659419L + type: "random" + } + { + id: "31C4A974D65F786A" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "2276CDAD8D057152" + item: "mysticalagriculture:honey_seeds" + type: "item" + }] + x: -10.15d + y: -0.7d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "4F9B2314154C3A54" + rewards: [ + { + exclude_from_claim_all: true + id: "706DE019645B6B7F" + table_id: 6305167096659659419L + type: "random" + } + { + id: "2A2E2E6617095A02" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "56064F5A0F7F3F81" + item: "mysticalagriculture:mystical_flower_seeds" + type: "item" + }] + x: -10.15d + y: 0.0d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "50FCDB3AFC43F7C9" + rewards: [ + { + exclude_from_claim_all: true + id: "176FE31CAFBDF85D" + table_id: 6305167096659659419L + type: "random" + } + { + id: "0D550A8674B52BD9" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "78CE0AA705D01B1D" + item: "mysticalagriculture:menril_seeds" + type: "item" + }] + x: -8.049999999999999d + y: -0.7d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "78AA4E6316DA8E7D" + rewards: [ + { + exclude_from_claim_all: true + id: "3BCE3345BA37CFC7" + table_id: 6305167096659659419L + type: "random" + } + { + id: "0438B82D3A4785E8" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "4C677ABF6CFF553B" + item: "mysticalagriculture:nature_seeds" + type: "item" + }] + x: -9.45d + y: -1.4d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "630FEFF38CADBA76" + rewards: [ + { + exclude_from_claim_all: true + id: "6BC253D17C4CD0CB" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6EA202AF1641C514" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "5FBCAFAC1D13631B" + item: "mysticalagriculture:nether_seeds" + type: "item" + }] + x: -8.049999999999999d + y: -1.4d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "615DC491C4EF0F5E" + rewards: [ + { + exclude_from_claim_all: true + id: "7EFCE5AFAC0CA983" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6720F2FAAFEC869E" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "437327374343C3FC" + item: "mysticalagriculture:pig_seeds" + type: "item" + }] + x: -9.45d + y: -2.1d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "0CCEBEFA273073BF" + rewards: [ + { + exclude_from_claim_all: true + id: "5A04A3AED779D3E4" + table_id: 6305167096659659419L + type: "random" + } + { + id: "2EEB9808CDF2BC6C" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "23263383C4215C1F" + item: "mysticalagriculture:rubber_seeds" + type: "item" + }] + x: -9.45d + y: -0.7d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "6A0B58D726C65B7C" + rewards: [ + { + exclude_from_claim_all: true + id: "6A00EA423AE4989B" + table_id: 6305167096659659419L + type: "random" + } + { + id: "4EC3BA7537740A82" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "51E5C49F1A049FAE" + item: "mysticalagriculture:saltpeter_seeds" + type: "item" + }] + x: -9.45d + y: 0.0d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "15C0E2C0504E427B" + rewards: [ + { + exclude_from_claim_all: true + id: "01ABBFF2524914FC" + table_id: 6305167096659659419L + type: "random" + } + { + id: "70B45E3D52CF79BC" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "7CF42FBC95407EB4" + item: "mysticalagriculture:sheep_seeds" + type: "item" + }] + x: -8.75d + y: -2.1d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "4571B2BEFFE2DFD8" + rewards: [ + { + exclude_from_claim_all: true + id: "68A94D6F5DF95A79" + table_id: 6305167096659659419L + type: "random" + } + { + id: "340CED432C5AE5EE" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "08C9810C45C28B40" + item: "mysticalagriculture:slime_seeds" + type: "item" + }] + x: -8.75d + y: -1.4d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "514DAC50164EBB68" + rewards: [ + { + exclude_from_claim_all: true + id: "126E5E989ED9AE49" + table_id: 6305167096659659419L + type: "random" + } + { + id: "4AD98C1BC32B5636" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "153D6A2F84411BBA" + item: "mysticalagriculture:squid_seeds" + type: "item" + }] + x: -8.75d + y: -0.7d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "258D9CE0CC7B271A" + rewards: [ + { + exclude_from_claim_all: true + id: "13BCA1A9B637AEDF" + table_id: 6305167096659659419L + type: "random" + } + { + id: "77D272B35ED347C2" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "2E6564D4CBA7446E" + item: "mysticalagriculture:turtle_seeds" + type: "item" + }] + x: -8.75d + y: 0.0d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "483657B745872E40" + rewards: [ + { + exclude_from_claim_all: true + id: "5FE8AB8CE221BADD" + table_id: 6305167096659659419L + type: "random" + } + { + id: "012CE66535D2E748" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "43FB305B5AB31F15" + item: "mysticalagriculture:apatite_seeds" + type: "item" + }] + x: -8.049999999999999d + y: -2.1d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "7EFF2A28A3AC9DBC" + rewards: [ + { + exclude_from_claim_all: true + id: "55DF8455FB6F6425" + table_id: 6305167096659659419L + type: "random" + } + { + id: "515F3BED9CC1A638" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "125172FD175A01E0" + item: "mysticalagriculture:silicon_seeds" + type: "item" + }] + x: -8.049999999999999d + y: 0.0d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "052132F2FCCB680F" + rewards: [ + { + exclude_from_claim_all: true + id: "76FA40AD0D478B2F" + table_id: 6305167096659659419L + type: "random" + } + { + id: "10D18AB9BFFA1F22" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "6657D0B5BED28261" + item: "mysticalagriculture:sulfur_seeds" + type: "item" + }] + x: -7.35d + y: -2.1d + } + { + dependencies: ["41E5E6BF7CB5063F"] + hide_dependency_lines: true + id: "1076C79B3E2F4B98" + rewards: [ + { + exclude_from_claim_all: true + id: "7D06BB006C418C3E" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6512DA9E961DB5D4" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &22" + tasks: [{ + id: "374E191833C25166" + item: "mysticalagriculture:limestone_seeds" + type: "item" + }] + x: -7.35d + y: -1.4d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "2E02702E5886E14F" + rewards: [ + { + exclude_from_claim_all: true + id: "72DE91B809035E43" + table_id: 6305167096659659419L + type: "random" + } + { + id: "1D0966B1A4B2E04C" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "037C9CAD3E5E7CE2" + item: "mysticalagriculture:basalz_seeds" + type: "item" + }] + x: -5.95d + y: -2.1d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "05396197DEC5FE6B" + rewards: [ + { + exclude_from_claim_all: true + id: "1DBDBBA0A2AA2467" + table_id: 6305167096659659419L + type: "random" + } + { + id: "73A4E5998EAF4F5C" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "5241775FDE3A1833" + item: "mysticalagriculture:blitz_seeds" + type: "item" + }] + x: -6.6499999999999995d + y: -1.4d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "2C6A6D1598663BDD" + rewards: [ + { + exclude_from_claim_all: true + id: "7F08EDE5583170ED" + table_id: 6305167096659659419L + type: "random" + } + { + id: "1A7225E98B892AD5" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "49923A018679C18F" + item: "mysticalagriculture:blizz_seeds" + type: "item" + }] + x: -6.6499999999999995d + y: -0.7d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "533DF39E3A2F65BD" + rewards: [ + { + exclude_from_claim_all: true + id: "5A3838F431C0BFF7" + table_id: 6305167096659659419L + type: "random" + } + { + id: "4AA2EDC7ADC0DC2E" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "2394D34F2706DB1C" + item: "mysticalagriculture:bronze_seeds" + type: "item" + }] + x: -7.35d + y: -0.7d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "57E2F0617AF73585" + rewards: [ + { + exclude_from_claim_all: true + id: "1144E4E528CE93E3" + table_id: 6305167096659659419L + type: "random" + } + { + id: "2C219A8EF98E1130" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "24E3292EDEB7994A" + item: "mysticalagriculture:brass_seeds" + type: "item" + }] + x: -5.25d + y: -2.1d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "6BD4BEAC91863EFF" + rewards: [ + { + exclude_from_claim_all: true + id: "1E4F47FF2A50DD4D" + table_id: 6305167096659659419L + type: "random" + } + { + id: "1CDBC3DD91DA4EB0" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "6DF72F6903D68E92" + item: "mysticalagriculture:certus_quartz_seeds" + type: "item" + }] + x: -5.95d + y: -1.4d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "4B5067E5A1EA8C92" + rewards: [ + { + exclude_from_claim_all: true + id: "0A5556BF6A4695F8" + table_id: 6305167096659659419L + type: "random" + } + { + id: "196CF9E392984A17" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "336F82B9DEFA69CF" + item: "mysticalagriculture:creeper_seeds" + type: "item" + }] + x: -5.95d + y: -0.7d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "00A0AABB26FBCBB2" + rewards: [ + { + exclude_from_claim_all: true + id: "72B5692D6C1FC5F7" + table_id: 6305167096659659419L + type: "random" + } + { + id: "59A1451610427952" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "17F4B062E9EE2578" + item: "mysticalagriculture:copper_seeds" + type: "item" + }] + x: -6.6499999999999995d + y: 0.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "572E1EAC61C54E48" + rewards: [ + { + exclude_from_claim_all: true + id: "15EBF84518D7200B" + table_id: 6305167096659659419L + type: "random" + } + { + id: "00AB48EDFF065777" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "1EE3AF35CA331AFE" + item: "mysticalagriculture:glowstone_seeds" + type: "item" + }] + x: -4.55d + y: -2.1d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "63CFFADA90156FA9" + rewards: [ + { + exclude_from_claim_all: true + id: "379D8DAF1531359B" + table_id: 6305167096659659419L + type: "random" + } + { + id: "67DE75486BD420D9" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "6582F2D6A9B63B9F" + item: "mysticalagriculture:graphite_seeds" + type: "item" + }] + x: -5.25d + y: -1.4d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "374E1D549D07B2FB" + rewards: [ + { + exclude_from_claim_all: true + id: "2371715F0604EF97" + table_id: 6305167096659659419L + type: "random" + } + { + id: "3428EDF29913550A" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "64C6F0E62257B96C" + item: "mysticalagriculture:iron_seeds" + type: "item" + }] + x: -5.25d + y: -0.7d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "449782C4666943D0" + rewards: [ + { + exclude_from_claim_all: true + id: "1B4594EA23F904DF" + table_id: 6305167096659659419L + type: "random" + } + { + id: "7D56F71EEC57C375" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "1B9CB519FA83B5FD" + item: "mysticalagriculture:ironwood_seeds" + type: "item" + }] + x: -5.95d + y: 0.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "19FF8CEEC706E6DA" + rewards: [ + { + exclude_from_claim_all: true + id: "6B7987E9B8001BA8" + table_id: 6305167096659659419L + type: "random" + } + { + id: "09C2FF93238C9EB7" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "1D41E618C7ED0E8D" + item: "mysticalagriculture:lead_seeds" + type: "item" + }] + x: -3.85d + y: -2.1d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "72537B27B7AEE503" + rewards: [ + { + exclude_from_claim_all: true + id: "001B04A7F075D7B8" + table_id: 6305167096659659419L + type: "random" + } + { + id: "3788B995CFBD781A" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "0AF607E4AA47020B" + item: "mysticalagriculture:manasteel_seeds" + type: "item" + }] + x: -4.55d + y: -1.4d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "246EA3A9C3EDF553" + rewards: [ + { + exclude_from_claim_all: true + id: "6C2435F59745479A" + table_id: 6305167096659659419L + type: "random" + } + { + id: "60DEFA7E01496ABD" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "710637BEEAD18BEF" + item: "mysticalagriculture:nether_quartz_seeds" + type: "item" + }] + x: -4.55d + y: -0.7d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "75E4B02FD738DCD2" + rewards: [ + { + exclude_from_claim_all: true + id: "2CE8FDD10C77653D" + table_id: 6305167096659659419L + type: "random" + } + { + id: "2D2C2393A7F130D9" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "5CF336E5D551A2D5" + item: "mysticalagriculture:obsidian_seeds" + type: "item" + }] + x: -5.25d + y: 0.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "5FF4CEA44410BFC2" + rewards: [ + { + exclude_from_claim_all: true + id: "5BC6A09318BD83AA" + table_id: 6305167096659659419L + type: "random" + } + { + id: "538C2EA430DF84DF" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "70D40E2274B0AB57" + item: "mysticalagriculture:prismarine_seeds" + type: "item" + }] + x: -3.85d + y: -1.4d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "17DB30ED30279E96" + rewards: [ + { + exclude_from_claim_all: true + id: "3FF04E1A6A592C06" + table_id: 6305167096659659419L + type: "random" + } + { + id: "21A03EFF5AB2A0F7" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "08AAE2F2FFAC7EC6" + item: "mysticalagriculture:quartz_enriched_iron_seeds" + type: "item" + }] + x: -3.85d + y: -0.7d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "0318141E4BBC0DED" + rewards: [ + { + exclude_from_claim_all: true + id: "3DF95C55CF3DB92C" + table_id: 6305167096659659419L + type: "random" + } + { + id: "06DF49C3EE6AD94B" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "53B4AC6B28A868DD" + item: "mysticalagriculture:rabbit_seeds" + type: "item" + }] + x: -4.55d + y: 0.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "4C92B14795AF50DB" + rewards: [ + { + exclude_from_claim_all: true + id: "340FB7BEC467A853" + table_id: 6305167096659659419L + type: "random" + } + { + id: "471DA6A65218E1CC" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "160ADAE6B4DD0375" + item: "mysticalagriculture:redstone_seeds" + type: "item" + }] + x: -3.15d + y: -2.1d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "5A62EDF7A5EEB5DD" + rewards: [ + { + exclude_from_claim_all: true + id: "2FA3EA551C4DFE25" + table_id: 6305167096659659419L + type: "random" + } + { + id: "01DD9C82015DFB97" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "33069D9D47EC1049" + item: "mysticalagriculture:silver_seeds" + type: "item" + }] + x: -3.15d + y: -1.4d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "315D751C73DC5181" + rewards: [ + { + exclude_from_claim_all: true + id: "07B0C0C0B211B4BF" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6E8AF77120D29C66" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "09B3F21E3EBB9FC1" + item: "mysticalagriculture:skeleton_seeds" + type: "item" + }] + x: -3.15d + y: -0.7d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "259152306C4910EB" + rewards: [ + { + exclude_from_claim_all: true + id: "100D57B34A0DCC5B" + table_id: 6305167096659659419L + type: "random" + } + { + id: "7EEEEE5447F2F37B" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "4938C549B74DB336" + item: "mysticalagriculture:sky_stone_seeds" + type: "item" + }] + x: -3.85d + y: 0.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "64A73AAFB9813368" + rewards: [ + { + exclude_from_claim_all: true + id: "2D784BD1C4FF77E7" + table_id: 6305167096659659419L + type: "random" + } + { + id: "01EF401C9C2C263F" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "6D0DCD8B87F919A0" + item: "mysticalagriculture:spider_seeds" + type: "item" + }] + x: -2.4499999999999997d + y: -2.1d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "65904E0B3559E488" + rewards: [ + { + exclude_from_claim_all: true + id: "6A520FFC5E322C68" + table_id: 6305167096659659419L + type: "random" + } + { + id: "465F2F1285749FFD" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "793E98F8CD62200E" + item: "mysticalagriculture:steeleaf_seeds" + type: "item" + }] + x: -2.4499999999999997d + y: -1.4d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "5AC388EA03337678" + rewards: [ + { + exclude_from_claim_all: true + id: "31B396B3FFC00910" + table_id: 6305167096659659419L + type: "random" + } + { + id: "31F1BBD5D7B15AFC" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "5F8D91D24696D419" + item: "mysticalagriculture:tin_seeds" + type: "item" + }] + x: -2.4499999999999997d + y: -0.7d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "4E8CB9B031D4D0E0" + rewards: [ + { + exclude_from_claim_all: true + id: "633F29A6287BD070" + table_id: 6305167096659659419L + type: "random" + } + { + id: "50E0DA731E8AAAB0" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "1CBFE266F3034393" + item: "mysticalagriculture:zinc_seeds" + type: "item" + }] + x: -3.15d + y: 0.0d + } + { + dependencies: ["0EE7C12766C3CA1B"] + hide_dependency_lines: true + id: "6615D6C2199A1584" + rewards: [ + { + exclude_from_claim_all: true + id: "704D42BD27787089" + table_id: 6305167096659659419L + type: "random" + } + { + id: "5AF98BDC21463DAF" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &c3" + tasks: [{ + id: "05D777364F59B1B7" + item: "mysticalagriculture:zombie_seeds" + type: "item" + }] + x: -2.4499999999999997d + y: 0.0d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "3F758FF77316DFC8" + rewards: [ + { + exclude_from_claim_all: true + id: "5DE0C9AECAF1D7AE" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6E3ECC0D1EB6B1A4" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "6379939A36F6DB57" + item: "mysticalagriculture:blaze_seeds" + type: "item" + }] + x: 1.05d + y: 0.0d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "26C92ACA5E2AA8ED" + rewards: [ + { + exclude_from_claim_all: true + id: "030A1D9AC39D4B4D" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6C011E6DDE449CBE" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "31CC9C489E3B2576" + item: "mysticalagriculture:blazing_crystal_seeds" + type: "item" + }] + x: -1.75d + y: -1.4d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "2E08FAE4F667DC23" + rewards: [ + { + exclude_from_claim_all: true + id: "79D1F18B57B1EE21" + table_id: 6305167096659659419L + type: "random" + } + { + id: "68F4AA0A052AF7BA" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "06F5E0B411A2B290" + item: "mysticalagriculture:constantan_seeds" + type: "item" + }] + x: -1.75d + y: -0.7d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "04C7D43A404EF020" + rewards: [ + { + exclude_from_claim_all: true + id: "40A0766CA1D5AD53" + table_id: 6305167096659659419L + type: "random" + } + { + id: "2C1F6A4E14F5ACCA" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "6B3AF2E594103129" + item: "mysticalagriculture:compressed_iron_seeds" + type: "item" + }] + x: 2.4499999999999997d + y: 0.0d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "6F5571593F9544A3" + rewards: [ + { + exclude_from_claim_all: true + id: "118645A96D59D011" + table_id: 6305167096659659419L + type: "random" + } + { + id: "52D4893C54033C83" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "0D58122D6DA61124" + item: "mysticalagriculture:electrum_seeds" + type: "item" + }] + x: -1.05d + y: -2.1d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "54F344F851ECB558" + rewards: [ + { + exclude_from_claim_all: true + id: "166DF418D9ED9C87" + table_id: 6305167096659659419L + type: "random" + } + { + id: "1E3E2119C2400054" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "08B0089D8F553235" + item: "mysticalagriculture:elementium_seeds" + type: "item" + }] + x: -1.05d + y: -1.4d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "25D732E644E04C8E" + rewards: [ + { + exclude_from_claim_all: true + id: "3078A274F771F379" + table_id: 6305167096659659419L + type: "random" + } + { + id: "05788F3F34675C7F" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "406BBB6279C0FA0B" + item: "mysticalagriculture:end_seeds" + type: "item" + }] + x: -1.05d + y: -0.7d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "584AD52B587CBFE1" + rewards: [ + { + exclude_from_claim_all: true + id: "19757D8883E88D6E" + table_id: 6305167096659659419L + type: "random" + } + { + id: "704706DB8BE7CE8B" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "1F7C1DDD1BB632A2" + item: "mysticalagriculture:enderman_seeds" + type: "item" + }] + x: -1.75d + y: 0.0d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "32CB9BA3FE4984BD" + rewards: [ + { + exclude_from_claim_all: true + id: "0EB3BA0B01D539EC" + table_id: 6305167096659659419L + type: "random" + } + { + id: "65DDE8A759FE0A5C" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "67DA4CEE08FF062B" + item: "mysticalagriculture:energized_steel_seeds" + type: "item" + }] + x: -0.35d + y: -2.1d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "2A268C963FE32175" + rewards: [ + { + exclude_from_claim_all: true + id: "196D122884EA717F" + table_id: 6305167096659659419L + type: "random" + } + { + id: "3F6F7F2C1D081ECC" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "6587BEBB100669CA" + item: "mysticalagriculture:experience_seeds" + type: "item" + }] + x: -0.35d + y: -1.4d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "3DDCCD4A784C8E5D" + rewards: [ + { + exclude_from_claim_all: true + id: "2B25A80298294389" + table_id: 6305167096659659419L + type: "random" + } + { + id: "648AA457BA0DA2E3" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "7A1B9BE179494522" + item: "mysticalagriculture:fiery_ingot_seeds" + type: "item" + }] + x: -0.35d + y: -0.7d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "39D9C2B87AEB88D9" + rewards: [ + { + exclude_from_claim_all: true + id: "45A1F908A8E75674" + table_id: 6305167096659659419L + type: "random" + } + { + id: "1C2A806F18756E2C" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "5F04A79C3BE5560F" + item: "mysticalagriculture:fluorite_seeds" + type: "item" + }] + x: -1.05d + y: 0.0d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "7780F4D38227BABA" + rewards: [ + { + exclude_from_claim_all: true + id: "2D42192BD7B83D6E" + table_id: 6305167096659659419L + type: "random" + } + { + id: "62C28B87E2EDCFE3" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "6033FCD82C502727" + item: "mysticalagriculture:fluix_seeds" + type: "item" + }] + x: 0.35d + y: -2.1d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "2D04C3FB144504CE" + rewards: [ + { + exclude_from_claim_all: true + id: "6891017DAAEB134F" + table_id: 6305167096659659419L + type: "random" + } + { + id: "33E303EC7BDE3803" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "6DD1CC4C4714D71A" + item: "mysticalagriculture:ghast_seeds" + type: "item" + }] + x: 0.35d + y: -1.4d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "6665A5C3B4B0228B" + rewards: [ + { + exclude_from_claim_all: true + id: "1F554888B54F0BC5" + table_id: 6305167096659659419L + type: "random" + } + { + id: "1D070BB95D549C42" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "40EF161CE7943FD1" + item: "mysticalagriculture:gold_seeds" + type: "item" + }] + x: 0.35d + y: -0.7d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "595A2B47633D76E2" + rewards: [ + { + exclude_from_claim_all: true + id: "4109DAA75BDB0693" + table_id: 6305167096659659419L + type: "random" + } + { + id: "561D9884C1A263CC" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "3A7D21E33B43109D" + item: "mysticalagriculture:hop_graphite_seeds" + type: "item" + }] + x: -0.35d + y: 0.0d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "04AACF10D080B811" + rewards: [ + { + exclude_from_claim_all: true + id: "5812DF49DD6C52C4" + table_id: 6305167096659659419L + type: "random" + } + { + id: "0672E055CCB893BC" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "2D08C3ADCC37EBE8" + item: "mysticalagriculture:invar_seeds" + type: "item" + }] + x: 1.05d + y: -1.4d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "7E6C4A818FFB5F11" + rewards: [ + { + exclude_from_claim_all: true + id: "4CF4B64BCAC8BEC2" + table_id: 6305167096659659419L + type: "random" + } + { + id: "13578FD5F6434D1F" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "4AE35294564302AD" + item: "mysticalagriculture:knightmetal_seeds" + type: "item" + }] + x: 1.05d + y: -0.7d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "163BCB73EB7E8EC2" + rewards: [ + { + exclude_from_claim_all: true + id: "2612E0371679D4C9" + table_id: 6305167096659659419L + type: "random" + } + { + id: "19BA227061011C8A" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "50345B57C5E068D2" + item: "mysticalagriculture:lapis_lazuli_seeds" + type: "item" + }] + x: 0.35d + y: 0.0d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "51DE04FFF9336299" + rewards: [ + { + exclude_from_claim_all: true + id: "3DB17575AD2BD6A4" + table_id: 6305167096659659419L + type: "random" + } + { + id: "54788603B03F03E3" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "56B5EF4AB2DF8347" + item: "mysticalagriculture:lumium_seeds" + type: "item" + }] + x: 1.05d + y: -2.1d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "740B58C4AD809577" + rewards: [ + { + exclude_from_claim_all: true + id: "5D930F14B2474DD8" + table_id: 6305167096659659419L + type: "random" + } + { + id: "07B6C8053C447EC6" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "2DBB6B713BAA0B1C" + item: "mysticalagriculture:nickel_seeds" + type: "item" + }] + x: 1.75d + y: -1.4d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "19A955268CED26D2" + rewards: [ + { + exclude_from_claim_all: true + id: "550F31980884E4EE" + table_id: 6305167096659659419L + type: "random" + } + { + id: "0A477DC7CEDCC807" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "36C3773E9F2333FD" + item: "mysticalagriculture:osmium_seeds" + type: "item" + }] + x: 1.75d + y: -0.7d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "2F72E236234E7EA8" + rewards: [ + { + exclude_from_claim_all: true + id: "0801D3B3023D3BBC" + table_id: 6305167096659659419L + type: "random" + } + { + id: "613C13374462DCF9" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "756CFA50F4AE2A10" + item: "mysticalagriculture:refined_glowstone_seeds" + type: "item" + }] + x: 2.4499999999999997d + y: -2.1d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "441ED366AD70FD21" + rewards: [ + { + exclude_from_claim_all: true + id: "0412B323604A1FB2" + table_id: 6305167096659659419L + type: "random" + } + { + id: "0FAC96258E0C0F2A" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "5CCBF11E49BF78F8" + item: "mysticalagriculture:refined_obsidian_seeds" + type: "item" + }] + x: 2.4499999999999997d + y: -1.4d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "161C12A283474ECE" + rewards: [ + { + exclude_from_claim_all: true + id: "23C99D4064242FC8" + table_id: 6305167096659659419L + type: "random" + } + { + id: "7A25E2224A345B81" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "21E41F9E7C00DCCF" + item: "mysticalagriculture:ruby_seeds" + type: "item" + }] + x: 2.4499999999999997d + y: -0.7d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "187E392237719DDA" + rewards: [ + { + exclude_from_claim_all: true + id: "46A33A6E9B5536CB" + table_id: 6305167096659659419L + type: "random" + } + { + id: "5ED4C9EC282F4DD2" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "3322FC7A0D67514C" + item: "mysticalagriculture:sapphire_seeds" + type: "item" + }] + x: 1.75d + y: 0.0d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "64EEF0AA458AA276" + rewards: [ + { + exclude_from_claim_all: true + id: "0AA0D0E848D3580E" + table_id: 6305167096659659419L + type: "random" + } + { + id: "321081CD9E81A863" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "62D3A27EE5B436A4" + item: "mysticalagriculture:signalum_seeds" + type: "item" + }] + x: 3.15d + y: -0.7d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "4BB0F4C79C32433F" + rewards: [ + { + exclude_from_claim_all: true + id: "30F901FA4978B250" + table_id: 6305167096659659419L + type: "random" + } + { + id: "44AB51F7F25B6678" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "1C40414F037E4059" + item: "mysticalagriculture:steel_seeds" + type: "item" + }] + x: 3.15d + y: -1.4d + } + { + dependencies: ["3763C9494249EC62"] + hide_dependency_lines: true + id: "08C99D2B89023E0C" + rewards: [ + { + exclude_from_claim_all: true + id: "5B47EED93674D260" + table_id: 6305167096659659419L + type: "random" + } + { + id: "79D663FB39DCFD02" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "665E6EF40D7E13BB" + item: "mysticalagriculture:uranium_seeds" + type: "item" + }] + x: 1.75d + y: -2.1d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "7B67177682B17E61" + rewards: [ + { + exclude_from_claim_all: true + id: "53CACBA07FE18C27" + table_id: 6305167096659659419L + type: "random" + } + { + id: "6050A310B1BE55E7" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "72DC0E09F399B770" + item: "mysticalagriculture:diamond_seeds" + type: "item" + }] + x: 3.85d + y: -1.4d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "3FC925E97B66BAED" + rewards: [ + { + exclude_from_claim_all: true + id: "4B348F5E522220E5" + table_id: 6305167096659659419L + type: "random" + } + { + id: "4F632625EA16CDB4" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "07BF3BDF0A49F6FC" + item: "mysticalagriculture:emerald_seeds" + type: "item" + }] + x: 3.85d + y: -0.7d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "1EDCA1124C7E921B" + rewards: [ + { + exclude_from_claim_all: true + id: "2DC2BD7F4BB6D1C2" + table_id: 6305167096659659419L + type: "random" + } + { + id: "40E3018D0E21BBBA" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "63D53659D11826E3" + item: "mysticalagriculture:enderium_seeds" + type: "item" + }] + x: 3.85d + y: 0.0d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "09BFEA678167D183" + rewards: [ + { + exclude_from_claim_all: true + id: "477A1CE902DC973B" + table_id: 6305167096659659419L + type: "random" + } + { + id: "0D76487EA5EDFA3D" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "6BED58040CB70F49" + item: "mysticalagriculture:iridium_seeds" + type: "item" + }] + x: 4.55d + y: -2.1d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "5771B4F07B01CC87" + rewards: [ + { + exclude_from_claim_all: true + id: "101251E08F9F42B1" + table_id: 6305167096659659419L + type: "random" + } + { + id: "308228E516E9A993" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "51EB9DF3057CFDC1" + item: "mysticalagriculture:netherite_seeds" + type: "item" + }] + x: 4.55d + y: -1.4d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "022FED2C2DC96666" + rewards: [ + { + exclude_from_claim_all: true + id: "293F125CC83157E9" + table_id: 6305167096659659419L + type: "random" + } + { + id: "75473E1CFC1F31A1" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "6B5E2EB00ED778E9" + item: "mysticalagriculture:niotic_crystal_seeds" + type: "item" + }] + x: 4.55d + y: -0.7d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "41484FAE9FB02C7F" + rewards: [ + { + exclude_from_claim_all: true + id: "6804FE322E28FF31" + table_id: 6305167096659659419L + type: "random" + } + { + id: "06D1066E005970B7" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "7A00EC4DA9F62A16" + item: "mysticalagriculture:wither_skeleton_seeds" + type: "item" + }] + x: 4.55d + y: 0.0d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "33028516EF756F68" + rewards: [ + { + exclude_from_claim_all: true + id: "0797D8C4C24E2563" + table_id: 6305167096659659419L + type: "random" + } + { + id: "4B08B7DDA528C442" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "5771CCF5312440BF" + item: "mysticalagriculture:platinum_seeds" + type: "item" + }] + x: 5.25d + y: -2.1d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "7BC19E2B67EDBE7F" + rewards: [ + { + exclude_from_claim_all: true + id: "1B3CAF45466B9B77" + table_id: 6305167096659659419L + type: "random" + } + { + id: "3713DCC9F7ADD32C" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "6E20B5832456B3C2" + item: "mysticalagriculture:spirited_crystal_seeds" + type: "item" + }] + x: 5.25d + y: -1.4d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "5302A86AA41BB8EC" + rewards: [ + { + exclude_from_claim_all: true + id: "237FB1AAAF256B59" + table_id: 6305167096659659419L + type: "random" + } + { + id: "4A2EB30D0A79B630" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "50658A679AEE4A74" + item: "mysticalagriculture:terrasteel_seeds" + type: "item" + }] + x: 5.25d + y: -0.7d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "04C6FE397F2CBF97" + rewards: [ + { + exclude_from_claim_all: true + id: "46CC43CBCEA9AE7C" + table_id: 6305167096659659419L + type: "random" + } + { + id: "17BAEF2C51492718" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "2B94152F51975D08" + item: "mysticalagriculture:uraninite_seeds" + type: "item" + }] + x: 5.25d + y: 0.0d + } + { + dependencies: ["4970CC2851818A02"] + hide_dependency_lines: true + id: "34EAE2ED07E1EB45" + rewards: [ + { + exclude_from_claim_all: true + id: "5E58C204A559579B" + table_id: 6305167096659659419L + type: "random" + } + { + id: "283ADDA50393E67C" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &16" + tasks: [{ + id: "4F7CFA0863EAC9D4" + item: "mysticalagriculture:dragon_egg_seeds" + type: "item" + }] + x: 5.95d + y: -2.1d + } + { + dependencies: ["4970CC2851818A02"] + hide_dependency_lines: true + id: "3AA8DC72E98717D0" + rewards: [ + { + exclude_from_claim_all: true + id: "74BDB2932C19018B" + table_id: 6305167096659659419L + type: "random" + } + { + id: "2EEE601E52B957E4" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &16" + tasks: [{ + id: "00D1DB1A762536C1" + item: "mysticalagriculture:gaia_spirit_seeds" + type: "item" + }] + x: 5.95d + y: -1.4d + } + { + dependencies: ["4970CC2851818A02"] + hide_dependency_lines: true + id: "41B1B311546F5C74" + rewards: [ + { + exclude_from_claim_all: true + id: "2110C3C637DD2A6D" + table_id: 6305167096659659419L + type: "random" + } + { + id: "63684395DA7E3B8F" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &16" + tasks: [{ + id: "3E603D46A745BD3E" + item: "mysticalagriculture:nether_star_seeds" + type: "item" + }] + x: 5.95d + y: -0.7d + } + { + dependencies: ["4970CC2851818A02"] + hide_dependency_lines: true + id: "09DDB155E1B9507E" + rewards: [ + { + exclude_from_claim_all: true + id: "687AD87FD0E2AC8C" + table_id: 6305167096659659419L + type: "random" + } + { + id: "3B42AD200D593B79" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &16" + tasks: [{ + id: "3FB8C3640F4D6B77" + item: "mysticalagriculture:nitro_crystal_seeds" + type: "item" + }] + x: 5.95d + y: 0.0d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "0AC749C49311DAFF" + rewards: [ + { + exclude_from_claim_all: true + id: "7B72B82B7D9049B8" + table_id: 6305167096659659419L + type: "random" + } + { + id: "7C502F73BE3995FD" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &45" + tasks: [{ + id: "7882362E91C5A8A9" + item: "mysticalagriculture:flux_infused_gem_seeds" + type: "item" + }] + x: 3.85d + y: -2.1d + } + { + dependencies: ["6C52741D22052A14"] + hide_dependency_lines: true + id: "193F689678F56546" + rewards: [ + { + exclude_from_claim_all: true + id: "2183AA4AF5B52B0D" + table_id: 6305167096659659419L + type: "random" + } + { + id: "366A7639D501970F" + type: "xp" + xp: 250 + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "&bTier:&r &94" + tasks: [{ + id: "44AC8AE886357921" + item: "mysticalagriculture:flux_infused_ingot_seeds" + type: "item" + }] + x: 3.15d + y: -2.1d + } + { + dependencies: ["2E747C1C2DB534B5"] + id: "7220B4910D00DE34" + rewards: [{ + exclude_from_claim_all: true + id: "39EBDD98295D07FD" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 4L + id: "4B393FB59FEF5D91" + item: "mysticalagriculture:mystical_fertilizer" + type: "item" + }] + x: -8.5d + y: -10.5d + } + ] + title: "&3&oMystical Agriculture" +} diff --git a/minecraft/config/ftbquests/quests/chapters/natures_aura.snbt b/minecraft/config/ftbquests/quests/chapters/natures_aura.snbt new file mode 100644 index 0000000..2dad66f --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/natures_aura.snbt @@ -0,0 +1,2840 @@ +{ + autofocus_id: "713CA847896F563A" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "natures_aura" + group: "4814F40AB34427B6" + icon: "naturesaura:gold_leaf" + id: "1A7890A14912C685" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -1.142857142857146d + y: -9.57767857142857d + } + { + height: 1.3d + image: "kubejs:item/natures_aura" + order: 1 + rotation: 0.0d + width: 7.0d + x: 3.9642857142857153d + y: -10.149107142857144d + } + { + height: 1.5d + image: "mysticalagriculture:block/flower/nature_flower" + rotation: -40.0d + width: 1.5d + x: 1.0357142857142847d + y: -10.058928571428574d + } + { + height: 1.5d + image: "mysticalagriculture:block/flower/nature_flower" + rotation: 90.0d + width: 1.5d + x: 6.928571428571431d + y: -10.074999999999996d + } + ] + order_index: 9 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + description: [ + "&2Nature's Aura&r is a druidic themed magi-tech mod that uses the omnipresent '&daura&r' to derive its power. " + "" + "Be warned, &dAura&r is a limited resource which must be managed and replenished lest the natural order be disturbed. Draining too much can cause dire consequences." + ] + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "naturesaura:book" + } + } + id: "5CD1D8CD682498B1" + min_width: 300 + rewards: [ + { + id: "4E7F0005C3F5BF97" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1150DDAEFF0F4E8E" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "3B58A7DA71C8D336" + type: "checkmark" + }] + title: "Welcome to &2Nature's Aura" + x: -0.5d + y: -9.0d + } + { + dependencies: ["5CD1D8CD682498B1"] + description: [ + "To begin upon the naturalist's path, &6Brilliant Fiber&r should be woven into the leaves of trees. There, they’ll transform the leaves to a beautiful golden hue." + "" + "Craft one or more &6Brilliant Fibers&r and &eright-click&r them onto any leaves. The effect will spread to nearby leaves. " + ] + id: "7FA3BB537E606DD9" + rewards: [ + { + id: "2964B637EE8A17CF" + type: "xp" + xp: 10 + } + { + id: "2EC913344CC771C9" + item: "naturesaura:golden_leaves" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "115CDF033916EC72" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "26740C87F556AFAA" + item: "naturesaura:gold_fiber" + type: "item" + }] + title: "&6Brilliant Fiber" + x: -0.5d + y: -7.5d + } + { + dependencies: ["7FA3BB537E606DD9"] + description: ["&6Golden Leaf&r will drop whenever the fully transformed leaves are broken. Place fresh leaves near the remaining transformed leaves to begin converting them as well. "] + id: "540F24CCEC11EF80" + rewards: [ + { + id: "1203381C67E76548" + type: "xp" + xp: 20 + } + { + id: "440E85476349A466" + item: "naturesaura:aura_bloom" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "24B35390A4982AE2" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "17D09B1124064592" + item: "naturesaura:gold_leaf" + type: "item" + }] + title: "&6Gold Leaf" + x: -0.5d + y: -5.5d + } + { + dependencies: ["540F24CCEC11EF80"] + id: "6096B32F24156DAA" + rewards: [ + { + id: "24DA2010714C8E01" + type: "xp" + xp: 10 + } + { + count: 3 + id: "7102C4A23789BA34" + item: "naturesaura:gold_powder" + type: "item" + } + { + exclude_from_claim_all: true + id: "69F4444E64BD25B6" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "0120DF89A07CB1E4" + item: "naturesaura:gold_powder" + type: "item" + }] + x: 0.5d + y: -5.5d + } + { + dependencies: ["540F24CCEC11EF80"] + description: [ + "The &aRitual of the Forest&r is the basis for all magic to come. A tree is sacrificed in the center to provide the energy for the ritual. " + "" + "The items around the outside of the recipe should each be placed into a &eWooden Stand&r; the order is of no consequence and items may be placed manually or by automation. " + "" + "Once the reagents are ready, place and grow the required sapling. The &6Gold Powder&r will be consumed along with the items and tree when the ritual completes." + ] + id: "01308DE801778949" + rewards: [ + { + id: "3EB11A877F79401A" + type: "xp" + xp: 50 + } + { + count: 2 + id: "333A97F89E5BD707" + item: "naturesaura:nether_grass" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "7943C2AA6FDE7D28" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + count: 8L + id: "2CE102E5D8AFBCE0" + item: "naturesaura:wood_stand" + type: "item" + }] + title: "Wooden Stand" + x: -0.5d + y: -3.0d + } + { + dependencies: ["7FA3BB537E606DD9"] + description: [ + "The &eNatural Altar&r is the heart of two ritual practices; one to infuse life into objects and another to infuse death. " + "" + "Refer to the &2Book of Natural Aura's&r section on the &eNatural Altar&r and the &5Crimson Altar&r for a preview of the required structure. " + ] + icon: "naturesaura:nature_altar" + id: "1294AA16EB85EBB4" + rewards: [ + { + id: "36DD1E43CDA9C765" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "299C96C36C41E2D1" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [ + { + id: "4C3EAB8A068100C1" + item: "naturesaura:nature_altar" + type: "item" + } + { + count: 20L + id: "52BEC8609217DA8B" + item: "minecraft:oak_planks" + type: "item" + } + { + count: 8L + id: "6F6FF8B2139C0684" + item: "minecraft:stone_bricks" + type: "item" + } + { + count: 8L + id: "39C6E0AC96A45D62" + item: "naturesaura:gold_brick" + type: "item" + } + { + count: 4L + id: "238E560DB0D4D179" + item: "minecraft:chiseled_stone_bricks" + type: "item" + } + ] + x: 4.5d + y: -7.5d + } + { + dependencies: ["713CA847896F563A"] + description: [ + "Upon reaching a high enough skill level, Naturalists may commune directly with the gods, asking boons in exchange for offerings. Do be mindful, however, as the gods are petty at times, no matter what the offering." + "" + "Place the offerings in the bowl and then toss down a &bSpirit of Calling&r to complete the ritual. The bowl will hold multiple items, with only a single Spirit required for the full batch. " + ] + id: "1AC0E360702623FE" + rewards: [ + { + id: "657F1BD5787395CC" + type: "xp" + xp: 75 + } + { + id: "70830D1576C64A99" + item: "simplylight:lamp_post" + type: "item" + } + { + exclude_from_claim_all: true + id: "27A21456FEFCD085" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "2F8E984E7E625954" + item: "naturesaura:offering_table" + type: "item" + }] + x: 8.5d + y: -3.5d + } + { + dependencies: ["01308DE801778949"] + id: "55D4D9204BBA0B2F" + rewards: [ + { + id: "3C95F83DDE6C1E44" + type: "xp" + xp: 45 + } + { + exclude_from_claim_all: true + id: "4E285E38A10AE85E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "09D8CA3972EF8D73" + item: "naturesaura:token_joy" + type: "item" + }] + x: -0.5d + y: -1.0d + } + { + dependencies: ["1294AA16EB85EBB4"] + id: "713CA847896F563A" + rewards: [ + { + id: "6A1172324EA732BD" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "02E40D782A47F6FE" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "31169615E4739978" + item: "naturesaura:infused_iron" + type: "item" + }] + x: 8.5d + y: -7.5d + } + { + dependencies: ["01308DE801778949"] + id: "0DA4018FAEC34E37" + rewards: [ + { + id: "402AC3A02C55A481" + type: "xp" + xp: 50 + } + { + count: 4 + id: "708E0FD8902865CC" + item: "minecraft:diamond" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "176C8145638D44F1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "298E9BBB95FF6997" + item: "naturesaura:token_fear" + type: "item" + }] + x: 1.5d + y: -2.5d + } + { + dependencies: ["01308DE801778949"] + id: "26AEDF96F510061C" + rewards: [ + { + id: "1B981AC67591A2B7" + type: "xp" + xp: 50 + } + { + count: 4 + id: "2D1377468D7BEF70" + item: "minecraft:emerald" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "43B3AE24840C19A7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "22F56373B9B8FF37" + item: "naturesaura:token_sorrow" + type: "item" + }] + x: 0.9642857142857011d + y: -3.910714285714292d + } + { + dependencies: ["1AC0E360702623FE"] + id: "13477EEDB1F7E316" + rewards: [ + { + id: "21CA7316561FB75E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "235678D8A4F47F65" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "03E968F3D392953F" + item: "naturesaura:sky_ingot" + type: "item" + }] + x: 11.5d + y: -3.5d + } + { + dependencies: ["1AC0E360702623FE"] + description: [ + "The most powerful of &aNaturalists&r have found that when combined with a rare catalyst, the passage of time itself may be &nmanipulated&r. " + "" + "This process will rapidly advance time at a great cost of &dAura&r. Be wary not to allow &dAura&r to drop too far!" + ] + id: "46AED245E29A7C51" + rewards: [ + { + id: "1E3FC9725898F4D8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "626ECAF272C0E3C6" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "47898273256C8FD2" + item: "naturesaura:clock_hand" + type: "item" + } + { + id: "17F792A7D310D9B6" + item: "naturesaura:time_changer" + type: "item" + } + ] + title: "&eShifting Sundial" + x: 9.5d + y: -2.0d + } + { + dependencies: ["1AC0E360702623FE"] + id: "4A7A2865AC5023C1" + rewards: [ + { + id: "5076E6F58E2D7307" + type: "xp" + xp: 100 + } + { + id: "127D17CC0AF367FA" + item: "naturesaura:color_changer" + type: "item" + } + { + exclude_from_claim_all: true + id: "09B89BEF0D7EFD2E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "201B3B74BD44EBB3" + item: "naturesaura:token_euphoria" + type: "item" + }] + x: 8.0d + y: -1.5d + } + { + dependencies: ["1AC0E360702623FE"] + id: "6B271A33379F4E07" + rewards: [ + { + id: "3DB0CA0CC88190AB" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6223AD5DCF8E686A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1D3D9881F0636459" + item: "naturesaura:token_terror" + type: "item" + }] + x: 7.0d + y: -2.5d + } + { + dependencies: ["1AC0E360702623FE"] + id: "359D15F5BF7BF7F9" + rewards: [ + { + id: "1D014DB1C46F728E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6F4ADCE6582F4FF1" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0F3FE8BD23FAC894" + item: "naturesaura:token_rage" + type: "item" + }] + x: 6.5d + y: -4.5d + } + { + dependencies: ["01308DE801778949"] + id: "0CA20A8FCEBF4E49" + rewards: [ + { + id: "4525BA90720EBCB1" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "24366D4C3C43CF4D" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "33D7C2B99531D9FC" + item: "naturesaura:token_anger" + type: "item" + }] + x: 0.7857142857142776d + y: -1.4107142857142847d + } + { + dependencies: ["01308DE801778949"] + description: [ + "Untrained eyes may notice the more overt signs of &dAura&r in an area, subtle glowing lights and lush plant growth." + "" + "The &9Environmental Eye&r further hones the &aNaturalist’s&r vision to grant deeper insights into the &dAura&r infusing the landscape. " + "" + "Finding an area with higher-than-normal &dAura&r at this stage may be helpful, as some &dAura&r will be consumed in order to create the apparatuses needed to help renew it. " + ] + id: "6FB21CED07FF123A" + rewards: [ + { + id: "18031E5B258C3D1E" + type: "xp" + xp: 60 + } + { + exclude_from_claim_all: true + id: "0DE5C0ABEEED73C9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7FFCA9DACC87D4B0" + item: "naturesaura:eye" + type: "item" + }] + x: -3.0d + y: -3.0d + } + { + dependencies: ["6FB21CED07FF123A"] + description: ["An advanced version of the &bNatural Eye&r which grants its owner the ability to see ever more precise details of the &dAura&r around them."] + id: "026D46341C66192C" + rewards: [ + { + id: "48EFF669608916F0" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "76AB6D703458F3EC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "4EFAE93BA53CCFB0" + item: "naturesaura:eye_improved" + type: "item" + }] + x: -5.25d + y: -3.0d + } + { + dependencies: ["01308DE801778949"] + description: [ + "The earliest Naturalists are said to have discovered &dAura&r by observing these &5Ancient Trees&r. They found their roots grew deep, drawing &dAura&r up from the depths and dispersing it into the environment. " + "" + "Upon realizing the &dAura&r could be renewed, they set about devising ever more elaborate ways to use and replenish it. Those who pushed it too far, however, paid dearly. " + "" + "The trees grown from &aAncient Saplings&r serve two primary purposes:" + "" + "First, they’ll help replenish &dAura&r in the area they’re planted, albeit slowly. As they do, the leaves will die and decay. Worry not, more effective methods of replenishing the &dAura&r exist." + "" + "Second, the wood is particularly useful when it comes to the arcane as it is steeped in the magical energies of &dAura&r. It makes a fine base for many an arcane implement. " + ] + id: "6BC0A378E8461EC1" + rewards: [ + { + id: "7FB6DEAE4273F6A3" + type: "xp" + xp: 10 + } + { + id: "4E37ECDDD2231864" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:ancient_sapling" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "0E70DCE8B0E9C8B8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3B3C8244CBFD60F0" + item: "naturesaura:ancient_sapling" + type: "item" + }] + x: -1.5d + y: -4.5d + } + { + dependencies: ["01308DE801778949"] + description: [ + "The &eTransmutation Catalyst&r augments the &aNatural&r and &dCrimson Altars&r to allow them to perform further transformations. " + "" + "Place it on any of the four short pillars surrounding the &eAltar&r itself to activate it." + ] + id: "7E228CA7729F37FA" + rewards: [ + { + id: "3FDA96DAD65CB426" + type: "xp" + xp: 100 + } + { + id: "248E70B4448FB4FC" + item: "naturesaura:birth_spirit" + type: "item" + } + { + exclude_from_claim_all: true + id: "109632DBCFD741F8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "787D2018593D9163" + item: "naturesaura:conversion_catalyst" + type: "item" + }] + x: -2.0d + y: -1.0d + } + { + dependencies: ["01308DE801778949"] + description: [ + "The &9Crumbling Catalyst&r augments the &aNatural&r and &dCrimson Altars&r to allow them to perform further transformations. " + "" + "Place it on any of the four short pillars surrounding the &eAltar&r itself to activate it." + ] + id: "355E10CBDBFE50F0" + rewards: [ + { + id: "333856B55B6145BB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4E3CC1064E500C90" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "72C2E2292796F117" + item: "naturesaura:crushing_catalyst" + type: "item" + }] + x: -3.0d + y: -1.5d + } + { + dependencies: ["1AC0E360702623FE"] + id: "64742723F9E345C7" + rewards: [ + { + id: "3EA3F2195107A03C" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "13DD9852567BD1F3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "47DD8A54D04E464A" + item: "naturesaura:token_grief" + type: "item" + }] + x: 6.5d + y: -3.5d + } + { + dependencies: [ + "64742723F9E345C7" + "26AEDF96F510061C" + ] + id: "503DBEB4CD411F3C" + rewards: [ + { + id: "6670BCE91B1EF32D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3C5834C6332B349A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "05C12922D9FE86E5" + item: "naturesaura:pet_reviver" + type: "item" + }] + x: 4.0d + y: -4.5d + } + { + dependencies: ["1294AA16EB85EBB4"] + id: "3E8919ACCC998919" + rewards: [ + { + id: "3FF628023169B027" + type: "xp" + xp: 10 + } + { + count: 4 + id: "36DAB22325BAAF26" + item: "naturesaura:end_flower" + random_bonus: 6 + type: "item" + } + { + exclude_from_claim_all: true + id: "714BBB3DBE5D033A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "24D7574DEBF5AE59" + item: "naturesaura:tainted_gold" + type: "item" + }] + x: 4.5d + y: -6.0d + } + { + dependencies: ["713CA847896F563A"] + description: [ + "Many devices have a specific range that can only be seen by &eright-clicking&r on them with a &9Mystical Magnifier&r." + "" + "It's a &nvaluable tool&r to any &2Natural Botanist&r." + ] + id: "1C7DAF2388B28BB9" + rewards: [ + { + id: "5263078C6FB104AA" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "5E621FD9FD844D42" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4DD099FDF2733199" + item: "naturesaura:range_visualizer" + type: "item" + }] + x: 8.5d + y: -9.0d + } + { + dependencies: ["13477EEDB1F7E316"] + description: [ + "Higher capacity than the &9Aura Cache&r." + "" + "Refer to the &aBook of Natural Aura's&r section on &2Natural Tools&r for potential uses." + "" + "These may not fill completely when worn. To get a full charge, or to even automate filling them, they may be placed in a &3Natural Altar&r to their maximum capacity." + ] + id: "3620B4D5E51B8E2E" + rewards: [ + { + id: "59E8CD848BB205B4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1B505B783FDC08AB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "037466E314FAF6C5" + item: "naturesaura:aura_trove" + type: "item" + }] + x: 10.5d + y: -4.5d + } + { + dependencies: ["713CA847896F563A"] + description: [ + "A portable source of &dAura&r that can be be put to good use with a variety of &etools&r. " + "" + "Refer to the &9Book of Natural Aura's&r section on &2Natural Tools&r for potential uses." + ] + id: "3CA57107EB36818B" + rewards: [ + { + id: "4E17196C319AE5E9" + type: "xp" + xp: 65 + } + { + exclude_from_claim_all: true + id: "38C9DD4A192334E7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "723B08E8116F503B" + item: "naturesaura:aura_cache" + type: "item" + }] + x: 7.5d + y: -8.5d + } + { + dependencies: ["6B271A33379F4E07"] + description: [ + "Each &dAura&r generating device is limited to the extent it can replenish &dAura&r. It is possible, however, to push this boundary and flood an area with an over-abundance of &dAura&r. " + "" + "Place the &eCreational Catalyst&r beneath any &5Aura Generator&r to remove its generation cap and attain such lushness as has not been observed since the early days of creation." + ] + id: "60234F5F814BD630" + rewards: [ + { + id: "044FBEA49DC354D2" + type: "xp" + xp: 65 + } + { + exclude_from_claim_all: true + id: "2585090E8983CBEE" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "61ECC36C6023AC57" + item: "naturesaura:generator_limit_remover" + type: "item" + }] + x: 6.0d + y: -2.5d + } + { + dependencies: ["3E8919ACCC998919"] + id: "1038985DB4FF4362" + rewards: [ + { + id: "6E1E85F724254804" + type: "xp" + xp: 60 + } + { + exclude_from_claim_all: true + id: "7D8AEA503C0BDA78" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "79156E3779CD512A" + item: "naturesaura:calling_spirit" + type: "item" + }] + x: 5.5d + y: -6.5d + } + { + dependencies: ["55D4D9204BBA0B2F"] + id: "5754548A868D6BCB" + rewards: [ + { + id: "6C6F9C394DBCDAD4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "649F489C7C6F58BC" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "42E1C0F6914FF5B6" + item: "naturesaura:moss_generator" + type: "item" + }] + x: -1.0d + y: 0.0d + } + { + dependencies: ["0DA4018FAEC34E37"] + description: ["The diminisher works with oak trees to create more aura."] + id: "1EE1E21E198493C2" + rewards: [ + { + id: "0442D216DA0EED8D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6DD46617F4591807" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1F3AA44F7615756D" + item: "naturesaura:oak_generator" + type: "item" + }] + x: 3.0d + y: -1.5d + } + { + dependencies: ["55D4D9204BBA0B2F"] + id: "5AA4DAFD48B32DE4" + rewards: [ + { + id: "570C248B757219CB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "602910D04AAA728D" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "564B283FB509ACE4" + item: "naturesaura:flower_generator" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["713CA847896F563A"] + description: [ + "One of the few Natural devices that do not consume &dAura&r to function, &9Adept’s Hoppers&r are a &nfilterable&r hopper that moves items slightly faster than a &eVanilla Hopper&r. " + "" + "Place an &cItem Frame&r on the side and insert &nany&r item or &nblock&r in the frame to set the filter. " + ] + id: "412B1135A915CCFE" + rewards: [ + { + id: "35FAA89CB8584ACA" + type: "xp" + xp: 45 + } + { + id: "7CAD9233C50BA4A7" + item: "minecraft:item_frame" + type: "item" + } + { + exclude_from_claim_all: true + id: "538CBC646B5A3252" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6BB2046AF55AA31A" + item: "naturesaura:grated_chute" + type: "item" + }] + x: 9.5d + y: -8.5d + } + { + dependencies: ["412B1135A915CCFE"] + description: [ + "When placed atop an &2Adept’s Hopper&r or a &7Vanilla Hopper&r, the &9Hopper Enhancement&r allows the collection of blocks up to seven blocks away. A very useful tool to have in any automated apparatus." + "" + "If used with an &2Adept’s Hopper&r, any filter set will be respected by the &9Hopper Enhancement&r. " + ] + id: "5EE4D120BE469E7E" + rewards: [ + { + id: "0E42C3980876302B" + type: "xp" + xp: 55 + } + { + exclude_from_claim_all: true + id: "6C752DFB935FA460" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "59035DD77E5AD6B4" + item: "naturesaura:hopper_upgrade" + type: "item" + }] + x: 10.5d + y: -9.0d + } + { + dependencies: ["4A7A2865AC5023C1"] + description: [ + "This &9Altar&r is used to create and spawn almost any living creature." + "" + "A ritual that harnesses the powers of creation itself, allowing its user to bring forth new life from the barest traces of material." + "" + "Once built, simply throw down the reagents atop the altar. If there's enough &dAura&r, the ritual will proceed &nautomatically&r." + ] + icon: "naturesaura:animal_spawner" + id: "3CA5D58AD8C37B7C" + rewards: [ + { + id: "5C8068DED7FF1833" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "348ABFEE721AB20B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "0B7840AE8B165AD9" + item: "naturesaura:animal_spawner" + type: "item" + } + { + count: 16L + id: "36D799C9594318AA" + item: "naturesaura:infused_brick" + type: "item" + } + { + count: 16L + id: "79C43271FCDE3ABE" + item: "minecraft:hay_block" + type: "item" + } + { + count: 4L + id: "2E71460B72295AF8" + item: "naturesaura:ancient_planks" + type: "item" + } + ] + x: 7.0d + y: -0.5d + } + { + dependencies: ["6FB21CED07FF123A"] + id: "33DE3B246C18194D" + rewards: [ + { + id: "73CBA8C2A845ED86" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "172A47F9986E15AA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "45C49998F81CC1A1" + item: "naturesaura:chunk_loader" + type: "item" + }] + x: -4.0d + y: -4.0d + } + { + dependencies: ["6FB21CED07FF123A"] + description: [ + "A simple apparatus that helps contain livestock and other animals. Creatures within the range of this block will be unable to step beyond its boundaries. " + "" + "No &dAura&r is consumed to produce this effect." + "" + "The range depends upon strength of the redstone signal it is provided. " + ] + id: "4FB51C1C41BBD05D" + rewards: [ + { + id: "46ED68F7DFAD3981" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "400DC4A31BD4FB36" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "18C13DF5AA5EC095" + item: "naturesaura:animal_container" + type: "item" + }] + x: -4.0d + y: -2.0d + } + { + dependencies: ["1294AA16EB85EBB4"] + description: ["With the &dInfused Rocks&r you'll be able to create &3Livingrock&r (&2Botania&r)."] + id: "623B80E29E48B9F2" + rewards: [ + { + id: "0E332C298C6DFC12" + type: "xp" + xp: 80 + } + { + id: "6161EED240BBA07E" + item: "naturesaura:infused_stone" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "2D106D67CC5AA355" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "circle" + tasks: [{ + count: 16L + id: "6ECB158A4EDB5797" + item: "naturesaura:infused_stone" + type: "item" + }] + x: 3.5d + y: -8.5d + } + { + dependencies: ["4A7A2865AC5023C1"] + description: [ + "While true that &bWater&r is easily obtained through other means, an &9Everlasting Spring&r provides a convenient place to connect a pipe to supply other machinery. " + "" + "The &9Spring&r provides &1water&r at the cost of a small amount of &dAura&r. " + "" + "This is a &6Watery Magical Wonder&r." + ] + id: "5D2FDC3B47CEE419" + rewards: [ + { + id: "7AA228AE9571F53B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "62B8035E4C1B4123" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "139980F22178FB8B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:spring" + } + type: "item" + }] + x: 9.0d + y: -0.5d + } + { + dependencies: ["5CD1D8CD682498B1"] + id: "7C4157D9732F1F00" + rewards: [ + { + id: "53186DBB2F3DE937" + type: "xp" + xp: 10 + } + { + count: 2 + id: "672876BD3E481AE2" + item: "minecraft:glass" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "09914BAD2B672821" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "73BA09B27DBF40ED" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:bottle_two_the_rebottling" + } + type: "item" + }] + x: -2.5d + y: -7.5d + } + { + dependencies: ["2F618EF3A3976CD3"] + description: ["&0Eye of the Pillager&r will locate &ePillager Outposts&r."] + id: "0A9E8855694B67C7" + rewards: [ + { + id: "0915EBF7250009AA" + type: "xp" + xp: 75 + } + { + exclude_from_claim_all: true + id: "71A6BBD29EF449C9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "092EAA21E09450C2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:outpost_finder" + } + type: "item" + }] + x: -3.5d + y: -8.5d + } + { + dependencies: ["2F618EF3A3976CD3"] + description: ["&5Eye of the Shulker&r will locate &eEnd Cities&r."] + id: "77F00DB3A5F74E79" + rewards: [ + { + id: "4C33F04913210465" + type: "xp" + xp: 75 + } + { + exclude_from_claim_all: true + id: "25C6D56515CAAABB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "77ED7BB9991CAA70" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:end_city_finder" + } + type: "item" + }] + x: -4.5d + y: -8.5d + } + { + dependencies: ["2F618EF3A3976CD3"] + description: [ + "The entire &dAura&r field appears to be connected in some fashion, even across &ndimensions&r. Though the measurable effects tend to be more localized, some brilliant &aNaturalist&r was able to deduce a way to use the subtle ripples in the weave to transfer matter unimaginable distance. " + "" + "&5Ender Crates&r can be assigned to a &bchannel&r in an &0Anvil&r by simultaneously renaming them and combining them with an &9Eye of Ender&r. More &5Crates&r can be assigned to the same &bchannel&r at any time by giving them the same name. " + "" + "Similarly, &9Ender Oculars&r may be assigned a &bchannel&r to allow personal access to the same &einventory&r. Perfect for dropping off the spoils of exploration while far from home." + "" + "A small amount of &dAura&r is used every time an item is moved in or out of the crate. Therefore, it is vital that &dAura&r is generated on &nboth sides&r of the connection. " + ] + id: "0318D80EB4CFFF91" + min_width: 300 + rewards: [ + { + id: "14C96F1A5E92714F" + type: "xp" + xp: 100 + } + { + id: "1A3DF8CB8C61A8DB" + item: "minecraft:ender_eye" + random_bonus: 1 + type: "item" + } + { + id: "09CA461ED86C0910" + item: "naturesaura:ender_access" + type: "item" + } + { + exclude_from_claim_all: true + id: "431CB6318C9CD51D" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "5E5AFA367633AB4B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:ender_crate" + } + type: "item" + }] + title: "&5Abaddon's Gate" + x: -5.25d + y: -7.5d + } + { + dependencies: ["2F618EF3A3976CD3"] + description: ["&cEye of the Blaze&r will locate &eNether Fortresses&r."] + id: "2B269F3A081DD40D" + rewards: [ + { + id: "315AC5E49B88E6C2" + type: "xp" + xp: 75 + } + { + exclude_from_claim_all: true + id: "76731B00B33D5195" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "34165E482D5D94D8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:fortress_finder" + } + type: "item" + }] + x: -4.5d + y: -6.5d + } + { + dependencies: ["2F618EF3A3976CD3"] + id: "4EA5D1AB74280A0A" + rewards: [ + { + id: "1D23BF487412B56E" + type: "xp" + xp: 55 + } + { + count: 3 + id: "375CE78773A9EE4D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:crimson_meal" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "53622684B19A97D9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "20B197BE95CE5B7F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:crimson_meal" + } + type: "item" + }] + title: "Crimson Meal" + x: -3.5d + y: -6.5d + } + { + dependencies: ["7E228CA7729F37FA"] + description: ["This forge converts aura into redstone flux/forge energy/crystal flux."] + id: "564456396B78552E" + rewards: [ + { + id: "79BFB9A1EEC76ACC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "250712DBC9F600E3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "5F22E3AA81F7AF0A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:rf_converter" + } + type: "item" + }] + x: -2.0d + y: 0.0d + } + { + dependencies: ["713CA847896F563A"] + description: [ + "&2Botanist’s&r equipment offers several unique benefits to its user beyond the basic uses for armor and tools of each type. " + "" + "All pieces may be repaired with &dAura&r simply by sneaking with an &9Aura Cache&r or &eAura Trove&r equipped. " + "" + "&aBotanist’s Pickaxe&r: May be used to &ninfuse&r materials with &dAura&r by &eright-clicking&r." + "" + "&aBotanist’s Handaxe&r: Cleaves through leaves &nvery rapidly&r." + "" + "&aBotanist’s Shovel&r: Converts &nDirt&r to &nGrass&r and creates 3x3 Dirt Paths in Grass." + "" + "&aBotanist’s Hoe&r: Randomly &nproduces seeds&r when tilling &nFarmland&r." + ] + id: "324C10914F2A0E3B" + min_width: 300 + rewards: [ + { + id: "7A43FEA7597CFB5E" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1446BEA734A873E4" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "002EE7D81FEA6987" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "naturesaura:infused_iron_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "naturesaura:infused_iron_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "naturesaura:infused_iron_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "naturesaura:infused_iron_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&aBotanist's Tools" + type: "item" + }] + x: 10.5d + y: -6.5d + } + { + dependencies: ["713CA847896F563A"] + description: [ + "&2Botanist’s&r equipment offers several unique benefits to its user beyond the basic uses for armor and tools of each type. " + "" + "All pieces may be repaired with &dAura&r simply by sneaking with an &9Aura Cache&r or &eAura Trove&r equipped. " + "" + "&aBotanist’s Armor&r: When wearing a full set, inflicts &nWithering&r on attacking enemies." + ] + id: "27F37F7DB6F834B8" + rewards: [ + { + id: "1A028552393201F6" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6947D2EEF9E943A7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "07FA2F25DF37EB7F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:infused_iron_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "69EBAE80E22BC593" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:infused_iron_chest" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "36231A56C157F037" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:infused_iron_pants" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1261E4904030A658" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:infused_iron_shoes" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&aBotanist's Armor" + x: 9.428571428571423d + y: -6.410714285714285d + } + { + dependencies: ["13477EEDB1F7E316"] + description: [ + "&dSkyseeker’s&r equipment offers several unique benefits to its user beyond the basic uses for armor and tools of each type. " + "" + "All pieces may be repaired with &dAura&r simply by sneaking with an &9Aura Cache&r or &aAura Trove&r equipped. " + "" + "&bSkyseeker’s Pickaxe&r: Instantly &nteleports&r mined blocks into the user’s &einventory&r." + "" + "&bSkyseeker’s Handaxe&r: Capable of chopping &nentire&r trees in a single action." + "" + "&bSkyseeker’s Shovel&r: Upon &eright-click&r, &nreplaces&r the target block with whatever block is held in the &aoff-hand&r." + "" + "&bSkyseeker’s Hoe&r: Tills a larger area of land, &ndestroying&r tall grass and other vegetation in the process." + ] + id: "5C28593B0E3E260B" + min_width: 300 + rewards: [ + { + id: "418580A3439ADCEA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "45ED415D116A58DA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "505184D8152D757A" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "naturesaura:sky_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "naturesaura:sky_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "naturesaura:sky_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "naturesaura:sky_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&bSkyseeker's Tools" + type: "item" + }] + x: 11.5d + y: -5.0d + } + { + dependencies: ["13477EEDB1F7E316"] + description: [ + "&dSkyseeker’s&r equipment offers several unique benefits to its user beyond the basic uses for armor and tools of each type. " + "" + "All pieces may be repaired with &dAura&r simply by sneaking with an &9Aura Cache&r or &aAura Trove&r equipped. " + "" + "&bSkyseeker’s Armor&r: When wearing a &nfull set&r, grants a &nspeed&r bonus and the ability to &nstep up&r one block." + ] + id: "679F93359C242099" + rewards: [ + { + id: "0E0707E19B45F9AB" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "7050D17A9D6E8D2A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "5400391AEC43ADE6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:sky_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1A90E7BC5FA26429" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:sky_chest" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "784BBECAF2FC2D13" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:sky_pants" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4BDBBB042B77E529" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:sky_shoes" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&bSkyseeker's Armor" + x: 13.0d + y: -3.5d + } + { + dependencies: ["6BC0A378E8461EC1"] + description: ["With the &dAncient Logs&r you'll be able to create &0Livingwood&r (&2Botania&r)."] + id: "7B9E96F499FB20AA" + rewards: [ + { + id: "0785546C87540718" + type: "xp" + xp: 50 + } + { + count: 2 + id: "4FD8A881D82E106E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "naturesaura:ancient_log" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7BEE4E9B92BA76E7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "37787F305ED9CF01" + item: "naturesaura:ancient_log" + type: "item" + }] + x: -2.5d + y: -4.5d + } + { + dependencies: ["713CA847896F563A"] + description: [ + "&2Botanist’s&r equipment offers several unique benefits to its user beyond the basic uses for armor and tools of each type. " + "" + "All pieces may be repaired with &dAura&r simply by sneaking with an &9Aura Cache&r or &eAura Trove&r equipped. " + "" + "&aBotanist’s Blade&r: Inflicts &nSlow&r on its target." + ] + id: "49FC8CB3BAFF7B7D" + rewards: [ + { + id: "73B805F201E7F549" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5E2046B2EE114E19" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "79D48C314363C997" + item: { + Count: 1 + id: "naturesaura:infused_iron_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 10.0d + y: -7.5d + } + { + dependencies: ["13477EEDB1F7E316"] + description: [ + "&dSkyseeker’s&r equipment offers several unique benefits to its user beyond the basic uses for armor and tools of each type. " + "" + "All pieces may be repaired with &dAura&r simply by sneaking with an &9Aura Cache&r or &aAura Trove&r equipped. " + "" + "&bSkyseeker’s Blade&r: Inflicts &nLevitation&r on its target." + ] + id: "391C66CB007A266D" + rewards: [ + { + id: "12ADC8875B5E1589" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C6724470600B00C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3928BB6459BFE531" + item: { + Count: 1 + id: "naturesaura:sky_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 12.5d + y: -4.5d + } + { + dependencies: ["13477EEDB1F7E316"] + id: "0506E3068595AC44" + rewards: [ + { + id: "38DA0E0063E1181A" + type: "xp" + xp: 150 + } + { + exclude_from_claim_all: true + id: "75D2BE42804C7BCA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1296BFB884DFBAA3" + item: "naturesaura:depth_ingot" + type: "item" + }] + x: 11.5d + y: -1.0d + } + { + dependencies: ["0506E3068595AC44"] + id: "3CB07630300CEDA0" + rewards: [ + { + id: "60F46E4F35F95FE9" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "4506F8F75378C5A0" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "59E2E56CD10A0D58" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "naturesaura:depth_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "naturesaura:depth_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "naturesaura:depth_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "naturesaura:depth_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&3Soulstrider's Tools" + type: "item" + }] + x: 12.5d + y: 0.0d + } + { + dependencies: ["0506E3068595AC44"] + id: "5A4625EEB07B0382" + rewards: [ + { + id: "52BE8F2681C7B03F" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "6599360D9FC5CD9A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "006C27B8E44D6AA8" + item: { + Count: 1 + id: "naturesaura:depth_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&2Soulstrider's Blade" + x: 11.5d + y: 0.5d + } + { + dependencies: ["0506E3068595AC44"] + id: "3EEF524D2CB9E314" + rewards: [ + { + id: "05E43E8D0C034565" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "0843F13C70D280D4" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6A25441C0B499AC4" + item: { + Count: 1 + id: "naturesaura:depth_helmet" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&2Soulstrider's Armor" + x: 10.5d + y: 0.0d + } + { + dependencies: ["6096B32F24156DAA"] + description: ["Lush Aura has a variety of side effects which may or may not be desirable at any given time. Powders exist to control when and where these effects occur."] + id: "5E883A418E024E98" + rewards: [ + { + id: "4D2B0DE2B5E7F2AE" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1B0E793836FF09B2" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "5943DBB89FA42F5D" + item: "naturesaura:powder_placer" + type: "item" + }] + x: 2.0d + y: -5.5d + } + { + dependencies: ["5E883A418E024E98"] + id: "2D144945086E3A74" + rewards: [ + { + id: "6E56EC3E9452BDB2" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "5F4617A41519F00F" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "41D596A5212DCAFB" + item: { + Count: 1 + id: "naturesaura:effect_powder" + tag: { + effect: "naturesaura:ore_spawn" + } + } + type: "item" + }] + x: 2.75d + y: -6.0d + } + { + dependencies: ["5E883A418E024E98"] + description: ["The growth of crops, plants, and flowers will no longer be boosted by &dAura&r."] + id: "7E1422613B02588E" + rewards: [ + { + id: "52222AA97CB048D2" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "4F3350683BD1AFF7" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "22F6AD758A3F01DE" + item: { + Count: 1 + id: "naturesaura:effect_powder" + tag: { + effect: "naturesaura:plant_boost" + } + } + type: "item" + }] + x: 1.25d + y: -6.0d + } + { + dependencies: ["5E883A418E024E98"] + description: ["Passive &eAnimals&r will breed when able."] + id: "39AF286C12A07367" + rewards: [ + { + id: "7B1C24CDB02FB549" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "4F51C518F73D59AD" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "47F4F370B2C55836" + item: { + Count: 1 + id: "naturesaura:effect_powder" + tag: { + effect: "naturesaura:animal" + } + } + type: "item" + }] + x: 2.0d + y: -6.75d + } + { + dependencies: ["5E883A418E024E98"] + description: ["Your &dAura Cache&r or &eTrove&r will not charge in the area."] + id: "2C329589AA551C12" + rewards: [ + { + id: "2BBFFB2F969A8AE5" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "38458E1AD16D98FB" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "5F78D6D519212F6F" + item: { + Count: 1 + id: "naturesaura:effect_powder" + tag: { + effect: "naturesaura:cache_recharge" + } + } + type: "item" + }] + x: 1.5d + y: -6.5d + } + { + dependencies: ["5E883A418E024E98"] + description: ["Prevent the formation of grass on &4Netherrack&r."] + id: "6756686AEEB52EF9" + rewards: [ + { + id: "4FFCF2FF0AC0821F" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "5913FDB1405AC29A" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "4DE47776E0C0E23E" + item: { + Count: 1 + id: "naturesaura:effect_powder" + tag: { + effect: "naturesaura:nether_grass" + } + } + type: "item" + }] + x: 2.5d + y: -6.5d + } + { + dependencies: ["0DA4018FAEC34E37"] + description: [ + "The act of brewing &9Potions&r distills the magical energies found in all life down into a compact and portable form. Those same energies may be released again as &dAura&r with the proper apparatus. " + "" + "The &cLingering Absorber&r will draw in these energies, re-dispersing them as &dAura&r. Simply smash &eLingering Potions&r on the central block and it will take care of the rest. " + "" + "Potions may be dispensed with a &3Dispenser&r, among other things. " + ] + id: "3254FD29FED770E0" + rewards: [ + { + id: "255016A655D5F51C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3EA0D357E811E4AB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7E071950F8BA9A56" + item: "naturesaura:potion_generator" + type: "item" + }] + x: 2.0d + y: -1.0d + } + { + dependencies: ["0DA4018FAEC34E37"] + description: [ + "When placed upon a &3Furnace&r, &7Blast Furnace&r, or &cSmoker&r, the &2Extraneous Firestarter&r will draw in nearby &dAura&r, converting it into heat for &nsmelting&r and &ncooking&r. " + "" + "While this process is much &nquicker&r than burning &0Coal&r or other combustible materials, it does come with the drawback that it can drain &dAura&r into dangerous levels. Multiple may even be installed to enhance the effect. " + ] + id: "2275B3091186516E" + rewards: [ + { + id: "2126AF01FAE2DFE7" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "58BFB01D27C242A3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "471D81B0993E981C" + item: "naturesaura:furnace_heater" + type: "item" + }] + x: 3.0d + y: -2.5d + } + { + dependencies: ["6B271A33379F4E07"] + description: [ + "Keeping &chostile creatures&r away from sensitive contraptions can be quite vital. The last thing anyone needs is a surprise &2Creeper&r visit. " + "" + "For a miniscule upkeep cost, the &eLamp of Sanctuary&r will inhibit natural mob spawns in its area of influence, the range of which is determined by the strength of the &cRedstone&r signal it is receiving. " + ] + id: "5461395B647B44BC" + rewards: [ + { + id: "03F64E6F0A1A7814" + type: "xp" + xp: 65 + } + { + exclude_from_claim_all: true + id: "7352D3D57DDF6999" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4A9036AA4650DCE1" + item: "naturesaura:spawn_lamp" + type: "item" + }] + x: 6.5d + y: -1.5d + } + { + dependencies: ["13477EEDB1F7E316"] + description: ["When &dAura&r is drawn through this device, it causes the heat in the area to rapidly disperse, dropping localized temperatures and causing &nsnow&r and &nice&r to form. "] + id: "1887491F9828F66A" + rewards: [ + { + id: "2527859B47AD18C6" + type: "xp" + xp: 65 + } + { + exclude_from_claim_all: true + id: "6C8FE6ACE17036B6" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "0F466CAA2CB33490" + item: "naturesaura:snow_creator" + type: "item" + }] + x: 10.5d + y: -2.5d + } + { + dependencies: ["7C4157D9732F1F00"] + description: [ + "Used in crafting several objects of power, creating &eBottled Aura&r itself is easily automated with a &3Dispenser&r. " + "" + "Simply place a &6Bottle and Cork&r in the dispenser and provide a &cRedstone Pulse&r. Provided there is sufficient &dAura&r in the area, a bottle of the local &dAura&r type will be produced. " + ] + id: "2F618EF3A3976CD3" + rewards: [ + { + id: "59E1373BDB484C87" + type: "xp" + xp: 75 + } + { + exclude_from_claim_all: true + id: "2D6B821B058AC457" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2F4C36ECF8500535" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "naturesaura:aura_bottle" + tag: { + stored_type: "naturesaura:overworld" + } + } + { + Count: 1b + id: "naturesaura:aura_bottle" + tag: { + stored_type: "naturesaura:nether" + } + } + { + Count: 1b + id: "naturesaura:aura_bottle" + tag: { + stored_type: "naturesaura:end" + } + } + ] + } + } + title: "Bottled Aura" + type: "item" + }] + title: "&eBottled Aura" + x: -4.0d + y: -7.5d + } + { + dependencies: ["0DA4018FAEC34E37"] + description: [ + "A true marvel for anyone who’s spent any time toiling in the earth to &nextract resources&r." + "" + "With &2Eir’s Token&r attached to a &etool&r, it will simply stop working rather than break at &nlow durability&r. " + ] + id: "712E3B21060DB19C" + rewards: [ + { + id: "4AB16EB0EC8A746A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "79DB3E6D255BDBD9" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4721EF89824DD695" + item: "naturesaura:break_prevention" + type: "item" + }] + x: 2.5d + y: -3.5d + } + { + dependencies: ["4A7A2865AC5023C1"] + description: ["When held anywhere in one’s &einventory&r, the &6Ring of Last Chance&r prevents a killing blow, shattering itself rather than allow its bearer to slip off this mortal coil. "] + id: "127A0B252CBF60C1" + rewards: [ + { + id: "03F23D59F47CF02F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "162B831AF90F0F79" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7401EDCC5CD5093C" + item: "naturesaura:death_ring" + type: "item" + }] + x: 8.0d + y: 0.0d + } + { + dependencies: ["13477EEDB1F7E316"] + description: ["Drawing &dAura&r from a worn &9Aura Cache&r or &eAura Trove&r, these staves aid in locating various objects; they can be quite useful both at home and while adventuring abroad. "] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "0F179A3EBF0587B8" + rewards: [ + { + id: "0E9E00E7FFB7BB94" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3F685F2EF50E5F47" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "76B216E795F6C3FE" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "naturesaura:loot_finder" + } + { + Count: 1b + id: "naturesaura:netherite_finder" + } + { + Count: 1b + id: "naturesaura:cave_finder" + } + { + Count: 1b + id: "naturesaura:light_staff" + } + ] + } + } + title: "Staves of Power" + type: "item" + }] + x: -2.0d + y: -5.5d + } + { + dependencies: ["623B80E29E48B9F2"] + description: [ + "Quite the simple device, but powerful, nonetheless." + "" + "The &aItem Distributor&r moves items from the &einventory&r above it and evenly distributes them to the inventories adjacent. " + ] + id: "67EDDAD97465EEF0" + rewards: [ + { + id: "5FB7397FCB7F9D6A" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "43995CB65B6E9F10" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "4661053FF7AEF153" + item: "naturesaura:item_distributor" + type: "item" + }] + x: 2.0d + y: -8.5d + } + { + dependencies: ["13477EEDB1F7E316"] + description: [ + "Though often thought of in terms of gases, it isn’t quite accurate. " + "" + "In truth, &dAura&r has an attractive force of its own, leading it to clump into regions instead of fully dispersing. This can be exploited by creating a stronger attractive force and dragging large clumps of it from one place to another, effectively moving the &dAura&r to wherever it is needed. " + "" + "The process isn’t perfect by any means, and &dAura&r will be left behind as the cart moves, reintegrating into the region. Some would even look at this as a positive, as it allows the &dAura&r to be spread out over a large area without necessarily depositing it in a single spot. " + ] + id: "06BAE98B1543EBFC" + min_width: 300 + rewards: [ + { + id: "7564930CAE36F656" + type: "xp" + xp: 100 + } + { + count: 16 + id: "5D5456996245262C" + item: "minecraft:rail" + random_bonus: 8 + type: "item" + } + { + count: 2 + id: "59F46451FF63962B" + item: "minecraft:activator_rail" + random_bonus: 2 + type: "item" + } + { + id: "0FACE41F1DC54CA9" + item: "minecraft:powered_rail" + type: "item" + } + { + exclude_from_claim_all: true + id: "73396F6EDCF633FD" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6CFFD908E1209AF5" + item: "naturesaura:mover_cart" + type: "item" + }] + x: 12.5d + y: -2.5d + } + { + dependencies: ["713CA847896F563A"] + description: [ + "The &6Imperceptible Builder&r assists in complicated automation tasks, taking blocks from nearby &einventories&r and placing them down. " + "" + "Specify where it should place blocks by placing an example in an &aItem Frame&r on the &6Builder&r itself." + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "1AE73DC4CC5A7C6F" + rewards: [ + { + id: "6C24BBD72CDCC2DB" + type: "xp" + xp: 35 + } + { + id: "7CC5CB2647601964" + item: "minecraft:item_frame" + type: "item" + } + { + id: "31765C6BEA980DBD" + item: "naturesaura:farming_stencil" + type: "item" + } + { + exclude_from_claim_all: true + id: "671528CAC01BD163" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Constructive interference" + tasks: [{ + id: "15ABF90EC87A9A88" + item: "naturesaura:placer" + type: "item" + }] + x: 7.5d + y: -6.5d + } + { + dependencies: ["1AE73DC4CC5A7C6F"] + description: [ + "A closed system which prevents any loss of Aura, this small device serves as an excellent timer, releasing a Redstone pulse whenever the Aura within fully evaporates and re-condenses. The more Aura, the longer this process takes." + "" + "Right-Click the Aura Vaporizer with bottled Aura to define the time of the clock. Right-Click with an empty hand to retrieve whatever has been previously installed. " + "" + "Each bottle of sunlight equates to one second of time. One bottle of ghosts, one minute. One bottle of darkness, one hour. " + ] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "59ECE9FF654CA492" + invisible: true + rewards: [ + { + id: "699D9B1B2889060B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4526C1133BEF4157" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "307B82D5D8385AD7" + item: "naturesaura:aura_timer" + type: "item" + }] + x: 7.5d + y: -5.5d + } + { + dependencies: ["359D15F5BF7BF7F9"] + description: [ + "When two &5Aura Field Creators&r are linked together, they form a destructive zone between them that rapidly breaks blocks at the cost of some &dAura&r. " + "" + "To link them, simply &eright-click&r one, and then the other. Supply a &cRedstone&r signal to either of them to enable the system. They'll begin drawing &dAura&r and breaking blocks after a short delay." + "" + "An &aItem Frame&r can be used to alter their behavior as well: " + "" + "The &5Aura Field Creator&r will use any tool provided in the frame including any enchants or special break properties of the tool. &7Shears&r shear leaves, &3Shovels&r collect snow, &9Fortune&r and &6Silk Touch&r are respected. " + ] + id: "1EA9C29C8955827D" + rewards: [ + { + id: "7C1D8C4D352EC452" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5545F4703951B6DF" + table_id: 6305167096659659419L + type: "random" + } + ] + subtitle: "Destructive interference" + tasks: [{ + count: 2L + id: "4AF95515F94B8839" + item: "naturesaura:field_creator" + type: "item" + }] + title: "Aura Field Creators" + x: 6.5d + y: -5.5d + } + ] + title: "&3&oNature's Aura" +} diff --git a/minecraft/config/ftbquests/quests/chapters/not_enough_wands.snbt b/minecraft/config/ftbquests/quests/chapters/not_enough_wands.snbt new file mode 100644 index 0000000..952f9ed --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/not_enough_wands.snbt @@ -0,0 +1,225 @@ +{ + autofocus_id: "000000000000106B" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "not_enough_wands" + group: "4E2A2310634498BA" + icon: "notenoughwands:illumination_wand" + id: "000000000000106A" + images: [{ + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 0.5d + y: -1.0d + }] + order_index: 3 + quest_links: [ ] + quests: [ + { + id: "000000000000106B" + rewards: [{ + exclude_from_claim_all: true + id: "54D16738238DAB51" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + tasks: [{ + id: "000000000000106C" + item: "notenoughwands:wand_core" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["000000000000106B"] + id: "000000000000106D" + rewards: [{ + exclude_from_claim_all: true + id: "143EEDB2A6503212" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000106E" + item: "notenoughwands:illumination_wand" + type: "item" + }] + x: -3.0d + y: 0.0d + } + { + dependencies: ["000000000000106B"] + id: "0000000000001073" + rewards: [{ + exclude_from_claim_all: true + id: "126FC411E8AC19CA" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001074" + item: "notenoughwands:acceleration_wand" + type: "item" + }] + x: 0.0d + y: -3.0d + } + { + dependencies: ["000000000000106B"] + id: "0000000000001077" + rewards: [{ + exclude_from_claim_all: true + id: "688872DD440B10DA" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001078" + item: "notenoughwands:swapping_wand" + type: "item" + }] + x: -3.0d + y: -3.0d + } + { + dependencies: ["000000000000106B"] + id: "000000000000107B" + rewards: [{ + exclude_from_claim_all: true + id: "69BA10C37BAAE899" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + tasks: [{ + id: "000000000000107C" + item: "notenoughwands:advanced_wand_core" + type: "item" + }] + x: 3.0d + y: -3.0d + } + { + dependencies: ["000000000000107B"] + id: "000000000000107F" + rewards: [{ + exclude_from_claim_all: true + id: "3E85C853C81C3E15" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001080" + item: "notenoughwands:capturing_wand" + type: "item" + }] + x: 6.0d + y: -3.0d + } + { + dependencies: ["000000000000107B"] + id: "0000000000001083" + rewards: [{ + exclude_from_claim_all: true + id: "0B06C8CD37DBC41F" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001084" + item: { + Count: 1 + id: "notenoughwands:protection_wand" + tag: { } + } + type: "item" + }] + x: 3.0d + y: -6.0d + } + { + dependencies: ["000000000000106B"] + id: "0000000000001087" + rewards: [{ + exclude_from_claim_all: true + id: "6F4180D58BD2053E" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001088" + item: "notenoughwands:teleportation_wand" + type: "item" + }] + x: 0.0d + y: 3.0d + } + { + dependencies: ["000000000000106B"] + id: "000000000000108B" + rewards: [{ + exclude_from_claim_all: true + id: "1F9E0BF3BABA5F8A" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000108C" + item: "notenoughwands:moving_wand" + type: "item" + }] + x: -3.0d + y: 3.0d + } + { + dependencies: ["000000000000106B"] + id: "000000000000108F" + rewards: [{ + exclude_from_claim_all: true + id: "58AACF8A35E0272C" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001090" + item: "notenoughwands:displacement_wand" + type: "item" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["000000000000106B"] + id: "0000000000001093" + rewards: [{ + exclude_from_claim_all: true + id: "0DB99AA4472613B6" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000001094" + item: "notenoughwands:building_wand" + type: "item" + }] + x: 3.0d + y: 3.0d + } + ] + title: "&3&oNot Enough Wands" +} diff --git a/minecraft/config/ftbquests/quests/chapters/occultism.snbt b/minecraft/config/ftbquests/quests/chapters/occultism.snbt new file mode 100644 index 0000000..aa18ff3 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/occultism.snbt @@ -0,0 +1,1308 @@ +{ + autofocus_id: "45C4870FE9F8CE90" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "occultism" + group: "4814F40AB34427B6" + icon: "occultism:spirit_fire" + id: "401A2800884DF5AB" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 1.25d + y: -9.660714285714285d + } + { + height: 2.3d + image: "kubejs:item/occultism" + rotation: 0.0d + width: 7.5d + x: -5.5d + y: -8.5d + } + { + height: 3.0d + image: "kubejs:item/1" + rotation: 0.0d + width: 2.0d + x: -9.5d + y: -8.5d + } + { + height: 3.0d + image: "kubejs:item/2" + rotation: 0.0d + width: 2.0d + x: 7.0d + y: -6.0d + } + ] + order_index: 10 + quest_links: [ ] + quests: [ + { + dependencies: ["31F65F523E4DB7A7"] + description: [ + "A ritual magic system centered around summonable spirits allows you to automate various tasks, store vast amounts of items, let demons mine in void dimensions, create powerful enchanted tools and jewelry." + "" + "Use Dictionary of Spirits, and following that in-game guide, discover the secrets of the spirit world,find otherworld groves hidden in plain sight by gaining the \"Third Eye\", and finally summon your first spirit." + "" + "If you need tutorial use the link below:" + "&9&nhttps://www.youtube.com/watch?v=kAKzzJ_yiC8" + ] + icon: { + Count: 1 + id: "occultism:dictionary_of_spirits" + tag: { + "modonomicon:book_id": "occultism:dictionary_of_spirits" + } + } + id: "2199E3F98CBE32D2" + rewards: [ + { + id: "476F4635BCB7DEAF" + type: "xp" + xp: 10 + } + { + id: "3612F76622B51E7B" + item: "occultism:datura_seeds" + type: "item" + } + { + exclude_from_claim_all: true + id: "21A903F462EB7EEC" + table_id: 6305167096659659419L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&l&oSign the Contract&r quest*" + tasks: [{ + id: "6535A1EE3A418236" + type: "checkmark" + }] + title: "&4&lWelcome to Occultism" + x: 0.5d + y: -9.0d + } + { + dependencies: ["2199E3F98CBE32D2"] + id: "2E7BB8DDADBEC97C" + rewards: [ + { + id: "2D23C36FE3BC927B" + type: "xp" + xp: 10 + } + { + count: 2 + id: "58CD8615D34A3ABF" + item: "occultism:datura" + type: "item" + } + { + exclude_from_claim_all: true + id: "1EE74F7E5C3AC54B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2766C123B1264E62" + item: "occultism:datura" + type: "item" + }] + x: 3.5d + y: -8.5d + } + { + dependencies: ["2E7BB8DDADBEC97C"] + icon: "occultism:spirit_fire" + id: "3F9C610D103C09D6" + rewards: [ + { + id: "1422EC50431CBA38" + type: "xp" + xp: 50 + } + { + count: 2 + id: "5E5817EC65DFBD22" + item: "occultism:spirit_attuned_gem" + type: "item" + } + { + count: 2 + id: "5C0E0AFBE64FB741" + item: "occultism:otherstone" + type: "item" + } + { + exclude_from_claim_all: true + id: "00DB4E28DEA625E8" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "78B66E37835ADD18" + item: "occultism:spirit_attuned_gem" + type: "item" + } + { + id: "4411C6817692684F" + item: "occultism:otherstone" + type: "item" + } + ] + title: "&4&lThe Spiritfire" + x: 3.5d + y: -6.5d + } + { + dependencies: ["3F9C610D103C09D6"] + id: "6586BB71EF1174BC" + rewards: [ + { + id: "62EDB1EE7C9F8CD2" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0561D052DCF30A3F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "635010C12FFDD525" + item: "occultism:spirit_attuned_crystal" + type: "item" + }] + x: 5.0d + y: -7.5d + } + { + dependencies: ["3F9C610D103C09D6"] + icon: { + Count: 1 + id: "occultism:divination_rod" + tag: { } + } + id: "5510D1C3EF2C5A2D" + rewards: [ + { + id: "0828B090A73E5DA2" + type: "xp" + xp: 30 + } + { + count: 2 + id: "66ACDACF0E27EC43" + item: "occultism:otherworld_log" + type: "item" + } + { + count: 2 + id: "10D1A61E9BB73687" + item: { + Count: 1 + id: "occultism:otherworld_sapling_natural" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "16E39499427BCC0E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "5CBFDB06075784B1" + item: { + Count: 1 + id: "occultism:divination_rod" + tag: { } + } + type: "item" + } + { + id: "63155AB8238E4B67" + item: "occultism:otherworld_log" + type: "item" + } + ] + x: 5.0d + y: -6.0d + } + { + dependencies: ["3F9C610D103C09D6"] + id: "7C7F17935265A045" + rewards: [ + { + id: "16D152550AF53AF8" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "13818FD2535690D6" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "40EC976076C3DCEC" + item: "occultism:chalk_white_impure" + type: "item" + }] + x: 2.5d + y: -5.5d + } + { + dependencies: ["7C7F17935265A045"] + id: "45C4870FE9F8CE90" + rewards: [ + { + id: "47337ED22D05BBBA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1DCD03C451C8C204" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "7644BFEF8CAC73F7" + item: { + Count: 1 + id: "occultism:chalk_white" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.0d + y: -4.0d + } + { + dependencies: ["3F9C610D103C09D6"] + id: "25125239A63BE73C" + rewards: [ + { + id: "7CBA376BF8764E9A" + type: "xp" + xp: 10 + } + { + count: 4 + id: "67B750FC8C1B32E2" + item: "occultism:purified_ink" + type: "item" + } + { + exclude_from_claim_all: true + id: "2649E1AE0B63EEA2" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "19EC8354CD5CD140" + item: "occultism:purified_ink" + type: "item" + }] + x: 2.0d + y: -7.5d + } + { + dependencies: ["45C4870FE9F8CE90"] + id: "4E99CDC21BFBEF83" + rewards: [ + { + id: "1FA369AC3E4D678C" + type: "xp" + xp: 10 + } + { + id: "36459C2D7997E341" + item: { + Count: 1 + id: "occultism:chalk_gold" + tag: { + Damage: 0 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1327286210FDA37B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "74613342F71AAE30" + item: { + Count: 1 + id: "occultism:chalk_gold" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.0d + y: -5.0d + } + { + dependencies: ["45C4870FE9F8CE90"] + icon: "occultism:candle_white" + id: "1617E640B3AD0534" + rewards: [ + { + id: "14AC97C7861C18B1" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "5C15CCE814062BE0" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "613AE4532B5DA665" + item: "occultism:candle_white" + type: "item" + } + { + id: "69D332998B953F34" + item: { + Count: 1 + id: "occultism:butcher_knife" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3C62BAE1B7E5A745" + item: "occultism:tallow" + type: "item" + } + ] + x: 4.0d + y: -2.5d + } + { + dependencies: ["45C4870FE9F8CE90"] + id: "38F25EC5D0DAE7B0" + rewards: [ + { + id: "03BD8E4505BDE836" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "76C2AA457E92B76A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "40FC84BE57678419" + item: "occultism:brush" + type: "item" + }] + x: 4.5d + y: -4.5d + } + { + dependencies: ["45C4870FE9F8CE90"] + id: "154141DFA5B22A44" + rewards: [ + { + id: "064A03EA901FFEED" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "6AD6F76AC3678514" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3A879768093E206C" + item: "occultism:sacrificial_bowl" + type: "item" + }] + x: 5.5d + y: -3.5d + } + { + dependencies: ["154141DFA5B22A44"] + id: "732E1C4D73EF6F26" + rewards: [ + { + id: "1DF32F31AB3D276D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "09E0EFB109A44AAB" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6260392819F1F2C3" + item: "occultism:golden_sacrificial_bowl" + type: "item" + }] + x: 6.5d + y: -3.5d + } + { + dependencies: ["45C4870FE9F8CE90"] + icon: "occultism:gold_dust" + id: "370D8D04F91F1CB7" + rewards: [ + { + id: "4EC6BA29C3812DDC" + type: "xp" + xp: 100 + } + { + count: 2 + id: "3655FC87B9D406D2" + item: "occultism:crushed_end_stone" + type: "item" + } + { + exclude_from_claim_all: true + id: "58CD80E43FA972F7" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + advancement: "occultism:occultism/summon_foliot_crusher" + criterion: "" + icon: "occultism:book_of_binding_foliot" + id: "3E448D9F85C4451C" + title: "Summon Foliot Crusher" + type: "advancement" + } + { + id: "6563A9D6E30C81BD" + item: { + Count: 1 + id: "occultism:book_of_binding_bound_foliot" + tag: { + spiritName: "Zorksalmarder" + } + } + type: "item" + } + ] + title: "The Foliot Crusher" + x: 2.5d + y: -2.0d + } + { + dependencies: ["370D8D04F91F1CB7"] + icon: { + Count: 1 + id: "eidolon:cleaving_axe" + tag: { + Damage: 0 + affix_data: { + sockets: 1 + } + } + } + id: "2EAA163B440B537F" + rewards: [ + { + id: "2DD0619147413027" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3B60D0885A7EC25E" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + advancement: "occultism:occultism/summon_foliot_lumberjack" + criterion: "" + icon: { + Count: 1 + id: "occultism:book_of_calling_foliot_lumberjack" + tag: { + spiritName: "Zedslamarer" + } + } + id: "079C8B8181A198E5" + title: "Summon Foliot Lumberjack" + type: "advancement" + } + { + id: "56928DA42381D919" + item: "occultism:book_of_binding_foliot" + type: "item" + } + ] + x: 2.5d + y: -0.5d + } + { + dependencies: ["370D8D04F91F1CB7"] + icon: "minecraft:chest_minecart" + id: "47315193FE0B2132" + rewards: [ + { + id: "4E1921AFE8C81531" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "46AA57A130553E0A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + advancement: "occultism:occultism/summon_foliot_transport_items" + criterion: "" + icon: { + Count: 1 + id: "occultism:book_of_calling_foliot_transport_items" + tag: { + spiritName: "Barcloer" + } + } + id: "50B551FC1D05397A" + title: "Summon Foliot Transporter" + type: "advancement" + } + { + id: "7E41866185F82864" + item: "occultism:book_of_binding_foliot" + type: "item" + } + ] + x: 3.5d + y: -1.0d + } + { + dependencies: ["370D8D04F91F1CB7"] + icon: "occultism:otherworld_sapling" + id: "5453E8AA76E60597" + rewards: [ + { + id: "264CD647D753DF07" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7A4F26628A6BD081" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + advancement: "occultism:occultism/summon_foliot_sapling_trader" + criterion: "" + icon: "occultism:book_of_binding_foliot" + id: "781682173DDD9471" + title: "Summon Foliot Sapling Trader" + type: "advancement" + } + { + id: "1C6E1994BF37F226" + item: "occultism:book_of_binding_foliot" + type: "item" + } + ] + x: 1.5d + y: -1.0d + } + { + dependencies: ["4E99CDC21BFBEF83"] + id: "3BDD0DF870E44171" + rewards: [ + { + id: "301F1B7D4E6880B2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "17E3E68F5C6A7623" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "75C2061AAA2F99F0" + item: { + Count: 1 + id: "occultism:soul_gem" + tag: { } + } + type: "item" + }] + x: 0.0d + y: -6.5d + } + { + dependencies: ["4E99CDC21BFBEF83"] + id: "7471429AC66722F0" + rewards: [ + { + id: "768C792E8B984039" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "023BF63756358B91" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "77CF5046D7A827D5" + item: { + Count: 1 + id: "occultism:satchel" + tag: { + spiritName: "Krsalmarcred" + } + } + type: "item" + }] + x: -1.0d + y: -7.0d + } + { + dependencies: ["4E99CDC21BFBEF83"] + id: "554D345BFD55256A" + rewards: [ + { + id: "12D43DD285B29394" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "051D4C287D5ADD0C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "688ACD44C1F22E80" + item: { + Count: 1 + id: "occultism:otherworld_goggles" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.5d + y: -5.5d + } + { + dependencies: [ + "4E99CDC21BFBEF83" + "1A66F5BD68405A25" + ] + dependency_requirement: "one_completed" + id: "3B05F7EE4FFBD84A" + rewards: [ + { + id: "52F55810504BE04E" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "79CE4D3F282A9652" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "2CF67EE447982323" + item: "occultism:storage_controller" + type: "item" + }] + x: -2.5d + y: -3.5d + } + { + dependencies: ["3B05F7EE4FFBD84A"] + id: "5F0EF379B904FE38" + rewards: [ + { + id: "3A33FE6A655A63C2" + type: "xp" + xp: 100 + } + { + id: "205178F05C2C785F" + item: "occultism:storage_stabilizer_tier1" + type: "item" + } + { + exclude_from_claim_all: true + id: "4C506439A57B0E09" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "77DE7FC6D9B1A77E" + item: "occultism:storage_stabilizer_tier1" + type: "item" + }] + x: -2.5d + y: -2.0d + } + { + dependencies: ["5F0EF379B904FE38"] + id: "5697D00FF0BC2D61" + rewards: [ + { + id: "40AA17BD1D5A7A44" + type: "xp" + xp: 200 + } + { + id: "48B0793C22D28B4B" + item: "occultism:storage_stabilizer_tier2" + type: "item" + } + { + exclude_from_claim_all: true + id: "0DD1DF40801C694F" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "55DF0B73BC8E769B" + item: "occultism:storage_stabilizer_tier2" + type: "item" + }] + x: -2.5d + y: -1.0d + } + { + dependencies: ["5697D00FF0BC2D61"] + id: "1E7316A15BDFAD50" + rewards: [ + { + id: "3B67021B68DDFB48" + type: "xp" + xp: 300 + } + { + id: "286F9EB0129BEFD5" + item: "occultism:storage_stabilizer_tier3" + type: "item" + } + { + exclude_from_claim_all: true + id: "51B05B4CA595C670" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "65E51B7479D8512D" + item: "occultism:storage_stabilizer_tier3" + type: "item" + }] + x: -2.5d + y: 0.0d + } + { + dependencies: [ + "0C5F3DAE8321C0D3" + "1E7316A15BDFAD50" + ] + id: "08A1D5F3E89F268B" + rewards: [ + { + id: "6180B63606C2B6B3" + type: "xp" + xp: 500 + } + { + id: "7D27B1C9D1D644C7" + item: "occultism:storage_stabilizer_tier4" + type: "item" + } + { + exclude_from_claim_all: true + id: "558C679DECE2DC08" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "06A73E4FE47F67FB" + item: "occultism:storage_stabilizer_tier4" + type: "item" + }] + x: -5.5d + y: 0.0d + } + { + dependencies: ["4E99CDC21BFBEF83"] + id: "1A66F5BD68405A25" + rewards: [ + { + id: "11DEE57F1FB9A8BF" + type: "xp" + xp: 100 + } + { + count: 2 + id: "158720B16AA3BA49" + item: "occultism:iesnium_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "44370B7182701927" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1CFBA09591F31719" + item: { + Count: 1 + id: "occultism:chalk_purple" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: -5.0d + } + { + dependencies: ["3B05F7EE4FFBD84A"] + id: "3BB6EEA6CBF0AA21" + rewards: [ + { + id: "4B6FECC610E54D4D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "49DD312D9FA8A5A0" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3841232AE1698DA3" + item: { + Count: 1 + id: "occultism:storage_remote" + tag: { } + } + type: "item" + }] + x: -1.5d + y: -2.5d + } + { + dependencies: ["3B05F7EE4FFBD84A"] + icon: "occultism:magic_lamp_empty" + id: "18186653E0D0F72A" + rewards: [ + { + id: "7B009FBE7F0F6A1D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4BE0220DDBF2FC2B" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + advancement: "occultism:occultism/summon_djinni_manage_machine" + criterion: "" + icon: { + Count: 1 + id: "occultism:book_of_calling_djinni_manage_machine" + tag: { + spiritName: "Reiredd" + } + } + id: "3E03655D1727DD46" + title: "Summon Machine Operator Djinni" + type: "advancement" + } + { + id: "0F794D9BF71A808D" + item: "occultism:book_of_binding_djinni" + type: "item" + } + ] + x: -1.0d + y: -3.5d + } + { + dependencies: ["3B05F7EE4FFBD84A"] + id: "470696A64C2DA613" + rewards: [ + { + id: "593DF7FF290CC21E" + type: "xp" + xp: 50 + } + { + id: "4F1DE99EB74E912B" + item: { + Count: 1 + id: "occultism:stable_wormhole" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0070402756B043B5" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "6AAC82147F86A84B" + item: { + Count: 1 + id: "occultism:stable_wormhole" + tag: { } + } + type: "item" + }] + x: -3.5d + y: -2.5d + } + { + dependencies: ["1A66F5BD68405A25"] + id: "40DFE71B5A92E8B7" + rewards: [ + { + id: "3F475A80838F5D54" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5E1FDDB37CB7EC6C" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [ + { + id: "14CFDA6A3E38B532" + item: "occultism:book_of_binding_afrit" + type: "item" + } + { + id: "2FBC486C35265131" + item: "occultism:afrit_essence" + type: "item" + } + ] + x: -5.5d + y: -3.0d + } + { + dependencies: ["40DFE71B5A92E8B7"] + id: "0C5F3DAE8321C0D3" + rewards: [ + { + id: "35E36A5DD2A6EDA0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5E99F7F5E814BF75" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "389D4AABE1A4CA03" + item: { + Count: 1 + id: "occultism:chalk_red" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: -1.5d + } + { + dependencies: ["1A66F5BD68405A25"] + id: "6B587997B619D896" + rewards: [ + { + id: "7FAFB1581BFAEAC4" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "759F517F0F2920E4" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "30280F9250AAAA45" + item: { + Count: 1 + id: "occultism:infused_pickaxe" + tag: { + Damage: 0 + spiritName: "Reitimzur" + } + } + type: "item" + }] + x: -8.0d + y: -5.0d + } + { + dependencies: ["6B587997B619D896"] + id: "40B2EDB0B8385A16" + rewards: [ + { + id: "75CF9E8CD3833A86" + type: "xp" + xp: 100 + } + { + count: 4 + id: "424D57AA8A0011DA" + item: "occultism:iesnium_ore" + type: "item" + } + { + exclude_from_claim_all: true + id: "1A58209CD8A0A74D" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "081AE4F62EC1FE08" + item: "occultism:iesnium_ore" + type: "item" + }] + x: -10.0d + y: -5.0d + } + { + dependencies: ["40B2EDB0B8385A16"] + id: "4A7E3A869E96372A" + rewards: [ + { + id: "7BED986394230B2A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3AD9C185342356E3" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "3E95E491FA6F055B" + item: { + Count: 1 + id: "occultism:iesnium_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -10.0d + y: -6.0d + } + { + dependencies: ["1A66F5BD68405A25"] + id: "044905AF7040920D" + rewards: [ + { + id: "2B9B872B2ADDE02E" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "48232B9812DFC096" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "278C9F4B5A2B02B9" + item: "minecraft:feather" + type: "item" + }] + x: -7.0d + y: -3.5d + } + { + dependencies: ["40B2EDB0B8385A16"] + id: "4D89017B9C0DDF03" + rewards: [ + { + id: "61E8538D34EBA2BA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2D7C8D1E23E0F9BA" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "1D29A0B6112B7DAF" + item: "occultism:dimensional_mineshaft" + type: "item" + }] + x: -10.0d + y: -3.5d + } + { + dependencies: ["4D89017B9C0DDF03"] + id: "0DD3B42B850C5834" + rewards: [ + { + id: "5EFC82A762ECA07B" + type: "xp" + xp: 300 + } + { + id: "3AAAD173A9CC738D" + item: "occultism:iesnium_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "142C29B46A03B4BF" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "55406DDC58D28B82" + item: { + Count: 1 + id: "occultism:miner_foliot_unspecialized" + tag: { + Damage: 0 + spiritName: "Legiaseth" + } + } + type: "item" + }] + x: -10.0d + y: -2.0d + } + { + dependencies: ["0DD3B42B850C5834"] + id: "599B4D1A985D90BB" + rewards: [ + { + id: "2796B33F8510FE2D" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "6571B3D5C060A05A" + table_id: 6305167096659659419L + type: "random" + } + ] + tasks: [{ + id: "39C2CDD26E39DB80" + item: { + Count: 1 + id: "occultism:miner_djinni_ores" + tag: { + Damage: 0 + spiritName: "Jagmurark" + } + } + type: "item" + }] + x: -10.0d + y: -1.0d + } + ] + title: "&3&oOccultism" +} diff --git a/minecraft/config/ftbquests/quests/chapters/other_projects.snbt b/minecraft/config/ftbquests/quests/chapters/other_projects.snbt new file mode 100644 index 0000000..9995df2 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/other_projects.snbt @@ -0,0 +1,297 @@ +{ + autofocus_id: "DD40EE50FF607711" + default_hide_dependency_lines: false + default_quest_shape: "circle" + filename: "other_projects" + group: "6CD934EDA78DBCD0" + icon: "minecraft:bookshelf" + id: "107D5E43CD065E59" + order_index: 1 + quest_links: [ ] + quests: [ + { + description: [ + "Enjoyed Monumental Experience? There's more where that came from." + "" + "This chapter showcases other modpacks and projects created by &6ModernGamingWorld&r and &dDexxKnight1&r — each one offering a different way to play Minecraft." + "" + "Every project listed here is available for free on CurseForge. Click the quest to read more about it, then head to CurseForge to download and play!" + ] + icon: "minecraft:bookshelf" + id: "7DB63C71E9C95CBC" + min_width: 320 + rewards: [{ + id: "4F12371E32A33918" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0D714D598DE0D615" + title: "Browse our projects" + type: "checkmark" + }] + title: "&e&lOur Other Projects" + x: 0.0d + y: 0.0d + } + { + description: [ + "&6Monumental Experience&r — the pack you're playing right now!" + "" + "A massive kitchen-sink modpack featuring hundreds of mods across magic, technology, exploration, farming, and more. Designed to give you a huge, polished, long-term experience with something for every type of player." + "" + "If you're playing this on a server, share it with a friend!" + "" + "&7curseforge.com/minecraft/modpacks/monumental-experience&r" + ] + icon: "minecraft:nether_star" + id: "137471A7467A223E" + min_width: 340 + rewards: [{ + id: "21F9431DC36CCE3C" + type: "xp" + xp: 20 + }] + subtitle: "&oThe one you're playing right now" + tasks: [{ + id: "307DCB64F9F01AF4" + title: "You're already here!" + type: "checkmark" + }] + title: "&6Monumental Experience" + x: -6.0d + y: 2.0d + } + { + description: [ + "&bMonumental Experience: In the Sky&r brings the Monumental Experience formula to a skyblock setting." + "" + "Start on a tiny floating island and work your way up through hundreds of quests, automating resource generation, unlocking dimensions, and building something spectacular — all without ever touching the ground." + "" + "A completely different way to experience the same mods you know and love." + "" + "&7curseforge.com/minecraft/modpacks/monumental-experience-in-the-sky&r" + ] + icon: "minecraft:white_concrete" + id: "725690A4C3279949" + min_width: 340 + rewards: [{ + id: "1FFA6A29A4F540AB" + type: "xp" + xp: 20 + }] + subtitle: "&oThe Monumental skyblock experience" + tasks: [{ + id: "1CD735C052DE8482" + title: "Check it out on CurseForge" + type: "checkmark" + }] + title: "&bMonumental Experience: In the Sky" + x: -4.5d + y: 2.0d + } + { + description: [ + "&5Monumental Experience: In Space&r takes the pack to the stars." + "" + "Built around Ad Astra and space exploration, this pack challenges you to master rocketry, colonise multiple planets, and build the infrastructure to survive beyond Earth. A tech-focused experience with a strong progression arc." + "" + "If you've ever wanted to build a factory on the Moon, this is your pack." + "" + "&7curseforge.com/minecraft/modpacks/monumental-experience-in-space&r" + ] + icon: "ad_astra:rocket_nose_cone" + id: "33661C8B5CA1F595" + min_width: 340 + rewards: [{ + id: "56526D791E634204" + type: "xp" + xp: 20 + }] + subtitle: "&oTo infinity and beyond" + tasks: [{ + id: "18D03A2143F833A0" + title: "Check it out on CurseForge" + type: "checkmark" + }] + title: "&5Monumental Experience: In Space" + x: -3.0d + y: 2.0d + } + { + description: [ + "&2Monumental Experience: Creatures Across the World&r is a creature and exploration-focused spin-off." + "" + "Featuring an expanded roster of mobs, biomes, and wildlife — including Alex's Mobs, Alex's Caves, Grimoire of Gaia, and more — this pack is for players who love discovering what's lurking in the wild." + "" + "Every biome hides something new. Some of it is cute. Some of it will try to eat you." + "" + "&7curseforge.com/minecraft/modpacks/monumental-experience-creatures-across-the-world&r" + ] + icon: "croptopia:peanut_butter_and_jam" + id: "0A06F70FFAA7B923" + min_width: 360 + rewards: [{ + id: "1D4510A322CFEEAC" + type: "xp" + xp: 20 + }] + subtitle: "&oExplore a living, breathing world" + tasks: [{ + id: "19BD8C70B331B5EF" + title: "Check it out on CurseForge" + type: "checkmark" + }] + title: "&2ME: Creatures Across the World" + x: -1.5d + y: 2.0d + } + { + description: [ + "&aFarming Overloaded&r is a dedicated farming and cooking modpack — a love letter to everyone who just wants to grow things and feed people." + "" + "Featuring Farmer's Delight, Cooking for Blockheads, and many more, this pack is built around building the ultimate farm and kitchen." + "" + "Relax, plant some seeds, and cook something delicious. No dragons required." + "" + "&7curseforge.com/minecraft/modpacks/farming-overloaded&r" + ] + icon: { + Count: 1 + id: "farmersdelight:skillet" + tag: { + Damage: 0 + } + } + id: "5EE91DFDAB40256D" + min_width: 340 + rewards: [{ + id: "15DFC6308ABD58F1" + type: "xp" + xp: 20 + }] + subtitle: "&oFor the farmers at heart" + tasks: [{ + id: "15991681C309F18A" + title: "Check it out on CurseForge" + type: "checkmark" + }] + title: "&aFarming Overloaded" + x: 0.0d + y: 2.0d + } + { + description: [ + "&cModernGamingWorld's Nether Portal Restrictor&r is a lightweight utility mod that gives server owners and modpack creators full control over Nether portal creation." + "" + "Configure which players, dimensions, or locations can create Nether portals — perfect for servers that want to restrict early-game dimension hopping or create custom progression rules." + "" + "Available on CurseForge for Forge and NeoForge." + "" + "&7curseforge.com/minecraft/mc-mods/moderngamingworlds-nether-portal-restrictor&r" + ] + icon: "minecraft:obsidian" + id: "6106662A7AA58D8F" + min_width: 360 + rewards: [{ + id: "62CEA57622705585" + type: "xp" + xp: 20 + }] + subtitle: "&oA utility mod for pack creators" + tasks: [{ + id: "55ED98B1E27A848C" + title: "Check it out on CurseForge" + type: "checkmark" + }] + title: "&cNether Portal Restrictor" + x: 1.5d + y: 2.0d + } + { + description: [ + "&dAge of Fate&r by &dDexxKnight1&r is a story-driven RPG modpack set in a rich lore-filled world." + "" + "Unlike a traditional kitchen-sink pack, Age of Fate has a hand-crafted narrative running through its quest lines — choices matter, factions exist, and the world reacts to what you do." + "" + "If you want a modpack that feels like an adventure rather than a checklist, this is it." + "" + "&7curseforge.com/minecraft/modpacks/age-of-fate&r" + ] + icon: "minecraft:enchanted_book" + id: "1572589D9438D008" + min_width: 340 + rewards: [{ + id: "1594F092E7D3B9E0" + type: "xp" + xp: 20 + }] + subtitle: "&oA story-driven RPG modpack by DexxKnight1" + tasks: [{ + id: "00B6A6A2EC355BD7" + title: "Check it out on CurseForge" + type: "checkmark" + }] + title: "&dAge of Fate" + x: 3.0d + y: 2.0d + } + { + description: [ + "&9Tech Revolution&r by &dDexxKnight1&r is a technology-focused modpack built around automation, engineering, and industrial progression." + "" + "Starting from nothing, you'll work your way through tiers of technology — from basic machinery all the way to complex automated factories and energy networks." + "" + "A great choice if you love the tech side of modded Minecraft and want a structured, satisfying progression." + "" + "&7curseforge.com/minecraft/modpacks/techrevolution&r" + ] + icon: "minecraft:piston" + id: "2558DA49B4B4797B" + min_width: 340 + rewards: [{ + id: "13F6BC42D95681FA" + type: "xp" + xp: 20 + }] + subtitle: "&oTech progression by DexxKnight1" + tasks: [{ + id: "39C9CD571E7FC4B6" + title: "Check it out on CurseForge" + type: "checkmark" + }] + title: "&9Tech Revolution" + x: 4.5d + y: 2.0d + } + { + description: [ + "&2Jurassic World Reborn 2&r by &dDexxKnight1&r brings the Jurassic Park fantasy to life in Minecraft." + "" + "Clone and breed dinosaurs, build enclosures, manage your park, and try very hard not to get eaten. The pack features prehistoric creatures, custom genetics systems, and a progression arc built around becoming a dinosaur park operator." + "" + "Life finds a way — whether you're ready for it or not." + "" + "&7curseforge.com/minecraft/modpacks/jurassic-world-reborn-2&r" + ] + icon: "minecraft:dragon_egg" + id: "1DD3B4CE60FA1D83" + min_width: 360 + rewards: [{ + id: "2B2D406A9E6AF343" + type: "xp" + xp: 20 + }] + subtitle: "&oLife finds a way — by DexxKnight1" + tasks: [{ + id: "7695C67D29AF0582" + title: "Check it out on CurseForge" + type: "checkmark" + }] + title: "&2Jurassic World Reborn 2" + x: 6.0d + y: 2.0d + } + ] + title: "&e&lOther Projects" +} diff --git a/minecraft/config/ftbquests/quests/chapters/pams_harvest_craft.snbt b/minecraft/config/ftbquests/quests/chapters/pams_harvest_craft.snbt new file mode 100644 index 0000000..a6fbb43 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/pams_harvest_craft.snbt @@ -0,0 +1,3098 @@ +{ + autofocus_id: "4B2F23A5D6334291" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "pams_harvest_craft" + group: "33C9D311E461F30C" + icon: "farmersdelight:cake_slice" + id: "695FBD34B746B8CD" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 2.25d + y: -4.535714285714285d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -11.285714285714299d + y: -6.535714285714281d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: -5.0d + width: 0.3d + x: 3.5d + y: 1.0d + } + { + height: 1.0d + image: "kubejs:textures/item/bread.png" + rotation: 0.0d + width: 1.0d + x: 1.5357142857142776d + y: -2.9107142857142847d + } + { + height: 1.0d + image: "kubejs:textures/item/pommes.png" + rotation: 15.0d + width: 1.0d + x: -10.0d + y: -2.5d + } + { + height: 1.0d + image: "kubejs:textures/item/kfc.png" + rotation: -7.0d + width: 1.0d + x: 5.0d + y: -1.0d + } + { + height: 1.0d + image: "kubejs:textures/item/wheat.png" + rotation: 10.0d + width: 1.0d + x: -11.5d + y: 0.4464285714285765d + } + { + height: 1.0d + image: "kubejs:textures/item/wheat.png" + rotation: -40.0d + width: 1.0d + x: -11.892857142857139d + y: 0.3392857142857153d + } + { + height: 1.0d + image: "kubejs:textures/item/wheat.png" + rotation: -98.0d + width: 1.0d + x: -12.321428571428562d + y: 0.4464285714285765d + } + { + height: 3.0d + image: "kubejs:textures/item/firef.png" + rotation: 90.0d + width: 1.0d + x: -1.7857142857142918d + y: 0.8035714285714306d + } + { + height: 3.0d + image: "kubejs:textures/item/fire.png" + rotation: -90.0d + width: 1.0d + x: -6.0714285714285765d + y: 0.9107142857142847d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -4.0d + y: 1.0d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + dependencies: ["12638CDF16A10B50"] + id: "7BD7D9B928A85D81" + rewards: [ + { + exclude_from_claim_all: true + id: "26AE17E34140F8C7" + table_id: 5709524483953410607L + type: "random" + } + { + id: "7D42917E760C8A4C" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "26CB9AB60BA0EF9F" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/barley" + } + } + title: "Any #forge:seeds/barley" + type: "item" + }] + title: "Barley Seeds" + x: -8.0d + y: 2.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "3B2ABB1C9A90A1E7" + rewards: [ + { + exclude_from_claim_all: true + id: "26E076418601853D" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2BBCF8AC8BF70963" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "3E211BEE8383846F" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/blackbean" + } + } + title: "Any #forge:seeds/blackbean" + type: "item" + }] + title: "Blackbean Seeds" + x: -7.0d + y: 2.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "4CAB492EA25CADF9" + rewards: [ + { + exclude_from_claim_all: true + id: "106F1B2E8EA551B1" + table_id: 5709524483953410607L + type: "random" + } + { + id: "7A0D18650E4E484C" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "1BD00F9F2A0AA81F" + item: "croptopia:bellpepper_seed" + type: "item" + }] + x: -6.0d + y: 2.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "6A156E29D3C06B36" + rewards: [ + { + exclude_from_claim_all: true + id: "59022A5C2251DA38" + table_id: 5709524483953410607L + type: "random" + } + { + id: "6A7B81AB8E9E4290" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "4CC8A2BE67F833ED" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/broccoli" + } + } + title: "Any #forge:seeds/broccoli" + type: "item" + }] + title: "Broccoli Seeds" + x: -5.0d + y: 2.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "511F74A70765D25F" + rewards: [ + { + exclude_from_claim_all: true + id: "3EAD65B39456F264" + table_id: 5709524483953410607L + type: "random" + } + { + id: "0DC36FA4F08F8782" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "7D9DBD81AFC10E64" + item: "croptopia:corn_seed" + type: "item" + }] + x: -4.0d + y: 2.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "3F9895D9CF096307" + rewards: [ + { + exclude_from_claim_all: true + id: "788F06AC7F297A03" + table_id: 5709524483953410607L + type: "random" + } + { + id: "6B479BD4C358331C" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "2611AB42834B550F" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/chilepepper" + } + } + title: "Any #forge:seeds/chilepepper" + type: "item" + }] + title: "Chile Pepper Seeds" + x: -3.0d + y: 2.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "2177506DA434F824" + rewards: [ + { + exclude_from_claim_all: true + id: "68A808E265C80BB0" + table_id: 5709524483953410607L + type: "random" + } + { + id: "3BD862CD8FD26CF2" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "0F38127E599B914B" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/celery" + } + } + title: "Any #forge:seeds/celery" + type: "item" + }] + title: "Celery Seeds" + x: -2.0d + y: 2.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "0F23DDEE5F5573B7" + rewards: [ + { + exclude_from_claim_all: true + id: "2991F327503F098C" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2907D8E8305ACA5E" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "4A3B370F295C0E9B" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/garlic" + } + } + title: "Any #forge:seeds/garlic" + type: "item" + }] + title: "Garlic Seeds" + x: -1.0d + y: 2.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "42AB8B1FD2ED3C9B" + rewards: [ + { + exclude_from_claim_all: true + id: "109A5CE6640339D7" + table_id: 5709524483953410607L + type: "random" + } + { + id: "63D5DF2FAFE62EC6" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "157A2119A246C553" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/eggplant" + } + } + title: "Any #forge:seeds/eggplant" + type: "item" + }] + title: "Eggplant Seeds" + x: 0.0d + y: 2.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "6C366A9CE63A0FCD" + rewards: [ + { + exclude_from_claim_all: true + id: "09B35106BA7F72A4" + table_id: 5709524483953410607L + type: "random" + } + { + id: "1A080878E5E3F856" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "403CFCC3A1BDD55D" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/cucumber" + } + } + title: "Any #forge:seeds/cucumber" + type: "item" + }] + title: "Cucumber Seeds" + x: -8.0d + y: 3.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "1B5FA58475B2A0C5" + rewards: [ + { + exclude_from_claim_all: true + id: "573FF7229BD41660" + table_id: 5709524483953410607L + type: "random" + } + { + id: "5F5D98D45373D352" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "75BA1868CB802043" + item: "croptopia:cabbage_seed" + type: "item" + }] + x: -7.0d + y: 3.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "3C5EA60DE934668F" + rewards: [ + { + exclude_from_claim_all: true + id: "019565A8C61A41E7" + table_id: 5709524483953410607L + type: "random" + } + { + id: "5E02344F3613CAF4" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "3BD8CFB2615A2FD2" + item: "croptopia:tea_seed" + type: "item" + }] + x: -6.0d + y: 3.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "1B6BF4CC32B7F86C" + rewards: [ + { + exclude_from_claim_all: true + id: "5FDFD19674E6577C" + table_id: 5709524483953410607L + type: "random" + } + { + id: "3AFC99B29CE3B898" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "395424A30B00EDA7" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/lettuce" + } + } + title: "Any #forge:seeds/lettuce" + type: "item" + }] + title: "Lettuce Seeds" + x: -5.0d + y: 3.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "5E7B4C70F2D62C0B" + rewards: [ + { + exclude_from_claim_all: true + id: "086A0D85DF5DDADB" + table_id: 5709524483953410607L + type: "random" + } + { + id: "675A629085D30E0A" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "155FB7C176313D7C" + item: "croptopia:coffee_seed" + type: "item" + }] + x: -4.0d + y: 3.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "1DD3AA3443CD7C52" + rewards: [ + { + exclude_from_claim_all: true + id: "2476183C02245BA8" + table_id: 5709524483953410607L + type: "random" + } + { + id: "6B81673099C9A2A1" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "36894542DC7872FC" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/onion" + } + } + title: "Any #forge:seeds/onion" + type: "item" + }] + title: "Onion Seeds" + x: -3.0d + y: 3.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "64739FEB071B0D4F" + rewards: [ + { + exclude_from_claim_all: true + id: "15B17614577A0560" + table_id: 5709524483953410607L + type: "random" + } + { + id: "4204A17B96D78FB6" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "42A2896787E2A6D3" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/rutabaga" + } + } + title: "Any #forge:seeds/rutabaga" + type: "item" + }] + title: "Rutabaga Seeds" + x: -2.0d + y: 3.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "04827691B45BE611" + rewards: [ + { + exclude_from_claim_all: true + id: "12C0BC70FA6DF67A" + table_id: 5709524483953410607L + type: "random" + } + { + id: "721D35F25E1F5251" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "45A1A6B9C24445BF" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/rice" + } + } + title: "Any #forge:seeds/rice" + type: "item" + }] + title: "Rice Seeds" + x: -1.0d + y: 3.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "5850F20D7D73AE66" + rewards: [ + { + exclude_from_claim_all: true + id: "2884DD9BD0BCD6B1" + table_id: 5709524483953410607L + type: "random" + } + { + id: "60B483530F6DE351" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "56C51AD679CEEAD0" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/radish" + } + } + title: "Any #forge:seeds/radish" + type: "item" + }] + title: "Radish Seeds" + x: 0.0d + y: 3.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "04489EC0C6F3AC1B" + rewards: [ + { + exclude_from_claim_all: true + id: "0D4C715F37F00BDD" + table_id: 5709524483953410607L + type: "random" + } + { + id: "7641BE9C9C159F31" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "2A241E14D3521598" + item: "croptopia:greenbean_seed" + type: "item" + }] + x: -8.0d + y: 4.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "6A574950B62610FD" + rewards: [ + { + exclude_from_claim_all: true + id: "0FF360BF3F5BE564" + table_id: 5709524483953410607L + type: "random" + } + { + id: "66E2CECEF3E5319D" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "4D306C0C2ED81277" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/greenonion" + } + } + title: "Any #forge:seeds/greenonion" + type: "item" + }] + title: "Green Onion Seeds" + x: -7.0d + y: 4.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "2B85541852C75DAD" + rewards: [ + { + exclude_from_claim_all: true + id: "0A1915969C8AB5AB" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2893B3342610B99D" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "43F17F6C3AD7D6A3" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/soybean" + } + } + title: "Any #forge:seeds/soybean" + type: "item" + }] + title: "Soybean Seeds" + x: -6.0d + y: 4.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "711C55E8F598152B" + rewards: [ + { + exclude_from_claim_all: true + id: "6E1149B2A4EF4D9E" + table_id: 5709524483953410607L + type: "random" + } + { + id: "231EE443C6BB6C6E" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "1E2FA7AE75965AFB" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/spinach" + } + } + title: "Any #forge:seeds/spinach" + type: "item" + }] + title: "Spinach Seeds" + x: -5.0d + y: 4.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "752EB814B12E8FAE" + rewards: [ + { + exclude_from_claim_all: true + id: "4DDC954F888105E2" + table_id: 5709524483953410607L + type: "random" + } + { + id: "72DA7D0111BE3E9F" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "08E7D300387FF5C6" + item: "croptopia:sweetpotato_seed" + type: "item" + }] + x: -4.0d + y: 4.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "204E3B5AC85EA6E5" + rewards: [ + { + exclude_from_claim_all: true + id: "4ADC0AA472AF9931" + table_id: 5709524483953410607L + type: "random" + } + { + id: "0C695347F79CB054" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "5B2C01CA9E813EFB" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/tomato" + } + } + title: "Any #forge:seeds/tomato" + type: "item" + }] + title: "Tomato Seeds" + x: -3.0d + y: 4.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "36182F076FD63D5D" + rewards: [ + { + exclude_from_claim_all: true + id: "6577087A7E58FEBD" + table_id: 5709524483953410607L + type: "random" + } + { + id: "47C3F5517F164535" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "2ACA24C68B3F86C2" + item: "croptopia:turnip_seed" + type: "item" + }] + x: -2.0d + y: 4.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "205B408536F6E374" + rewards: [ + { + exclude_from_claim_all: true + id: "01A9CB4D30B9F80B" + table_id: 5709524483953410607L + type: "random" + } + { + id: "1C19C6A330AABD7C" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "48792BBC03D2B421" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:seeds/zucchini" + } + } + title: "Any #forge:seeds/zucchini" + type: "item" + }] + title: "Zucchini Seeds" + x: -1.0d + y: 4.0d + } + { + dependencies: ["12638CDF16A10B50"] + id: "3CF0CAC91967D08F" + rewards: [ + { + exclude_from_claim_all: true + id: "67B6AE93FAA9CBDD" + table_id: 5709524483953410607L + type: "random" + } + { + id: "092428B4E2CCBE93" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "1C42B51FE3AD571A" + item: "croptopia:squash_seed" + type: "item" + }] + x: 0.0d + y: 4.0d + } + { + dependencies: ["4D34B7FD0EEF2A9D"] + hide_dependency_lines: true + id: "128A17001B384232" + rewards: [{ + exclude_from_claim_all: true + id: "0EB90E1E98419BA4" + table_id: 5709524483953410607L + type: "random" + }] + shape: "gear" + size: 1.3d + tasks: [{ + id: "1A260A0D6627E8FD" + item: "minecraft:cake" + type: "item" + }] + title: "&cDelicious Cakes!" + x: 2.857142857142847d + y: -3.9999999999999964d + } + { + dependencies: ["128A17001B384232"] + id: "59B660C460541FFB" + rewards: [{ + exclude_from_claim_all: true + id: "3F4ED0F73973681C" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "45B908E3A64F1BBF" + item: "thermal:spice_cake" + type: "item" + }] + x: 2.7857142857142847d + y: -6.017857142857142d + } + { + dependencies: ["128A17001B384232"] + id: "1352E5EE585BE4B4" + rewards: [{ + exclude_from_claim_all: true + id: "771FAB74B393EF37" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "5E6835A987481F9E" + item: "thermal:carrot_cake" + type: "item" + }] + x: 4.0d + y: -5.5d + } + { + dependencies: ["128A17001B384232"] + id: "332D5708E09A8931" + rewards: [{ + exclude_from_claim_all: true + id: "41A7CC7786611156" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "7F339A6BF7FD8C0D" + item: "cyclic:inventory_cake" + type: "item" + }] + x: 2.7857142857142847d + y: -2.0178571428571423d + } + { + dependencies: ["128A17001B384232"] + id: "44106A758E650D21" + rewards: [{ + exclude_from_claim_all: true + id: "32F151C8AC5732B4" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "67957693F7AF6E6F" + item: "thermal:chocolate_cake" + type: "item" + }] + x: 4.0357142857142705d + y: -2.4642857142857117d + } + { + dependencies: ["128A17001B384232"] + id: "42DE84D0BB6A4F1A" + rewards: [{ + exclude_from_claim_all: true + id: "4BB38A35E91CE90A" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "5A18FAF0B7899749" + item: "bakery:sweetberry_cake" + type: "item" + }] + x: 4.5d + y: -3.5d + } + { + dependencies: ["1E9718F6A93F923A"] + description: [ + "&eFarmer's Delight&r is a mod that gently expands upon &o&bfarming&r and &o&bcooking&r in Minecraft." + "" + "Using a simple cooking system and a few familiar ingredients, you'll be able to prepare a wide variety of hearty meals: from sandwiches to salads and stews, from beautiful desserts to mouth-watering feasts, no ingredient will be left behind in your kitchen!" + "" + "It also introduces a rich set of utilities: a way to improve the very soil your crops grow in, a brand new kind of tool to scavenge resources with, cute decorations for your builds, and many blocks and items to help you on your adventure!" + "" + "It's time to farm a little bit of &o&beverything&r!" + "" + "&6Croptopia&r adds &o&b58&r ground crops, &o&b26&r tree crops, and over &o&b250&r foods to craft and eat." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/pam.png" + } + } + id: "4097A648021E5698" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "345DB857C6334969" + table_id: 5709524483953410607L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oOven&r quest*" + tasks: [{ + icon: "pamhc2foodcore:fishandchipsitem" + id: "4D34B7FD0EEF2A9D" + title: "Pam's Food" + type: "checkmark" + }] + title: "Welcome to &eFarmer's Delight \\& Croptopia" + x: -12.0d + y: -6.0d + } + { + dependencies: ["66C608CAA622E791"] + id: "6A5A9AFA3885D6D4" + rewards: [{ + exclude_from_claim_all: true + id: "09CF230EF5E1BEB4" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "3F9020134DD16363" + item: { + Count: 1 + id: "thermal:watering_can" + tag: { } + } + type: "item" + }] + x: -12.0d + y: -2.5d + } + { + dependencies: ["6A5A9AFA3885D6D4"] + id: "65F8DD769A7B2650" + rewards: [{ + exclude_from_claim_all: true + id: "2891018E0C74A3BC" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "24BA273C2BAEA7BF" + item: "minecraft:composter" + type: "item" + }] + x: -12.0d + y: -1.0d + } + { + dependencies: ["66CEFD7FE7A4BB9D"] + id: "50EF1D5E863E2EF2" + rewards: [ + { + exclude_from_claim_all: true + id: "57AA956010AE69FA" + table_id: 5709524483953410607L + type: "random" + } + { + id: "6691386126C2CE5E" + type: "xp" + xp: 100 + } + ] + shape: "diamond" + tasks: [{ + id: "6191A5060B7D1286" + item: "croptopia_additions:cherry_soda" + type: "item" + }] + x: -8.0d + y: -1.0d + } + { + dependencies: ["66CEFD7FE7A4BB9D"] + id: "2E37B7805DEEB8AD" + rewards: [ + { + exclude_from_claim_all: true + id: "6253DE7CCEC2FD9E" + table_id: 5709524483953410607L + type: "random" + } + { + id: "11917A5125CFAC5A" + type: "xp" + xp: 100 + } + ] + shape: "diamond" + tasks: [{ + id: "45CDFFF1D9CFCA25" + item: "croptopia_additions:grape_soda" + type: "item" + }] + x: -7.0d + y: -1.0d + } + { + dependencies: ["66CEFD7FE7A4BB9D"] + id: "2FCF5E6302CA31C5" + rewards: [ + { + exclude_from_claim_all: true + id: "25A575F2D4C9192B" + table_id: 5709524483953410607L + type: "random" + } + { + id: "579F3089BE0C6FD5" + type: "xp" + xp: 100 + } + ] + shape: "diamond" + tasks: [{ + id: "05950C248FC9E8B8" + item: "croptopia_additions:lemon_lime_soda" + type: "item" + }] + x: -6.0d + y: -1.0d + } + { + dependencies: ["66CEFD7FE7A4BB9D"] + id: "6A6155A4DA63DE80" + rewards: [ + { + exclude_from_claim_all: true + id: "368B8790AC9AA8C3" + table_id: 5709524483953410607L + type: "random" + } + { + id: "5176AC644209B421" + type: "xp" + xp: 100 + } + ] + shape: "diamond" + tasks: [{ + id: "73DBCC77E45F8814" + item: "croptopia:strawberry_smoothie" + type: "item" + }] + x: -2.0d + y: -1.0d + } + { + dependencies: ["66CEFD7FE7A4BB9D"] + id: "0C7B230CCC39E494" + rewards: [ + { + exclude_from_claim_all: true + id: "7F7D469D83E0BC8C" + table_id: 5709524483953410607L + type: "random" + } + { + id: "4E49EDB5A41F902B" + type: "xp" + xp: 100 + } + ] + shape: "diamond" + tasks: [{ + id: "336C6FBCED091A9B" + item: "croptopia:kale_smoothie" + type: "item" + }] + x: -1.0d + y: -1.0d + } + { + dependencies: ["66CEFD7FE7A4BB9D"] + id: "0C52714415FBBD2C" + rewards: [ + { + exclude_from_claim_all: true + id: "5DDEFE02A0A14F0A" + table_id: 5709524483953410607L + type: "random" + } + { + id: "54293835C946B4CC" + type: "xp" + xp: 100 + } + ] + shape: "diamond" + tasks: [{ + id: "4C98BCB2C529D8EE" + item: "croptopia:banana_smoothie" + type: "item" + }] + x: -3.0d + y: -1.0d + } + { + dependencies: ["66CEFD7FE7A4BB9D"] + id: "7D5CE253B69A3BBC" + rewards: [ + { + exclude_from_claim_all: true + id: "3839EEAC2A135DCD" + table_id: 5709524483953410607L + type: "random" + } + { + id: "40986D309D74460E" + type: "xp" + xp: 100 + } + ] + shape: "diamond" + tasks: [{ + id: "3D0E5E9DA59C1767" + item: "croptopia_additions:orange_soda" + type: "item" + }] + x: -5.0d + y: -1.0d + } + { + dependencies: ["66CEFD7FE7A4BB9D"] + id: "67D10DE27BEDB585" + rewards: [ + { + exclude_from_claim_all: true + id: "4AAE6577B767624F" + table_id: 5709524483953410607L + type: "random" + } + { + id: "13C01135C8CCED97" + type: "xp" + xp: 100 + } + ] + shape: "diamond" + tasks: [{ + id: "07A9D19F96143BBE" + item: "croptopia_additions:cola" + type: "item" + }] + x: -4.0d + y: -1.0d + } + { + dependencies: ["66CEFD7FE7A4BB9D"] + id: "732058D48C846A19" + rewards: [ + { + exclude_from_claim_all: true + id: "32832A44AB8D6224" + table_id: 5709524483953410607L + type: "random" + } + { + id: "6AEC7754D9494834" + type: "xp" + xp: 100 + } + ] + shape: "diamond" + tasks: [{ + id: "3D9839E174FE638E" + item: "croptopia:fruit_smoothie" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + dependencies: ["3EB9C4A938D5FBE6"] + id: "4EE786BF8AAD6B6A" + rewards: [ + { + exclude_from_claim_all: true + id: "113E6E482F583BDF" + table_id: 5709524483953410607L + type: "random" + } + { + id: "08E56549EB1E0BC5" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "13702B24ED8C59B2" + item: "croptopia:apple_juice" + type: "item" + }] + x: -8.0d + y: -2.0d + } + { + dependencies: ["3EB9C4A938D5FBE6"] + id: "7CD714017260398A" + rewards: [ + { + exclude_from_claim_all: true + id: "0ED30027B64D2B61" + table_id: 5709524483953410607L + type: "random" + } + { + id: "643D3ADEFA3C4694" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "5FC14DF82979D227" + item: "croptopia:cranberry_juice" + type: "item" + }] + x: -7.0d + y: -2.0d + } + { + dependencies: ["3EB9C4A938D5FBE6"] + id: "40E6B5A5322C64BA" + rewards: [ + { + exclude_from_claim_all: true + id: "2321AB2C2E2169D1" + table_id: 5709524483953410607L + type: "random" + } + { + id: "73E09255BDE5FB5E" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "44598109EF461F72" + item: "croptopia:grape_juice" + type: "item" + }] + x: -6.0d + y: -2.0d + } + { + dependencies: ["3EB9C4A938D5FBE6"] + id: "6D6BA9BEED92FD99" + rewards: [ + { + exclude_from_claim_all: true + id: "2A926E668F17A12F" + table_id: 5709524483953410607L + type: "random" + } + { + id: "382E966F814DEF39" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "0EED54C1B1721B8B" + item: "croptopia:melon_juice" + type: "item" + }] + x: -5.0d + y: -2.0d + } + { + dependencies: ["3EB9C4A938D5FBE6"] + id: "70DC7A14F2C3E06F" + rewards: [ + { + exclude_from_claim_all: true + id: "02AF1B59C45A748D" + table_id: 5709524483953410607L + type: "random" + } + { + id: "51003115E71F9198" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "20E26AFB031FD0CD" + item: "croptopia:orange_juice" + type: "item" + }] + x: -4.0d + y: -2.0d + } + { + dependencies: ["3EB9C4A938D5FBE6"] + id: "1A5609D159723F0A" + rewards: [ + { + exclude_from_claim_all: true + id: "28CDEC437A64CD8D" + table_id: 5709524483953410607L + type: "random" + } + { + id: "079533126531E34E" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "7565482546405834" + item: "croptopia:pineapple_juice" + type: "item" + }] + x: -3.0d + y: -2.0d + } + { + dependencies: ["3EB9C4A938D5FBE6"] + id: "37283F19AF30D9B3" + rewards: [ + { + exclude_from_claim_all: true + id: "496B062E91E4CE57" + table_id: 5709524483953410607L + type: "random" + } + { + id: "07AF763909531911" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "797BC947384E6CA0" + item: "croptopia:saguaro_juice" + type: "item" + }] + x: -2.0d + y: -2.0d + } + { + dependencies: ["3EB9C4A938D5FBE6"] + id: "477EF36C6EDD41B2" + rewards: [ + { + exclude_from_claim_all: true + id: "798C21AFDA3C6556" + table_id: 5709524483953410607L + type: "random" + } + { + id: "473274235E58DAC7" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "05570379B000824C" + item: "croptopia:tomato_juice" + type: "item" + }] + x: -1.0d + y: -2.0d + } + { + dependencies: ["3EB9C4A938D5FBE6"] + id: "01A197846ED46974" + rewards: [ + { + exclude_from_claim_all: true + id: "5F75FDD49389E4EB" + table_id: 5709524483953410607L + type: "random" + } + { + id: "0A4399D80C38C3E0" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "7778EA23EB5A93DD" + item: "croptopia:lemonade" + type: "item" + }] + x: 0.0d + y: -2.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "3ED041EA300F0CD8" + rewards: [ + { + exclude_from_claim_all: true + id: "55F2D43DE23DB501" + table_id: 5709524483953410607L + type: "random" + } + { + id: "74BBF929F8B91B4B" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "137B2C1827E577AE" + item: "farmersdelight:baked_cod_stew" + type: "item" + }] + x: -8.0d + y: -4.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "45EF4B1A7E28A5E7" + rewards: [ + { + exclude_from_claim_all: true + id: "1B4D3D6FF3907AE9" + table_id: 5709524483953410607L + type: "random" + } + { + id: "67D049A5DA9A2191" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "266E1DD7C4DCC7F6" + item: "farmersdelight:grilled_salmon" + type: "item" + }] + x: -7.0d + y: -4.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "6C96B9D2AF451D68" + rewards: [ + { + exclude_from_claim_all: true + id: "158ACE0884CA8F9D" + table_id: 5709524483953410607L + type: "random" + } + { + id: "187C1D482080B754" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "6FF4988B8A37B5F9" + item: "farmersdelight:bacon_and_eggs" + type: "item" + }] + x: -6.0d + y: -4.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "6531FC16531B61FA" + rewards: [ + { + exclude_from_claim_all: true + id: "7A2C168E4C44AD7E" + table_id: 5709524483953410607L + type: "random" + } + { + id: "5D5E3C2A40C21537" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "002874D0811799BF" + item: "farmersdelight:vegetable_noodles" + type: "item" + }] + x: -5.0d + y: -4.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "387BEDCB521D3FB3" + rewards: [ + { + exclude_from_claim_all: true + id: "40DDA112C26DEA67" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2D04B96495D9680D" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "6A53CD00141A052A" + item: "farmersdelight:roasted_mutton_chops" + type: "item" + }] + x: -4.0d + y: -4.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "2E18564EBFD6D21D" + rewards: [ + { + exclude_from_claim_all: true + id: "2B649EA84A47F44F" + table_id: 5709524483953410607L + type: "random" + } + { + id: "0F3AE751978E4DB4" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "69118CFF1E42972C" + item: "farmersdelight:squid_ink_pasta" + type: "item" + }] + x: -3.0d + y: -4.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "43138ED2A7C7BD00" + rewards: [ + { + exclude_from_claim_all: true + id: "12C10A280D5DA966" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2800059D7FE49165" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "4E4B0E3584EF94A8" + item: "farmersdelight:steak_and_potatoes" + type: "item" + }] + x: -2.0d + y: -4.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "4A4B86944BE53B96" + rewards: [ + { + exclude_from_claim_all: true + id: "1459627C04BF1004" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2F73D44F363A6BD7" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "4F1ABA8B37FEB570" + item: "farmersdelight:ratatouille" + type: "item" + }] + x: -1.0d + y: -4.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "1562E7A8C4E87C7A" + rewards: [ + { + exclude_from_claim_all: true + id: "2ED23A12EE6BBCF2" + table_id: 5709524483953410607L + type: "random" + } + { + id: "20CC8CB597E9792D" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "18786B14594CFD2F" + item: "farmersdelight:pasta_with_mutton_chop" + type: "item" + }] + x: 0.0d + y: -4.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "036D539C6FEA7BBB" + rewards: [ + { + exclude_from_claim_all: true + id: "68307B05B999B9A7" + table_id: 5709524483953410607L + type: "random" + } + { + id: "1B42F51F31C48B05" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "2E17815B407EF8C3" + item: "farmersdelight:stuffed_pumpkin_block" + type: "item" + }] + x: -8.0d + y: -5.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "5C2CF20B0EC68000" + rewards: [ + { + exclude_from_claim_all: true + id: "5B89C243BF51FEBF" + table_id: 5709524483953410607L + type: "random" + } + { + id: "303DC83D9FD55A10" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "6660A2DC794B68B2" + item: "croptopia_additions:pad_thai" + type: "item" + }] + x: -7.0d + y: -5.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "220AA5F7F6FE08E4" + rewards: [ + { + exclude_from_claim_all: true + id: "7229C828E50156AD" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2379085AEB8841E0" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "3FA4EB40EFAFB053" + item: "croptopia:taco" + type: "item" + }] + x: -6.0d + y: -5.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "2FEA56492D0DC2A4" + rewards: [ + { + exclude_from_claim_all: true + id: "45867DFBB7D38F2A" + table_id: 5709524483953410607L + type: "random" + } + { + id: "40FDD0D880AA1EE9" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "7E45F914A91721E9" + item: "croptopia:the_big_breakfast" + type: "item" + }] + x: -5.0d + y: -5.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "1E0CD828B5B9C3B5" + rewards: [ + { + exclude_from_claim_all: true + id: "0E63A5722D23006F" + table_id: 5709524483953410607L + type: "random" + } + { + id: "6C99D5E8CA3F81FC" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "7D117D0F67C7F4CC" + item: "croptopia:macaron" + type: "item" + }] + x: -4.0d + y: -5.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "2E1794E1E85E0D2D" + rewards: [ + { + exclude_from_claim_all: true + id: "72D3870C82B24E42" + table_id: 5709524483953410607L + type: "random" + } + { + id: "781D0347B75EB9E2" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "6D97AF385852B8B7" + item: "croptopia:fruit_salad" + type: "item" + }] + x: -3.0d + y: -5.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "22A69246F1388B5F" + rewards: [ + { + exclude_from_claim_all: true + id: "776C64CBFFF268E6" + table_id: 5709524483953410607L + type: "random" + } + { + id: "423570CB1B645333" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "77C9299FC7DE63B3" + item: "croptopia:sushi" + type: "item" + }] + x: -2.0d + y: -5.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "1A2BBC827904BE95" + rewards: [ + { + exclude_from_claim_all: true + id: "4265189480AF53C2" + table_id: 5709524483953410607L + type: "random" + } + { + id: "0E4ED37C882A2396" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "2CAF9C03292A1AC5" + item: "croptopia_additions:bratwurst" + type: "item" + }] + x: -1.0d + y: -5.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "421D9B977BA2261A" + rewards: [ + { + exclude_from_claim_all: true + id: "3C6DECF2721DC7D9" + table_id: 5709524483953410607L + type: "random" + } + { + id: "37D8D1AAEDAEA4D1" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "040C542B73C71C85" + item: "croptopia:croque_madame" + type: "item" + }] + x: 0.0d + y: -5.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "465A55120B412175" + rewards: [ + { + exclude_from_claim_all: true + id: "0808EE8AE6FC5FB9" + table_id: 5709524483953410607L + type: "random" + } + { + id: "492F61F3B3ADF41C" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "75AC6892126E40F1" + item: "farmersdelight:apple_pie" + type: "item" + }] + x: -8.0d + y: -6.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "11221D310C47C37C" + rewards: [ + { + exclude_from_claim_all: true + id: "32DBB98773BB1645" + table_id: 5709524483953410607L + type: "random" + } + { + id: "35C1DB2A09F2769E" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "74026949F58D227E" + item: "farmersdelight:chocolate_pie" + type: "item" + }] + x: -7.0d + y: -6.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "3604FA90DDB3000F" + rewards: [ + { + exclude_from_claim_all: true + id: "736F1920454D9D69" + table_id: 5709524483953410607L + type: "random" + } + { + id: "0E0ED86B8AE4D8D2" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "03D044DF73ABBB90" + item: "delightful:salmonberry_pie" + type: "item" + }] + x: -6.0d + y: -6.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "235896C489903A5C" + rewards: [ + { + exclude_from_claim_all: true + id: "6423614588B6C29D" + table_id: 5709524483953410607L + type: "random" + } + { + id: "600ED695ED66CA25" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "74A3B41F2BA8F239" + item: "minecraft:pumpkin_pie" + type: "item" + }] + x: -1.0d + y: -6.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "389D9986C2FFA62F" + rewards: [ + { + exclude_from_claim_all: true + id: "06FD5C8805DBAF60" + table_id: 5709524483953410607L + type: "random" + } + { + id: "48CBACEA908BAA56" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "5A1E24DCA70F084A" + item: "ars_nouveau:source_berry_pie" + type: "item" + }] + x: 0.0d + y: -6.0d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "3F25ED25EDE0213D" + rewards: [ + { + exclude_from_claim_all: true + id: "0595EC68183AFB72" + table_id: 5709524483953410607L + type: "random" + } + { + id: "048DCD24D2D47AFD" + type: "xp" + xp: 100 + } + ] + shape: "hexagon" + tasks: [{ + id: "57FF8B037F50A9E6" + item: "croptopia:saucy_chips" + type: "item" + }] + x: -9.0d + y: -4.5d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "367A550658E6E1C2" + rewards: [ + { + exclude_from_claim_all: true + id: "5B73050156508D31" + table_id: 5709524483953410607L + type: "random" + } + { + id: "6AACBD24EB5D61FD" + type: "xp" + xp: 100 + } + ] + shape: "hexagon" + tasks: [{ + id: "3A9C49D2D825F8D9" + item: "croptopia_additions:hot_dog" + type: "item" + }] + x: -9.0d + y: -5.5d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "7014EDE04EF8EADA" + rewards: [ + { + exclude_from_claim_all: true + id: "12D1F7AA6CDBA24C" + table_id: 5709524483953410607L + type: "random" + } + { + id: "220BA3A2640D1B43" + type: "xp" + xp: 100 + } + ] + shape: "hexagon" + tasks: [{ + id: "1ED41BA767640F12" + item: "delightful:deluxe_cheeseburger" + type: "item" + }] + x: 1.0d + y: -5.5d + } + { + dependencies: ["1F1BBB29AF96E104"] + id: "400712BA9A880341" + rewards: [ + { + exclude_from_claim_all: true + id: "49D888EBB347F799" + table_id: 5709524483953410607L + type: "random" + } + { + id: "686D62379CFB4F9B" + type: "xp" + xp: 100 + } + ] + shape: "hexagon" + tasks: [{ + id: "51E95CB04869563C" + item: "croptopia:pizza" + type: "item" + }] + x: 1.0d + y: -4.5d + } + { + dependencies: ["1554EF2CF2D1A2E5"] + id: "1722155C8309861A" + rewards: [ + { + exclude_from_claim_all: true + id: "3F6A2672AC4E70F3" + table_id: 5709524483953410607L + type: "random" + } + { + id: "48C9F17076FF6301" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "2C45B2A71442B8E5" + item: "croptopia:apricot_jam" + type: "item" + }] + x: -8.0d + y: 0.0d + } + { + dependencies: ["1554EF2CF2D1A2E5"] + id: "22F6B4DCA1A31E40" + rewards: [ + { + exclude_from_claim_all: true + id: "5D94FFE61D40D349" + table_id: 5709524483953410607L + type: "random" + } + { + id: "01654D04F753B0BC" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "53A23BDCEE9C33CD" + item: "croptopia:blackberry_jam" + type: "item" + }] + x: -7.0d + y: 0.0d + } + { + dependencies: ["1554EF2CF2D1A2E5"] + id: "50ED0B239F9D2627" + rewards: [ + { + exclude_from_claim_all: true + id: "398958D01D0FD1DF" + table_id: 5709524483953410607L + type: "random" + } + { + id: "74F70122D28588A1" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "68A45EBEBC6B5CC6" + item: "croptopia:blueberry_jam" + type: "item" + }] + x: -6.0d + y: 0.0d + } + { + dependencies: ["1554EF2CF2D1A2E5"] + id: "10A5E685E8EBF815" + rewards: [ + { + exclude_from_claim_all: true + id: "4105AB00DE8CEF74" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2B13A89D9EA79626" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "47DCA00D036016C2" + item: "croptopia:cherry_jam" + type: "item" + }] + x: -5.0d + y: 0.0d + } + { + dependencies: ["1554EF2CF2D1A2E5"] + id: "3FD74C4BDDAA5499" + rewards: [ + { + exclude_from_claim_all: true + id: "0AA2D3F06BEB313A" + table_id: 5709524483953410607L + type: "random" + } + { + id: "69B4C396B692599F" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "55ACE1A186AFBD96" + item: "croptopia:elderberry_jam" + type: "item" + }] + x: -4.0d + y: 0.0d + } + { + dependencies: ["1554EF2CF2D1A2E5"] + id: "708D22D6C32F863E" + rewards: [ + { + exclude_from_claim_all: true + id: "4E481D4FC631E247" + table_id: 5709524483953410607L + type: "random" + } + { + id: "7FCE4949D1E26A49" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "17AAB13F98565876" + item: "croptopia:grape_jam" + type: "item" + }] + x: -3.0d + y: 0.0d + } + { + dependencies: ["1554EF2CF2D1A2E5"] + id: "505AF5AF62DDB97E" + rewards: [ + { + exclude_from_claim_all: true + id: "1CACC80EBB2FA62B" + table_id: 5709524483953410607L + type: "random" + } + { + id: "1DBC37B0ADEBFDDB" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "193456A3628ED53E" + item: "croptopia:peach_jam" + type: "item" + }] + x: -2.0d + y: 0.0d + } + { + dependencies: ["1554EF2CF2D1A2E5"] + id: "4CE6447CDF791B8B" + rewards: [ + { + exclude_from_claim_all: true + id: "5C213F991FAC22E2" + table_id: 5709524483953410607L + type: "random" + } + { + id: "14B1E4BDC232C0B8" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "1D019275F6084991" + item: "croptopia:raspberry_jam" + type: "item" + }] + x: -1.0d + y: 0.0d + } + { + dependencies: ["1554EF2CF2D1A2E5"] + id: "6552879197F40A2A" + rewards: [ + { + exclude_from_claim_all: true + id: "1BE6EB3566A04DC5" + table_id: 5709524483953410607L + type: "random" + } + { + id: "5C9CC23E97241094" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "07CAA491E66324C5" + item: "croptopia:strawberry_jam" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["27C2B59611A27ABE"] + id: "6DF3BF857AB480DE" + min_width: 300 + rewards: [ + { + exclude_from_claim_all: true + id: "182844F56A6A2C9C" + table_id: 5709524483953410607L + type: "random" + } + { + id: "65B176A33BA5A434" + type: "xp" + xp: 100 + } + ] + shape: "hexagon" + subtitle: "*Unlocked by completing the &b&n&oFurnace&r quest*" + tasks: [{ + id: "6D9847297C2473F1" + item: "croptopia:coffee" + type: "item" + }] + x: -9.0d + y: -1.0d + } + { + dependencies: ["60B1DC1E9796B14B"] + hide_dependent_lines: true + id: "2957A2B57023A964" + rewards: [ + { + id: "5EEA80D5D65BBA05" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7BF89692D9AB48FD" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "22578C2C674369BF" + item: "farmersdelight:cooking_pot" + type: "item" + }] + x: -13.0d + y: 2.0d + } + { + dependencies: ["60B1DC1E9796B14B"] + hide_dependent_lines: true + id: "6921E1336281DB5A" + rewards: [ + { + id: "274F4BB9AB360B4F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5DAF80DDBE74B78D" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "59D62FF4E05B5355" + item: "croptopia:knife" + type: "item" + }] + x: -13.0d + y: 4.0d + } + { + dependencies: ["60B1DC1E9796B14B"] + hide_dependent_lines: true + id: "66CEFD7FE7A4BB9D" + rewards: [ + { + id: "51D09CEC1B4812FA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "35FE7124E56D4666" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2886EB64960F7844" + item: "croptopia:frying_pan" + type: "item" + }] + x: -11.0d + y: 3.0d + } + { + dependencies: ["60B1DC1E9796B14B"] + hide_dependent_lines: true + id: "748E9D2C4F95E658" + rewards: [ + { + id: "7C7F1B08B876FAFB" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "70B81045A4F5E8BA" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7DB3B6F1AFFD63E7" + item: "croptopia:food_press" + type: "item" + }] + x: -12.0d + y: 3.0d + } + { + dependencies: ["60B1DC1E9796B14B"] + hide_dependent_lines: true + id: "72DDE74E0AC704E3" + rewards: [ + { + id: "03B25504436A49AD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3ED963443C419110" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0C23B9780A2052B5" + item: "croptopia:cooking_pot" + type: "item" + }] + x: -13.0d + y: 3.0d + } + { + dependencies: ["60B1DC1E9796B14B"] + hide_dependent_lines: true + id: "655AA7C830E7B215" + rewards: [ + { + id: "566455466530748C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6E5E634F79A48173" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "13C0BC1C66A6C9FA" + item: "farmersdelight:cutting_board" + type: "item" + }] + x: -11.0d + y: 2.0d + } + { + dependencies: ["60B1DC1E9796B14B"] + hide_dependent_lines: true + id: "3EB9C4A938D5FBE6" + rewards: [ + { + id: "209360C71000FCBD" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "14C609012B69C43A" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "421681DA3B369FF4" + item: "croptopia:mortar_and_pestle" + type: "item" + }] + x: -12.0d + y: 4.0d + } + { + dependencies: ["60B1DC1E9796B14B"] + hide_dependent_lines: true + id: "7AB41D266B1FBCBA" + rewards: [ + { + id: "7FC24932F518FFCC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0F1D064CFC40B957" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "60283F3F54ADD2AB" + item: { + Count: 1 + id: "wfc:waffle_iron" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -11.0d + y: 4.0d + } + { + dependencies: ["4D34B7FD0EEF2A9D"] + id: "4B2F23A5D6334291" + rewards: [ + { + exclude_from_claim_all: true + id: "0C1AB2630E743F08" + table_id: 5709524483953410607L + type: "random" + } + { + id: "3803E5540845F649" + type: "xp" + xp: 100 + } + ] + shape: "gear" + size: 1.3d + tasks: [{ + id: "00FAA7B57957F73D" + item: "wfc:waffle" + type: "item" + }] + title: "&eWafflemania!" + x: 3.5d + y: 2.0d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "5CD8BBBD257D6C25" + rewards: [ + { + exclude_from_claim_all: true + id: "160D9E2CBD9DA46E" + table_id: 5709524483953410607L + type: "random" + } + { + id: "1CA6ABCD0976AFB2" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "712F779D1481047D" + item: "wfc:chocolate_waffle" + type: "item" + }] + x: 4.0d + y: 0.0d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "76868E9B76A54C30" + rewards: [ + { + exclude_from_claim_all: true + id: "2B5DD3387B438B31" + table_id: 5709524483953410607L + type: "random" + } + { + id: "43D3F422292EFCA0" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "15DC65D874219118" + item: "wfc:banana_waffle" + type: "item" + }] + x: 5.0d + y: 0.5d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "715846000710407E" + rewards: [ + { + exclude_from_claim_all: true + id: "44AA0AB88A0D8BB5" + table_id: 5709524483953410607L + type: "random" + } + { + id: "0D3AB0C0F6EBA34D" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "2931AF1F91719CC3" + item: "wfc:salmon_waffle" + type: "item" + }] + x: 5.5d + y: 1.5d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "46468E8C92D33C69" + rewards: [ + { + exclude_from_claim_all: true + id: "7F1EA342C745A78A" + table_id: 5709524483953410607L + type: "random" + } + { + id: "6503A91F45044F9F" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "524AAE1FD5AE7364" + item: "wfc:jam_waffle" + type: "item" + }] + x: 5.5d + y: 2.5d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "72C57A218DF3AE44" + rewards: [ + { + exclude_from_claim_all: true + id: "06FE432C718D57C6" + table_id: 5709524483953410607L + type: "random" + } + { + id: "72A6033D663FCEB9" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "2B05BE0DF7AE3219" + item: "wfc:chocolate_chip_waffle" + type: "item" + }] + x: 5.0d + y: 3.5d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "53DAC1CE6E5C7D25" + rewards: [ + { + exclude_from_claim_all: true + id: "25137A3AA365ADB3" + table_id: 5709524483953410607L + type: "random" + } + { + id: "19E876D4B49C8259" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "06D19E044AE35D6B" + item: "wfc:waffle_with_ice_cream" + type: "item" + }] + x: 4.0d + y: 4.0d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "766DBFBEB8DF02E1" + rewards: [ + { + exclude_from_claim_all: true + id: "455E6678230CC9B4" + table_id: 5709524483953410607L + type: "random" + } + { + id: "7B7AE0F587A59596" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "4B4C4CAEAA5F0912" + item: "wfc:sweet_waffle" + type: "item" + }] + x: 3.0d + y: 4.0d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "45F9382059EC9604" + rewards: [ + { + exclude_from_claim_all: true + id: "42BD9DDE42AF2C16" + table_id: 5709524483953410607L + type: "random" + } + { + id: "64DC1CA1632B3150" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "5241D618076C0964" + item: "wfc:sweet_waffle_with_chocolate" + type: "item" + }] + x: 2.0d + y: 3.5d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "612B18917CE7C2B5" + rewards: [ + { + exclude_from_claim_all: true + id: "2EC7E83CDACC8147" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2397E9F2E0E71B35" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "583F84F71ACFE006" + item: "wfc:sweet_waffle_with_jam" + type: "item" + }] + x: 1.5d + y: 2.5d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "39C227B8EA9AFA71" + rewards: [ + { + exclude_from_claim_all: true + id: "57C531559164698D" + table_id: 5709524483953410607L + type: "random" + } + { + id: "2044F314B373D14F" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "3144BE72F370E210" + item: "wfc:the_ultimate_sweet_waffle" + type: "item" + }] + x: 1.5d + y: 1.5d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "65C06431044152D7" + rewards: [ + { + exclude_from_claim_all: true + id: "7F8572FA597475A7" + table_id: 5709524483953410607L + type: "random" + } + { + id: "269CCF2F8900B238" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "4C16AF4D44D4E508" + item: "wfc:waffle_with_ice_cream_and_syrup" + type: "item" + }] + x: 2.0d + y: 0.5d + } + { + dependencies: ["4B2F23A5D6334291"] + id: "084BBE08974C8F14" + rewards: [ + { + exclude_from_claim_all: true + id: "1DAECBCEB82DFA0F" + table_id: 5709524483953410607L + type: "random" + } + { + id: "4A680AF194A7BF1F" + type: "xp" + xp: 100 + } + ] + tasks: [{ + id: "1886B252AB013062" + item: "wfc:dutch_waffles" + type: "item" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["7886A7F2FFC72A07"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/ku.png" + } + } + id: "1AACEEA2A80195CC" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "3CC97E3E809D6389" + table_id: 5709524483953410607L + type: "random" + }] + shape: "gear" + subtitle: "*Unlocked by completing the &b&n&oCooking Table&r quest*" + tasks: [{ + id: "60B1DC1E9796B14B" + title: "Cooking Utensils" + type: "checkmark" + }] + title: "&fCooking Utensils" + x: -9.5d + y: 2.0d + } + { + dependencies: ["3378DBA1114E2954"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/se.png" + } + } + id: "7BDE5E314639F0CA" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "2E221C0994049911" + table_id: 5709524483953410607L + type: "random" + }] + shape: "gear" + subtitle: "*Unlocked by completing the &b&n&oIron Tools&r quest*" + tasks: [{ + id: "12638CDF16A10B50" + title: "Seeds" + type: "checkmark" + }] + title: "&fSeeds" + x: -9.5d + y: 4.0d + } + { + dependencies: ["60B1DC1E9796B14B"] + hide_dependent_lines: true + id: "1554EF2CF2D1A2E5" + rewards: [ + { + id: "00BAEF9C8343D1D2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4302479ACFE3FD21" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "23BD6FBC491C8709" + item: { + Count: 1 + id: "farmersdelight:skillet" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -12.0d + y: 2.0d + } + { + dependencies: [ + "2957A2B57023A964" + "655AA7C830E7B215" + "1554EF2CF2D1A2E5" + "72DDE74E0AC704E3" + "748E9D2C4F95E658" + "66CEFD7FE7A4BB9D" + "7AB41D266B1FBCBA" + "3EB9C4A938D5FBE6" + "6921E1336281DB5A" + ] + hide_dependent_lines: true + id: "1F1BBB29AF96E104" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "3DBD4A02149AC6BA" + table_id: 5709524483953410607L + type: "random" + }] + shape: "gear" + subtitle: "*Unlocked by crafting all 9 &b&n&oCooking Utensils&r*" + tasks: [{ + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/food.png" + } + } + id: "6A556AADBB9C908A" + title: "Let's Cook" + type: "checkmark" + }] + title: "&fLet's Cook" + x: -9.5d + y: 3.0d + } + { + dependencies: ["4097A648021E5698"] + id: "66C608CAA622E791" + rewards: [{ + exclude_from_claim_all: true + id: "116EBC352330E6BB" + table_id: 5709524483953410607L + type: "random" + }] + tasks: [{ + id: "73838144CC751846" + item: "farmersdelight:stove" + type: "item" + }] + x: -12.0d + y: -4.0d + } + ] + title: "&3&oFarmer's Delight \\& Croptopia" +} diff --git a/minecraft/config/ftbquests/quests/chapters/pneumaticcraft.snbt b/minecraft/config/ftbquests/quests/chapters/pneumaticcraft.snbt new file mode 100644 index 0000000..6cae761 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/pneumaticcraft.snbt @@ -0,0 +1,1836 @@ +{ + autofocus_id: "00000000000000C7" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "pneumaticcraft" + group: "69B9F7247002FE35" + icon: "pneumaticcraft:seismic_sensor" + id: "00000000000000AE" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -7.821428571428569d + y: -16.589285714285715d + } + { + height: 1.0d + image: "pneumaticcraft:textures/gui/gui_buildcraft_energy.png" + rotation: 0.0d + width: 1.0d + x: -12.0d + y: -6.5d + } + { + click: "https://www.youtube.com/watch?v=nhtfd7PjUhY" + height: 1.0d + hover: ["YouTube Tutorial"] + image: "pneumaticcraft:textures/gui/icon/gui_info.png" + rotation: 0.0d + width: 1.0d + x: 1.5d + y: -15.0d + } + { + height: 1.0d + image: "pneumaticcraft:textures/progwidgets/liquid_export_piece.png" + rotation: 45.0d + width: 1.0d + x: 1.5d + y: -11.0d + } + { + height: 1.0d + image: "pneumaticcraft:textures/progwidgets/place_piece.png" + rotation: 75.0d + width: 1.0d + x: -10.5d + y: -13.0d + } + { + height: 1.0d + image: "pneumaticcraft:textures/progwidgets/liquid_import_piece.png" + rotation: -40.0d + width: 1.0d + x: -6.0d + y: -8.0d + } + { + height: 1.0d + image: "pneumaticcraft:textures/progwidgets/dig_piece.png" + rotation: -55.0d + width: 1.0d + x: -6.0d + y: -13.0d + } + { + height: 1.0d + image: "pneumaticcraft:textures/progwidgets/item_drop_piece.png" + rotation: 0.0d + width: 1.0d + x: -12.5d + y: -10.5d + } + { + height: 1.0d + image: "pneumaticcraft:textures/progwidgets/harvest_piece.png" + rotation: 0.0d + width: 1.0d + x: 1.5d + y: -7.5d + } + { + height: 1.0d + image: "pneumaticcraft:item/manual" + rotation: 0.0d + width: 1.0d + x: -2.0d + y: -13.5d + } + ] + order_index: 10 + quest_links: [ ] + quests: [ + { + dependencies: ["566C0FA15F2021F1"] + description: [ + "&9PneumaticCraft: Repressurized&r is all about &o&blogistics&r, &o&bautomation&r, and generally blowing things up for profit." + "" + "Mastering pressurized air and heat will be the beginning of your journey. " + ] + icon: "pneumaticcraft:ingot_iron_compressed" + id: "00000000000000AF" + rewards: [ + { + id: "39DB23ACE2BADD84" + item: { + Count: 1 + id: "pneumaticcraft:pneumatic_wrench" + tag: { + "pneumaticcraft:air": 30000 + } + } + title: "Pneumatic Wrench" + type: "item" + } + { + exclude_from_claim_all: true + id: "3D37C2EC6129A4CA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSteel Ingot&r quest*" + tasks: [{ + id: "7B56DD5D9F4BBB68" + item: "pneumaticcraft:ingot_iron_compressed" + type: "item" + }] + title: "Welcome to &6PneumaticCraft: Repressurized" + x: -8.5d + y: -16.0d + } + { + dependencies: ["00000000000000AF"] + description: [ + "To begin your journey with &dPNC:R&r, you’ll need to obtain some &3Compressed Iron&r. The process for making this is quite dangerous without a pressure chamber. Be sure to stand well back!" + "" + "Once you’ve acquired the materials, build a &o&b3x3x3&r pressure chamber. The &dPNC:R&r Manual will show you how." + ] + icon: "pneumaticcraft:pressure_chamber_wall" + id: "275863C7F30DDE6B" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "14CDB5215E144E07" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [ + { + count: 23L + id: "177C63887758B9FC" + item: "pneumaticcraft:pressure_chamber_wall" + type: "item" + } + { + count: 2L + id: "5D4A5E01BB8D7C20" + item: "pneumaticcraft:pressure_chamber_interface" + type: "item" + } + { + id: "00BFA276E0ADED33" + item: "pneumaticcraft:pressure_chamber_valve" + type: "item" + } + ] + title: "Ethically Sourced" + x: -16.5d + y: -15.0d + } + { + description: [ + "While it won’t have you being visited by danger noodles from space or irradiating the countryside for the next millennium, Pressurized Air can be dangerous in its own right and going over pressure can cause that block to burst and be lost." + "" + "A simple redstone cut-off can be built for your new Air Compressor with a bit of Redstone and a Repeater." + ] + icon: "pneumaticcraft:air_compressor" + id: "00000000000000BD" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "34763D0A88F58E34" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "00000000000000BE" + item: "pneumaticcraft:pressure_gauge_module" + type: "item" + } + { + icon: "pneumaticcraft:air_compressor" + id: "3E372A3B58D22F78" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "pneumaticcraft:air_compressor" + } + { + Count: 1b + id: "pneumaticcraft:liquid_compressor" + } + ] + } + } + title: "Air Compressor" + type: "item" + } + { + count: 8L + id: "40F8E68728AD32B1" + item: "pneumaticcraft:pressure_tube" + type: "item" + } + ] + title: "Air Compressor" + x: -16.5d + y: -13.0d + } + { + description: ["Even the best laid plans can be brought to ruin by unexpected events. Install security upgrades in your compressor and pressure chamber to prevent rapid unscheduled disassembly."] + id: "00000000000000C3" + rewards: [{ + exclude_from_claim_all: true + id: "4CE2F3FC64D5C915" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 2L + id: "6887502C15B1268B" + item: "pneumaticcraft:security_upgrade" + type: "item" + }] + title: "Security Upgrades" + x: -17.5d + y: -12.5d + } + { + description: [ + "Solid fuels can be potent, but they lack finesse as they’ll continue to generate pressure until the entire piece of fuel has burned, even if the compressor is disabled by redstone." + "" + "Consider upgrading to a safer fuel source." + ] + icon: "pneumaticcraft:liquid_compressor" + id: "00000000000000C7" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "06C554DC895FAB42" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "07969B05E7B03A24" + item: "pneumaticcraft:pressure_gauge_module" + type: "item" + } + { + id: "707B2893DDB5687C" + item: "pneumaticcraft:liquid_compressor" + type: "item" + } + { + count: 8L + id: "0A35E0FC9BF0D4C2" + item: "pneumaticcraft:pressure_tube" + type: "item" + } + ] + x: -15.5d + y: -12.5d + } + { + dependencies: ["00000000000000EA"] + description: ["Despite its name, the Kerosene Lamp is capable of using all of the same fuels as the Liquid Compressor and can light an area up to 30 blocks in radius. Perfect for keeping the terrors at bay. Try using a few to safely light up your base."] + id: "13B6FCB345BFCD7F" + rewards: [ + { + id: "000000000000022D" + item: { + Count: 1 + id: "pneumaticcraft:medium_tank" + tag: { + BlockEntityTag: { + SavedTanks: { + Tank: { + Amount: 16000 + FluidName: "pneumaticcraft:kerosene" + } + } + } + } + } + title: "Medium Fluid Tank" + type: "item" + } + { + exclude_from_claim_all: true + id: "03F825E06B8E33AF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2919B2F0021DA6BE" + item: "pneumaticcraft:kerosene_lamp" + type: "item" + }] + x: -4.0d + y: -10.0d + } + { + dependencies: ["00000000000000AF"] + description: ["Where pressurized air is your primary power supply, heat is a secondary but just as vital mechanic. Advanced Compressors and other machines rely on either heating them up or cooling them down to run properly."] + icon: "minecraft:packed_ice" + id: "00000000000000CC" + rewards: [ + { + id: "00000000000000CE" + item: { + Count: 1 + id: "pneumaticcraft:camo_applicator" + tag: { + "pneumaticcraft:air": 30000 + } + } + title: "Camouflage Applicator" + type: "item" + } + { + exclude_from_claim_all: true + id: "432A237E5223626A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "00000000000000CD" + title: "-173 Fahrenheit or Celsius?" + type: "checkmark" + }] + title: "Subzero" + x: -12.5d + y: -13.5d + } + { + dependencies: ["00000000000000CC"] + description: [ + "Built on the principle of swirling high pressure air in a special chamber to create a temperature differential, the Vortex Tube allows you to finely control the amount of heating or cooling it does by controlling the pressure." + "" + "The Vortex Tube isn’t the only way to generate Heat, however. Looking up uses on Heat Pipes in JEI will bring up a variety of blocks and liquids that may be used for heating and cooling as well. " + "" + "Lastly, PneumaticCraft has built in support for Mekanism’s Heat system and compatibility with Integrated Dynamics. Some notable heat sources include:" + "" + "● External Heater" + "● Resistive Heater" + "● Fuelwood Heater" + ] + id: "00000000000000CF" + min_width: 300 + rewards: [ + { + count: 2 + id: "00000000000000D1" + item: "pneumaticcraft:heat_sink" + random_bonus: 1 + title: "Heat Sink" + type: "item" + } + { + exclude_from_claim_all: true + id: "53A469F75DC47C7F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "00000000000000D0" + item: "pneumaticcraft:vortex_tube" + type: "item" + }] + x: -13.5d + y: -11.5d + } + { + dependencies: ["00000000000000CF"] + description: ["&6Heat Pipe&r is useful for transmitting heat between blocks quickly and without loss to the environment. Use it to move heat from a Vortex Tube to one or more machines. Heat can also be used to directly power a Furnace."] + id: "00000000000000D2" + rewards: [{ + exclude_from_claim_all: true + id: "7B1516C4BD9A711B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 6L + id: "00000000000000D3" + item: "pneumaticcraft:heat_pipe" + type: "item" + }] + title: "Heat Pipe" + x: -13.5d + y: -9.5d + } + { + dependencies: ["00000000000000CF"] + description: [ + "You may have noted by now that the Vortex Tube uses a lot of air and does not respond to redstone. In order to turn it off, the air supply must be cut. A Regulator Tube Module allows you to do just that." + "" + "Place it in line in your Pressure Tube and apply a redstone signal to it. A signal of 15 will fully disable the flow of air, turning off any machines down the line." + ] + id: "00000000000000D5" + rewards: [{ + exclude_from_claim_all: true + id: "3167F6BB0DE889F8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "00000000000000D6" + item: "pneumaticcraft:regulator_tube_module" + type: "item" + }] + x: -14.5d + y: -10.5d + } + { + dependencies: ["00000000000000D2"] + description: [ + "The &6Heat Frame&r is placed on any inventory and allows the inventory to make use of heat or cold to perform crafting operations. When heated, it smelts items as a furnace would. When cooled, it can make a variety of useful items." + "" + "In order to cool liquids, fill a PneumaticCraft tank or a bucket and place it inside the inventory. The cooled items will appear in the chest as long as there's room." + ] + id: "00000000000000D9" + rewards: [{ + exclude_from_claim_all: true + id: "6D088D76F199F82F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "00000000000000DA" + item: "pneumaticcraft:heat_frame" + type: "item" + }] + x: -14.5d + y: -8.5d + } + { + dependencies: ["00000000000000D2"] + description: [ + "The &eUniversal Sensor&r is a powerful block that will output a redstone signal based on various conditions, such as detecting a nearby player, when a player right clicks a block, the presence of blocks, light level, or even the current heat of a block." + "" + "When reading heat, try aiming it at a heat pipe or a PNC:R machine, rather than at an inventory with a heat frame." + ] + id: "00000000000000DC" + rewards: [ + { + id: "00000000000000DE" + item: "pneumaticcraft:block_tracker_upgrade" + title: "Block Tracker Upgrade" + type: "item" + } + { + id: "00000000000000DF" + item: "pneumaticcraft:gps_tool" + title: "GPS Tool" + type: "item" + } + { + exclude_from_claim_all: true + id: "7083BB7D1D5E38F4" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "00000000000000DD" + item: "pneumaticcraft:universal_sensor" + type: "item" + }] + x: -13.5d + y: -7.5d + } + { + dependencies: ["00000000000000AF"] + description: ["Go scoop up a bucket of oil like some filthy mongrel. You’ll find it commonly above ground and it’s easily spotted by watching your minimap."] + id: "00000000000000E0" + rewards: [{ + exclude_from_claim_all: true + id: "13CFC0C2BD0D099D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "00000000000000E1" + item: "pneumaticcraft:oil_bucket" + type: "item" + }] + title: "Crude and Un-Cultured" + x: -4.0d + y: -13.5d + } + { + dependencies: ["00000000000000E0"] + description: [ + "The Gas Lift can be used to pump up fluids from the world. Place it above a source block of any fluid, insert drill pipes, and provide air. The pipes will extend down to a source and the lift will attempt to pull all nearby connected source blocks." + "" + "Sneak + Right click any PNC:R block with a Pneumatic Wrench to instantly pick it up while retaining the stored air and upgrades. This also works on Pressure Chamber Valves." + ] + icon: "pneumaticcraft:gas_lift" + id: "00000000000000E2" + rewards: [ + { + id: "00000000000000E5" + item: "pneumaticcraft:seismic_sensor" + title: "Seismic Sensor" + type: "item" + } + { + exclude_from_claim_all: true + id: "78813968A2F18A1B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "00000000000000E3" + item: "pneumaticcraft:gas_lift" + type: "item" + } + { + count: 12L + id: "00000000000000E4" + item: "pneumaticcraft:drill_pipe" + type: "item" + } + ] + x: -3.0d + y: -12.0d + } + { + dependencies: ["00000000000000E0"] + description: [ + "The &eRefinery&r is built by placing the &eController&r and stacking 2-4 outputs on top of it. Be sure to insulate all of the sides! Consider using a logistics network to extract the outputs for further processing. Supply heat and oil to begin the process. " + "" + "A Comparator reading from the Controller is an excellent way of controlling your Vortex Tube to prevent wasting fuel." + ] + icon: "pneumaticcraft:refinery_output" + id: "00000000000000E7" + rewards: [{ + exclude_from_claim_all: true + id: "784A8DFA0BD8D03C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "00000000000000E8" + item: "pneumaticcraft:refinery" + type: "item" + } + { + count: 4L + id: "00000000000000E9" + item: "pneumaticcraft:refinery_output" + type: "item" + } + ] + title: "Oil Refinery" + x: -4.0d + y: -12.0d + } + { + dependencies: ["00000000000000E7"] + description: [ + "TPP for short, this machine uses a combination of heat and pressure to transform solids and liquids. It has even found use in the kitchen in recent years. " + "" + "Placing the machines in a row allows them to share both heat and pressure through their sides. " + ] + id: "00000000000000EA" + rewards: [ + { + count: 4 + id: "00000000000000ED" + item: "pneumaticcraft:dispenser_upgrade" + title: "Dispenser Upgrade" + type: "item" + } + { + exclude_from_claim_all: true + id: "22F8FDB48295CFAA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "00000000000000EB" + item: "pneumaticcraft:thermopneumatic_processing_plant" + type: "item" + }] + title: "Thermopneumatic Processing" + x: -4.0d + y: -11.0d + } + { + dependencies: ["00000000000000F8"] + description: ["Extremely valuable for creating Speed Upgrades."] + id: "00000000000000EE" + rewards: [{ + exclude_from_claim_all: true + id: "6EF3C85FF22E7EF3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "00000000000000EF" + item: "pneumaticcraft:lubricant_bucket" + type: "item" + }] + title: "Lubricant" + x: -5.0d + y: -9.5d + } + { + dependencies: ["00000000000000EA"] + description: ["Need more? Consider converting some of your other fuels."] + id: "00000000000000F1" + rewards: [{ + exclude_from_claim_all: true + id: "578EED977C48D1FC" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "00000000000000F2" + item: "pneumaticcraft:lpg_bucket" + type: "item" + }] + title: "LPG" + x: -3.0d + y: -10.5d + } + { + dependencies: ["00000000000000F1"] + description: ["A drop in the sea to come."] + id: "00000000000000F4" + rewards: [{ + exclude_from_claim_all: true + id: "4791D76A4ED63F9D" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "00000000000000F5" + item: "pneumaticcraft:plastic_bucket" + type: "item" + }] + title: "Molten Plastic" + x: -3.0d + y: -9.5d + } + { + dependencies: ["00000000000000EA"] + description: ["It's a decent fuel... but perhaps a little transformation is in order."] + id: "00000000000000F8" + rewards: [{ + exclude_from_claim_all: true + id: "2C4A01F69524821F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "00000000000000F9" + item: "pneumaticcraft:diesel_bucket" + type: "item" + }] + title: "Diesel" + x: -5.0d + y: -10.5d + } + { + dependencies: [ + "00000000000000F4" + "00000000000000EE" + ] + description: ["The Fluid Mixer is primarily used as the final step in the Biodiesel processing chain. It also creates a very useful byproduct, Glycerol."] + id: "00000000000000FB" + rewards: [ + { + count: 8 + id: "0000000000000105" + item: "minecraft:red_mushroom" + random_bonus: 7 + title: "Red Mushroom" + type: "item" + } + { + count: 2 + id: "0000000000000106" + item: "minecraft:podzol" + random_bonus: 2 + title: "Podzol" + type: "item" + } + { + exclude_from_claim_all: true + id: "5B77CBDBAC1A628F" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "Mixin’ It Up" + tasks: [{ + id: "00000000000000FC" + item: "pneumaticcraft:fluid_mixer" + type: "item" + }] + x: -4.0d + y: -9.0d + } + { + dependencies: ["00000000000000FB"] + description: [ + "The first step to producing renewable plastic and lubricant, creating Yeast Culture with a TPP will require precise heat control." + "" + "Experiment with low power heat sources such as torches, varying levels of insulation, or even different biomes or dimensions to find a way to produce the culture reliably." + ] + icon: "minecraft:red_mushroom_block" + id: "00000000000000FD" + rewards: [{ + exclude_from_claim_all: true + id: "7030A825257F42A5" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "00000000000000FE" + item: "pneumaticcraft:yeast_culture_bucket" + type: "item" + }] + title: "Yeast Culture" + x: -4.0d + y: -7.5d + } + { + dependencies: ["00000000000000FD"] + description: ["Ethanol could be burned on its own, but it could be refined, which is definitely worth doing!"] + id: "0000000000000100" + rewards: [{ + exclude_from_claim_all: true + id: "7B0CC0D025BC87C3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0000000000000101" + item: "pneumaticcraft:ethanol_bucket" + type: "item" + }] + title: "Ethanol" + x: -5.0d + y: -6.5d + } + { + dependencies: ["00000000000000FD"] + description: ["Or any seed, for that matter."] + id: "0000000000000103" + rewards: [{ + exclude_from_claim_all: true + id: "22BE35A1B396E0A4" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Give Peas a Chance" + tasks: [{ + id: "0000000000000104" + item: "pneumaticcraft:vegetable_oil_bucket" + type: "item" + }] + title: "Vegetable Oil" + x: -3.0d + y: -6.5d + } + { + dependencies: [ + "0000000000000103" + "0000000000000100" + ] + description: ["A sustainable way forward."] + id: "0000000000000107" + rewards: [{ + exclude_from_claim_all: true + id: "76EDE0E188F7F66E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0000000000000108" + item: "pneumaticcraft:biodiesel_bucket" + type: "item" + }] + title: "Biodiesel" + x: -4.0d + y: -6.0d + } + { + dependencies: ["000000000000011D"] + description: [ + "&2Logistics Frames&r and Modules are the heart and soul of the logistics network. Frames can be installed on any inventory and configured with a Logistical Configurator." + "" + "For more complex setups, it may be necessary to ‘extend’ the machine by using other inventories. " + "" + "For example, you may use a requester frame on a furnace to pull items into it, then pull the result out with a hopper. A provider frame on the hopper can then send back into the network." + ] + id: "000000000000010B" + min_width: 300 + rewards: [ + { + count: 8 + id: "000000000000010D" + item: "pneumaticcraft:logistics_frame_requester" + title: "Logistic Requester Frame" + type: "item" + } + { + count: 8 + id: "000000000000010E" + item: "pneumaticcraft:logistics_frame_passive_provider" + title: "Logistic Passive Provider Frame" + type: "item" + } + { + count: 8 + id: "000000000000010F" + item: "pneumaticcraft:logistics_frame_storage" + title: "Logistic Storage Frame" + type: "item" + } + { + count: 8 + id: "00000000000006FF" + item: "pneumaticcraft:logistics_frame_active_provider" + title: "Logistic Active Provider Frame" + type: "item" + } + { + exclude_from_claim_all: true + id: "1065ED6349BD0599" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "000000000000010C" + item: "pneumaticcraft:logistics_module" + type: "item" + }] + title: "Logistics" + x: -8.5d + y: -12.0d + } + { + dependencies: ["000000000000010B"] + description: ["A blast resistant chest that retains its contents when broken."] + id: "0000000000000110" + rewards: [{ + exclude_from_claim_all: true + id: "6CB4AD500D846AA4" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0000000000000111" + item: "pneumaticcraft:reinforced_chest" + type: "item" + }] + x: -10.0d + y: -12.0d + } + { + dependencies: ["0000000000000110"] + description: ["An advanced version of the Reinforced Chest featuring a larger inventory, per slot item type and quantity filtering, ranged item collection, and the ability to push and pull items to and from nearby inventories."] + hide_until_deps_visible: true + id: "0000000000000114" + rewards: [ + { + id: "0000000000000118" + item: "pneumaticcraft:magnet_upgrade" + title: "Magnet Upgrade" + type: "item" + } + { + exclude_from_claim_all: true + id: "7E01CC20ADA148DA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0000000000000115" + item: "pneumaticcraft:smart_chest" + type: "item" + }] + x: -10.0d + y: -11.0d + } + { + dependencies: ["0000000000000110"] + description: ["Filterable and fast, PNC Hoppers can be oriented however you like and accept multiple useful upgrades. Check their GUI for more info."] + icon: "pneumaticcraft:omnidirectional_hopper" + id: "0000000000000119" + rewards: [{ + exclude_from_claim_all: true + id: "765AF8FD5D34BC55" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "000000000000011A" + item: "pneumaticcraft:omnidirectional_hopper" + type: "item" + } + { + id: "000000000000011B" + item: "pneumaticcraft:liquid_hopper" + type: "item" + } + ] + title: "Hoppers" + x: -11.0d + y: -11.0d + } + { + dependencies: ["00000000000000AF"] + description: [ + "The Logistics system for PNC:R is quite powerful, though it requires some fore-thought in implementation and has an upkeep cost in air for moving items and fluid around. " + "" + "When used over a pressure tube network, it allows for instantaneous movement of large amounts of items and fluids through the same line simultaneously." + ] + id: "000000000000011D" + rewards: [ + { + id: "000000000000011F" + item: { + Count: 1 + id: "pneumaticcraft:logistics_configurator" + tag: { + "pneumaticcraft:air": 30000 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "6A84375A0785660A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + icon: "pneumaticcraft:logistics_core" + id: "000000000000011E" + title: "The Logical Path Forward" + type: "checkmark" + }] + title: "The Logical Path Forward" + x: -8.5d + y: -13.5d + } + { + dependencies: ["000000000000010B"] + description: [ + "&eRedstone Modules&r are used to read and output redstone signals by transmitting them over a pipe network.This does not require air to use." + "" + "Install a Module Expansion Card into one to allow it to perform much more complicated operations, such as acting as a clock, a signal counter, or a toggle. " + ] + id: "0000000000000120" + rewards: [{ + exclude_from_claim_all: true + id: "0881B1E4CDD52AC4" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 2L + id: "0000000000000121" + item: "pneumaticcraft:redstone_module" + type: "item" + }] + title: "Redstone Modules" + x: -7.0d + y: -12.0d + } + { + dependencies: ["0000000000000120"] + description: [ + "&aModule Expansion Cards&r are inserted into various tube modules to enhance their capabilities. Regulator Tube Modules, Pressure Gauge Tube Modules, Redstone Modules,and Air Grate Modules all benefit greatly from it." + "" + "Consider upgrading the redstone control on your compressor using a combination of an advanced Pressure Gauge Module and some redstone modules." + ] + hide_until_deps_visible: true + id: "0000000000000123" + rewards: [{ + exclude_from_claim_all: true + id: "0A14B6C8A6E08E6D" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Raspberry Pi" + tasks: [{ + id: "0000000000000124" + item: "pneumaticcraft:module_expansion_card" + type: "item" + }] + x: -7.0d + y: -10.5d + } + { + dependencies: ["000000000000010B"] + description: ["&eLogistics Drones&r are handy little helpers in places where you don’t want to run a full air infrastructure. Experiment with some logistics frames and deploy a logistics drone to move the items for you."] + id: "0000000000000126" + rewards: [{ + exclude_from_claim_all: true + id: "518DE15B56E4D04F" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Flying Circus" + tasks: [{ + id: "0000000000000127" + item: "pneumaticcraft:logistics_drone" + type: "item" + }] + x: -8.5d + y: -10.5d + } + { + dependencies: ["0000000000000126"] + description: [ + "Craft and deploy a &9Harvest Drone&r to automate a crop farm or a tree farm. Use a Collector Drone to keep things tidy." + "" + "Refer to the PNC Manual or the item tooltips for instructions on how they work." + ] + id: "0000000000000129" + rewards: [ + { + id: "000000000000012B" + item: "pneumaticcraft:collector_drone" + title: "Collector Drone" + type: "item" + } + { + exclude_from_claim_all: true + id: "6024FB4EE57652FC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "000000000000012A" + item: "pneumaticcraft:harvesting_drone" + type: "item" + }] + x: -8.5d + y: -9.0d + } + { + dependencies: ["0000000000000129"] + description: [ + "The &2Charging Station&r is vital for keeping drones charged automatically. Place one down and insert a &dDispenser Upgrade&r into it to allow it to charge entities above it. Nearby drones will automatically seek out available charging stations when needed." + "" + "Standing on such a &2Charging Station&r will also charge items in your inventory." + ] + id: "000000000000012C" + min_width: 300 + rewards: [ + { + id: "000000000000012E" + item: "pneumaticcraft:dispenser_upgrade" + title: "Dispenser Upgrade" + type: "item" + } + { + count: 4 + id: "0000000000000700" + item: "pneumaticcraft:volume_upgrade" + title: "Volume Upgrade" + type: "item" + } + { + exclude_from_claim_all: true + id: "4EC7E25F9AEA0B57" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + size: 1.2d + tasks: [{ + id: "000000000000012D" + item: "pneumaticcraft:charging_station" + type: "item" + }] + x: -8.5d + y: -7.5d + } + { + dependencies: ["000000000000012C"] + description: ["Install one or more Item Life Upgrades in your drones to help them stay in working order. They can occasionally take damage from environmental hazards and these upgrades will cause them to self repair."] + id: "000000000000012F" + rewards: [ + { + id: "0C1D964A8495B2F5" + item: "pneumaticcraft:item_life_upgrade" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "35B7A1FC7B7E5ED2" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "In Her Time of Need" + tasks: [{ + id: "0000000000000130" + item: "pneumaticcraft:item_life_upgrade" + type: "item" + }] + x: -7.5d + y: -7.0d + } + { + dependencies: ["000000000000012C"] + description: ["Install a Standby Upgrade in a drone to conserve a little air."] + id: "0000000000000132" + rewards: [ + { + id: "1F96DAE6A7D78038" + item: "pneumaticcraft:standby_upgrade" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4E58CE0361E165A4" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0000000000000133" + item: "pneumaticcraft:standby_upgrade" + type: "item" + }] + x: -8.5d + y: -6.5d + } + { + dependencies: ["000000000000012C"] + description: ["Install some Inventory Upgrades in your Collector Drone."] + id: "0000000000000135" + rewards: [ + { + count: 4 + id: "0000000000000137" + item: "pneumaticcraft:inventory_upgrade" + random_bonus: 2 + title: "Inventory Upgrade" + type: "item" + } + { + exclude_from_claim_all: true + id: "336C1D7361C971DF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 4L + id: "0000000000000136" + item: "pneumaticcraft:inventory_upgrade" + type: "item" + }] + title: "Inventory Upgrade" + x: -7.5d + y: -8.0d + } + { + dependencies: ["000000000000012C"] + description: ["Install a few Range Upgrades in your Collector Drone."] + id: "0000000000000138" + rewards: [ + { + id: "000000000000013A" + item: "pneumaticcraft:range_upgrade" + random_bonus: 1 + title: "Range Upgrade" + type: "item" + } + { + exclude_from_claim_all: true + id: "26582E8B619D652B" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "He's Going the Distance" + tasks: [{ + id: "0000000000000139" + item: "pneumaticcraft:range_upgrade" + type: "item" + }] + x: -9.5d + y: -8.0d + } + { + dependencies: ["000000000000012C"] + description: ["Speed things up with a few of these in your Drones, or many other blocks."] + id: "000000000000013B" + rewards: [ + { + id: "000000000000013D" + item: "pneumaticcraft:speed_upgrade" + random_bonus: 1 + title: "Speed Upgrade" + type: "item" + } + { + exclude_from_claim_all: true + id: "5235E19F8B3B8971" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "000000000000013C" + item: "pneumaticcraft:speed_upgrade" + type: "item" + }] + x: -9.5d + y: -7.0d + } + { + dependencies: ["0000000000000129"] + description: [ + "&dProgrammable Drones&r are the pinnacle of PNC:R’s automation capabilities and the options are near limitless as they can interact with blocks and entities, wield weapons and tools, and perform their actions based on complex conditions." + "" + "Take a dive into this visual programming language and see what you can come up with! If you’re short of ideas, try some of these:" + "" + "" + "● Automate &o&3Botania’s Runic Altar&r" + "● Automate &o&dPNC:R’s Biodiesel&r" + ] + icon: "pneumaticcraft:programmer" + id: "000000000000013E" + min_width: 300 + rewards: [ + { + count: 64 + id: "0000000000000140" + item: "pneumaticcraft:programming_puzzle" + title: "Programming Puzzle Piece" + type: "item" + } + { + exclude_from_claim_all: true + id: "562410F2A7C082FB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "000000000000013F" + item: "pneumaticcraft:drone" + type: "item" + } + { + id: "0000000000000141" + item: "pneumaticcraft:programmer" + type: "item" + } + ] + title: "Programmable Drones" + x: -10.0d + y: -9.5d + } + { + dependencies: ["000000000000013E"] + description: ["&cRemotes&r are programmable interface devices that work by manipulating global variables. You can use these for remote redstone when combined with a Universal Sensor, or they can be used to control programmable drones."] + id: "0000000000000142" + rewards: [{ + exclude_from_claim_all: true + id: "27A0255E975FAEF4" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0000000000000143" + item: "pneumaticcraft:remote" + type: "item" + }] + x: -11.0d + y: -9.5d + } + { + dependencies: [ + "00000000000000F5" + "00000000000000AF" + ] + description: ["Cooling &ePlastic&r by &o&bdumping&r a bucket in the world will get you started, but surely there’s a better way?"] + id: "0000000000000145" + min_width: 220 + rewards: [ + { + count: 4 + id: "0000000000000147" + item: "mekanism:hdpe_sheet" + random_bonus: 2 + title: "Plastic Sheet" + type: "item" + } + { + exclude_from_claim_all: true + id: "5A4A54CA8832D616" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "07EA042ED9DF0F82" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:plastic)" + } + } + title: "Any #forge:plastic" + type: "item" + }] + title: "Plastic Sheets" + x: 0.0d + y: -15.0d + } + { + dependencies: ["0000000000000145"] + description: ["The pinnacle of stay-at-home shopping. Click a button and your order is there before you know it. "] + id: "0000000000000148" + rewards: [ + { + id: "705F9A21C798611B" + item: "minecraft:emerald_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "0DFF820A5C6B33A1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0000000000000149" + item: "pneumaticcraft:amadron_tablet" + type: "item" + }] + title: "Prime Delivery" + x: 0.0d + y: -13.0d + } + { + dependencies: ["0000000000000148"] + description: ["Always available from Amadron, any time, any day. But your local Pressure Mechanic commonly carries them as an initial trade as well…"] + id: "000000000000014B" + rewards: [{ + exclude_from_claim_all: true + id: "6B2AD2C52D82CA32" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "000000000000014C" + item: "pneumaticcraft:pcb_blueprint" + type: "item" + }] + x: 0.0d + y: -12.0d + } + { + dependencies: ["000000000000014B"] + description: [ + "Used to prepare Empty PCBs for etching. This can be a slow process without speed upgrades… Consider setting a threshold around 60-70% to have a decent chance of etching while waiting less. Automating this process is highly recommended." + "" + "Failed PCBs can be recycled." + ] + id: "000000000000014E" + rewards: [{ + exclude_from_claim_all: true + id: "096A9F819E55EE5C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "000000000000014F" + item: "pneumaticcraft:uv_light_box" + type: "item" + }] + x: 0.0d + y: -11.0d + } + { + dependencies: ["000000000000014E"] + description: [ + "The next step of creating Circuit Boards is to etch them in this tank, which can hold and simultaneously process as many as 25 Empty PCBs." + "" + "The acid is only consumed if heat is applied while etching a board." + "" + "Doing so significantly speeds up the etching process and a single bucket will last for many PCBs." + ] + icon: "pneumaticcraft:etching_tank" + id: "0000000000000151" + rewards: [{ + exclude_from_claim_all: true + id: "2BE83FDD9B40FFF6" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "0000000000000152" + item: "pneumaticcraft:etching_tank" + type: "item" + } + { + id: "0000000000000153" + item: "pneumaticcraft:etching_acid_bucket" + type: "item" + } + ] + title: "Etching Tank" + x: 0.0d + y: -10.0d + } + { + dependencies: ["0000000000000165"] + description: [ + "The &6Assembly Table&r provides a simpler way of making circuit boards and provides access to other advanced recipes." + "" + "Each piece has limitations on where it can be placed. Refer to the PNC:R manual for the exact placement rules." + "" + "A simple layout can be done in a 2x3 space, however:" + "" + "&eIO&r (&bimport&r), &2Controller&r, &eIO&r (&bexport&r), &dDrill&r, &9Table&r, &6Laser&r" + ] + hide_dependency_lines: true + hide_until_deps_visible: true + icon: "pneumaticcraft:assembly_controller" + id: "0000000000000155" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "1A14263FC5A5F291" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [ + { + id: "0000000000000157" + item: "pneumaticcraft:assembly_io_unit_import" + type: "item" + } + { + id: "0000000000000158" + item: "pneumaticcraft:assembly_controller" + type: "item" + } + { + id: "0000000000000159" + item: "pneumaticcraft:assembly_io_unit_export" + type: "item" + } + { + id: "2A24FDD4843601DB" + item: "pneumaticcraft:assembly_drill" + type: "item" + } + { + id: "000000000000015B" + item: "pneumaticcraft:assembly_platform" + type: "item" + } + { + id: "000000000000015C" + item: "pneumaticcraft:assembly_laser" + type: "item" + } + ] + title: "Assembly Table" + x: 0.0d + y: -6.75d + } + { + dependencies: ["0000000000000151"] + id: "000000000000015E" + rewards: [{ + exclude_from_claim_all: true + id: "37A7AECDA892B2E4" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5031D8849ED68F4C" + item: "pneumaticcraft:empty_pcb" + type: "item" + }] + x: -1.0d + y: -9.0d + } + { + dependencies: ["000000000000015E"] + id: "3B594AD0E41FE8C9" + rewards: [ + { + id: "0000000000000162" + item: "pneumaticcraft:transistor" + random_bonus: 1 + title: "Transistor" + type: "item" + } + { + exclude_from_claim_all: true + id: "5FAB5DB4557BA5D5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0000000000000161" + item: "pneumaticcraft:unassembled_pcb" + type: "item" + }] + x: 0.0d + y: -8.5d + } + { + dependencies: ["3B594AD0E41FE8C9"] + id: "0000000000000165" + rewards: [ + { + id: "32CA6EE82C68E686" + item: "pneumaticcraft:capacitor" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "3CB053E9F2F85C54" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0000000000000166" + item: "pneumaticcraft:printed_circuit_board" + type: "item" + }] + x: 1.0d + y: -9.0d + } + { + dependencies: ["0000000000000148"] + description: [ + "Insert it into the Assembly Controller and provide air to get it started. Speed upgrades are highly recommended." + "" + "The Drill \\& Laser program allows the Assembly Table to craft recipes that require only a drill or laser. In most cases there’s no reason to use the individual programs." + ] + hide_until_deps_visible: true + id: "0000000000000168" + rewards: [{ + exclude_from_claim_all: true + id: "6A94E615681030FD" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0000000000000169" + item: "pneumaticcraft:assembly_program_drill_laser" + type: "item" + }] + title: "Assembly Program" + x: 1.5d + y: -13.0d + } + { + dependencies: ["0000000000000110"] + description: [ + "Portable Fluid Storage. Also capable of filling buckets and other tanks for automation purposes." + "" + "Stack them vertically and right click with a Pneumatic Wrench to form a multiblock tank." + ] + id: "000000000000016B" + rewards: [ + { + id: "000000000000016D" + item: "pneumaticcraft:medium_tank" + title: "Medium Fluid Tank" + type: "item" + } + { + exclude_from_claim_all: true + id: "3080393520BA4FA6" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 2L + id: "000000000000016C" + item: "pneumaticcraft:small_tank" + type: "item" + }] + title: "Fluid Tanks" + x: -11.0d + y: -12.0d + } + { + dependencies: ["00000000000000C7"] + description: [ + "With advanced machining methods, stronger pressure tubes may be made and higher pressure attained." + "" + "&5Advanced Compressors&r must be kept cool, and therefore are not always the best option for a given task." + "" + "Some machines will only begin to work, however, at the pressures made by an advanced compressor." + ] + hide_until_deps_visible: true + id: "0000000000000415" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "278503BCB3C267E8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0000000000000416" + item: "pneumaticcraft:advanced_liquid_compressor" + type: "item" + }] + x: -14.5d + y: -13.5d + } + { + dependencies: [ + "00000000000000BD" + "00000000000000C7" + "00000000000000C3" + ] + dependency_requirement: "one_completed" + description: [ + "Keeping things under pressure is only one side of the coin. Creating a vacuum can be very beneficial as well." + "" + "A &ePressure Chamber&r in Vacuum can be used to extract enchants from items." + ] + id: "0000000000000417" + rewards: [ + { + id: "5DB0CD41D591D6D7" + item: "pneumaticcraft:memory_stick" + title: "Memory Stick" + type: "item" + } + { + exclude_from_claim_all: true + id: "239A18324E949609" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "21143E58D15BD52D" + item: "pneumaticcraft:vacuum_pump" + type: "item" + }] + x: -16.5d + y: -11.5d + } + { + dependencies: ["0000000000000417"] + description: [ + "Recent advancements in Pneumatic technology now allow for the forced removal of the magical core of Spawners found throughout the world. Once extracted, they can be empowered to run more quickly by inserting them in a modified spawner and spinning them up with air." + "" + "To begin, prepare the area around a spawner for a fight. Disabling it with Torches or by Hacking it are recommended." + "" + "Place the &eSpawner Extractor&r on top of the spawner, connect a &eVacuum Pump&r to the Extractor, and begin pumping the air out. As the Extractor reaches the requisite negative pressure, things will begin happening." + "" + "The Extractor only works while the player is nearby, so stay close." + "" + "As it works, mobs will be forcibly spawned in the area." + "" + "The Extractor will slow down as more mobs accumulate in the area. Kill them quickly." + "" + "Be prepared for large waves of mobs. Things can get hectic." + "" + "When the process has finished, sneak + right-click the Extractor with a &ePneumatic Wrench&r to avoid the need to charge from scratch the next time. An extractor with some volume upgrades should be able to extract cores from several spawners before needing to be re-charged. " + ] + id: "4B5AB08C3B301C77" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "0243FAE3EFDA8747" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Helter Skelter" + tasks: [{ + id: "1E88BA8D1F832AB0" + item: "pneumaticcraft:spawner_extractor" + type: "item" + }] + x: -16.5d + y: -10.0d + } + { + description: [ + "Your gateway to custom spawning." + "" + "Not every mob is readily available from natural spawners. Thankfully, there is a way of recreating the magic of the Spawner Core: &eThe Vacuum Trap&r." + "" + "The process begins similarly to the &eSpawner Extractor&r, hook the &eVacuum Trap&r up to a &eVacuum Pump&r and pull out all of the air. Volume upgrades are recommended and a Spawner Core is required. Sneak + Right Click the charged Trap with a &ePneumatic Wrench&r to pick it up. Now place it down near most any mob and Sneak + Right Click it with an empty hand to open it. Nearby mobs will be sucked in and be added to the Core." + "" + "Multiple mob types can be stored in a Core, making mixed spawners possible. " + "" + "A &eSpawner Core&r with only one mob in it is still valid for use in a &ePressurized Spawner&r; very useful for hard to capture or rare mobs." + "" + "The Trap works more efficiently if it has &eMemory Essence&r in the internal tank, meaning it takes fewer mobs to completely fill it. " + "" + "Random mobs may be released from a core by Sneak + Right Clicking it on the ground, allowing easier transportation of mobs even before the Pressurized Spawner is available. " + ] + icon: "pneumaticcraft:vacuum_trap" + id: "054880171AA4E59A" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "40FC8DE18A387149" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "4433752A8B6A6BB6" + item: "pneumaticcraft:vacuum_trap" + type: "item" + } + { + id: "15CBDBCAC83D93B5" + item: "pneumaticcraft:spawner_core" + type: "item" + } + ] + x: -16.5d + y: -7.0d + } + { + description: [ + "Once the Extraction process has finished, be sure to break the empty spawner (any pick will do) and take it with you. It's required for crafting a &ePressurized Spawner&r." + "" + "Consider keeping a spare empty spawner at your base. The Spawner Extractor can be placed atop it to simplify recharging it for future projects." + ] + id: "6C0DE0F020ECD0ED" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "1858D7B64CDFDEB0" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "Spinning in Their Graves" + tasks: [{ + id: "29DB946F03ACE003" + item: "pneumaticcraft:pressurized_spawner" + type: "item" + }] + x: -16.5d + y: -8.5d + } + { + dependencies: ["00000000000000D2"] + description: ["&3Thermal Laggings&r are insulating covers for machines to help with keeping heat. They greatly reduce heat loss, and you can interact with machines through them!"] + id: "11D71F1F1AB7FBE2" + min_width: 225 + rewards: [{ + exclude_from_claim_all: true + id: "42214C9CDEFFCA58" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 6L + id: "135A07E2CE99ACF8" + item: "pneumaticcraft:thermal_lagging" + type: "item" + }] + title: "Thermal Lagging" + x: -12.5d + y: -8.5d + } + ] + title: "&3&oPNC: Repressurized" +} diff --git a/minecraft/config/ftbquests/quests/chapters/powah.snbt b/minecraft/config/ftbquests/quests/chapters/powah.snbt new file mode 100644 index 0000000..ee774bb --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/powah.snbt @@ -0,0 +1,955 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "powah" + group: "" + id: "69345F42CA6853CC" + order_index: 3 + quest_links: [ ] + quests: [ + { + id: "7F5AE12CD901ABC4" + tasks: [{ + id: "0A6E7CB92D668E83" + item: "powah:dielectric_paste" + type: "item" + }] + x: -0.5d + y: -5.5d + } + { + dependencies: ["7F5AE12CD901ABC4"] + id: "0C83CF01B3223A5B" + tasks: [{ + id: "200F5568B81D17CA" + item: "powah:dielectric_rod" + type: "item" + }] + x: 2.0d + y: -5.5d + } + { + dependencies: ["7F5AE12CD901ABC4"] + id: "4C1DDC9F72C1ED3B" + tasks: [{ + id: "13FE99C23F2F4CEB" + item: "powah:dielectric_rod_horizontal" + type: "item" + }] + x: -0.5d + y: -2.5d + } + { + dependencies: [ + "0C83CF01B3223A5B" + "4C1DDC9F72C1ED3B" + ] + id: "3AAEC9CA378C88B8" + tasks: [{ + id: "007F464C55C2A071" + item: "powah:dielectric_casing" + type: "item" + }] + x: 2.0d + y: -2.5d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "42038F5E70B3BBD9" + tasks: [{ + id: "6ECC75100B3E2364" + item: "powah:furnator_starter" + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "5D4D13178E821EFB" + tasks: [{ + id: "09722331892314E6" + item: "powah:magmator_starter" + type: "item" + }] + x: -1.0d + y: -1.0d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "0F4B2488F9533DD1" + tasks: [{ + id: "29117F674C0E8198" + item: "powah:energy_cable_starter" + type: "item" + }] + x: -2.0d + y: -1.0d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "4EFE73E4392A1F72" + tasks: [{ + id: "6E772BA4682AF53C" + item: "powah:reactor_starter" + type: "item" + }] + x: 7.0d + y: -1.0d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "1D7F6D95D930A403" + tasks: [{ + id: "3767661709D9229C" + item: "powah:energy_cell_starter" + type: "item" + }] + x: 4.0d + y: -1.0d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "63116B1352F502D2" + tasks: [{ + id: "66B0B2A5919F5A57" + item: "powah:ender_cell_starter" + type: "item" + }] + x: 5.0d + y: -1.0d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + id: "73BD0D376C52DEEB" + tasks: [{ + id: "4BB64C19E617BC1A" + item: "powah:ender_cell_basic" + type: "item" + }] + x: 5.0d + y: 0.5d + } + { + dependencies: ["34439F68DCFF435E"] + id: "41710F18CF8A9FB3" + tasks: [{ + id: "44D936C51A074F06" + item: "powah:ender_cell_hardened" + type: "item" + }] + x: 5.0d + y: 2.0d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "38DEB74DB06D7FE2" + tasks: [{ + id: "0D5F74756AC7F22C" + item: "powah:ender_cell_blazing" + type: "item" + }] + x: 5.0d + y: 3.5d + } + { + id: "24D35660A2B52E0B" + tasks: [{ + id: "3E82C67A3672B0AE" + item: "powah:ender_cell_niotic" + type: "item" + }] + x: 5.0d + y: 5.0d + } + { + id: "2E6FBABCFA62C469" + tasks: [{ + id: "7FF832345E8B8C25" + item: "powah:ender_cell_spirited" + type: "item" + }] + x: 5.0d + y: 6.5d + } + { + id: "218D8853458BFB44" + tasks: [{ + id: "0542FCF4A1283A2F" + item: "powah:ender_cell_nitro" + type: "item" + }] + x: 5.0d + y: 8.0d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + id: "75C712BBFD28C9BF" + tasks: [{ + id: "712F6A00DBF8367D" + item: "powah:energy_cell_basic" + type: "item" + }] + x: 4.0d + y: 0.5d + } + { + dependencies: ["34439F68DCFF435E"] + id: "374E8A8FB19582ED" + tasks: [{ + id: "7B04FF65653F969C" + item: "powah:energy_cell_hardened" + type: "item" + }] + x: 4.0d + y: 2.0d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "4C16FACFD3DAFF9E" + tasks: [{ + id: "23A69C85C62A08E6" + item: "powah:energy_cell_blazing" + type: "item" + }] + x: 4.0d + y: 3.5d + } + { + id: "710286B2693F8A63" + tasks: [{ + id: "5725EEB8448E1D59" + item: "powah:energy_cell_niotic" + type: "item" + }] + x: 4.0d + y: 5.0d + } + { + id: "3892B3D7C68B2875" + tasks: [{ + id: "1439D54D35E22C4A" + item: "powah:energy_cell_spirited" + type: "item" + }] + x: 4.0d + y: 6.5d + } + { + id: "5B0A65D606EBD56D" + tasks: [{ + id: "337C4141E2F5D262" + item: "powah:energy_cell_nitro" + type: "item" + }] + x: 4.0d + y: 8.0d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "518F109E36AFA752" + tasks: [{ + id: "737073AE198DD106" + item: "powah:thermo_generator_starter" + type: "item" + }] + x: 1.0d + y: -1.0d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + id: "0F579AF94559DD87" + tasks: [{ + id: "7D74A7D2ED144964" + item: "powah:thermo_generator_basic" + type: "item" + }] + x: 1.0d + y: 0.5d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "1FF1381D6758BED8" + tasks: [{ + id: "451EC7656C89F4C9" + item: "powah:energizing_rod_starter" + type: "item" + }] + x: -3.0d + y: -1.0d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + id: "016443E5DAE01C47" + tasks: [{ + id: "1865FBD2CA55C14C" + item: "powah:energizing_rod_basic" + type: "item" + }] + x: -3.0d + y: 0.5d + } + { + dependencies: ["34439F68DCFF435E"] + id: "5A6422415C9309C2" + tasks: [{ + id: "13912C8580B43C19" + item: "powah:energizing_rod_hardened" + type: "item" + }] + x: -3.0d + y: 2.0d + } + { + id: "0A61021C8BDAB3BA" + tasks: [{ + id: "653B4D20BF02B7A6" + item: "powah:energizing_orb" + type: "item" + }] + x: 4.0d + y: -2.5d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "16352FAD502B3563" + tasks: [{ + id: "73806447E271D91F" + item: "powah:energizing_rod_blazing" + type: "item" + }] + x: -3.0d + y: 3.5d + } + { + id: "7B6A4D8A306C50B6" + tasks: [{ + id: "147C8F8DAF57C615" + item: "powah:energizing_rod_niotic" + type: "item" + }] + x: -3.0d + y: 5.0d + } + { + id: "2CE5D0CECBB18548" + tasks: [{ + id: "740307E0BA72D8A6" + item: "powah:energizing_rod_spirited" + type: "item" + }] + x: -3.0d + y: 6.5d + } + { + id: "5B89576402078D36" + tasks: [{ + id: "583EAEC18ADB6CA0" + item: "powah:energizing_rod_nitro" + type: "item" + }] + x: -3.0d + y: 8.0d + } + { + dependencies: ["34439F68DCFF435E"] + id: "76ED6FB4C54B755E" + tasks: [{ + id: "2DB0A51168926677" + item: "powah:thermo_generator_hardened" + type: "item" + }] + x: 1.0d + y: 2.0d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "5D082CD5556BB01A" + tasks: [{ + id: "13228E7B407C63C8" + item: "powah:thermo_generator_blazing" + type: "item" + }] + x: 1.0d + y: 3.5d + } + { + id: "0DC754666F9B4FD0" + tasks: [{ + id: "4380B7980DBEBA9B" + item: "powah:thermo_generator_niotic" + type: "item" + }] + x: 1.0d + y: 5.0d + } + { + id: "133A12D0F0760A1A" + tasks: [{ + id: "454368DF4D3DD850" + item: "powah:thermo_generator_spirited" + type: "item" + }] + x: 1.0d + y: 6.5d + } + { + id: "0218FA373EABFE5A" + tasks: [{ + id: "7F239263908E307B" + item: "powah:thermo_generator_nitro" + type: "item" + }] + x: 1.0d + y: 8.0d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "6E39CC6419312AB3" + tasks: [{ + id: "29170225308FBCC3" + item: "powah:solar_panel_starter" + type: "item" + }] + x: 3.0d + y: -1.0d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + id: "4862F0C4254A1CAC" + tasks: [{ + id: "67A50A8A5FBD9F8F" + item: "powah:solar_panel_basic" + type: "item" + }] + x: 3.0d + y: 0.5d + } + { + dependencies: ["34439F68DCFF435E"] + id: "157583BEC77D7B5B" + tasks: [{ + id: "7C468D3219470C9C" + item: "powah:solar_panel_hardened" + type: "item" + }] + x: 3.0d + y: 2.0d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "4004038BB347C695" + tasks: [{ + id: "3BF4CBAB847D7E3B" + item: "powah:solar_panel_blazing" + type: "item" + }] + x: 3.0d + y: 3.5d + } + { + id: "2D1355E5865A7C90" + tasks: [{ + id: "03C810855C82D944" + item: "powah:solar_panel_niotic" + type: "item" + }] + x: 3.0d + y: 5.0d + } + { + id: "1B060B01C50A8A36" + tasks: [{ + id: "635650A9330127A3" + item: "powah:solar_panel_spirited" + type: "item" + }] + x: 3.0d + y: 6.5d + } + { + id: "41D077B2B01F9B2A" + tasks: [{ + id: "011BA35DBB056D50" + item: "powah:solar_panel_nitro" + type: "item" + }] + x: 3.0d + y: 8.0d + } + { + dependencies: ["3AAEC9CA378C88B8"] + id: "5C65E8FFCB325A64" + tasks: [{ + id: "3276F17897B5FD30" + item: "powah:capacitor_basic_tiny" + type: "item" + }] + x: 2.0d + y: -1.0d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "68DDA2B4EF7D7CA1" + tasks: [{ + id: "057C7D992D0A0B32" + item: "powah:capacitor_basic" + type: "item" + }] + x: 2.0d + y: 0.5d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + id: "34439F68DCFF435E" + tasks: [{ + id: "7B16C321C7E83EEC" + item: "powah:capacitor_hardened" + type: "item" + }] + x: 2.0d + y: 2.0d + } + { + dependencies: ["34439F68DCFF435E"] + icon: "mysticalagriculture:blazing_crystal_essence" + id: "07BF77ADC086EF93" + subtitle: "put a blaze rod in the orb" + tasks: [{ + id: "1DC1152368FBC6CE" + item: "powah:capacitor_blazing" + type: "item" + }] + x: 2.0d + y: 3.5d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "5BDD7E860C561718" + subtitle: "put a diamond in the orb" + tasks: [{ + id: "5A93D97B34CE4E02" + item: "powah:crystal_niotic" + type: "item" + }] + x: 2.0d + y: 5.0d + } + { + icon: "powah:crystal_spirited" + id: "4E174EEA1D4893BC" + subtitle: "put an emerald in the orb" + tasks: [ + { + id: "0069B2EB84C8483C" + item: "powah:crystal_spirited" + type: "item" + } + { + id: "03125D8F98C714B2" + item: "powah:capacitor_spirited" + type: "item" + } + { + id: "3F2ED3F1F5DF5277" + item: "minecraft:emerald" + type: "item" + } + ] + x: 2.0d + y: 6.5d + } + { + description: ["yeah this one is a bit too expensive to put in the subtitle. need a nether star tho"] + id: "41C76D98AA47DBD7" + subtitle: "check JEI?" + tasks: [{ + id: "2191F1CE84B5F4E2" + item: "powah:crystal_nitro" + type: "item" + }] + x: 2.0d + y: 8.0d + } + { + description: ["grow a nitro crystal. still need the nether star tho"] + id: "4B78259628192519" + tasks: [{ + id: "6D776F2F22CB34F3" + item: "mysticalagriculture:nitro_crystal_seeds" + type: "item" + }] + x: 2.0d + y: 9.5d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + id: "63C49A8EAFECA71C" + tasks: [{ + id: "52E42A98F992000F" + item: "powah:furnator_basic" + type: "item" + }] + x: 0.0d + y: 0.5d + } + { + dependencies: ["34439F68DCFF435E"] + id: "2E94939BBA59EC1A" + tasks: [{ + id: "59A05A0161642C59" + item: "powah:furnator_hardened" + type: "item" + }] + x: 0.0d + y: 2.0d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "5A5F996EBA8BF584" + tasks: [{ + id: "189FBCA94CB99F6A" + item: "powah:furnator_blazing" + type: "item" + }] + x: 0.0d + y: 3.5d + } + { + id: "4B75DDE09C7A5FB4" + tasks: [{ + id: "746D737422F56616" + item: "powah:furnator_niotic" + type: "item" + }] + x: 0.0d + y: 5.0d + } + { + id: "4E7EE3E44DC3B309" + tasks: [{ + id: "1C8E1039453ACF8F" + item: "powah:furnator_spirited" + type: "item" + }] + x: 0.0d + y: 6.5d + } + { + id: "1D3687DE75834E7E" + tasks: [{ + id: "546FC6E8F7DD239E" + item: "powah:furnator_nitro" + type: "item" + }] + x: 0.0d + y: 8.0d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + hide_dependent_lines: true + id: "271A4CFD96455F44" + tasks: [{ + id: "3E3EC1D39F5829B1" + item: "powah:magmator_basic" + type: "item" + }] + x: -1.0d + y: 0.5d + } + { + dependencies: ["34439F68DCFF435E"] + id: "758E13DF07B9B57D" + tasks: [{ + id: "78C741409E349146" + item: "powah:magmator_hardened" + type: "item" + }] + x: -1.0d + y: 2.0d + } + { + id: "69D3CD19B384502D" + tasks: [{ + id: "260228271DEE31B9" + item: "powah:magmator_niotic" + type: "item" + }] + x: -1.0d + y: 5.0d + } + { + id: "37B924A35D647332" + tasks: [{ + id: "18D923388DC2A7F9" + item: "powah:magmator_spirited" + type: "item" + }] + x: -1.0d + y: 6.5d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "1C08668F49462B1B" + tasks: [{ + id: "5DBFA8FD36AD898C" + item: "powah:magmator_blazing" + type: "item" + }] + x: -1.0d + y: 3.5d + } + { + id: "76288DBAE9901810" + tasks: [{ + id: "4C1FF4B13C571FAE" + item: "powah:furnator_nitro" + type: "item" + }] + x: -1.0d + y: 8.0d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + id: "08AC5E8957257718" + tasks: [{ + id: "2FCCED397990F801" + item: "powah:energy_cable_basic" + type: "item" + }] + x: -2.0d + y: 0.5d + } + { + dependencies: ["34439F68DCFF435E"] + id: "3D5B101D3ABB3F1A" + tasks: [{ + id: "158BFFED318DE51D" + item: "powah:energy_cable_hardened" + type: "item" + }] + x: -2.0d + y: 2.0d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "1ECF8EB8B9CE3C63" + tasks: [{ + id: "72A62E0800F77FD6" + item: "powah:energy_cable_blazing" + type: "item" + }] + x: -2.0d + y: 3.5d + } + { + id: "4783F87FB3823E24" + tasks: [{ + id: "3A183F8FE5D90CC0" + item: "powah:energy_cable_niotic" + type: "item" + }] + x: -2.0d + y: 5.0d + } + { + id: "1B4A3E2E5A7D2B86" + tasks: [{ + id: "016F55BE793EFA20" + item: "powah:energy_cable_spirited" + type: "item" + }] + x: -2.0d + y: 6.5d + } + { + id: "210A0059B5145B55" + tasks: [{ + id: "6832DBB83FAB2FFC" + item: "powah:energy_cable_nitro" + type: "item" + }] + x: -2.0d + y: 8.0d + } + { + dependencies: [ + "68DDA2B4EF7D7CA1" + "4EFE73E4392A1F72" + ] + id: "1DC550F8D2BBC9E9" + tasks: [{ + id: "1A189A0046AE80D3" + item: "powah:reactor_basic" + type: "item" + }] + x: 7.0d + y: 0.5d + } + { + dependencies: [ + "1DC550F8D2BBC9E9" + "34439F68DCFF435E" + ] + id: "00848C0A2526FFBB" + tasks: [{ + id: "7CAA5A78FA03A932" + item: "powah:reactor_hardened" + type: "item" + }] + x: 7.0d + y: 2.0d + } + { + dependencies: [ + "07BF77ADC086EF93" + "00848C0A2526FFBB" + ] + id: "78DD611140A7553C" + tasks: [{ + id: "7BADAFF74F63CEEC" + item: "powah:reactor_blazing" + type: "item" + }] + x: 7.0d + y: 3.5d + } + { + dependencies: [ + "78DD611140A7553C" + "5BDD7E860C561718" + ] + id: "720C29CCE8B4E7D7" + tasks: [{ + id: "379FD53534DE4E3F" + item: "powah:reactor_niotic" + type: "item" + }] + x: 7.0d + y: 5.0d + } + { + dependencies: [ + "720C29CCE8B4E7D7" + "4E174EEA1D4893BC" + ] + id: "6C5C3518C31815D0" + tasks: [{ + id: "233614DAEAAC533F" + item: "powah:reactor_spirited" + type: "item" + }] + x: 7.0d + y: 6.5d + } + { + dependencies: [ + "6C5C3518C31815D0" + "41C76D98AA47DBD7" + ] + id: "034C8E123AE61A28" + tasks: [{ + id: "555CB6DDE88F5BBE" + item: "powah:reactor_nitro" + type: "item" + }] + x: 7.0d + y: 8.0d + } + { + dependencies: ["5C65E8FFCB325A64"] + id: "6D5EF6800315ADA1" + tasks: [{ + id: "7525F12202DE1952" + item: "powah:ender_gate_starter" + type: "item" + }] + x: 6.0d + y: -1.0d + } + { + dependencies: ["68DDA2B4EF7D7CA1"] + id: "59DCC0C69069C96A" + tasks: [{ + id: "034035524E7AC84E" + item: "powah:ender_gate_basic" + type: "item" + }] + x: 6.0d + y: 0.5d + } + { + dependencies: ["34439F68DCFF435E"] + id: "760132C1591AB49E" + tasks: [{ + id: "7459BB3BA2566D0E" + item: "powah:ender_gate_hardened" + type: "item" + }] + x: 6.0d + y: 2.0d + } + { + id: "022101FC19BDA3D6" + tasks: [{ + id: "76BC761A6DEBC5EE" + item: "powah:energy_hopper_starter" + type: "item" + }] + x: 3.0d + y: -4.5d + } + { + id: "56914C7926495B32" + tasks: [{ + id: "010DC7FFAA981C6E" + item: "powah:energy_discharger_starter" + type: "item" + }] + x: 3.5d + y: -3.5d + } + { + dependencies: ["07BF77ADC086EF93"] + id: "165B9B2BEB29C8F5" + tasks: [{ + id: "604791FEA58C3357" + item: "powah:ender_gate_blazing" + type: "item" + }] + x: 6.0d + y: 3.5d + } + { + id: "6423493E23CD7E68" + tasks: [{ + id: "518D86C47E033DC1" + item: "powah:ender_gate_niotic" + type: "item" + }] + x: 6.0d + y: 5.0d + } + { + id: "18B060349B98A5B8" + tasks: [{ + id: "3D13C6E5A3AE55C6" + item: "powah:ender_gate_spirited" + type: "item" + }] + x: 6.0d + y: 6.5d + } + { + id: "64D8A6648CA0316E" + tasks: [{ + id: "4A8627EEA4723B39" + item: "powah:ender_gate_nitro" + type: "item" + }] + x: 6.0d + y: 8.0d + } + ] + title: "Powah" +} diff --git a/minecraft/config/ftbquests/quests/chapters/random_but_useful_stuff2.snbt b/minecraft/config/ftbquests/quests/chapters/random_but_useful_stuff2.snbt new file mode 100644 index 0000000..2a63e80 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/random_but_useful_stuff2.snbt @@ -0,0 +1,1327 @@ +{ + autofocus_id: "0000000000000000" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "random_but_useful_stuff2" + group: "" + id: "56E94814F038A4EE" + images: [ + { + height: 2.7d + image: "kubejs:textures/item/frie.png" + rotation: 0.0d + width: 3.0d + x: -2.5d + y: -5.0d + } + { + height: 0.5d + image: "kubejs:textures/item/star.png" + rotation: 0.0d + width: 0.5d + x: -7.0d + y: -1.0d + } + { + height: 0.5d + image: "kubejs:textures/item/star.png" + rotation: 0.0d + width: 0.5d + x: 2.5d + y: -1.0d + } + ] + order_index: 1 + quest_links: [ ] + quests: [ + { + description: [ + "This chapter covers a collection of smaller utility mods — each one genuinely useful without dominating your gameplay." + "" + "Tools for automation, exploration, building, and convenience. You'll wonder how you played without them." + ] + icon: "minecraft:compass" + id: "5129B92718CBE7E0" + min_width: 300 + rewards: [{ + id: "32A4201027D4B161" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "3BFC633D18D07AFF" + title: "Open this chapter" + type: "checkmark" + }] + title: "&9Random But Useful" + x: -2.5d + y: -3.0d + } + { + description: [ + "&9Ranged Pumps&r just pumps liquids in a range using &4Forge Energy&r. The pump accepts &credstone&r signal as well. " + "" + "The size of the pump's &o&binternal tank&r is &o&b32&r buckets, and it will stop running if the &o&binternal tank&r is &o&bfull&r. The liquids can be &o&bpiped out&r into &nexternal tanks&r." + "" + "&aRight-Click&r on the pump to check what it is doing or does it running. It'll pumping liquids in &o&brectangular&r spiral shape &o&b1&r block under the pump. The default range is &o&b64&r blocks in &nany&r direction, &nnearest-first&r, on a vertical (&o&bY&r) level, from the &9Pump&r to &0Bedrock&r. " + "" + "{image:kubejs:textures/item/scanning.png width:200 height:100 align:1}" + "" + "The mod &ndoesn't chunkload&r pumps &o&bautomatically&r." + ] + id: "1E938A2BE4746591" + min_width: 400 + rewards: [{ + id: "7E5E48B4251A754D" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "0793090A8AE1F5C8" + item: "rangedpumps:pump" + type: "item" + }] + x: -6.5d + y: -5.5d + } + { + description: [ + "The &cTwilight Cloak&r makes you invisible only in darkness." + "" + "The &bInvisibility Cloak&r makes you completely invinsible." + "" + "The &9Cloak of Invisibility&r grants consistent invisibility." + ] + id: "2DE68C3A80B93BDB" + min_width: 300 + rewards: [{ + id: "4875232D8A338053" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "47C2375E1B87C55F" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "reliquary:twilight_cloak" + } + { + Count: 1b + id: "botania:invisibility_cloak" + } + { + Count: 1b + id: "cyclic:charm_invisible" + tag: { + Damage: 0 + } + } + ] + } + } + title: "Invisible Cloaks" + type: "item" + }] + title: "Invisible Cloaks" + x: -2.5d + y: 0.0d + } + { + description: [ + "&2Nature's Compass&r is a utility item that allows you to search for a biome's location anywhere in the world and view information about it." + "" + "&3Explorer's Compass&r is an item that allows you to locate structures anywhere in the world." + "" + "&eRight-Clicking&r with &o&bCompass&r in hand will open the selection &o&bGUI&r, from which you can search for a biome/structure or view information about it." + "" + "&eShift+Right-Clicking&r will &nreset&r the compass's state." + ] + id: "68EA43ABEF0C8B63" + min_width: 300 + rewards: [{ + id: "6E20E91D243F19C9" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [ + { + id: "5371C413D2779DC9" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "naturescompass:naturescompass" + } + { + Count: 1b + id: "structurecompass:structure_compass" + } + ] + } + } + title: "Compasses" + type: "item" + } + { + id: "435A746104BCEAA3" + item: { + Count: 1 + id: "explorerscompass:explorerscompass" + tag: { } + } + type: "item" + } + ] + title: "The Compasses" + x: 2.5d + y: -2.5d + } + { + description: [ + "&dExtended Bone Meal&r is a minimalistic mod which &o&bextends&r bone meal behaviour." + "" + "Grow &cnetherwart&r, &2cactus&r, &avines&r and &esugarcane&r." + "" + "Instant grow crops while holding the &eSneak&r button." + ] + icon: "minecraft:bone_meal" + id: "2E0B6D3EDE0C0665" + min_width: 300 + rewards: [{ + id: "73C9F48F2584769E" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "742A6C06018F7E58" + item: "minecraft:bone_meal" + type: "item" + }] + title: "Extended Bone Meal" + x: -2.0d + y: 1.0d + } + { + description: [ + "&6Item Collectors&r adds collectors which collect items in a specified range! Item Collectors can be &bwhitelisted&r or &0blacklisted&r!" + "" + "&aBasic Item Collector" + "• The &o&bBasic Item Collector&r has a range of up to &o&b5&r blocks!" + "• &eRight-Click&r a &o&bBasic Item Collector&r to open its &o&bGUI&r." + "" + "&dAdvanced Item Collector" + "• The &o&bAdvanced Item Collector&r has a range of up to &o&b7&r blocks!" + "• &eRight-Click&r an &o&bAdvanced Item Collector&r to open its &o&bGUI&r." + "• The &o&bAdvanced Item Collector&r can &3filter&r items." + ] + id: "4C7A545E1AAC91E2" + min_width: 300 + rewards: [{ + id: "41A4CBEEC3EBBA9A" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "64E097954DBAAADF" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "itemcollectors:basic_collector" + } + { + Count: 1b + id: "itemcollectors:advanced_collector" + } + ] + } + } + title: "Item Collectors" + type: "item" + }] + title: "Item Collectors" + x: -7.5d + y: -5.5d + } + { + description: [ + "&2Notes&r provides a fully functional in-game &nnotepad&r." + "" + "- Open the &2Notes&r &o&bGUI&r by pressing &aAlt+N&r" + "- View all notes relevant to your current world or server" + "- Create and edit notes through a simple in-game &o&bGUI&r" + "- Save notes per-world, per-server, or globally" + "- Pin important notes to the &o&bHUD&r" + ] + id: "73CA44C9640CD063" + min_width: 300 + rewards: [{ + id: "3557D7BB05698B2D" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "2D0DA98BE9F98E2C" + item: "minecraft:paper" + type: "item" + }] + title: "Notes" + x: -1.5d + y: 0.0d + } + { + description: [ + "The &aBuilding Gadget&r allows you to &o&bbuild structures&r using a set of different &o&bBuilding Modes&r." + "" + "The &2Exchanging Gadget&r provides basic &o&bexchanging abilities&r using a set of different &o&bExchanging Modes&r." + "" + "The &9Copy Paste Gadget&r allows you to select a large radius to &o&bcopy and paste&r in a different location." + "" + "The &cDestruction Gadget&r allows you to &o&bvoid&r a large area." + ] + id: "651CAB91222323A8" + min_width: 300 + rewards: [{ + id: "5935127FFAD19F47" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "7636C47DE8720A2E" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "buildinggadgets2:gadget_building" + } + { + Count: 1b + id: "buildinggadgets2:gadget_exchanging" + } + { + Count: 1b + id: "buildinggadgets2:gadget_copy_paste" + tag: { } + } + { + Count: 1b + id: "buildinggadgets2:gadget_cut_paste" + tag: { + pastereplace: 1b + } + } + { + Count: 1b + id: "buildinggadgets2:gadget_destruction" + } + ] + } + } + title: "Building Gadgets" + type: "item" + }] + title: "The Gadgets" + x: 2.0d + y: -5.5d + } + { + description: [ + "&6Hero's Medallion&r stores experience." + "" + "When turned &9on&r it &o&bdrains&r it from player." + "" + "When turned &coff&r player can &o&btake&r one level out of it per &eRight-Click&r." + ] + id: "37E4B6BC77880CEA" + min_width: 300 + rewards: [{ + id: "40E6C55C931DAC7E" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "6A352A9C50CDB913" + item: "reliquary:hero_medallion" + type: "item" + }] + x: -1.0d + y: 1.0d + } + { + description: [ + "&2FramedBlocks&r adds blocks of various shapes that can be made to look like almost any other block in the game." + "" + "Usage:" + "&eRight-Click&r the block with almost any solid block to make it look alike." + "&eRight-Click&rthe block with a fluid container to make it look like the fluid in the container." + "&eRight-Click&r the block with &6Glowstone Dust&r to make it produce light." + "&eRight-Click&r the block with a &cFramed Hammer&r to remove the camo." + "&eRight-Click&r the block with an empty fluid container to remove a fluid camo." + "" + "The &cFramed Wrench&r (and any other item in the \"&o&bforge:tools/wrench&r\" tag) can be used to rotate the &2Framed Block&r. On most blocks, the &o&brotation&r behaviour is dependent on the face that was clicked." + "" + "The &cFramed Screwdriver&r can be used to &o&bcycle&r through different states of the camo block." + "" + "The &9Framed Blueprint&r allows &o&bcopying&r &2Framed Blocks&r including their camo and glowing state. The rotation of the &o&bFramed Block&r itself is not &o&bcopied&r." + "" + "To see how it works, I'll suggest to watch FramedBlocks mod Tutorial by &aclicking&r the &o&blink&r below:" + "{\"text\":\"FramedBlocks: Tutorial/Guide\",\"color\":\"blue\",\"underlined\":\"true\",\"clickEvent\":{\"action\":\"open_url\",\"value\":\"https://www.youtube.com/watch?v=5HCs23N5FSc\"}}" + ] + id: "0E9F90624AA0A0CB" + min_width: 400 + rewards: [{ + id: "5F0A80437763ABA0" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [ + { + id: "2DD99F3F2CFF8A1C" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "framedblocks:framed_hammer" + } + { + Count: 1b + id: "framedblocks:framed_wrench" + } + { + Count: 1b + id: "framedblocks:framed_screwdriver" + } + { + Count: 1b + id: "framedblocks:framed_key" + } + ] + } + } + title: "Framed Tools" + type: "item" + } + { + id: "0F01F9FF8D3E1F51" + item: { + Count: 1 + id: "framedblocks:framed_blueprint" + tag: { + blueprint_data: { } + } + } + type: "item" + } + { + id: "215780B133E5F904" + item: "framedblocks:framed_cube" + type: "item" + } + { + id: "00F4E401D3C11878" + item: "framedblocks:framing_saw" + type: "item" + } + ] + title: "Framed Blocks" + x: 1.5d + y: -4.5d + } + { + description: [ + "&4Entangled&r gives you the materials needed to &o&bbind&r two blocks together, allowing you to &o&binteract&r with either one as if they were the same block!" + "" + "This will allow you to transfer &aitems&r, &cenergy&r, &9fluids&r or &dwhatever&r you want &ninstantly&r, you can have more than &o&bsix sides&r to work with or you could just hide your &o&bmessy cables&r, the possibilities are &nendless&r!" + ] + id: "0F58C843F02F3B18" + min_width: 400 + rewards: [{ + id: "3600E124166D2BAE" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [ + { + id: "355B7379AA1A5C63" + item: { + Count: 1 + id: "entangled:block" + tag: { } + } + type: "item" + } + { + id: "21A2AD027890B130" + item: { + Count: 1 + id: "entangled:item" + tag: { } + } + type: "item" + } + ] + x: -6.0d + y: -4.5d + } + { + description: [ + "&6Domum Ornamentum&r is a mod that provides &o&bskinnable&r blocks to be used in buildings. The core of this mod is a reskinning supporting model loader that gets the skin information passed from a &o&bnone ticking&r block entity." + "" + "Craft an &9Architects Cutter&r and place the materials in as requested. Then &o&bselect&r the &o&btype of skinned block&r in the middle, and &npick up the result&r on the &o&bright&r." + ] + id: "15A848495A8D7881" + min_width: 370 + rewards: [{ + id: "2D9B694FE177FB8E" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "0A715D5A8196BF20" + item: "domum_ornamentum:architectscutter" + type: "item" + }] + title: "Domum Ornamentum" + x: 2.5d + y: -4.5d + } + { + description: [ + "&6Chipped&r is a building mod that expands on the variety of blocks." + "" + "The mod offers overs &o&b10,000+&r unique building blocks, from stained glass variations, all the way to &o&bconcrete&r, &o&btuff&r, &o&bamethyst&r, &o&bprismarine&r, and even &o&bgilded blackstone&r!" + "" + "Not only are all the textures &o&bhand-painted&r in the new vanilla style, but they also &o&binclude&r a whole lot of &nconnected textures&r!" + ] + id: "53D9F1CDF5B9B0B1" + min_width: 300 + rewards: [{ + id: "0433CAC9F851EDBF" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "25FE7C0D196B47B4" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "chipped:botanist_workbench" + } + { + Count: 1b + id: "chipped:glassblower" + } + { + Count: 1b + id: "chipped:carpenters_table" + } + { + Count: 1b + id: "chipped:loom_table" + } + { + Count: 1b + id: "chipped:mason_table" + } + { + Count: 1b + id: "chipped:alchemy_bench" + } + { + Count: 1b + id: "chipped:tinkering_table" + } + ] + } + } + title: "Chipped Workbenches" + type: "item" + }] + title: "Chipped" + x: 2.0d + y: -3.5d + } + { + description: [ + "&6Mega Torch:&r" + "• Prevents natural spawning of hostile monsters in a big radius (&o&b64&r blocks) around the torch." + "• Mega Torch also prevents the death of monsters inside its radius. Monsters outside the Mega Torch can still enter its area of effects." + "" + "&5Dread Lamp:&r" + "• Prevents natural spawning of passive animals like squids, bats or ocelots in a big radius around the lamp." + "" + "&eFeral Flare Lantern:&r" + "• Places invisible lights." + "" + "&dFrozen Pearl:&r" + "• Clears residual lights from a Feral Flame Lantern." + "• Formerly terrain lighter block." + ] + id: "5F287F3D69BDFA29" + min_width: 420 + rewards: [{ + id: "68CC42FE25BC6A11" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "4AEE45E5A7DD38D7" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "torchmaster:megatorch" + } + { + Count: 1b + id: "torchmaster:dreadlamp" + } + { + Count: 1b + id: "torchmaster:feral_flare_lantern" + } + { + Count: 1b + id: "torchmaster:frozen_pearl" + } + ] + } + } + title: "Torchmaster" + type: "item" + }] + title: "Torchmaster" + x: 3.0d + y: -3.5d + } + { + description: [ + "With a &dConstruction Wand&r you can place multiple blocks (up to &o&b1,024&r) at once, extending your build on the side you're facing." + "" + "If that's not enough: you can &aupgrade&r your wand with additional cores, allowing you to place a block behind the block you are facing, conjure blocks in mid air or destroy lots of blocks &nvery fast&r." + ] + id: "40FBC1433AE31E05" + min_width: 300 + rewards: [{ + id: "4087096EED90C58B" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "423A4D32096994D3" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "constructionwand:stone_wand" + tag: { + Damage: 0 + wand_options: { } + } + } + { + Count: 1b + id: "constructionwand:iron_wand" + tag: { + Damage: 0 + wand_options: { } + } + } + { + Count: 1b + id: "constructionwand:diamond_wand" + tag: { + Damage: 0 + wand_options: { } + } + } + { + Count: 1b + id: "constructionwand:infinity_wand" + tag: { + wand_options: { } + } + } + ] + } + } + title: "Construction Wands" + type: "item" + }] + title: "Construction Wands" + x: 3.0d + y: -5.5d + } + { + description: [ + "The &eTape Measure&r canbe used to measure the &o&bdistance&r between positions." + "" + "• After obtaining the &o&bTape Measure&r you can start measuring by &eRight-Clicking&r on a block once." + "• Then moving to the second position and &eRight-Clicking&r the block on that position." + "• If you want to&n get rid&r of the measurements you &eShift+Right-Click&r the ground." + ] + id: "0B3C5B623A76C60A" + min_width: 425 + rewards: [{ + id: "2FD34F09A6D245FC" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "3C94436DBE4F1C62" + item: { + Count: 1 + id: "measurements:tape_measure" + tag: { } + } + type: "item" + }] + x: 3.5d + y: -4.5d + } + { + description: [ + "&dTime in a Bottle&r allows you to &o&baccelerate&r the rate at which blocks tick." + "" + "It passively collects time while in your &einventory&r which you can consume by &eRight-Clicking&r a block with it." + "" + "The first click requires &o&b30&r Seconds, the second &o&b60&r, the third &o&b120&r the fourth &o&b240&r and the fifth &o&b480&r." + "" + "The &o&bspeed&r at which the block &nticks doubles&r with each click. The effect lasts &o&b30&r seconds." + ] + id: "4AAD9C4F80232D7A" + min_width: 300 + rewards: [{ + id: "280EDE3262538CC7" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "7273CFB845C45B6C" + item: { + Count: 1 + id: "tiab:time_in_a_bottle" + tag: { } + } + type: "item" + }] + x: -6.5d + y: -3.5d + } + { + description: [ + "&6Wireless Chargers&r can charge nearby blocks and players!" + "" + "&cBasic Wireless Block Charger&r:" + "- Charges blocks in a &o&b5x5x5&r area" + "- Charges at &o&b50&r &cFE&r/t per block" + "&cAdvanced Wireless Block Charger&r:" + "- Charges blocks in a &o&b7x7x7&r area" + "- Charges at &o&b200&r &cFE&r/t per block" + "" + "&aBasic Wireless Player Charger&r:" + "- Charges players' items in a &o&b9x9x9&r area" + "- Charges at &o&b50&r &cFE&r/t per player" + "&aAdvanced Wireless Player Charger&r:" + "- Charges players' items in a &o&b13x13x13&r area" + "- Charges at &o&b200&r &cFE&r/t per player" + ] + id: "0D51D5B4D96E04C2" + min_width: 300 + rewards: [{ + id: "1A7BEBA5B5327D53" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "053B45E80FC7EF1D" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "wirelesschargers:basic_wireless_block_charger" + } + { + Count: 1b + id: "wirelesschargers:advanced_wireless_block_charger" + } + { + Count: 1b + id: "wirelesschargers:basic_wireless_player_charger" + } + { + Count: 1b + id: "wirelesschargers:advanced_wireless_player_charger" + } + ] + } + } + title: "Wireless Chargers" + type: "item" + }] + x: -7.0d + y: -2.5d + } + { + description: [ + "&6Pipez&r mod adds &o&bsimple&r and &o&bhighly configurable&r pipes that are designed to create" + "&nas little lag as possible&r." + "" + "Pipe Types:" + "• &eItem&r Pipes" + "• &9Fluid&r Pipes" + "• &cEnergy&r Pipes" + "• &3Gas&r Pipes (Mekanism)" + "• &0Universal&r Pipes (All &o&b4&r Pipes in one!)" + "" + "Pipes &o&bdon't transfer anything&r if they are not set to &nextract&r." + "You can &eSneak-click&r onto the end of a connected pipe with a &2Wrench&r to set it to &o&bextract&r." + "" + "Click the &nextracting&r part of the pipe to &o&bchange modes&r, add &3filters&r or add &aupgrades&r." + "" + "Pipes can be &cdisconnected&r/&9reconnected&r by &eSneak-clicking&r with a &2Wrench&r." + "" + "By default pipes are &o&brelatively slow&r. The speed can &nonly&r be increased by &o&badding an upgrade&r." + "Higher tiers of upgrades mean a higher transfer rate." + "" + "&3Filters&r can be used with &aitem&r pipes, &9fluid&r pipes and &7gas&r pipes. To add a specific item, just &eClick&r it on the slot in the filter &o&bGUI&r. Alternatively you can type the item &o&bID&r in the text field next to it." + ] + id: "45CAAF65D2553921" + min_width: 420 + rewards: [{ + id: "63940EE34E3AED88" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [ + { + id: "1C37662006C2F422" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "pipez:item_pipe" + } + { + Count: 1b + id: "pipez:fluid_pipe" + } + { + Count: 1b + id: "pipez:energy_pipe" + } + { + Count: 1b + id: "pipez:gas_pipe" + } + { + Count: 1b + id: "pipez:universal_pipe" + } + ] + } + } + title: "Pipes" + type: "item" + } + { + id: "3D297D417DB04E72" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "pipez:basic_upgrade" + } + { + Count: 1b + id: "pipez:improved_upgrade" + } + { + Count: 1b + id: "pipez:advanced_upgrade" + } + { + Count: 1b + id: "pipez:ultimate_upgrade" + } + { + Count: 1b + id: "pipez:infinity_upgrade" + } + ] + } + } + title: "Pipe Upgrades" + type: "item" + } + { + id: "2A1959C2076B16BC" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "pipez:wrench" + } + type: "item" + } + { + id: "3CB419100FFC8F00" + item: "pipez:filter_destination_tool" + type: "item" + } + ] + title: "Pipez" + x: -7.0d + y: -4.5d + } + { + description: [ + "With &eChalk&r you can mark your way through the vast world of Minecraft!" + "" + "- To make a chalk you'll need a piece of &2Calcite&r and &5Dye&r, any color will do." + "- &eChalks&r can also be found in underground chests, as well as in some villages." + "- Mark will point at a direction depending on which part of a block was clicked. &eSneak+Right-Click&r will draw an &o&bX&r-mark." + "- You'll need a good flat surface to draw a mark on. Any full side of a block will suffice." + "- If you made a mistake - just draw a new mark on top of it, no need to brake it first." + "" + "Store your chalks in a &6Chalk Box&r:" + "- Open Chalk Box by &eclicking&r while &o&bnot looking&r at a block." + "- Quick-change selected chalk in Chalk Box by &eShift+Clicking&r while &o&bnot looking&r at a block." + "" + "To make a mark glow - use &eGlowstone Dust&r or &3Glowing Ink Sac&r on it. It will even slightly light up surrounding area." + "" + "If &eGlowstone&r of &3Glowing Ink&r is held in offhand - marks will be drawn glowing." + ] + id: "47BE62B971950462" + min_width: 400 + rewards: [{ + id: "2908940435D3CA1A" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [ + { + id: "1F246E59689271CC" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:chalks" + } + } + title: "Chalks" + type: "item" + } + { + id: "3E8ADECBBD78DCE8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "chalk:chalk_box" + tag: { + Items: [ + { + Count: 1b + id: "minecraft:air" + } + { + Count: 1b + id: "minecraft:air" + } + { + Count: 1b + id: "minecraft:air" + } + { + Count: 1b + id: "minecraft:air" + } + { + Count: 1b + id: "minecraft:air" + } + { + Count: 1b + id: "minecraft:air" + } + { + Count: 1b + id: "minecraft:air" + } + { + Count: 1b + id: "minecraft:air" + } + { + Count: 1b + id: "minecraft:air" + } + ] + } + } + type: "item" + } + ] + title: "Chalk" + x: 4.0d + y: -5.5d + } + { + id: "54D2A2D1914FA719" + min_width: 300 + rewards: [{ + id: "123F4E1EC540C9B4" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "1A40B011E9A9D1DA" + item: { + Count: 1 + id: "hangglider:hang_glider" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: -4.5d + } + { + description: [ + "&2Nyf's Quivers&r adds currently &o&b5&r &2Quiver&r sizes (&o&bLeather&r-&o&bNetherite&r) to the game, which can hold between &o&b9&r and &o&b45&r stacks of arrows, it utilizes an \"&nActive Slot&r\" which you can &o&btoggle&r between in order to choose which &3Arrow&r your bows will use!" + "" + "&2Quivers&r can be &o&bRenamed&r with &eShift+Right-Click&r." + ] + id: "5296D22255B29BA7" + min_width: 300 + rewards: [{ + id: "3925BEDA9F00F5A1" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "40FE408052261265" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "curios:quiver" + } + } + title: "Quivers" + type: "item" + }] + title: "The Quivers" + x: -3.5d + y: 0.0d + } + { + description: [ + "This mod adds &6Trash Cans&r which can be used to &o&bvoid&r &eitems&r, &9fluids&r and &cenergy&r!" + "" + "&eItems&r and &9Fluids&r can be &bwhitelisted&r or &0blacklisted&r and an &cenergy&r &ntransfer limit&r can be set!" + ] + id: "0149044F5F2C46CA" + min_width: 300 + rewards: [{ + id: "5757C1B423C8C122" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "35FD50BE4ADA819E" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "trashcans:item_trash_can" + } + { + Count: 1b + id: "trashcans:liquid_trash_can" + } + { + Count: 1b + id: "trashcans:energy_trash_can" + } + { + Count: 1b + id: "trashcans:ultimate_trash_can" + } + ] + } + } + title: "Trash Cans" + type: "item" + }] + title: "The Trash Cans" + x: -7.5d + y: -3.5d + } + { + description: [ + "&6Cardboard Box&r is used for &o&bboxing up&r other blocks to move them, preserving the inventory while being &o&bmoved&r." + "" + "By &eRight-Clicking&r it on any &o&bblock&r, &o&btank&r, &o&bchest&r or &o&bmachine&r, you &nwrap&r it in this protective box that you can break while still preserving everything about that &o&bblock&r, &o&btank&r, &o&bchest&r or &o&bmachine&r. This includes its &o&binventory&r, &o&borientation&r, &o&binstalled upgrades&r, and &o&bmore&r. You can later place it safely into the world. &eSneak+Right-Click&r to &nunwrap&r a box, causing the &6Cardboard Box&r to drop as an item." + "" + "With &6Cardboard Boxes&r you can pick up &nspawners&r too." + ] + id: "2B8941B6C4028EEB" + min_width: 400 + rewards: [{ + id: "7A0DCD545BE0379B" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "2EEB924A04825462" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "mekanism:cardboard_box" + } + type: "item" + }] + x: -5.5d + y: -5.5d + } + { + description: ["This mod adds &9Waystone&r blocks that the player &o&bcan return&r to once they've been &o&bactivated&r, either through a &2Warp Scroll&r, a rechargeable &dWarp Stone&r, or by using an existing &9Waystone&r to hop from one to the other."] + id: "4A5F52236301E05B" + min_width: 310 + rewards: [{ + id: "41A18C390CD0B3FF" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [ + { + id: "470F72ED6F02790F" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "waystones:waystone" + } + { + Count: 1b + id: "waystones:sandy_waystone" + } + { + Count: 1b + id: "waystones:mossy_waystone" + } + { + Count: 1b + id: "waystones:sharestone" + } + ] + } + } + title: "Waystones" + type: "item" + } + { + id: "0C2B50FA64547E19" + item: "waystones:warp_scroll" + type: "item" + } + { + id: "3054E6CF30F9E4BA" + item: { + Count: 1 + id: "waystones:warp_stone" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: -8.5d + y: -5.5d + } + { + description: [ + "&6Beautify&r is a deco-mod that adds lots of &o&bvanilla-styled&r ways to spice up your builds with custom models." + "" + "Features summary:" + "" + "• &cHanging Pots&r with custom flower models and a wide variety of supported plants" + "• &9Book Stacks&r with different models that can power an enchantment table" + "• &eBlinds&r to add details to your windows or create new types of entrances" + "• &2Picture Frames&r with all &o&b16x16&r Vanilla Painting motives and more" + "• &3Rope&r that Hanging Pots and other Blocks can be attached to and Players can climb" + "• &bNew forms of light sources&r: Bamboo Lantern, Candelabras/ Chandeliers, Glowessence Jar, Light Bulbs" + "• &dLattices&r for putting plants on walls and ceilings" + ] + id: "55D62C16D36956A7" + min_width: 550 + rewards: [{ + id: "1A3C63D3159871DB" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "22D36267C931B2B9" + item: "beautify:botanist_workbench" + type: "item" + }] + title: "Beautify" + x: 1.0d + y: -5.5d + } + { + description: [ + "The &6Easy Mob Farm&r is a server &o&bfriendly way&r to capture different kind of animals and mobs to gather their loot." + "" + "This mod provides &o&bserval catching items&r and &o&bmob farms&r to make it more entertaining." + ] + id: "257136366CBFAFAC" + min_width: 300 + rewards: [{ + id: "0F317A42129397B7" + type: "xp" + xp: 50 + }] + shape: "hexagon" + tasks: [{ + id: "61920E08E9617436" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "easy_mob_farm:animal_plains_farm" + tag: { } + } + { + Count: 1b + id: "easy_mob_farm:bee_hive_farm" + tag: { } + } + { + Count: 1b + id: "easy_mob_farm:desert_farm" + tag: { } + } + { + Count: 1b + id: "easy_mob_farm:jungle_farm" + tag: { } + } + { + Count: 1b + id: "easy_mob_farm:monster_plains_cave_farm" + tag: { } + } + { + Count: 1b + id: "easy_mob_farm:nether_fortress_farm" + tag: { } + } + { + Count: 1b + id: "easy_mob_farm:ocean_farm" + tag: { } + } + { + Count: 1b + id: "easy_mob_farm:swamp_farm" + tag: { } + } + ] + } + } + title: "Mob Farms" + type: "item" + }] + title: "Easy Mob Farms" + x: -3.0d + y: 1.0d + } + ] + title: "&fTips, Utilities \\& QoL stuff" +} diff --git a/minecraft/config/ftbquests/quests/chapters/refined_storage.snbt b/minecraft/config/ftbquests/quests/chapters/refined_storage.snbt new file mode 100644 index 0000000..3f60149 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/refined_storage.snbt @@ -0,0 +1,2014 @@ +{ + autofocus_id: "3B052108DAD029F3" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "refined_storage" + group: "7E54189F6BA49858" + icon: "refinedstorage:crafting_grid" + id: "372634F2F65A999C" + images: [{ + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -8.660714285714285d + y: -9.064285714285717d + }] + order_index: 2 + quest_links: [ ] + quests: [ + { + dependencies: ["00000000000000AF"] + description: [ + "&9Refined Storage&r is a mass storage mod that offers the player a network-based storage system, allowing them to store items and fluids on a massively expandable device network." + "" + "Items and fluids can be stored in one of the many storage capabilities that the mod offers. Any storage devices connected to the same network are accessible to the player through one simple Grid interface, allowing the player to access the inventories of many devices through a single unified &9GUI&r." + ] + icon: "refinedstorage:construction_core" + id: "34C6AE4B8382A490" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "153D18C623291475" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&o&nWelcome to PneumaticCraft&r quest*" + tasks: [{ + count: 16L + id: "0CDCDF15E33EFE1B" + item: "refinedstorage:quartz_enriched_iron" + type: "item" + }] + title: "Welcome to &eRefined Storage" + x: -7.982142857142861d + y: -8.457142857142859d + } + { + dependencies: ["34C6AE4B8382A490"] + description: [ + "&9Cable&r is used to connect devices to the &6Controller&r." + "" + "&9Cables&r are not always necessary, as long as the devices are next to each other in any direction a connection will be established as well." + ] + hide_dependency_lines: true + id: "7F3705767153FE11" + rewards: [{ + exclude_from_claim_all: true + id: "66EBC829BA10DF80" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + count: 16L + id: "32CF1733A3C67574" + item: "refinedstorage:cable" + type: "item" + }] + title: "Cables" + x: -8.0d + y: -1.0d + } + { + dependencies: ["3B052108DAD029F3"] + description: [ + "The &6Controller&r is the core of the &dRefined Storage&r network. You need to connect all the &dRefined Storage&r devices to this block." + "" + "You are supposed to connect every device that depends on the storage network connection to the &6Controller&r." + "" + "You can connect devices with &5Cables&r. " + "" + "&5Cables&r are not always necessary, as long as the devices are next to each other in any direction a connection will be established as well." + "" + "The &6Controller&r accepts and consumes &cForge Energy&r (FE). If the &6Controller&r runs out of energy, the network will be turned off until there is sufficient energy provided again." + "" + "When the &6Controller&r is broken, it will maintain its energy." + "" + "Each &dRefined Storage&r network can only have a single &6Controller&r. If you connect another &6Controller&r to an already existing network, the &6Controller&r will &n&bbreak&r." + ] + id: "751EE40D0D827E2A" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "2548F23DA05726E9" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5AE9A3DA55E5A0BE" + item: "refinedstorage:controller" + type: "item" + }] + x: -2.0d + y: -7.5d + } + { + dependencies: ["13A383F8F11B1C35"] + description: [ + "The &dGrid&r allows access to the items and fluids in the storage network." + "" + "The player can extract items or fluids from the central &nGUI&r." + "" + "Useful controls:" + "- &bLeft Click&r takes at most 64 items" + "- &bRight Click&r takes at most 32 items" + "- &bMiddle Click&r takes 1 item " + "- &bSHIFT+Mouse Scroll&r in the &ePlayer&r inventory pushes 1 item to or from the &ePlayer’s&r inventory" + "- &bSHIFT+Mouse Scroll&r in the &eGrid&r inventory pushes 1 item to or from the &eGrid&r inventory" + "- &bCTRL+Mouse Scroll&r pushes 1 item to or from the &ePlayer’s&r mouse" + "- &bSHIFT&r pushes the items to the &ePlayer’s&r inventory" + "- &bSHIFT+CTRL&r forces the crafting window to open &oeven if the item or fluid is available&r" + "- &bCTRL+X&r clears crafting matrix" + "- &bRight Click&r on search bar clears the search query" + "- &bTab&r selects the search bar when the &eGrid&r isn’t in autoselection mode" + "- When in the crafting start &nGUI&r, pressing &bSHIFT&r skips the crafting preview window" + ] + id: "3B052108DAD029F3" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "627F789BA208874C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "4111CC031948C92C" + item: "refinedstorage:grid" + type: "item" + }] + x: -3.5d + y: -7.5d + } + { + dependencies: ["3B052108DAD029F3"] + description: [ + "The &6Crafting Grid&r is the same as a regular &eGrid&r, but has a crafting inventory." + "" + "When an item is crafted, it won’t just clear the crafting slots, but it’ll try to retrieve the same items from the storage network again." + "" + "The &6Crafting Grid&r integrates with &bJEI&r so the player can use recipe transferring." + "" + "If you don’t have some required items, but autocrafting is available for said items, you can press &bCTRL+CLICK&r to start autocrafting for said items. Note that you need a &7Pattern&r configured for these items." + ] + id: "238560B94FCB5858" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "4C4621EDD5B21391" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "2AA4678146FC99C8" + item: "refinedstorage:crafting_grid" + type: "item" + }] + x: -3.5d + y: -9.0d + } + { + dependencies: ["751EE40D0D827E2A"] + description: [ + "The &4Disk Drive&r is the block in which you store storage disks or fluid storage disks." + "" + "A &n&bnegative&r or &n&bpositive&r priority can be chosen where a higher priority gets higher precedence to place items in." + "" + "There is also a &n&bwhitelist&r and &n&0blacklist&r to only allow or forbid some items or fluids from entering the storage disks or fluid storage disks respectively." + "" + "The &n&bwhitelist&r or &n&0blacklist&r can be configured to be &n&bNBT&r or &n&bdamage&r sensitive." + ] + id: "4F6B8F1E46496251" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "46B174461538EA32" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "48B9DC98B0DBAC29" + item: "refinedstorage:disk_drive" + type: "item" + }] + x: -0.5d + y: -7.0d + } + { + dependencies: ["4F6B8F1E46496251"] + id: "7B449448A6B419AB" + rewards: [{ + exclude_from_claim_all: true + id: "307463EB83A45543" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "005912177D6288AD" + item: "refinedstorage:1k_storage_disk" + type: "item" + }] + x: 1.05d + y: -8.4d + } + { + dependencies: ["7B449448A6B419AB"] + id: "59BAED982A758B11" + rewards: [{ + exclude_from_claim_all: true + id: "6C3255F1779AFEAE" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0ACF705A29899152" + item: "refinedstorage:4k_storage_disk" + type: "item" + }] + x: 1.75d + y: -8.4d + } + { + dependencies: ["59BAED982A758B11"] + id: "39CA620DBAA4BB46" + rewards: [{ + exclude_from_claim_all: true + id: "335B82860EB20BD7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2B51BABBB82B9B18" + item: "refinedstorage:16k_storage_disk" + type: "item" + }] + x: 2.4499999999999997d + y: -8.4d + } + { + dependencies: ["39CA620DBAA4BB46"] + id: "323FC67EF4744102" + rewards: [{ + exclude_from_claim_all: true + id: "13E838FA8F5D132B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3BC8A51D8B6D1645" + item: "refinedstorage:64k_storage_disk" + type: "item" + }] + x: 3.15d + y: -8.4d + } + { + dependencies: ["323FC67EF4744102"] + id: "79AAA7606992C5BC" + rewards: [{ + exclude_from_claim_all: true + id: "7282C91EF37D240A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "683E6ABC1EB93FBE" + item: { + Count: 1 + id: "extradisks:256k_storage_disk" + tag: { } + } + type: "item" + }] + x: 4.2d + y: -8.4d + } + { + dependencies: ["79AAA7606992C5BC"] + id: "2E0E0880D10A3185" + rewards: [{ + exclude_from_claim_all: true + id: "2B257714066E5807" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "4E5C5AD46C01055D" + item: { + Count: 1 + id: "extradisks:1024k_storage_disk" + tag: { } + } + type: "item" + }] + x: 4.8999999999999995d + y: -8.4d + } + { + dependencies: ["2E0E0880D10A3185"] + id: "3CC2A9A753015DD0" + rewards: [{ + exclude_from_claim_all: true + id: "420284BB9CF9B78F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "7D073B49F1B92A58" + item: { + Count: 1 + id: "extradisks:4096k_storage_disk" + tag: { } + } + type: "item" + }] + x: 5.6d + y: -8.4d + } + { + dependencies: ["3CC2A9A753015DD0"] + id: "6408C889100DD050" + rewards: [{ + exclude_from_claim_all: true + id: "22E0949DA3B3E694" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6D29B8FADECEC672" + item: { + Count: 1 + id: "extradisks:16384k_storage_disk" + tag: { } + } + type: "item" + }] + x: 6.3d + y: -8.4d + } + { + dependencies: ["5B86A9C08F2F2E8F"] + id: "1303C22577B51875" + rewards: [{ + exclude_from_claim_all: true + id: "3A960AD366FBBC44" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3AA801E108A50BE3" + item: "refinedstorage:basic_processor" + type: "item" + }] + x: -7.0d + y: -5.0d + } + { + dependencies: ["5B86A9C08F2F2E8F"] + id: "1E9AA00A54C7954E" + rewards: [{ + exclude_from_claim_all: true + id: "28AE7CBD4CF3AB22" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2C729B14DA0DFFF8" + item: "refinedstorage:improved_processor" + type: "item" + }] + x: -7.5d + y: -4.0d + } + { + dependencies: ["5B86A9C08F2F2E8F"] + id: "271745798EAA6DB7" + rewards: [{ + exclude_from_claim_all: true + id: "4E79E1283D957A4E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "39C96C66AE816D36" + item: "refinedstorage:advanced_processor" + type: "item" + }] + x: -7.5d + y: -6.0d + } + { + dependencies: ["5041D32679CA118B"] + description: [ + "A &cNetwork Transmitter&r sends a network signal to a &9Network Receiver&r that is specified in the given &2Network Card&r." + "" + "In order for the &cNetwork Transmitter&r to work the &6Controller&r where the &cNetwork Transmitter&r is connected to has to be &nchunkloaded&r." + "" + "The &cNetwork Transmitter&r can work in the current dimension or across different dimensions." + ] + id: "64F7C68943AD30E2" + rewards: [{ + exclude_from_claim_all: true + id: "4DA82C4DADC8E1D1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6B48E15B3C2940D0" + item: "refinedstorage:network_transmitter" + type: "item" + }] + x: 1.0d + y: -4.0d + } + { + dependencies: ["64F7C68943AD30E2"] + description: [ + "The &9Network Receiver&r receives a signal from the &cNetwork Transmitter&r." + "" + "In order for the &9Network Receiver&r to work reliably the &9Network Receiver&r has to be &nchunkloaded&r." + ] + id: "31D5150198BF3854" + rewards: [{ + exclude_from_claim_all: true + id: "2644D2CE20A22782" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "17709CA6CCD12C64" + item: "refinedstorage:network_receiver" + type: "item" + }] + x: 1.5d + y: -3.0d + } + { + dependencies: ["31D5150198BF3854"] + description: [ + "The &5Wireless Transmitter&r is used to send signals to wireless network items in &bRefined Storage&r." + "" + "The default range is &n&b16 blocks&r, but can be upgraded with &eRange Upgrades&r. Keep in mind, you are not limited to &n&b1 Wireless Transmitter&r! You can spread multiple around in your world, each maximally upgraded with &eRange Upgrades&r." + "" + "Note that every &5Wireless Transmitter&r needs to be connected to the network through a &3Cable&r or &9Network Receiver&r." + "" + "The wireless signal starts from the &5Wireless Transmitter’s&r position, so, if you place &l2&r transmitters next to each other you’ll only have a net gain of &n1 block&r." + "" + "Instead, you have to spread your wireless transmitters around." + ] + id: "3928133420A9BA6F" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "182392F859A0E44E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "60E65DDBF9C25926" + item: "refinedstorage:wireless_transmitter" + type: "item" + }] + x: 2.0d + y: -2.0d + } + { + dependencies: ["7F3705767153FE11"] + description: [ + "The &9Importer&r imports items or fluids from an inventory in front of the block and inserts it in the storage network (if there is space)." + "" + "By default, it will import all accessible slots (place the &9Importer&r on the correct side, where the slot or fluid tank is reachable) but the player can use the &n&bwhitelist&r or &n&0blacklist&r as well." + ] + id: "1AFBE843D9AA37F8" + rewards: [{ + exclude_from_claim_all: true + id: "4BEAD877C1817224" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "075CE7D9989A7673" + item: "refinedstorage:importer" + type: "item" + }] + x: -6.5d + y: -2.0d + } + { + dependencies: ["7F3705767153FE11"] + description: [ + "The &5Exporter&r extracts items or fluids from the storage network and inserts it in the inventory or tank in front of it." + "" + "Before being able to export anything, the player has to choose the items or fluids to export." + "" + "The chosen items can be configured to be &n&bNBT&r or &n&bdamage&r sensitive." + "" + "The &5Exporter&r should face the block it’s exporting to in a way that the wanted slot or fluid tank is possible to reach from that side." + ] + id: "22E06C03B43EAC2F" + rewards: [{ + exclude_from_claim_all: true + id: "5C89CB207F8500D3" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "400909A2EDD79B6E" + item: "refinedstorage:exporter" + type: "item" + }] + x: -6.5d + y: -1.0d + } + { + dependencies: ["7F3705767153FE11"] + description: [ + "The &dExternal Storage&r provides the storage network with storage of the inventory or fluid tank in front of the device." + "" + "A &n&bnegative&r or &n&bpositive&r priority can be chosen, where a higher priority gets higher precedence to place items in." + "" + "There is also a &n&bwhitelist&r and &n&0blacklist&r option to only allow or forbid some items or fluids from entering the connected inventory." + "" + "The &n&bwhitelist&r or &n&0blacklist&r can be configured to be &n&bNBT&r or &n&bdamage&r sensitive." + ] + id: "31D9FC9FE28C5D4B" + rewards: [{ + exclude_from_claim_all: true + id: "4CFC14AB4C7C897F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "33FE161C9E3F60A4" + item: "refinedstorage:external_storage" + type: "item" + }] + x: -7.0d + y: 0.0d + } + { + dependencies: ["4F6B8F1E46496251"] + description: [ + "The &6Crafter&r crafts items with patterns. It can take &2Speed Upgrades&r to increase the crafting speed." + "" + "With processing patterns, the &6Crafter&r has to face the correct input side of the machine." + "" + "A &6Crafter&r can be chained by letting them face each other. This is useful when connecting a &6Crafter&r to a single machine. When you run out of slots in your first &6Crafter&r, the one facing the machine, you can put another &6Crafter&r behind the first &6Crafter&r to get additional &7Pattern&r slots." + "" + "The Crafter has 4 modes:" + "- &o&bIgnore redstone signal (default)&r" + "- &o&bRedstone signal unlocks autocrafting&r" + "- &o&bRedstone signal locks autocrafting&r" + "- &o&bRedstone pulse inserts next set&r" + "" + "The (un)locking mechanism is used to block the &6Crafter&r, so it can’t insert items or fluids into the connected inventory." + "" + "“&nBlocking mode&r” can be achieved with the “&nRedstone pulse inserts next set&r” mode." + ] + hide_dependency_lines: true + id: "6C2F805FED9B1B4D" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "5AD3276D1C620743" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "11F69D5825667CB6" + item: "refinedstorage:crafter" + type: "item" + }] + x: 4.0d + y: -5.0d + } + { + dependencies: ["1303C22577B51875"] + description: [ + "The &2Wrench&r is a tool that can do two things:" + "" + "- Rotate blocks" + "- Break Refined Storage covers" + "" + "Simply &n&bsneak+right click&r when using the &2Wrench&r." + ] + id: "2AB06C9BCCC878DF" + rewards: [{ + exclude_from_claim_all: true + id: "33183A36AB954C17" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5FD4C5F99673FE13" + item: "refinedstorage:wrench" + type: "item" + }] + x: -5.0d + y: -5.0d + } + { + dependencies: ["23A5BD1206C9DA71"] + description: [ + "The &dSecurity Manager&r can store security cards." + "" + "From it’s &bGUI&r, you can configure what permissions each player (that is bound with a &9Security Card&r) has." + "" + "Once the &9Security Card&r is inserted in the top slots, the permissions for that player will be restricted to the ones configured." + ] + id: "5041D32679CA118B" + rewards: [{ + exclude_from_claim_all: true + id: "34578F2F1654777F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6708EA1EEAB5BC54" + item: "refinedstorage:security_manager" + type: "item" + }] + x: -0.5d + y: -4.0d + } + { + dependencies: ["6C2F805FED9B1B4D"] + id: "5E1D127D8ADF4C03" + rewards: [{ + exclude_from_claim_all: true + id: "26D7335843E49BD2" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 8L + id: "3250D4ECB343F93A" + item: "refinedstorage:pattern" + type: "item" + }] + title: "Pattern" + x: 4.0d + y: -6.0d + } + { + dependencies: ["6C2F805FED9B1B4D"] + description: [ + "The &eInterface&r acts as a combination of the &dImporter&r and the &9Exporter&r." + "" + "The &dImporter&r needs to be connected to an inventory to import items or fluids. It has no internal inventory and you can’t insert items directly to the &dImporter&r." + "" + "In comparison with the &dImporter&r the &eInterface&r has an internal inventory to receive items and import them (through piping, hoppers, etc)." + "" + "The &eInterface&r does &lNOT&r extract items from adjacent inventories automatically, you have to actually insert them in the Interface through piping, hoppers, etc." + "" + "There is also an option for exporting items from the system. These items can be piped out through a piping system from another mod, hoppers, etc. and can be configured to be &nNBT&r or &ndamage&r sensitive." + "" + "&bClick&r an item in the export slots to configure that to be exported. Use left or right &bclick&r on the item to change the amount. Use &bshift&r to clear the slot." + ] + id: "4CA8D19FCE537859" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "4F5800E0648430AA" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "62E5CE0BDEFCBBC6" + item: "refinedstorage:interface" + type: "item" + }] + x: 5.5d + y: -5.0d + } + { + dependencies: ["1E9AA00A54C7954E"] + description: ["The &cUpgrade&r is the base item used for every type of &nupgrade&r."] + hide_dependency_lines: true + id: "248C80D834309577" + rewards: [{ + exclude_from_claim_all: true + id: "7CBE8ED3BBB6AC77" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "6B0415A95AEA0930" + item: "refinedstorage:upgrade" + type: "item" + }] + x: 8.5d + y: 0.5d + } + { + dependencies: ["248C80D834309577"] + description: [ + "The &2Speed Upgrade&r will increase the speed of the device that it is being inserted to." + "" + "By using this upgrade, the amount of &cFE&r/t that this device draws will increase." + ] + id: "7DB39218E8B03474" + rewards: [{ + exclude_from_claim_all: true + id: "376A7D0124615921" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "441B938657D152D1" + item: "refinedstorage:speed_upgrade" + type: "item" + }] + x: 7.5d + y: 0.5d + } + { + dependencies: ["248C80D834309577"] + description: [ + "The &2Range Upgrade&r increases the range of the &eWireless Transmitter&r." + "" + "By using this upgrade, the amount of &cFE&r/t that this device draws will increase." + ] + id: "686E3FDCD3EEA72D" + rewards: [{ + exclude_from_claim_all: true + id: "5D7150CCA7FD2EFF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "64D76A17FBC34BAE" + item: "refinedstorage:range_upgrade" + type: "item" + }] + x: 8.5d + y: -0.5d + } + { + dependencies: ["248C80D834309577"] + description: [ + "The &2Crafting Upgrade&r will schedule a crafting task when the item being used in a device is needed but not available." + "" + "By using this upgrade, the amount of &cFE&r/t that this device draws will increase." + ] + id: "09E9D4243A52B968" + rewards: [{ + exclude_from_claim_all: true + id: "5477394FB690B86C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "40832888B2D73AAF" + item: "refinedstorage:crafting_upgrade" + type: "item" + }] + x: 9.5d + y: 0.5d + } + { + dependencies: ["7DB39218E8B03474"] + description: [ + "The &2Stack Upgrade&r will improve item or fluid transfer speeds by using a whole stack (64 items) instead of 1 item at a time." + "" + "It can be combined with &bSpeed Upgrades&r to let the device go to the next slot quicker." + "" + "By using this upgrade, the amount of &cFE&r/t that this device draws will increase." + ] + id: "4463E8EFD952B475" + rewards: [{ + exclude_from_claim_all: true + id: "616EE269C6A606C3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "04E6085612AE5E0B" + item: "refinedstorage:stack_upgrade" + type: "item" + }] + x: 6.5d + y: 0.5d + } + { + dependencies: ["1303C22577B51875"] + id: "0BA00C5545282571" + rewards: [{ + exclude_from_claim_all: true + id: "35C427EFB22DC734" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "53811755FD5D668E" + item: "refinedstorage:destruction_core" + type: "item" + }] + x: -5.5d + y: -4.0d + } + { + dependencies: ["1303C22577B51875"] + id: "4BB571A75E50C307" + rewards: [{ + exclude_from_claim_all: true + id: "3244D87A12CC0770" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6E9723791D125AFD" + item: "refinedstorage:construction_core" + type: "item" + }] + x: -5.5d + y: -6.0d + } + { + dependencies: ["6C2F805FED9B1B4D"] + id: "2B707F3AAD089BFC" + rewards: [{ + exclude_from_claim_all: true + id: "10FF07A6D8ABA100" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2D97E7A2A4119D29" + item: "extrastorage:iron_crafter" + type: "item" + }] + x: 4.0d + y: -3.5d + } + { + dependencies: ["2B707F3AAD089BFC"] + id: "2FC82AE5DCCF9E5B" + rewards: [{ + exclude_from_claim_all: true + id: "1F56AE7FE86E1FD9" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "04F1093070CCD9A8" + item: "extrastorage:gold_crafter" + type: "item" + }] + x: 4.0d + y: -2.5d + } + { + dependencies: ["2FC82AE5DCCF9E5B"] + id: "435A8A6E546DDFB9" + rewards: [{ + exclude_from_claim_all: true + id: "7AA882449B69AA35" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + tasks: [{ + id: "57D8A46CC20FE1C4" + item: "extrastorage:diamond_crafter" + type: "item" + }] + x: 4.0d + y: -1.5d + } + { + dependencies: ["435A8A6E546DDFB9"] + id: "38C693695D270B8B" + rewards: [{ + exclude_from_claim_all: true + id: "0280EDB2A32F4872" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1370A6B90E1B70E8" + item: "extrastorage:netherite_crafter" + type: "item" + }] + x: 4.0d + y: -0.5d + } + { + dependencies: ["5B86A9C08F2F2E8F"] + id: "65DB695B84418794" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "7E0154F417B6C758" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "479D5186C3C1F1D0" + item: "extradisks:withering_processor" + type: "item" + }] + x: -9.0d + y: -5.0d + } + { + dependencies: ["6D87A1C6831BE313"] + id: "30667B72A059A8EE" + rewards: [{ + exclude_from_claim_all: true + id: "2A8DDB06CAFA3DD2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.4d + tasks: [{ + id: "3E58AD26485E9FC9" + item: "extradisks:infinite_storage_disk" + type: "item" + }] + x: 9.799999999999999d + y: -8.4d + } + { + dependencies: ["686E3FDCD3EEA72D"] + id: "072A61CA0618DBFA" + rewards: [{ + exclude_from_claim_all: true + id: "3A5980B4F1634E8B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "pentagon" + tasks: [{ + id: "22EE5BADB98DE8BA" + item: "rsinfinitybooster:infinity_card" + type: "item" + }] + x: 8.0d + y: -1.5d + } + { + dependencies: ["686E3FDCD3EEA72D"] + id: "408B09DB8D15C6DE" + rewards: [{ + exclude_from_claim_all: true + id: "3DB14F9F692F3B70" + table_id: 5236874501558129216L + type: "random" + }] + shape: "pentagon" + tasks: [{ + id: "1971AF5095DCA121" + item: "rsinfinitybooster:dimension_card" + type: "item" + }] + x: 9.0d + y: -1.5d + } + { + dependencies: ["1AFBE843D9AA37F8"] + id: "3F14B7FCEBE82944" + rewards: [{ + exclude_from_claim_all: true + id: "11DA4D4B5B8A300E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2DB37A39C627D011" + item: "extrastorage:advanced_importer" + type: "item" + }] + x: -5.5d + y: -2.0d + } + { + dependencies: ["22E06C03B43EAC2F"] + id: "1E937D3ECBE9EC25" + rewards: [{ + exclude_from_claim_all: true + id: "3C01D82491FE2811" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2B545D194696B50E" + item: "extrastorage:advanced_exporter" + type: "item" + }] + x: -5.5d + y: -1.0d + } + { + dependencies: ["5041D32679CA118B"] + id: "670FA77EB5E9DF57" + rewards: [{ + exclude_from_claim_all: true + id: "3B22DA90E3F6F56A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "16DC4BD909093C1E" + item: "refinedstorageaddons:wireless_crafting_grid" + type: "item" + }] + x: -0.5d + y: -2.0d + } + { + dependencies: ["7F3705767153FE11"] + description: [ + "The &2Constructor&r places items or fluids from the storage network in the world." + "" + "No other blocks can be in front of the &2Constructor&r (&nexcept fluids&r) and it should be possible for the block to be placed (for example: &nsaplings need dirt&r)." + "" + "The &2Constructor&r can also drop items in the world instead of placing actual blocks. When provided with a &aStack Upgrade&r, it’ll drop stacks of items at a time." + ] + id: "7E2B119FF3B42555" + rewards: [{ + exclude_from_claim_all: true + id: "7A15A003CD1E76B9" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2D415351B38A7844" + item: "refinedstorage:constructor" + type: "item" + }] + x: -9.0d + y: 0.0d + } + { + dependencies: ["7F3705767153FE11"] + description: [ + "The &8Destructor&r destroys blocks or fluids in front of it and puts the drops in the storage network." + "" + "The &8Destructor&r has the ability to only break certain blocks or fluids, with the &n&bwhitelist&r and &n&0blacklist&r option. Said &n&bwhitelist&r and &n&0blacklist&r can be &n&bNBT&r or &n&bdamage&r sensitive." + "" + "The &8Destructor&r can also pick up items in the world instead of destroying blocks." + ] + id: "1582D0B1B524191D" + rewards: [{ + exclude_from_claim_all: true + id: "7FD1B9959D42C76F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "40AD906EF67E04FB" + item: "refinedstorage:destructor" + type: "item" + }] + x: -8.0d + y: 0.5d + } + { + dependencies: ["4CA8D19FCE537859"] + id: "151C3F2EECCDA5A9" + rewards: [{ + exclude_from_claim_all: true + id: "0CAB80D5F3CA606B" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0A621A231AD6A41E" + item: "rsrequestify:requester" + type: "item" + }] + x: 6.5d + y: -5.0d + } + { + dependencies: ["4F6B8F1E46496251"] + description: [ + "The &5Disk Manipulator&r adds a fast way of transferring items between &n&bstorage&r disks or &n&bfluid&r storage disks and the &n&bstorage network&r." + "" + "The player can configure the &5Disk Manipulator&r to have a certain &n&bwhitelist&r or &0&nblacklist&r of items that can be transferred." + "" + "The &n&bwhitelist&r or &n&0blacklist&r can be configured to be &n&bNBT&r or &n&bdamage&r sensitive." + "" + "The player can also choose whether to &n&binsert&r items to the storage network or &n&bextract&r items from the storage network." + ] + id: "318FF6E869BC41B1" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "7CEAB13CD06AA7EF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "010D0463756C2A4E" + item: "refinedstorage:disk_manipulator" + type: "item" + }] + x: -0.5d + y: -8.5d + } + { + dependencies: ["4F6B8F1E46496251"] + id: "16373BCA95F4800F" + rewards: [{ + exclude_from_claim_all: true + id: "17862331C4AEE5E8" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2AA63CC341E438B7" + item: "refinedstorage:64k_fluid_storage_disk" + type: "item" + }] + x: 1.05d + y: -7.35d + } + { + dependencies: ["16373BCA95F4800F"] + id: "1106FC7CD11A9227" + rewards: [{ + exclude_from_claim_all: true + id: "5425A4FFD5FDAD1D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "04F431E652B3148E" + item: "refinedstorage:256k_fluid_storage_disk" + type: "item" + }] + x: 1.75d + y: -7.35d + } + { + dependencies: ["1106FC7CD11A9227"] + id: "258014F5AF79D6E9" + rewards: [{ + exclude_from_claim_all: true + id: "1433E39BBF2B969A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "43D38189988A646F" + item: "refinedstorage:1024k_fluid_storage_disk" + type: "item" + }] + x: 2.4499999999999997d + y: -7.35d + } + { + dependencies: ["258014F5AF79D6E9"] + id: "7BF7F8BFBB497449" + rewards: [{ + exclude_from_claim_all: true + id: "15DD0681C771084F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "058909C2471C131E" + item: "refinedstorage:4096k_fluid_storage_disk" + type: "item" + }] + x: 3.15d + y: -7.35d + } + { + dependencies: ["7BF7F8BFBB497449"] + id: "25C183A2F9F2DF8B" + rewards: [{ + exclude_from_claim_all: true + id: "09CF5B76D17A4737" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1EE924BE9564E4AB" + item: { + Count: 1 + id: "extradisks:16384k_fluid_storage_disk" + tag: { } + } + type: "item" + }] + x: 4.2d + y: -7.35d + } + { + dependencies: ["25C183A2F9F2DF8B"] + id: "03F1264432CD200D" + rewards: [{ + exclude_from_claim_all: true + id: "049278FEB9F3D402" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0FA017D0B1A4D0E0" + item: { + Count: 1 + id: "extradisks:65536k_fluid_storage_disk" + tag: { } + } + type: "item" + }] + x: 4.8999999999999995d + y: -7.35d + } + { + dependencies: ["03F1264432CD200D"] + id: "4A1159DBBEE2793D" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "0AF1B1FC0D027B0D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "5C6BA65B17D1A073" + item: { + Count: 1 + id: "extradisks:262144k_fluid_storage_disk" + tag: { } + } + type: "item" + }] + x: 5.6d + y: -7.35d + } + { + dependencies: ["4A1159DBBEE2793D"] + id: "028E0B778EE2A256" + rewards: [{ + exclude_from_claim_all: true + id: "24F0287A23FE9916" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1AB5783F51F694D4" + item: { + Count: 1 + id: "extradisks:1048576k_fluid_storage_disk" + tag: { } + } + type: "item" + }] + x: 6.3d + y: -7.35d + } + { + dependencies: ["028E0B778EE2A256"] + id: "271C48310803A824" + rewards: [{ + exclude_from_claim_all: true + id: "74D6467DFEF40E13" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.4d + tasks: [{ + id: "2CEAB9B0038039E3" + item: { + Count: 1 + id: "extradisks:infinite_fluid_storage_disk" + tag: { } + } + type: "item" + }] + x: 7.499999999999993d + y: -7.371428571428574d + } + { + dependencies: ["5B86A9C08F2F2E8F"] + id: "12DD335832256B5A" + rewards: [{ + exclude_from_claim_all: true + id: "68A001F526FDAA0A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2478266965FFF480" + item: "extrastorage:neural_processor" + type: "item" + }] + x: -8.5d + y: -4.0d + } + { + dependencies: ["5B86A9C08F2F2E8F"] + id: "550A3E2F952A2526" + rewards: [{ + exclude_from_claim_all: true + id: "1C8EE3012AC85E99" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5876347EC3781134" + item: "rebornstorage:super_advanced_processor" + type: "item" + }] + x: -8.5d + y: -6.0d + } + { + dependencies: ["3B052108DAD029F3"] + description: [ + "The &6Fluid Grid&r is the same as a regular &eGrid&r, but is used for viewing fluids in the fluid storage of your storage network." + "" + "To insert a fluid, players can &bShift+Click&r on a fluid container like a bucket in their player inventory while in the &6Fluid Grid&r &bGUI&r." + "" + "The player can also click the fluid container in the &bGUI&r to insert it." + "" + "Players can extract the fluid by clicking on it. The &6Fluid Grid&r will then fill a bucket with the selected fluid." + "" + "&dRefined Storage&r will first search an empty bucket in your inventory. If none is found, a bucket will be searched in your storage network." + "" + "Some fluids cannot be filled in a bucket, then the only way to extract those fluids is by using an &aExporter&r." + ] + id: "13FFBFD61A86BB4F" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "092CAC4A9476DBCC" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "3966F9B0B226C9AE" + item: "refinedstorage:fluid_grid" + type: "item" + }] + x: -4.0d + y: -8.5d + } + { + dependencies: ["3B052108DAD029F3"] + description: [ + "The &6Pattern Grid&r is the same as a regular &eGrid&r, but also allows for the creation of patterns." + "" + "By default, the &6Pattern Grid&r creates regular crafting patterns." + "" + "To create processing patterns, toggle the “&nprocessing&r” checkbox." + "" + "To create oredict sensitive patterns, toggle the “&noredict&r” checkbox." + "" + "To define valid alternatives for an item or fluid, use &bCTRL+CLICK&r on the input slot and specify the allowed tags that can be used during autocrafting. Items or fluids from that tag are then marked as valid alternatives if the original item or fluid can’t be found in the storage network." + "" + "You can also define valid alternatives by clicking on the item or fluid and then clicking on “&nAlternatives&r”." + "" + "You can re-insert a &3Pattern&r in the output slot to modify and (possibly) &noverride&r it." + "" + "The &6Pattern Grid&r integrates with &bJEI&r so the player can use recipe transferring." + "" + "You don’t necessarily need the actual items in your storage network to create a &aPattern&r for it." + ] + id: "4C1079E3C126054C" + min_width: 400 + rewards: [{ + exclude_from_claim_all: true + id: "37779E320F0D72CA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "534356BE2B1B4BAC" + item: "refinedstorage:pattern_grid" + type: "item" + }] + x: -3.0d + y: -8.5d + } + { + dependencies: ["3928133420A9BA6F"] + id: "3E2EFE5EE594FB4D" + rewards: [{ + exclude_from_claim_all: true + id: "3470246343E78930" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2142D374610BF1B7" + item: "rebornstorage:advanced_wireless_transmitter" + type: "item" + }] + x: 2.0d + y: -1.0d + } + { + dependencies: ["5041D32679CA118B"] + id: "671F9D5C29A934C0" + rewards: [{ + exclude_from_claim_all: true + id: "4A953E4E27A6CD03" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "671DC8D5B13668F8" + item: "refinedstorage:wireless_fluid_grid" + type: "item" + }] + x: 0.5d + y: -1.5d + } + { + dependencies: ["5041D32679CA118B"] + id: "6A06FCDD5338B755" + rewards: [{ + exclude_from_claim_all: true + id: "701368D00016EFD1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0AA748EDBEB12829" + item: "refinedstorage:wireless_crafting_monitor" + type: "item" + }] + x: -1.5d + y: -1.5d + } + { + dependencies: [ + "6A06FCDD5338B755" + "671F9D5C29A934C0" + ] + id: "4628D5373AA80FE0" + rewards: [{ + exclude_from_claim_all: true + id: "4F97211A6B397D34" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "503E9C2D89CE502C" + item: { + Count: 1 + id: "rebornstorage:super_wireless_crafting_grid" + tag: { } + } + type: "item" + }] + x: -0.5357142857142847d + y: -0.6214285714285737d + } + { + dependencies: ["34C6AE4B8382A490"] + hide_dependency_lines: true + id: "5B86A9C08F2F2E8F" + rewards: [{ + exclude_from_claim_all: true + id: "1FDF859BD2ADE9F2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + count: 16L + id: "68628AF936507F26" + item: "refinedstorage:processor_binding" + type: "item" + }] + title: "Processor Binding" + x: -8.0d + y: -5.0d + } + { + dependencies: ["62E3FB695EC3FFB9"] + description: ["The &3Machine Casing&r is used to craft the various &dRefined Storage&r devices."] + id: "13A383F8F11B1C35" + rewards: [{ + exclude_from_claim_all: true + id: "12FBA5A5FB4C715C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "109B6B800964B625" + item: "refinedstorage:machine_casing" + type: "item" + }] + x: -5.0d + y: -7.5d + } + { + dependencies: ["34C6AE4B8382A490"] + description: ["Silicon can be obtained by smelting &3Quartz&r or &bCertus Quartz&r dust from &nAE2&r."] + id: "62E3FB695EC3FFB9" + rewards: [{ + exclude_from_claim_all: true + id: "3E44A46D3B44B7F6" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 16L + id: "48ED5F4C7AF4509D" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "forge:silicon" + } + } + title: "Silicon" + type: "item" + }] + title: "Silicon" + x: -6.5d + y: -8.0d + } + { + dependencies: ["38C693695D270B8B"] + description: [ + "&1The Multiblock Crafter&r is used to supplement or replace &bCrafters&r by allowing you to place &b&n78&r crafting Patterns per Reborn Storage &eCrafting Storage&r block, instead of the normal 9 Patterns per Refined Storage &2Crafter&r." + "" + "To increase speed of the multiblock crafter, you need to add more &dCrafting CPUs&r, and to increase the amount of stored Patterns, you need to add more &9Crafting Storages&r." + "" + "The multiblock crafter has a minimum size of &n&b3x3x4&r and a maximum size of &n&b16x16x16&r." + "" + "To create a multiblock crafter, the outside edges must consist of &6Crafting Frames&r, the outside walls must consist of &8Heat Conductors&r, and the center must consist of at least 1 &5Crafting CPU&r and 1 &cCrafting Storage&r." + ] + hide_dependency_lines: true + icon: "rebornstorage:multiblock_heat" + id: "1177E0D6D6488D80" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "6425B0E94AA00D7A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 2.0d + tasks: [ + { + count: 24L + id: "7502606A45C1FB9F" + item: "rebornstorage:multiblock_frame" + type: "item" + } + { + count: 10L + id: "37C391502002F247" + item: "rebornstorage:multiblock_heat" + type: "item" + } + { + id: "66C19FF6586F5A0F" + item: "rebornstorage:multiblock_cpu" + type: "item" + } + { + id: "0D0C22DD471840CF" + item: "rebornstorage:multiblock_storage" + type: "item" + } + ] + title: "The Multiblock Crafter" + x: 6.0d + y: -3.0d + } + { + dependencies: ["3B052108DAD029F3"] + description: [ + "The &cPortable Grid is&r a portable storage that isn’t connected to a network. It allows you to interact with a &aStorage Disk&r while not being connected to a network." + "" + "As soon as you insert a &aStorage Disk&r, you can access the contents of your &aStorage Disk&r in the grid view." + "" + "It’s essentially a &5Disk Drive&r and &dGrid&r in one block or item. It can be placed in the world, or, be used as a handheld device as well." + "" + "To place it in the world hold the &cPortable Grid&r while &n&bsneaking&r." + ] + id: "24FF3C75636F197F" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "16AD35FA7463D1A4" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3ECB1D3DB00CAD66" + item: { + Count: 1 + id: "refinedstorage:portable_grid" + tag: { } + } + type: "item" + }] + x: -3.0d + y: -6.5d + } + { + dependencies: ["7F3705767153FE11"] + description: [ + "The &4Relay&r acts as &3Cable&r, but can be turned on or off depending on the redstone configuration." + "" + "Devices connected after the &4Relay&r will be on or off depending if the &4Relay&r is on." + ] + id: "0054D586610CC752" + rewards: [{ + exclude_from_claim_all: true + id: "36CFBC904A42F73E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5EBD86DF2D3963D1" + item: "refinedstorage:relay" + type: "item" + }] + x: -9.0d + y: -1.5d + } + { + dependencies: ["4CA8D19FCE537859"] + description: [ + "The &1Fluid Interface&r is the same as an &eInterface&r but for fluids." + "" + "It has 2 internal tanks, one for &ninput&r and one for &noutput&r." + "" + "The &1Fluid Interface&r has an input slot to import the contents of fluid containers (like a filled bucket). You can also interact with the input tank by using pipes from other mods." + "" + "Click a fluid container (like a filled bucket) in the “&oOut&r” slot to configure the output fluid." + "" + "Use &nleft&r or &nright&r &bclick&r on the fluid to change the mB amount. Use &nshift&r to clear the fluid slot." + "" + "You can also interact with the output tank by using pipes from other mods." + ] + hide_until_deps_visible: true + id: "7BB366BDAA2E786B" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "551F4667239644CE" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "686FBC075B1B8947" + item: "refinedstorage:fluid_interface" + type: "item" + }] + x: 5.5d + y: -6.0d + } + { + dependencies: ["6C2F805FED9B1B4D"] + description: [ + "The &aDetector&r emits a redstone signal if an item, or fluid, count matches a given amount. It is also possible to be &nNBT&r or &ndamage&r sensitive." + "" + "Types of criteria:" + "- Criteria &o&l&6<&r Emits a signal when lower than the given amount." + "- Criteria &o&l&6>&r Emits a signal when higher than the given amount." + "- Criteria &o&l&6=&r Emits a signal when equal to the given amount." + "" + "When no item/fluid, is specified, the criteria won’t care about the count of a specific item/fluid, but rather the count of all items/fluids, in the storage." + "" + "When the &aDetector&r is in fluid mode, the amount given is in &bmillibuckets&r (mB). If you want to check for &n1 bucket&r of a fluid, use &o1000&r, not &o1&r." + ] + id: "7407982A0C66B69F" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "09070C02CD9B6B91" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "23DEC8A031E91437" + item: "refinedstorage:detector" + type: "item" + }] + x: 2.5d + y: -5.0d + } + { + dependencies: ["5041D32679CA118B"] + description: [ + "The &6Storage Monitor&r displays the current amount of a certain &bitem&r or &bfluid&r in your storage system." + "" + "Use &n&bSHIFT+right click&r on the block to open a &nGUI&r to configure the item or fluid being displayed." + ] + id: "569A93903C89051A" + rewards: [{ + exclude_from_claim_all: true + id: "23798FA4F6CD3131" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1B7B418A12A5E70D" + item: "refinedstorage:storage_monitor" + type: "item" + }] + x: -2.0d + y: -4.0d + } + { + dependencies: ["271745798EAA6DB7"] + description: [ + "A &1Network Card&r stores the coordinates of a &dNetwork Receiver&r." + "" + "The player has to insert the &1Network Card in&r a &eNetwork Transmitter&r." + ] + hide_until_deps_visible: true + id: "4DE55B68AB69EFC7" + rewards: [{ + exclude_from_claim_all: true + id: "5D34A729DF3432A0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "336CCFC764A3AA2C" + item: "refinedstorage:network_card" + type: "item" + }] + x: -7.5d + y: -7.0d + } + { + dependencies: ["4F6B8F1E46496251"] + description: [ + "The &8Security Card&r is bound to a player by &bright clicking&r." + "" + "The &8Security Card&r has to be inserted into a &cSecurity Manager&r, and can be configured from there as well." + ] + id: "23A5BD1206C9DA71" + rewards: [{ + exclude_from_claim_all: true + id: "4A4AE525FC550F9F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "785DABAACCAD6938" + item: "refinedstorage:security_card" + type: "item" + }] + x: -0.5d + y: -5.5d + } + { + dependencies: ["3B052108DAD029F3"] + description: [ + "The &7Filter&r is an item that can be used in any &eGrid&r." + "" + "In the &8Filter’s&r &bGUI&r, which can be opened by pressing &bRight+Click&r while holding the filter in hand, the player can specify which items and fluids can be visible." + "" + "The &eGrid&r can filter fluids in the &9Fluid Grid&r and items in any other &6Grid&r by toggling between item and fluid mode." + "" + "The &8Filter&r can be set in a &b&nwhitelist&r or &n&0blacklist&r mode, too." + ] + id: "4CD2762D5F14616E" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "6F292D0DC7528E8A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1EEA93B81B8711EF" + item: "refinedstorage:filter" + type: "item" + }] + x: -4.0d + y: -6.5d + } + { + dependencies: ["248C80D834309577"] + description: [ + "The &2Regulator Upgrade&r is an upgrade that can be inserted into an &eExporter&r to keep certain items or fluids in stock in the connected inventory." + "" + "It will try to keep the connected inventory stocked by using items or fluids from the storage network." + "" + "As soon as the upgrade is inserted, you can &bRight+Click&r on a filtered item or fluid in the &eExporter&r &bGUI&r to configure the amount to keep in stock." + "" + "Additionally, the &2Regulator Upgrade&r can be combined with a &bCrafting Upgrade&r to start autocrafting tasks when the stock from the storage network runs out." + "" + "By using this upgrade, the amount of &cFE&r/t that this device draws will increase." + ] + id: "0FF90163DE483308" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "430ADAEBE4EC4F76" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "47D6A72DA2DBB493" + item: "refinedstorage:regulator_upgrade" + type: "item" + }] + x: 8.5d + y: 1.5d + } + { + dependencies: ["248C80D834309577"] + description: [ + "The &2Fortune Upgrade&r will make the &eDestructor&r use a certain fortune level (depending on which &2Fortune Upgrade&r you have) on the block it is breaking." + "" + "This upgrade has 3 versions:" + "- &o&bFortune I&r" + "- &o&bFortune II&r" + "- &o&bFortune III&r" + "" + "By using this upgrade, the amount of &cFE&r/t that this device draws will increase." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "0392CD3A3ACA67B6" + rewards: [{ + exclude_from_claim_all: true + id: "5044651005FE57E2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "0717C9D96928927E" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "refinedstorage:fortune_1_upgrade" + } + { + Count: 1b + id: "refinedstorage:fortune_2_upgrade" + } + { + Count: 1b + id: "refinedstorage:fortune_3_upgrade" + } + ] + } + } + title: "Fortune Upgrade" + type: "item" + }] + x: 7.5d + y: 1.5d + } + { + dependencies: ["248C80D834309577"] + description: [ + "The &2Silk Touch Upgrade&r makes the &eDestructor&r use &bSilk Touch&r on the blocks that it is breaking." + "" + "By using this upgrade, the amount of &cFE&r/t that this device draws will increase." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "55233C139BCB0E61" + rewards: [{ + exclude_from_claim_all: true + id: "4E22E21E8BE3BDDB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "545E7FE2A38D4A1F" + item: "refinedstorage:silk_touch_upgrade" + type: "item" + }] + x: 9.5d + y: 1.5d + } + { + dependencies: ["6408C889100DD050"] + id: "09620DD595AC74C4" + rewards: [{ + exclude_from_claim_all: true + id: "18A93F799025BFE6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "4C20EAF5C64FBF78" + item: { + Count: 1 + id: "extradisks:65536k_storage_disk" + tag: { } + } + type: "item" + }] + x: 7.0d + y: -8.4d + } + { + dependencies: ["09620DD595AC74C4"] + id: "35C0D0CA4B31913C" + rewards: [{ + exclude_from_claim_all: true + id: "694ECE0278781565" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3F7587DB7BDA3603" + item: { + Count: 1 + id: "extradisks:262144k_storage_disk" + tag: { } + } + type: "item" + }] + x: 7.7d + y: -8.4d + } + { + dependencies: ["35C0D0CA4B31913C"] + id: "6D87A1C6831BE313" + rewards: [{ + exclude_from_claim_all: true + id: "106EE36516606497" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "39194984ECCA870C" + item: { + Count: 1 + id: "extradisks:1048576k_storage_disk" + tag: { } + } + type: "item" + }] + x: 8.4d + y: -8.4d + } + ] + title: "&3&oRefined Storage" +} diff --git a/minecraft/config/ftbquests/quests/chapters/repurposed_structures.snbt b/minecraft/config/ftbquests/quests/chapters/repurposed_structures.snbt new file mode 100644 index 0000000..7673fd0 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/repurposed_structures.snbt @@ -0,0 +1,317 @@ +{ + autofocus_id: "745B2C47B4F0BDE1" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "repurposed_structures" + group: "3A1C74A49BDDD6E1" + icon: { + Count: 1 + id: "minecraft:filled_map" + tag: { + map: 0 + } + } + id: "468A3F1443352E69" + order_index: 4 + quest_links: [ ] + quests: [ + { + id: "3A544C9045B712AC" + rewards: [{ + id: "210365294FC1855A" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "octagon" + subtitle: "Enter a Jungle Fortress" + tasks: [{ + advancement: "repurposed_structures:fortress_jungle" + criterion: "" + id: "7CCB462BA4F6545D" + title: "Decaying Glory" + type: "advancement" + }] + x: 0.95d + y: 0.05d + } + { + id: "2C6E064F0477C22E" + rewards: [{ + id: "1A4C20EF351C6D6A" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "octagon" + subtitle: "Find all 5 ruins, in RS." + tasks: [{ + advancement: "repurposed_structures:ruins" + criterion: "" + id: "5BCA4846D36F32E6" + title: "Ruined Ruins" + type: "advancement" + }] + x: -0.9d + y: 0.0d + } + { + id: "4F84CEA73D42D0E2" + rewards: [{ + id: "7F7EED5A64336D1D" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "diamond" + subtitle: "Find an End themed Ruined Portal!" + tasks: [{ + advancement: "repurposed_structures:ruined_portal_end" + criterion: "" + id: "7874EE6D20E22A58" + title: "The Useless Portal" + type: "advancement" + }] + x: 2.1d + y: 0.0d + } + { + id: "745B2C47B4F0BDE1" + rewards: [{ + id: "53FEDC901F8E8EC3" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "octagon" + subtitle: "Find all 5 Witch Huts, in RS." + tasks: [{ + advancement: "repurposed_structures:witch_huts" + criterion: "" + icon: "reliquary:witch_hat" + id: "1434A844E0B9942D" + title: "Whole lot of Witches" + type: "advancement" + }] + x: 0.0d + y: -0.85d + } + { + id: "61F90CE9DDFC53DD" + rewards: [{ + id: "7FFC02A76D03ADFB" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "diamond" + subtitle: "Find all 7 Mansions, in RS." + tasks: [{ + advancement: "repurposed_structures:mansions" + criterion: "" + icon: "minecraft:totem_of_undying" + id: "111DD5965A994125" + title: "Luxury Living" + type: "advancement" + }] + x: 0.0d + y: -2.1d + } + { + id: "04D5EAFAC5D4EC03" + rewards: [{ + id: "69AE92194E363997" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "pentagon" + subtitle: "Find all 14 Mineshafts, in RS." + tasks: [{ + advancement: "repurposed_structures:mineshafts" + criterion: "" + id: "02FFEF6F49CB322B" + title: "Mining Away" + type: "advancement" + }] + x: 3.1d + y: 0.0d + } + { + id: "6D8CBF794720C12A" + rewards: [{ + id: "3586D352B31D3847" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "pentagon" + subtitle: "Enter a Nether City." + tasks: [{ + advancement: "repurposed_structures:city_nether" + criterion: "" + icon: "minecraft:blaze_powder" + id: "7266C75C65A8EF94" + title: "Blazing Cities" + type: "advancement" + }] + x: 0.0d + y: -3.1d + } + { + id: "0DD0253856B7F461" + rewards: [{ + id: "4BBFB39F19E3E473" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "octagon" + subtitle: "Enter an Underground Bastion." + tasks: [{ + advancement: "repurposed_structures:bastion_underground" + criterion: "" + id: "51D181B1EF0373FB" + title: "Bastions, Evil, and Bones..." + type: "advancement" + }] + x: 0.0d + y: 0.9d + } + { + id: "695017EA378553CC" + rewards: [{ + id: "630DE61A00541DF5" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "hexagon" + subtitle: "Find all 4 Shipwrecks, in RS." + tasks: [{ + advancement: "repurposed_structures:shipwrecks" + criterion: "" + id: "349D63F3B93A5814" + title: "Stranded in the Caribbean Sea" + type: "advancement" + }] + x: 1.1d + y: -1.05d + } + { + id: "4AECF216A06D7901" + rewards: [{ + id: "09EF109AF591CDD4" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "hexagon" + subtitle: "Find all 11 Villages, in RS." + tasks: [{ + advancement: "repurposed_structures:villages" + criterion: "" + id: "4866DB0428C3F428" + title: "Friendly Neighborhood" + type: "advancement" + }] + x: 1.1d + y: 1.05d + } + { + id: "07361D1698C7A086" + rewards: [{ + id: "30038E479751424C" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "hexagon" + subtitle: "Find all 11 Pyramids, in RS." + tasks: [{ + advancement: "repurposed_structures:pyramids" + criterion: "" + id: "42215FCEB61B4925" + title: "Mummies Buried Deep" + type: "advancement" + }] + x: -1.05d + y: 1.05d + } + { + id: "5EE146C7CF96C91D" + rewards: [{ + id: "7A586F5E0ABECCA8" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "hexagon" + subtitle: "Enter an Overworld City." + tasks: [{ + advancement: "repurposed_structures:city_overworld" + criterion: "" + icon: "mcwlights:double_street_lamp" + id: "7F1722AA0FE1A3A3" + title: "Skyward Cities" + type: "advancement" + }] + x: -1.05d + y: -1.05d + } + { + id: "2265BBBBDBCBAF4F" + rewards: [{ + id: "621CCBCF8591CCDC" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "diamond" + subtitle: "Find all 5 Temples, in RS." + tasks: [{ + advancement: "repurposed_structures:temples" + criterion: "" + icon: { + Count: 1 + id: "tombstone:decorative_tombstone" + tag: { + model_texture: 0 + } + } + id: "4988F232DA517307" + title: "Tomb Raiding" + type: "advancement" + }] + x: 0.0d + y: 2.1d + } + { + id: "1EDF88A929EDCAC8" + rewards: [{ + id: "591F5EAE6F848D11" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "diamond" + subtitle: "Find all 14 Outposts, in RS." + tasks: [{ + advancement: "repurposed_structures:outposts" + criterion: "" + id: "1C8ED60DFC179C43" + title: "View from Above" + type: "advancement" + }] + x: -2.1d + y: 0.0d + } + { + id: "1DE1CAFA879F02A5" + rewards: [{ + id: "27CAC1D1FAC6252D" + item: "lootbundles:loot_bundle" + type: "item" + }] + shape: "pentagon" + subtitle: "Find 2 Strongholds, in RS." + tasks: [{ + advancement: "repurposed_structures:strongholds" + criterion: "" + id: "7700AD34EB990799" + title: "Ways to The End?" + type: "advancement" + }] + x: -3.1d + y: 0.0d + } + ] + subtitle: ["Explore and discover all of the lost ancient structures."] + title: "&3&oRepurposed Structures" +} diff --git a/minecraft/config/ftbquests/quests/chapters/rftools.snbt b/minecraft/config/ftbquests/quests/chapters/rftools.snbt new file mode 100644 index 0000000..cda60b9 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/rftools.snbt @@ -0,0 +1,2577 @@ +{ + autofocus_id: "7DF063A7E5F71A24" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "rftools" + group: "69B9F7247002FE35" + icon: "rftoolsutility:crafter3" + id: "79702386FC1072FA" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -0.8214285714285836d + y: -8.638392857142847d + } + { + click: "https://www.youtube.com/watch?v=o4MPt9MfRLs" + height: 0.5d + hover: ["You&cTube&r Tutorial: &2xNet&r &oBasics"] + image: "xnet:block/cable0/connector" + rotation: 45.0d + width: 0.5d + x: 9.5d + y: -11.5d + } + { + click: "Automating XNet Using Logic Channels" + height: 0.5d + hover: ["You&cTube&r Tutorial: &oAutomating&r &2xNet&r &ousing logic channels"] + image: "xnet:block/cable2/connector" + rotation: 45.0d + width: 0.5d + x: 9.5d + y: -9.5d + } + { + click: "https://www.youtube.com/watch?v=Y4adJ7dxXgY" + height: 0.5d + hover: ["You&cTube&r Tutorial: &2xNet&r &oRouters"] + image: "xnet:block/cable1/connector" + rotation: 45.0d + width: 0.5d + x: 9.5d + y: -10.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 7.5d + y: -3.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -9.0d + y: -13.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 1.5d + y: -3.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -10.0d + y: -4.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -3.5d + y: -4.5d + } + ] + order_index: 11 + quest_links: [ ] + quests: [ + { + dependencies: ["5BACA82D1436C781"] + description: [ + "&9RFTools&r is a technological mod which main feature is the ability to create and maintain dimensions using &cRF&r energy." + "" + "This includes:" + "" + "- &o&bRFTools Utility&r" + "- &o&bRFTools Power&r" + "- &o&bRFTools Builder&r" + "- &o&bxNet&r" + ] + icon: "rftoolsbase:manual" + id: "6C41E2026808192B" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "71C4B390D763A859" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oMechanical Crafter&r quest*" + tasks: [{ + id: "322920B144ECD8CB" + type: "checkmark" + }] + title: "Welcome to &cRFTools" + x: -1.5d + y: -8.0d + } + { + dependencies: ["6C41E2026808192B"] + description: [ + "The &dSmart Wrench&r can be used to easily remove tech blocks and also select blocks for &o&bspecial functionality&r." + "" + "Use as a normal wrench: &aSneak+Right+click&r to pick up and &eRight+click&r to rotate. &eRight+click&r in the air to change mode." + "" + "If the wrench is in &2Select Mode&r, then it can be used to perform specialized operations on (&o&bfor example&r) blocks like the &3Shield Projector&r." + ] + id: "60FAF6D4F7C0045F" + rewards: [{ + exclude_from_claim_all: true + id: "2048ACD886605EA1" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "56F9A2549A76DD88" + item: "rftoolsbase:smartwrench" + type: "item" + }] + x: 1.5d + y: -8.0d + } + { + dependencies: ["60FAF6D4F7C0045F"] + description: ["The &9Machine Frame&r is a basic ingredient by &cRFTools&r mod. It is used to craft various machines in this mod."] + id: "7DF063A7E5F71A24" + rewards: [{ + exclude_from_claim_all: true + id: "4D81973E5F34FD0D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "6E6214A804561D5B" + item: "rftoolsbase:machine_frame" + type: "item" + }] + title: "&bMachine Frame" + x: 4.5d + y: -8.0d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: [ + "&6Crafters&r are machines that will automatically craft items given a recipe, the necessary components and &cRF&r power. Multi-step crafting can be done in a single machine, limited only by the number of recipe slots." + "" + "• &o&aCrafter&r: &oTier 1&r can remember &o&b2&r recipes." + "• &o&cCrafter&r: &oTier 2&r can remember &o&b4&r recipes." + "• &o&dCrafter&r: &oTier 3&r can remember &o&b8&r recipes." + "" + "The &6Crafter's&r interface consists of &o&b4&r main parts. At the &o&btop-left&r is a list of memorised recipes. At the &o&btop-right&r is a crafting grid used to program in the recipes. In the &o&bmiddle&r is the &9input&r inventory and the &coutput&r is at the &o&bbottom-left&r. There are also several buttons and a filter slot." + "" + "• The &eKeep Inventory&r toggle instructs the crafter to always leave one item of each type in the &9input&r inventory." + "• The &eCrafting Destination&r toggle instructs the crafter to deliver its output to the &9input&r inventory. Very useful in &b&omulti-step crafting&r." + "• The &3Filter&r slot accepts an &2RFTools Storage Filter Module&r which is used to prevent unwanted items entering the &6Crafter&r." + "• The &9R&r button tells the &6Crafter&r to remember the current position of items in the &9input&r and &coutput&r inventories. This is useful for ensuring that there's always space for components in &o&bmulti-step crafting&r." + "• The &3F&r button tells the &6Crafter&r to forget the memorised inventory layout." + "• The &cRedstone Mode&r button is used to toggle between &o&bActive with&r &cRedstone&r, &o&bActive without&r &cRedstone&r and &o&bIgnore&r &cRedstone&r." + "• The &dSpeed&r button toggles between normal crafting speed and &o&bturbo&r." + ] + id: "2A7DBB02C3F24F3C" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "694D8D3C10FC886C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "24563437B84A65D0" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(rftoolsutility:crafter1)item(rftoolsutility:crafter2)item(rftoolsutility:crafter3))" + } + } + title: "crafters" + type: "item" + }] + title: "Crafters" + x: 7.0d + y: -8.0d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: [ + "The &6Builder&r consumes &cRF&r to construct areas in the world with blocks fed into its &o&binventory&r or relocating preexisting areas. " + "" + "Unless specified with a complex &9Shape Card&r, the &6Builder&r will draw blocks at random from the &asupply chest&r on &ntop&r. &9Shape Cards&r are required to instruct the &6Builder&r on where to work." + "" + "&eSneak+Right click&r your &9Shape Card&r on the &6Builder&r, and then go &eSneak+Right click&r it on the &o&bfirst&r and &o&bsecond&r corner of the area you want to work with." + "" + "Now you can also &eRight click&r the &9Shape Card&r into the &o&bair&r to configure it further, changing the &nshape&r, the &nsize&r, the &ndimensions&r and &o&bect.&r." + "" + "Once you’re done, place the &9Shape Card&r into the &6Builder&r to &2start&r working! Depending on which card you have, the &6Builder&r will &o&bbuild&r in the selected area, &o&bquarry&r out the selected area, &o&bpump fluids&r and &o&bect.&r." + "" + "In all these cases, you’ll need &cPower&r and an &aInventory&r &nabove&r or &nbelow&r the &6Builder&r to &ngrab&r/&nput&r blocks into." + "" + "Clicking the &dlifebuoy icon&r in the &6Builder&r will activate &o&bpreview mode&r, and you’ll be able to see an outline of the area you’re working with." + ] + id: "682086057646D4A9" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "3A3C0FA22C737118" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0DF35EA9DA7E7454" + item: "rftoolsbuilder:builder" + type: "item" + }] + x: 4.5d + y: -5.5d + } + { + dependencies: ["682086057646D4A9"] + description: ["The &eDefault Shape Card&r is used for the &6Builder&r. The &eBuilder&r will place blocks from its inventory in the selected area. Also can be used for describing a shape for the &dShield Projector&r."] + id: "285F5229F9886964" + rewards: [{ + exclude_from_claim_all: true + id: "5830C51D9F1FB561" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 1.5d + tasks: [{ + id: "4D232005308C6653" + item: "rftoolsbuilder:shape_card_def" + type: "item" + }] + x: 4.5d + y: -4.0d + } + { + dependencies: ["285F5229F9886964"] + description: ["The various &2Pump Card&r will &o&bpump up liquids&r from the selected area, so you’ll need some sort of &9Tank&r &nabove&r or &nbelow&r the &6Builder&r."] + id: "1577F5904F74CAC2" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "4BB03AF391AF62B3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "10D0F13092D018DE" + item: "rftoolsbuilder:shape_card_pump" + type: "item" + }] + x: 4.0d + y: -3.0d + } + { + dependencies: ["285F5229F9886964"] + description: [ + "The &2Quarry Card&r describes a shape for the &eBuilder&r. In addition to the shape you can also specify that you want to void certain blocks." + "" + "There are many different variations of the &2Quarry Card&r, like &aClearing&r/&nnon&r-&aClearing&r, &6Fortune&r or &dSilk Touch&r." + "" + "The &aClearing Cards&r will also actually dig the block and leave a hole in the world, while the normal &2Quarry Cards&r will replace what they dig with &7Dirt&r. You can also Configure the Card to &nvoid&r certain blocks, like &3stones&r or &7dirt&r." + ] + id: "0BEF5569A44508CC" + min_width: 300 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "7562FBC6CC5A8C61" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "04A6DEF1E226A3F1" + item: "rftoolsbuilder:shape_card_quarry" + type: "item" + }] + x: 3.5d + y: -3.5d + } + { + dependencies: ["285F5229F9886964"] + description: ["With the &0Void Card&r you can &o&bvoid ares&r with the &6Builder&r."] + id: "5D55CF2A574853CF" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "5E02568B3AC70C0E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "1A3E24855E306C7D" + item: "rftoolsbuilder:shape_card_void" + type: "item" + }] + x: 5.5d + y: -3.5d + } + { + dependencies: ["6C41E2026808192B"] + description: [ + "&3Machine Bases&r are similar to &9Machine Frames&r in that they are a crafting material, however the resulting machines are slightly different." + "" + "&3Machine Bases&r produce machines that are a &o&boquarter of a block high&r, and usually have some form of &credstone&r &eoutput&r or &9input&r." + "" + "When you place one of these machines, the direction it faces is determined by which edge of the block your cursor is closest to." + "" + "It may help to imagine an &o&bX&r on the side of the block you are placing the machine on, then think about which 'quarter' of the &o&bX&r you're looking at." + "" + "The &eoutput&r will be facing this direction and the &9input&r will come from the opposite direction." + "" + "This is particularly useful for placing these machines in &o&bcramped spaces&r or on &o&bwalls&r - which is one of the more convenient features of these blocks." + "" + "Of course, if you don't like the direction the block is facing in, you can always &dWrench it&r - just &eRight+click&r with the wrench in &6Wrench Mode&r to change the direction it's facing in." + "" + "The &3Machine Base&r does nothing on its own, but is used in many recipes as the base for other blocks." + ] + id: "5AF02F4038D42793" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "311B7F54368FF73D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + size: 2.0d + tasks: [{ + id: "097530CA252C35ED" + item: "rftoolsbase:machine_base" + type: "item" + }] + title: "&3Machine Base" + x: -5.0d + y: -8.0d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "The &2Counter&r is a simple block that will count &credstone&r &o&bpulses&r and emit a &credstone&r &o&bsignal&r when it reaches a certain number. Then it starts over." + "" + "Its &o&bGUI&r has two values - '&2Counter&r' (the maximum number it can count up to) and '&9Current&r' (the number it's currently at)." + "" + "Once &9Current&r is equal to &2Counter&r, it emits a &credstone&r &o&bsignal&r. Another &credstone&r &o&bpulse&r will turn off the signal and reset &2Counter&r to &o&b0&r." + ] + id: "5BCE68F5A09D41F5" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "34B34BD48992635A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "7428E84402337000" + item: "rftoolsutility:counter" + type: "item" + }] + x: -5.5d + y: -7.0d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "The &2Inventory Checker&r emits a &credstone&r &o&bsignal&r if the inventory behind it has more than a certain number of items in a &nspecified slot&r." + "" + "Both the slot and the item can be defined in the &b&oGUI&r, alongside an optional &aItem Tag&r, and whether to ignore or &o&omatch&r the &o&bdamage&r of the &o&bspecified&r item. These can also be left blank to match any item that goes in the slot." + "" + "&dRemember&r, slot counts start at &o&bzero&r!" + ] + id: "6D7333BF4080FD46" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "58244C4F1C83D15F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "1893EFDE81DB4E39" + item: "rftoolsutility:invchecker" + type: "item" + }] + x: -4.5d + y: -9.0d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "&cRedstone Transmitter&r will wirelessly send out a &o&bredstone signal&r on a specific &dchannel&r when it gets a &o&bredstone signal&r. Use this in combination with the &eRedstone Receiver&r block." + "" + "If you place this block down it will create a &dchannel&r. You can also link this &cTransmitter&r to existing &dchannels&r by &aRight clicking&r on another &cTransmitter&r or &eReceiver&r." + "" + "Use a &eRedstone Receiver&r to receive redstone signals. Using the &o&bGUI&r of this block you can give this &dchannel&r a name which makes it &neasier to recognize&r." + "" + "&eRedstone Receiver&r will receive a &o&bredstone signal&r from a linked &cRedstone Transmitter&r. To link this &eReceiver&r with a &cTransmitter&r right-select the &cTransmitter&r (or another linked &eReceiver&r) with this block." + "" + "Enabling '&nanalog mode&r' causes the power level of &o&btransmitted signals&r to be preserved at the receiving end." + "" + "Use a &cRedstone Transmitter&r or a &3Button Module&r in a &6Screen&r to send &o&bredstone signals&r." + ] + id: "4ABAA892B2FF4921" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "314163D4D156D9B6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [ + { + id: "1B2832B3BFFE885C" + item: "rftoolsutility:redstone_transmitter" + type: "item" + } + { + id: "297E600E242A0D5A" + item: "rftoolsutility:redstone_receiver" + type: "item" + } + ] + title: "Redstone Transmitter \\& Receiver" + x: -4.0d + y: -8.5d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "The &2Sensor&r can detect various things directly in front of its &9input&r (either &o&b1&r block, &o&b3&r blocks or &o&b5&r blocks)." + "" + "It can detect blocks being placed, &o&acrop growth level&r, &o&3number of entities&r and so on." + ] + id: "5C7EC68C8BF7AFE8" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "7BE66FF7273BF4EC" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "6217DB5FB29F70FE" + item: "rftoolsutility:sensor" + type: "item" + }] + x: -5.5d + y: -9.0d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "This block has &o&b3&r &credstone&r &9inputs&r and &o&b1&r &eoutput&r." + "" + "Using the &o&bGUI&r you can make &o&bany possible combination&r of those three inputs into a single output." + "" + "For every &o&binput combination&r you can set the &eoutput&r to &coff&r, &eon&r or &3keep&r. In '&3keep&r' the state of the &eoutput&r will be the same as it was before the &9input&r was &o&bswitched&r to this state." + ] + id: "20ACD98053928296" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "21075B2D345FC12A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "2417810F96A040E0" + item: "rftoolsutility:logic" + type: "item" + }] + x: -4.5d + y: -7.0d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "The &2Analog&r can do calculations on an input signal based on the comparison result of the &o&bA&r and &o&bB&r inputs." + "" + "&aRight clicking&r on the block will bring up its &o&bGUI&r, with a picture of the &eOutput&r (&o&b0&r), &9Input&r (&o&bI&r), and the two side inputs (&o&bA&r) and (&o&bB&r)." + "" + "Below the picture of the &2Analog&r, we have three possible conditions: &o&bA&r = &o&bB&r, &o&bA&r is &cLess&r than &o&bB&r, and A is &9Greater&r than &o&bB&r." + "" + "In all three conditions, we can do some basic arithmetic on the &9input&r, allowing us to multiply the strength of the &9input&r, and add to it as well. For example, you could take the &o&binput strength, double it, and add 10&r." + "" + "If you want to &o&bdivide&r the signal, or take points off, you can multiply it by a number &cless&r than &o&b1&r, or add a negative number respectively. For example, multiplying the strength by &o&b0.5&r is equivalent to dividing it by two, and adding &o&b-10&r is the same as taking away &o&b10&r." + "" + "Since we're working with &credstone signals&r here, anything &nabove 15&r or &nbelow 0&r is capped to full strength signal or no signal, respectively." + "" + "&o&bIsn't math fun?&r" + ] + id: "6C052AB11C771F27" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "424C0907A47E1B01" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "43DF5DE3750E6674" + item: "rftoolsutility:analog" + type: "item" + }] + x: -5.0d + y: -9.5d + } + { + dependencies: ["5AF02F4038D42793"] + description: ["This block simply displays a number from &o&b0&r to &o&bF&r (&3hexadecimal&r) corresponding to the strength of the &9input&r &o&bsignal&r."] + id: "1AFE50D6BF0DB19A" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "7E2DA4AED5FFF988" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "29D76E3E788E29A2" + item: "rftoolsutility:digit" + type: "item" + }] + x: -5.0d + y: -6.5d + } + { + dependencies: ["2ACF97FF7EE9A9B7"] + description: [ + "&2xNet&r is an &o&aitem&r, &o&9fluid&r, &o&cenergy&r, and &o&3information&r transportation mod that is all about efficiency." + "" + "The &eCable System&r is designed in such way that you should be able to make huge &eCable Systems&r without any overhead. &eCables&r (for example) are not tile entities and have very simply models. This makes transporting items accross a cable of &o&b12,000&r blocks long just as efficient as doing it on a &o&b5&r block long &eCable&r." + "" + "At the &6core&r of this mod is a &dNetwork&r. A &dNetwork&r is basically a single section of connected &eCables&r connected (via &nconnectors&r) to various blocks (chests, machines, ...) and one &6Controller&r. The &6Controller&r is the block that does the actual work for that &dNetwork&r." + "" + "Every &dNetwork&r can have &o&b8&r &1Channels&r &o&bmaximum&r. Every &1Channel&r has a type (&cenergy&r, &aitem&r, &9fluid&r, &blogic&r, ...) that you can configure in the &6Controller&r. Depending on the type of a &1Channel&r and the machines that are connected to that &1Channel&r various things can happen." + ] + hide_dependency_lines: true + id: "6DEF153CC59F8027" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "1CBDAEEA10A11BBB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "616450752E51E49F" + item: "xnet:controller" + type: "item" + }] + title: "&2xNet" + x: 8.0d + y: -13.0d + } + { + dependencies: ["6DEF153CC59F8027"] + description: [ + "&eSneak+Right click&r this on a normal &cConnector&r to upgrade it to an &dAdvanced Connector&r." + "{@pagebreak}" + ] + id: "365A6D42421BE3FD" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "2125F4554E32821E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "33A2B9FB5D605328" + item: "xnet:connector_upgrade" + type: "item" + }] + x: 6.5d + y: -13.0d + } + { + dependencies: ["6DEF153CC59F8027"] + description: [ + "If you want to go beyond the &o&b8&r &aChannel&r limit or you want to connect multiple distinct &dNetworks&r you can make a &5Routing Network&r using &2Routers&r." + "" + "A single &2Router&r is already sufficient to connect up to &o&b6&r (&neach side&r of the &2Router&r) &aChannels&r but using routing &1Cables&r and routing &cConnectors&r you can also make a routing &dNetwork&r out of &2Routers&r." + "" + "Note that on a &nsingle&r routing &dNetwork&r you can only have &o&b32&r published &aChannels&r." + ] + id: "03E0E9E4FF65A1D0" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "1315604FF60C327A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "61BF09383666D7EE" + item: "xnet:router" + type: "item" + } + { + id: "6A83AF02E3C02A1E" + item: "xnet:wireless_router" + type: "item" + } + ] + title: "&eThe Routers" + x: 8.0d + y: -11.5d + } + { + dependencies: ["03E0E9E4FF65A1D0"] + description: [ + "An &3Antenna Base&r has to be placed on top of a &6Wireless Router&r." + "" + "To increase transmission range place &o&b1&r or &o&b2&r &aAntennas&r on &ntop&r of an &3Antenna Base&r." + "&o&b1&r Antenna increases range by &o&b100&r blocks and consumes &o&b20&r &cRF&r/t/&9channel&r." + "&o&b2&r Antennas increases range by &o&b500&r blocks and consumes &o&b50&r &cRF&r/t/&9channel&r." + "" + "An &dAntenna Dish&r can increase very extreme wireless range by placing on &ntop&r of an &3Antenna Base&r." + "The &cPower&r usage will also be increased to &o&b200&r &cRF&r/t/&9channel&r." + ] + id: "5816B362FAC90FD2" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "5E4F1594CAE74F5F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "0119D232828253CB" + item: "xnet:antenna_base" + type: "item" + } + { + id: "7088C0F1F3DDDAC4" + item: "xnet:antenna" + type: "item" + } + { + id: "11370737A382FF09" + item: "xnet:antenna_dish" + type: "item" + } + ] + title: "&9The Antenna" + x: 8.0d + y: -10.5d + } + { + dependencies: ["6DEF153CC59F8027"] + id: "6F55900506DA5023" + rewards: [{ + exclude_from_claim_all: true + id: "1C077FB4B53C81FF" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "3D39D681526F2047" + item: "xnet:redstone_proxy" + type: "item" + } + { + id: "76AF1DC32A3A9068" + item: "xnet:redstone_proxy_upd" + type: "item" + } + ] + title: "&cThe Redstone Proxys" + x: 7.0d + y: -12.0d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: [ + "&cRFTools&r offers a quick and easy way to &o&bteleport&r around the world. The two main blocks you’ll need are &3Transmitters&r and &6Receivers&r." + "" + "The &3Matter Transmitter&r is a device that can &o&bteleport players&r to any other &6Matter Receiver&r. Use the &9Dialing Device&r to dial a &3Matter Transmitter&r to a &6Receiver&r." + "" + "&dInfusing&r this machine causes &o&breduced power consumption&r and &o&bincreased teleportation speed&r." + "" + "The &6Matter Receiver&r is &o&bwhere a player can teleport too&r from a &3Matter Transmitter&r." + "" + "&dInfusing&r this machine causes &o&breduced power consumption&r." + "" + "Note that it is &nvery important&r that the &6Matter Receiver&r has &nenough power&r. If not the player risks &nbad effects&r when teleporting." + "" + "With the &9Dialing Device&r you can link a &3Matter Transmitter&r to a &6Matter Receiver&r. Note that the &3Matter Transmitter&r &nhas to be nearby&r but the &6Matter Receiver&r &ncan be very far away&r (even in another &o&bdimension&r)." + "" + "&dInfusing&r this machine &o&breduces power usage&r." + "" + "To &o&bdial&r you first have to &o&bselect&r a &3Matter Transmitter&r. If there is only one nearby then it will be &o&bautomatically selected&r. After that you have to &o&bselect&r a &6Matter Receiver&r (in the &nbottom&r list) and chose either '&o&bDial&r' or '&o&bDial Once&r'. With '&o&bDial Once&r' the connection will be interrupted as soon as someone teleports." + "" + "Step on it and &o&bWoosh&r! &2Teleportation&r!" + ] + id: "5B8997EA5EC2D7BB" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "416D59E52A2EB952" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "3A6F6D0412C6A287" + item: "rftoolsutility:matter_transmitter" + type: "item" + } + { + id: "116D82288F3E9FD4" + item: "rftoolsutility:matter_receiver" + type: "item" + } + { + id: "0E8561CDB7DF67F9" + item: "rftoolsutility:dialing_device" + type: "item" + } + ] + x: 6.5d + y: -6.5d + } + { + dependencies: [ + "7DF063A7E5F71A24" + "7277E270DAF637A6" + ] + description: [ + "The &2Machine Infuser&r uses &dDimensional Shards&r to improve the efficiency of a lot of machines." + "" + "For most things, &dinfusing&r them will reduce their &cpower&r requirements. Some devices will have &o&badditional benefits&r from &dinfusion&r." + "" + "Take any of those machines, place them into the &2Machine Infuser&r with &o&b4&r stacks of &dDimensional Shards&r and some &cpower&r, and you’ll have successfully &dinfused&r that machine, unlocking said bonus and powering up your machine!" + "" + "&dInfusing&r the &2Infuser&r will cause it to use &b&oless power&r." + ] + id: "71405CB3BB7606C1" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "023D5786BBB437D1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "4AE45060837F5F5B" + item: "rftoolsbase:machine_infuser" + type: "item" + }] + x: 1.5d + y: -5.5d + } + { + dependencies: ["5B8997EA5EC2D7BB"] + description: [ + "&2Teleportation&r is cool and all, but what if you could teleport to your &6Receivers&r without having to place down a &3Transmitter&r every time?" + "" + "Introducing the &cCharged Porter&r! &eSneak+Right click&r on any &6Receiver&r you can access to save it into the &cPorter&r." + "" + "Providing the &cPorter&r has power, you can then simply &eRight click&r it and &o&bteleport&r there &nimmediately&r!" + "" + "While the regular &cPorter&r can only store &o&bone&r &6Receiver&r, the &6Advanced&r one can have up to &o&b8&r, and you can switch between them by &eSneak+Right clicking&r it into the &o&bair&r." + "" + "Try it out! It's gonna be &o&9awesome&r!" + ] + id: "389FA0ADD01A73AC" + min_width: 300 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "05E80BC20037BD78" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "2D19A5CE1761834F" + item: { + Count: 1 + id: "rftoolsutility:advanced_charged_porter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.5d + y: -6.5d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: [ + "&2Powercells&r store massive amounts of &cPower&r." + "" + "They can be placed either individually, or they can be placed next to one another to form a &o&bmultiblock structure&r. &2Powercells&r will automatically distribute &cRF&r between themselves and their neighbors, and will join up into a multiblock &nregardless of tier&r." + "" + "Powercells have no &o&bUI&r, but can be configured to &9input&r, &eoutput&r, or ignore power &o&bby hitting the desired side&r with a &3Smart Wrench&r in &dWrench Mode&r. &9Blue&r is input, &eYellow&r is output, and a &nblank side is neither&r." + "" + "• &3Powercell&r (&olow&r) can hold &o&b500,000&r&cRF&r each" + "• &8Powercell&r (&ohigh&r) can hold &o&b4,000,000&r&cRF&r each" + "• &0Powercell&r (&ohigh&r) can hold &o&b20,000,000&r&cRF&r each" + ] + id: "1FE11C4B88FBDC4E" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "462BB0B4FC2F8602" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1F0859E3A18D5FC6" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "rftoolspower:power_core1" + } + { + Count: 1b + id: "rftoolspower:power_core2" + } + { + Count: 1b + id: "rftoolspower:power_core3" + } + ] + } + } + type: "item" + }] + title: "Power Cells" + x: 5.5d + y: -10.0d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: [ + "The &6Dimensional Cell&r is a &o&bmulti-dimensional power storage&r." + "" + "Similarly to the &2Powercell&r, they can store and transmit vast amounts of power. However, unlike &2Powercells&r, they do not have to be next to one another to share their &cRF&r. Instead, &6Dimensional Cells&r are &o&bLinked&r by a &9Powercell Card&r." + "" + "The Cell's &o&bGUI&r has &o&b3&r slots. The &o&btop left&r slot is used for creating a &o&bnew link&r, the &b&obottom&r slot is for &o&bprogramming&r a new &9Powercell Card&r to the &6Dimensional Cell's&r current link, and the &o&btop-right&r slot is for &o&binserting&r items to be charged with &cRF&r, such as a &3Charged Porter&r." + "" + "There is a drawback to &6Dimensional Cells&r, however; when set to &eOutput Mode&r, there is a small cost to drawing &cRF&r from remote cells. It's not a lot, usually just a few percent, but it adds up. Luckily, &6Dimensional Cells&r can be &dInfused&r to reduce this cost." + "" + "• &3Dimensional Cell&r (Simple) holds &o&b250,000&r&cRF&r, and can input or output up to &o&b1,250&r&cRF&r/t" + "• &4Dimensional Cell&r (Medium) holds &o&b1,000,000&r&cRF&r, and can input or output up to &o&b5,000&r&cRF&r/t" + "• &5Dimensional Cell&r (Advanced) holds &o&b4,000,000&r&cRF&r, and can input or output up to &o&b20,000&r&cRF&r/t" + "" + "This &o&bspeed&r can be &o&bboosted&r via &dInfusion&r." + ] + id: "0609473B4EF78B7D" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "016B74D23CA9DFE1" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + count: 2L + id: "273093C32FEB3671" + item: "rftoolspower:powercell_card" + type: "item" + } + { + id: "0F865B41A1FCF6F9" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "rftoolspower:dimensionalcell" + } + { + Count: 1b + id: "rftoolspower:dimensionalcell_advanced" + } + { + Count: 1b + id: "rftoolspower:dimensionalcell_simple" + } + ] + } + } + title: "Any #rftools:dimensionalcell" + type: "item" + } + ] + x: 6.5d + y: -9.5d + } + { + dependencies: ["6C41E2026808192B"] + description: [ + "&9Dimensional Shard Ore&r can be found &o&bunderground&r in &nsmall clusters&r in various dimensions. It is affected by &dFortune&r, and drops &bDimensional Shards&r when broken." + "" + "These are used in several more complicated recipes, and can also be used to &o&difuse machines&r." + ] + id: "7277E270DAF637A6" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "676B0656EC2442E7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + count: 64L + id: "367807983732D1B9" + item: { + Count: 1 + id: "rftoolsbase:dimensionalshard" + tag: { } + } + title: "Dimensional Shard" + type: "item" + }] + x: -1.5d + y: -5.5d + } + { + dependencies: ["36ACEF60B952FA33"] + description: [ + "This item can store several &cRedstone&r channels (&eRight click&r on a &aRedstone Transmitter&r or &9Redstone Receiver&r to add the channel)." + "" + "You can then put it in a &2Tablet&r which allows you to &o&bexamine and change redstone signals from anywhere&r." + ] + id: "02CC11CFB7361A56" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "7A370CFBF8BEC3DF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "6D2C3105C533B7B1" + item: { + Count: 1 + id: "rftoolsutility:redstone_information" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -10.0d + y: -12.0d + } + { + dependencies: ["6C41E2026808192B"] + description: [ + "The &6Tablet&r can be used to remotely access various machines." + "" + "&aSneak+Right click&r to open the internal tablet &o&bGUI&r where you can install up to &o&b6&r &cModules&r." + "" + "&aRight clicking&r the &6Tablet&r will give you the &o&bGUI&r of the current &cModule&r." + "" + "Note that to be able to access the remote machine it will have to be near enough or &o&bchunkloaded&r. If it is &o&bproperly chunk loaded&r then the &6Tablet&r will also work from another &dDimension&r." + ] + hide_dependency_lines: true + id: "36ACEF60B952FA33" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "2BF0C9E2F7CD5DEF" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "05065293DD883643" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "rftoolsbase:tablet" + } + type: "item" + }] + x: -9.0d + y: -12.0d + } + { + dependencies: [ + "36ACEF60B952FA33" + "2ACF97FF7EE9A9B7" + ] + id: "577C38B7B7C62805" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "7A52D9B1EC69D6F8" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "051C855CC6B57223" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "rftoolscontrol:console_module" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -9.0d + y: -10.5d + } + { + dependencies: ["36ACEF60B952FA33"] + description: [ + "Using &eRight click&r you can link this item to a &6Screen&r and after that place it in a &2Tablet&r." + "" + "This allows you to look at the &6Screen&r from anywhere (provided the &6Screen&r is &o&bchunk loaded&r)" + ] + id: "26585C71DB45BE85" + min_width: 250 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "49BD1DD51989BED3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "7B7CB7C2E79E08FA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "rftoolsutility:screen_link" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: -12.0d + } + { + dependencies: ["6C41E2026808192B"] + id: "56A67A439A833C23" + rewards: [{ + exclude_from_claim_all: true + id: "529A569BFF057261" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "2DC9A27892B96447" + item: "rftoolscontrol:card_base" + type: "item" + }] + x: -1.5d + y: -10.5d + } + { + dependencies: ["56A67A439A833C23"] + id: "535A5D1D8FA580BE" + rewards: [{ + exclude_from_claim_all: true + id: "5E73008807B8E580" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1F66B28CFF2188C9" + item: "rftoolscontrol:ram_chip" + type: "item" + }] + x: 0.0d + y: -12.0d + } + { + dependencies: ["56A67A439A833C23"] + id: "6E1E2D401F38F789" + rewards: [{ + exclude_from_claim_all: true + id: "65CB346721659A2C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "71E025C4638520E6" + item: "rftoolscontrol:cpu_core_500" + type: "item" + }] + x: -3.0d + y: -10.5d + } + { + dependencies: ["6E1E2D401F38F789"] + id: "263ADC92D1D72D46" + rewards: [{ + exclude_from_claim_all: true + id: "77E1AF7ED5AE82C7" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5F9362DD76830518" + item: "rftoolscontrol:cpu_core_1000" + type: "item" + }] + x: -4.5d + y: -10.5d + } + { + dependencies: ["263ADC92D1D72D46"] + id: "75276E483CF0F462" + rewards: [{ + exclude_from_claim_all: true + id: "139694822253A749" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "09E2D5261FECB659" + item: "rftoolscontrol:cpu_core_2000" + type: "item" + }] + x: -6.0d + y: -10.5d + } + { + dependencies: ["56A67A439A833C23"] + id: "3AEA60A5C5122C20" + rewards: [{ + exclude_from_claim_all: true + id: "51F398491B218950" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "1C75005253C787A6" + item: "rftoolscontrol:network_card" + type: "item" + }] + x: -1.5d + y: -12.0d + } + { + dependencies: ["3AEA60A5C5122C20"] + id: "0215923B51C7A8F5" + rewards: [{ + exclude_from_claim_all: true + id: "515FDDD80B671F68" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5B2270F924E7EFEC" + item: "rftoolscontrol:advanced_network_card" + type: "item" + }] + x: -1.5d + y: -13.5d + } + { + dependencies: ["56A67A439A833C23"] + id: "02F7FAF784E7904C" + rewards: [{ + exclude_from_claim_all: true + id: "0B092B99EB8DE231" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "359E2A329ED3D75C" + item: "rftoolscontrol:graphics_card" + type: "item" + }] + x: -3.0d + y: -12.0d + } + { + dependencies: [ + "56A67A439A833C23" + "7DF063A7E5F71A24" + ] + id: "51E0AAEB1F1FC784" + rewards: [{ + exclude_from_claim_all: true + id: "6265585DB5EF6146" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "71F06256CCE5848C" + item: "rftoolscontrol:craftingstation" + type: "item" + }] + x: 1.5d + y: -10.5d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "The &6Screen&r is a versatile block that can display all kinds of information." + "" + "This depends on the &9Modules&r you have installed. The &6Screen&r needs &cpower&r that is remotely supplied by a nearby &2Screen Controller&r. &eRight click&r with an &o&bempty hand&r to open the &6Screen&r user interface." + "" + "In the &o&bGUI&r you can install &9Modules&r (or you can install them by &eRight clicking&r the &9Module&r on the &6Screen&r)." + "" + "Many &9Modules&r (like the &cEnergy Module&r) need a target to work on. To set that target you must first &eSneak+Right click&r the &9Module&r on the machine you want to monitor." + "" + "When the &9Module&r is installed in the &6Screen&r there are also various display options that you can set by opening the &nspecific module&r &o&bGUI&r (accessed through the normal &aScreen&r &o&bGUI&r)." + "" + "In that &o&bGUI&r you can also enable 'full bright' mode and by using the &dWrench&r you can change the size and transparency of the &6Screen&r." + ] + id: "2ACF97FF7EE9A9B7" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "42431958EE7D9B76" + table_id: 5236874501558129216L + type: "random" + }] + shape: "octagon" + tasks: [{ + id: "2BF8D9C9FA63A2DB" + item: "rftoolsutility:screen" + type: "item" + }] + x: -9.0d + y: -8.0d + } + { + dependencies: ["285F5229F9886964"] + description: ["The &2Liquid Card&r can be used to &o&bplace liquids&r by the &eBuilder&r."] + id: "6FA5FA3D80EEA800" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "09910A9317260579" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "4F6860609028010E" + item: "rftoolsbuilder:shape_card_liquid" + type: "item" + }] + x: 5.0d + y: -3.0d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: [ + "&dShield Projectors&r are machines that will create an &9Energy Shield&r of a predefined shape and size. All projectors are operated in an identical manner but higher tier &dShield Projectors&r can project larger shields. &dShields&r are impervious to all &cdamage&r and are thus exceptionally useful for mob farms and similar dangerous situations." + "" + "• &aShield Projector&r: &oTier 1&r can create shields of up to &o&b256&r blocks." + "• &cShield Projector&r: &oTier 2&r can create shields of up to &o&b1,024&r blocks." + "• &9Shield Projector&r: &oTier 3&r can create shields of up to &o&b4,096&r blocks." + "• &dShield Projector&r: &oTier 4&r can create shields of up to &o&b32,768&r blocks." + "" + "Shields can:" + "" + "• &b&oPrevent&r players, items and/or mobs from passing" + "• &b&oAllow&r players, items and/or mobs to pass" + "• &b&oDamage&r players, items and/or mobs on contact" + "• &b&oDeal&r 'generic' damage, or 'player' damage" + "" + "A shield consists of a &dShield Projector&r, a number of connected &eShield Template&r blocks, and a power source. When activated, all connected &eShield Template&r blocks will become the shield. &eShield Template&r blocks come in four separate colors to allow shields to touch each other without merging. This might be useful for adding an invulnerable door to your mob killing room. Each set of connected template blocks requires a separate &dShield Projector&r." + ] + id: "5FA7FE85BF0BE6A5" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "1BC90A9F6566B9AA" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "128EF3E38BF4E167" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "rftoolsbuilder:shield_block1" + } + { + Count: 1b + id: "rftoolsbuilder:shield_block2" + } + { + Count: 1b + id: "rftoolsbuilder:shield_block3" + } + { + Count: 1b + id: "rftoolsbuilder:shield_block4" + } + ] + } + } + title: "Shield Projectors" + type: "item" + } + { + id: "1DB268BF37D3413C" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "rftoolsbuilder:blue_shield_template_block" + } + { + Count: 1b + id: "rftoolsbuilder:red_shield_template_block" + } + { + Count: 1b + id: "rftoolsbuilder:green_shield_template_block" + } + { + Count: 1b + id: "rftoolsbuilder:yellow_shield_template_block" + } + ] + } + } + title: "Shield Templates" + type: "item" + } + ] + x: 5.5d + y: -6.0d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: ["The &2Coal Generator&r which generates &o&b60&r &cRF&r/t when fueled with &0Coal&r or &8Charcoal&r."] + id: "421CBFCA164B527D" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "575593503F3DFA9D" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0A749E1B0CEB43DD" + item: "rftoolspower:coalgenerator" + type: "item" + }] + x: 3.5d + y: -10.0d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: [ + "The &6Blazing Generator&r can generate power out of &eBlaze Rods&r." + "" + "But before you can do that the rods have to be processed by the &2Blazing Agitator&r. Using a little bit of &cpower&r the &2Agitator&r will slowly build up the potenty of &eBlaze Rods&r that are placed in the &9input&r area. Note that &eBlaze Rods&r adjacent to other &eBlaze Rods&r will &o&bimprove the quality and speed&r at which this happens, and also the &6Blazing Generator&r can generate &cPower&r from up to &o&b4&r &eBlazing Rods&r and works best if it can generate &cPower&r &ncontstantly&r." + "" + "Powering up a generator requires time before it can fully use the full potential of &eBlazing Rod&r." + "" + "It is worth while to spend some time improving &eBlazing Rods&r until you have &o&btop-quality rods&r that you can use to improve the quality of other &eBlazing Rods&r procued by this &2Agitator&r. For that reason there are &o&b9&r buttons that you can use to prevent fully processed &eBlazing Rods&r from going to the &coutput&r area." + ] + icon: "rftoolspower:blazing_generator" + id: "6C162CEB5F82FA25" + min_width: 300 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "3A5B38EFE1B153F8" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "297C1B3B4DB33811" + item: "rftoolspower:blazing_generator" + type: "item" + } + { + id: "3A9BC979D35EDBBF" + item: "rftoolspower:blazing_agitator" + type: "item" + } + { + id: "5E9BB9FF1528A0A5" + item: "rftoolspower:blazing_rod" + type: "item" + } + ] + x: 4.5d + y: -10.5d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: [ + "&eBlazing Rods&r as produced by the &6Blazing Agitator&r can be improved even further by infusing them with a stack of certain catalyst items." + "" + "Note that once &3infused&r, a &eBlazing Rod&r can no longer be used in the &2Blazing Agitator&r to help improve other rods." + "" + "&9Catalysts&r (&npower/time benefit for a full stack&r):" + "" + "• &cRedstone&r &o&b40%&r more power" + "• &6Glowstone&r &o&b10%&r more power, &o&b30%&r more time" + "• &4Quartz&r &o&b40%&r more time" + "• &dDimensional Shards&r &o60%&r more power, &o&b60%&r more time" + "• &3Nether Star&r &o&b120%&r more power, &o&b120%&r more time" + "• &7Ghast Tear&r &o&b80%&r more power, &o&b80%&r more time" + ] + id: "090606B7593B8D71" + min_width: 300 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "282B23CAC4075330" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "633D2B0BBD89ACF4" + item: "rftoolspower:blazing_infuser" + type: "item" + }] + x: 3.5d + y: -6.0d + } + { + dependencies: ["7277E270DAF637A6"] + id: "30D31BC130DBC594" + rewards: [{ + exclude_from_claim_all: true + id: "050EAE3C7FC1C2B6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "5DD5C5F9444D560A" + item: "rftoolsbase:infused_diamond" + type: "item" + }] + x: -1.0d + y: -4.5d + } + { + dependencies: ["7277E270DAF637A6"] + id: "03FEB62715D33949" + rewards: [{ + exclude_from_claim_all: true + id: "50914B46FB1EF0FA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "558F99B77788A14D" + item: "rftoolsbase:infused_enderpearl" + type: "item" + }] + x: -2.0d + y: -4.5d + } + { + dependencies: [ + "03FEB62715D33949" + "7DF063A7E5F71A24" + ] + description: [ + "The theory of &3Endergenic&r power generation is quite simple. Throw an &8Ender Pearl&r at an &2Endergenic Generator&r at just the &o&bright moment&r and &cenergy&r will be produced. The implementation, of course, is a little more &o&bcomplex&r. This guide will step you through the process of setting up a simple, imperfect but functional &dPower Generation System&r. " + "" + "In this simple design, four &2Endergenic Generators&r are linked to produce about &o&b11,000&r&cRF&r/t. This can be increased by infusing the &2Endergenic Generators&r." + "" + "&3Ender Monitors&r send a &cRedstone&r pulse as each generator fires its pearl. &9Sequencers&r alter the &cRedstone&r pulses to prime the generators with the correct timing. Finally, a &eTimer&r triggers a &dPearl Injector&r to insert a new &8Ender Pearl&r into the &o&bloop as needed&r." + "" + "&o&b1&r) Lay out the parts as &o&billustrated below&r. Take care to note the &o&bdirection of the arrows&r on the &3Ender Monitors&r, &9Sequencers&r and &eTimer&r and make sure the &dPearl Injector&r is facing away from the generator. &aRight-click&r with the &5Smart Wrench&r to rotate these blocks as needed." + "" + "{image:kubejs:textures/item/energenic_power.png width:100 height:100 align:1}" + "" + "&o&b2&r) Set each of the &3Ender Monitors&r to &6Pearl Fired&r." + "&o&b3&r) Set each of the &o&b4&r inner &9Sequencers&r to fire on ticks &o&b3&r and &o&b5&r, as &o&billustrated below&r. Set the mode to &eOnce2&r." + "" + "{image:kubejs:textures/item/energenic_power_step2.png width:100 height:100 align:1}" + "" + "&o&b4&r) Set the &o&b2&r outer &9Sequencers&r to fire on ticks &o&b1&r and &o&b3&r. Set the mode to &eOnce2&r." + "&o&b5&r) Set the &eTimer&r to fire every &o&b30&r ticks. &cNote&r: The timer is reset by the adjacent &3Ender Monitor&r every time that an &8Ender Pearl&r passes through the nearby &2Endergenic Generator&r. In this way, the timer only triggers the &dPearl Injector&r when more than &o&b30&r ticks have elapsed without a pearl passing." + "&o&b6&r) Link the &o&b4&r &2Ender Generators&r in a &o&bclockwise direction&r. &aRight click&r on one with the &5wrench&r and it will turn &cred&r. &aRight click&r on the next and you'll receive a &o&bconfirmation message in chat&r." + "" + "{image:kubejs:textures/item/energenic_power_step3.png width:100 height:100 align:1}" + "" + "&o&b7&r) Connect your &o&bpower cables&r to the &2Endergenic Generators&r." + "&o&b8&r) Insert some &8Ender Pearls&r in the &dPearl Injector&r." + ] + hide_dependency_lines: true + id: "4ECFDB62C5B886D9" + min_width: 500 + rewards: [{ + exclude_from_claim_all: true + id: "7570431786549255" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + size: 1.5d + tasks: [ + { + id: "13C9B212EF246C76" + item: "rftoolspower:pearl_injector" + type: "item" + } + { + count: 4L + id: "4B83878B1C543208" + item: "rftoolspower:endergenic" + type: "item" + } + { + count: 5L + id: "559213F83FE353EB" + item: "rftoolspower:ender_monitor" + type: "item" + } + { + count: 6L + id: "45751C5B2F026A26" + item: "rftoolsutility:sequencer" + type: "item" + } + { + id: "133B16F3B69C2216" + item: "rftoolsutility:timer" + type: "item" + } + ] + title: "&4Endergenic Power Generation" + x: 4.5d + y: -12.0d + } + { + dependencies: ["535A5D1D8FA580BE"] + description: ["Use &2Programmer&r to make &9programs&r on a &bprogram card&r for the &dProcessor&r."] + id: "29B9F103A84F070F" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "6642F28F8F209DCC" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "617D55BC027DF89D" + item: "rftoolscontrol:programmer" + type: "item" + }] + x: 1.5d + y: -12.0d + } + { + dependencies: ["75276E483CF0F462"] + description: [ + "The &2Processor&r executes &9programs&r for &eautomation&r." + "" + "&9Programs&r should be written on a &bProgram Card&r and can be made with the &dProgrammer&r." + ] + id: "537FCAD41F2AF766" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "7915A88F5C36C0AB" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "5149BC1EAFEF9AD3" + item: "rftoolscontrol:processor" + type: "item" + }] + x: -6.0d + y: -12.0d + } + { + dependencies: ["7DF063A7E5F71A24"] + description: [ + "The &eEnvironmental Controller&r can be used to '&o&binfuse&r' an area with &o&bvarious effects&r." + "" + "Up to &o&b7&r &dEffects&r can be supported &nat the same time&r, but this increases &cpower&r usage." + ] + hide_dependency_lines: true + id: "61E4A68F2CEE897C" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "586CD86FA6DA083C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + tasks: [{ + id: "2C60087C8361768D" + item: "rftoolsutility:environmental_controller" + type: "item" + }] + x: -6.75d + y: -4.5d + } + { + dependencies: ["2ACF97FF7EE9A9B7"] + description: [ + "With the &9Screen Controller&r you can &o&bpower nearby screens&r." + "" + "Using the '&o&bScan&r' button in the &o&bGUI&r you can connect to all &aScreens&r in a &o&b32&rx&o&b32&rx&o&b32&r radius." + "" + "&3Infusing&r this machine will increase this range." + ] + id: "26CC920053FD16B3" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "090971DF56D35304" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "31FCBBCE2C4CB290" + item: "rftoolsutility:screen_controller" + type: "item" + }] + x: -9.0d + y: -7.0d + } + { + dependencies: ["2A7DBB02C3F24F3C"] + description: [ + "The &2Filter Module&r is a very versatile item that can be used to &bwhitelist&r or &0blacklist&r items for the machine." + "" + "Various machines support this module (&6Builder&r, &dModular Storage&r, &eCrafter&r, ...)" + "" + "Blocks, items, and &etags&r are supported. You can &0blacklist&r or &bwhilelist&r and also require mathing on &dNBT&r and &cdamage&r." + "" + "&eSneak+Right click&r on an inventory (&o&blike a chest&r) to add all &nitems&r/&nblock&r in that inventory to the &2Filter&r. &eSneak+Right click&r on a block in the world to add that block to the &2Filter&r." + "" + "In the &o&bGUI&r of the &2Filter Module&r you can also add &atags&r or convert a &nblock&r/&nitem&r to the corresponding &atags&r." + ] + id: "643A04DDC22CA421" + min_width: 300 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "54E234A9A2554D23" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "1D67063437F1188B" + item: { + Count: 1 + id: "rftoolsbase:filter_module" + tag: { } + } + type: "item" + }] + x: 8.0d + y: -8.0d + } + { + dependencies: ["537FCAD41F2AF766"] + id: "34FA5E6145E0F579" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "23EEB3C7B9F1C8A7" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "2C2CBC7C3C5D3D20" + item: { + Count: 1 + id: "rftoolscontrol:network_identifier" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.0d + y: -13.0d + } + { + dependencies: ["30D31BC130DBC594"] + hide_dependency_lines: true + id: "26E2EBF1B84CA883" + rewards: [{ + exclude_from_claim_all: true + id: "608A88A9C67F1CF0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "568113D71F027702" + item: "rftoolsutility:module_template" + type: "item" + }] + x: -5.75d + y: -4.5d + } + { + dependencies: ["26E2EBF1B84CA883"] + id: "4CBEEB3DE09DF2BE" + rewards: [{ + exclude_from_claim_all: true + id: "10D7FF1CB200DBD2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "104E92BA154A42C3" + item: "rftoolsutility:moduleplus_template" + type: "item" + }] + x: -7.75d + y: -4.5d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + hide_dependency_lines: true + id: "37ABC1F96B3FF90D" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "440CE55F494838F6" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "326505C179B0EC33" + item: "rftoolsutility:hasteplus_module" + type: "item" + }] + x: -9.25d + y: -5.5d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + id: "73E3C30353F79E0D" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "4E4DCA11A9A41932" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "14EE175A851439F7" + item: "rftoolsutility:featherfallingplus_module" + type: "item" + }] + x: -8.75d + y: -5.5d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + hide_dependency_lines: true + id: "21CD1106B3A6A1E1" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "570B2EE1B89D6EE2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "13D6975D3EE5E425" + item: "rftoolsutility:regenerationplus_module" + type: "item" + }] + x: -9.25d + y: -5.0d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + id: "56A316E3C6B62BE2" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "6BDA619C2F5E8D4F" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "53BCEE4C402B7147" + item: "rftoolsutility:saturationplus_module" + type: "item" + }] + x: -8.75d + y: -5.0d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + hide_dependency_lines: true + id: "1E8803136096F3CF" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "663EB36C1BBCB46C" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "23939CF09474F834" + item: "rftoolsutility:speedplus_module" + type: "item" + }] + x: -9.25d + y: -4.5d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + id: "37137463DCD9C785" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "4CB7BF750F69F174" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "1B44F9CF2C2CCC78" + item: "rftoolsutility:flight_module" + type: "item" + }] + x: -8.75d + y: -4.5d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + hide_dependency_lines: true + id: "66913EB8F34A13B6" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "5557224A475183DA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "3CCF8DFE02BE3E6B" + item: "rftoolsutility:noteleport_module" + type: "item" + }] + x: -9.25d + y: -4.0d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + hide_dependency_lines: true + id: "4E676C7EF4B21108" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "59B73C123CABEBE3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "388AF63F402AF6AA" + item: "rftoolsutility:waterbreathing_module" + type: "item" + }] + x: -9.25d + y: -3.5d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + id: "6A80103235964C38" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "255200174053A2B1" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "10E65D4BD9415932" + item: "rftoolsutility:blindness_module" + type: "item" + }] + x: -8.75d + y: -4.0d + } + { + dependencies: ["4CBEEB3DE09DF2BE"] + id: "2991E0AA98105548" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "65C9364E2E034E59" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "3D0DC51A4DC8C350" + item: "rftoolsutility:peaceful_module" + type: "item" + }] + x: -8.75d + y: -3.5d + } + { + dependencies: ["26E2EBF1B84CA883"] + id: "0D9F075F7666770B" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "19AAD1674FDFD5A2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "25A6E7C5C16434D1" + item: "rftoolsutility:featherfalling_module" + type: "item" + }] + x: -4.75d + y: -5.5d + } + { + dependencies: ["26E2EBF1B84CA883"] + hide_dependency_lines: true + id: "3939165B244BDB6F" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "4C6B248434D5C2AB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "5AAF927E23919B4E" + item: "rftoolsutility:haste_module" + type: "item" + }] + x: -4.25d + y: -5.5d + } + { + dependencies: [ + "26E2EBF1B84CA883" + "53A9C8217C6B0729" + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "749CE1FEE2AB288E" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "7C7DF51963875A66" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "0BC19E1454EF007C" + item: "rftoolsutility:glowing_module" + type: "item" + }] + x: -6.75d + y: -5.5d + } + { + dependencies: ["26E2EBF1B84CA883"] + id: "555745832D8D9D8D" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "677709995516AF21" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "1973ACBCD87EF26C" + item: "rftoolsutility:luck_module" + type: "item" + }] + x: -4.75d + y: -3.5d + } + { + dependencies: ["26E2EBF1B84CA883"] + id: "19DB41115FF79DAC" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "311B805D47EB2593" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "2FED51E8DD17C7E5" + item: "rftoolsutility:nightvision_module" + type: "item" + }] + x: -4.75d + y: -4.0d + } + { + dependencies: ["26E2EBF1B84CA883"] + id: "4F4F2B027905316D" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "1D081B208637E244" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "7BBEE94AA7B7C013" + item: "rftoolsutility:poison_module" + type: "item" + }] + x: -4.75d + y: -4.5d + } + { + dependencies: ["26E2EBF1B84CA883"] + hide_dependency_lines: true + id: "4566ABB4083E3EA3" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "0D21E97CAAB45483" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "6C35E361B41EE4E3" + item: "rftoolsutility:regeneration_module" + type: "item" + }] + x: -4.25d + y: -5.0d + } + { + dependencies: ["26E2EBF1B84CA883"] + id: "131FAC42251006DF" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "1E0F96F38AB3D084" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "2749C67975A702F9" + item: "rftoolsutility:saturation_module" + type: "item" + }] + x: -4.75d + y: -5.0d + } + { + dependencies: ["26E2EBF1B84CA883"] + hide_dependency_lines: true + id: "4C878A5B46729DDC" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "29803BA095788608" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "1530B4255C77DC77" + item: "rftoolsutility:slowness_module" + type: "item" + }] + x: -4.25d + y: -4.0d + } + { + dependencies: ["26E2EBF1B84CA883"] + hide_dependency_lines: true + id: "3CBB6750B1B5FD51" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "03821F88B7D649C0" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "44FA9EBA60994A28" + item: "rftoolsutility:speed_module" + type: "item" + }] + x: -4.25d + y: -4.5d + } + { + dependencies: ["26E2EBF1B84CA883"] + hide_dependency_lines: true + id: "43A8B4CDF4389790" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "500F3988564E443D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "29D5875438C59D9B" + item: "rftoolsutility:weakness_module" + type: "item" + }] + x: -4.25d + y: -3.5d + } + { + dependencies: ["61E4A68F2CEE897C"] + description: [ + "The &2Syringe&r is used to gather &aEssences&r of various mobs for use in creating &eModules&r for the &dEnvironmental Controller&r." + "" + "To fill a &2Syringe&r, the item must be held and '&o&bpunched&r' on the desired mob. It typically takes &o&b4&r or &o&b5&r punches to fill the &2Syringe&r. Once filled, it can be used as a crafting component." + ] + id: "53A9C8217C6B0729" + rewards: [{ + exclude_from_claim_all: true + id: "5C4C1BF4578214C3" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "73C81A4F5C394364" + item: "rftoolsutility:syringe" + type: "item" + }] + x: -6.75d + y: -3.5d + } + { + dependencies: ["2ACF97FF7EE9A9B7"] + id: "35534D8024BD88A5" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "425398C4A468B72E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "131B1990E8AC7A83" + item: { + Count: 1 + id: "rftoolsutility:text_module" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -10.0d + y: -9.5d + } + { + dependencies: ["2ACF97FF7EE9A9B7"] + id: "20AC030B857321D0" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "19B45F61A3052766" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "065580E8D3E32987" + item: { + Count: 1 + id: "rftoolsutility:energy_module" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: -9.5d + } + { + dependencies: ["2ACF97FF7EE9A9B7"] + id: "6B0EF1FBF63A0510" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "60978F524DE6FC2E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "4F02320FD6FD038F" + item: { + Count: 1 + id: "rftoolsutility:clock_module" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.5d + y: -9.0d + } + { + dependencies: ["2ACF97FF7EE9A9B7"] + id: "2AAF3BCDEC5893F9" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "4F4DD7B5A16F856B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "50916D87AFC0AD7F" + item: { + Count: 1 + id: "rftoolsutility:machineinformation_module" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -9.0d + y: -9.5d + } + { + dependencies: ["2ACF97FF7EE9A9B7"] + id: "68C0AB8BA8EBA7C9" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "6E21EEDF23A8AEFB" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "216E0F577F66DF41" + item: { + Count: 1 + id: "rftoolsutility:redstone_module" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -9.5d + y: -9.0d + } + { + dependencies: ["2ACF97FF7EE9A9B7"] + id: "2B5A512CB0E580AD" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "2ACA1370CA8846E2" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "13929EE3551601A3" + item: { + Count: 1 + id: "rftoolsutility:button_module" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -9.5d + y: -10.0d + } + { + dependencies: ["2ACF97FF7EE9A9B7"] + id: "0D0DC5C52E314469" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "0E089D43F7476BFC" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "09AEF4FE7700AEF1" + item: { + Count: 1 + id: "rftoolsutility:counter_module" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.5d + y: -10.0d + } + { + dependencies: ["29B9F103A84F070F"] + id: "0EB66F4B25BFAEAC" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "2CEE691236973D85" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "590F121DE29D6C82" + item: "rftoolscontrol:program_card" + type: "item" + }] + x: 1.5d + y: -13.0d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "The &2Wire&r simply transmits the &9input&r &o&bsignal&r to the &eoutput&r." + "" + "Simple, straightforward, lag free. It can only go in &o&bstraight lines though&r." + "" + "On the upside, as with all other blocks made using &3Machine Bases&r, it can be placed on &nwalls&r or &nceilings&r." + ] + id: "663EBBC9BCEA0D23" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "41DFD00C6C66729E" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "0351ECDA9A2B6382" + item: "rftoolsutility:wire" + type: "item" + }] + x: -6.0d + y: -8.5d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "The &2Sequencer&r is a versatile block that can generate &o&bspecific sequences&r of &credstone&r &o&bsignal&r based on other &credstone&r &o&binputs&r." + "" + "It works by selecting &o&b64&r different &credstone&r &o&boutputs&r. Whenever a sequence runs it will set the &credstone&r &o&boutput&r of this block to this pattern in sequence." + "" + "There are &o&b7&r different modes:" + "" + "• &o&bOnce1&r: Cycle once. &9Ignores&r signals until done" + "• &o&bOnce2&r: Cycle once. &6Restart&r cycle on new signal" + "• &o&bLoop1&r: Continious loop. &9Ignore&r redstone signals" + "• &o&bLoop2&r: Continious loop. Signal &6resets&r cycle to start" + "• &o&bLoop3&r: Continious loop while enabled. &dStay&r at current step if disabled" + "• &o&bLoop4&r: Continious loop while enabled. &6Reset&r to beginning if disabled" + "• &o&bStep&r: &3Perform&r one step in the cycle on every signal" + ] + disable_toast: true + id: "6FEDA156067956EC" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "32129BC39950750A" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "19CF5932D49C285B" + item: "rftoolsutility:sequencer" + type: "item" + }] + x: -4.0d + y: -7.5d + } + { + dependencies: ["5AF02F4038D42793"] + description: [ + "The &6Timer&r is a simple gate that pulse at its &9input&r. So given will &o&brepeatedly&r send a &credstone&r &o&bpulse&r. You can &9input&r any value for the delay so it can be used for very long timeouts." + "" + "What is special about this &6Timer&r is that it &drestart&r when it itself &3receives&r a &credstone&r &o&bpulse&r at its &9input&r." + "" + "So given timely &9input&r &o&bpulses&r this block will never &eoutput&r a &o&bpulse itself&r. By using this feature this block can be used as a way to &o&bdetect&r that a certain &b&oactivity&r is overdue." + ] + id: "05C17B4F3ADC4CD2" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "30F772E7236FB7DA" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "487B2D826F7FDD1C" + item: "rftoolsutility:timer" + type: "item" + }] + x: -6.0d + y: -7.5d + } + { + dependencies: ["6DEF153CC59F8027"] + description: [ + "&3Facade&r can &o&bmimic&r other &7Blocks&r and be used to &o&bcover&r &2xNet&r &1Cables&r." + "" + "&eRight&r or &eSneak+Right click&r on &7block&r to &o&bmimic&r." + "&eRight&r or &eSneak+Right click&r on &1cable&r/&cconnector&r to &o&bhide&r." + ] + id: "547C4F4C927E9848" + min_width: 300 + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "129DD3C19263CDB8" + table_id: 5236874501558129216L + type: "random" + }] + shape: "diamond" + tasks: [{ + count: 16L + id: "189A61326E8DF8B2" + item: "xnet:facade" + type: "item" + }] + title: "Facade" + x: 9.5d + y: -13.0d + } + ] + title: "&3&oRFTools" +} diff --git a/minecraft/config/ftbquests/quests/chapters/security_craft.snbt b/minecraft/config/ftbquests/quests/chapters/security_craft.snbt new file mode 100644 index 0000000..d1b64bd --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/security_craft.snbt @@ -0,0 +1,2560 @@ +{ + autofocus_id: "7B954A1DD833FC98" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "security_craft" + group: "69B9F7247002FE35" + icon: "securitycraft:keypad" + id: "116FD7B5753C52B6" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -6.821428571428569d + y: -4.160714285714285d + } + { + height: 1.5d + image: "kubejs:textures/item/securitycraft.png" + rotation: 0.0d + width: 6.1d + x: 2.0d + y: -5.0d + } + { + height: 2.0d + image: "securitycraft:block/username_logger_top" + rotation: 45.0d + width: 2.0d + x: -2.0d + y: 4.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -4.5d + y: 0.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 4.0d + y: -0.5d + } + { + height: 1.0d + image: "securitycraft:item/admin_tool" + rotation: 0.0d + width: 1.0d + x: -4.5d + y: -4.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 2.0d + y: 5.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -10.0d + y: -5.0d + } + { + height: 1.0d + image: "securitycraft:item/bucket_f_lava" + rotation: 25.0d + width: 1.0d + x: -5.5d + y: 5.0d + } + { + height: 1.0d + image: "securitycraft:item/bucket_f_water" + rotation: -30.0d + width: 1.0d + x: 8.0d + y: 4.0d + } + { + height: 1.0d + image: "securitycraft:block/ani_laser" + rotation: 0.0d + width: 0.021739130434782608d + x: 8.5d + y: 5.0d + } + { + height: 1.0d + image: "securitycraft:block/ani_laser" + rotation: 0.0d + width: 0.021739130434782608d + x: 10.0d + y: 5.0d + } + { + height: 1.0d + image: "securitycraft:block/ani_laser" + rotation: 0.0d + width: 0.021739130434782608d + x: -0.5d + y: 0.0d + } + ] + order_index: 12 + quest_links: [ ] + quests: [ + { + description: [ + "&6SecurityCraft&r adds &b&oreinforced blocks&r corresponding to many of the already existing &nvanilla blocks&r." + "" + "These reinforced blocks are &nunbreakable&r variants of their vanilla counterpart, and have a slightly darker tint to distinguish them from, but otherwise look the same as, their vanilla versions. " + "" + "There are numerous blocks, which allow the player to &o&bsecure their base&r from intruders. For a complete list of all of the blocks and items in the mod you can check out the ingame manual." + ] + icon: "securitycraft:sc_manual" + id: "7B954A1DD833FC98" + min_width: 300 + rewards: [ + { + id: "0859C3BA0FC2283B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "59EA0A5B4704EA85" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "gear" + size: 1.5d + tasks: [{ + id: "3BFBBC8EA3D7EE91" + type: "checkmark" + }] + title: "Welcome to &6Security Craft" + x: -7.5d + y: -3.5d + } + { + dependencies: ["3B38DAF259E5CDAA"] + description: [ + "The &6Universal Block Remover&r is used to &o&bdestroy&r \"&nreinforced&r\" blocks by &eRight+clicking&r it." + "" + "Only the person who placed the block down can destroy it." + ] + id: "29A3C195EAC4E508" + min_width: 300 + rewards: [ + { + id: "28A895F271C3B04B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1309BF812B50C490" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "15FDA4147D76268E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:universal_block_remover" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.0d + y: -3.5d + } + { + dependencies: ["29A3C195EAC4E508"] + description: [ + "The &6Wire Cutters&r can be used to &ndefuse&r several types of mines and &ndeactivate&r a cage trap by &eRight+clicking&r the block with them." + "" + "Furthermore, &eSneak+Right+clicking&r a &o&bpasscode-protected&r block &nremoves&r the &o&bpasscode protection&r." + ] + id: "7E9273CE84F3A2A5" + min_width: 300 + rewards: [ + { + id: "3446EF4B66D14C0E" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "69F078C6FD8FF1FB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3243212232825A1E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:wire_cutters" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.0d + y: -3.5d + } + { + dependencies: ["535A924FF7F7B5BE"] + description: [ + "The &6Universal Key Changer&r &nallows&r you to &o&bchange the passcode&r of passcode-protected blocks you own." + "" + "&eRight+click&r a passcode-protected block to open a &o&bGUI&r, then type in the &nnew&r passcode you want." + ] + id: "161865AB973AC46C" + rewards: [ + { + id: "3557E4BC883970FA" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "705F53C88C7AE089" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0E22AD1D235E61F6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:universal_key_changer" + } + type: "item" + }] + x: -3.5d + y: -2.0d + } + { + dependencies: ["3B38DAF259E5CDAA"] + description: [ + "The &6Universal Owner Changer&r can change a block's owner." + "" + "To do this, &o&brename&r the item in an &3Anvil&r to the name of the &o&bnew owner&r of the block. Then just &eRight+click&r one of your blocks &o&bwith an owner&r and it will change." + "" + "If &o&benabled&r, blocks &nwithout&r an owner can be &nclaimed&r by Rightclicking with an unnamed Changer." + ] + id: "6C69392B90615680" + min_width: 300 + rewards: [ + { + id: "2627DA568E6FF791" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "52691008FEAE884E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "6070D22223BBE001" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:universal_owner_changer" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -2.0d + } + { + dependencies: ["535A924FF7F7B5BE"] + description: [ + "The &6Universal Block Reinforcer&r reinforces numerous &o&bvanilla blocks&r, and turns them into the &2SecurityCraft&r variants." + "" + "To do this, &eRight+click&r the &6Universal Block Reinforcer&r and put the vanilla block into the top slot, then close the &o&bGUI&r. Alternatively, break any block (while not in creative mode) to reinforce it." + "" + "To convert a reinforced block back to its vanilla variant, use the &nbottom&r slot (only available for the &o&blevel 2&r reinforcer)." + "" + "The &o&blevel 1&r reinforcer has &o&b300&r uses, &o&blevel 2&r has &o&b2,700&r uses, and &o&blevel 3&r has &nunlimited&r uses." + ] + id: "67CBB3FFBE7476E8" + min_width: 300 + rewards: [ + { + id: "6F11ADB5E4B8110D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "23F19F0B1E47C769" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "03B126BA1965D7C2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:universal_block_reinforcer_lvl1" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.0d + y: -2.0d + } + { + dependencies: ["67CBB3FFBE7476E8"] + id: "65B698A338EAC3A9" + rewards: [ + { + id: "07E954AB3454E87E" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "017847490D0AD096" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "56084EE09C18E54A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:universal_block_reinforcer_lvl2" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.0d + y: -1.0d + } + { + dependencies: ["65B698A338EAC3A9"] + id: "27FEA0A687B3EAD2" + rewards: [ + { + id: "17996797622CF97C" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "33C7F9C0967AF10C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4699A90F32614795" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:universal_block_reinforcer_lvl3" + } + type: "item" + }] + x: -2.0d + y: 0.0d + } + { + dependencies: ["161865AB973AC46C"] + description: ["The &6Codebreaker&r can &ncrack&r any &bkeycard reader&r, &bkeypad&r, &bpasscode-protected chest&r, &bpasscode-protected barrel&r, or &bpasscode-protected furnace's&r code by &eRight+clicking&r on it."] + id: "55079F9557D45D36" + rewards: [ + { + id: "76E8ACA5504A9CAC" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4CC7D8AF34485B73" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2002903ECCACF043" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:codebreaker" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.5d + y: -2.0d + } + { + dependencies: ["7B70DAA06BF8850B"] + description: [ + "&6Claymores&r explode one second after a mob or player walks within 5 blocks in front of the mine." + "" + "&eRight+clicking&r the mine while holding &9Wire Cutters&r will &o&bdefuse the mine&r and allow you to break it." + "" + "&eRight+clicking&r with &3Flint and Steel&r equipped will &o&bre-enable it&r." + "" + "This block is able to be &o&bremotely detonated&r, and may be able to be &nactivated&r/&ndeactivated&r, using the &dMine Remote Access Tool&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "4030CDB8B2BCF9AD" + min_width: 300 + rewards: [ + { + id: "565A3C4DC6B0E1DF" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "388129DE41BE1120" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "04B7CCF7C7122FA0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:claymore" + } + type: "item" + }] + x: 5.5d + y: -1.5d + } + { + dependencies: ["60182B7CD395E4FE"] + description: [ + "The &5I.M.S.&r, or &6Intelligent Munitions System&r, is a &nrefillable&r mine holding up to &o&b4&r &9Bouncing Betties&r that will target &o&bplayers&r and/or &o&bhostile mobs&r which enter its firing radius." + "" + "Once a mine is launched, it will &ntrack down&r the entity and &o&bexplode&r. If mines are missing from the &5I.M.S.&r, &eRight+click&r it with more &9Bouncing Betties&r &nto refill&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to an I.M.S. will &nallow&r listed players &o&bto walk&r into the range of the I.M.S. &o&bwithout being targeted&r." + "• Adding a &6Speed Module&r to an I.M.S. will &nmake&r the &o&bI.M.S. shoot faster&r, as well as increase &nthe speed&r of the shot bombs." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "4F1C8CA178118376" + min_width: 300 + rewards: [ + { + id: "3EFA57DD825F4C9F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "08FE232BD086B54B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "396B71158F76242B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:ims" + } + type: "item" + }] + x: 0.5d + y: 1.0d + } + { + dependencies: ["391D1599E823CFB9"] + description: [ + "The &6Bouncing Betty&r will launch up into the air and explode &o&bwhen touched&r." + "" + "This block is able to be &o&bremotely detonated&r, and may be able to be &nactivated&r/&ndeactivated&r, using the &dMine Remote Access Tool&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "7B70DAA06BF8850B" + min_width: 300 + rewards: [ + { + id: "69AA28713454071F" + type: "xp" + xp: 10 + } + { + id: "1A69582EBACD395A" + item: "minecraft:gunpowder" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "0EC166E32DA93EF3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4944F7FB38CAC374" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:bouncing_betty" + } + type: "item" + }] + x: 5.5d + y: -2.5d + } + { + dependencies: ["4C48531A31DF6192"] + description: [ + "&9Furnaces Mines&r function just like the &o&bstandard mines&r, except they only explode when &eRight+clicked&r or &o&bbroken&r by &o&bsomeone other than the owner&r." + "" + "This block is able to be &o&bremotely detonated&r, and may be able to be &nactivated&r/&ndeactivated&r, using the &dMine Remote Access Tool&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "4FCC9CD1EABC3472" + min_width: 300 + rewards: [ + { + id: "5161F442D1B28B6B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3336151FE3724FCB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1878F5A867CA70F6" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "securitycraft:furnace_mine" + } + { + Count: 1b + id: "securitycraft:smoker_mine" + } + { + Count: 1b + id: "securitycraft:blast_furnace_mine" + } + ] + } + } + type: "item" + }] + title: "Furnaces Mine" + x: 7.5d + y: -2.5d + } + { + dependencies: ["391D1599E823CFB9"] + description: [ + "The &6Mine&r explodes when stepped on by &nany entity&r other than &o&bcreepers&r, &o&bcats&r, and &o&bocelots&r." + "" + "&eRight+clicking&r the mine while holding &9Wire Cutters&r will &o&bdefuse the mine&r and allow you to break it." + "" + "&eRight+clicking&r with &3Flint and Steel&r equipped will &o&bre-enable it&r." + "" + "This block is able to be &o&bremotely detonated&r, and may be able to be &nactivated&r/&ndeactivated&r, using the &dMine Remote Access Tool&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "4C48531A31DF6192" + min_width: 300 + rewards: [ + { + id: "37829BAEC41D6995" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "589E09EB2170327A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "100C09B441CAC7E2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:mine" + } + type: "item" + }] + x: 6.5d + y: -2.5d + } + { + dependencies: ["67CBB3FFBE7476E8"] + description: [ + "The &6Keycard Reader&r emits a &o&b15&r-block &o&bredstone signal&r if you insert a &dKeycard&r that matches with the reader's settings. You can configure the &6Keycard Reader&r by &eRight+clicking&r it with anything other than a &o&blinked keycard&r. The signature is a number that &nlinks&r the &o&breader&r and &o&bkeycards&r together. Only keycards that have &o&bthe same signature&r as the reader they were &nlinked to&r will open said reader. Keycards linked to readers of &o&bother players&r will not work for your &6Keycard Readers&r. You can have multiple &6Keycard Readers&r with &o&bthe same signature&r, and all your keycards &o&bwith that signature&r will work on them as well. The keycard &o&blevel buttons&r on the right side of the &o&bGUI&r are individual to each &6Keycard Reader&r and define which &o&bkeycard levels&r can be used to activate this &6Keycard Reader&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to a keycard reader will &nallow&r listed players &o&bto link&r their own keycards • to the reader and view its settings." + "• Adding a &6Denylist Module&r to a keycard reader will ban &nlisted players&r from interacting with the reader." + "• Adding a &6Disguise Module&r to a keycard reader will &ncause&r the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "• Adding a &6Smart Module&r to a keycard reader will &nallow&r for &o&bunrestricted control&r of the keycard levels accepted by the keycard reader." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r. This block can be locked with a &2Sonic Security System&r." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "3E0314F44C51E728" + min_width: 500 + rewards: [ + { + id: "58301B9C94981802" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2F40BF0A0DC2788C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "1F68EFFD3A4C20D9" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:keycard_reader" + } + type: "item" + }] + x: -2.0d + y: 1.5d + } + { + dependencies: ["7B954A1DD833FC98"] + description: [ + "The &6Portable Radar&r will &nsend&r the owner a &o&bchat message&r whenever a player is &ninside&r of the &o&bradar's detection radius&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding a &6Redstone Module&r to a portable radar will &ncause&r the radar &o&bto emit&r a redstone signal whenever a player is &o&bwithin range&r." + "• Adding an &6Allowlist Module&r to a portable radar will &nremove&r listed players &o&bfrom the radar's search&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + hide_dependency_lines: true + id: "60182B7CD395E4FE" + min_width: 300 + rewards: [ + { + id: "36CEA2EDDA96F087" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3CDCCA5D492CBBD1" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "06D742D8C871DEA3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:portable_radar" + } + type: "item" + }] + x: 1.5d + y: 1.0d + } + { + dependencies: ["7B954A1DD833FC98"] + description: [ + "The &6Panic Button&r looks like a &o&bbutton&r, but works &o&bthe same way as a lever&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "5F36E2EAE8CFF1F2" + rewards: [ + { + id: "483A10A2E70F1BAE" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0A14A5BECAF2C0C5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2611466C93133448" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:panic_button" + } + type: "item" + }] + x: -9.0d + y: -2.0d + } + { + dependencies: ["5597B505A0A5AEB8"] + description: [ + "The &6Keypad&r is used by placing the keypad, &eRight+clicking&r it, and setting a &o&bnumerical passcode&r. Once the &o&bkeycode is set&r, &eRight+clicking&r the keypad will allow you to enter the code. If it's correct, the keypad &o&bwill emit redstone power&r for &o&bthree seconds&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to a keypad will &nallow&r listed players to use the block &o&bwithout knowing the code&r." + "• Adding a &6Denylist Module&r to a keypad will ban listed players from &o&binteracting with the block&r." + "• Adding a &6Disguise Module&r to a keypad will cause the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "• Adding a &6Smart Module&r to a block that requires a passcode will result in a &ncooldown&r being applied after an incorrect code has been entered. During that time, &o&bno new code can be entered&r." + "• Adding a &6Harming Module&r to a block that requires a passcode will result in the player getting &ndamaged&r, if they enter an &o&bincorrect code&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + id: "28D9DB349952C1E7" + min_width: 500 + rewards: [ + { + id: "1576169D7243CDBD" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "172C4B8DCC6E3E6A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4695726D647DECC0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:keypad" + } + type: "item" + }] + x: -8.5d + y: 1.0d + } + { + dependencies: ["5597B505A0A5AEB8"] + description: [ + "The &6Passcode-protected Chest&r and &9Barrel&r is equipped with a &o&bpasscode locking system&r. Whenever the passcode is entered correctly, the &o&bchest's inventory&r will open." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r will &nallow&r players to open it &o&bwithout knowing the code&r. Additionally, &3Reinforced Hoppers&r owned by listed players &o&bcan extract items&r from the storage." + "• Adding a &6Denylist Module&r will &nban&r listed players from &o&binteracting with the block&r." + "• Adding a &6Disguise Module&r will &ncause&r the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "• Adding a &6Smart Module&r to a block that requires a passcode will result in a &ncooldown&r being applied after an incorrect code has been entered. During that time, &o&bno new code can be entered&r." + "• Adding a &6Harming Module&r to a block that requires a passcode will result in the player getting &ndamaged&r, if they enter an &o&bincorrect code&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + id: "555CD061CFB2E911" + min_width: 500 + rewards: [ + { + id: "779AEFBF2D1C17FF" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "44F256E162C9B109" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "539C776C259FEB0F" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "securitycraft:keypad_chest" + } + { + Count: 1b + id: "securitycraft:keypad_barrel" + } + ] + } + } + title: "Password-protected Storage" + type: "item" + }] + x: -7.5d + y: 1.5d + } + { + dependencies: ["5597B505A0A5AEB8"] + description: [ + "The &6Passcode-protected Furnace&r, &9Smoker&r and the &3Blast Furnace&r will require you to &o&benter a passcode&r when you first place it down. After that, entering the &ncorrect code&r into the &o&bGUI&r will &o&ballow you to access&r the furnace's inventory." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r will &nallow&r players to open it &o&bwithout knowing the code&r. Additionally, &3Reinforced Hoppers&r owned by listed players &o&bcan extract items&r from the furnaces." + "• Adding a &6Denylist Module&r will &nban&r listed players from &o&binteracting with the block&r." + "• Adding a &6Disguise Module&r will &ncause&r the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "• Adding a &6Smart Module&r to a block that requires a passcode will result in a &ncooldown&r being applied after an incorrect code has been entered. During that time, &o&bno new code can be entered&r." + "• Adding a &6Harming Module&r to a block that requires a passcode will result in the player getting &ndamaged&r, if they enter an &o&bincorrect code&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + id: "79B48336BDB673B3" + min_width: 500 + rewards: [ + { + id: "4D0C61A127405783" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "14E39D065BD05418" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "08BA758AC947B957" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "securitycraft:keypad_furnace" + } + { + Count: 1b + id: "securitycraft:keypad_smoker" + } + { + Count: 1b + id: "securitycraft:keypad_blast_furnace" + } + ] + } + } + title: "Password-protected Furnaces" + type: "item" + }] + x: -6.5d + y: 1.0d + } + { + dependencies: ["60182B7CD395E4FE"] + description: [ + "The &6Username Logger&r will log &oany&r player's name within &o&b3&r blocks when it is powered by &credstone&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding a &6Disguise Module&r to a Username Logger will &ncause&r the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "• Adding an &6Allowlist Module&r to a Username Logger will &nprevent&r the listed players from &o&bbeing logged&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + id: "620C7C1B2DB7AB20" + min_width: 300 + rewards: [ + { + id: "47A32275FD701DBE" + type: "xp" + xp: 60 + } + { + exclude_from_claim_all: true + id: "573B52D9504B363F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0586BEADAD84E42A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:username_logger" + } + type: "item" + }] + x: 1.5d + y: 0.0d + } + { + dependencies: ["391D1599E823CFB9"] + description: [ + "The &6Electrified Iron Fence&r or &6Gate&r acts the same as a &9Vanilla Fence&r or &9Gate&r, except it is &nunbreakable&r, and will &o&bhurt anyone but the owner&r when they get in contact with it." + "" + "&o&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to an electrified fence or fence gate will &nallow&r listed players &o&bto touch&r it without getting hurt." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "759465968B541D98" + min_width: 300 + rewards: [ + { + id: "1B7CA1F965189BE1" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "4D625781576FB157" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3EA84F2742B6CB4B" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "securitycraft:electrified_iron_fence" + } + { + Count: 1b + id: "securitycraft:reinforced_fence_gate" + } + ] + } + } + title: "Electrified Iron Fence" + type: "item" + }] + x: 6.0d + y: -5.0d + } + { + dependencies: ["7B954A1DD833FC98"] + description: [ + "The &eFrame&r is used to craft &dKeypads&r." + "" + "&aRight+click&r it with a &9Key Panel&r to craft a &dKeypad&r." + "" + "This block is &o&bresistant&r to &o&bexplosions&r, and can only be broken by the &o&bplayer who placed&r it down using the &4Universal Block Remover&r." + ] + id: "122AFAE0229592A9" + min_width: 300 + rewards: [ + { + id: "126313258F3EA889" + type: "xp" + xp: 10 + } + { + id: "116E11C40AF28B65" + item: "minecraft:raw_iron" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "3CFBAF037DD0CECF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "72B8B3EEE3978A93" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:keypad_frame" + } + type: "item" + }] + x: -7.5d + y: -2.0d + } + { + dependencies: ["6B67AF1592AD61F6"] + description: [ + "The &6Security Camera&r allows you to view the nearby area from its position. Simply place down a camera, then &eRight+click&r it with a &dCamera Monitor&r to bind it for use." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding the &6Redstone Module&r to a camera &nlets&r the camera emit a &o&b15&r-block &o&bredstone signal&r when enabled." + "• Adding the &6Allowlist Module&r to a camera will &nallow&r listed players &o&bto access&r the camera." + "• Adding the &6Smart Module&r to a camera will &nallow&r the owner &o&bto set&r a default viewing direction by the press of a button. This is the direction that a player &o&bwill look towards&r, when they &nstart&r viewing a camera." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "2BA02315F8F76365" + min_width: 300 + rewards: [ + { + id: "45BE5844DFD11139" + type: "xp" + xp: 70 + } + { + exclude_from_claim_all: true + id: "372B98ECD05ED8B2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "22B180D88383B5C2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:security_camera" + } + type: "item" + }] + x: 5.5d + y: 2.5d + } + { + dependencies: ["535A924FF7F7B5BE"] + description: [ + "The &6Inventory Scanner&r is used by placing two scanners a block apart, &o&bfacing each other&r. When placed correctly, a laser field should appear between them." + "" + "Once they are placed, &eRight+click&r either scanner to add prohibited items that &o&bshould be detected&r. When a player &o&bwalks between the scanners&r while carrying a prohibited item, different actions will be performed based on what &nmodules&r are installed in the scanners." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to an inventory scanner will &nallow&r listed players to walk through the scanning field &o&bwithout checking their inventory&r." + "• Adding a &6Smart Module&r to an inventory scanner &o&bwill make the scanner&r check for &o&benchantments&r and other &o&bmetadata changes&r when scanning inventories." + "• Adding a &6Storage Module&r will &nallow&r the scanner to &o&bstore the items&r it finds while something passes through the field in a built-in inventory." + "• Adding a &6Disguise Module&r to an inventory scanner will &ncause&r the texture \\& model of it to change to the texture \\& model of the block that is &nadded&r to the &6Disguise Module&r." + "• Adding a &6Redstone Module&r to an inventory scanner will &ncause&r it to emit a &o&bredstone signal&r whenever a listed item is found when something passes through its field." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + id: "378E83F895208D7D" + min_width: 500 + rewards: [ + { + id: "58F8E60A16777D46" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "3D49C5E9CD2E1FE3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "534C634BF90F24C7" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:inventory_scanner" + } + type: "item" + }] + x: -2.0d + y: -5.0d + } + { + dependencies: ["391D1599E823CFB9"] + description: [ + "The &6Cage Trap&r will spawn a '&ncage&r' around any player who touches it, except for the owner." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding a &6Disguise Module&r to a Cage Trap will &ncause&r the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "• Adding an &6Allowlist Module&r to a Cage Trap will &nprevent&r listed players from &o&bbeing trapped&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "2B2014FEAD958CED" + min_width: 300 + rewards: [ + { + id: "4FE540D0406F4D16" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6E4B6E3A71BA7F64" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "48412D819C0AC45A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { } + } + id: "securitycraft:cage_trap" + } + type: "item" + }] + x: 7.5d + y: -3.5d + } + { + dependencies: ["7B954A1DD833FC98"] + description: [ + "The &6Laser Block&r is used by putting two of them within five blocks of each other. When the blocks are placed correctly, a &o&blaser&r should form between them." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding a &6Harming Module&r to a laser block will &ncause&r players to take &o&bdamage&r if they &o&bstep through the lasers&r." + "• Adding an &6Allowlist Module&r to a laser block will &nallow&r listed players &o&bto walk through&r the lasers &nwithout&r emitting a &o&bredstone signal&r." + "• Adding a &6Disguise Module&r to a laser block will &ncause&r the texture \\& model of it to change to the texture \\& model of the block that is added to the &6Disguise Module&r." + "• Adding a &6Redstone Module&r to a laser block will &ncause&r it to emit a &o&b15&r-block &o&bredstone signal&r when a mob or player walks through the laser." + "• Adding a &6Smart Module&r to a laser block will &nallow&r to &o&bturn off&r the laser for specific sides of the block." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "535A924FF7F7B5BE" + min_width: 300 + rewards: [ + { + id: "6494B55FFD66A58E" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "13DCE9637EF25388" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "20F0FBB99EE82728" + item: "securitycraft:laser_block" + type: "item" + }] + x: -2.0d + y: -3.5d + } + { + dependencies: ["535A924FF7F7B5BE"] + description: [ + "The &6Universal Block Modifier&r is used to &ncustomize&r various blocks added by &aSecurityCraft&r." + "" + "&eRight+click&r a block to open the customization &o&bGUI&r. You can then insert \"&nmodules&r\" to customize how that block functions." + ] + id: "3B38DAF259E5CDAA" + min_width: 300 + rewards: [ + { + id: "56DD991EAF1CDBFE" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "68ADE9D7C8EBAC2B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5ED7BFA83512204E" + item: "securitycraft:universal_block_modifier" + type: "item" + }] + x: 0.0d + y: -3.5d + } + { + dependencies: ["122AFAE0229592A9"] + description: [ + "The &9Key Panel&r can be placed down for a smaller, waterloggable version of the keypad. It is also used in the &o&bcrafting recipes&r of &dKeypads&r, &ePasscode-protected Chests&r, &cPasscode-protected Barrels&r and &7Passcode-protected Furnaces&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to a key panel will &nallow&r listed players to use the block &o&bwithout knowing the code&r." + "• Adding a &6Denylist Module&r to a key panel will &nban&r listed players from &o&binteracting with the block&r." + "• Adding a &6Smart Module&r to a block that &o&brequires a passcode&r will result in a &ncooldown&r being applied after an &nincorrect&r code has been entered. During that time, &o&bno new code can be entered&r." + "• Adding a &6Harming Module&r to a block that requires a passcode will result in the player getting &ndamaged&r, if they enter an &o&bincorrect code&r." + "" + "This block can be locked with a &2Sonic Security System&r, this block is also resistant to &o&bexplosions&r, and can only be &o&bbroken by the player who placed it down&r using the &cUniversal Block Remover&r." + ] + id: "5597B505A0A5AEB8" + min_width: 300 + rewards: [ + { + id: "6796D32938E13D39" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "78B2E4D21D5BD85E" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "036F0727AA4DFD9E" + item: "securitycraft:keypad_item" + type: "item" + }] + x: -7.5d + y: -0.5d + } + { + dependencies: ["555CD061CFB2E911"] + description: [ + "The &6Briefcase&r is a &o&bkeypad-locked portable storage&r unit containing &o&b12&r slots." + "" + "After crafting it, &eRight+click&r it to setup the &o&b4-digit&r passcode to use from then on." + "" + "&eRight+click&r it again and insert &o&bthe code&r to interact with the items." + "" + "To &nremove&r a &6Briefcase's&r code or &nchange&r its owner, put it into your &o&boffhand&r and &eRight+click&r while holding a &9Universal Key Changer&r/&aUniversal Owner Changer&r in your &o&bmainhand&r." + ] + id: "7E7E4E4B494FC3DD" + min_width: 300 + rewards: [ + { + id: "78AA5A5A9532E5E1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1B83B27BD7A749BB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "421B6B1682752A87" + item: "securitycraft:briefcase" + type: "item" + }] + x: -7.5d + y: 3.0d + } + { + dependencies: ["7B954A1DD833FC98"] + description: [ + "The &6Retinal Scanner&r emits a &o&b15-block&r &credstone signal&r when its owner hovers the cursor over it from &nany visible angle&r within breaking distance." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding the &6Allowlist Module&r to a retinal scanner will &nallow&r listed players &o&bto use&r the scanner even if they aren't the player who placed down the block." + "• Adding a &6Disguise Module&r to a retinal scanner will cause the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + hide_dependency_lines: true + id: "52CD5E2F7E19C7FB" + min_width: 300 + rewards: [ + { + id: "6E97CF1BFBA1EB29" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5042451DA6722E3B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "029E1FC6E2B5F590" + item: "securitycraft:retinal_scanner" + type: "item" + }] + x: -8.5d + y: 5.0d + } + { + dependencies: ["28D9DB349952C1E7"] + description: [ + "The &6Reinforced Iron Door&r is the same as the &3Vanilla Iron Door&r, except it is &nunbreakable&r." + "" + "It can only be opened by &9Keypads&r, &aInventory Scanners&r, etc. The owner of the door can use the &cUniversal Block Remover&r to break it down." + ] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "7CC7BA1DBDEC4AB0" + min_width: 300 + rewards: [ + { + id: "0B2821C305E405C4" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3694FC1A1DFF76C9" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "5C4DFBCEC5FA1625" + item: "securitycraft:door_indestructible_iron_item" + type: "item" + }] + x: -10.0d + y: 3.0d + } + { + dependencies: [ + "28D9DB349952C1E7" + "7CC7BA1DBDEC4AB0" + ] + description: [ + "The &6Keypad Door&r acts like a &9Keypad&r combined with a &aReinforced Iron Door&r, where a &ncode&r has to be inserted in order &o&bto open the door&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to a keypad door will &nallow&r listed players to use the block &o&bwithout knowing the code&r." + "• Adding a &6Denylist Module&r to a keypad door will &nban&r listed players from &o&binteracting with the block&r." + "• Adding a &6Smart Module&r to a block that requires a passcode will result in a &ncooldown&r being applied after an incorrect code has been entered. During that time, &o&bno new code can be entered&r." + "• Adding a &6Harming Module&r to a block that requires a passcode will result in the player getting &ndamaged&r, if they enter an &o&bincorrect code&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + hide_until_deps_visible: true + id: "5F3C1388F1928CE8" + min_width: 300 + rewards: [ + { + id: "3C2995EC466213A9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "60F3BACAC2C2A696" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "17469F7959339E52" + item: "securitycraft:keypad_door_item" + type: "item" + }] + x: -10.0d + y: 1.0d + } + { + dependencies: [ + "52CD5E2F7E19C7FB" + "7CC7BA1DBDEC4AB0" + ] + description: [ + "The &6Scanner Door&r acts like a &9Retinal Scanner&r combined with a &3Reinforced Iron Door&r, where the owner &o&blooks at the top to open it&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to a scanner door will &nallow&r players &o&bto use&r the scanner door even if they aren't the player who placed down the block." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + hide_until_deps_visible: true + id: "2C00E3B6558B504D" + min_width: 300 + rewards: [ + { + id: "1CAB76D7D40F4E91" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0E5897CA17B2AE42" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2625B737E76AFE9B" + item: "securitycraft:scanner_door_item" + type: "item" + }] + x: -10.0d + y: 5.0d + } + { + dependencies: ["52CD5E2F7E19C7FB"] + description: [ + "The &6Secret Sign&r works like a &9Vanilla Sign&r, with the slight difference that &o&bonly the owner&r of the sign and players on the &o&ballowlist&r can interact with, and &nview the text&r on it. Make sure &nno one can break&r the block it's placed on!" + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to a secret sign will &nallow&r listed players &o&bto interact&r with, and &o&bview the text on it&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "478688B31F791E0C" + min_width: 300 + rewards: [ + { + id: "4128FA5275D63228" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "65136A8988A154BB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "30571C13CCB16396" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "securitycraft:secret_signs" + } + } + title: "Secret Signs" + type: "item" + }] + x: -8.5d + y: 4.0d + } + { + dependencies: ["3E0314F44C51E728"] + description: [ + "&6Keycards&r can be linked to &9Keycard Readers&r in order to open them." + "" + "To &nreset&r the settings on &6Keycard&r, put it into a &3Crafting Table&r." + ] + id: "7D9B4DD4E3F63080" + rewards: [ + { + id: "0F4B996C583F2A5A" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "7D7828D2C21E6FB1" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "7080D194C218867B" + item: { + Count: 1 + id: "securitycraft:keycard_lv1" + tag: { } + } + type: "item" + }] + x: -2.0d + y: 3.0d + } + { + dependencies: ["7D9B4DD4E3F63080"] + hide_dependency_lines: true + id: "396BDDB04335A45B" + rewards: [ + { + id: "07C38F3AE6FBA15D" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "78A10C6A91C3659A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "1AA63545BB3F0124" + item: { + Count: 1 + id: "securitycraft:keycard_lv2" + tag: { } + } + type: "item" + }] + x: -1.0d + y: 4.0d + } + { + dependencies: ["396BDDB04335A45B"] + hide_dependency_lines: true + id: "61949D98FA4F9041" + rewards: [ + { + id: "55A72B9CC7B780E0" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "319C5E165C0FD07E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "7F8F2EE7B84E0B65" + item: { + Count: 1 + id: "securitycraft:keycard_lv3" + tag: { } + } + type: "item" + }] + x: -3.0d + y: 4.0d + } + { + dependencies: ["61949D98FA4F9041"] + hide_dependency_lines: true + id: "2F3A9283C8A41A30" + rewards: [ + { + id: "633939BB676D9443" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "3E26CC439D02BCB3" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "7D4F8AB3BCC8A8B4" + item: { + Count: 1 + id: "securitycraft:keycard_lv4" + tag: { } + } + type: "item" + }] + x: -2.0d + y: 5.0d + } + { + dependencies: ["2F3A9283C8A41A30"] + hide_dependency_lines: true + id: "4361F60411F528CC" + rewards: [ + { + id: "297F29CAAC7A517D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "14077DB70BDD3E0D" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5B5A1E6DC9917B85" + item: { + Count: 1 + id: "securitycraft:keycard_lv5" + tag: { } + } + type: "item" + }] + x: -2.0d + y: 6.0d + } + { + dependencies: ["7E9273CE84F3A2A5"] + description: [ + "The &6Taser&r is a &nself-recharging&r stun gun." + "" + "&eRight+click&r to fire it." + "" + "Entities hit with the &6Taser&r will get &dNausea II&r, &dSlowness II&r, and &dWeakness II&r for &o&b10&r seconds." + "" + "If the &6Taser&r is &eSneak+Right+clicked&r (provided some redstone in the inventory), it will &ndouble&r its strength for the &o&bnext shot&r." + ] + id: "391D1599E823CFB9" + min_width: 300 + rewards: [ + { + id: "56ED635E6E8D8F87" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "7ACAA722E7E75E28" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "006CC61C2EE5D69D" + item: { + Count: 1 + id: "securitycraft:taser" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.0d + y: -3.5d + } + { + dependencies: ["7B954A1DD833FC98"] + description: ["The &6Denylist Module&r usually &nadds&r player(s) to a &o&bblock's effect&r or &nblocks&r them from using a &o&bcertain function of the block&r."] + hide_dependency_lines: true + id: "27434782A5CAD9DD" + min_width: 250 + rewards: [ + { + id: "5058D02E170A0BC8" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1810E598F7EA6387" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "687DCB11A67D07BE" + item: "securitycraft:blacklist_module" + type: "item" + }] + x: -4.8999999999999995d + y: 2.1d + } + { + dependencies: ["7B954A1DD833FC98"] + description: ["The &6Disguise Module&r &ndisguises&r certain blocks when &o&badded to them&r."] + hide_dependency_lines: true + id: "75D8F6E44243EBE7" + min_width: 250 + rewards: [ + { + id: "179A4E20969A50DF" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "12FB79633D95CD8B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "566482034DC1C155" + item: "securitycraft:disguise_module" + type: "item" + }] + x: -4.199999999999999d + y: 2.1d + } + { + dependencies: ["7B954A1DD833FC98"] + description: ["The &6Harming Module&r &nadds&r &o&bdamage properties&r to a block."] + hide_dependency_lines: true + id: "7B6D499C03ECE915" + min_width: 250 + rewards: [{ + exclude_from_claim_all: true + id: "78F588C07AA1ACDC" + table_id: 5236874501558129216L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "7D5DAF8076413CF3" + item: "securitycraft:harming_module" + type: "item" + }] + x: -5.6d + y: 2.8d + } + { + dependencies: ["7B954A1DD833FC98"] + description: ["The &6Smart Module&r &nupgrades&r the &o&brange or functions&r of a block."] + hide_dependency_lines: true + id: "437BADBCF4BD042E" + min_width: 260 + rewards: [{ + id: "64C96AD4602BEF9B" + type: "xp" + xp: 10 + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "580D6423217B8A77" + item: "securitycraft:smart_module" + type: "item" + }] + x: -4.199999999999999d + y: 2.8d + } + { + dependencies: ["7B954A1DD833FC98"] + description: ["The &6Storage Module&r &nadds&r or &nupgrades&r the &o&bsize of a block's inventory&r."] + hide_dependency_lines: true + id: "76B17FC69E34C6CB" + min_width: 250 + rewards: [ + { + id: "574F8D4B27A08910" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1F1C05AF5FEAF270" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "4FD7C0C564656595" + item: "securitycraft:storage_module" + type: "item" + }] + x: -3.4999999999999996d + y: 2.8d + } + { + dependencies: ["7B954A1DD833FC98"] + description: ["The &6Allowlist Module&r usually &nremoves&r player(s) from a &o&bblock's effect&r or &o&bpasscode-checking&r."] + hide_dependency_lines: true + id: "6A73006CBC8622B2" + min_width: 250 + rewards: [ + { + id: "101A72D23F121BC5" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3F56DF3E65182FD9" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6C340670B87358D8" + item: "securitycraft:whitelist_module" + type: "item" + }] + x: -5.6d + y: 2.1d + } + { + dependencies: ["7B954A1DD833FC98"] + description: ["The &6Speed Module&r &nallows&r some of &eSecurityCraft's&r blocks &o&bto operate faster&r than usual."] + hide_dependency_lines: true + id: "3C5645FC080DFE9A" + min_width: 250 + rewards: [ + { + id: "0EA2152E8152C109" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "61C87AEEFBFB54EA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "16101E3E0C9AF740" + item: "securitycraft:speed_module" + type: "item" + }] + x: -4.8999999999999995d + y: 2.8d + } + { + dependencies: ["7B954A1DD833FC98"] + description: ["The &6Redstone Module&r &nadds&r &o&bpower properties&r to a block."] + hide_dependency_lines: true + id: "5BF80A9CE7738136" + min_width: 250 + rewards: [ + { + id: "3F2D9A4AAC44E48F" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1B4A66E5A63A72CA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "524431DEDC3ADFD3" + item: "securitycraft:redstone_module" + type: "item" + }] + x: -3.4999999999999996d + y: 2.1d + } + { + dependencies: ["60182B7CD395E4FE"] + description: [ + "The &6Sonic Security System&r, inspired by the similarly-named device in the game \"&nMetroid Prime 2: Echoes&r\", is able &o&bto lock certain SecurityCraft blocks&r and prevent them from being used or interacted with." + "" + "&eRight+clicking&r a supported block will bind it to the &6Sonic Security System&r. Once it is placed down, &eRight+clicking&r it will open a &o&bGUI&r where you can &9enable&r, &cdisable&r, or &2reset&r the &6Sonic Security System&r. The blocks can be &o&bunlocked&r by playing a tune nearby, either via the &3Portable Tune Player&r, or &o&bnote blocks&r. To set such a tune, toggle note recording on in the &o&bSonic Security System's GUI&r then play the tune that you want using note blocks played nearby. Toggle the recording &coff&r once you are finished. Any time that &o&btune is played&r nearby the &6Sonic Security System&r, blocks locked by it will become accessible for a short while." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to a sonic security system will &nallow&r listed players &o&bto save&r the system's tune onto a portable tune player, as well as listen to the tune in the system's &o&bGUI.&r" + "• Adding a &6Redstone Module&r to a sonic security system &nlets&r the system &o&bemit a redstone signal&r when the correct tune was played." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "2A66880B7F95ACA6" + min_width: 500 + rewards: [ + { + id: "30AD8DBC85ADFE38" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "25E221A1C17B92CA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4B7C55B9015E1D32" + item: "securitycraft:sonic_security_system" + type: "item" + }] + x: 1.0d + y: 2.0d + } + { + dependencies: ["60182B7CD395E4FE"] + description: [ + "The &6Sentry&r attacks intruders with an &ninfinite supply&r of bullets. Alternatively, &o&bother projectiles&r can be used by putting them in a &o&bpasscode-protected chest&r or &o&bbarrel&r below the &6Sentry&r." + "" + "It has &o&bthree modes&r and &o&bthree target&r types that can be switched by &eRight+clicking&r it." + "" + "The modes are \"&nIdle&r\" (it will &o&bnever attack&r), \"&nCamouflage&r\" (it will &o&bonly activate&r once a target is &o&bwithin range&r) and \"&nAggressive&r\" (it will &o&balways be active&r), with the latter &o&btwo modes&r being available with the target types \"&nHostile mobs only&r\", \"&nHostile mobs and players&r\", and \"&nPlayers only&r\"." + "" + "A &2Disguise Module&r will make the &6Sentry&r &o&bdisguise itself&r with the block inserted in the module, a &2Speed Module&r will increase the &6Sentry's&r &o&battack speed&r, and an &2Allowlist Module&r will &o&bprohibit&r it from shooting listed players." + "" + "The modules can be &ainserted&r or &9switched&r out by &eRight+clicking&r a &6Sentry&r, and they &o&bcan be extracted&r by using a &dUniversal Block Modifier&r." + "" + "To &cremove&r the &6Sentry&r, &eSneak+Right+click&r it." + ] + id: "5BDE1E9F692E4147" + min_width: 300 + rewards: [ + { + id: "762D089C28CD0AEF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "747406F1D68D2C2C" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6C37DA96CA796990" + item: "securitycraft:sentry" + type: "item" + }] + x: 2.0d + y: 2.0d + } + { + dependencies: ["60182B7CD395E4FE"] + description: [ + "The &6Motion Activated Light&r will emit a light, similar to a &aRedstone Lamp&r, when a player is within a certain range of the block (&o&bconfigurable&r)." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "02F5E9AFC3E79537" + rewards: [ + { + id: "370C289F0B723F20" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "1C48DB84BD029D42" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "51106453740D9329" + item: "securitycraft:motion_activated_light" + type: "item" + }] + x: 2.5d + y: 1.0d + } + { + dependencies: ["620C7C1B2DB7AB20"] + description: [ + "The &6Block Change Detector&r detects players breaking and/or placing blocks in its vicinity (&o&b5&r blocks by default, can be changed with the &2Universal Block Modifier&r)." + "" + "&eRight+clicking&r the block will open its interface, where a list of &o&bdetected changes&r can be seen, as well as whether it &nonly&r detects &o&bbreaking&r or &o&bplacing&r blocks, or &o&bboth&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding a &6Disguise Module&r to a block change detector will &ncause&r the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "• Adding an &6Allowlist Module&r to a block change detector will &nallow&r listed players &o&bto place&r/&o&bbreak&r blocks in the block's vicinity, &o&bwithout getting logged&r. They will also be able to &nview&r all logged entries, however they cannot clear them, &o&bor change the block's settings&r." + "• Adding a &6Smart Module&r to a block change detector &nallows&r it &o&bto only log changes&r of one specific type of block. The block can be set in the &o&bGUI&r." + "• Adding a &6Redstone Module&r to a block change detector &nmakes&r it &o&bemit a redstone signal&r each time it detects a block was changed by a player in its vicinity." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + id: "1F6F00614B99D932" + min_width: 500 + rewards: [ + { + id: "1D5787F68A7C1AC2" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "57C03901355AF237" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3C12E2FDF27D9CD5" + item: "securitycraft:block_change_detector" + type: "item" + }] + x: 1.5d + y: -1.0d + } + { + dependencies: ["5BDE1E9F692E4147"] + description: [ + "The &6Trophy System&r, inspired by the gadget first seen in \"&nCall of Duty: Modern Warfare 3&r\" published by Activision, &o&btargets enemy arrows&r and &o&bfireballs&r and will &o&bdestroy&r them from range after &o&ba half-second charge time&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding a &6Smart Module&r will &nallow&r you &o&bto configure&r which projectile types the &6Trophy System&r is &o&ballowed to target&r." + "• Adding a &6Speed Module&r &nallows&r it &o&bto destroy&r targets &o&btwice as fast&r." + "• Adding an &6Allowlist Module&r will &nmake&r it &o&bignore projectiles&r thrown by listed players, as well as their &o&bSentries' bullets and I.M.S.' bombs&r." + "• Adding a &6Disguise Module&r will &ncause&r the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + id: "3AE293837F68F5E3" + min_width: 500 + rewards: [ + { + id: "4EB96C895CE14926" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "0CF673994AABFC93" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "588CC1C1990BEB7A" + item: "securitycraft:trophy_system" + type: "item" + }] + x: 2.0d + y: 3.0d + } + { + dependencies: ["4C48531A31DF6192"] + description: [ + "The &6Mine Remote Access Tool&r will allow you &nto access&r mines &o&bremotely&r." + "" + "&eRight+click&r on a mine to &n'bind'&r it to the tool." + "" + "&eRight+click&r in the air (with the tool equipped) to open the tool's &o&bGUI&r, which will allow you to &nactivate&r, &ndeactivate&r, &ndetonate&r, or &nunbind&r any &o&bbound mines&r." + ] + id: "65D6B1059D8DB049" + min_width: 300 + rewards: [ + { + id: "5E73799A480F7E53" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C018148D5540309" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "197A81AE32D5E629" + item: "securitycraft:remote_access_mine" + type: "item" + }] + x: 6.5d + y: -1.5d + } + { + dependencies: ["6B67AF1592AD61F6"] + description: [ + "The &6Alarm&r will emit a &o&bsiren sound effect&r and &o&bflash red&r whenever it is powered by &credstone&r, and in &o&b2&r-second intervals after that. The interval is &nmodifiable&r in the &6Alarm's&r options." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding a &6Smart Module&r to an alarm will &nallow&r you &o&bto select&r which sound the alarm plays when it is &nactivated&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + ] + id: "7EEDA6D2152A365D" + min_width: 260 + rewards: [ + { + id: "03A9EC7278E5C010" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "16527183D23CA936" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "653AF9F206AFB4BF" + item: "securitycraft:alarm" + type: "item" + }] + x: 4.5d + y: 2.5d + } + { + dependencies: ["26369660FED35B05"] + description: [ + "The &6Block Pocket Manager&r is used to manage the &5Block Pocket&r, which is a room that &nonly&r its owner and players &o&bon the allowlist can enter&r. When opening its &o&bGUI&r, you see a &o&bselection of sizes&r. Choose one, then build the &4Block Pocket&r around the manager. Make sure that the manager is placed on the outside of the bottom layer. The &5Block Pocket&r is a cube of &nthe size you chose&r." + "" + "The corners are built with &7Reinforced Chiseled Crystal Quartz&r, the blocks between the corners are built with correctly oriented &3Reinforced Crystal Quartz Pillars&r, and the floor/wall/ceiling is built with &2Block Pocket Walls&r. See on the image below for &o&ban example&r of how it looks. &eClicking&r \"&nActivate&r\" after the structure is built will activate &o&bany added modules&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding a &6Disguise Module&r will &nmake&r the &dBlock Pocket's&r sides opaque." + "• Adding an &6Allowlist Module&r will &nallow&r listed players &o&bto pass through&r the &dBlock Pocket's&r sides." + "• Adding a &6Storage Module&r will &nadd&r an &o&binventory&r to it, allowing you &o&bto store&r the blocks you need for building the &dBlock Pocket&r. This also &nallows&r you to &o&bauto-assemble&r the &dBlock Pocket&r if all necessary building materials &o&bare present&r." + "" + "{image:kubejs:textures/item/pocket.png width:100 height:100 align:1}" + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r. This block can be locked with a &2Sonic Security System&r." + ] + hide_dependency_lines: true + id: "64D2C058EA8DBEA1" + min_width: 500 + rewards: [ + { + id: "4782113FA7943F3F" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "71C9CA6C01F51DD6" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [{ + id: "22CE1938C6D8D88B" + item: "securitycraft:block_pocket_manager" + type: "item" + }] + title: "&6The Block Pocket" + x: 6.0d + y: 4.5d + } + { + dependencies: ["7B954A1DD833FC98"] + description: ["&6Crystal Quartz&r is used to craft &3Crystal Quartz Blocks&r."] + id: "26369660FED35B05" + rewards: [ + { + id: "587FFE7713B7E166" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "688C57F3B29FE157" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 36L + id: "2A51D55393BF417D" + item: "securitycraft:crystal_quartz_item" + title: "Crystal Quartz" + type: "item" + }] + x: -6.0d + y: -2.0d + } + { + dependencies: ["67CBB3FFBE7476E8"] + hide_dependency_lines: true + id: "6B67AF1592AD61F6" + rewards: [ + { + id: "0F818D1FED28B488" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "4487AC0B52BA7F0B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7D6CF5E3373E14D8" + item: "securitycraft:reinforced_glass" + type: "item" + }] + x: 5.0d + y: 1.0d + } + { + dependencies: ["69C2092208E4F5EC"] + description: [ + "The &6Camera Monitor&r is a portable item used &o&bto view&r live feeds of up to &o&b30&r bound &dSecurity Cameras&r." + "" + "&eRight+click&r a &dSecurity Camera&r with the &6Camera Monitor&r to &nbind&r it, then &eRight+click&r air and select the camera in the &o&bGUI&r while &o&bthe camera's chunk is loaded&r to see its feed." + "" + "&nUnbind&r a &dSecurity Camera&r by &eRight+clicking&r it again with the &6Camera Monitor&r or by opening the &6Camera Monitor's&r &o&bGUI&r and &eclicking&r the corresponding \"&o&bX&r\" button." + ] + id: "20FBEAC6E98D87C3" + min_width: 270 + rewards: [ + { + id: "6A83DE72DCF3C1BA" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "33AAAF51EAC04EF9" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4955D53F443F724E" + item: "securitycraft:camera_monitor" + type: "item" + }] + x: 6.5d + y: 2.5d + } + { + dependencies: ["69C2092208E4F5EC"] + description: [ + "The &6Display Case&r can display &o&bone item&r, similar to a &o&bvanilla item frame&r, although the item &o&bcannot be rotated&r. Opening the case requires inserting a &npasscode&r, just like the &dKeypad&r and other similar blocks do." + "" + "Once open, an item &o&bcan be inserted&r by &eRight+clicking&r the case with the item. &nTo retrieve&r the item, &eSneak+Right+click&r the case. &nTo close&r the case, &eRight+click&r it with an &o&bempty hand&r. While &o&bthe case is open&r, &nanyone&r can interact with it. The &o&bglow variant glows in the dark&r, akin to &o&bvanilla's glow item frames&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding an &6Allowlist Module&r to a display case will &nallow&r listed players &o&bto open &rit without knowing the code." + "• Adding a &6Denylist Module&r to a display case will &nban&r listed players &o&bfrom interacting&r with the block." + "• Adding a &6Smart Module&r to a block that requires a passcode will &nresult&r in a &o&bcooldown&r being applied after an incorrect code has been entered. During that time, &o&bno new code can be entered&r." + "• Adding a &6Harming Module&r to a block that requires a passcode will &nresult&r in the player &o&bgetting damaged&r, if they enter an &nincorrect code&r." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + id: "3802FD6C85561AF3" + min_width: 500 + rewards: [ + { + id: "17C04C6DF363E1F2" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "6DB04D4C73AA7FC4" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1DE77950E86FC09E" + item: "securitycraft:display_case" + type: "item" + }] + x: 8.0d + y: 1.0d + } + { + dependencies: ["3802FD6C85561AF3"] + id: "6F3187E31B961F83" + rewards: [ + { + id: "68A1750A852CFF2E" + type: "xp" + xp: 40 + } + { + exclude_from_claim_all: true + id: "586046CDB60DC314" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0F8FEA6A4F5CBCC2" + item: "securitycraft:glow_display_case" + type: "item" + }] + x: 8.0d + y: 0.0d + } + { + dependencies: ["6B67AF1592AD61F6"] + id: "69C2092208E4F5EC" + rewards: [ + { + id: "06E74BF62FAE7D27" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "218E8716B06E0C42" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "1AB8C9972F92804A" + item: "securitycraft:reinforced_glass_pane" + title: "Reinforced Glass Pane" + type: "item" + }] + x: 6.5d + y: 1.0d + } + { + dependencies: ["69C2092208E4F5EC"] + description: [ + "The &6Projector&r projects &nholographic versions&r of a block &o&bof your choice&r into the world, which can be used &o&bto hide&r buildings and other areas of interest from other players. " + "" + "The &o&brange&r and &o&bwidth&r of the projection can be &nchanged&r within the &6Projector's&r &o&bGUI&r." + "" + "&n&bAccepted Modules:&r" + "" + "• Adding a &6Disguise Module&r to a Projector will &ncause&r the texture \\& model of it &o&bto change&r to the texture \\& model of the block that is added to the &6Disguise Module&r." + "• Adding a &6Redstone Module&r to a Projector will &nallow&r you &o&bto manually toggle&r the Projector &9on&r and &coff&r using redstone power." + "" + "This block is &o&bresistant to explosions&r, and can &nonly&r be broken by the player who placed it down using the &cUniversal Block Remover&r." + "" + "This block can be locked with a &2Sonic Security System&r." + ] + id: "6D22463D11EB00F3" + min_width: 300 + rewards: [ + { + id: "5699498B9757C2D6" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5D79A4F25A6A0C34" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "65C7003CB73CB3CF" + item: "securitycraft:projector" + type: "item" + }] + x: 6.5d + y: 0.0d + } + { + dependencies: ["2A66880B7F95ACA6"] + description: [ + "The &6Portable Tune Player&r can &o&bplay a tune&r that was previously &o&bsaved&r to it." + "" + "• To &nsave&r a tune, &eRight+click&r a &9Sonic Security System&r that has already &crecorded&r a tune." + "" + "• To &nplay&r the tune, &eRight+click&r the &6Portable Tune Player&r." + "" + "• To &ncancel&r the playback, simply &eRight+click&r the &6Portable Tune Player&r again or &cstop&r holding it." + ] + hide_until_deps_visible: true + id: "239550EAF9E73288" + min_width: 270 + rewards: [ + { + id: "7DFF3C093F0AF365" + type: "xp" + xp: 30 + } + { + count: 8 + id: "763A83A3AC11F60F" + item: "minecraft:redstone" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "0929DBDC356F3452" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "58CFBD14E3666C2F" + item: "securitycraft:portable_tune_player" + type: "item" + }] + x: 1.0d + y: 3.0d + } + { + dependencies: ["5BDE1E9F692E4147"] + description: [ + "The &6Sentry Remote Access Tool&r will &nallow&r you to access &dSentries&r remotely." + "" + "&eRight+click&r on a &dSentry&r to '&nbind&r' it to the tool." + "" + "&eRight+click&r in the &nair&r (&o&bwith the tool equipped&r) to open the tool's &o&bGUI&r, which will &nallow&r you &o&bto change&r the mode of &neach&r bound &dSentry&r, or of &nall&r bound &dSentries&r at &nthe same&r time." + ] + hide_until_deps_visible: true + id: "1FD73EFBBC6A2189" + min_width: 270 + rewards: [ + { + id: "780E29ACFDD3B97F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1375D4D1D1A55856" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "06D9CE83068885F5" + item: "securitycraft:remote_access_sentry" + type: "item" + }] + x: 3.0d + y: 2.0d + } + ] + title: "&3&oSecurity Craft" +} diff --git a/minecraft/config/ftbquests/quests/chapters/small_ships.snbt b/minecraft/config/ftbquests/quests/chapters/small_ships.snbt new file mode 100644 index 0000000..6817bf7 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/small_ships.snbt @@ -0,0 +1,132 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "small_ships" + group: "7E54189F6BA49858" + icon: "smallships:oak_cog" + id: "51930B643693CF94" + order_index: 2 + quest_links: [ ] + quests: [ + { + id: "546811E28D0C421E" + rewards: [{ + exclude_from_claim_all: true + id: "7D8BC252D3AA7591" + table_id: 5236874501558129216L + type: "loot" + }] + tasks: [{ + id: "23F29D2420C9A6B1" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "smallships:briggs" + } + } + title: "Any Brigg" + type: "item" + }] + title: "Brigg Ships" + x: 1.0d + y: 0.0d + } + { + id: "143C1FFF1C05FC2C" + rewards: [{ + exclude_from_claim_all: true + id: "2CF455AEEA24AF16" + table_id: 5236874501558129216L + type: "loot" + }] + tasks: [{ + id: "7A64CB0FB3B2A8FD" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "smallships:galleys" + } + } + title: "Any Galley" + type: "item" + }] + title: "Galley Ships" + x: 0.0d + y: -1.0d + } + { + id: "4A79446E7F5419E4" + rewards: [{ + exclude_from_claim_all: true + id: "5B15F5E5A3BF6E0D" + table_id: 5236874501558129216L + type: "loot" + }] + tasks: [{ + id: "7C12946FB85594B0" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "smallships:drakkars" + } + } + title: "Any Drakkar" + type: "item" + }] + title: "Drakkar Ships" + x: -1.0d + y: 0.0d + } + { + id: "51093C69C9E47B74" + rewards: [{ + exclude_from_claim_all: true + id: "05B594F572E1E4A5" + table_id: 5236874501558129216L + type: "loot" + }] + tasks: [ + { + id: "4F5EE4FBB1B5A38F" + item: "smallships:cannon" + type: "item" + } + { + id: "4F136EC97A9E4836" + item: "smallships:cannon_ball" + type: "item" + } + ] + x: 0.0d + y: 1.0d + } + { + id: "26113FAA900993FE" + rewards: [{ + exclude_from_claim_all: true + id: "3F3B69819877F94A" + table_id: 5236874501558129216L + type: "loot" + }] + tasks: [{ + id: "3307594B62C980F1" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "smallships:cogs" + } + } + title: "Any Cog" + type: "item" + }] + title: "Cog Ships" + x: 0.0d + y: 0.0d + } + ] + title: "&a&oSmall Ships" +} diff --git a/minecraft/config/ftbquests/quests/chapters/sophisticated_backpacks.snbt b/minecraft/config/ftbquests/quests/chapters/sophisticated_backpacks.snbt new file mode 100644 index 0000000..d4dd9f0 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/sophisticated_backpacks.snbt @@ -0,0 +1,423 @@ +{ + autofocus_id: "000D000000000002" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "sophisticated_backpacks" + group: "7E54189F6BA49858" + icon: "sophisticatedbackpacks:backpack" + id: "000D000000000001" + order_index: 6 + quest_links: [ ] + quests: [ + { + description: [ + "A backpack is portable storage you carry with you — no more" + "running back to base because your inventory is full!" + "" + "Craft your first §eLeather Backpack§r using Leather, a Chest, and " + "String. This gives you §e27 extra inventory slots§r — the equivalent of " + "a full chest that goes wherever you go." + "" + "To use it:" + "• §eRight-click§r while holding it to open its inventory" + "• §eWear it§r in your Curios back slot (open Curios with the 'G' key)" + "• §ePress B§r (default) to open your worn backpack without taking it off" + "• §eShift + right-click§r on the ground to place it like a block" + "" + "§eTips:§r" + "• Items shift-clicked from your inventory go into the backpack first " + " if it's worn." + "• Hold Shift over a backpack in your inventory to preview its " + " contents." + "• Place it in the world and hoppers or pipes can access it just like " + " a chest." + ] + icon: "sophisticatedbackpacks:backpack" + id: "000D000000000002" + min_width: 350 + rewards: [{ + id: "3874F3CE1FA0CF73" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "000D000000000003" + item: "sophisticatedbackpacks:backpack" + title: "Craft a Leather Backpack" + type: "item" + }] + title: "Your First Backpack" + x: 0.0d + y: 0.0d + } + { + dependencies: ["000D000000000002"] + description: [ + "Backpacks come in §e6 tiers§r, each with more storage slots and more" + "upgrade slots than the last. To upgrade, surround your current " + "backpack with the next tier's material in a crafting table." + "" + "Tier overview:" + "• §fLeather§r — 27 slots, 1 upgrade slot" + "• §7Copper§r — 45 slots, 1 upgrade slot" + "• §7Iron§r — 54 slots, 2 upgrade slots" + "• §6Gold§r — 63 slots, 3 upgrade slots" + "• §bDiamond§r — 81 slots, 5 upgrade slots" + "• §5Netherite§r — 99 slots, 7 upgrade slots (Smithing Table required)" + "" + "§eTips:§r" + "• Your items stay inside the backpack when you upgrade it — " + " nothing is lost." + "• Iron is the first tier with enough upgrade slots to feel truly " + " powerful." + "• Installed upgrades also carry over when upgrading to the next " + " tier." + "• Dyeing a backpack is purely cosmetic — combine it with any dye in " + " a crafting table." + ] + icon: "sophisticatedbackpacks:iron_backpack" + id: "000D000000000004" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "689B49116A9517C8" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "000D000000000005" + item: "sophisticatedbackpacks:iron_backpack" + title: "Upgrade to an Iron Backpack" + type: "item" + }] + title: "Climbing the Tiers" + x: 0.0d + y: 2.0d + } + { + dependencies: ["000D000000000004"] + description: [ + "The §ePickup Upgrade§r allows you to pull items from a placed storage, " + "and the &eDeposit Upgrade&r does the opposite." + "" + "This means you can more easily empty old, useless containers — " + "the backpack absorbs all the clutter automatically." + "" + "You can configure §ewhich items§r it picks up using the filter slots" + "inside the upgrade's settings — allow specific items, block specific" + "items, or set it to only pick up items already in the backpack." + "" + "§eTips:§r" + "• The §eAdvanced Pickup and Deposit Upgrades§r have 16 filter slots" + " and more options." + "• Set it to 'match backpack contents' so it only pulls items you" + " already have." + "• Multiple backpacks with pickup upgrades will fill in order from first" + " to last worn." + "• Works automatically — no configuration needed to get started." + ] + icon: "sophisticatedbackpacks:pickup_upgrade" + id: "000D000000000006" + min_width: 350 + rewards: [{ + id: "7887DC6E8161184D" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "000D000000000007" + item: "sophisticatedbackpacks:pickup_upgrade" + title: "Craft a Pickup Upgrade" + type: "item" + }] + title: "The Pickup Upgrade" + x: -2.0d + y: 4.0d + } + { + dependencies: ["000D000000000004"] + description: [ + "The §eMagnet Upgrade§r takes item collection a step further — instead" + "of waiting for items to come to you, it actively pulls nearby items" + "from the ground and teleports them straight into the backpack." + "" + "When worn, any items on the ground within the magnet's range are" + "automatically collected, even if you didn't walk over them." + "When placed in the world, it collects items from around the backpack." + "" + "You can filter what the magnet collects using the upgrade's filter slots." + "" + "§eTips:§r" + "• The magnet range can be configured — reduce it if it picks up" + " things you don't want." + "• Combine with a §eVoid Upgrade§r to automatically delete unwanted items." + "• The §eAdvanced Magnet Upgrade§r offers more filter slots and" + " options." + "• Works great alongside an auto-smelting setup — smelt ores on the" + " go." + ] + icon: "sophisticatedbackpacks:magnet_upgrade" + id: "000D000000000008" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "21DEDAAEB4A1E74A" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "000D000000000009" + item: "sophisticatedbackpacks:magnet_upgrade" + title: "Craft a Magnet Upgrade" + type: "item" + }] + title: "The Magnet Upgrade" + x: 0.0d + y: 4.0d + } + { + dependencies: ["000D000000000004"] + description: [ + "The §eVoid Upgrade§r automatically deletes items that enter your " + "backpack based on a configurable filter. Think of it as a trash can " + "built into your storage." + "" + "This is incredibly useful for mining trips — pair it with a Magnet and " + "configure it to automatically delete cobblestone, gravel, dirt, or any " + "other junk you don't want filling up your slots." + "" + "Two modes:" + "• §eVoid All§r — deletes any matching item immediately" + "• §eVoid Overflow§r — only deletes when a full stack already exists in" + " the backpack" + "" + "§eTips:§r" + "• Use §eVoid Overflow§r rather than Void All unless you're sure — good " + " to have backup blocks." + "• The §eAdvanced Void Upgrade§r has more filter slots for complex" + " setups." + "• Great for automining — set it to void cobblestone/dirt and keep" + " only ores." + "• &4Warning:&r Voided items are gone permanently. Double-check your " + " filter!" + ] + icon: "sophisticatedbackpacks:void_upgrade" + id: "000D00000000000A" + min_width: 350 + rewards: [{ + id: "0B68FB545E8DF096" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "000D00000000000B" + item: "sophisticatedbackpacks:void_upgrade" + title: "Craft a Void Upgrade" + type: "item" + }] + title: "The Void Upgrade" + x: 2.0d + y: 4.0d + } + { + dependencies: [ + "000D000000000006" + "000D000000000008" + ] + description: [ + "The §eSmelting Upgrade§r turns your backpack into a portable furnace." + "When upgraded, items that enter the backpack are automatically " + "smelted if they have a valid smelting recipe — raw ores become " + "ingots, raw food becomes cooked food, and so on." + "" + "The upgrade requires fuel (coal, wood, etc.) placed in a designated" + "fuel slot inside the upgrade's interface. There is also an" + "§eAuto-Smelting Upgrade§r that works automatically without needing" + "to open the interface." + "" + "Related smelting upgrades:" + "• §eSmelting Upgrade§r — standard furnace speed, all smeltable items" + "• §eSmoking Upgrade§r — double speed, food only" + "• §eBlasting Upgrade§r — double speed, ores and metals only" + "" + "§eTips:§r" + "• Combine with a Magnet Upgrade — mine raw ores, get ingots." + "• Auto variants process items without any player interaction " + " needed." + "• Coal blocks last a long time as fuel — keep one in the fuel slot." + "• Only one smelting-type upgrade can be installed at a time." + ] + icon: "sophisticatedbackpacks:smelting_upgrade" + id: "000D00000000000C" + min_width: 350 + rewards: [{ + id: "51346A046DDB3AC8" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "000D00000000000D" + item: "sophisticatedbackpacks:smelting_upgrade" + title: "Craft a Smelting Upgrade" + type: "item" + }] + title: "Smelting On the Go" + x: -2.0d + y: 6.0d + } + { + dependencies: [ + "000D000000000008" + "000D00000000000A" + ] + description: [ + "Two upgrades that keep your backpack organised as it fills up:" + "" + "§eCompacting Upgrade§r — automatically compacts items into their block" + "forms as they fill up. Nuggets become ingots, ingots become blocks." + "Configurable per-item so you control what gets compacted." + "" + "§eFilter Upgrade§r — controls exactly which items are allowed into or" + "out of the backpack via automation (pipes, hoppers, etc.)." + "Essential when you have multiple backpacks and want each one to" + "only accept specific categories of items." + "" + "§eTips:§r" + "• The §eAdvanced Compacting Upgrade§r supports 2x2 and 3x3 recipes." + "• Use the Filter Upgrade on a placed backpack connected to your " + " storage network to route only specific items into it." + "• Compacting Upgrade pairs perfectly with the Magnet — collect and" + " compact in one step." + ] + icon: "sophisticatedbackpacks:compacting_upgrade" + id: "000D00000000000E" + min_width: 350 + rewards: [{ + id: "301C33FCF04E76EE" + type: "xp" + xp: 150 + }] + tasks: [{ + id: "000D00000000000F" + item: "sophisticatedbackpacks:compacting_upgrade" + title: "Craft a Compacting Upgrade" + type: "item" + }] + title: "Compacting \\& Filtering" + x: 0.0d + y: 6.0d + } + { + dependencies: [ + "000D000000000008" + "000D00000000000A" + ] + description: [ + "§eStack Upgrades§r increase the maximum stack size of items stored" + "in your backpack — turning it into an incredibly space-efficient" + "storage solution." + "" + "&eStack Downgrades&r decrease the maximum stack size of items" + "stored in your backpack" + "" + "Upgrade Tiers:" + "• §eTier 1§r — doubles stack size (up to 128 per slot)" + "• §eTier 2§r — quadruples stack size (up to 256 per slot)" + "• §eTier 3§r — 512 items per slot" + "• §eTier 4§r — 1024 items per slot" + "• §eOmega§r — maximum possible stack size" + "" + "Downgrade Tiers:" + "• &eTier 1&r — divides by 4 (up to 8 per slot)" + "• &eTier 2&r — divides by 8 (up to 4 per slot)" + "• &eTier 3&r — divides by 16 (up to 2 per slot)" + "" + "A Diamond or Netherite backpack with high-tier Stack Upgrades" + "can hold millions of items — it becomes your entire storage system." + "" + "§eTips:§r" + "• Up to 3 Stack Upgrades can be installed per backpack — they " + " stack additively." + "• Combine with Slot Memory to ensure specific items always have" + " reserved space." + "• Higher tiers require rarer materials but are worth the investment" + " late-game." + ] + icon: "sophisticatedbackpacks:stack_upgrade_tier_1" + id: "000D000000000010" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "746876F0E8E9E799" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "000D000000000011" + item: "sophisticatedbackpacks:stack_upgrade_tier_1" + title: "Craft a Stack Upgrade Tier 1" + type: "item" + }] + title: "Stack Upgrades \\& Downgrade" + x: 2.0d + y: 6.0d + } + { + dependencies: [ + "000D00000000000C" + "000D00000000000E" + "000D000000000010" + ] + description: [ + "You've learned all the core upgrades. Now put it all together into" + "the ultimate mining backpack setup." + "" + "Recommended build for a §eDiamond Backpack§r (5 upgrade slots):" + "• §eAuto-Blasting Upgrade§r — auto-smelts all ores to ingots as" + " you mine" + "• §eMagnet Upgrade§r — pulls all nearby drops automatically" + "• §eVoid Upgrade§r — deletes cobblestone, dirt, and gravel on overflow" + "• §eStack Upgrade Tier 2§r — fits far more ingots per slot" + "• §eCompacting Upgrade§r — compacts ingots to blocks automatically" + "" + "With this setup: mine raw ores → auto-smelt to ingots → " + "auto-compact to blocks → magnet collects everything → overflow " + "junk auto-voided. You can mine for hours without managing your inventory at all." + "" + "§eTips:§r" + "• Set Slot Memory on a few slots to reserve space for specific" + " ores." + "• Add a §eFeeding Upgrade§r if you also want the backpack to feed you" + " automatically." + "• Upgrade to §eNetherite§r for 7 upgrade slots — room for even more" + " functionality." + ] + icon: "sophisticatedbackpacks:diamond_backpack" + id: "000D000000000012" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "2B6CF324415EF858" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [ + { + id: "000D000000000013" + item: "sophisticatedbackpacks:diamond_backpack" + title: "Craft a Diamond Backpack" + type: "item" + } + { + id: "000D000000000014" + title: "Set up a fully upgraded mining backpack" + type: "checkmark" + } + ] + title: "The Ultimate Mining Pack" + x: 0.0d + y: 8.0d + } + ] + title: "&3&oSophisticated Backpacks" +} diff --git a/minecraft/config/ftbquests/quests/chapters/sophisticated_storage.snbt b/minecraft/config/ftbquests/quests/chapters/sophisticated_storage.snbt new file mode 100644 index 0000000..bcc3fe2 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/sophisticated_storage.snbt @@ -0,0 +1,363 @@ +{ + autofocus_id: "000E000000000002" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "sophisticated_storage" + group: "7E54189F6BA49858" + icon: "sophisticatedstorage:iron_chest" + id: "000E000000000001" + order_index: 4 + quest_links: [ ] + quests: [ + { + description: [ + "Sophisticated Storage adds tiered chests, barrels, and shulker boxes" + "that use the exact same upgrade system as Sophisticated Backpacks." + "" + "If you've already learned backpack upgrades, you already know how" + "storage upgrades work — they're identical. The difference is that" + "these are stationary storage blocks for your base." + "" + "The mod offers three storage types:" + "• §eChests§r — standard chest layout, can form double chests" + "• §eBarrels§r — similar to chests, cannot form double " + "• &eLimited Barrels&r — single-item storage, great for bulk materials" + "• §eShulker Boxes§r — portable containers that keep items when broken" + "" + "All three come in §e6 tiers§r (Wood, Copper, Iron, Gold, Diamond, Netherite)" + "with increasing slot counts and upgrade slots at each tier." + "" + "§eTips:§r" + "• Right-click a vanilla chest or barrel with a Tier Upgrade item to upgrade it " + " in-place." + "• Use §ePacking Tape§r to pick up a storage block with its contents intact." + "• Storage blocks connect to pipes, hoppers, and storage networks just like " + " vanilla chests." + ] + icon: "minecraft:chest" + id: "000E000000000002" + min_width: 400 + rewards: [{ + id: "570C1207A1DD6646" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "000E000000000003" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:chests/wooden)" + } + } + title: "Craft a Wooden Chest" + type: "item" + }] + title: "What is Sophisticated Storage?" + x: 0.0d + y: 0.0d + } + { + dependencies: ["000E000000000002"] + description: [ + "Like backpacks, storage containers come in 6 tiers — each with more" + "inventory slots and more upgrade slots." + "" + "Chest tier overview:" + "• §fWood§r — 27 slots, 1 upgrade slot" + "• §7Copper§r — 36 slots, 1 upgrade slot" + "• §7Iron§r — 54 slots, 2 upgrade slots" + "• §6Gold§r — 72 slots, 3 upgrade slots" + "• §bDiamond§r — 108 slots, 5 upgrade slots" + "• §5Netherite§r — 162 slots, 7 upgrade slots" + "" + "To upgrade a chest in the world: craft the next tier's §eTier Upgrade§r item" + "and right-click your existing chest with it. Your items stay inside!" + "" + "§eTips:§r" + "• Limited barrels hold fewer item types but are great for bulk" + " single-item storage." + "• A Diamond Double Chest (two side-by-side) gives you 216 slots." + "• You can colour chests with dye for easy visual organisation." + "• Netherite tier requires a Smithing Table upgrade, just like Netherite " + " tools." + ] + icon: "sophisticatedstorage:iron_chest" + id: "000E000000000004" + min_width: 375 + rewards: [{ + id: "2857C120A262D849" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "000E000000000005" + item: "sophisticatedstorage:iron_chest" + title: "Upgrade to an Iron Chest" + type: "item" + }] + title: "Upgrading Your Storage" + x: 0.0d + y: 2.0d + } + { + dependencies: ["000E000000000002"] + description: [ + "Sophisticated Storage barrels are designed for §ebulk single-item " + "&estorage&r. Unlike chests, barrels are similar to chests, " + "however lack the functionality to become double." + "" + "The §eLimited Barrel§r variant lets you store 1-4 types of item with greater" + "quantity — when paired with a &estack downgrades&r, great for " + "auto-crafting systems where you don't want to overfill a buffer." + "They support the same upgrade system as chests, and combined with" + "&eStack Upgrades&r, a single Netherite barrel can hold an astronomical" + "number of one item type." + "" + "§eTips:§r" + "• Limited barrels show their item count and type on the front face — easy to " + " read at a glance." + "• Use a Void Overflow upgrade to prevent barrels from ever creating " + " a backup." + "• Right-click a vanilla barrel with Tier Upgrade item to instantly upgrade " + " it." + ] + icon: { + Count: 1 + id: "sophisticatedstorage:barrel" + tag: { + woodType: "acacia" + } + } + id: "000E000000000006" + min_width: 375 + rewards: [{ + id: "14B752FFD0EC7746" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "000E000000000007" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:barrels/wooden)" + } + } + title: "Craft a Wooden Barrel" + type: "item" + }] + title: "Barrels: Bulk Storage Done Right" + x: -2.0d + y: 2.0d + } + { + dependencies: ["000E000000000004"] + description: [ + "The §eStorage Controller§r is Sophisticated Storage's answer to automation. " + "Place it adjacent to (or linked via Connectors to) your chests and " + "barrels, and you can deposit items already present in your storage, or" + "access it with external item transportation" + "" + "From the Controller you can:" + "• Right click to deposit the stack in your hand, right-click twice with an" + " empty hand to deposit your everything in your inventory that is " + " already in the system" + "" + "Connections can extend further using §eController Slave§r blocks" + "placed between storage and the main controller." + "" + "§eTips:§r" + "• The Controller doesn't need to be directly adjacent — use Slaves to " + " extend range." + "• This is an excellent stepping stone before setting up full AE2 or " + " Refined Storage." + "• Upgrades in connected chests still function even when accessed via " + " the Controller." + ] + icon: "sophisticatedstorage:controller" + id: "000E000000000008" + min_width: 375 + rewards: [{ + exclude_from_claim_all: true + id: "5B9EA00F14CB60DD" + table_id: 5236874501558129216L + type: "loot" + }] + tasks: [ + { + id: "000E000000000009" + item: "sophisticatedstorage:controller" + title: "Craft a Storage Controller" + type: "item" + } + { + id: "000E00000000000A" + title: "Connect at least 3 storage blocks to the Controller" + type: "checkmark" + } + ] + title: "The Storage Controller" + x: 0.0d + y: 4.0d + } + { + dependencies: [ + "000E000000000004" + "000E000000000006" + ] + description: [ + "§ePacking Tape§r is one of the most useful items in Sophisticated Storage." + "Right-click any Sophisticated Storage chest or barrel with Packing Tape " + "to seal it up — then break it and it drops as an item §ewith all its contents " + "&estill insider&r." + "" + "This lets you:" + "• Move storage blocks without emptying them first" + "• Reorganise your base easily" + "• Send fully stocked storage to other players" + "• Take your storage on the road" + "" + "§eTips:§r" + "• Packed storage shows a tape visual on the block face so you know it's " + " sealed." + "• You can't access a packed storage block — you must break it first to " + " use it." + "• Packing Tape is consumed on use — keep a few in your inventory." + "• A §eNetherite Chest§r full of items is much easier to move with tape than " + " emptying it manually." + ] + icon: { + Count: 1 + id: "sophisticatedstorage:packing_tape" + tag: { + Damage: 0 + } + } + id: "000E00000000000B" + min_width: 375 + rewards: [{ + id: "12A6D9FB871472E2" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "000E00000000000C" + item: { + Count: 1 + id: "sophisticatedstorage:packing_tape" + tag: { + Damage: 0 + } + } + title: "Craft Packing Tape" + type: "item" + }] + title: "Packing Tape" + x: -2.0d + y: 4.0d + } + { + dependencies: ["000E000000000004"] + description: [ + "Sophisticated Storage has several upgrades designed specifically" + "for automating and organising your storage network." + "" + "Key automation upgrades:" + "• §eHopper Upgrade§r — pulls items from above and pushes them out below," + " turning any storage block into a smart hopper" + "• §ePickup Upgrade§r — automatically picks up nearby items" + "• §eFilter Upgrade§r — controls which items can enter or exit via automation" + "" + "§eTips:§r" + "• The Hopper Upgrade is filter-aware — combine with a Filter Upgrade to" + " only pull/push specific items." + "• Use Pickup Upgrades to collect items on the ground and directly put " + " them into storage — works with a Filter Upgrade" + "• Multiple Hopper Upgrades can be installed to increase throughput rate." + ] + id: "000E00000000000D" + min_width: 400 + rewards: [{ + id: "28F5D041517F94CC" + type: "xp" + xp: 100 + }] + tasks: [ + { + id: "000E00000000000F" + item: "sophisticatedstorage:hopper_upgrade" + title: "Craft a Hopper Upgrade" + type: "item" + } + { + id: "27CDACB6AF3AC4C3" + item: "sophisticatedstorage:pickup_upgrade" + type: "item" + } + ] + title: "Sorting and Automation Upgrades" + x: 2.0d + y: 4.0d + } + { + dependencies: [ + "000E000000000008" + "000E00000000000B" + "000E00000000000D" + ] + description: [ + "You've mastered Sophisticated Storage. Time to build the warehouse." + "" + "A well-organised Sophisticated Storage setup typically looks like:" + "• A §eStorage Controller§r as the central access point" + "• §eDiamond or Netherite Chests§r for mixed item categories" + "• §eIron or Gold Barrels§r for bulk materials (stone, wood, ores)" + "• §eHopper Upgrades§r to auto-intake from machines or farms" + "• §eFilter Upgrades§r to ensure items only go where they belong" + "• §eStack Upgrades§r on barrels to maximise bulk capacity" + "" + "This system can serve you all the way until you're ready to set up" + "full AE2 or Refined Storage — and even then, Sophisticated Storage" + "works perfectly as external storage attached to those networks." + "" + "§eTips:§r" + "• Colour-code your chests by category for instant visual " + " identification." + "• Use Packing Tape any time you need to reorganise — don't empty " + " chests manually." + "• Sophisticated Storage chests can be accessed directly by AE2" + " Storage Buses and Refined Storage External Storage — great " + " for bridging the two systems." + ] + icon: "sophisticatedstorage:diamond_chest" + id: "000E000000000010" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "2CFB8FE1DCAD723A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "000E000000000011" + item: "sophisticatedstorage:diamond_chest" + title: "Craft a Diamond Chest" + type: "item" + } + { + id: "000E000000000012" + title: "Build a storage room with a Controller and 5+ storage blocks" + type: "checkmark" + } + ] + title: "The Warehouse" + x: 0.0d + y: 6.0d + } + ] + title: "&3&oSophisticated Storage" +} diff --git a/minecraft/config/ftbquests/quests/chapters/storagedrawers.snbt b/minecraft/config/ftbquests/quests/chapters/storagedrawers.snbt new file mode 100644 index 0000000..df80686 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/storagedrawers.snbt @@ -0,0 +1,340 @@ +{ + autofocus_id: "0000000000000171" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "storagedrawers" + group: "7E54189F6BA49858" + icon: "storagedrawers:oak_full_drawers_1" + id: "0000000000000CDF" + images: [{ + click: "https://www.youtube.com/watch?v=Q8wjHVCOpFY" + height: 1.0d + hover: ["Need a Guide?"] + image: "storagedrawers:block/drawers_crimson_front_4" + rotation: 0.0d + width: 1.0d + x: -4.5d + y: -7.5d + }] + order_index: 3 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + id: "0000000000000171" + rewards: [{ + exclude_from_claim_all: true + id: "46A1C4FD667A7082" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "0000000000000172" + item: "storagedrawers:controller" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["0000000000000171"] + id: "0000000000000173" + rewards: [{ + exclude_from_claim_all: true + id: "4ECE9EFA652EA982" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000174" + item: "storagedrawers:controller_slave" + type: "item" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["0000000000000171"] + id: "0000000000000175" + rewards: [{ + exclude_from_claim_all: true + id: "72DC9179B972D8C1" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000176" + item: "storagedrawers:oak_full_drawers_1" + type: "item" + }] + x: -3.0d + y: 0.0d + } + { + dependencies: ["0000000000000171"] + id: "0000000000000179" + rewards: [{ + exclude_from_claim_all: true + id: "6146D6B1225A4DB4" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [ + { + id: "000000000000017A" + item: "storagedrawers:quantify_key" + type: "item" + } + { + id: "0000000000000198" + item: "storagedrawers:drawer_key" + type: "item" + } + ] + title: "Drawer Key's" + x: -1.5d + y: -3.0d + } + { + dependencies: ["0000000000000175"] + id: "000000000000017B" + rewards: [{ + exclude_from_claim_all: true + id: "2270B78584333661" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000017C" + item: "storagedrawers:upgrade_template" + type: "item" + }] + x: -3.0d + y: -3.0d + } + { + dependencies: ["000000000000017B"] + id: "000000000000017D" + rewards: [{ + exclude_from_claim_all: true + id: "77BF1F3D4115270B" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000017E" + item: "storagedrawers:obsidian_storage_upgrade" + type: "item" + }] + x: -6.0d + y: -3.0d + } + { + dependencies: ["000000000000017D"] + id: "000000000000017F" + rewards: [{ + exclude_from_claim_all: true + id: "4FA9EFBF2C929645" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000180" + item: "storagedrawers:iron_storage_upgrade" + type: "item" + }] + x: -6.0d + y: 0.0d + } + { + dependencies: ["000000000000017F"] + id: "0000000000000181" + rewards: [{ + exclude_from_claim_all: true + id: "295A1B83B02BA8E5" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000182" + item: "storagedrawers:gold_storage_upgrade" + type: "item" + }] + x: -9.0d + y: 0.0d + } + { + dependencies: ["0000000000000181"] + id: "0000000000000183" + rewards: [{ + exclude_from_claim_all: true + id: "4882DE2EF54B2B5C" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000184" + item: "storagedrawers:diamond_storage_upgrade" + type: "item" + }] + x: -9.0d + y: -3.0d + } + { + dependencies: ["0000000000000183"] + id: "0000000000000185" + rewards: [{ + exclude_from_claim_all: true + id: "6AB7B565D07F946C" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000186" + item: "storagedrawers:emerald_storage_upgrade" + type: "item" + }] + x: -12.0d + y: -3.0d + } + { + dependencies: ["000000000000017B"] + id: "0000000000000187" + rewards: [{ + exclude_from_claim_all: true + id: "41DB55BA7D7C019F" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000188" + item: "storagedrawers:one_stack_upgrade" + type: "item" + }] + x: -6.0d + y: -6.0d + } + { + dependencies: ["000000000000017B"] + id: "0000000000000189" + rewards: [{ + exclude_from_claim_all: true + id: "721866DE22A4BF96" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000018A" + item: "storagedrawers:fill_level_upgrade" + type: "item" + }] + x: -4.5d + y: -1.5d + } + { + dependencies: ["000000000000017B"] + id: "000000000000018B" + rewards: [{ + exclude_from_claim_all: true + id: "44B6DDBD549152F3" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "000000000000018C" + item: "storagedrawers:void_upgrade" + type: "item" + }] + x: -3.0d + y: -6.0d + } + { + dependencies: ["0000000000000171"] + id: "000000000000018F" + rewards: [{ + exclude_from_claim_all: true + id: "3A343F929C5BFED1" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000190" + item: "storagedrawers:oak_full_drawers_2" + type: "item" + }] + x: 0.0d + y: -3.0d + } + { + dependencies: ["0000000000000171"] + id: "0000000000000191" + rewards: [{ + exclude_from_claim_all: true + id: "00C05141BEEAE599" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000192" + item: "storagedrawers:oak_full_drawers_4" + type: "item" + }] + x: 3.0d + y: -3.0d + } + { + dependencies: ["0000000000000171"] + id: "0000000000000193" + rewards: [{ + exclude_from_claim_all: true + id: "3BC4D4AD2CD24460" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000194" + item: "storagedrawers:oak_trim" + type: "item" + }] + x: 0.0d + y: 3.0d + } + { + dependencies: ["0000000000000171"] + id: "0000000000000195" + rewards: [{ + exclude_from_claim_all: true + id: "21CC561574E42708" + table_id: 5236874501558129216L + type: "random" + }] + size: 1.5d + tasks: [{ + id: "0000000000000196" + item: "storagedrawers:compacting_drawers_3" + type: "item" + }] + x: 3.0d + y: 3.0d + } + ] + title: "&3&oStorage Drawers" +} diff --git a/minecraft/config/ftbquests/quests/chapters/strainers.snbt b/minecraft/config/ftbquests/quests/chapters/strainers.snbt new file mode 100644 index 0000000..82109f1 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/strainers.snbt @@ -0,0 +1,304 @@ +{ + autofocus_id: "0011000000000002" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "strainers" + group: "4E2A2310634498BA" + icon: "strainers:wooden_strainer" + id: "0011000000000001" + order_index: 0 + quest_links: [ ] + quests: [ + { + description: [ + "§eBBL Strainers§r adds one deceptively simple block — the §eStrainer§r." + "" + "Place it in the world, put a fluid or block above it, drop an" + "input item into its input slot, and it passively produces outputs" + "over time. No power required. No player interaction needed." + "Set it up, pipe things in and out, and let it run." + "" + "§eEvery recipe has three parts:§r" + "• §eAbove Block/Fluid§r — the block or fluid placed directly on top" + " of the Strainer (water, lava, a special block, etc.)" + "• §eInput Item§r — the item consumed each processing cycle" + "• §eOutputs§r — up to 9 items produced per cycle, each with its" + " own quantity and chance value" + "" + "§eTips:§r" + "• Use §eJEI§r to see all recipes — hover over the Strainer and" + " press §eU§r to browse every input/output combination." + "• All recipes in this pack are configured specifically for it," + " so always check JEI to know what's actually available." + "• The Strainer ejects outputs automatically — pipe them into" + " a chest with a Hopper placed on the side or bottom." + ] + icon: "strainers:wooden_strainer" + id: "0011000000000002" + min_width: 350 + rewards: [{ + id: "2435749DB2AA2E7C" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "0011000000000003" + item: "strainers:wooden_strainer" + title: "Craft a Strainer" + type: "item" + }] + title: "What is a Strainer?" + x: 0.0d + y: 0.0d + } + { + dependencies: ["0011000000000002"] + description: [ + "Let's get your first Strainer producing something." + "" + "§eSetup steps:§r" + "1. Place the Strainer block anywhere — indoors or outdoors" + "2. Place a §ewater source block§r directly above it using a bucket" + " (it must be a source block, not flowing water)" + "3. Open §eJEI§r, find a recipe that uses water above, and note" + " which input item that recipe needs" + "4. Place that input item in the Strainer's §einput slot§r" + "5. Wait — the progress bar fills and outputs appear automatically" + "" + "The Strainer restarts the recipe automatically after each cycle" + "as long as there are still input items available." + "" + "§eTips:§r" + "• The input item is consumed each cycle — put a stack in to" + " keep it running while you do other things." + "• Place a Hopper on the bottom of the Strainer to" + " pull outputs into a chest automatically." + "• Place a Hopper on the side to keep inputs topped up" + " from a chest above." + "• Higher-tier meshes (see the next quest) make outputs more likely" + " per cycle — some recipes require higher tier meshes." + ] + icon: "minecraft:water_bucket" + id: "0011000000000004" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "66C4BF6320FFD383" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0011000000000005" + title: "Set up a Strainer with water above and collect your first output" + type: "checkmark" + }] + title: "Your First Extraction" + x: 0.0d + y: 2.0d + } + { + dependencies: ["0011000000000004"] + description: [ + "The §eMesh§r is an upgrade item that slots into the Strainer's" + "dedicated mesh slot. It controls how likely each recipe cycle" + "is to produce its outputs." + "" + "§eMesh tiers (low to high):§r" + "• &7Tier 1&r — cheapest to make, lowest output chance" + " String, Flint, Bamboo, and Leafy meshes are Tier 1" + "• &6Tier 2&r — Copper is the only tier 2 mesh, 2nd lowest output" + "• &8Tier 3&r§r — reliable mid-game mesh, good balance of cost and output" + " chance" + " Iron and Amythest are Tier 3" + "• &eTier 4&r — medium output chance" + " Gold and Quartz are Tier 4" + "• &bTier 5&r — almost the best, typically easier to obtain than the best" + " Diamond and Echo are Tier 5" + "• &2Tier 6&r — best output and highest durability" + " Emerald and Netherite are Tier 6" + "" + "Meshes have §edurability§r — they wear down over use and eventually" + "break. Higher-tier meshes tend to last longer before breaking." + "" + "§eTips:§r" + "• Check the crafting recipe in &eJEI&r for each mesh requirement." + "• Keep 2-3 spare meshes in a chest nearby so you can replace" + " one the moment it breaks." + "• The mesh slot can be piped into like any other item slot — a" + " Hopper feeding in spare meshes keeps things running without any" + " manual intervention." + ] + icon: "minecraft:string" + id: "0011000000000006" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "6D76F461B65CAE6A" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "39DC9B9B1004BD89" + item: { + Count: 1 + id: "strainers:string_mesh" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "Mesh Tiers" + x: -2.0d + y: 4.0d + } + { + dependencies: ["0011000000000006"] + description: [ + "Once you've got a basic mesh running, upgrade it." + "" + "An §eIron Mesh§r is the sweet spot for mid-game strainer farming —" + "it gives a noticeably higher output chance per cycle than String" + "or Flint and has solid durability to match." + "" + "If you're running multiple Strainers, prioritise getting Iron Meshes" + "into all of them before pushing further up the tier list." + "" + "§eTips:§r" + "• The output chance improvement from Iron → Gold → Diamond" + " is significant — worth chasing for your main strainer farm." + "• Gold Mesh has high output chance but breaks faster." + " Diamond Mesh is the best overall if you can afford it." + "• If you're automating mesh replacement via Hopper, Gold Mesh" + " becomes more viable since breakage doesn't require manual attention." + ] + icon: "minecraft:iron_ingot" + id: "0011000000000008" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "07CE82E919FFADD0" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "167A8AA543DDB14C" + item: { + Count: 1 + id: "strainers:iron_mesh" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "Better Mesh" + x: -2.0d + y: 6.0d + } + { + dependencies: ["0011000000000004"] + description: [ + "Plain water isn't the only thing that can go above a Strainer." + "BBL Strainers adds two special fluids that unlock entirely" + "different recipe sets — and lava works too." + "" + "§ePurified Water§r — a cleaner, processed form of water." + "Used for recipes involving refined or valuable outputs that" + "plain water can't extract." + "" + "§eEroding Water§r — a caustic fluid that breaks down tough materials." + "Used for harder stone, ore-adjacent recipes, and materials that" + "regular water wouldn't affect." + "" + "§eLava§r — the original alternative fluid. Some recipes specifically" + "call for lava above the strainer — great for Nether-adjacent" + "resource chains." + "" + "All three are placed above the Strainer the same way as water:" + "use a bucket to place a source block directly on top." + "" + "§eTips:§r" + "• Check §eJEI§r — browse the Strainer's inputs and you'll see which" + " recipes use each fluid. Lava recipes tend to give rarer outputs." + "• The §eStrainer Tank§r (next quest) makes supplying special fluids" + " much easier — essential for longer automation runs." + "• Special fluid recipes often require higher-tier meshes to" + " achieve worthwhile output chances." + ] + icon: "minecraft:lava_bucket" + id: "000011000000000A" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "654B579B4605DBC0" + table_id: 5236874501558129216L + type: "loot" + }] + tasks: [{ + id: "000011000000000B" + title: "Run a Strainer with a non-water fluid above it (lava, purified water, or eroding water)" + type: "checkmark" + }] + title: "Special Fluids" + x: 2.0d + y: 4.0d + } + { + dependencies: [ + "0011000000000008" + "000011000000000A" + ] + description: [ + "The §eStrainer Tank§r sits directly on top of a Strainer and" + "holds up to one bucket of fluid, allowing you to place multiple " + "Strainers next to each other regardless of fluid." + "" + "§eSetup:§r" + "• Craft the Strainer Tank and place it §edirectly above§r the Strainer" + "• Fill it by right-clicking with a bucket of fluid" + "" + "With Hoppers handling input items and Meshes and Hoppers pulling outputs, your strainer runs §ecompletely hands-free§r indefinitely." + "" + "§eThe fully automated setup:§r" + "• §eAbove:§r Strainer Tank " + "• §eStrainer input slot:§r fed by a Hopper from a chest above" + "• §eStrainer output slots:§r drained by a Hopper into a chest below" + "• §eMesh slot:§r fed by a Hopper with spare meshes" + "" + "§eTips:§r" + "• Breaking a filled tank places the fluid back in the world — empty it " + " with a bucket first if you need to move it." + "• Run the tank with lava for high-value recipes" + "• Build a strainer farm (multiple Strainers side-by-side) for serious" + " passive resource production." + ] + icon: "strainers:strainer_tank" + id: "000011000000000C" + min_width: 350 + rewards: [{ + exclude_from_claim_all: true + id: "2808E8A45269B10D" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "000011000000000D" + item: "strainers:strainer_tank" + title: "Craft a Strainer Tank" + type: "item" + } + { + id: "000011000000000E" + title: "Set up a fully automated Strainer with a tank, input hopper, and output hopper" + type: "checkmark" + } + ] + title: "Strainer Tank" + x: 0.0d + y: 6.5d + } + ] + title: "&3&oBBL Strainers" +} diff --git a/minecraft/config/ftbquests/quests/chapters/support_us.snbt b/minecraft/config/ftbquests/quests/chapters/support_us.snbt new file mode 100644 index 0000000..fc2b529 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/support_us.snbt @@ -0,0 +1,188 @@ +{ + autofocus_id: "0000000000000000" + default_hide_dependency_lines: false + default_quest_shape: "circle" + filename: "support_us" + group: "6CD934EDA78DBCD0" + icon: "minecraft:gold_ingot" + id: "12E826935D2769AD" + order_index: 2 + quest_links: [ ] + quests: [ + { + description: [ + "&6ModernGamingWorld&r creates and maintains Monumental Experience and all its companion packs — for free." + "" + "If you're enjoying the pack and want to support continued development, every little bit genuinely helps. Here's how:" + "" + "&eThank you for playing. It means a lot.&r" + ] + icon: "minecraft:nether_star" + id: "31B20B3DC9DDE836" + min_width: 320 + rewards: [{ + id: "188ADEC571371EBB" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "53BAD6D649FA5577" + title: "Thank you for your support!" + type: "checkmark" + }] + title: "&6&lSupport ModernGamingWorld" + x: 0.0d + y: 0.0d + } + { + description: [ + "Need a server to play Monumental Experience with friends?" + "" + "&aBisectHosting&r offers reliable, high-performance Minecraft servers with one-click modpack installs — including this pack." + "" + "&eUse code &6&lModernGamingWorld&e at checkout for &6&l25% off&e your first month!&r" + "" + "&7Click the quest icon or visit:&r" + "&bhttps://bisecthosting.com/moderngamingworld&r" + ] + icon: "minecraft:ender_chest" + id: "1E2594937A86BE59" + min_width: 340 + rewards: [{ + id: "3A2708A07278BAE0" + type: "xp" + xp: 25 + }] + subtitle: "&oUse code ModernGamingWorld for 25% off" + tasks: [{ + id: "390D7ED1C1258581" + title: "Visit BisectHosting" + type: "checkmark" + }] + title: "&a&lGet a Server — BisectHosting" + x: -4.5d + y: 2.0d + } + { + description: [ + "Support ModernGamingWorld directly on &5Patreon&r and get access to:" + "" + "• &eGeneral Support&r " + "• &eAn exclusive Discord rank &r based on what paid membership tier" + "• &eMerch discount&r" + "" + "Every tier helps keep the lights on and the updates coming." + "" + "&7patreon.com/ModernGamingWorld&r" + ] + icon: "minecraft:written_book" + id: "167EAC52EF51C642" + min_width: 320 + rewards: [{ + id: "262B7199ACEB3E4C" + type: "xp" + xp: 25 + }] + subtitle: "&oExclusive perks for supporters" + tasks: [{ + id: "2EEFAD833E38C514" + title: "Support on Patreon" + type: "checkmark" + }] + title: "&5&lPatreon" + x: -1.5d + y: 2.0d + } + { + description: [ + "Watch ModernGamingWorld live on &9Twitch&r!" + "" + "Streams include:" + "• &eMature Audiance&r" + "• &eEnglish only&r" + "• &eFortnite Gameplay&r" + "• &eClone Hero Gameplay&r" + "• &eVariety Gameplay and More&r" + "" + "Follow to get notified when we go live. Come hang out!" + "" + "&7twitch.tv/moderngamingworld&r" + ] + icon: "minecraft:map" + id: "62BA956090E588A2" + min_width: 300 + rewards: [{ + id: "0707212DE80CFEF1" + type: "xp" + xp: 25 + }] + subtitle: "&oFollow along live" + tasks: [{ + id: "00BEC5628D2703D7" + title: "Follow on Twitch" + type: "checkmark" + }] + title: "&9&lTwitch" + x: 1.5d + y: 2.0d + } + { + description: [ + "Want to support without a subscription? &6Ko-fi&r lets you make a one-time donation — no commitment, no recurring charges." + "" + "Even a small contribution goes directly toward:" + "• Time spent building and maintaining the pack" + "" + "&7ko-fi.com/moderngamingworld&r" + ] + icon: "minecraft:sugar" + id: "1C8B4C8CC1061D9A" + min_width: 310 + rewards: [{ + id: "60096D763E9F54DD" + type: "xp" + xp: 25 + }] + subtitle: "&oOne-time support, no strings attached" + tasks: [{ + id: "1CF81E733AE16C06" + title: "Support on Ko-fi" + type: "checkmark" + }] + title: "&6&lKo-fi" + x: 4.5d + y: 2.0d + } + { + description: [ + "Join the &bEverlasting Creativity&r — the home of the community!" + "" + "On the Discord you can:" + "• &eReport bugs&r and get help with issues" + "• &eChat with other players&r and share your builds" + "• &eGet announcements&r for updates before anyone else" + "• &eConnect with the dev team&r directly" + "" + "Come say hi — we don't bite. Usually." + ] + icon: "minecraft:filled_map" + id: "708168B91F0DB045" + min_width: 320 + rewards: [{ + id: "25FEB0A3EBF31341" + type: "xp" + xp: 25 + }] + subtitle: "&oThe home of the community" + tasks: [{ + id: "04EEB551AD4EE7A5" + title: "Join the Discord" + type: "checkmark" + }] + title: "&b&lDiscord" + x: 7.5d + y: 2.0d + } + ] + title: "&6&lSupport Me" +} diff --git a/minecraft/config/ftbquests/quests/chapters/the_dungeon_crawl.snbt b/minecraft/config/ftbquests/quests/chapters/the_dungeon_crawl.snbt new file mode 100644 index 0000000..e621169 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/the_dungeon_crawl.snbt @@ -0,0 +1,91 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "the_dungeon_crawl" + group: "3A1C74A49BDDD6E1" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "blue_skies:block/dungeon/blinding_keystone" + } + } + id: "28E045A5785C7ACD" + order_index: 3 + quest_links: [ ] + quests: [ + { + description: ["Venture deep into the heart of the dungeon, defeat its inhabitants, and claim the treasures that lie within."] + id: "204BAB8B96E45410" + rewards: [ + { + id: "68BBC5EF7964FE6D" + item: "lootbundles:loot_bundle" + type: "item" + } + { + id: "72DDC5061932C4FD" + type: "xp" + xp: 10 + } + ] + tasks: [{ + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "blue_skies:block/dungeon/blinding_keystone" + } + } + id: "158F97DB7BEC15AA" + structure: "dungeoncrawl:dungeon" + type: "structure" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["204BAB8B96E45410"] + id: "499EA9413774C973" + rewards: [ + { + id: "3B2F9E4071FD91D2" + type: "xp" + xp: 15 + } + { + id: "0EE8A3F5B38CA3F4" + item: "lootbundles:loot_bundle" + type: "item" + } + ] + tasks: [ + { + entity: "minecraft:zombie" + icon: "minecraft:zombie_spawn_egg" + id: "5E8509321BB7B711" + type: "kill" + value: 10L + } + { + entity: "minecraft:skeleton" + icon: "minecraft:skeleton_spawn_egg" + id: "559A74F52673EBFF" + type: "kill" + value: 10L + } + { + entity: "minecraft:spider" + icon: "minecraft:spider_spawn_egg" + id: "5FD5FAB42C679267" + type: "kill" + value: 10L + } + ] + title: "Defeat the Dungeon Monsters" + x: 0.0d + y: 2.0d + } + ] + title: "&3&oThe Dungeon Crawl" +} diff --git a/minecraft/config/ftbquests/quests/chapters/the_end.snbt b/minecraft/config/ftbquests/quests/chapters/the_end.snbt new file mode 100644 index 0000000..49106d4 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/the_end.snbt @@ -0,0 +1,1394 @@ +{ + autofocus_id: "1A33EEC89D130D51" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "the_end" + group: "09A82B0D5D5E7906" + icon: "minecraft:end_portal_frame" + id: "0252A38B84277ADE" + images: [ + { + height: 5.0d + image: "kubejs:textures/item/end_drag.png" + rotation: 0.0d + width: 5.0d + x: 7.5d + y: -3.5d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 3.607142857142854d + y: -3.0d + } + { + height: 1.5d + image: "kubejs:item/the_end" + rotation: 0.0d + width: 6.5d + x: 0.5d + y: -4.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1021505376344085d + x: -6.5d + y: 5.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1021505376344085d + x: 7.5d + y: 5.5d + } + { + height: 1.0d + image: "kubejs:item/spark" + rotation: 0.0d + width: 1.1021505376344085d + x: 1.5d + y: 5.5d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -5.75d + y: -3.5892857142857153d + } + ] + order_index: 3 + quest_links: [ ] + quests: [ + { + description: [ + "&6End Remastered&r overhauls the way players get to the &dEnd&r and makes the experience way more interesting by forcing them to &o&bfully explore&r the beautiful world of Minecraft." + "" + "Adding &o&b16&r totally new &aEnder Eyes&r hidden all around your world, this mod will make your playthrough &o&ba lot more enjoyable&r." + "" + "&eExploration&r is the main focus of &6End Remastered&r, and to reach the &dEnd&r and beat the &5Ender Dragon&r, you will have to find &o&b16&r custom eyes by &o&bexploring vanilla structures&r and &o&bfighting vanilla bosses&r." + "" + "Once you have at least &o&b12&r eyes, you can follow them until you reach the &3Stronghold&r, or use your Structure Compass. You have to put the &o&b12&r custom eyes in the portal in order to open it. If there's a &o&bvanilla eye of ender&r in one of the frames, you can &nremove&r it by &eRight-clicking&r on it with a &ncustom eye&r. " + ] + id: "1A33EEC89D130D51" + min_width: 300 + rewards: [ + { + id: "6A44DB9BB8ECB636" + type: "xp" + xp: 100 + } + { + id: "7C847B5B5FEFA09A" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + dimension: "minecraft:the_end" + id: "7AA522034DCC517D" + title: "Visit Dimension: &2The End" + type: "dimension" + }] + x: 3.0d + y: -2.482142857142854d + } + { + dependencies: ["1A33EEC89D130D51"] + id: "72BAC92E25A843DB" + rewards: [ + { + id: "08895493C80A1C1A" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1FBE3AEF96B31A5C" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + count: 16L + id: "38D493A938A211E2" + item: "quark:myalite_bricks" + type: "item" + }] + x: -1.5d + y: -1.0d + } + { + dependencies: ["1A33EEC89D130D51"] + icon: { + Count: 1 + id: "draconicevolution:mob_soul" + tag: { + EntityName: "minecraft:enderman" + } + } + icon_scale: 2.0d + id: "192AF43D0151121D" + rewards: [ + { + id: "7BB860FBAEDA214F" + type: "xp" + xp: 100 + } + { + id: "49855F9D104D0CF8" + item: "minecraft:ender_chest" + type: "item" + } + { + count: 8 + id: "4E5161BF07B165FB" + item: "minecraft:ender_eye" + type: "item" + } + ] + shape: "diamond" + size: 1.0d + tasks: [{ + entity: "minecraft:enderman" + id: "77B7904B490FC543" + type: "kill" + value: 10L + }] + x: 1.5d + y: 1.5d + } + { + dependencies: ["72BAC92E25A843DB"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/enderiophage.png" + } + } + id: "0BDC4238B58B6AA3" + rewards: [ + { + id: "2169FD2F4375DBC2" + type: "xp" + xp: 70 + } + { + exclude_from_claim_all: true + id: "111FC0E9EC96D5A1" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "6D492792059F3EDA" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + entity: "alexsmobs:enderiophage" + icon: "alexsmobs:spawn_egg_enderiophage" + id: "4D2102203B171533" + type: "kill" + value: 10L + }] + x: -1.5d + y: 0.5d + } + { + dependencies: ["1A33EEC89D130D51"] + id: "43E4AB9EEE8802A5" + rewards: [ + { + id: "59A995F843B7FF18" + type: "xp" + xp: 100 + } + { + count: 16 + id: "7C90A8C55BA6EB2E" + item: "minecraft:end_rod" + type: "item" + } + { + count: 8 + id: "6EA9C9AE04A930C4" + item: "minecraft:diamond" + type: "item" + } + ] + tasks: [{ + advancement: "minecraft:end/find_end_city" + criterion: "" + id: "58E5632EFADF3740" + title: "Find The End City" + type: "advancement" + }] + x: 7.5d + y: -0.9821428571428541d + } + { + dependencies: ["43E4AB9EEE8802A5"] + id: "678CA57E073C80BA" + rewards: [ + { + id: "1FDA1578EB9F4195" + type: "xp" + xp: 100 + } + { + id: "0975E3F36BBEC2EF" + item: { + Count: 1 + id: "reliquary:mob_charm" + tag: { + Damage: 0 + entity: "minecraft:shulker" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "60B3378DB3FF67AC" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + count: 64L + id: "46633E4B108C2AC6" + item: "minecraft:shulker_shell" + type: "item" + }] + x: 8.5d + y: 0.0d + } + { + dependencies: ["678CA57E073C80BA"] + id: "4CA4A097432608A6" + rewards: [ + { + id: "29BC463529F2F8B0" + type: "xp" + xp: 100 + } + { + id: "7841D687047C65A0" + item: { + Count: 1 + id: "alexsmobs:tarantula_hawk_elytra" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + tasks: [{ + id: "76C2007C1CC4C3D1" + item: { + Count: 1 + id: "minecraft:elytra" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.5d + y: 1.5d + } + { + dependencies: ["43E4AB9EEE8802A5"] + description: [ + "Mimicubes are relatives of the slimes of the Overworld and the Magma Cubes of the Nether. These monsters can often be found guarding end cities. Unlike their slimy cousins, these gelatinous creatures possess a more powerful magic than almost any other known beast." + "" + "When attacked, Mimicubes will attempt to mimic the weapons and armor of their attacker. This can mean that anyone wearing a helmet and brandishing a sword can find themselves being attacked by a Mimicube with the exact same equipment." + "" + "Mimicubes can drop some of their magical gel, called Mimicream. One can harness the natural shape-shifting magic of the mimicream by using eight mimicream and any damageable item in the crafting grid. With a few limitations, this can effectively create a mimiced, copied tool or equipment, with almost all the enchantments of the original." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/mimicube.png" + } + } + id: "7F8E159B907F0ADD" + min_width: 300 + rewards: [ + { + id: "6F236421DC02AC47" + type: "xp" + xp: 10 + } + { + count: 16 + id: "7A2D1428FA952582" + item: "alexsmobs:mimicream" + type: "item" + } + { + id: "2EE833D4FAA3F04E" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + entity: "alexsmobs:mimicube" + icon: "alexsmobs:spawn_egg_mimicube" + id: "21C41E49E874A97A" + type: "kill" + value: 10L + }] + x: 6.5d + y: 0.0d + } + { + dependencies: ["1A33EEC89D130D51"] + id: "7B41E22954C3A94D" + rewards: [ + { + id: "32AD7BF49CD97C0D" + type: "xp" + xp: 100 + } + { + count: 4 + id: "7BF95F4628901421" + item: "minecraft:end_crystal" + type: "item" + } + { + count: 16 + id: "47070320DC6355AE" + item: "minecraft:ender_eye" + type: "item" + } + ] + tasks: [{ + advancement: "minecraft:end/respawn_dragon" + criterion: "" + id: "6328BB51C46208F9" + type: "advancement" + }] + title: "&2The End... Again..." + x: 5.0d + y: 0.0d + } + { + dependencies: ["7008FF1C49CD51AD"] + id: "0E37113432F0E8BD" + rewards: [ + { + id: "0B84E4384A97730F" + type: "xp" + xp: 10 + } + { + count: 16 + id: "41505BE8BBEE534D" + item: "minecraft:firework_rocket" + type: "item" + } + ] + tasks: [{ + count: 3L + id: "61007DDFB7809E00" + item: "alexsmobs:enderiophage_rocket" + type: "item" + }] + title: "Enteriophage Rocket" + x: -2.5d + y: 3.0d + } + { + dependencies: ["1A33EEC89D130D51"] + id: "16343E20329BD2F2" + rewards: [ + { + id: "2785EC384050A4D6" + type: "xp" + xp: 50 + } + { + id: "150C4958D00E8696" + item: "mysticalagradditions:dragon_egg_crux" + type: "item" + } + { + exclude_from_claim_all: true + id: "2BB2B0CC543DFB6A" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + count: 16L + id: "479783FC7A337D9D" + item: "mysticalagradditions:dragon_scale" + type: "item" + }] + title: "Dragon Scale" + x: 3.0d + y: 0.5d + } + { + dependencies: ["1A33EEC89D130D51"] + id: "763A800FB961D730" + rewards: [ + { + id: "77A21343965E0FE0" + type: "xp" + xp: 50 + } + { + count: 2 + id: "5BE838BBE0CF5AF2" + item: "minecraft:nether_star" + type: "item" + } + ] + tasks: [{ + count: 8L + id: "6FEEAC6640BCD560" + item: "minecraft:dragon_egg" + type: "item" + }] + title: "Dragon Egg" + x: 1.0d + y: 0.0d + } + { + dependencies: ["192AF43D0151121D"] + id: "3636A75AB53F8C36" + rewards: [ + { + id: "1B82E471A74CEBA9" + type: "xp" + xp: 10 + } + { + id: "02FCDBC59D97296D" + item: { + Count: 1 + id: "reliquary:mob_charm" + tag: { + Damage: 0 + entity: "minecraft:enderman" + } + } + type: "item" + } + { + id: "6A90E6074AEA1489" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 64L + id: "1526BBF478C0770D" + item: "minecraft:ender_pearl" + type: "item" + }] + x: 1.5d + y: 3.0d + } + { + dependencies: ["43E4AB9EEE8802A5"] + id: "1E9C22F2A7A08C39" + rewards: [ + { + id: "3BC9006FE850CD9A" + type: "xp" + xp: 10 + } + { + id: "574B2A76703F8366" + item: "reliquary:mob_charm_belt" + type: "item" + } + ] + tasks: [{ + id: "6535E019F0CE5D05" + item: "minecraft:dragon_head" + type: "item" + }] + x: 7.5d + y: 1.017857142857146d + } + { + dependencies: ["0BDC4238B58B6AA3"] + id: "7008FF1C49CD51AD" + rewards: [ + { + id: "734D9E7606BBCC29" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1469EF6C21AEB51A" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "355B07C0866D8168" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + count: 10L + id: "70C521AEDD50EAE4" + item: "alexsmobs:capsid" + type: "item" + }] + x: -1.5d + y: 2.0d + } + { + dependencies: ["7008FF1C49CD51AD"] + description: ["The Mysterious Worm can be obtained by placing a Crimson Mosquito Larva inside an Enderiophage's Capsid."] + id: "09B620FA362A1232" + rewards: [ + { + id: "6615BBFB07989025" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "77D05FFBA9BB9ED1" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + id: "68299D99B2D05943" + item: "alexsmobs:mysterious_worm" + type: "item" + }] + x: -0.5d + y: 3.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&0BLACK EYE&r" + "" + "" + "&o&b\"Gave sight to the legendary Black Pearl ship.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oBuried Treasure&r &o&c(RNG!)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oDrowned -&r &o&b1%&r" + " ├─ &oGuardian -&r &o&b3%&r" + " ├─ &oSea Serpent -&r &o&b10%&r" + " └─ &oThe Leviathan -&r &o&b25%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: Skip treasure hunting, fight &eLeviathan&r!" + ] + id: "0046CC7562671645" + min_width: 300 + rewards: [ + { + id: "539E832CADE3E142" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "48541018527A9038" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "5BA6053269564405" + item: { + Count: 1 + id: "endrem:black_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.5d + y: 0.5d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&bCOLD EYE&r" + "" + "" + "&o&b\"Last artifact of the vanished Iceologers.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oIgloo basement&r &o&c(VERY RARE!)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oStray -&r &o&b1%&r" + " ├─ &oYeti -&r &o&b10%&r" + " ├─ &oAlpha Yeti -&r &o&b30%&r &e⭐&r &oBEST!&r" + " └─ &oIce Dragon -&r &o&b15%&r" + "" + "&aTIP&r: Hunt &eAlpha Yeti&r in Twilight Forest!" + ] + id: "0F2D42F27DA958C7" + min_width: 300 + rewards: [ + { + id: "2536164903B42640" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5F9A3414E03D4BE6" + table_id: 5236874501558129216L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "1D9D7C284C6524E2" + item: { + Count: 1 + id: "endrem:cold_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.5d + y: 0.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&3CORRUPTED EYE&r" + "" + "" + "&o&b\"Eye of a greedy king, promises infinite fortune.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oPillager Outpost (chest)&r &o&a(Common!)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oVindicator -&r &o&b2%&r" + " ├─ &oRavager -&r &o&b5%&r &e⭐&r &oBEST!&r" + " └─ &oEvoker -&r &o&b8%&r" + "" + "&aTIP&r: Hunt &eRavagers&r during raids!" + ] + id: "7957183466033DAE" + min_width: 300 + rewards: [ + { + id: "6C69AADFC8BE38F5" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "034C1A2F20F696E9" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "5D7A4788BAADE51B" + item: { + Count: 1 + id: "endrem:corrupted_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.5d + y: -1.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&4LOST EYE&r" + "" + "" + "&o&b\"Forged by the first blacksmiths of time.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oMineshaft (chest)&r &o&a(Easy to find!)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oCave Spider -&r &o&b0.5%&r" + " ├─ &oSilverfish -&r &o&b1%&r" + " └─ &oDecrepit Skeleton -&r &o&b8%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: Mineshafts are common, but &eDecrepit Skeletons&r work too!" + ] + id: "5626C33BEF7FBBF9" + min_width: 300 + rewards: [ + { + id: "76FFE7F85DB4F55E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "72E2802419DA35F6" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "34D1257974040152" + item: { + Count: 1 + id: "endrem:lost_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.5d + y: -1.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&cNETHER EYE&r" + "" + "" + "&o&b\"Lost in the battle between Aether and Nether.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oNether Fortress (chest)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oBlaze -&r &o&b0.5%&r" + " ├─ &oWither Skeleton -&r &o&b1%&r" + " └─ &oIgnis -&r &o&b15%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: Craft it easily, or fight &eIgnis&r for bonus!" + ] + id: "2F18A6982EF88388" + min_width: 300 + rewards: [ + { + id: "325199ABA5D7E165" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4B8E5F68A963AFB1" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "29FA4E61ACD2E4E5" + item: { + Count: 1 + id: "endrem:nether_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.5d + y: -0.5d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&eOLD EYE&r" + "" + "" + "&o&b\"Legends say this eye belonged to the great Sandworms.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oDesert Pyramid (chest)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oHusk -&r &o&b1%&r" + " ├─ &oMummy -&r &o&b5%&r" + " └─ &oDeathworm -&r &o&b20%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: Hunt &eDeathworms&r in desert biomes!" + ] + id: "107217E754B65E74" + min_width: 300 + rewards: [ + { + id: "16F57ECEB6B9FDAA" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5A242301B90F2BC9" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "69DEBDD7FB01D872" + item: { + Count: 1 + id: "endrem:old_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.5d + y: 0.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&2ROGUE EYE&r" + "" + "" + "&o&b\"Gave ancestors the knowledge of Redstone.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oJungle Pyramid (chest)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oCave Spider -&r &o&b2%&r" + " ├─ &oSwarm Spider -&r &o&b3%&r" + " ├─ &oHedge Spider -&r &o&b3%&r" + " └─ &oBaby Skeleton -&r &o&b5%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: &eBaby Skeletons&r are easiest to farm!" + ] + id: "1800C8CD615AACAE" + min_width: 300 + rewards: [ + { + id: "6C5D94A321045EC6" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7E4D759C57591F4B" + table_id: 5236874501558129216L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "336BE0C5DBE21E61" + item: { + Count: 1 + id: "endrem:rogue_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: -1.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&1CURSED EYE&r" + "" + "" + "&o&b\"Protected by Piglins at all costs.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oBastion Remnant (treasure chest)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oPiglin Brute -&r &o&b3%&r" + " ├─ &oZombified Piglin -&r &o&b0.5%&r" + " ├─ &oIgnis -&r &o&b20%&r &e⭐&r &oBEST!&r" + " └─ &oNetherite Monstrosity -&r &o&b15%&r" + "" + "&aTIP&r: Fight &eIgnis&r or &eNetherite Monstrosity&r!" + ] + id: "46B95C760AD04A21" + min_width: 300 + rewards: [ + { + id: "60B28085250A49B1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "73236C33A9AAE47C" + table_id: 5236874501558129216L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "2B5D16DAC02E7B12" + item: { + Count: 1 + id: "endrem:cursed_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.5d + y: 1.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&dEVIL EYE&r" + "" + "" + "&o&b\"Holy talisman protecting from bad luck.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oMaster Cleric trade&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oEvoker -&r &o&b5%&r" + " ├─ &oSir Pumpkinhead -&r &o&b25%&r &e⭐&r &oBEST!&r" + " └─ &oThe Harbinger -&r &o&b20%&r" + "" + "&aTIP&r: Hunt &eSir Pumpkinhead&r for best chance!" + ] + id: "5DDD76F816757CBB" + min_width: 300 + rewards: [ + { + id: "1665AAC532A19D9A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "634C40ADC019728E" + table_id: 5236874501558129216L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "165063FFD7D696BB" + item: { + Count: 1 + id: "endrem:evil_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.5d + y: 1.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&aGUARDIAN EYE&r" + "" + "" + "&o&b\"Has seen warriors drown in the depths.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oElder Guardian drop&r &o&a(100% vanilla)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oGuardian -&r &o&b1%&r" + " └─ &oThe Leviathan -&r &o&b30%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: Kill &eElder Guardians&r in ocean monuments!" + ] + id: "0DDD799F306DC58B" + min_width: 300 + rewards: [ + { + id: "61E7CDE092D2C37B" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7C5F069FB96A6F0C" + table_id: 1235506154212082407L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "4ECF2B87104DD967" + item: { + Count: 1 + id: "endrem:guardian_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: 0.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&dMAGICAL EYE&r" + "" + "" + "&o&b\"The source of the Evoker's power.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oEvoker drop&r &o&a(100% vanilla)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oVindicator -&r &o&b0.5%&r" + " ├─ &oPillager -&r &o&b0.3%&r" + " └─ &oThe Harbinger -&r &o&b20%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: Just kill &eEvokers&r, they always drop it!" + ] + id: "2C3D8E1A392B3A4F" + min_width: 300 + rewards: [ + { + id: "589D8A053A59629A" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "20A4FF90B4909AE2" + table_id: 5236874501558129216L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "27C7F74AF6A38491" + item: { + Count: 1 + id: "endrem:magical_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.5d + y: 0.5d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&8WITHER EYE&r" + "" + "" + "&o&b\"Has witnessed destruction itself.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oWither drop&r &o&a(100% vanilla)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oWither Skeleton -&r &o&b0.5%&r" + " └─ &oNetherite Monstrosity -&r &o&b20%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: Just kill the &eWither&r boss!" + ] + id: "7CCDECA20F03CF4D" + min_width: 300 + rewards: [ + { + id: "42BADEA645C36D88" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "06B2301531AF279A" + table_id: 5236874501558129216L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "0066D58F36EF0380" + item: { + Count: 1 + id: "endrem:wither_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.5d + y: -0.5d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&5WITCH EYE&r" + "" + "" + "&o&b\"Has seen the ancient brewing recipes.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oCRAFTABLE (Witch Pupil + Eye of Ender)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oWitch -&r &o&b5%&r" + " └─ &oMissioner -&r &o&b8%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: Hunt &eMissioners&r from Born in Chaos!" + ] + id: "725847F3327AD295" + min_width: 300 + rewards: [ + { + id: "38D300376D63CDF3" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7D7FE6D74B5D1BC3" + table_id: 1235506154212082407L + type: "loot" + } + ] + shape: "hexagon" + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "1E3ED598CF55FD93" + item: { + Count: 1 + id: "endrem:witch_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.5d + y: 3.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&2UNDEAD EYE&r" + "" + "" + "&o&b\"Remembrance of those who live in death.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oCRAFTABLE (Undead Soul + .?.)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oZombie -&r &o&b0.1%&r" + " ├─ &oSkeleton -&r &o&b0.1%&r" + " ├─ &oWither Skeleton -&r &o&b1%&r" + " ├─ &oDread Lich -&r &o&b30%&r" + " └─ &oNight Lich -&r &o&b35%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: Fight &eNight Lich&r boss for best odds!" + ] + id: "1FCFEDC1EFCA4D02" + min_width: 300 + rewards: [ + { + id: "3593C4FBA03ED395" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2DAFF50D470CC4C4" + table_id: 5236874501558129216L + type: "loot" + } + ] + shape: "hexagon" + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "543CD3A4B55C0C2B" + item: { + Count: 1 + id: "endrem:undead_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: 3.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&eEXOTIC EYE&r" + "" + "" + "&o&b\"Led followers to Atlantis... or to their doom.\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " ├─ &oMaster Cleric trade&r" + " └─ &oCRAFTABLE&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oSea Serpent -&r &o&b8%&r" + " └─ &oThe Leviathan -&r &o&b20%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: &eLeviathan&r drops multiple eyes!" + ] + id: "3E20B41FC6348BEB" + min_width: 300 + rewards: [ + { + id: "565C1C1594D6B5B9" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "05404FFE1C3818C7" + table_id: 5236874501558129216L + type: "loot" + } + ] + shape: "hexagon" + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "329A7EF4B7CA6CF7" + item: { + Count: 1 + id: "endrem:exotic_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.5d + y: 3.0d + } + { + dependencies: ["143B374E2F78F1A2"] + description: [ + " &n&l&6CRYPTIC EYE&r" + "" + "" + "&o&b\"No information about this eye...\"&r" + "" + "&n&9ORIGINAL SOURCE&r:" + " └─ &oEnchanting Table&r &o&c(VERY RARE!)&r" + "" + "&n&4MOB DROPS&r:" + " ├─ &oEnderman -&r &o&b0.1%&r" + " ├─ &oShulker -&r &o&b1%&r" + " ├─ &oEnder Guardian -&r &o&b20%&r" + " └─ &oVoid Blossom -&r &o&b40%&r &e⭐&r &oBEST!&r" + "" + "&aTIP&r: &eVoid Blossom&r is the ultimate boss!" + ] + id: "677DBE0A433B7D19" + min_width: 300 + rewards: [ + { + id: "451A7549C72D251F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "05ABEECF00F5E403" + table_id: 5236874501558129216L + type: "loot" + } + ] + subtitle: "Loot rewards might be mildly inacurate" + tasks: [{ + id: "22F958FBD7D54E47" + item: { + Count: 1 + id: "endrem:cryptic_eye" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: 1.0d + } + { + dependencies: ["071125FC42EBEAB9"] + description: [ + "Exploration is the main focus of &2End Remastered&r, and to reach the &dEnd&r and beat the &5Ender Dragon&r, you will have to find &b16&r custom eyes by exploring &o&bvanilla structures&r and fighting &o&bvanilla bosses&r." + "" + "Once you have at least &o&b12&r eyes, you can follow them until you reach the &3Stronghold&r. You have to put the &o&b12&r custom eyes in the portal in order to open it." + "" + "If there's a vanilla &7Eye of Ender&r in one of the frames, you can remove it by &eRight-clicking&r on it with a custom eye." + ] + hide_dependent_lines: true + icon: "minecraft:ender_eye" + id: "143B374E2F78F1A2" + min_width: 300 + rewards: [{ + id: "60CFF0B42588B312" + type: "xp" + xp: 25 + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "286AB6398CF85B0C" + type: "checkmark" + }] + title: "End Remastered" + x: -6.5d + y: -3.0d + } + ] + title: "&3&oThe End" +} diff --git a/minecraft/config/ftbquests/quests/chapters/the_nether.snbt b/minecraft/config/ftbquests/quests/chapters/the_nether.snbt new file mode 100644 index 0000000..bc4377d --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/the_nether.snbt @@ -0,0 +1,1512 @@ +{ + autofocus_id: "669F5B17AB52A55D" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "the_nether" + group: "09A82B0D5D5E7906" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/netherportal.png" + } + } + id: "6EBA4636AE96703F" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 0.0714285714285765d + y: -4.9375000000000036d + } + { + height: 4.5d + image: "kubejs:textures/item/bastion_remnant.png" + rotation: 0.0d + width: 3.5d + x: 6.821428571428569d + y: 2.4107142857142847d + } + { + height: 1.5d + image: "kubejs:textures/item/pigman.png" + rotation: 0.0d + width: 1.0d + x: -6.5d + y: 0.0d + } + { + height: 1.7d + image: "kubejs:textures/item/wither_skeleton.png" + rotation: 0.0d + width: 1.0d + x: -4.5d + y: 3.0d + } + { + height: 1.5d + image: "kubejs:item/the_nether" + rotation: 0.0d + width: 6.5d + x: -0.5d + y: -6.0d + } + ] + order_index: 2 + quest_links: [ ] + quests: [ + { + id: "669F5B17AB52A55D" + min_width: 300 + rewards: [ + { + id: "050BA5456EB8AB64" + type: "xp" + xp: 100 + } + { + id: "694F6C4EBDA2A2F1" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + dimension: "minecraft:the_nether" + id: "5D1D0E03723829F3" + title: "Visit Dimension: &2The Nether" + type: "dimension" + }] + x: -0.5d + y: -4.5d + } + { + dependencies: ["61D6D62B804DAB03"] + id: "248D9AABA055FA0F" + rewards: [ + { + id: "42193E2D8590E586" + type: "xp" + xp: 10 + } + { + count: 16 + id: "7034DA6E127646D6" + item: "minecraft:quartz_block" + type: "item" + } + ] + tasks: [{ + count: 64L + id: "7CA3C1B7DFB54F97" + item: "minecraft:quartz" + type: "item" + }] + x: -8.0d + y: -2.0d + } + { + dependencies: ["6AD7D2C1D779E242"] + id: "2D5B898FA770B44E" + rewards: [ + { + id: "2139616842E0BF0C" + type: "xp" + xp: 10 + } + { + count: 8 + id: "7975E5E8E27F7F8D" + item: "minecraft:nether_wart_block" + type: "item" + } + ] + tasks: [{ + count: 64L + id: "3A3688084FB42010" + item: "minecraft:nether_wart" + type: "item" + }] + x: -9.0d + y: 2.0d + } + { + dependencies: ["248D9AABA055FA0F"] + id: "7A990724DDEBCDE9" + rewards: [ + { + id: "5C2C7F02B537276F" + type: "xp" + xp: 10 + } + { + count: 16 + id: "71054D704E7BC652" + item: "minecraft:glowstone" + type: "item" + } + ] + tasks: [{ + count: 64L + id: "5412D2A12D826A2D" + item: "minecraft:glowstone_dust" + type: "item" + }] + x: -8.0d + y: -0.5d + } + { + dependencies: ["669F5B17AB52A55D"] + description: ["This is one of the biomes used to generate the Nether. Within this biome mobs such as ghasts, packs of piglins, zombified piglins and the occasional magma cubes and endermen spawn. Certain structures, such as Nether quartz ore \\& glowstone blobs, and Nether fortresses generate only in the Nether. Water lakes (and other Overworld structures) can still generate if the Nether is used in a superflat preset. Beds explode when used in this biome."] + id: "61D6D62B804DAB03" + rewards: [ + { + id: "4565A687CCA27344" + type: "xp" + xp: 10 + } + { + count: 16 + id: "1E6BD51F4598EE25" + item: "minecraft:netherrack" + type: "item" + } + ] + tasks: [{ + biome: "minecraft:nether_wastes" + icon: "minecraft:netherrack" + id: "26A7B9455590E661" + title: "Visit Biome: &2Nether Wastes" + type: "biome" + }] + x: -7.0d + y: -3.5d + } + { + dependencies: ["669F5B17AB52A55D"] + description: [ + "A gray biome, the basalt deltas are said to be the remnant of ancient volcanic eruptions." + "" + "The ground consists of basalt and blackstone blocks, with small patches of netherrack and pools of lava. The shape of the terrain is chaotic and uneven, making it somewhat difficult to traverse and build on. Unlike the other biomes in the Nether, Bastion remnants do not generate in basalt deltas. When this biome borders a lava ocean, clusters of basalt form near the coast." + "" + "Magma cubes have a high spawn rate in this biome, making the Basalt Deltas the best place to farm Magma Cream. This biome also contains a much higher abundance of blackstone compared to other Nether biomes." + ] + id: "01DC8326BFC1FE72" + min_width: 300 + rewards: [ + { + id: "29E54E273EFB2535" + type: "xp" + xp: 10 + } + { + count: 16 + id: "0399616522BA03F0" + item: "minecraft:basalt" + type: "item" + } + ] + tasks: [{ + biome: "minecraft:basalt_deltas" + icon: "chipped:overlapping_basalt_tiles" + id: "53773713773476A3" + title: "Visit Biome: &2Basalt Deltas" + type: "biome" + }] + x: -4.0d + y: -3.0d + } + { + dependencies: ["669F5B17AB52A55D"] + description: [ + "The soul sand valley is a large grotto that is extensive and cuts through the Nether's usual terrain. Notable features of the biome are exposed nether fossils in various shapes and sizes, large amounts of lava, blue fog, large spires made of basalt, soul fire, and the occasional Nether fortress or Bastion remnant. The biome itself consists of soul sand, basalt and soul soil." + "" + "This biome is extremely dangerous to traverse due to the combination of ghasts and skeletons spawning here and soul sand slowing down the player's movement speed, making it easy for a player to get overwhelmed by projectile attacks. In addition, ghasts fireballs impacting soul sand or soul soil can create soul fire, which is more harmful than regular fire if players get caught in it. It is recommended to avoid this biome unless players have sufficient equipment/strategies to navigate the terrain. The Soul Speed enchantment is especially helpful for traveling through this biome." + ] + id: "22BF9344340978A4" + min_width: 300 + rewards: [ + { + id: "6CCAA8261143EC0A" + type: "xp" + xp: 10 + } + { + count: 8 + id: "089185EE02F690BD" + item: "minecraft:soul_sand" + type: "item" + } + { + count: 8 + id: "1345E33D551D8E72" + item: "minecraft:soul_soil" + type: "item" + } + ] + tasks: [{ + biome: "minecraft:soul_sand_valley" + icon: "minecraft:soul_soil" + id: "7799F9E3042E8051" + title: "Visit Biome: &2Soul Sand Valley" + type: "biome" + }] + x: -2.0d + y: -3.0d + } + { + dependencies: ["669F5B17AB52A55D"] + description: [ + "The Crimson Forest is a “red” crimson-themed biome, with warped and crimson fungus as well as huge crimson fungus scattered around the environment." + "" + "There are huge fungus structures that contain weeping vines hanging off them and may also have a few blocks of shroomlight. The floor of the biome is covered in crimson nylium, with crimson roots growing. Occasional patches of netherrack and red nether wart blocks are found scattered throughout the biome. In the ceiling, apart from glowstone clusters, there are sparse nether wart block stalactites with vines growing." + "" + "Piglins, zombified piglins and hoglins naturally spawn in this biome. As long as players equip at least one piece of gold armor, piglins should not cause any trouble. Hoglins can also be repelled by staying close to warped fungus. However, without these countermeasures, this biome can be fairly hostile to navigate. Nevertheless, the abundance of hoglins in this biome makes it a great source of food in the Nether, and the high population of piglins makes this biome an ideal location to barter with them." + ] + id: "38DA9B7CBFD3EF84" + min_width: 300 + rewards: [ + { + id: "72340040819E15ED" + type: "xp" + xp: 10 + } + { + count: 16 + id: "46746F2250CB6988" + item: "minecraft:crimson_stem" + type: "item" + } + ] + tasks: [{ + biome: "minecraft:crimson_forest" + icon: "minecraft:crimson_nylium" + id: "458502414DDE4350" + title: "Visit Biome: &2Crimson Forest" + type: "biome" + }] + x: 1.0d + y: -3.0d + } + { + dependencies: ["669F5B17AB52A55D"] + description: [ + "The warped forest is a dense, “cyan” warped-themed biome, with warped and crimson fungus as well as huge warped fungus scattered around." + "" + "The huge fungus structures may have a few blocks of shroomlight scattered around them. The floor of the biome is covered in warped nylium, with warped roots and nether sprouts growing. Occasional patches of raw netherrack and warped wart blocks can be found scattered throughout the biome." + "" + "Apart from Striders, Endermen are the only mobs that spawn in this biome, making the warped forest an ideal location to collect ender pearls to access the End. This biome is also a relatively safe place to reside in the Nether, due to the fact that no hostile mobs spawn here. However, do note that other hostile mobs can still spawn from Bastion remnants that generate here, as well as from Nether fortresses that have cut into a warped forest after generating in another biome." + ] + id: "6DE27D07E3DF9AE6" + min_width: 300 + rewards: [ + { + id: "64D0492C730CA167" + type: "xp" + xp: 10 + } + { + count: 16 + id: "734356D773CBE616" + item: "minecraft:warped_stem" + type: "item" + } + ] + tasks: [{ + biome: "minecraft:warped_forest" + icon: "minecraft:warped_nylium" + id: "3C1C81B3F7359D01" + title: "Visit Biome: &2Warped Forest" + type: "biome" + }] + x: 2.5d + y: -3.0d + } + { + dependencies: ["7A990724DDEBCDE9"] + id: "6AD7D2C1D779E242" + rewards: [ + { + id: "4791DCA88B1AA563" + type: "xp" + xp: 50 + } + { + count: 16 + id: "7EA1E71B69B4774C" + item: "minecraft:nether_bricks" + type: "item" + } + { + count: 16 + id: "046B93CAC91AE37D" + item: "minecraft:red_nether_bricks" + type: "item" + } + { + exclude_from_claim_all: true + id: "5E2BE38850F4AE05" + table_id: 2501998888776764148L + type: "random" + } + ] + tasks: [{ + advancement: "minecraft:nether/find_fortress" + criterion: "" + id: "2C1AFC6E7DCE8C5D" + type: "advancement" + }] + title: "&2Find Nether Fortress" + x: -7.5d + y: 1.0d + } + { + dependencies: ["669F5B17AB52A55D"] + description: [ + "Bastion remnants are large, castle-like generated structures found in the Nether in all of the biomes except basalt deltas. They generate in four distinct variants, each with a unique structure and set of loot." + "" + "Piglins and piglin brutes spawn in these structures on generation, and hoglins may also spawn on generation in the bridge and hoglin stables variants." + "" + "Bastion remnants are the only place to find the Pigstep music disc, the snout banner pattern, and the magma cube spawner." + ] + id: "740634CC501C68FB" + rewards: [ + { + id: "340CDFD8DE8A861D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "474B6790F7543FB4" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + advancement: "minecraft:nether/find_bastion" + criterion: "" + id: "2B3596CCD8EEA5A8" + type: "advancement" + }] + title: "&2Find Bastion Remnant" + x: 6.0d + y: -3.5d + } + { + dependencies: ["22BF9344340978A4"] + id: "3619853C17BBA191" + rewards: [ + { + id: "1859E520DDC70D44" + type: "xp" + xp: 150 + } + { + count: 8 + id: "1EAE9A2908DA9D72" + item: "minecraft:fire_charge" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "0A9CDC5FB78690C0" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + advancement: "minecraft:nether/return_to_sender" + criterion: "" + id: "73C17050A6DD4EF9" + type: "advancement" + }] + title: "&2Kill Ghast with his own weapon" + x: -2.0d + y: -1.0d + } + { + dependencies: ["3619853C17BBA191"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/ghast.png" + } + } + id: "577D3DA1895B6D5F" + rewards: [ + { + id: "06E7A1D4295AC127" + type: "xp" + xp: 100 + } + { + id: "7F2E764D90A08AED" + item: { + Count: 1 + id: "reliquary:mob_charm" + tag: { + Damage: 0 + entity: "minecraft:ghast" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "376DA245F2CF79D8" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + entity: "minecraft:ghast" + id: "1C25B4C6D8B66B8F" + type: "kill" + value: 10L + }] + x: -2.5d + y: 0.5d + } + { + dependencies: ["577D3DA1895B6D5F"] + id: "41125601D0C31176" + rewards: [ + { + id: "6BD9C2CEF709F5D4" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "064E66428FB6FAA1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "5BFA2074F362F93A" + item: "minecraft:ghast_tear" + type: "item" + }] + x: -3.5d + y: 1.5d + } + { + dependencies: ["6AD7D2C1D779E242"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/wskull.png" + } + } + id: "67E6E91784357EA5" + rewards: [ + { + id: "2356492D7ED2F36D" + type: "xp" + xp: 100 + } + { + id: "5B3FD4E637F6F263" + item: "farmersdelight:milk_bottle" + type: "item" + } + ] + tasks: [{ + entity: "minecraft:wither_skeleton" + id: "76FFAC7085633B8B" + type: "kill" + value: 10L + }] + x: -6.5d + y: 2.0d + } + { + dependencies: ["67E6E91784357EA5"] + id: "084807CC5D12528B" + rewards: [ + { + id: "7D7EA283B4D54D45" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0225833F22FA4039" + table_id: 6305167096659659419L + type: "choice" + } + { + exclude_from_claim_all: true + id: "28BF9E8920FCCCAD" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "7558543FF0035BEB" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + count: 16L + id: "780299A1D3CC745C" + item: "minecraft:wither_skeleton_skull" + type: "item" + }] + x: -6.5d + y: 3.5d + } + { + dependencies: ["6AD7D2C1D779E242"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/blaze.png" + } + } + id: "1CDFBC965BAA217C" + rewards: [ + { + id: "03D1A88B622355E0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6F8B7822ECCB6A62" + table_id: 1235506154212082407L + type: "loot" + } + { + id: "149C1E4ED88A79BF" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + entity: "minecraft:blaze" + id: "5E55004892DA2E36" + type: "kill" + value: 10L + }] + x: -8.0d + y: 3.0d + } + { + dependencies: ["1CDFBC965BAA217C"] + id: "7B42D53ABBE26B9E" + rewards: [ + { + id: "11439E3B2636D7EE" + type: "xp" + xp: 10 + } + { + count: 8 + id: "752DE3793B70F9CF" + item: "minecraft:blaze_powder" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "343BA585E5911CE0" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + count: 16L + id: "3B806A383DB6E156" + item: "minecraft:blaze_rod" + type: "item" + }] + x: -9.0d + y: 4.0d + } + { + dependencies: ["740634CC501C68FB"] + id: "3B52B6A9E01EEE06" + rewards: [ + { + id: "6F2B367AE7C295BC" + type: "xp" + xp: 100 + } + { + id: "57C95A27B72266DC" + item: "alexscaves:music_disc_tasty" + type: "item" + } + { + id: "350FA2B7730D6699" + table_id: 1235506154212082407L + type: "random" + } + ] + tasks: [{ + id: "7738599CC39A3029" + item: "minecraft:music_disc_pigstep" + type: "item" + }] + x: 5.0d + y: -0.5d + } + { + dependencies: ["756C7A17DA1095F0"] + id: "6A6CF24AC6305BED" + rewards: [ + { + id: "235A3EFD435EABB7" + type: "xp" + xp: 10 + } + { + count: 16 + id: "51A19512E3D55FA3" + item: "minecraft:ender_pearl" + type: "item" + } + { + count: 3 + id: "0C466A6D82C31282" + item: "minecraft:wither_skeleton_skull" + type: "item" + } + ] + tasks: [{ + count: 64L + id: "09F34937E759D898" + item: "minecraft:polished_blackstone_bricks" + type: "item" + }] + x: -5.0d + y: 0.0d + } + { + dependencies: ["6DE27D07E3DF9AE6"] + id: "2392C048E8B2AB48" + rewards: [ + { + id: "741A442FB76BE7AE" + type: "xp" + xp: 10 + } + { + count: 16 + id: "7479A9830F874469" + item: "minecraft:stripped_warped_stem" + type: "item" + } + ] + tasks: [{ + count: 64L + id: "593A6E8784A9C895" + item: "minecraft:warped_fungus" + type: "item" + }] + x: 3.5d + y: -1.5d + } + { + dependencies: ["38DA9B7CBFD3EF84"] + id: "162B792C03B6722C" + rewards: [ + { + id: "7708E592B8B94514" + type: "xp" + xp: 10 + } + { + count: 8 + id: "3F4C385A2BF70C57" + item: "mcwlights:crimson_tiki_torch" + type: "item" + } + ] + tasks: [{ + count: 64L + id: "7BD988516AAC4EBA" + item: "minecraft:crimson_fungus" + type: "item" + }] + x: 2.0d + y: -2.0d + } + { + dependencies: ["162B792C03B6722C"] + id: "03F7CB67AACB4095" + rewards: [{ + id: "6841BE055824ED21" + type: "xp" + xp: 10 + }] + tasks: [{ + count: 64L + id: "31164838BECC2A2C" + item: "minecraft:shroomlight" + type: "item" + }] + x: 2.5d + y: -0.5d + } + { + dependencies: ["01DC8326BFC1FE72"] + id: "5ABEB1721628EF20" + rewards: [ + { + id: "646430D2B9960B0A" + type: "xp" + xp: 10 + } + { + count: 16 + id: "62ED6083D21F1560" + item: "minecraft:polished_basalt" + type: "item" + } + ] + tasks: [{ + count: 64L + id: "5DF106550D604E8E" + item: "minecraft:basalt" + type: "item" + }] + x: -5.5d + y: -3.0d + } + { + dependencies: ["59A3A6B9D7C4A2D6"] + id: "1644A256A9CD6559" + rewards: [ + { + id: "661CCABE8778F24F" + type: "xp" + xp: 10 + } + { + count: 16 + id: "53F42D41AD1D183A" + item: "minecraft:magma_block" + type: "item" + } + ] + tasks: [{ + count: 16L + id: "6A2CE238E9B1DF09" + item: "minecraft:magma_cream" + type: "item" + }] + x: 6.0d + y: 0.0d + } + { + dependencies: ["740634CC501C68FB"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/mcube.png" + } + } + id: "59A3A6B9D7C4A2D6" + rewards: [ + { + id: "583FE66357B47571" + type: "xp" + xp: 40 + } + { + id: "1589A12684F2C238" + item: "cyclic:anvil_magma" + type: "item" + } + { + exclude_from_claim_all: true + id: "60EEAA64AD81296F" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + entity: "minecraft:magma_cube" + id: "1D7C88DD0D396A76" + type: "kill" + value: 10L + }] + x: 6.0d + y: -1.0d + } + { + dependencies: ["523D3DBFC0537627"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/piglin_brute.png" + } + } + id: "5B81A9BB53B48203" + rewards: [ + { + id: "79590DA84DD82D4D" + type: "xp" + xp: 50 + } + { + count: 16 + id: "70DBB6945BEAB299" + item: "minecraft:gold_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "4BFB4BE07C72B0B7" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + entity: "minecraft:piglin_brute" + id: "4C098B5F627BC167" + type: "kill" + value: 10L + }] + x: 7.0d + y: -0.5d + } + { + dependencies: ["740634CC501C68FB"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/piglin.png" + } + } + id: "523D3DBFC0537627" + rewards: [ + { + id: "3F1D3822327743EB" + type: "xp" + xp: 30 + } + { + count: 8 + id: "428F5F3626DAE76D" + item: "minecraft:gold_block" + type: "item" + } + ] + tasks: [{ + entity: "minecraft:piglin" + id: "2F0F1A81F0CD5F0E" + type: "kill" + value: 10L + }] + x: 7.0d + y: -2.0d + } + { + dependencies: ["740634CC501C68FB"] + id: "3FE9359A9DAEA36A" + rewards: [ + { + id: "131B94C53D4491B1" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "7B28060D50E4888E" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + id: "27BFEFD26771BE3C" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "minecraft:flower_banner_pattern" + } + { + Count: 1b + id: "minecraft:creeper_banner_pattern" + } + { + Count: 1b + id: "minecraft:skull_banner_pattern" + } + { + Count: 1b + id: "minecraft:mojang_banner_pattern" + } + { + Count: 1b + id: "minecraft:globe_banner_pattern" + } + { + Count: 1b + id: "minecraft:piglin_banner_pattern" + } + { + Count: 1b + id: "alexsmobs:banner_pattern_bear" + } + { + Count: 1b + id: "alexsmobs:banner_pattern_australia_0" + } + { + Count: 1b + id: "alexsmobs:banner_pattern_australia_1" + } + { + Count: 1b + id: "alexsmobs:banner_pattern_new_mexico" + } + { + Count: 1b + id: "alexsmobs:banner_pattern_brazil" + } + { + Count: 1b + id: "supplementaries:dragon_banner_pattern" + } + { + Count: 1b + id: "buzzier_bees:honeycomb_banner_pattern" + } + { + Count: 1b + id: "environmental:lumberer_banner_pattern" + } + { + Count: 1b + id: "environmental:helper_banner_pattern" + } + { + Count: 1b + id: "immersiveengineering:bannerpattern_hammer" + } + { + Count: 1b + id: "immersiveengineering:bannerpattern_bevels" + } + { + Count: 1b + id: "immersiveengineering:bannerpattern_ornate" + } + { + Count: 1b + id: "immersiveengineering:bannerpattern_treated_wood" + } + { + Count: 1b + id: "immersiveengineering:bannerpattern_windmill" + } + { + Count: 1b + id: "immersiveengineering:bannerpattern_wolf_r" + } + { + Count: 1b + id: "immersiveengineering:bannerpattern_wolf_l" + } + { + Count: 1b + id: "immersiveengineering:bannerpattern_wolf" + } + { + Count: 1b + id: "the_bumblezone:banner_pattern_bee" + } + { + Count: 1b + id: "the_bumblezone:banner_pattern_honeycombs" + } + { + Count: 1b + id: "the_bumblezone:banner_pattern_swords" + } + { + Count: 1b + id: "the_bumblezone:banner_pattern_eyes" + } + ] + } + } + { + Count: 1b + id: "the_bumblezone:banner_pattern_peace" + } + { + Count: 1b + id: "the_bumblezone:banner_pattern_pluses" + } + { + Count: 1b + id: "the_bumblezone:banner_pattern_sun" + } + { + Count: 1b + id: "the_bumblezone:banner_pattern_arrows" + } + { + Count: 1b + id: "twilightforest:naga_banner_pattern" + } + { + Count: 1b + id: "twilightforest:lich_banner_pattern" + } + { + Count: 1b + id: "twilightforest:minoshroom_banner_pattern" + } + { + Count: 1b + id: "twilightforest:hydra_banner_pattern" + } + { + Count: 1b + id: "twilightforest:knight_phantom_banner_pattern" + } + { + Count: 1b + id: "twilightforest:ur_ghast_banner_pattern" + } + { + Count: 1b + id: "twilightforest:alpha_yeti_banner_pattern" + } + { + Count: 1b + id: "twilightforest:snow_queen_banner_pattern" + } + { + Count: 1b + id: "twilightforest:quest_ram_banner_pattern" + } + { + Count: 1b + id: "actuallyadditions:drill_pattern" + } + { + Count: 1b + id: "actuallyadditions:leaf_blo_pattern" + } + { + Count: 1b + id: "actuallyadditions:phan_con_pattern" + } + { + Count: 1b + id: "actuallyadditions:book_pattern" + } + ] + } + } + title: "Find any Banner Pattern" + type: "item" + }] + x: 4.5d + y: -2.5d + } + { + dependencies: ["669F5B17AB52A55D"] + description: [ + "Ancient debris is a rare ore found in the Nether, and is the main source of netherite scraps. Its high blast resistance makes it immune to normal explosions. In item form, it floats on lava and cannot be burned by any form of fire." + "" + "Ancient debris generates in the Nether in the form of blobs. Up to two blobs may generate per chunk: one blob of 1–3 ancient debris attempts to generate with a periodic normal distribution (similarly to lapis lazuli ore) from levels 8 to 22, and an additional blob of 0–2 ancient debris attempts to generate randomly from levels 8 to 119. On average, Y-level 15 has the most ancient debris." + ] + id: "587B2CD4C9B4860C" + rewards: [ + { + id: "6FE1F3816B169D21" + type: "xp" + xp: 200 + } + { + id: "0028C4371BDED46E" + item: "minecraft:ancient_debris" + type: "item" + } + { + exclude_from_claim_all: true + id: "14BDA2AB1CB8D359" + table_id: 5987657478296879679L + type: "loot" + } + ] + tasks: [{ + advancement: "minecraft:nether/obtain_ancient_debris" + criterion: "" + id: "3B7F3723628A4CEE" + title: "&2Find Ancient Debris" + type: "advancement" + }] + x: -0.5d + y: -3.0d + } + { + dependencies: ["587B2CD4C9B4860C"] + description: ["Netherite scrap is a material smelted from ancient debris, which is found in the Nether. It is used solely for crafting netherite ingots. Like most netherite-related items, it is not flammable."] + id: "3AE4F193DBC2464B" + rewards: [ + { + id: "7ABE999438E5D3F9" + type: "xp" + xp: 50 + } + { + count: 16 + id: "07ADB817404D8E09" + item: "minecraft:gold_ingot" + type: "item" + } + ] + tasks: [{ + count: 16L + id: "6B8F5645F0FA0E70" + item: "minecraft:netherite_scrap" + type: "item" + }] + x: -0.5d + y: -1.0d + } + { + dependencies: ["3AE4F193DBC2464B"] + description: ["Netherite ingots are items obtained from crafting netherite scraps and gold ingots together, as well as loot from bastion remnant loot chests. Unlike other items, they are immune to fire and lava damage. They are primarily used to upgrade diamond gear and craft lodestones."] + id: "317B80BB771DEDF6" + rewards: [ + { + id: "21A375926FEC32DB" + type: "xp" + xp: 100 + } + { + count: 2 + id: "428EDD39BB4D1264" + item: "minecraft:netherite_ingot" + random_bonus: 1 + type: "item" + } + ] + tasks: [{ + count: 16L + id: "369A394DCA4645DB" + item: "minecraft:netherite_ingot" + type: "item" + }] + x: -0.5d + y: 0.5d + } + { + dependencies: ["317B80BB771DEDF6"] + description: ["A block of netherite is a precious metal block made from nine netherite ingots. Unlike most items, it is resistant to fire and lava."] + icon_scale: 1.5d + id: "799BD4941482FA9D" + rewards: [ + { + id: "24188D9D5BC4850A" + type: "xp" + xp: 300 + } + { + exclude_from_claim_all: true + id: "687309B839DFB5B6" + table_id: 1235506154212082407L + type: "loot" + } + { + exclude_from_claim_all: true + id: "4EB5DE82A775DF4D" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + count: 8L + id: "3281A6F2999E6564" + item: "minecraft:netherite_block" + type: "item" + }] + x: -0.5d + y: 2.0d + } + { + dependencies: ["03F7CB67AACB4095"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/hoglin.png" + } + } + id: "4D33C82879480A1F" + rewards: [ + { + id: "424D5AE176ADB8CE" + type: "xp" + xp: 20 + } + { + count: 16 + id: "78175804D4823DD4" + item: "minecraft:leather" + type: "item" + } + ] + tasks: [{ + entity: "minecraft:hoglin" + id: "5A7CFE96E3FFE5D4" + type: "kill" + value: 10L + }] + x: 2.0d + y: 1.0d + } + { + dependencies: ["22BF9344340978A4"] + description: [ + "Soul sand is a block found naturally only in the Nether. Soul sand usually slows down the movement of mobs and players walking on it. It is also used for growing nether wart and for constructing a Wither." + "" + "Soul soil is a block naturally found only in the soul sand valley." + "Unlike soul sand, soul soil does not slow mobs down and does not create bubble columns." + ] + id: "2A739D919882BCC1" + rewards: [ + { + id: "09BD4D415FC02CA8" + type: "xp" + xp: 10 + } + { + count: 16 + id: "14DB5D236DD5BB8B" + item: "mcwfences:modern_nether_brick_wall" + type: "item" + } + { + count: 16 + id: "08AC137821133E84" + item: "mcwfences:railing_nether_brick_wall" + type: "item" + } + ] + tasks: [ + { + count: 64L + id: "0C25E6427E043E74" + item: "minecraft:soul_sand" + type: "item" + } + { + count: 64L + id: "16BB09F296DC6507" + item: "minecraft:soul_soil" + type: "item" + } + ] + title: "Soul Sand \\& Soul Soil" + x: -4.0d + y: -1.5d + } + { + dependencies: ["22BF9344340978A4"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/nether_fossil.png" + } + } + id: "43B9BC1D5EA35B9E" + rewards: [ + { + id: "4FF8AB6295ADD400" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "36A31B89E7624671" + table_id: 5236874501558129216L + type: "loot" + } + ] + tasks: [{ + count: 64L + id: "201DC4018F4E77AE" + item: "minecraft:bone_block" + type: "item" + }] + title: "&2Nether Fossil" + x: -3.0d + y: -1.0d + } + { + dependencies: ["38DA9B7CBFD3EF84"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/cmsq.png" + } + } + id: "5F7199C4BDEFA2D4" + rewards: [ + { + id: "5C0463321A250CD2" + type: "xp" + xp: 50 + } + { + id: "472F86214BC23BD8" + item: { + Count: 1 + id: "reliquary:mob_charm" + tag: { + Damage: 0 + entity: "alexsmobs:crimson_mosquito" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "167832C0022E641A" + table_id: 2501998888776764148L + type: "loot" + } + ] + tasks: [{ + entity: "alexsmobs:crimson_mosquito" + icon: "alexsmobs:spawn_egg_crimson_mosquito" + id: "2FA501ED611631B0" + type: "kill" + value: 10L + }] + x: 1.0714285714285694d + y: -1.4107142857142847d + } + { + dependencies: ["6A6CF24AC6305BED"] + id: "70D1BB8EC25D71BE" + rewards: [ + { + id: "7B7A86BD016B2B53" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "174FAA856A89D58F" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + count: 32L + id: "418492285956BDEC" + item: "minecraft:crying_obsidian" + type: "item" + }] + x: -5.5d + y: 1.5d + } + { + dependencies: ["01DC8326BFC1FE72"] + id: "756C7A17DA1095F0" + rewards: [ + { + id: "18050C9655701636" + type: "xp" + xp: 15 + } + { + exclude_from_claim_all: true + id: "0212AD18D8784F15" + table_id: 2501998888776764148L + type: "loot" + } + ] + tasks: [{ + count: 64L + id: "2A5B531043B0CF08" + item: "minecraft:blackstone" + type: "item" + }] + x: -5.0d + y: -1.0d + } + { + dependencies: ["01DC8326BFC1FE72"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/straddler.png" + } + } + id: "75ED1C15B8426098" + rewards: [ + { + id: "2E87CCD4C3EA48C0" + type: "xp" + xp: 150 + } + { + id: "3A9F8A0FE68EC044" + item: { + Count: 1 + id: "reliquary:mob_charm" + tag: { + Damage: 0 + entity: "alexsmobs:straddler" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "735BD7D182EA15AC" + table_id: 1235506154212082407L + type: "loot" + } + ] + tasks: [{ + entity: "alexsmobs:straddler" + icon: "alexsmobs:spawn_egg_straddler" + id: "3F479B6B7381CEFB" + type: "kill" + value: 10L + }] + x: -6.0d + y: -1.5d + } + ] + title: "&3&o&oThe Nether" +} diff --git a/minecraft/config/ftbquests/quests/chapters/the_pet_master.snbt b/minecraft/config/ftbquests/quests/chapters/the_pet_master.snbt new file mode 100644 index 0000000..34a5d15 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/the_pet_master.snbt @@ -0,0 +1,2215 @@ +{ + autofocus_id: "3BD605B4B1C89B92" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "the_pet_master" + group: "2969F58CC6EA9A10" + icon: { + Count: 1 + id: "inventorypets:pet_meta" + tag: { + Damage: 0 + } + } + id: "4403AD20655CEF38" + images: [ + { + height: 1.7d + image: "kubejs:textures/item/the_pet_master.png" + rotation: 0.0d + width: 7.5d + x: 2.4642857142857153d + y: -9.482142857142858d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 2.5d + y: 0.0d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 3.2142857142857153d + y: -8.112499999999997d + } + { + height: 1.2d + image: "inventorypets:item/dirt" + rotation: 20.0d + width: 1.2d + x: 4.0d + y: -8.0d + } + { + height: 1.5d + image: "inventorypets:item/chicken_new" + rotation: 10.0d + width: 1.5d + x: 7.0d + y: -1.0d + } + { + height: 1.0d + image: "inventorypets:item/end_portal_pet" + rotation: 0.0d + width: 0.04d + x: 1.0d + y: -8.0d + } + { + height: 1.0d + image: "inventorypets:item/dubstep_new" + rotation: -20.0d + width: 1.0d + x: 2.5d + y: -8.0d + } + { + height: 1.5d + image: "inventorypets:item/mickerson_new" + rotation: -20.0d + width: 1.5d + x: -2.0d + y: -1.0d + } + { + height: 1.7d + image: "inventorypets:item/wither_new" + rotation: 0.0d + width: 1.7d + x: 10.5d + y: -5.0d + } + { + height: 1.7d + image: "inventorypets:item/sun_new" + rotation: 0.0d + width: 1.7d + x: -5.5d + y: -5.0d + } + ] + order_index: 0 + quest_links: [ ] + quests: [ + { + id: "3BD605B4B1C89B92" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "5B6645D41B09A8F9" + table_id: 381865782302985986L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "&oThere are&r &b&o72&r &oinventory Pets, can you collect them all?" + tasks: [{ + id: "359521046EE1FAC0" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 18 + } + } + id: "inventorypets:feed_bag" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&6The Pet Master" + x: 2.5d + y: -7.5d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "0E72B5CAF4646E8D" + rewards: [{ + exclude_from_claim_all: true + id: "1ED6F0A796AEE6D1" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "682F5A02C35E8F90" + item: { + Count: 1 + id: "inventorypets:pet_cow" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.4000000000000004d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "7A9C2AE4BBC9812A" + rewards: [{ + exclude_from_claim_all: true + id: "4E17741C7B059558" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "433BA327F90523B5" + item: { + Count: 1 + id: "inventorypets:pet_mooshroom" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.7000000000000002d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "55067F5D2A8223CB" + rewards: [{ + exclude_from_claim_all: true + id: "4EBA2CC597B7A102" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6FC4C98A700140F8" + item: { + Count: 1 + id: "inventorypets:pet_ocelot" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "748265E8A140C04F" + rewards: [{ + exclude_from_claim_all: true + id: "7BCF37D2C37806BB" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "02B6FBB2522E0253" + item: { + Count: 1 + id: "inventorypets:pet_pig" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.5d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "18E9975A40652D52" + rewards: [{ + exclude_from_claim_all: true + id: "7789F3631AC50B0A" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "476FD279E00291DB" + item: "inventorypets:item_petrifier" + type: "item" + }] + x: 8.399999999999999d + y: -3.1499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "55E4277DCB1B86B7" + rewards: [{ + exclude_from_claim_all: true + id: "164C4B5BB72C9DA9" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1B69D003D88BAD38" + item: { + Count: 1 + id: "inventorypets:pet_brewing_stand" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "5DA6ACDE156DA5D8" + rewards: [{ + exclude_from_claim_all: true + id: "6DE4AA3B78E91973" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0311E79DDCDB36B8" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 27 + } + } + id: "inventorypets:pet_chest" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.5d + y: -4.549999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "4663E9698FC02807" + rewards: [{ + exclude_from_claim_all: true + id: "117448F3FA0028F8" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "700577F83D02AA99" + item: { + Count: 1 + id: "inventorypets:pet_crafting_table" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.8000000000000003d + y: -4.549999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "64868636E3733E4E" + rewards: [{ + exclude_from_claim_all: true + id: "04B6FB8194946E5E" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3843F18B563B1FDC" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 54 + } + } + id: "inventorypets:pet_double_chest" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.1d + y: -4.549999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "72FC99F4F3005DAD" + rewards: [{ + exclude_from_claim_all: true + id: "73E19031340C1028" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1E080C548585F26B" + item: { + Count: 1 + id: "inventorypets:pet_ghast" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.4000000000000004d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "3D80899C76D05007" + rewards: [{ + exclude_from_claim_all: true + id: "1CF9DB3F0E0E6CAD" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1648546CE29CE6E9" + item: { + Count: 1 + id: "inventorypets:pet_iron_golem" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.7000000000000002d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "20477022F5200068" + rewards: [{ + exclude_from_claim_all: true + id: "2CAC9A92A6CA2C75" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "33EB38A1E2C03351" + item: { + Count: 1 + id: "inventorypets:pet_magma_cube" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "70D9F8F881C16742" + rewards: [{ + exclude_from_claim_all: true + id: "0E84699A06B579DA" + table_id: 6305167096659659419L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "4B59D768890FBFAE" + item: { + Count: 1 + id: "inventorypets:patreon_head" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&dPurplicious Cow Head" + x: 1.5d + y: -4.5d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "553854CB3684821B" + rewards: [{ + exclude_from_claim_all: true + id: "5F88159D4E670964" + table_id: 1235506154212082407L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "65F8990F850BBD48" + item: { + Count: 1 + id: "inventorypets:patreon_shirt" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "&aCool T-Shirt" + x: 3.5d + y: -4.5d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "73E0AA91F283DFA6" + rewards: [{ + exclude_from_claim_all: true + id: "674B3F7878BE1B0D" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2848B5B2307A90AE" + item: { + Count: 1 + id: "inventorypets:pet_black_hole" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.299999999999999d + y: -3.8499999999999996d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "7EA7AF4BD2BB73A0" + rewards: [{ + exclude_from_claim_all: true + id: "541FF23AFE503453" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "13506A685CEF957D" + item: { + Count: 1 + id: "inventorypets:pet_wolf" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.699999999999999d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "44BD6C77AE13BF86" + rewards: [{ + exclude_from_claim_all: true + id: "2C202850AC55CF92" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0044197F86482C34" + item: { + Count: 1 + id: "inventorypets:pet_mishumaa_saba" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.8999999999999995d + y: -3.8499999999999996d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "7CB4518C3B32883E" + rewards: [{ + exclude_from_claim_all: true + id: "3BCFF0FBDCE96F5F" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "12A1DE24319623F0" + item: { + Count: 1 + id: "inventorypets:pet_menorah" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.399999999999999d + y: -4.55d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "46BF7C973082CF92" + rewards: [{ + exclude_from_claim_all: true + id: "3C9E41A171690596" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "486CF9B0293257B3" + item: { + Count: 1 + id: "inventorypets:pet_christmas_tree" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.699999999999999d + y: -4.55d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "4D0C770D8FFA17B8" + rewards: [{ + exclude_from_claim_all: true + id: "3DEE759DD4F56713" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "18F47925990D9754" + item: { + Count: 1 + id: "inventorypets:pet_april_fool" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.999999999999998d + y: -4.55d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "0E3549892D6BE41C" + rewards: [{ + exclude_from_claim_all: true + id: "5A719EB42962B675" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3F4A6E9F63990CC2" + item: { + Count: 1 + id: "inventorypets:pet_shield" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.299999999999999d + y: -4.55d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "1B0276C10E24951F" + rewards: [{ + exclude_from_claim_all: true + id: "233604985812FE95" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2C0DA3AA774A959A" + item: { + Count: 1 + id: "inventorypets:pet_enchanting_table" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.4000000000000004d + y: -4.549999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "612CAFF6B39ECFB7" + rewards: [{ + exclude_from_claim_all: true + id: "4DADAAB19DA20DC4" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "7039912F1F9DC553" + item: { + Count: 1 + id: "inventorypets:pet_jukebox" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.5d + y: -3.8499999999999988d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "0D6BD95C35865C23" + rewards: [{ + exclude_from_claim_all: true + id: "1D0E97E6D53DDD0B" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0B3B0B70BB0242B8" + item: { + Count: 1 + id: "inventorypets:pet_lead" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.8000000000000003d + y: -3.8499999999999988d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "63A75472264DB9AB" + rewards: [{ + exclude_from_claim_all: true + id: "41BD795DEE47DBB6" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2A679A6E1AEEA387" + item: { + Count: 1 + id: "inventorypets:pet_saddle" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.1d + y: -3.85d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "3DF47E959D3D605B" + rewards: [{ + exclude_from_claim_all: true + id: "632671A68C1218D0" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "22F3450E9A10E285" + item: { + Count: 1 + id: "inventorypets:pet_wither" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.6d + y: -3.1499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "770B647705D89346" + rewards: [{ + exclude_from_claim_all: true + id: "0342EC145E814D68" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "01F5520CD5F9715F" + item: { + Count: 1 + id: "inventorypets:pet_cheetah" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.699999999999999d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "1501A54C679200DC" + rewards: [{ + exclude_from_claim_all: true + id: "7EC380B0BBA83232" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3F89A8DB02744FD3" + item: { + Count: 1 + id: "inventorypets:pet_house" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.399999999999999d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "663EA017A556E230" + rewards: [{ + exclude_from_claim_all: true + id: "58A38312395C5420" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2AE3AD2E25E4AA4B" + item: { + Count: 1 + id: "inventorypets:pet_pacman" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.8999999999999995d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "29BDF7CD0FC3C3E8" + rewards: [{ + exclude_from_claim_all: true + id: "0D8209627DEABDA5" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "065F1E3F109F3766" + item: { + Count: 1 + id: "inventorypets:pet_pixie" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.6d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "03013576ED110D34" + rewards: [{ + exclude_from_claim_all: true + id: "0CD9675E511E926E" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "712913E07369BE37" + item: { + Count: 1 + id: "inventorypets:pet_silverfish" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.299999999999999d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "2F4A5F6C64CE5AF0" + rewards: [{ + exclude_from_claim_all: true + id: "524D846094A002B1" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "53B8ABBDF7C34F6C" + item: { + Count: 1 + id: "inventorypets:pet_torch" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.999999999999998d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "186330EA2619139F" + rewards: [{ + exclude_from_claim_all: true + id: "1A07FE0C7DDCD99A" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2550EEDB697790EE" + item: { + Count: 1 + id: "inventorypets:pet_cloud" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.999999999999998d + y: -3.8499999999999996d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "733ECA985FFC3CB1" + rewards: [{ + exclude_from_claim_all: true + id: "32C0CA7F76637BD5" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "755B8EE74D22DF6A" + item: { + Count: 1 + id: "inventorypets:pet_pufferfish" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.699999999999999d + y: -3.8499999999999996d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "1CAE5ABF7D5FEC3D" + rewards: [{ + exclude_from_claim_all: true + id: "4794B51C266B5B23" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "06F09A02E79E4A4B" + item: { + Count: 1 + id: "inventorypets:pet_slime" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.399999999999999d + y: -3.8499999999999996d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "4B0D4B3444E7F28B" + rewards: [{ + exclude_from_claim_all: true + id: "25241E8875F83693" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "277FE3765C4606E1" + item: { + Count: 1 + id: "inventorypets:pet_sun" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.7d + y: -3.15d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "331A4A6165B3FE2F" + rewards: [{ + exclude_from_claim_all: true + id: "1EB4C5616D28B86F" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "687F3A9934BB4267" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 27 + } + } + id: "inventorypets:pet_sated_chest" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.299999999999999d + y: -3.1499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "7E2D694D43445C0B" + rewards: [{ + exclude_from_claim_all: true + id: "46743916DC67A64C" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "31FEBA1D3450B423" + item: { + Count: 1 + ForgeCaps: { + Parent: { + Items: [ ] + Size: 54 + } + } + id: "inventorypets:pet_sated_double_chest" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.999999999999998d + y: -3.1499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "2C570B4863ABA611" + rewards: [{ + exclude_from_claim_all: true + id: "77F20F2D036DC11B" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "50884D501A74F00F" + item: { + Count: 1 + id: "inventorypets:pet_anvil" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.4000000000000004d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "1F6B8D6F58265F4B" + rewards: [{ + exclude_from_claim_all: true + id: "0DAD7935F1BFF5E7" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "7BDF8BF06934A634" + item: { + Count: 1 + id: "inventorypets:pet_squid" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.1d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "4F7F56BDBA5EE919" + rewards: [{ + exclude_from_claim_all: true + id: "20A57E2D7AD32C2A" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "23539903B95B6F82" + item: { + Count: 1 + id: "inventorypets:pet_biome" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.7d + y: -3.85d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "48B9045AD0A817FD" + rewards: [{ + exclude_from_claim_all: true + id: "0168DA912672419F" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "41A0E08FBE37A5FB" + item: { + Count: 1 + id: "inventorypets:pet_politically_correct" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.6d + y: -3.8499999999999996d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "3A5CF840B36CC06C" + rewards: [{ + exclude_from_claim_all: true + id: "0C78EA26B5BC28B9" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "6F90236018812BB4" + item: { + Count: 1 + id: "inventorypets:pet_furnace" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -4.549999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "403CD417999C7500" + rewards: [{ + exclude_from_claim_all: true + id: "55472CCFC02C0F50" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "0AB279A40098C9F1" + item: "inventorypets:easter_egg" + type: "item" + }] + title: "&eEaster Egg" + x: 2.5d + y: -3.5d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "10CD6F8BE86C318B" + rewards: [{ + exclude_from_claim_all: true + id: "4D26CD1F4BEA08C2" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "5C868E46ED68DB96" + item: { + Count: 1 + id: "inventorypets:pet_spider" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.8000000000000003d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "3416EA089C94CB69" + rewards: [{ + exclude_from_claim_all: true + id: "722E5AB9FBB826F2" + table_id: 5987657478296879679L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "76BB2AE3E09782E6" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "inventorypets:holiday_cookie" + } + { + Count: 1b + id: "inventorypets:egg_nog" + } + { + Count: 1b + id: "inventorypets:candy_cane" + } + { + Count: 1b + id: "inventorypets:rock_candy" + } + ] + } + } + title: "Mmm... delicious" + type: "item" + }] + title: "&cMmm... Delicious !!!" + x: 2.4499999999999997d + y: -2.4499999999999997d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "0989DDF083A4069C" + rewards: [{ + exclude_from_claim_all: true + id: "799DD3CFD9A64CBE" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0C44B6E0DA44AC84" + item: { + Count: 1 + id: "inventorypets:pet_dubstep" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.399999999999999d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "1E3A40E16432AF90" + rewards: [{ + exclude_from_claim_all: true + id: "226BD358CCE1F277" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "79F69B07802C5AFE" + item: { + Count: 1 + id: "inventorypets:pet_chicken" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.1d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "4420FC9D40AA120F" + rewards: [{ + exclude_from_claim_all: true + id: "6D50BDE2BA88DD8D" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "548DE94B9CB69742" + item: { + Count: 1 + id: "inventorypets:pet_bed" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.7000000000000002d + y: -5.249999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "52AB5B749DB04A89" + rewards: [{ + exclude_from_claim_all: true + id: "5F52D34F1929AEBC" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1C7CA848E9892B29" + item: { + Count: 1 + id: "inventorypets:pet_heart" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.8999999999999995d + y: -4.55d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "6E6A0CF9875B959B" + rewards: [{ + exclude_from_claim_all: true + id: "346096449CCA2BEC" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0D0853D6EEC0A88F" + item: { + Count: 1 + id: "inventorypets:pet_moon" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.6d + y: -4.55d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "2E49E4B958137692" + rewards: [{ + exclude_from_claim_all: true + id: "3B65C3659C6EFF3F" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "16765FC3EB427361" + item: { + Count: 1 + id: "inventorypets:pet_purplicious_cow" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.8999999999999995d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "63A56D5A721133B5" + rewards: [{ + exclude_from_claim_all: true + id: "3F8116A4E177736E" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "67B752195EA69622" + item: { + Count: 1 + id: "inventorypets:pet_flying_saddle" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.699999999999999d + y: -3.1499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "3928D38EE5994885" + rewards: [{ + exclude_from_claim_all: true + id: "4D758F52DB419497" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3A8C51E7ECE21317" + item: { + Count: 1 + id: "inventorypets:pet_grave" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -3.85d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "23840C8C9BD791EF" + rewards: [{ + exclude_from_claim_all: true + id: "2062CB9C83B16D34" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "44AF11B4202245EF" + item: { + Count: 1 + id: "inventorypets:pet_loot" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.5d + y: -3.15d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "4936DF585B8A200C" + rewards: [{ + exclude_from_claim_all: true + id: "07AAC0F531A456D4" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "621640A888CCA8A1" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "inventorypets:pet_meta" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_aoe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_fan" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_mob" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_peaceful" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_special" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_utility" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_youtuber" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_25" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_50" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_75" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "inventorypets:pet_meta_100" + tag: { + Damage: 0 + } + } + ] + } + } + title: "Meta Pet" + type: "item" + }] + x: -2.8d + y: -3.15d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "79B236B557D8F065" + rewards: [{ + exclude_from_claim_all: true + id: "2C2EC1C5FFDFB273" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "5F0DBF81163F5C83" + item: { + Count: 1 + id: "inventorypets:pet_mickerson" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.1d + y: -3.15d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "045C775B69AE2F28" + rewards: [{ + exclude_from_claim_all: true + id: "08240CFAF86DBC8C" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "347A1A8CB742938B" + item: { + Count: 1 + id: "inventorypets:pet_pingot" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.4d + y: -3.15d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "54D9C570A2A234F9" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "58CD8239F2D1B24E" + table_id: 5709524483953410607L + type: "random" + }] + shape: "heart" + tasks: [{ + id: "2A2C3C9E9614BE4D" + item: "inventorypets:holiday_gift" + type: "item" + }] + title: "&6A present? For me?&r &oWOW" + x: 2.4499999999999997d + y: -1.4d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "181FD35D3DED58DF" + rewards: [{ + exclude_from_claim_all: true + id: "6974EA3DFAC8ED48" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "19825BEE4265026F" + item: { + Count: 1 + id: "inventorypets:pet_apple" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.999999999999998d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "751C3C559C4EB6C3" + rewards: [{ + exclude_from_claim_all: true + id: "0AD5703D87752A16" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3B56E774E51D3954" + item: { + Count: 1 + id: "inventorypets:pet_quiver" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.299999999999999d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "5FAAA070ACC3F9ED" + rewards: [{ + exclude_from_claim_all: true + id: "4265352574A635C2" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "592C5D6FE779386A" + item: { + Count: 1 + id: "inventorypets:pet_sponge" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.999999999999998d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "5E7A9BAC9FB6BC88" + rewards: [{ + exclude_from_claim_all: true + id: "152E36772866B4E6" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0B1E736193741413" + item: { + Count: 1 + id: "inventorypets:pet_cobblestone" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.699999999999999d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "4648E118B51864DF" + rewards: [{ + exclude_from_claim_all: true + id: "32EB762B8C8DF6A1" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "3C09A4008BBB719A" + item: { + Count: 1 + id: "inventorypets:pet_dirt" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.399999999999999d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "1732649519EBDE24" + rewards: [{ + exclude_from_claim_all: true + id: "4D811220862DCD06" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "51F2002FDCD1F657" + item: { + Count: 1 + id: "inventorypets:pet_juggernaut" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.8999999999999995d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "58993574446DE6A8" + rewards: [{ + exclude_from_claim_all: true + id: "4FFD87328D573781" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "122CF19BE65A22FF" + item: { + Count: 1 + id: "inventorypets:pet_illuminati" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.6d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "594FE50D7AD36D4D" + rewards: [{ + exclude_from_claim_all: true + id: "56D832B3CADB7B53" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "53633CBBED17BD03" + item: { + Count: 1 + id: "inventorypets:pet_siamese" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.299999999999999d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "4A69028E8AB28F20" + rewards: [{ + exclude_from_claim_all: true + id: "66339CE40A936585" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "564385E8EF2F998A" + item: { + Count: 1 + id: "inventorypets:pet_qcm" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.6d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "57A56DC0538B8C5D" + rewards: [{ + exclude_from_claim_all: true + id: "06FAC27CDDE0A031" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "38536C8CC2B64DF9" + item: { + Count: 1 + id: "inventorypets:pet_blaze" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.5d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "4B3447ED59419D0F" + rewards: [{ + exclude_from_claim_all: true + id: "5367915CABE2D975" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0DD1BD11C35A2C4A" + item: { + Count: 1 + id: "inventorypets:pet_snow_golem" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.5d + y: -5.949999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "5189B272ABB1C7AC" + rewards: [{ + exclude_from_claim_all: true + id: "6C4EE639DCBDF0EE" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "74683BA34F67EE5B" + item: { + Count: 1 + id: "inventorypets:pet_ender_chest" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.7000000000000002d + y: -4.549999999999999d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "3D3BD659FCD11598" + rewards: [{ + exclude_from_claim_all: true + id: "4A1868E39C3D9585" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "2E6D5238713E90B6" + item: { + Count: 1 + id: "inventorypets:pet_banana" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.4d + y: -3.85d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "3EE08F74E22B08D6" + rewards: [{ + exclude_from_claim_all: true + id: "7D796587CFB12009" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "5895A59E0442914D" + item: { + Count: 1 + id: "inventorypets:pet_creeper" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.8000000000000003d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "103D3A2F95E3884F" + rewards: [{ + exclude_from_claim_all: true + id: "5F76B4A1333E3762" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "4FC8795CA3994348" + item: { + Count: 1 + id: "inventorypets:pet_enderman" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.1d + y: -6.6499999999999995d + } + { + dependencies: ["3BD605B4B1C89B92"] + hide_dependency_lines: true + id: "7841C1AB33196435" + rewards: [{ + exclude_from_claim_all: true + id: "280F8AAD1E7B5BBD" + table_id: 381865782302985986L + type: "random" + }] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "0E195B0D0E50957E" + item: { + Count: 1 + id: "inventorypets:pet_sheep" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.8000000000000003d + y: -5.249999999999999d + } + { + dependencies: ["4403AD20655CEF38"] + id: "10D51ADFCF018102" + optional: true + rewards: [{ + exclude_from_claim_all: true + id: "1403750B5B13851D" + table_id: 7708913941106525583L + type: "random" + }] + subtitle: "*Requires the entire chapter complete*" + tasks: [{ + id: "17DC41EB0E90EF9C" + title: "Collect EVERY Pet" + type: "checkmark" + }] + x: 2.5d + y: -5.5d + } + ] + title: "&6&oThe Pet Master" +} diff --git a/minecraft/config/ftbquests/quests/chapters/the_twilight_forest.snbt b/minecraft/config/ftbquests/quests/chapters/the_twilight_forest.snbt new file mode 100644 index 0000000..3969c47 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/the_twilight_forest.snbt @@ -0,0 +1,1616 @@ +{ + autofocus_id: "4D7941CA6D1FDC14" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "the_twilight_forest" + group: "09A82B0D5D5E7906" + icon: "twilightforest:twilight_portal_miniature_structure" + id: "2ED5FF4A7C518741" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 0.1071428571428541d + y: -0.8392857142857117d + } + { + height: 1.0d + image: "kubejs:textures/item/tfore.png" + rotation: 0.0d + width: 7.0d + x: 3.4285714285714306d + y: -1.0892857142857189d + } + { + height: 4.0d + image: "kubejs:textures/item/lich.png" + rotation: 0.0d + width: 2.2d + x: -6.178571428571431d + y: 1.2321428571428577d + } + { + height: 2.0d + image: "kubejs:textures/item/ur-gh.png" + rotation: 0.0d + width: 2.0d + x: 10.250000000000007d + y: 8.589285714285712d + } + { + height: 3.5d + image: "kubejs:textures/item/minoshroom.png" + rotation: 0.0d + width: 2.5d + x: -8.035714285714292d + y: 7.839285714285712d + } + ] + order_index: 4 + quest_links: [ ] + quests: [ + { + description: [ + "The Twilight Forest realm is an endless world like any other Minecraft dimension, except this dimension is densely forested. It has more of an enchanted, fairy tale, and mythological theme and feel than the Overworld. The skies are perpetually dim and always twilight, giving a darker, somewhat gloomy cast to the world below. An over-story of larger Trees further shades most of the world below, creating a canopy covering most of the world (so thick that you can actually walk on it most places)." + "" + "The canopy is pierced only occasionally by massive trees that rise to the ceiling of the world. The terrain is flatter, or at least less mountainous than regular Minecraft, but you will occasionally encounter Hills, sometimes rising far above the canopy level. These hills are hollow too, containing Caves filled with valuable ores, treasure and dangerous monsters." + "" + "You may also run across many different dungeons, bosses, structures, trees, and a numerous amount of unique items throughout your travels through the Twilight Forest realm. There is much to explore." + ] + icon: "twilightforest:twilight_portal_miniature_structure" + id: "4D7941CA6D1FDC14" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "739EC74A21E176E6" + table_id: 1235506154212082407L + type: "random" + }] + shape: "rsquare" + tasks: [{ + dimension: "twilightforest:twilight_forest" + id: "70DC82E1C36AE774" + type: "dimension" + }] + title: "Visit the &9Twilight Forest" + x: -0.5d + y: -0.5d + } + { + dependencies: ["4D7941CA6D1FDC14"] + id: "1D39595A7EDFB122" + rewards: [{ + exclude_from_claim_all: true + id: "71C02E83B94F56A8" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "46A6CC833404C39D" + item: "twilightforest:raven_feather" + type: "item" + }] + x: -1.5d + y: 1.0d + } + { + dependencies: ["4D7941CA6D1FDC14"] + id: "40335B19A9A4ABC6" + rewards: [{ + exclude_from_claim_all: true + id: "7201583E0DF21976" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2F61B96723B74A53" + item: "twilightforest:torchberries" + type: "item" + }] + x: 0.5d + y: 1.0d + } + { + dependencies: [ + "40335B19A9A4ABC6" + "1D39595A7EDFB122" + ] + id: "68033BC44B8D5F98" + rewards: [{ + exclude_from_claim_all: true + id: "5203B1DD613EC703" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "22F69BC2B31EF6D8" + item: "twilightforest:magic_map_focus" + type: "item" + }] + x: -0.5d + y: 2.0d + } + { + dependencies: ["68033BC44B8D5F98"] + icon: "twilightforest:magic_map" + id: "66F31134DFC73B0C" + rewards: [{ + exclude_from_claim_all: true + id: "07AD860228BA6EF9" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0360A6E754A6B10E" + item: { + Count: 1 + id: "twilightforest:magic_map" + tag: { } + } + type: "item" + }] + title: "The Magic Map" + x: -0.9285714285714306d + y: 3.125d + } + { + dependencies: ["66F31134DFC73B0C"] + icon: "twilightforest:naga_trophy" + id: "4E70E59453A4EB80" + rewards: [{ + exclude_from_claim_all: true + id: "55D070485652752E" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + entity: "twilightforest:naga" + icon: "twilightforest:naga_spawn_egg" + id: "0AB1B14AAA8331E0" + type: "kill" + value: 1L + }] + x: -2.5d + y: 3.5d + } + { + dependencies: ["4E70E59453A4EB80"] + icon: "twilightforest:lich_trophy" + id: "73BE906D919617A4" + rewards: [{ + exclude_from_claim_all: true + id: "75B4F56DEC90205E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + entity: "twilightforest:lich" + icon: "twilightforest:lich_spawn_egg" + id: "202582FE2821D487" + type: "kill" + value: 1L + }] + x: -5.0d + y: 4.5d + } + { + dependencies: ["73BE906D919617A4"] + icon: "twilightforest:minoshroom_trophy" + id: "2862009B6A3627C7" + rewards: [{ + exclude_from_claim_all: true + id: "66254952F5FF33A7" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + entity: "twilightforest:minoshroom" + icon: "twilightforest:minoshroom_spawn_egg" + id: "0EA13365C7F8B7A4" + type: "kill" + value: 1L + }] + x: -4.0d + y: 6.0d + } + { + dependencies: ["2862009B6A3627C7"] + icon: "twilightforest:hydra_trophy" + id: "6903BF83ACBB676B" + rewards: [{ + exclude_from_claim_all: true + id: "6EED2885FA05DCAE" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + entity: "twilightforest:hydra" + icon: "twilightforest:hydra_spawn_egg" + id: "715028024E2B9147" + type: "kill" + value: 1L + }] + x: -2.0d + y: 6.5d + } + { + dependencies: ["6903BF83ACBB676B"] + icon: "twilightforest:knight_phantom_trophy" + id: "728CC3FF9A23D30F" + rewards: [{ + exclude_from_claim_all: true + id: "318650A08EBF55FC" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + entity: "twilightforest:knight_phantom" + icon: "twilightforest:knight_phantom_spawn_egg" + id: "1A931440F8030F01" + type: "kill" + value: 1L + }] + x: 2.0d + y: 7.0d + } + { + dependencies: ["728CC3FF9A23D30F"] + icon: "twilightforest:ur_ghast_trophy" + id: "7E4E3392CAD99C79" + rewards: [{ + exclude_from_claim_all: true + id: "0B1D55164CA70141" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + entity: "twilightforest:ur_ghast" + icon: "twilightforest:ur_ghast_spawn_egg" + id: "4B7C14437571693A" + type: "kill" + value: 1L + }] + x: 4.0d + y: 4.5d + } + { + dependencies: ["7E4E3392CAD99C79"] + icon: "twilightforest:alpha_yeti_trophy" + id: "589D26882C96E3ED" + rewards: [{ + exclude_from_claim_all: true + id: "5E7125389A88FFB4" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + entity: "twilightforest:alpha_yeti" + icon: "twilightforest:alpha_yeti_spawn_egg" + id: "04986A6416F41720" + type: "kill" + value: 1L + }] + x: 6.5d + y: 4.0d + } + { + dependencies: ["589D26882C96E3ED"] + icon: "twilightforest:snow_queen_trophy" + id: "3232B88DD64C9534" + rewards: [{ + exclude_from_claim_all: true + id: "1F31C901D381FAD7" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + entity: "twilightforest:snow_queen" + icon: "twilightforest:snow_queen_spawn_egg" + id: "65E8E99DD14712D6" + type: "kill" + value: 1L + }] + x: 7.0d + y: 6.5d + } + { + dependencies: ["3232B88DD64C9534"] + icon: "twilightforest:quest_ram_trophy" + id: "344941089BB146FC" + rewards: [{ + exclude_from_claim_all: true + id: "7A244F6040D8C77F" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + entity: "twilightforest:quest_ram" + icon: "twilightforest:quest_ram_spawn_egg" + id: "7DDA31D01509E7DD" + type: "kill" + value: 1L + }] + x: 5.5d + y: 7.5d + } + { + dependencies: ["4E70E59453A4EB80"] + id: "01A3CFA02787B924" + rewards: [{ + exclude_from_claim_all: true + id: "168463D16440202E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6D60841F3F9C32BD" + item: "twilightforest:naga_scale" + type: "item" + }] + x: -3.5d + y: 3.0d + } + { + dependencies: ["01A3CFA02787B924"] + id: "4D8F2FC43E695909" + rewards: [{ + exclude_from_claim_all: true + id: "69605DEBB286D981" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "73A78E237B199131" + item: { + Count: 1 + id: "twilightforest:naga_chestplate" + tag: { + Damage: 0 + Enchantments: [{ + id: "minecraft:fire_protection" + lvl: 3s + }] + } + } + type: "item" + }] + x: -3.0d + y: 1.5d + } + { + dependencies: ["01A3CFA02787B924"] + id: "1D2D23E270829133" + rewards: [{ + exclude_from_claim_all: true + id: "1BDB89FAFF608476" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "23E57B731866CF7A" + item: { + Count: 1 + id: "twilightforest:naga_leggings" + tag: { + Damage: 0 + Enchantments: [{ + id: "minecraft:protection" + lvl: 3s + }] + } + } + type: "item" + }] + x: -4.5d + y: 2.0d + } + { + dependencies: ["73BE906D919617A4"] + id: "7F9BC61AC62DF669" + rewards: [{ + exclude_from_claim_all: true + id: "5020A7C572AC646C" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "053BDBA3BB04F2B9" + item: { + Count: 1 + id: "twilightforest:twilight_scepter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.5d + y: 4.5d + } + { + dependencies: ["7F9BC61AC62DF669"] + id: "7F8BDB36C7601293" + rewards: [{ + exclude_from_claim_all: true + id: "663B0206776919AE" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0AE779CCA62DCF04" + item: { + Count: 1 + id: "twilightforest:lifedrain_scepter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -8.0d + y: 4.5d + } + { + dependencies: ["7F8BDB36C7601293"] + id: "5A39A0BFE41D5504" + rewards: [{ + exclude_from_claim_all: true + id: "7D0EDE8BE226B9D5" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "29A01203337A10DF" + item: { + Count: 1 + id: "twilightforest:fortification_scepter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.142857142857139d + y: 3.4107142857142847d + } + { + dependencies: ["7F8BDB36C7601293"] + id: "1BABA585A112FEDC" + rewards: [{ + exclude_from_claim_all: true + id: "4AA979B4EA5E110B" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "0C420AD1C85FF8EB" + item: { + Count: 1 + id: "twilightforest:zombie_scepter" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.25d + y: 5.553571428571431d + } + { + dependencies: ["2862009B6A3627C7"] + id: "1F2EF7D085D343A7" + rewards: [{ + exclude_from_claim_all: true + id: "2251B5FD00B58E26" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "516A191C291E36EB" + item: "twilightforest:meef_stroganoff" + type: "item" + }] + x: -3.0d + y: 5.0d + } + { + dependencies: ["2862009B6A3627C7"] + id: "0420E1C56CF9FF59" + rewards: [{ + exclude_from_claim_all: true + id: "350927D17D98E8A9" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "30D3FCF626C3617F" + item: { + Count: 1 + id: "twilightforest:mazebreaker_pickaxe" + tag: { + Damage: 0 + Enchantments: [ + { + id: "minecraft:efficiency" + lvl: 4s + } + { + id: "minecraft:unbreaking" + lvl: 3s + } + { + id: "minecraft:fortune" + lvl: 2s + } + ] + } + } + type: "item" + }] + x: -5.0d + y: 7.0d + } + { + dependencies: ["0420E1C56CF9FF59"] + id: "3CF22D6A3BCE809A" + rewards: [{ + exclude_from_claim_all: true + id: "4DC16679FDC8A9F0" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "0969F471997122A5" + item: { + Count: 1 + id: "twilightforest:diamond_minotaur_axe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.357142857142861d + y: 8.125d + } + { + dependencies: ["0420E1C56CF9FF59"] + id: "100AB610D9817B34" + rewards: [{ + exclude_from_claim_all: true + id: "49A4B94E8771F298" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "6E51E38C6FD57CE6" + item: { + Count: 1 + id: "twilightforest:gold_minotaur_axe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.357142857142861d + y: 7.625000000000007d + } + { + dependencies: ["6903BF83ACBB676B"] + id: "3225E2204A9CB2D4" + rewards: [{ + exclude_from_claim_all: true + id: "24BB65F97EED18D0" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "517CDFDD85A794A3" + item: "twilightforest:fiery_blood" + type: "item" + }] + x: -1.5357142857142847d + y: 5.232142857142861d + } + { + dependencies: ["3225E2204A9CB2D4"] + id: "7F6E21582FD78957" + rewards: [{ + exclude_from_claim_all: true + id: "1E58C39C8FC56FCF" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "4A9B4B133EF71257" + item: { + Count: 1 + id: "twilightforest:fiery_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.3928571428571459d + y: 5.767857142857146d + } + { + dependencies: ["3225E2204A9CB2D4"] + id: "0E76D007D59C899E" + rewards: [{ + exclude_from_claim_all: true + id: "59BCD78EC4216BD5" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "100E331D99F135F5" + item: { + Count: 1 + id: "twilightforest:fiery_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.5d + y: 4.5d + } + { + dependencies: ["6903BF83ACBB676B"] + id: "3ADA7C53428A336F" + rewards: [{ + exclude_from_claim_all: true + id: "17E1F76788E01F93" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "721299E42E60E52F" + item: "twilightforest:fiery_ingot" + type: "item" + }] + x: -1.607142857142854d + y: 7.625d + } + { + dependencies: ["3ADA7C53428A336F"] + id: "436AF350DCE3EFF3" + rewards: [{ + exclude_from_claim_all: true + id: "0EC38AF44371BA69" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "36A44F2428B1615A" + item: { + Count: 1 + id: "twilightforest:fiery_helmet" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.5d + y: 8.5d + } + { + dependencies: ["3ADA7C53428A336F"] + id: "34D0E974E9C419D7" + rewards: [{ + exclude_from_claim_all: true + id: "3D5F4A78E6FCEC96" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "537B40BDD3A9AFBF" + item: { + Count: 1 + id: "twilightforest:fiery_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.3214285714285694d + y: 7.732142857142854d + } + { + dependencies: ["3ADA7C53428A336F"] + id: "4AA2835F633C257E" + rewards: [{ + exclude_from_claim_all: true + id: "2CEF9BF1C26C69DE" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "6786C3113A654F20" + item: { + Count: 1 + id: "twilightforest:fiery_leggings" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.607142857142854d + y: 9.05357142857143d + } + { + dependencies: ["3ADA7C53428A336F"] + id: "58F71C553D23F411" + rewards: [{ + exclude_from_claim_all: true + id: "2E28A614DA4E516E" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "64EF9E2DDE3F0977" + item: { + Count: 1 + id: "twilightforest:fiery_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -0.6071428571428612d + y: 8.767857142857139d + } + { + dependencies: ["6903BF83ACBB676B"] + id: "086E36E3822A642B" + rewards: [{ + exclude_from_claim_all: true + id: "7A63EF656E4D2065" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "089EDFAF2EBE6D3F" + item: "twilightforest:hydra_chop" + type: "item" + }] + x: -3.035714285714299d + y: 7.160714285714292d + } + { + dependencies: ["728CC3FF9A23D30F"] + id: "49C17844BC8B2964" + rewards: [{ + exclude_from_claim_all: true + id: "4DCB2553D7848739" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "3F2A403A74A7F0BC" + item: "twilightforest:knightmetal_ingot" + type: "item" + }] + x: 1.5d + y: 6.0d + } + { + dependencies: ["728CC3FF9A23D30F"] + id: "7D6C2783879A637E" + rewards: [{ + exclude_from_claim_all: true + id: "0FA5CC2E1E6C2F7B" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "5D8D4B8752416010" + item: { + Count: 1 + id: "twilightforest:phantom_helmet" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.1785714285714093d + y: 7.875d + } + { + dependencies: ["728CC3FF9A23D30F"] + id: "2DD1D2ABD218B037" + rewards: [{ + exclude_from_claim_all: true + id: "730ADD491ADD9966" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "138E9ED075AEE03D" + item: { + Count: 1 + id: "twilightforest:phantom_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.321428571428555d + y: 8.232142857142854d + } + { + dependencies: ["25934830F432ED0D"] + id: "1A3DC7E76630A4CB" + rewards: [{ + exclude_from_claim_all: true + id: "778F67AF28AEE114" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "532EBC800F09EDBE" + item: { + Count: 1 + id: "twilightforest:knightmetal_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.8571428571428328d + y: 3.625d + } + { + dependencies: ["1A3DC7E76630A4CB"] + id: "3F97566BDED714A4" + rewards: [{ + exclude_from_claim_all: true + id: "61FF15A84C324504" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "235DF0899B8C29EE" + item: { + Count: 1 + id: "twilightforest:knightmetal_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.2499999999999858d + y: 2.625d + } + { + dependencies: ["3F97566BDED714A4"] + id: "61E768A128FBBD98" + rewards: [{ + exclude_from_claim_all: true + id: "56A7C6746097AE33" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "7F3FA25F50F3D2B8" + item: { + Count: 1 + id: "twilightforest:knightmetal_axe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.8928571428571317d + y: 1.767857142857146d + } + { + dependencies: ["49C17844BC8B2964"] + id: "25934830F432ED0D" + rewards: [{ + exclude_from_claim_all: true + id: "66D8DAF778C119D3" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "76775CD12258D544" + item: { + Count: 1 + id: "twilightforest:knightmetal_shield" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.0714285714285552d + y: 4.6964285714285765d + } + { + dependencies: ["49C17844BC8B2964"] + id: "6FDBC1615C039BB9" + rewards: [{ + exclude_from_claim_all: true + id: "6DBB7EADA2DDBAB0" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "0C952D286494B27D" + item: { + Count: 1 + id: "twilightforest:knightmetal_helmet" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.249999999999986d + y: 4.6964285714285765d + } + { + dependencies: ["6FDBC1615C039BB9"] + id: "6CA4D7585CBA24F6" + rewards: [{ + exclude_from_claim_all: true + id: "10867CCCBE4FD47B" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "02DA31DEFD92E8BC" + item: { + Count: 1 + id: "twilightforest:knightmetal_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.3928571428571246d + y: 3.625d + } + { + dependencies: ["6CA4D7585CBA24F6"] + id: "4B42FE2988EC5F80" + rewards: [{ + exclude_from_claim_all: true + id: "6CC4760CAA046EF0" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "65E8D336807573CA" + item: { + Count: 1 + id: "twilightforest:knightmetal_leggings" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.749999999999986d + y: 2.6964285714285694d + } + { + dependencies: ["4B42FE2988EC5F80"] + id: "5D4A72B6E1DBD873" + rewards: [{ + exclude_from_claim_all: true + id: "62444918B1165AB5" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "7D499EC0857CED71" + item: { + Count: 1 + id: "twilightforest:knightmetal_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.3928571428571317d + y: 1.875d + } + { + dependencies: ["7E4E3392CAD99C79"] + id: "0DF45E4CAFDF7E47" + rewards: [{ + exclude_from_claim_all: true + id: "249241F9B09418AD" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "1B73E23800CDFC7D" + item: "twilightforest:experiment_115" + type: "item" + }] + x: 4.0d + y: 3.5d + } + { + dependencies: ["5398B6EDFB976DD0"] + id: "75A0651EFA643023" + rewards: [{ + exclude_from_claim_all: true + id: "1A82A2972E6D7954" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "444BE5A88CAC5295" + item: "twilightforest:fiery_tears" + type: "item" + }] + x: 3.5d + y: 7.0d + } + { + dependencies: ["7E4E3392CAD99C79"] + id: "098438A24614CCB4" + rewards: [{ + exclude_from_claim_all: true + id: "28F0362AFAF0BD65" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "77BA0F6F7BA7A2B9" + item: "twilightforest:tower_key" + type: "item" + }] + x: 4.5d + y: 5.5d + } + { + dependencies: ["098438A24614CCB4"] + id: "5398B6EDFB976DD0" + rewards: [{ + exclude_from_claim_all: true + id: "64F8330FCFE47F4D" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2810131198BDD39A" + item: "twilightforest:vanishing_block" + type: "item" + }] + x: 4.392857142857125d + y: 6.482142857142854d + } + { + dependencies: ["589D26882C96E3ED"] + id: "3A18EF8901E1D8FE" + rewards: [{ + exclude_from_claim_all: true + id: "37EFD98744C9642C" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "1272739EEAC2C028" + item: "twilightforest:alpha_yeti_fur" + type: "item" + }] + x: 5.499999999999979d + y: 3.3392857142857153d + } + { + dependencies: ["3A18EF8901E1D8FE"] + id: "4C1B1D98E7A214B7" + rewards: [{ + exclude_from_claim_all: true + id: "6B0B3BDE95A69315" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "319C06C130F5C2F9" + item: { + Count: 1 + id: "twilightforest:yeti_helmet" + tag: { + Damage: 0 + Enchantments: [{ + id: "minecraft:protection" + lvl: 2s + }] + } + } + type: "item" + }] + x: 5.178571428571416d + y: 2.267857142857139d + } + { + dependencies: ["4C1B1D98E7A214B7"] + id: "56E6D14BA6139E70" + rewards: [{ + exclude_from_claim_all: true + id: "05E610A9B76B1E1F" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "089F9E25B89E81B8" + item: { + Count: 1 + id: "twilightforest:yeti_chestplate" + tag: { + Damage: 0 + Enchantments: [{ + id: "minecraft:protection" + lvl: 2s + }] + } + } + type: "item" + }] + x: 5.178571428571416d + y: 1.1964285714285765d + } + { + dependencies: ["56E6D14BA6139E70"] + id: "15D24CE1A55257C7" + rewards: [{ + exclude_from_claim_all: true + id: "33498FB1F6BE00C2" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "69D38166AD73C486" + item: { + Count: 1 + id: "twilightforest:yeti_leggings" + tag: { + Damage: 0 + Enchantments: [{ + id: "minecraft:protection" + lvl: 2s + }] + } + } + type: "item" + }] + x: 4.35714285714284d + y: 0.41071428571428825d + } + { + dependencies: ["15D24CE1A55257C7"] + id: "1C598E496AAFF2B0" + rewards: [{ + exclude_from_claim_all: true + id: "52662AD383A86859" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "4F9B655280840201" + item: { + Count: 1 + id: "twilightforest:yeti_boots" + tag: { + Damage: 0 + Enchantments: [ + { + id: "minecraft:protection" + lvl: 2s + } + { + id: "minecraft:feather_falling" + lvl: 4s + } + ] + } + } + type: "item" + }] + x: 3.2857142857142634d + y: -0.01785714285714235d + } + { + dependencies: ["589D26882C96E3ED"] + id: "726ABDA427CE9603" + rewards: [{ + exclude_from_claim_all: true + id: "5C6F21B5D9D202F0" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "03C72A2F9DAD2DA2" + item: "twilightforest:ice_bomb" + type: "item" + }] + x: 6.499999999999986d + y: 2.5892857142857153d + } + { + dependencies: ["589D26882C96E3ED"] + id: "21B42FDABFAFF6AF" + rewards: [{ + exclude_from_claim_all: true + id: "45C978455FBFB7C9" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "1A31CC39F9D725BC" + item: "twilightforest:arctic_fur" + type: "item" + }] + x: 7.642857142857125d + y: 3.3392857142857153d + } + { + dependencies: ["21B42FDABFAFF6AF"] + id: "190ED62E60208DFE" + rewards: [{ + exclude_from_claim_all: true + id: "2DC4C5F3BD6D62D6" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "4E13C803C415B90B" + item: { + Count: 1 + id: "twilightforest:arctic_helmet" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.071428571428555d + y: 2.232142857142861d + } + { + dependencies: ["190ED62E60208DFE"] + id: "54ACBBDA7D29B42A" + rewards: [{ + exclude_from_claim_all: true + id: "534FEA35853D0CE5" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "27FDFCAF739F5D5B" + item: { + Count: 1 + id: "twilightforest:arctic_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.857142857142847d + y: 1.125d + } + { + dependencies: ["54ACBBDA7D29B42A"] + id: "6F715741679FD001" + rewards: [{ + exclude_from_claim_all: true + id: "270D92D88A5C96C7" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "732E620BDEA4851D" + item: { + Count: 1 + id: "twilightforest:arctic_leggings" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.178571428571416d + y: 0.3035714285714306d + } + { + dependencies: ["6F715741679FD001"] + id: "4B7737E8CB0014D5" + rewards: [{ + exclude_from_claim_all: true + id: "2DBE90DABB6570B7" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "463E23B4C6A6398B" + item: { + Count: 1 + id: "twilightforest:arctic_boots" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.0d + y: -0.0892857142857153d + } + { + dependencies: ["3232B88DD64C9534"] + id: "20AB6E2ED37F0B3F" + rewards: [{ + exclude_from_claim_all: true + id: "6B076E6F66525BB2" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "16AC7E3B81A0D394" + item: { + Count: 1 + id: "twilightforest:seeker_bow" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.749999999999979d + y: 5.553571428571431d + } + { + dependencies: ["3232B88DD64C9534"] + id: "01E8FDE21EAE0F87" + rewards: [{ + exclude_from_claim_all: true + id: "6233EF9C7F148042" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "0B13F12656B3394F" + item: { + Count: 1 + id: "twilightforest:triple_bow" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.0d + y: 6.0d + } + { + dependencies: ["75A0651EFA643023"] + id: "696CD62637078076" + rewards: [{ + exclude_from_claim_all: true + id: "425104F7314B82F2" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "20BB8E6223FB6E86" + item: "twilightforest:carminite" + type: "item" + }] + x: 3.5d + y: 8.0d + } + { + dependencies: ["344941089BB146FC"] + id: "50318D865286765F" + rewards: [{ + exclude_from_claim_all: true + id: "6038360FCA480474" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "447D09489F3811A8" + item: { + Count: 1 + id: "twilightforest:lamp_of_cinders" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 4.785714285714263d + y: 8.69642857142857d + } + { + dependencies: ["50318D865286765F"] + id: "24D759D9E93816B6" + rewards: [{ + exclude_from_claim_all: true + id: "78F9973016554E08" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "3B36BC8BCA89B6F8" + item: "twilightforest:transformation_powder" + type: "item" + }] + x: 5.999999999999972d + y: 9.517857142857139d + } + { + dependencies: ["24D759D9E93816B6"] + id: "2AC26E35E1874C5F" + rewards: [{ + exclude_from_claim_all: true + id: "3E79197D6D106887" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "510CAD500B26D7AD" + item: { + Count: 1 + id: "twilightforest:crumble_horn" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.357142857142826d + y: 9.19642857142857d + } + { + dependencies: ["2AC26E35E1874C5F"] + id: "5A4312842D783A27" + rewards: [{ + exclude_from_claim_all: true + id: "56B215DA10D1FFAA" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "2FBFBAFF64178163" + item: { + Count: 1 + id: "twilightforest:peacock_feather_fan" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 8.60714285714284d + y: 8.410714285714285d + } + { + dependencies: ["5A4312842D783A27"] + id: "04349C90D4C9D879" + rewards: [{ + exclude_from_claim_all: true + id: "6EEE67F2EFC46F48" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "51CF199DE156AA97" + item: { + Count: 1 + id: "twilightforest:moonworm_queen" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.321428571428548d + y: 7.339285714285708d + } + { + dependencies: ["04349C90D4C9D879"] + id: "680909E7F1B2184C" + rewards: [{ + exclude_from_claim_all: true + id: "6C7859E3A1BDF117" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "7022174B7A658B4D" + item: "twilightforest:magic_beans" + type: "item" + }] + x: 9.571428571428555d + y: 6.0535714285714235d + } + { + dependencies: ["680909E7F1B2184C"] + id: "6330234912B543EB" + rewards: [{ + exclude_from_claim_all: true + id: "4E4946FFD80D3089" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "57D2342BB162990A" + item: { + Count: 1 + id: "twilightforest:giant_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.71428571428568d + y: 4.625d + } + { + dependencies: ["6330234912B543EB"] + id: "0FA86CAD486B45DE" + rewards: [{ + exclude_from_claim_all: true + id: "7BD480D41A8C83FD" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "5DC8A627E88B53DB" + item: { + Count: 1 + id: "twilightforest:giant_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 9.821428571428541d + y: 3.3035714285714377d + } + { + dependencies: ["0FA86CAD486B45DE"] + id: "5B9E8CDA7A7FD29E" + rewards: [{ + exclude_from_claim_all: true + id: "01EAD376C96F3C8E" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "4077F722014B44DA" + item: "twilightforest:trophy_pedestal" + type: "item" + }] + x: 9.785714285714256d + y: 2.0892857142857224d + } + ] + title: "&3&oThe Twilight Forest" +} diff --git a/minecraft/config/ftbquests/quests/chapters/the_undergarden.snbt b/minecraft/config/ftbquests/quests/chapters/the_undergarden.snbt new file mode 100644 index 0000000..ecda491 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/the_undergarden.snbt @@ -0,0 +1,1319 @@ +{ + autofocus_id: "22CB282DCBCEB69E" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "the_undergarden" + group: "09A82B0D5D5E7906" + icon: "undergarden:catalyst" + id: "25AB2217A80C31F4" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/undgard.png" + rotation: 0.0d + width: 10.0d + x: -0.5d + y: -3.5d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 0.0892857142857153d + y: -2.482142857142854d + } + { + height: 5.5d + image: "kubejs:textures/item/mastic.png" + rotation: 0.0d + width: 4.0d + x: 10.035714285714285d + y: 2.2857142857142847d + } + { + height: 4.0d + image: "kubejs:textures/item/stborn.png" + rotation: 0.0d + width: 1.5d + x: -7.0d + y: 4.5d + } + { + click: "https://www.youtube.com/watch?v=qWsCVcNR22I" + height: 1.0d + hover: ["Need a Tutorial?"] + image: "undergarden:item/catalyst" + rotation: 0.0d + width: 1.0d + x: 4.5d + y: -3.5d + } + ] + order_index: 5 + quest_links: [ ] + quests: [ + { + description: ["The Undergarden is a dark, subterranean world located deep below the bedrock of the Overworld. The flora here has adapted to their conditions and can grow anywhere, independent of light. Strange creatures call these dark lands home, and are plagued by the invasive Rotspawn, monsters originating from a chaotic, mysterious realm."] + id: "22CB282DCBCEB69E" + min_width: 300 + rewards: [{ + exclude_from_claim_all: true + id: "52C4B23E0FE380F5" + table_id: 1235506154212082407L + type: "random" + }] + shape: "rsquare" + tasks: [{ + dimension: "undergarden:undergarden" + id: "2279BFD21422EC36" + title: "Visit Dimension: &2The Undergarden" + type: "dimension" + }] + x: -0.5d + y: -2.0d + } + { + dependencies: ["22CB282DCBCEB69E"] + id: "4DCC1256167B4A02" + rewards: [{ + exclude_from_claim_all: true + id: "5591A55A4FD0D086" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "A tough, slippery metal, defined by its slowing capabilities" + tasks: [{ + count: 12L + id: "05BA1CD5E0265BBA" + item: "undergarden:froststeel_ingot" + type: "item" + }] + title: "Froststeel Ingot" + x: -4.5d + y: -1.5d + } + { + dependencies: ["22CB282DCBCEB69E"] + id: "38E7968EE55F1CBA" + rewards: [{ + exclude_from_claim_all: true + id: "5518E6EB2808A29B" + table_id: 1235506154212082407L + type: "random" + }] + subtitle: "An odd metal crafted from the fossils of extinct species" + tasks: [{ + count: 12L + id: "0E962555454654DF" + item: "undergarden:cloggrum_ingot" + type: "item" + }] + title: "Cloggrum Ingot" + x: -5.5d + y: 0.5d + } + { + dependencies: ["38E7968EE55F1CBA"] + id: "2719884CCC39D86A" + rewards: [{ + exclude_from_claim_all: true + id: "4047DC93CE868566" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "5B563EB3B24D83AE" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "undergarden:cloggrum_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:cloggrum_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:cloggrum_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:cloggrum_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&aCloggrum Tools" + type: "item" + }] + x: -7.0d + y: 0.0d + } + { + dependencies: ["4DCC1256167B4A02"] + id: "28D846F1A27576D3" + rewards: [{ + exclude_from_claim_all: true + id: "079A7903577CFCB0" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "318908A0B5609520" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "undergarden:froststeel_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:froststeel_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:froststeel_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:froststeel_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&bFroststeel Tools" + type: "item" + }] + x: -5.5d + y: -2.5d + } + { + dependencies: ["4DCC1256167B4A02"] + id: "1683730DCB6DA81B" + rewards: [{ + exclude_from_claim_all: true + id: "2B346D3EE71EB095" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [ + { + id: "2B05054EFEA1CCA1" + item: { + Count: 1 + id: "undergarden:froststeel_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7C1E2BA6CE95A7F2" + item: { + Count: 1 + id: "undergarden:froststeel_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4735D8CD268A2F3D" + item: { + Count: 1 + id: "undergarden:froststeel_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "0E6B3E8684F86501" + item: { + Count: 1 + id: "undergarden:froststeel_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&bFroststeel Armor" + x: -5.5d + y: -0.5d + } + { + dependencies: ["38E7968EE55F1CBA"] + id: "566794569F565F0F" + rewards: [{ + exclude_from_claim_all: true + id: "460A049659A2B9FB" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [ + { + id: "528FA6DC40336E1B" + item: { + Count: 1 + id: "undergarden:cloggrum_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "59C0DC6CA3BA0B15" + item: { + Count: 1 + id: "undergarden:cloggrum_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "450FE4D5C87F12CB" + item: { + Count: 1 + id: "undergarden:cloggrum_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7127972FB3B26CB9" + item: { + Count: 1 + id: "undergarden:cloggrum_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&aCloggrum Armor" + x: -4.642857142857146d + y: 1.892857142857146d + } + { + dependencies: ["05654EDE65DA6992"] + id: "47522EEC2217553B" + rewards: [{ + exclude_from_claim_all: true + id: "24C6025995170401" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "A metal said to have come from the Otherside" + tasks: [{ + count: 12L + id: "634E615EED22C3CD" + item: "undergarden:utherium_crystal" + type: "item" + }] + title: "Utherium Crystal" + x: -4.0d + y: 3.0d + } + { + dependencies: ["47522EEC2217553B"] + id: "2B550F8B05657F3F" + rewards: [{ + exclude_from_claim_all: true + id: "188E8E894A50FB4C" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "7DFE5ADE92CBBB85" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "undergarden:utherium_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:utherium_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:utherium_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:utherium_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "&cUtherium Tools" + type: "item" + }] + x: -4.8214285714285765d + y: 4.0714285714285765d + } + { + dependencies: ["22CB282DCBCEB69E"] + id: "40D83771AC679627" + rewards: [{ + exclude_from_claim_all: true + id: "43576F66419D3268" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "A soft, lustrous metal used for trading with Stoneborn" + tasks: [{ + id: "1BD76589CF4F8665" + item: "undergarden:regalium_crystal" + type: "item" + }] + x: 6.0d + y: -0.5d + } + { + dependencies: ["40D83771AC679627"] + id: "74350A7A5E4054A6" + rewards: [{ + exclude_from_claim_all: true + id: "0805F1F25BF20273" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 12L + id: "655C3FE8E6042E2C" + item: "undergarden:regalium_block" + type: "item" + }] + x: 7.0d + y: 0.5d + } + { + dependencies: ["22CB282DCBCEB69E"] + id: "244AEAF3766BC263" + rewards: [{ + exclude_from_claim_all: true + id: "5B040AF15F1FE486" + table_id: 6305167096659659419L + type: "random" + }] + subtitle: "A unreliable, yet strong metal, forged from the remains of a Forgotten Guardian" + tasks: [{ + id: "225F0943F4F57BA2" + item: "undergarden:forgotten_ingot" + type: "item" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["244AEAF3766BC263"] + id: "0E9EC02D319CA4F9" + rewards: [{ + exclude_from_claim_all: true + id: "3B0F003FC8EAB2A9" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "3B4DD0A15143E283" + item: { + Count: 1 + id: "undergarden:forgotten_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.0d + y: 0.5d + } + { + dependencies: ["0E9EC02D319CA4F9"] + id: "6DA8E38176240BF9" + rewards: [{ + exclude_from_claim_all: true + id: "424FB48E7C5CFCE9" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "7DAF533CFEE72BA8" + item: { + Count: 1 + id: "undergarden:forgotten_battleaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.0d + y: 1.5d + } + { + dependencies: ["49A216DDB328FBBB"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "737F21E70E5FBE77" + rewards: [{ + exclude_from_claim_all: true + id: "53A5331E52660306" + table_id: 6305167096659659419L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "26109EF8DFC06D3C" + item: "undergarden:bloody_stew" + type: "item" + }] + x: 6.5d + y: 5.0d + } + { + dependencies: ["23A1B82E43BAD28E"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "07D4CA0D8D7E3A04" + rewards: [{ + exclude_from_claim_all: true + id: "56183340910934B9" + table_id: 6305167096659659419L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "2F0C71312B2F90EC" + item: "undergarden:inky_stew" + type: "item" + }] + x: 5.5d + y: 5.0d + } + { + dependencies: ["0E0C0B7E0D181AB7"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "11529DCB56C0B1B8" + rewards: [{ + exclude_from_claim_all: true + id: "3CA3FFDBAB10CF5F" + table_id: 1235506154212082407L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "66DD65B4730D7209" + item: "undergarden:indigo_stew" + type: "item" + }] + x: 4.5d + y: 5.0d + } + { + dependencies: ["33869137677DD0ED"] + hide_dependency_lines: true + hide_until_deps_visible: true + id: "2A315FBE28220A0C" + rewards: [{ + exclude_from_claim_all: true + id: "72CA04864D3EDBFE" + table_id: 1235506154212082407L + type: "random" + }] + shape: "diamond" + tasks: [{ + id: "62312A1171B30011" + item: "undergarden:veiled_stew" + type: "item" + }] + x: 7.5d + y: 5.0d + } + { + dependencies: ["41B18BDA2A85AB8B"] + id: "5F0AB251E58815C1" + rewards: [{ + exclude_from_claim_all: true + id: "234D15703B4F168D" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "38FE40431DFCC606" + item: "undergarden:droopvine_item" + type: "item" + }] + x: 1.5d + y: 1.0d + } + { + dependencies: ["3BF2061B8EEE8FCA"] + id: "42D920B478FF5F5D" + rewards: [{ + exclude_from_claim_all: true + id: "7219F2BCC93AF701" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "52A4C69D7D7006C5" + item: "undergarden:roasted_underbeans" + type: "item" + }] + x: 4.0d + y: 2.5d + } + { + dependencies: ["5D72DD1FE5962442"] + id: "5D77047A4C62530B" + rewards: [{ + exclude_from_claim_all: true + id: "3853A80A9E89FAAB" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "4BA972E2D323C5BA" + item: "undergarden:gloomgourd_pie" + type: "item" + }] + x: 0.5d + y: 4.5d + } + { + dependencies: ["6BDB84E1BDDB47F8"] + id: "09A7653BAB11C109" + rewards: [{ + exclude_from_claim_all: true + id: "42F8B15A3F4B768E" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "203304297DD9163C" + item: "undergarden:dweller_steak" + type: "item" + }] + x: 2.5d + y: 4.0d + } + { + dependencies: ["41B18BDA2A85AB8B"] + id: "496D40C70C74585A" + rewards: [{ + exclude_from_claim_all: true + id: "3E2AA007F6C66EE5" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "47A4679A8E0D8CCF" + item: "undergarden:gloomper_leg" + type: "item" + }] + x: 1.0d + y: 0.0d + } + { + dependencies: ["281349257023A982"] + id: "3AC45B5FE4BE35AE" + rewards: [{ + exclude_from_claim_all: true + id: "744B0B04FAC963BC" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "263C3037FA3782C0" + item: { + Count: 1 + id: "undergarden:slingshot" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -1.142857142857146d + y: 1.4285714285714306d + } + { + dependencies: ["22CB282DCBCEB69E"] + id: "281349257023A982" + rewards: [{ + exclude_from_claim_all: true + id: "22D8F947399D3C36" + table_id: 6305167096659659419L + type: "random" + }] + subtitle: "A smooth piece of Depthrock, the perfect ammunition for a Slingshot" + tasks: [{ + id: "1A80248392B11E5B" + item: "undergarden:depthrock_pebble" + type: "item" + }] + x: -1.2857142857142847d + y: 0.1428571428571459d + } + { + dependencies: ["3AC45B5FE4BE35AE"] + id: "34B8A8C0B0F2E35C" + rewards: [{ + exclude_from_claim_all: true + id: "0B58689EA8E6F47A" + table_id: 5236874501558129216L + type: "random" + }] + subtitle: "A makeshift projectile explosive, often sold by shady Stoneborn" + tasks: [{ + id: "5C41E14054EF56FF" + item: "undergarden:blisterbomb" + type: "item" + }] + x: -1.1785714285714306d + y: 3.0357142857142847d + } + { + dependencies: ["3F6B2C93D0E29313"] + description: ["A bed unique to the Undergarden, with the same functions and features as the original bed in Overworld it saves your spawn point in the Undergarden."] + id: "031FA36C93EAC7E0" + rewards: [{ + exclude_from_claim_all: true + id: "285769EC1C2FCD7C" + table_id: 1235506154212082407L + type: "random" + }] + subtitle: "Using it in the Overworld will cause a violent explosion" + tasks: [{ + id: "3216E90CAFB8586E" + item: "undergarden:depthrock_bed" + type: "item" + }] + x: 8.0d + y: -0.5d + } + { + dependencies: ["41B18BDA2A85AB8B"] + id: "747EA5D7DB4FAAF4" + rewards: [{ + exclude_from_claim_all: true + id: "72EA2B831E0EC701" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "597D06E854FA11A5" + item: "undergarden:cooked_gwibling" + type: "item" + }] + x: 1.0d + y: 3.5d + } + { + dependencies: ["22CB282DCBCEB69E"] + id: "41B18BDA2A85AB8B" + rewards: [{ + exclude_from_claim_all: true + id: "2ABEC6A1CBA59BDF" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "417EC28C33C2CDB5" + item: "undergarden:blisterberry" + type: "item" + }] + x: 0.1071428571428541d + y: 1.4285714285714306d + } + { + dependencies: ["22CB282DCBCEB69E"] + id: "05654EDE65DA6992" + rewards: [{ + exclude_from_claim_all: true + id: "752C7E4431DF8475" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "6AE98B8ED8FBE250" + item: "undergarden:utheric_shard" + type: "item" + }] + x: -3.642857142857146d + y: 0.6785714285714306d + } + { + dependencies: ["47522EEC2217553B"] + id: "1B9C5615EE6A3231" + rewards: [{ + exclude_from_claim_all: true + id: "49EA64B96D87F0BF" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [ + { + id: "41D16BF73CF74740" + item: { + Count: 1 + id: "undergarden:utherium_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5F86ACE951E75E1F" + item: { + Count: 1 + id: "undergarden:utherium_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "506BB5B3FA44A97E" + item: { + Count: 1 + id: "undergarden:utherium_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1270A3EC8882A91F" + item: { + Count: 1 + id: "undergarden:utherium_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&cUtherium Armor" + x: -2.6785714285714235d + y: 3.142857142857146d + } + { + dependencies: ["566794569F565F0F"] + id: "1BB9516B59911612" + rewards: [{ + exclude_from_claim_all: true + id: "597F75007F3EF576" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "69BD9F77F23FB73A" + item: { + Count: 1 + id: "undergarden:cloggrum_shield" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.428571428571431d + y: 3.000000000000007d + } + { + dependencies: ["38E7968EE55F1CBA"] + id: "34DBCA9A018BBCF7" + rewards: [{ + exclude_from_claim_all: true + id: "020CF7729BEF2CDC" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "2213A5EC182DD9A6" + item: "undergarden:cloggrum_lantern" + type: "item" + }] + x: -7.5d + y: 1.0d + } + { + dependencies: ["05654EDE65DA6992"] + description: ["The &cShard Torch&r deals two hearts of damage to &eRotling&r, &eRotwalker&r and &eRotbeast&r. So seams pretty much handy to have some in your inventory."] + id: "04BD3F5AFF96BFBC" + rewards: [{ + exclude_from_claim_all: true + id: "4146EF3574FD9F42" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + count: 4L + id: "2E8F677DA2AD28F7" + item: "undergarden:shard_torch" + type: "item" + }] + title: "Shard Torch" + x: -2.9642857142857153d + y: 1.892857142857146d + } + { + dependencies: [ + "5D72DD1FE5962442" + "34B8A8C0B0F2E35C" + ] + id: "376899AF8855E106" + rewards: [{ + exclude_from_claim_all: true + id: "1D61A082484D2358" + table_id: 6305167096659659419L + type: "random" + }] + subtitle: "TNT" + tasks: [{ + id: "1F87318A6E5418C6" + item: "undergarden:boomgourd" + type: "item" + }] + x: -0.9285714285714306d + y: 4.571428571428569d + } + { + dependencies: ["3AC45B5FE4BE35AE"] + description: ["By shooting mobs they will not be able to move, so be careful and &4don't step&r on &2Goo&r."] + id: "61568F9B352B8373" + rewards: [{ + exclude_from_claim_all: true + id: "7544212DB8752F83" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + count: 12L + id: "1D6DFEE65BB11E79" + item: "undergarden:goo_ball" + type: "item" + }] + title: "Scintling Goo Ball" + x: -1.9285714285714306d + y: 2.25d + } + { + dependencies: ["3BF2061B8EEE8FCA"] + description: ["The &aDwellers&r can be ridden like &9Horses&r in Overworld, except the Dweller doesn't need to be tamed, but you'll be needing a &dUnderbean on a Stick&r to control the Dweller and of course a &esaddle&r."] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/dweller.png" + } + } + id: "6BDB84E1BDDB47F8" + rewards: [{ + exclude_from_claim_all: true + id: "5C16B9062A0A5312" + table_id: 6305167096659659419L + type: "random" + }] + subtitle: "Need a ride?" + tasks: [ + { + id: "7D6732D5E4CE50E8" + item: { + Count: 1 + id: "undergarden:underbean_on_a_stick" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "759B709B5FED1ABA" + item: "minecraft:saddle" + type: "item" + } + ] + title: "The Dweller" + x: 3.0d + y: 3.0d + } + { + dependencies: ["22CB282DCBCEB69E"] + description: ["Obtained by shearing the &aMogs&r."] + id: "3F6B2C93D0E29313" + rewards: [{ + exclude_from_claim_all: true + id: "106A9C5A6DAF9FB0" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + count: 3L + id: "20EA335969FEFB4E" + item: "undergarden:mogmoss" + type: "item" + }] + title: "Mogmoss" + x: 7.0d + y: -1.5d + } + { + dependencies: ["41B18BDA2A85AB8B"] + id: "3239B50135CCE2D2" + rewards: [{ + exclude_from_claim_all: true + id: "45F6A0BDA0A11924" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "0CAAAEA57E13BA78" + item: "undergarden:glitterkelp" + type: "item" + }] + x: 1.5d + y: 2.5d + } + { + dependencies: ["41B18BDA2A85AB8B"] + id: "5D72DD1FE5962442" + rewards: [{ + exclude_from_claim_all: true + id: "5BA18039EC344C47" + table_id: 6305167096659659419L + type: "random" + }] + tasks: [{ + id: "771488DE7485A2A5" + item: "undergarden:gloomgourd" + type: "item" + }] + x: 0.0d + y: 3.5d + } + { + dependencies: ["41B18BDA2A85AB8B"] + id: "3BF2061B8EEE8FCA" + rewards: [{ + exclude_from_claim_all: true + id: "3A98AEF897D0AC51" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "556A09312476EB32" + item: "undergarden:underbeans" + type: "item" + }] + x: 2.5d + y: 2.0d + } + { + dependencies: ["22CB282DCBCEB69E"] + hide_dependency_lines: true + id: "0E0C0B7E0D181AB7" + rewards: [{ + exclude_from_claim_all: true + id: "102A1C56E10B0253" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "7C60E22559511B22" + item: "undergarden:indigo_mushroom" + type: "item" + }] + x: 4.5d + y: 4.0d + } + { + dependencies: ["22CB282DCBCEB69E"] + hide_dependency_lines: true + id: "23A1B82E43BAD28E" + rewards: [{ + exclude_from_claim_all: true + id: "62EEB76960B3AB9B" + table_id: 5236874501558129216L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "607A1AA80DDE45E9" + item: "undergarden:ink_mushroom" + type: "item" + }] + x: 5.5d + y: 4.0d + } + { + dependencies: ["22CB282DCBCEB69E"] + hide_dependency_lines: true + id: "49A216DDB328FBBB" + rewards: [{ + exclude_from_claim_all: true + id: "16A884152B7600A9" + table_id: 6305167096659659419L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "3BEF77BA31C8636C" + item: "undergarden:blood_mushroom" + type: "item" + }] + x: 6.5d + y: 4.0d + } + { + dependencies: ["22CB282DCBCEB69E"] + hide_dependency_lines: true + id: "33869137677DD0ED" + rewards: [{ + exclude_from_claim_all: true + id: "2F4D5755388C0FDA" + table_id: 6305167096659659419L + type: "random" + }] + shape: "hexagon" + tasks: [{ + id: "21EE31EF9A489D0F" + item: "undergarden:veil_mushroom" + type: "item" + }] + x: 7.5d + y: 4.0d + } + { + dependencies: ["244AEAF3766BC263"] + id: "01F96446DB3F864A" + rewards: [{ + exclude_from_claim_all: true + id: "2F7CC9C4D47275DB" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "5BA76670F7098616" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "undergarden:forgotten_pickaxe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:forgotten_axe" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:forgotten_shovel" + tag: { + Damage: 0 + } + } + { + Count: 1b + id: "undergarden:forgotten_hoe" + tag: { + Damage: 0 + } + } + ] + } + } + title: "¬&3Forgotten Tools" + type: "item" + }] + x: 3.7857142857142847d + y: 1.25d + } + { + dependencies: ["4DCC1256167B4A02"] + id: "42BCB957E51FB666" + rewards: [{ + exclude_from_claim_all: true + id: "3D3D14D03D4271CD" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "6BE23FB21C01C25B" + item: { + Count: 1 + id: "undergarden:froststeel_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -6.5d + y: -1.5d + } + { + dependencies: ["38E7968EE55F1CBA"] + id: "08720E186AC71B27" + rewards: [{ + exclude_from_claim_all: true + id: "4B67F680843F8B80" + table_id: 1235506154212082407L + type: "random" + }] + tasks: [{ + id: "76496B6BB88282BC" + item: { + Count: 1 + id: "undergarden:cloggrum_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -7.0d + y: 2.0d + } + { + dependencies: ["38E7968EE55F1CBA"] + id: "7D34E77C13BD6BFF" + rewards: [{ + exclude_from_claim_all: true + id: "4576FCDFFF0EFC71" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "581B4753494705D2" + item: { + Count: 1 + id: "undergarden:cloggrum_battleaxe" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.714285714285715d + y: 1.7857142857142847d + } + { + dependencies: ["47522EEC2217553B"] + id: "50C68EC2F46D33EA" + rewards: [{ + exclude_from_claim_all: true + id: "68BE73560EC491E6" + table_id: 5236874501558129216L + type: "random" + }] + tasks: [{ + id: "01E9C44176986FEE" + item: { + Count: 1 + id: "undergarden:utherium_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.5d + y: 4.0d + } + { + dependencies: ["3AC45B5FE4BE35AE"] + id: "008F690976117793" + rewards: [{ + exclude_from_claim_all: true + id: "0187C4778DA5BDED" + table_id: 1235506154212082407L + type: "random" + }] + subtitle: "Ammo for Slingshot" + tasks: [{ + id: "6B1AE3503C1C6B34" + item: "undergarden:gronglet" + type: "item" + }] + x: -2.3214285714285765d + y: 0.8571428571428541d + } + ] + title: "&3&oThe Undergarden" +} diff --git a/minecraft/config/ftbquests/quests/chapters/thermal_series.snbt b/minecraft/config/ftbquests/quests/chapters/thermal_series.snbt new file mode 100644 index 0000000..353cf59 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/thermal_series.snbt @@ -0,0 +1,3034 @@ +{ + autofocus_id: "34E6071AFEF22783" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "thermal_series" + group: "69B9F7247002FE35" + icon: "thermal:machine_smelter" + id: "23D1C8B375310D6F" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: 2.5d + y: -6.1107142857142875d + } + { + height: 2.5d + image: "kubejs:item/thermal_series" + rotation: 0.0d + width: 6.0d + x: 11.5d + y: -4.5d + } + ] + order_index: 13 + quest_links: [ ] + quests: [ + { + dependencies: ["263ADC92D1D72D46"] + description: ["&9Thermal Series&r is a modular series of mods that adds a content-rich blend of &dmagic&r and &2technology&r to your Minecraft experience!"] + icon: { + Count: 1 + id: "patchouli:guide_book" + tag: { + "patchouli:book": "thermal:guidebook" + } + } + id: "34E6071AFEF22783" + min_width: 300 + rewards: [ + { + id: "782CB77633219383" + type: "xp" + xp: 10 + } + { + id: "776DF7A6B6DCD685" + item: "thermal:redprint" + type: "item" + } + { + exclude_from_claim_all: true + id: "05020A52A885786A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&o&nCPU Core S1000&r quest*" + tasks: [{ + id: "3FD5DEE198375814" + item: "thermal:wrench" + type: "item" + }] + title: "Welcome to &9Thermal Series" + x: 2.5d + y: -5.0d + } + { + dependencies: ["34E6071AFEF22783"] + id: "312F95AAB1491DA0" + rewards: [ + { + id: "063C958056DA865A" + type: "xp" + xp: 50 + } + { + count: 2 + id: "0A1D8F4D0D1C55FD" + item: "mekanism:structural_glass" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "2CA1CA15B87DE179" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "2E71D79EC1B0A0E8" + item: "thermal:machine_frame" + type: "item" + }] + x: -0.5d + y: -5.0d + } + { + dependencies: ["312F95AAB1491DA0"] + id: "5B9EE9E57931D3F7" + rewards: [ + { + id: "29F57D16812143CD" + type: "xp" + xp: 100 + } + { + id: "5464E3E368A96617" + item: "thermal:redstone_servo" + type: "item" + } + { + exclude_from_claim_all: true + id: "51E0E60CFE388E56" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "Powered Furnace" + tasks: [{ + id: "5EA2B58CB977FB98" + item: "thermal:machine_furnace" + type: "item" + }] + x: -0.5d + y: -6.5d + } + { + dependencies: ["5B9EE9E57931D3F7"] + id: "46F4F5E48985FAF7" + rewards: [ + { + id: "077B5BAAE1E468E9" + type: "xp" + xp: 100 + } + { + count: 4 + id: "3547BB905718A1BB" + item: { + Count: 1 + id: "thermal:niter_dust" + tag: { } + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "1536F7767C02AB8D" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "Breaks Ores into Dusts" + tasks: [{ + id: "2ABCC22A2D9CCDB1" + item: "thermal:machine_pulverizer" + type: "item" + }] + x: -0.5d + y: -8.0d + } + { + dependencies: ["46F4F5E48985FAF7"] + id: "2B8E8DCB6297AE9C" + rewards: [ + { + id: "6009966E2B76E7A4" + type: "xp" + xp: 100 + } + { + id: "4F5908A6791F179C" + item: "alltheores:signalum_ingot" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "6F67B849A636F112" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "The Alloy Maker" + tasks: [{ + id: "2A0F432B8827DD01" + item: "thermal:machine_smelter" + type: "item" + }] + x: -0.5d + y: -9.5d + } + { + dependencies: ["312F95AAB1491DA0"] + description: ["&9Multiservo Press&r can be used to create &o&bplates&r, &o&bgears&r, &o&brods&r, etc. using &aCasts&r."] + hide_dependency_lines: true + id: "74E8A2BC29BB20AD" + rewards: [ + { + id: "538BB9C19A7D6C48" + type: "xp" + xp: 100 + } + { + id: "134639E175DA6177" + item: "thermal:press_gear_die" + type: "item" + } + { + exclude_from_claim_all: true + id: "2E2AF37E05E43429" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "0557B422243B5639" + item: "thermal:machine_press" + type: "item" + }] + x: -3.5d + y: -4.5d + } + { + dependencies: ["34E6071AFEF22783"] + description: ["The &6Aqueous Accumulator&r creates an &o&binfinite water source&r when placed between two &9Water&r source blocks."] + id: "38927231CC75A693" + rewards: [ + { + id: "77117FDCFB806174" + type: "xp" + xp: 100 + } + { + id: "7B6D5EABAC8DEE49" + item: "minecraft:water_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "43A39A86272264E3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "369080242A149963" + item: "thermal:device_water_gen" + type: "item" + }] + x: 2.5d + y: -3.0d + } + { + dependencies: ["312F95AAB1491DA0"] + description: [ + "&9Magma Crucible&r can convert certain blocks into liquids." + "" + "This is useful for generating &6Lava&r from &3Cobblestone&r, &cNetherrack&r, &0Obsidian&r, etc." + ] + id: "4FE99376342ADFF6" + rewards: [ + { + id: "038AE6C51E84E524" + type: "xp" + xp: 100 + } + { + id: "028A22137C241E29" + item: { + Count: 1 + id: "thermal:rf_coil" + tag: { } + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "0DE0879239B9D356" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "16D8B7C59A69F581" + item: "thermal:machine_crucible" + type: "item" + }] + x: -2.5d + y: -5.5d + } + { + dependencies: ["312F95AAB1491DA0"] + description: ["&9Fluid Encapsulator&r can be used to combine &eLiquids&r with &cItems&r."] + id: "7268CF67620F9DF3" + rewards: [ + { + id: "6A01295EE1DE025A" + type: "xp" + xp: 100 + } + { + count: 3 + id: "7D1C7F36432FE34D" + item: { + Count: 1 + id: "alltheores:bronze_ingot" + tag: { } + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "7A203158141355E2" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "69195402B0BB28B2" + item: "thermal:machine_bottler" + type: "item" + }] + x: -2.5d + y: -4.5d + } + { + dependencies: ["34E6071AFEF22783"] + description: ["&6Tinker's Workbench&r can be used to &o&bcharge&r items, &o&baugment&r machines, or &o&bfill up&r items with liquid."] + id: "4DA9ACD33EC2B458" + rewards: [ + { + id: "0E503204A3F75ECC" + type: "xp" + xp: 100 + } + { + count: 2 + id: "097AF11BB5F5DEF2" + item: "thermal:obsidian_glass" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "7A4DF7587B0279B5" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "12DE8780A2033994" + item: "thermal:tinker_bench" + type: "item" + }] + x: 3.5d + y: -7.0d + } + { + dependencies: ["34E6071AFEF22783"] + description: ["&6Energetic Infuser&r charges the items placed inside."] + id: "27173F39706C7206" + rewards: [ + { + id: "4E2A4A80577CBA35" + type: "xp" + xp: 100 + } + { + count: 2 + id: "598A1D1C6622E4DC" + item: { + Count: 1 + id: "alltheores:lumium_ingot" + tag: { } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "274FC70A512CD3C3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "16276167112963A4" + item: "thermal:charge_bench" + type: "item" + }] + x: 1.5d + y: -7.0d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "1614F88098B6C392" + rewards: [ + { + id: "079E1F68F3578664" + type: "xp" + xp: 100 + } + { + count: 3 + id: "1F8D0DC9428BE30C" + item: { + Count: 1 + id: "alltheores:tin_ingot" + tag: { } + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "70E2272338B1A37E" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "31C7A94C3C2BD7E2" + item: "thermal:device_collector" + type: "item" + }] + x: 2.0d + y: -2.0d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "6349795EB7EEA91D" + rewards: [ + { + id: "4747818D1A444521" + type: "xp" + xp: 100 + } + { + count: 3 + id: "55D71A0A45092BED" + item: { + Count: 1 + id: "alltheores:lead_ingot" + tag: { } + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "7F23F8D818B6953B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6666ED336EDA3949" + item: "thermal:device_nullifier" + type: "item" + }] + x: 3.0d + y: -2.0d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "478D30FD3445BA25" + rewards: [ + { + id: "5730D960DB99720F" + type: "xp" + xp: 100 + } + { + count: 3 + id: "7482EE64AFDAFE30" + item: { + Count: 1 + id: "alltheores:bronze_ingot" + tag: { } + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "27EC06C1DFD7D446" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1DB1AE5931A771C7" + item: "thermal:device_tree_extractor" + type: "item" + }] + x: 2.0d + y: -1.0d + } + { + dependencies: ["312F95AAB1491DA0"] + description: ["&9Sawmill&r can sawing &aLogs&r into &3Planks&r and &eSawdust&r as a by-product."] + id: "6916318D8812430A" + rewards: [ + { + id: "5C79C42415044E17" + type: "xp" + xp: 100 + } + { + count: 4 + id: "6EB90BF9B27D4603" + item: "minecraft:oak_log" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4D7A869921B2E943" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "2B54D8907E264555" + item: "thermal:machine_sawmill" + type: "item" + }] + x: -2.5d + y: -6.5d + } + { + dependencies: ["4DA9ACD33EC2B458"] + description: [ + "This is a &2Base Upgrade&r for all machines and items." + "" + "While you can put several &2Base Upgrades&r into a machine, only the &nhighest tier&r takes effect." + ] + id: "7EC6FE3537E7B171" + rewards: [ + { + id: "2A2E33123D8AAC79" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "2C8588886ED2B315" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "&7Base Upgrade:&r &fTier 1" + tasks: [{ + id: "06D301C595A76F87" + item: "thermal:upgrade_augment_1" + type: "item" + }] + x: 4.8999999999999995d + y: -8.0d + } + { + dependencies: ["34E6071AFEF22783"] + description: [ + "&6Redstone Flux Cell&r can be &denchant&r with &9Holding&r to increase the storage!" + "" + "&aHolding I&r - &b1.5M RF&r" + "&aHolding II&r - &b2.0M RF&r" + "&aHolding III&r - &b2.5M RF&r" + "&aHolding IV&r - &b3.0M RF&r " + ] + hide_dependency_lines: true + id: "7A9FCF5E7C79680F" + rewards: [ + { + id: "325CB4A7F9C02E99" + type: "xp" + xp: 100 + } + { + count: 2 + id: "60524C5ECC245BAD" + item: "alltheores:invar_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "59E784F43EF71943" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Storing Power" + tasks: [{ + id: "328F2D76F84B944B" + item: { + Count: 1 + id: "thermal:energy_cell" + tag: { + BlockEntityTag: { + Energy: 0 + EnergyMax: 1000000 + EnergyRecv: 1000 + EnergySend: 1000 + } + } + } + type: "item" + }] + x: 9.5d + y: -8.0d + } + { + dependencies: ["75211647C7AD9691"] + description: [ + "&9Fluid Cell&r can be &denchant&r with &6Holding&r to increase the storage!" + "" + "&aHolding I&r - &b48mB&r" + "&aHolding II&r - &b64mB&r" + "&aHolding III&r - &b80mB&r" + "&aHolding IV&r - &b96mB&r " + ] + id: "43888C85062C0A7E" + rewards: [ + { + id: "4D0C3F27C3F024EA" + type: "xp" + xp: 100 + } + { + count: 2 + id: "6D64C1771FB80AEB" + item: { + Count: 1 + id: "alltheores:enderium_ingot" + tag: { } + } + only_one: true + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7DE219F3AD841C6B" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "Storing Fluids" + tasks: [{ + id: "39E20C94A892CABD" + item: { + Count: 1 + id: "thermal:fluid_cell" + tag: { + BlockEntityTag: { + TankInv: [{ + Amount: 0 + Capacity: 32000 + FluidName: "minecraft:empty" + Tank: 0b + }] + } + } + } + type: "item" + }] + x: -0.5d + y: -2.0d + } + { + dependencies: ["7EC6FE3537E7B171"] + id: "0F94542AE5589187" + rewards: [ + { + id: "496FA447767AFDF5" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "177C2BA076ECE7BB" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "&6Base Upgrade:&r &fTier 2" + tasks: [{ + id: "7C94EAA6CFC007B1" + item: "thermal:upgrade_augment_2" + type: "item" + }] + x: 5.8999999999999995d + y: -8.0d + } + { + dependencies: ["0F94542AE5589187"] + id: "372D3A38C2470ACD" + rewards: [ + { + id: "02C051D351F86C4B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3C0E58CB566ADC03" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "&5Base Upgrade:&r &fTier 3" + tasks: [{ + id: "389F3A8A7E7711A7" + item: "thermal:upgrade_augment_3" + type: "item" + }] + x: 6.8999999999999995d + y: -8.0d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "6D691F281AD63BBA" + rewards: [ + { + id: "2FC33589C9AB17ED" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "14BFE2044E385BEA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "242323EF509F0111" + item: "thermal:explosive_grenade" + type: "item" + }] + x: 7.0d + y: -0.5d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "337AE10599BA4F58" + rewards: [ + { + id: "293CA52709EA74C9" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "5D0E9E9FC7EC25EA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "78CE7AB5CD977073" + item: "thermal:phyto_grenade" + type: "item" + }] + x: 6.0d + y: -1.5d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "466419BE13B2FD6B" + rewards: [ + { + id: "06C87FA217150FB4" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "78A065C82759D4BA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "2953A293E8A3799B" + item: "thermal:fire_grenade" + type: "item" + }] + x: 7.5d + y: -3.0d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "6698698FF0D6C88C" + rewards: [ + { + id: "71A86918DB996A6B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "5D7C4581636CA88D" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "23BD05C6456097DF" + item: "thermal:earth_grenade" + type: "item" + }] + x: 7.5d + y: -1.0d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "68E4C006C253F895" + rewards: [ + { + id: "25A71A4C87718969" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "6029DDA5C26FF5D0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "05E69378D60D2B8F" + item: "thermal:ice_grenade" + type: "item" + }] + x: 8.0d + y: -1.5d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "5CB392505E3A8A73" + rewards: [ + { + id: "6BCF5E66395DB6F8" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "32427FBE69B5A97A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "734CA448FCD5F0FA" + item: "thermal:lightning_grenade" + type: "item" + }] + x: 6.0d + y: -2.5d + } + { + dependencies: ["27173F39706C7206"] + description: [ + "&9Flux Capacitor&r can be &denchant&r with &6Holding&r to increase the storage!" + "" + "&aHolding I&r - &b750.00k RF&r" + "&aHolding II&r - &b1.00M RF&r" + "&aHolding III&r - &b1.25M RF&r" + "&aHolding IV&r - &b1.50M RF&r " + ] + id: "3E9E451AA51A09E5" + rewards: [ + { + id: "1229809B22BF9F54" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "08BE475505B4D8D4" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "square" + tasks: [{ + id: "0681270E67EBA964" + item: { + Count: 1 + id: "thermal:flux_capacitor" + tag: { } + } + type: "item" + }] + x: 1.5d + y: -8.5d + } + { + dependencies: ["3E9E451AA51A09E5"] + id: "6331A66594E2EE7B" + rewards: [ + { + id: "507FD95E3AF910A0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2D056C9A4D5018BB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3DAA6B1E19EFDFB0" + item: { + Count: 1 + id: "thermal:flux_drill" + tag: { } + } + type: "item" + }] + x: 1.5d + y: -9.5d + } + { + dependencies: ["3E9E451AA51A09E5"] + id: "47C80C7C796517DE" + rewards: [ + { + id: "7E5DD9D0A76DE94C" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "65AB09A77E60F0DB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "400654F628D7268B" + item: { + Count: 1 + id: "thermal:flux_saw" + tag: { } + } + type: "item" + }] + x: 2.5d + y: -8.5d + } + { + dependencies: ["3E9E451AA51A09E5"] + id: "2D4EE8D7053BB226" + rewards: [ + { + id: "687B4073C6E36DE1" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "1D2609B9B3508CB4" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "50408E0802FE3F73" + item: { + Count: 1 + id: "thermal:flux_magnet" + tag: { } + } + type: "item" + }] + x: 2.5d + y: -9.5d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "775100B36355D634" + rewards: [ + { + id: "2191FE2A8CB18F57" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "59FC5246E03E97A7" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 1.5d + subtitle: "Very handy Granades" + tasks: [ + { + id: "34CE3510345D9E97" + item: "thermal:basalz_powder" + type: "item" + } + { + id: "0E4D8CCCAC565FB9" + item: "thermal:blitz_powder" + type: "item" + } + { + id: "2EE4AA085957D382" + item: "thermal:blizz_powder" + type: "item" + } + { + id: "1CC6B9C89BEA9262" + item: "thermal:phytogro" + type: "item" + } + { + id: "091F08A2069DDDB8" + item: "minecraft:gunpowder" + type: "item" + } + { + id: "647109D05CD26770" + item: "minecraft:blaze_powder" + type: "item" + } + ] + title: "&9The Main Ingredients" + x: 7.0d + y: -2.0d + } + { + dependencies: ["312F95AAB1491DA0"] + description: ["&9Blast Chiller&r converts items from a &o&bliquid&r to a &o&bsolid&r, some requiring &o&bcasts&r."] + hide_dependency_lines: true + id: "39AE0E0BF312B5A0" + rewards: [ + { + id: "5A631AD251A1AC76" + type: "xp" + xp: 100 + } + { + id: "7CDCC187C69964B4" + item: "cyclic:honey_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "7B5D29309E4082AC" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "01231804600C2974" + item: { + Count: 1 + id: "thermal:machine_chiller" + tag: { } + } + type: "item" + }] + x: -4.5d + y: -6.5d + } + { + dependencies: ["312F95AAB1491DA0"] + description: ["&9Crystallizer&r can be used to make &aGems&r and &bCrystals&r form &3Dusts&r and &dShards&r using &cenergy&r and &1water&r."] + hide_dependency_lines: true + id: "2873D46D48583A69" + rewards: [ + { + id: "1161B8552CDE8323" + type: "xp" + xp: 100 + } + { + count: 4 + id: "1DE973E56C12AC38" + item: "minecraft:amethyst_shard" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "5AD7172CE9A2176C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "3D39B45C642711DE" + item: { + Count: 1 + id: "thermal:machine_crystallizer" + tag: { } + } + type: "item" + }] + x: -4.5d + y: -3.5d + } + { + dependencies: ["312F95AAB1491DA0"] + description: [ + "&9Phytogenic Insolater&r works like a &aBotany Pot&r, &cGarden Cloche&r, etc." + "" + "When given &1water&r and a &eseed&r, it will grow the seed." + ] + id: "5641548A1631166E" + rewards: [ + { + id: "2CCE08CD9486629A" + type: "xp" + xp: 100 + } + { + count: 12 + id: "7895001665130405" + item: { + Count: 1 + id: "thermal:corn_seeds" + tag: { } + } + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "39CDE2BFDCD4FA44" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "16E6216832C39D53" + item: { + Count: 1 + id: "thermal:machine_insolator" + tag: { } + } + type: "item" + }] + x: -2.5d + y: -3.5d + } + { + dependencies: ["312F95AAB1491DA0"] + description: ["&9Fractionating Still&r can convert &eliquids&r into &citems&r or other &nuseful&r liquids."] + hide_dependency_lines: true + id: "150D86ADA62F80E1" + rewards: [ + { + id: "6FA29840FC7DD87E" + type: "xp" + xp: 100 + } + { + count: 4 + id: "58AAC7E538F83567" + item: "thermal:cinnabar" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "7CAFCC22EA6AFAA0" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "539B45CD23CE2E12" + item: { + Count: 1 + id: "thermal:machine_refinery" + tag: { } + } + type: "item" + }] + x: -3.5d + y: -3.5d + } + { + dependencies: ["34E6071AFEF22783"] + id: "75211647C7AD9691" + rewards: [ + { + id: "1FE30DD65EE49BE9" + type: "xp" + xp: 100 + } + { + id: "4C160BDB40328884" + item: { + Count: 1 + id: "minecraft:netherite_scrap" + tag: { } + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "105FE9FE6054BDEA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "68C1556B7F15B738" + item: { + Count: 1 + id: "thermal:fluid_reservoir" + tag: { } + } + type: "item" + }] + x: -0.5d + y: -3.5d + } + { + dependencies: ["7D9AB50A41F60628"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "4B8E7B9DDA29FB59" + optional: true + rewards: [ + { + id: "56C2D055909A1F2D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5C21619DD49EC6FB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [ + { + id: "4B34E8442215663F" + item: { + Count: 1 + id: "thermal:beekeeper_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "33E053FCC16EAD48" + item: { + Count: 1 + id: "thermal:beekeeper_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "567657917997143F" + item: { + Count: 1 + id: "thermal:beekeeper_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "678541F6E0F17528" + item: { + Count: 1 + id: "thermal:beekeeper_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: -2.5d + y: -1.5d + } + { + dependencies: ["27652872E0A597F1"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "39AC8EE470E124F9" + optional: true + rewards: [ + { + id: "1D54718DD90E8806" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "572921ABB6C0C908" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [ + { + id: "79215DBCB03F97C2" + item: { + Count: 1 + id: "thermal:diving_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1D144E865F02BE1D" + item: { + Count: 1 + id: "thermal:diving_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "42DD8477BE248711" + item: { + Count: 1 + id: "thermal:diving_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "6B4F5134634047EF" + item: { + Count: 1 + id: "thermal:diving_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: -3.5d + y: -1.5d + } + { + hide_dependency_lines: true + hide_until_deps_complete: true + id: "7BB08C03EE57E36B" + optional: true + rewards: [ + { + id: "79C8C4585D1CA32F" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "16158FF1D25F93CA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [ + { + id: "084451E7C2C0FDAA" + item: { + Count: 1 + id: "thermal:hazmat_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1E7076E25FD656C3" + item: { + Count: 1 + id: "thermal:hazmat_chestplate" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "587CFC8DEB967DA7" + item: { + Count: 1 + id: "thermal:hazmat_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "14F6DDCA59202FC9" + item: { + Count: 1 + id: "thermal:hazmat_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + x: -4.5d + y: -1.5d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "7D9AB50A41F60628" + rewards: [ + { + id: "2E9498220F5D3D4D" + type: "xp" + xp: 100 + } + { + count: 2 + id: "5C7181CC77AB08F3" + item: { + Count: 1 + id: "minecraft:honey_block" + tag: { } + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "33107729D7029B14" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2C72BFBF0256C418" + item: { + Count: 1 + id: "thermal:device_hive_extractor" + tag: { } + } + type: "item" + }] + x: 1.0d + y: -2.0d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "27652872E0A597F1" + rewards: [ + { + id: "15F4B54CE657B45C" + type: "xp" + xp: 100 + } + { + count: 12 + id: "38D7D4C71D276461" + item: { + Count: 1 + id: "thermal:sushi_maki" + tag: { } + } + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "0725C211E345B00D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "3E437CABAF5E82C7" + item: { + Count: 1 + id: "thermal:device_fisher" + tag: { } + } + type: "item" + }] + x: 3.0d + y: -1.0d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "5918DE6BD2248972" + rewards: [ + { + id: "01CCF213AD679711" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3E68A25256275786" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "5FB009BBC0DD5B8B" + item: { + Count: 1 + id: "thermal:ender_grenade" + tag: { } + } + type: "item" + }] + x: 6.5d + y: -1.0d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "01A37A358F4E1C04" + rewards: [ + { + id: "0F1F4274ED8C3BAA" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "611BFD0F120BA1EC" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "3AA82BC8020DD25B" + item: { + Count: 1 + id: "thermal:glowstone_grenade" + tag: { } + } + type: "item" + }] + x: 6.5d + y: -3.0d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "17E5421030EC345E" + rewards: [ + { + id: "0891D45C913848BC" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "083312270469C693" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "7F19C77BF4E54E23" + item: { + Count: 1 + id: "thermal:slime_grenade" + tag: { } + } + type: "item" + }] + x: 8.0d + y: -2.5d + } + { + dependencies: ["775100B36355D634"] + hide_dependency_lines: true + id: "4C60E56E22848E84" + rewards: [ + { + id: "6F68C4FE38FA3769" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "0D41918CA9727132" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 4L + id: "68E6D967DABBEDC7" + item: { + Count: 1 + id: "thermal:redstone_grenade" + tag: { } + } + type: "item" + }] + x: 7.0d + y: -3.5d + } + { + dependencies: ["312F95AAB1491DA0"] + description: ["&9Sequential Fabricator&r can be used as a &eAuto-Crafter&r."] + hide_dependency_lines: true + id: "2FD368E6A9CBDE9D" + rewards: [ + { + id: "3D2D0027F08D236D" + type: "xp" + xp: 100 + } + { + id: "3C017045545E4F45" + item: "thermal:rf_coil" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "7B5791AC02F0A8BC" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "6D0C1F7D80BB6C96" + item: "thermal:machine_crafter" + type: "item" + }] + x: -3.5d + y: -5.5d + } + { + dependencies: ["312F95AAB1491DA0"] + description: ["&9Alchemical Imbuer&r can create &dLiquid Potions&r that can be bottled into &ePotions&r."] + hide_dependency_lines: true + id: "6F7582203DEE5326" + rewards: [ + { + id: "0A10E6C6A91436EF" + type: "xp" + xp: 100 + } + { + id: "1B994357B4217434" + item: { + Count: 1 + id: "minecraft:potion" + tag: { + Potion: "minecraft:long_strength" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "23FC312DC58292AF" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "63B964E9117C69DB" + item: "thermal:machine_brewer" + type: "item" + }] + x: -3.5d + y: -6.5d + } + { + dependencies: ["312F95AAB1491DA0"] + description: [ + "&9Pyrolyzer&r works like a &7Coke Oven&r, but simplified." + "" + "Insert \"fuel\" like &0Coal&r and it'll produce &3Coal Coke&r and a by-product." + ] + hide_dependency_lines: true + id: "6AB7B75ED30BDC8D" + rewards: [ + { + id: "4E922B1EE9972285" + type: "xp" + xp: 100 + } + { + count: 8 + id: "1A26B4270CB15DE6" + item: "minecraft:coal" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "78C8038118F67852" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "776E56DD5C6DD442" + item: "thermal:machine_pyrolyzer" + type: "item" + }] + x: -4.5d + y: -5.5d + } + { + dependencies: ["312F95AAB1491DA0"] + description: ["&9Centrifugal Separator&r can be used to &o&bseparate&r items into their &o&bcrafting components&r."] + hide_dependency_lines: true + id: "5093D52C64D7C5F6" + rewards: [ + { + id: "03A032E04EB6639F" + type: "xp" + xp: 100 + } + { + count: 4 + id: "03E1755C20398C75" + item: "thermal:apatite" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4759B9EEA0066202" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [{ + id: "7F778952FFF07C90" + item: "thermal:machine_centrifuge" + type: "item" + }] + x: -4.5d + y: -4.5d + } + { + dependencies: ["34E6071AFEF22783"] + description: ["&6Decoctive Deffuser&r can be used to spreads &dPotion Effects&r to an area."] + hide_dependency_lines: true + id: "62B7B50F811DB8EF" + rewards: [ + { + id: "1B2C5208679AA702" + type: "xp" + xp: 100 + } + { + id: "7D9C21CA336C3180" + item: "ars_nouveau:potion_jar" + type: "item" + } + { + exclude_from_claim_all: true + id: "459664F743F02347" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "Spreads Potion Effects to an area" + tasks: [{ + id: "6246F549067542F0" + item: "thermal:device_potion_diffuser" + type: "item" + }] + x: 1.0d + y: -1.0d + } + { + dependencies: ["34E6071AFEF22783"] + id: "13CDCE59419CE93D" + rewards: [ + { + id: "6D9EAC5A88E5D1E6" + type: "xp" + xp: 100 + } + { + count: 8 + id: "7833DAAF5A7F1BCF" + item: "create:experience_nugget" + random_bonus: 4 + type: "item" + } + { + exclude_from_claim_all: true + id: "37EDAD7CCE76E43F" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "041CA741168BE8E7" + item: "thermal:device_xp_condenser" + type: "item" + }] + x: 3.5d + y: -3.0d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "5D4B762BF2B7FBFC" + rewards: [ + { + id: "43C6F523E26A9A73" + type: "xp" + xp: 100 + } + { + count: 3 + id: "43213697D0364405" + item: "farmersdelight:rich_soil_farmland" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "0FB2D004AA10F478" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "1400E0769A47D1A4" + item: "thermal:device_soil_infuser" + type: "item" + }] + x: 4.0d + y: -2.0d + } + { + dependencies: ["34E6071AFEF22783"] + description: [ + "&6Igneous Extruder&r can produce several types of &7Stone&r." + "" + "Place &o&b1&r &eLava&r source block on one side, and &o&b1&r &9Water&r source block on the other to generate cobblestone. Check the &dJEI&r to see the other kinds of stone you can create!" + ] + id: "2B80E4B53C19B90A" + rewards: [ + { + id: "61F3981BAB3A6631" + type: "xp" + xp: 100 + } + { + count: 32 + id: "49FC2CB44A45BEAC" + item: "minecraft:deepslate" + random_bonus: 16 + type: "item" + } + { + exclude_from_claim_all: true + id: "789CD41E042FF6CE" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "443B0BE63D5F19C5" + item: "thermal:device_rock_gen" + type: "item" + }] + x: 1.5d + y: -3.0d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "1E24ECB864C70CA7" + rewards: [ + { + id: "758594D768EE23E9" + type: "xp" + xp: 100 + } + { + count: 3 + id: "358C135FFBFF8F90" + item: "alltheores:nickel_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "12593A921845725B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "7C332D9FDE2A1B4B" + item: "thermal:device_composter" + type: "item" + }] + x: 4.0d + y: -1.0d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "3DA93308D19BA85F" + rewards: [ + { + id: "108A20AE0FED5D27" + type: "xp" + xp: 10 + } + { + count: 4 + id: "2117986248740D13" + item: "minecraft:oak_planks" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "44CF25F4BFF3B95D" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Generates Power by Burning Items!" + tasks: [{ + id: "4BEE939AC38768ED" + item: "thermal:dynamo_stirling" + type: "item" + }] + x: 10.5d + y: -7.5d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "2F71FCE4E576C977" + rewards: [ + { + id: "79A13EA08A164B86" + type: "xp" + xp: 10 + } + { + id: "60CC54CFE3ED0E10" + item: "minecraft:lava_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "4FA2C203F159FDE9" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Generates Power using Lava!" + tasks: [{ + id: "52A52D9AC73D57A6" + item: "thermal:dynamo_magmatic" + type: "item" + }] + x: 10.5d + y: -8.5d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "7FE2EED58AB791E8" + rewards: [ + { + id: "7B21F4A9F2C52F51" + type: "xp" + xp: 10 + } + { + id: "48B7DF5DEDDBB5F0" + item: "thermal:tree_oil_bucket" + type: "item" + } + { + exclude_from_claim_all: true + id: "2300848337E62317" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Generates Power using Liquid Fuel!" + tasks: [{ + id: "6E5C2E9D729210C9" + item: "thermal:dynamo_compression" + type: "item" + }] + x: 11.5d + y: -7.5d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "40ADAB71DB70EF32" + rewards: [ + { + id: "7C366B7A8CE82E4B" + type: "xp" + xp: 10 + } + { + count: 3 + id: "6576A5C983E273D3" + item: "minecraft:cooked_porkchop" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "145EC29114671D56" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Generates Power using Food?" + tasks: [{ + id: "795A2D642A7B7D50" + item: "thermal:dynamo_gourmand" + type: "item" + }] + x: 11.5d + y: -8.5d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "2EAE9EDE6EFA59F0" + rewards: [ + { + id: "47096C6969AB1279" + type: "xp" + xp: 10 + } + { + id: "6A90F905BC8681A2" + item: "minecraft:book" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "6C1AF78ECD6FC8EB" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Generates Power using Enchanted Items!" + tasks: [{ + id: "0E3CDD1130A56248" + item: "thermal:dynamo_disenchantment" + type: "item" + }] + x: 12.5d + y: -7.5d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "72C1C2CE02DCBDFF" + rewards: [ + { + id: "48E74944FEA0ECC1" + type: "xp" + xp: 10 + } + { + count: 3 + id: "237C6FB04E1855F0" + item: "minecraft:lapis_lazuli" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "6B2FA844D21C001D" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Generates Power using Gems!" + tasks: [{ + id: "7B973B2B2EED7921" + item: "thermal:dynamo_lapidary" + type: "item" + }] + x: 12.5d + y: -8.5d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "467CDD14AE21A850" + rewards: [ + { + id: "0E702C9ED47B8495" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "59A218746F8273EC" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases Fuel Efficiency of Dynamos" + tasks: [{ + id: "3D6A9C7EE22C2ADF" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:dynamo_fuel_augment" + } + { + Count: 1b + id: "thermal_extra:dynamo_fuel_augment_1" + } + { + Count: 1b + id: "thermal_extra:dynamo_fuel_augment_2" + } + { + Count: 1b + id: "thermal_extra:dynamo_fuel_augment_3" + } + { + Count: 1b + id: "thermal_extra:dynamo_fuel_augment_4" + } + ] + } + } + title: "Multi-Cycle Injectors" + type: "item" + }] + x: 6.85d + y: -6.3d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "7C83735C2D746162" + rewards: [ + { + id: "60AD1DEF39EA2AD9" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "6E1AB8FAFAB307FF" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases Generation Rate at the Cost of Efficiency" + tasks: [{ + id: "3861678346D376C1" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:dynamo_output_augment" + } + { + Count: 1b + id: "thermal_extra:dynamo_output_augment_1" + } + { + Count: 1b + id: "thermal_extra:dynamo_output_augment_2" + } + { + Count: 1b + id: "thermal_extra:dynamo_output_augment_3" + } + { + Count: 1b + id: "thermal_extra:dynamo_output_augment_4" + } + ] + } + } + title: "Auxiliary Reaction Chamber" + type: "item" + }] + x: 7.549999999999999d + y: -6.3d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "79366EC1EE27ED4B" + rewards: [ + { + id: "4E76E3E825E4BCEF" + type: "xp" + xp: 10 + } + { + id: "6CF79E7ECCC800C3" + table_id: 1235506154212082407L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases RF Transfer, and slightly increases the Capacity" + tasks: [{ + id: "775A7E11D20688CD" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:rf_coil_xfer_augment" + } + { + Count: 1b + id: "thermal_extra:rf_coil_xfer_augment_1" + } + { + Count: 1b + id: "thermal_extra:rf_coil_xfer_augment_2" + } + { + Count: 1b + id: "thermal_extra:rf_coil_xfer_augment_3" + } + { + Count: 1b + id: "thermal_extra:rf_coil_xfer_augment_4" + } + { + Count: 1b + id: "thermal_extra:rf_coil_xfer_augment_5" + } + ] + } + } + title: "High-Flux RF Coil" + type: "item" + }] + x: 7.550000000000001d + y: -9.45d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "7D49A41E4D63A596" + rewards: [ + { + id: "01CD2307D995AFEE" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "10C8370FE3FE1B69" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Reduces Catalyst Usage" + tasks: [{ + id: "6C996D5E63879519" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:machine_catalyst_augment" + } + { + Count: 1b + id: "thermal_extra:machine_catalyst_augment_1" + } + { + Count: 1b + id: "thermal_extra:machine_catalyst_augment_2" + } + { + Count: 1b + id: "thermal_extra:machine_catalyst_augment_3" + } + ] + } + } + title: "Catalytic Reclamation Chamber" + type: "item" + }] + x: 7.199999999999999d + y: -8.75d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "3320ADFD7DC4CA00" + rewards: [ + { + id: "03E25D7D19E578F0" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "088BE7257B9C05F7" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases RF Capacity, and slightly increases the RF Transfer" + tasks: [{ + id: "7B5C9FA866C0588A" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:rf_coil_storage_augment" + } + { + Count: 1b + id: "thermal_extra:rf_coil_storage_augment_1" + } + { + Count: 1b + id: "thermal_extra:rf_coil_storage_augment_2" + } + { + Count: 1b + id: "thermal_extra:rf_coil_storage_augment_3" + } + { + Count: 1b + id: "thermal_extra:rf_coil_storage_augment_4" + } + { + Count: 1b + id: "thermal_extra:rf_coil_storage_augment_5" + } + ] + } + } + title: "Stabilized RF Coil" + type: "item" + }] + x: 6.849999999999999d + y: -9.45d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "58C6BAC128155B4E" + rewards: [ + { + id: "0722C2C21210AEC6" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "18FF0E286EC18B31" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases Secondary Output" + tasks: [{ + id: "497485048E0AD20D" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:machine_output_augment" + } + { + Count: 1b + id: "thermal_extra:machine_output_augment_1" + } + { + Count: 1b + id: "thermal_extra:machine_output_augment_2" + } + { + Count: 1b + id: "thermal_extra:machine_output_augment_3" + } + ] + } + } + title: "Auxiliary Process Sieve" + type: "item" + }] + x: 6.499999999999999d + y: -8.75d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "0837E35C9C6881B4" + rewards: [ + { + id: "2A64C783BC43844F" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "6309963A3A6AD49E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases RF Capacity and Transfer Rate" + tasks: [{ + id: "2F608F433D9A3363" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:rf_coil_augment" + } + { + Count: 1b + id: "thermal_extra:rf_coil_augment_1" + } + { + Count: 1b + id: "thermal_extra:rf_coil_augment_2" + } + { + Count: 1b + id: "thermal_extra:rf_coil_augment_3" + } + { + Count: 1b + id: "thermal_extra:rf_coil_augment_4" + } + { + Count: 1b + id: "thermal_extra:rf_coil_augment_5" + } + ] + } + } + title: "Expanded RF Coil" + type: "item" + }] + title: "Expanded RF Coil" + x: 6.1499999999999995d + y: -9.45d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "61E2FC5D363A5CA4" + rewards: [ + { + id: "24191AE7CBEB00C7" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "11FECCB486A067CC" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases Efficiency at the cost of Speed" + tasks: [{ + id: "1E0593F1AA073CFD" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:machine_efficiency_augment" + } + { + Count: 1b + id: "thermal_extra:machine_efficiency_augment_1" + } + { + Count: 1b + id: "thermal_extra:machine_efficiency_augment_2" + } + { + Count: 1b + id: "thermal_extra:machine_efficiency_augment_3" + } + { + Count: 1b + id: "thermal_extra:machine_efficiency_augment_4" + } + ] + } + } + title: "Flux Efficiency" + type: "item" + }] + x: 5.8d + y: -8.75d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "74DD4F8A13EAD3ED" + rewards: [ + { + id: "4F2AF555A2256C5C" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "2C8F56AA6F68373B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases Processing Speed, but Reduces Efficiency" + tasks: [{ + id: "46E665F97A2BECB6" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:machine_speed_augment" + } + { + Count: 1b + id: "thermal_extra:machine_speed_augment_1" + } + { + Count: 1b + id: "thermal_extra:machine_speed_augment_2" + } + { + Count: 1b + id: "thermal_extra:machine_speed_augment_3" + } + { + Count: 1b + id: "thermal_extra:machine_speed_augment_4" + } + ] + } + } + title: "Flux Linkage Amplifier" + type: "item" + }] + x: 5.449999999999999d + y: -9.45d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "483C1F4D099369A2" + rewards: [ + { + id: "2DA04DA94AE48351" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "6F5075B240C4FF75" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Allows Storage of XP" + tasks: [{ + id: "66656B02B957573F" + item: "thermal:xp_storage_augment" + type: "item" + }] + x: 5.799999999999999d + y: -7.0d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "6D35E56FC874C841" + rewards: [ + { + id: "6AEA9539C6D25A98" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3AF3BA0B645E98A8" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + tasks: [{ + id: "1726C6AB09496E0C" + item: "thermal:item_filter_augment" + type: "item" + }] + x: 5.449999999999999d + y: -6.3d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "6DF4B859ACBCD408" + rewards: [ + { + id: "333167C98454B166" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "02C70E78C3A32459" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases Tank Storage" + tasks: [{ + id: "5DFD1C0334466FF2" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:fluid_tank_augment" + } + { + Count: 1b + id: "thermal_extra:fluid_tank_augment_1" + } + { + Count: 1b + id: "thermal_extra:fluid_tank_augment_2" + } + { + Count: 1b + id: "thermal_extra:fluid_tank_augment_3" + } + { + Count: 1b + id: "thermal_extra:fluid_tank_augment_4" + } + { + Count: 1b + id: "thermal_extra:fluid_tank_augment_5" + } + { + Count: 1b + id: "thermal_extra:fluid_tank_augment_6" + } + ] + } + } + title: "Expanded Tank Construction" + type: "item" + }] + x: 6.499999999999999d + y: -7.0d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "234CD79746FCAA18" + rewards: [ + { + id: "1422A0EEBB30AB27" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "28D8A59541BA2BD9" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Voids By-products" + tasks: [{ + id: "784D4494897AF202" + item: "thermal:machine_null_augment" + type: "item" + }] + x: 6.1499999999999995d + y: -6.3d + } + { + dependencies: ["34E6071AFEF22783"] + hide_dependency_lines: true + id: "00C24A7DFEAEE956" + rewards: [ + { + id: "160E72FA72E38599" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "5C5DF48993710A8C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.7d + subtitle: "Increases AoE Effect" + tasks: [{ + id: "705AE21001A4E9C7" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "thermal:area_radius_augment" + } + { + Count: 1b + id: "thermal_extra:area_radius_augment_1" + } + { + Count: 1b + id: "thermal_extra:area_radius_augment_2" + } + { + Count: 1b + id: "thermal_extra:area_radius_augment_3" + } + { + Count: 1b + id: "thermal_extra:area_radius_augment_4" + } + ] + } + } + title: "Radial Enchancement" + type: "item" + }] + x: 7.199999999999999d + y: -7.0d + } + { + dependencies: ["62B7B50F811DB8EF"] + hide_until_deps_complete: true + id: "1714E1048F01E1AA" + rewards: [ + { + id: "065A80C12CFDB394" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "21B37C1A65E0CD4F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + subtitle: "Increases Duration of Potion Effect" + tasks: [{ + id: "501A3B2548F6DB3E" + item: "thermal:potion_duration_augment" + type: "item" + }] + x: 0.25d + y: -1.0d + } + { + dependencies: ["62B7B50F811DB8EF"] + hide_until_deps_complete: true + id: "22A1C68078EFB38B" + rewards: [ + { + id: "16143BA782E3D869" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "71A3BF71BB323ED7" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + subtitle: "Amplifies Potion Effect" + tasks: [{ + id: "08ED05EBDFF0B4D9" + item: "thermal:potion_amplifier_augment" + type: "item" + }] + x: 1.0d + y: -0.25d + } + { + dependencies: ["75211647C7AD9691"] + hide_until_deps_complete: true + id: "73F411272DB4C8A9" + optional: true + rewards: [ + { + id: "08081BB217EFD7AF" + type: "xp" + xp: 100 + } + { + id: "40FD6E1513F13EB3" + item: "thermal:machine_frame" + type: "item" + } + { + exclude_from_claim_all: true + id: "1496A4969F1C7B8E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "5FC95450A45DFED6" + item: { + Count: 1 + id: "thermal:potion_infuser" + tag: { } + } + type: "item" + }] + x: -1.25d + y: -3.0d + } + { + dependencies: ["75211647C7AD9691"] + hide_until_deps_complete: true + id: "7F44CB700DDF1964" + optional: true + rewards: [ + { + id: "3E747DDABAEC106F" + type: "xp" + xp: 100 + } + { + count: 2 + id: "4ECDAC7D29F50781" + item: "alltheores:steel_gear" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "3F42F4E21EE0F10B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + size: 0.5d + tasks: [{ + id: "52D02A5EDF96F433" + item: { + Count: 1 + id: "thermal:potion_quiver" + tag: { } + } + type: "item" + }] + x: 0.25d + y: -3.0d + } + ] + title: "&3&oThermal Series" +} diff --git a/minecraft/config/ftbquests/quests/chapters/tinkers_construct.snbt b/minecraft/config/ftbquests/quests/chapters/tinkers_construct.snbt new file mode 100644 index 0000000..58927a1 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/tinkers_construct.snbt @@ -0,0 +1,4010 @@ +{ + autofocus_id: "03D428D3BB5C4C60" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "tinkers_construct" + group: "4E2A2310634498BA" + icon: { + Count: 1 + id: "tconstruct:creative_slot" + tag: { + slot: "upgrades" + } + } + id: "3D67528F44964049" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -4.5d + y: -6.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 10.0d + y: 0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/tin.png" + rotation: 48.0d + width: 1.0d + x: -4.5d + y: -9.0d + } + { + height: 1.0d + image: "kubejs:textures/item/gold.png" + rotation: 26.0d + width: 1.0d + x: 8.5d + y: -1.0d + } + { + height: 1.0d + image: "kubejs:textures/item/purple.png" + rotation: -47.0d + width: 1.0d + x: 6.0d + y: 0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/silver.png" + rotation: 0.0d + width: 1.0d + x: -4.0d + y: -4.0d + } + { + height: 1.0d + image: "kubejs:textures/item/gray.png" + rotation: -37.0d + width: 1.0d + x: -3.0d + y: -2.0d + } + { + height: 1.0d + image: "kubejs:textures/item/copper.png" + rotation: 27.0d + width: 1.0d + x: -9.0d + y: -7.0d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -6.285714285714285d + y: -9.632142857142856d + } + { + height: 2.1d + image: "kubejs:textures/item/tinkers.png" + rotation: 0.0d + width: 4.5d + x: 1.0d + y: -9.5d + } + ] + order_index: 6 + quest_links: [ ] + quests: [ + { + dependencies: ["3378DBA1114E2954"] + description: [ + "The &2Tinkers' Construct&r mod focuses on weapon and tool manufacturing." + "" + "The mod adds &o&bpatterns&r for tool and weapon &o&bparts&r that allow the player to create &nhundreds of combinations&r; each with their own &o&bstrengths&r, &o&bweaknesses&r, and &o&beffects&r." + "" + "After the tool or weapon is created, &nadditional&r materials may be installed &o&bto boost the item's abilities&r, or to simulate &o&bvanilla enchantments&r." + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/tc.png" + } + } + id: "247794E3ED9E0D65" + min_width: 300 + rewards: [ + { + id: "5E2D82DCA9B5A1CC" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "52B2D17A5091E112" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oIron Tools&r quest*" + tasks: [{ + id: "25C27D7B63CFAA20" + type: "checkmark" + }] + title: "Welcome to &2Tinkers' Construct" + x: -7.0d + y: -9.0d + } + { + dependencies: ["2F7D55EE5BE52446"] + description: ["To make &aSmeltery Controller&r, smelt 4 ingots of Copper in the Melter. Then place a Seared Brick in the Casting Basin and pour the molten copper over it."] + icon: { + Count: 1 + id: "tconstruct:smeltery_controller" + tag: { + texture: "tconstruct:seared_bricks" + } + } + id: "3061B917B5DC581C" + rewards: [ + { + id: "084B7F9C868504F5" + type: "xp" + xp: 50 + } + { + id: "1815040EC42D1585" + item: "tconstruct:seared_faucet" + type: "item" + } + { + exclude_from_claim_all: true + id: "31EFDCF341BEAFD4" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "4021F98E9C5C06EF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_bricks" + } + type: "item" + } + { + count: 4L + id: "47945557E7828582" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:copper_ingot" + } + type: "item" + } + { + id: "72ACCE744774D754" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:smeltery_controller" + tag: { + texture: "tconstruct:seared_bricks" + } + } + type: "item" + } + ] + title: "&aSmeltery Controller" + x: 0.0d + y: -7.0d + } + { + dependencies: ["2F7D55EE5BE52446"] + id: "236DE6E8512DE567" + rewards: [ + { + id: "5E86CB53BFF289D5" + type: "xp" + xp: 10 + } + { + count: 8 + id: "5D97C2C696BB9C90" + item: "tconstruct:clear_glass" + type: "item" + } + { + exclude_from_claim_all: true + id: "4E991254ABC7473B" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "&oCoal fuel source alternative instead Lava" + tasks: [{ + id: "4972C29DCDA9FDE3" + item: "tconstruct:seared_heater" + type: "item" + }] + x: -2.5d + y: -9.0d + } + { + dependencies: ["3061B917B5DC581C"] + description: [ + "It's time to build the real Smeltery." + "" + "This can be any size, up to 16x16x64, but it must be rectangular." + "" + "The basic standard Smeltery starts with a 3x3 base, usually in the ground." + "" + "We're gonna make little bigger then that. Let's build 5x5x4." + "" + "{image:kubejs:textures/item/t2_smelter.png width:200 height:100 align:1}" + ] + id: "1D4038F9AB73B8C0" + min_width: 300 + rewards: [ + { + id: "21948BF332602D75" + type: "xp" + xp: 20 + } + { + id: "5D804918FB3ECD4C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_fuel_tank" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "6FF8067693EA432B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [ + { + count: 64L + id: "2418682F2FE82838" + item: "tconstruct:seared_bricks" + type: "item" + } + { + id: "4E21A4551CCD78C8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_drain" + tag: { + texture: "tconstruct:seared_bricks" + } + } + type: "item" + } + ] + title: "Tier 2: &6&oThe Smeltery" + x: 0.0d + y: -3.5d + } + { + dependencies: ["5F3D0594173B14B7"] + id: "27B61D861AA4513B" + rewards: [ + { + id: "3A1BDB0E77F802EA" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "479B7A5EEB764528" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "780AC9D7738C651E" + item: "tconstruct:crafting_station" + type: "item" + } + { + id: "208509C383FA18B9" + item: "tconstruct:tinker_station" + type: "item" + } + { + id: "5A171F3EA336F15A" + item: "tconstruct:part_builder" + type: "item" + } + ] + title: "&eTinker Stations" + x: -7.0d + y: -4.0d + } + { + dependencies: ["27B61D861AA4513B"] + id: "31B21AC67654A1EE" + rewards: [ + { + id: "762E05EBD6B2375D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "4D5BA28F147A09AC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "14AAAF63D637AA54" + item: "tconstruct:tinkers_chest" + type: "item" + }] + x: -8.5d + y: -4.0d + } + { + dependencies: ["27B61D861AA4513B"] + id: "415385C2E88B3B36" + rewards: [ + { + id: "6C2A6A788F184ECE" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "01D300BC9F4EF9A3" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "25117E6B27EB5FE4" + item: "tconstruct:part_chest" + type: "item" + }] + x: -8.0d + y: -3.0d + } + { + dependencies: ["27B61D861AA4513B"] + id: "2E220E25CB12ECAD" + rewards: [ + { + id: "791C5843B33938B8" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "3F48684D33FC6977" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "046F297DEBCFCCD3" + item: "tconstruct:cast_chest" + type: "item" + }] + x: -8.0d + y: -5.0d + } + { + dependencies: ["3637B30CBF8F7231"] + id: "1DC03339E7D90151" + rewards: [ + { + id: "440FA5AC85A5E624" + type: "xp" + xp: 10 + } + { + id: "3D2278D77A147F6C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:silky_cloth" + } + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "071F58FD7EE03E28" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3F00A059FF0E89E9" + item: "tconstruct:silky_cloth" + type: "item" + }] + x: 2.5d + y: -2.5d + } + { + dependencies: ["3637B30CBF8F7231"] + id: "34A04DFB7BC9D7C3" + rewards: [ + { + id: "1669EDA4979580BD" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "1E13F56C99858093" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [ + { + count: 16L + id: "5A21AEA8C74C9B98" + item: "tconstruct:earth_slime_crystal" + type: "item" + } + { + count: 16L + id: "2873EF7BDD8EE808" + item: "tconstruct:sky_slime_crystal" + type: "item" + } + { + count: 16L + id: "15ED3E8E2383A2BA" + item: "tconstruct:ichor_slime_crystal" + type: "item" + } + { + count: 16L + id: "701403C89ADB3743" + item: "tconstruct:ender_slime_crystal" + type: "item" + } + ] + title: "Crystals" + x: 4.5d + y: -2.5d + } + { + dependencies: ["247794E3ED9E0D65"] + id: "5F3D0594173B14B7" + rewards: [ + { + id: "107D29D44B4BF961" + type: "xp" + xp: 5 + } + { + count: 3 + id: "6569497E95F2338C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:pattern" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "75111C2941C006A0" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 6L + id: "3271C83621600A34" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:pattern" + } + type: "item" + }] + title: "Patterns" + x: -7.0d + y: -6.5d + } + { + dependencies: ["3637B30CBF8F7231"] + id: "1AE2A9004E1663A6" + rewards: [ + { + id: "4AA600203F796F12" + type: "xp" + xp: 100 + } + { + count: 3 + id: "2358F224F2AB4952" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:iron_reinforcement" + } + random_bonus: 2 + type: "item" + } + { + count: 3 + id: "07EC8EBB85C222C8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:slimesteel_reinforcement" + } + random_bonus: 2 + type: "item" + } + { + count: 3 + id: "6CC1853A38B50765" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_reinforcement" + } + random_bonus: 2 + type: "item" + } + { + count: 3 + id: "25EBE306B852C0C6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:gold_reinforcement" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "096A92E437B70555" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [ + { + id: "6B192811AB693B0D" + item: "tconstruct:iron_reinforcement" + type: "item" + } + { + id: "668E27EB7F41B383" + item: "tconstruct:slimesteel_reinforcement" + type: "item" + } + { + id: "64013E238393F780" + item: "tconstruct:seared_reinforcement" + type: "item" + } + { + id: "72AEBFF2DA8B6CA7" + item: "tconstruct:gold_reinforcement" + type: "item" + } + ] + title: "Reinforcements" + x: 3.0d + y: -2.0d + } + { + dependencies: ["3637B30CBF8F7231"] + id: "0FCCDD7C75FC8564" + rewards: [ + { + id: "0E2CCF3F18B62BE8" + type: "xp" + xp: 10 + } + { + count: 3 + id: "3962EA441FA109D6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:emerald_reinforcement" + } + random_bonus: 2 + type: "item" + } + { + count: 3 + id: "0D6800FC57920BA6" + item: "tconstruct:obsidian_reinforcement" + random_bonus: 2 + type: "item" + } + { + count: 3 + id: "0A84D9F82C60BEE6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:cobalt_reinforcement" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "270B37DC092CD618" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [ + { + id: "6DCC64BA08D0EFC5" + item: "tconstruct:emerald_reinforcement" + type: "item" + } + { + id: "1024535A7F3D4A74" + item: "tconstruct:obsidian_reinforcement" + type: "item" + } + { + id: "659DF012CBA0E19E" + item: "tconstruct:cobalt_reinforcement" + type: "item" + } + ] + title: "More Reinforcements" + x: 4.0d + y: -2.0d + } + { + dependencies: ["1D4038F9AB73B8C0"] + description: [ + "Using Cobalt from the Nether, you can create yourself a customizable set of &9Plate Armor&r." + "" + "Each piece of Plate Armor has high durability and armor, and they all come with:" + "" + "- 1 Upgrade Slot" + "- 4 Defense Slots" + "- 1 Ability Slot" + ] + id: "0B6AEE7A98A236F3" + rewards: [ + { + id: "0AE0471AA794946D" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "27C0F2CC0ADFD0AA" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 1.5d + tasks: [ + { + count: 18L + id: "17EBF6608340B4F5" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:cobalt_ingot" + } + type: "item" + } + { + count: 8L + id: "24DB4A6027BE6498" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:iron_ingot" + } + type: "item" + } + ] + title: "Plate Armor" + x: 0.0d + y: -1.0d + } + { + dependencies: ["05D98BA2878971D8"] + hide_until_deps_complete: true + id: "7E77E5B9D1FAC02C" + rewards: [ + { + id: "3EEF453A13476B6D" + type: "xp" + xp: 100 + } + { + id: "3E7491ED664DF88E" + item: "tconstruct:broad_axe_head_cast" + type: "item" + } + { + id: "5E9C1FCC9C9379AC" + item: "tconstruct:hammer_head_cast" + type: "item" + } + { + id: "32FBFB3A88B90A23" + item: "tconstruct:broad_blade_cast" + type: "item" + } + { + id: "1BB90C1E2761240A" + item: "tconstruct:wire_cast" + type: "item" + } + { + exclude_from_claim_all: true + id: "5386134CE3E7128B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "5D96BFAB49C11829" + item: "tconstruct:gem_cast" + type: "item" + } + { + id: "604F2C7199CBB124" + item: "tconstruct:nugget_cast" + type: "item" + } + { + id: "6062966044BA52F8" + item: "tconstruct:repair_kit_cast" + type: "item" + } + { + id: "00095490E7953089" + item: "tconstruct:rod_cast" + type: "item" + } + { + id: "127F5AB36D7E306F" + item: "tconstruct:plate_cast" + type: "item" + } + { + id: "36BA34AA04EC1B24" + item: "tconstruct:gear_cast" + type: "item" + } + { + id: "058E6FC384DD29D5" + item: "tconstruct:large_plate_cast" + type: "item" + } + { + id: "1340F64ABBE1C4D8" + item: "tconstruct:tool_handle_cast" + type: "item" + } + { + id: "22B6672965393232" + item: "tconstruct:tough_handle_cast" + type: "item" + } + { + id: "551FDD153CF5B576" + item: "tconstruct:tool_binding_cast" + type: "item" + } + { + id: "7E95621374784E22" + item: "tconstruct:small_axe_head_cast" + type: "item" + } + { + id: "6CA5E1D678DC6BEB" + item: "tconstruct:pick_head_cast" + type: "item" + } + { + id: "5E0694CC8255D2F5" + item: "tconstruct:small_blade_cast" + type: "item" + } + ] + title: "More Useful Casts" + x: -2.5d + y: -5.5d + } + { + dependencies: ["2CF1FFFDCF5A891E"] + icon: { + Count: 1 + id: "tconstruct:tinkers_anvil" + tag: { + texture: "tconstruct:hepatizon_block" + } + } + id: "03D428D3BB5C4C60" + rewards: [ + { + id: "37F1AD22C446142E" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "04F1D02AFFB835B6" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "0C267E8C8B050DD1" + item: { + Count: 1 + id: "itemfilters:id_regex" + tag: { + value: "^tconstruct:.*anvil.*" + } + } + title: "Any Tinker's Anvil" + type: "item" + }] + title: "Tinker's Anvil" + x: 3.5d + y: -4.5d + } + { + dependencies: ["27B61D861AA4513B"] + id: "5B01E8C22DC85F57" + rewards: [ + { + id: "5608D964A24BD91E" + type: "xp" + xp: 30 + } + { + count: 8 + id: "482EFCAC90C47E6B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:grout" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "0B8B35D224114351" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 32L + id: "77BE56D363DE5A46" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:grout" + } + type: "item" + }] + title: "Grout" + x: -5.5d + y: -7.5d + } + { + dependencies: ["27B61D861AA4513B"] + id: "5F5BE36E289B1B19" + rewards: [ + { + id: "6ABA59AAF20BAC88" + type: "xp" + xp: 20 + } + { + count: 16 + id: "7A901708E810B40A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:cobblestone" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "10AA77E2702A259D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "5FAAC0A5B79334AD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:pick_head" + tag: { + Material: "tconstruct:rock" + } + } + type: "item" + } + { + id: "3E92E9B8E5A83680" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:small_axe_head" + tag: { + Material: "tconstruct:rock" + } + } + type: "item" + } + { + id: "05296DE866EA5F42" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:tool_binding" + tag: { + Material: "tconstruct:rock" + } + } + type: "item" + } + { + id: "727642594DC4A69B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:tool_handle" + tag: { + Material: "tconstruct:rock" + } + } + type: "item" + } + ] + title: "Tool Parts" + x: -7.0d + y: -1.5d + } + { + dependencies: ["5F5BE36E289B1B19"] + id: "6D02F65F8994ECA0" + rewards: [ + { + id: "63245988CBFB9211" + type: "xp" + xp: 70 + } + { + exclude_from_claim_all: true + id: "0284FB6398327433" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "7A224F59056D40BD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:pickaxe" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:rock" + "tconstruct:rock" + "tconstruct:rock" + ] + tic_modifiers: [ + { + level: 1 + name: "tconstruct:pierce" + } + { + level: 3 + name: "tconstruct:stonebound" + } + ] + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 3 + } + tic_stats: { + "tconstruct:attack_damage": 2.0f + "tconstruct:attack_speed": 1.2f + "tconstruct:durability": 117.0f + "tconstruct:harvest_tier": "minecraft:stone" + "tconstruct:mining_speed": 4.2f + } + tic_volatile_data: { + abilities: 1 + upgrades: 3 + } + } + } + type: "item" + } + { + id: "2A126F56DCDDB7D6" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:hand_axe" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:rock" + "tconstruct:rock" + "tconstruct:rock" + ] + tic_modifiers: [ + { + level: 1 + name: "tconstruct:stripping" + } + { + level: 3 + name: "tconstruct:stonebound" + } + ] + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 3 + } + tic_stats: { + "tconstruct:attack_damage": 7.0f + "tconstruct:attack_speed": 0.9f + "tconstruct:durability": 117.0f + "tconstruct:harvest_tier": "minecraft:stone" + "tconstruct:mining_speed": 4.2f + } + tic_volatile_data: { + abilities: 1 + upgrades: 3 + } + } + } + type: "item" + } + ] + title: "First Tools" + x: -5.5d + y: -1.5d + } + { + dependencies: ["6D02F65F8994ECA0"] + id: "334C93285D247CA5" + rewards: [ + { + id: "1A32B2565E511016" + type: "xp" + xp: 40 + } + { + id: "6E2FC45E25CA343D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:repair_kit" + tag: { + Material: "tconstruct:rock" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "40DAF6759ACD68AF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2C0809323E2AB430" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:repair_kit" + tag: { + Material: "tconstruct:rock" + } + } + type: "item" + }] + x: -5.5d + y: -2.5d + } + { + dependencies: ["5B01E8C22DC85F57"] + id: "5FD52011D5A2B1F2" + rewards: [ + { + id: "17BB74EC2124457E" + type: "xp" + xp: 20 + } + { + id: "1E1D70C31791470D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_paver" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "7253385FE4B7F89A" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "43F991E4190FD6FA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_brick" + } + type: "item" + }] + x: -4.0d + y: -7.5d + } + { + dependencies: ["5FD52011D5A2B1F2"] + description: [ + "To assemble the Melter, first place down the Seared Heater or Fuel Tank in a location of your choosing. Above it, place down the Seared Melter. Place the Seared Casting Basin adjacent to the Seared Heater, and make sure the Faucet is placed on the Seared Melter, and resting above your Casting Basin." + "" + "{image:kubejs:textures/item/t1_smelter.png width:150 height:100 align:1}" + ] + icon: "tconstruct:seared_melter" + id: "2F7D55EE5BE52446" + min_width: 300 + rewards: [ + { + id: "19CF3D0AA2CA73DF" + type: "xp" + xp: 150 + } + { + id: "59B5FFC799C988A5" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:lava_bucket" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0229E9AB96AB475B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + tasks: [ + { + id: "04A09996C0960297" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_melter" + } + type: "item" + } + { + id: "050CA6FE882A1CD7" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_fuel_tank" + } + type: "item" + } + { + id: "1467DCE4CCD171A1" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_basin" + } + type: "item" + } + { + id: "5679B94D25F14809" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_table" + } + type: "item" + } + { + count: 3L + id: "3492C8B395CB67A1" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_faucet" + } + type: "item" + } + { + id: "06AF0556AC13241B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:lava_bucket" + } + type: "item" + } + ] + title: "Tier 1: &d&oThe Melter" + x: -2.5d + y: -7.5d + } + { + dependencies: ["2F7D55EE5BE52446"] + id: "48054FCED1533A54" + rewards: [ + { + id: "0A1DB8CA97791FAD" + type: "xp" + xp: 20 + } + { + id: "1E8BDF2E85A591A3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:blank_sand_cast" + } + type: "item" + } + { + id: "1725A01618AA8B55" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:blank_red_sand_cast" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "74CD672826D7CAD1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "4C9D99C22321D4F2" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "tconstruct:casts/single_use/blank" + } + } + title: "Any tconstruct:casts/single_use/blank" + type: "item" + }] + title: "Single-Use Metal Casts" + x: -3.0d + y: -6.5d + } + { + dependencies: ["2F7D55EE5BE52446"] + id: "05D98BA2878971D8" + rewards: [ + { + id: "68DC155AE13BD76B" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3F43A58753DB22E1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6CB0D230F928FDA7" + item: { + Count: 1 + id: "itemfilters:tag" + tag: { + value: "tconstruct:casts/multi_use/ingot" + } + } + title: "Any tconstruct:casts/multi_use/ingot" + type: "item" + }] + title: "Reusable Metal Casts" + x: -2.0d + y: -6.5d + } + { + dependencies: ["1D4038F9AB73B8C0"] + description: [ + "Aside from the Seared Drain, there are more ways to pump fluids and items into or out of your Smeltery." + "" + "The &9Seared Duct&r allows you to pump specific fluids out of your Smeltery. To do this, fill a Copper Can or Bucket filled with the fluid you wish to filter out, then put it inside of the Duct to act as a filter. This will then be shown in the middle of the Duct." + "" + "The &6Seared Chute&r allows you to pump items into the Smeltery." + ] + id: "1F9E5228D533A097" + min_width: 250 + rewards: [ + { + id: "3409FC0AE19D58DD" + type: "xp" + xp: 100 + } + { + count: 8 + id: "29B60D9B5852C2D2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_fancy_bricks" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "1DB02032288FDD09" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "2A25880A1D6D42E1" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_duct" + tag: { + texture: "tconstruct:seared_bricks" + } + } + type: "item" + } + { + id: "2388A5E446E5AC0E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_chute" + tag: { + texture: "tconstruct:seared_bricks" + } + } + type: "item" + } + ] + title: "Input \\& Output" + x: -1.5d + y: -4.0d + } + { + dependencies: ["1D4038F9AB73B8C0"] + description: ["These blocks can be used as a replacement for Seared Bricks, while still making the Smeltery functional!"] + id: "5E58070642D270A0" + rewards: [ + { + id: "143062133F959558" + type: "xp" + xp: 50 + } + { + count: 5 + id: "59DB238FC711725C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_ladder" + } + type: "item" + } + { + count: 2 + id: "73E81E62000B1152" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_glass" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "3462DB9CFE275C8E" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "25ACBC8F4CECA007" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_ladder" + } + type: "item" + } + { + id: "69C5D720025B7D8D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:seared_glass" + } + type: "item" + } + ] + title: "Customizing the Smeltery" + x: -1.5d + y: -3.0d + } + { + dependencies: ["1D4038F9AB73B8C0"] + id: "2CF1FFFDCF5A891E" + rewards: [ + { + id: "13A5C9FB7A2027A9" + type: "xp" + xp: 500 + } + { + exclude_from_claim_all: true + id: "252A9A4B63720912" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "0008F8FD1AA10EEB" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "alltheores:bronze_ingot" + } + type: "item" + } + { + id: "3B146FC381EF2132" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "alltheores:brass_ingot" + } + type: "item" + } + { + id: "3C2BF7A2268D16B2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:amethyst_bronze_ingot" + } + type: "item" + } + { + id: "0BC0BC04F26D4AC3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "alltheores:constantan_ingot" + } + type: "item" + } + { + id: "543947CD4074265E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "alltheores:invar_ingot" + } + type: "item" + } + { + id: "32C8853B9762A65C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "alltheores:electrum_ingot" + } + type: "item" + } + { + id: "0D9FCAA4BAEAA513" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(forge:ingots/rose_gold)" + } + } + title: "Any #forge:ingots/rose_gold" + type: "item" + } + ] + title: "&9Some Basic Alloys" + x: 2.0d + y: -4.5d + } + { + dependencies: ["2CF1FFFDCF5A891E"] + id: "48853E9E037609F2" + rewards: [ + { + id: "19313C5DA68CFF9C" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "055B0846A4C29CAF" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "12C08E831DD18B5A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:slimesteel_ingot" + } + type: "item" + } + { + id: "649CF4A91478D125" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:queens_slime_ingot" + } + type: "item" + } + { + id: "7BAC20B70D41E2C3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:manyullyn_ingot" + } + type: "item" + } + { + id: "45D26D6002B986A4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:hepatizon_ingot" + } + type: "item" + } + { + id: "26F117D6835F174A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "alltheores:signalum_ingot" + } + type: "item" + } + { + id: "1540B9CA1D0BA5E8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "alltheores:lumium_ingot" + } + type: "item" + } + { + id: "2488249D5DBCF30E" + item: "alltheores:enderium_ingot" + type: "item" + } + ] + title: "&4Some Advanced Alloys" + x: 2.0d + y: -5.5d + } + { + dependencies: ["03D428D3BB5C4C60"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "36CE77866AD129AF" + rewards: [ + { + id: "7F215E4C3B479478" + type: "xp" + xp: 100 + } + { + id: "4D28DADC54DE49A0" + item: "minecraft:iron_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "0F0C077D14DBA25B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "51727838637E3922" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:sledge_hammer" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + ] + tic_modifiers: [ + { + level: 4 + name: "tconstruct:magnetic" + } + { + level: 2 + name: "tconstruct:smite" + } + ] + tic_multipliers: { + "tconstruct:attack_damage": 1.35f + "tconstruct:durability": 4.0f + "tconstruct:mining_speed": 0.4f + } + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 2 + } + tic_stats: { + "tconstruct:attack_damage": 6.75f + "tconstruct:attack_speed": 0.75f + "tconstruct:durability": 1100.0f + "tconstruct:harvest_tier": "minecraft:iron" + "tconstruct:mining_speed": 2.4f + } + tic_volatile_data: { + abilities: 1 + upgrades: 2 + } + } + } + type: "item" + }] + x: 5.0d + y: -6.5d + } + { + dependencies: ["03D428D3BB5C4C60"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "5B60D4D145E3F699" + rewards: [ + { + id: "7C06301D60DAB291" + type: "xp" + xp: 100 + } + { + id: "54E94B3C5F491620" + item: "minecraft:iron_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "440C0B477D6F9935" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6EBB6268CEDACE2A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:excavator" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + ] + tic_modifiers: [ + { + level: 4 + name: "tconstruct:magnetic" + } + { + level: 2 + name: "tconstruct:knockback" + } + { + level: 1 + name: "tconstruct:pathing" + } + ] + tic_multipliers: { + "tconstruct:attack_damage": 1.2f + "tconstruct:durability": 3.75f + "tconstruct:mining_speed": 0.3f + } + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 2 + } + tic_stats: { + "tconstruct:attack_damage": 4.2000003f + "tconstruct:durability": 1031.25f + "tconstruct:harvest_tier": "minecraft:iron" + "tconstruct:mining_speed": 1.8000001f + } + tic_volatile_data: { + abilities: 1 + upgrades: 2 + } + } + } + type: "item" + }] + x: 4.0d + y: -6.5d + } + { + dependencies: ["03D428D3BB5C4C60"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "73C47E42CE2FE11F" + rewards: [ + { + id: "682F880D17D0AB48" + type: "xp" + xp: 100 + } + { + id: "7C1B71ED8F8FBBE0" + item: "minecraft:iron_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "1A7BC71AC8DCA4DD" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3A455BA71DC129B7" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:vein_hammer" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + ] + tic_modifiers: [ + { + level: 4 + name: "tconstruct:magnetic" + } + { + level: 2 + name: "tconstruct:pierce" + } + ] + tic_multipliers: { + "tconstruct:attack_damage": 1.25f + "tconstruct:durability": 5.0f + "tconstruct:mining_speed": 0.3f + } + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 2 + } + tic_stats: { + "tconstruct:attack_damage": 7.5f + "tconstruct:attack_speed": 0.85f + "tconstruct:durability": 1375.0f + "tconstruct:harvest_tier": "minecraft:iron" + "tconstruct:mining_speed": 1.8000001f + } + tic_volatile_data: { + abilities: 1 + upgrades: 2 + } + } + } + type: "item" + }] + x: 4.0d + y: -7.5d + } + { + dependencies: ["03D428D3BB5C4C60"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "1D1F391231F95E75" + rewards: [ + { + id: "7D2493604C315D9D" + type: "xp" + xp: 100 + } + { + id: "3DDC912E9D07AEEF" + item: "minecraft:iron_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "4876852AB2E24D88" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3692518323B98F09" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scythe" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + ] + tic_modifiers: [ + { + level: 4 + name: "tconstruct:magnetic" + } + { + level: 1 + name: "tconstruct:tilling" + } + { + level: 1 + name: "tconstruct:silky_aoe_shears" + } + { + level: 1 + name: "tconstruct:harvest" + } + ] + tic_multipliers: { + "tconstruct:durability": 2.5f + "tconstruct:mining_speed": 0.45f + } + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 2 + } + tic_stats: { + "tconstruct:attack_damage": 3.0f + "tconstruct:attack_speed": 0.7f + "tconstruct:durability": 687.5f + "tconstruct:harvest_tier": "minecraft:iron" + "tconstruct:mining_speed": 2.6999998f + } + tic_volatile_data: { + abilities: 1 + upgrades: 2 + } + } + } + type: "item" + }] + x: 4.5d + y: -8.0d + } + { + dependencies: ["03D428D3BB5C4C60"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "21E427D8F74C24F7" + rewards: [ + { + id: "3C87D7E7605E3D35" + type: "xp" + xp: 100 + } + { + id: "537EE083E2235043" + item: "minecraft:iron_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "0F8F22F9BF3C1EAC" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3D1DB69155F4CFE7" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:cleaver" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + ] + tic_modifiers: [ + { + level: 4 + name: "tconstruct:magnetic" + } + { + level: 2 + name: "tconstruct:severing" + } + { + level: 1 + name: "tconstruct:silky_aoe_shears" + } + ] + tic_multipliers: { + "tconstruct:attack_damage": 1.5f + "tconstruct:durability": 3.5f + "tconstruct:mining_speed": 0.25f + } + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 2 + } + tic_stats: { + "tconstruct:attack_damage": 7.5f + "tconstruct:block_amount": 10.0f + "tconstruct:durability": 962.5f + "tconstruct:harvest_tier": "minecraft:iron" + "tconstruct:mining_speed": 1.5f + } + tic_volatile_data: { + abilities: 1 + upgrades: 2 + } + } + } + type: "item" + }] + x: 4.5d + y: -7.0d + } + { + dependencies: ["03D428D3BB5C4C60"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "7C3C161056606CB3" + rewards: [ + { + id: "712D84F8BEE2EBBB" + type: "xp" + xp: 100 + } + { + id: "732A2EAFC4F5B428" + item: "minecraft:iron_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "2D01CEF0210D6136" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "06A6114D61256AAD" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:broad_axe" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + ] + tic_modifiers: [ + { + level: 4 + name: "tconstruct:magnetic" + } + { + level: 1 + name: "tconstruct:stripping" + } + ] + tic_multipliers: { + "tconstruct:attack_damage": 1.65f + "tconstruct:durability": 4.25f + "tconstruct:mining_speed": 0.3f + } + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 2 + } + tic_stats: { + "tconstruct:attack_damage": 11.55f + "tconstruct:attack_speed": 0.6f + "tconstruct:durability": 1168.75f + "tconstruct:harvest_tier": "minecraft:iron" + "tconstruct:mining_speed": 1.8000001f + } + tic_volatile_data: { + abilities: 1 + upgrades: 2 + } + } + } + type: "item" + }] + x: 5.0d + y: -7.5d + } + { + dependencies: ["03D428D3BB5C4C60"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "532ADD5C721C0962" + rewards: [ + { + id: "643B5C1F7D52DA75" + type: "xp" + xp: 100 + } + { + id: "4E724404C2670E55" + item: "minecraft:iron_ingot" + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "3C0770CC61EF9194" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5C29DC5035C92F50" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + "dungeons_libraries:ranged_abilities": { + crossbowChargeTime: 0 + fuseShotCounter: 0 + lastFiredTime: 0L + } + } + id: "tconstruct:longbow" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:iron" + "tconstruct:string" + ] + tic_modifiers: [ + { + level: 3 + name: "tconstruct:magnetic" + } + { + level: 1 + name: "tconstruct:stringy" + } + ] + tic_multipliers: { + "tconstruct:durability": 1.5f + } + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 2 + } + tic_stats: { + "tconstruct:attack_damage": 2.0f + "tconstruct:draw_speed": 0.6f + "tconstruct:durability": 1023.0f + "tconstruct:velocity": 1.2f + } + tic_volatile_data: { + abilities: 1 + upgrades: 2 + } + } + } + type: "item" + }] + x: 4.5d + y: -6.0d + } + { + dependencies: ["0B6AEE7A98A236F3"] + id: "3A7869931B4EEBA5" + rewards: [ + { + id: "17F819DC280BD248" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7B69E7D6B6CC5568" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "03519D844CF0F32B" + item: { + Count: 1 + id: "tconstruct:plate_helmet" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:cobalt" + "tconstruct:cobalt" + ] + tic_modifiers: [{ + level: 2 + name: "tconstruct:melee_protection" + }] + tic_persistent: { } + tic_stats: { + "tconstruct:armor": 2.0f + "tconstruct:armor_toughness": 1.0f + "tconstruct:durability": 330.0f + "tconstruct:knockback_resistance": 0.05f + } + tic_volatile_data: { + defense: 3 + upgrades: 2 + } + } + } + type: "item" + }] + x: -1.0d + y: -0.5d + } + { + dependencies: ["0B6AEE7A98A236F3"] + id: "5BF8F04EED91B708" + rewards: [ + { + id: "7476FDAAF2635E23" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0504A22874F87504" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5F24217F1E527FF7" + item: { + Count: 1 + id: "tconstruct:plate_leggings" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:cobalt" + "tconstruct:cobalt" + ] + tic_modifiers: [{ + level: 2 + name: "tconstruct:melee_protection" + }] + tic_persistent: { } + tic_stats: { + "tconstruct:armor": 5.0f + "tconstruct:armor_toughness": 1.0f + "tconstruct:durability": 450.0f + "tconstruct:knockback_resistance": 0.05f + } + tic_volatile_data: { + defense: 3 + upgrades: 2 + } + } + } + type: "item" + }] + x: 1.0d + y: -0.5d + } + { + dependencies: ["0B6AEE7A98A236F3"] + id: "70AD7002034EBADE" + rewards: [ + { + id: "415199F3C3A7DCD6" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "7ED6382CE1DA143A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3C4688F62872E4EE" + item: { + Count: 1 + id: "tconstruct:plate_boots" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:cobalt" + "tconstruct:cobalt" + ] + tic_modifiers: [{ + level: 2 + name: "tconstruct:melee_protection" + }] + tic_persistent: { } + tic_stats: { + "tconstruct:armor": 2.0f + "tconstruct:armor_toughness": 1.0f + "tconstruct:durability": 390.0f + "tconstruct:knockback_resistance": 0.05f + } + tic_volatile_data: { + defense: 3 + upgrades: 2 + } + } + } + type: "item" + }] + x: 0.5d + y: 0.0d + } + { + dependencies: ["1F9E5228D533A097"] + hide_until_deps_complete: true + id: "44FCD394538D2853" + rewards: [ + { + id: "5F43C4FB6610AF24" + type: "xp" + xp: 25 + } + { + exclude_from_claim_all: true + id: "7E2008C46449AE92" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + count: 3L + id: "2AD613A23CF3A8CA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:copper_can" + } + type: "item" + }] + title: "Copper Can" + x: -2.5d + y: -3.5d + } + { + dependencies: ["03D428D3BB5C4C60"] + id: "3637B30CBF8F7231" + rewards: [ + { + id: "7043CAF0AAEA7123" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "06A0DF21F43147DE" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "29B3948A53F39DF2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:modifier_worktable" + tag: { + texture: "minecraft:cobblestone" + } + } + type: "item" + }] + x: 3.5d + y: -3.0d + } + { + dependencies: ["6D02F65F8994ECA0"] + description: [ + "Using the Tinker Station or Modifire Wortable you can modify your tools." + "" + "Modifiers add special stats and abilities to your tools based on the modifier type." + ] + hide_dependency_lines: true + icon: { + Count: 1 + id: "tconstruct:modifier_crystal" + tag: { + modifier: "tconstruct:draconic" + } + } + id: "53CD3045DE0E40DB" + rewards: [ + { + id: "45016A7863A1996B" + type: "xp" + xp: 35 + } + { + exclude_from_claim_all: true + id: "5511FB058852669E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + size: 1.5d + tasks: [{ + id: "11230753F260973D" + type: "checkmark" + }] + title: "Modifiers" + x: 3.5d + y: -1.0d + } + { + dependencies: ["53CD3045DE0E40DB"] + description: [ + "These modifiers are applied to Armor, which gives certain defense abilities." + "" + "If you're looking to check out all of the available Defense Modifiers, check out the book &aMighty Smelting&r." + ] + icon: { + Count: 1 + id: "tconstruct:travelers_shield" + tag: { + Damage: 0 + tic_broken: 0b + tic_modifiers: [ + { + level: 1 + name: "tconstruct:tanned" + } + { + level: 1 + name: "tconstruct:blocking" + } + ] + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + defense: 2 + upgrades: 3 + } + tic_stats: { + "tconstruct:block_amount": 10.0f + "tconstruct:block_angle": 90.0f + "tconstruct:durability": 200.0f + "tconstruct:use_item_speed": 0.8f + } + tic_volatile_data: { + abilities: 1 + defense: 2 + upgrades: 3 + } + } + } + id: "24A4B5B9F20695A8" + rewards: [ + { + id: "6CC46FB8062F43B5" + type: "xp" + xp: 35 + } + { + exclude_from_claim_all: true + id: "152EAEE689256E38" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "473D40C84F243433" + type: "checkmark" + }] + title: "Defense Modifiers" + x: 2.5d + y: -0.5d + } + { + dependencies: ["53CD3045DE0E40DB"] + description: [ + "Abilities are powerful modifiers, like Silk Touch." + "" + "Abilities require ability slots on the tool, which most tools start with at least one slot. You can only add 1 more ability slot per tool!" + "" + "The book &aMighty Smelting&r lists all available abilities that can be placed on tools." + ] + icon: { + Count: 1 + id: "tconstruct:pickaxe" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tcintegrations:livingrock" + "tcintegrations:livingrock" + "tconstruct:rose_gold" + ] + tic_modifiers: [ + { + level: 1 + name: "tconstruct:pierce" + } + { + level: 2 + name: "tconstruct:stonebound" + } + { + level: 1 + name: "tconstruct:enhanced" + } + ] + tic_persistent: { } + tic_persistent_data: { + abilities: 1 + upgrades: 3 + } + tic_stats: { + "tconstruct:attack_damage": 2.4f + "tconstruct:attack_speed": 1.2f + "tconstruct:durability": 156.0f + "tconstruct:harvest_tier": "minecraft:stone" + "tconstruct:mining_speed": 4.0f + } + tic_volatile_data: { + abilities: 1 + upgrades: 4 + } + } + } + id: "0344220D9EAAB079" + rewards: [ + { + id: "696E832CB99DBB77" + type: "xp" + xp: 35 + } + { + exclude_from_claim_all: true + id: "62350B40B0F1846F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "26B586C763AC501D" + type: "checkmark" + }] + title: "Tool Abilities" + x: 3.0d + y: 0.0d + } + { + dependencies: ["53CD3045DE0E40DB"] + description: [ + "Slotless Modifiers do not require a slot to add. You can add as many as you'd like." + "" + "To see a list of available Slotless Modifiers, check out the book &aPuny Smelting&r." + ] + icon: "minecraft:enchanted_golden_apple" + id: "7AE6CD14B2C21D76" + rewards: [ + { + id: "7A379BE33616EB7E" + type: "xp" + xp: 35 + } + { + exclude_from_claim_all: true + id: "5472D336AB034619" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "58F88598CA8F3E97" + type: "checkmark" + }] + title: "Slotless Modifiers" + x: 3.5d + y: 0.5d + } + { + dependencies: ["53CD3045DE0E40DB"] + description: [ + "Each tool starts with 3 to 4 upgrade slots." + "These slots can be used to enhance the tool." + "" + "Make sure to check out the book &aPuny Smelting&r to see all of the available upgrades!" + ] + icon: "minecraft:redstone_block" + id: "2EA0E4ABED5CE3A2" + rewards: [ + { + id: "3B4EEACEF06EEFD8" + type: "xp" + xp: 35 + } + { + exclude_from_claim_all: true + id: "60A049673E5F9A99" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "178B537D64E0BD7E" + type: "checkmark" + }] + title: "Tool Upgrade Slots" + x: 4.0d + y: 0.0d + } + { + dependencies: ["53CD3045DE0E40DB"] + description: [ + "Traits are inborne abilities related to thecreation of the tool." + "" + "There are two basic types of traits: materialtraits which come from the materials chosen foreach part in the tool, and tool traits which arenative to the type of tool crafted." + "" + "To see all of the different kinds of traits, make sure to check out the books &aMaterials and You&r, &aMighty Smelting&r, and &aFantastic Foundry&r." + ] + icon: "tombstone:impregnated_diamond" + id: "66BC3254BC6368E3" + rewards: [ + { + id: "062D7FBDD207ED6E" + type: "xp" + xp: 35 + } + { + exclude_from_claim_all: true + id: "77DED11C390F605A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5D542CB6E878D778" + type: "checkmark" + }] + title: "Traits" + x: 4.5d + y: -0.5d + } + { + dependencies: ["03D428D3BB5C4C60"] + id: "57140FE6A1EF90DC" + rewards: [ + { + id: "56299C466E5E7CE4" + type: "xp" + xp: 75 + } + { + count: 8 + id: "299F4D92390CB11B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:nether_grout" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "693B2CA3DE388C5D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 32L + id: "675708DFC08C5ECE" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:nether_grout" + } + type: "item" + }] + title: "Nether Grout" + x: 5.5d + y: -3.5d + } + { + dependencies: ["57140FE6A1EF90DC"] + id: "65C243B23A77419D" + rewards: [ + { + id: "6667C48E3D4C3677" + type: "xp" + xp: 75 + } + { + count: 4 + id: "05DAFEB23BCD2599" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_brick" + } + random_bonus: 6 + type: "item" + } + { + exclude_from_claim_all: true + id: "2AB5434009C2E537" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 16L + id: "3B49D0E7838AF7E9" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_brick" + } + type: "item" + }] + title: "Scorched Bricks" + x: 7.0d + y: -3.5d + } + { + dependencies: ["65C243B23A77419D"] + description: ["To make &9Foundry Controller&r, place a Scorched Brick in a Casting Basin, then pour at least 1 block's worth of Obsidian over it."] + icon: { + Count: 1 + id: "tconstruct:foundry_controller" + tag: { + texture: "tconstruct:scorched_bricks" + } + } + id: "39823A640390E81E" + rewards: [ + { + id: "3D5334E55BF651E6" + type: "xp" + xp: 250 + } + { + count: 4 + id: "34F95FC8DAAC7C0B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_bricks" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "225F4D6C51A77683" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "1AF1FFA11E84B7E3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_bricks" + } + type: "item" + } + { + id: "6E64AEF87DDBCF69" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:obsidian" + } + type: "item" + } + { + id: "1C6BCF9281EE026B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:foundry_controller" + tag: { + texture: "tconstruct:scorched_bricks" + } + } + type: "item" + } + ] + title: "&9Foundry Contorller" + x: 8.5d + y: -3.5d + } + { + dependencies: ["39823A640390E81E"] + description: [ + "The &bFoundry&r is just like the Smeltery, but doesn't create alloys." + "" + "The Foundry also creates &bByproducts&r from items smelted. For example, Copper can give Gold as a byproduct." + "" + "To make the Foundry, you'll need to build it like the Smeltery except you'll need to build the corners too." + "" + "{image:kubejs:textures/item/foundry.png width:170 height:120 align:1}" + ] + id: "2B4E9DB9EF3ABB83" + min_width: 400 + rewards: [ + { + id: "5ECFF993EC041A48" + type: "xp" + xp: 300 + } + { + id: "37A0640E45A1C77E" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_fuel_tank" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "2E81ECA6A2BD330F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "hexagon" + size: 1.5d + tasks: [ + { + count: 16L + id: "5FC73A6B430B6837" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_bricks" + } + type: "item" + } + { + id: "15ADCAACD5AB4421" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_drain" + tag: { + texture: "tconstruct:scorched_bricks" + } + } + type: "item" + } + { + id: "7098AF49B18603AF" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_fuel_tank" + } + type: "item" + } + { + id: "3874A349EBD7C70B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_basin" + } + type: "item" + } + { + id: "6E3B6144E506B2D4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_table" + } + type: "item" + } + { + count: 3L + id: "57A8CF0917C1C5B7" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_faucet" + } + type: "item" + } + ] + title: "Tier 3: &5&oThe Foundry" + x: 8.5d + y: -5.5d + } + { + dependencies: ["2B4E9DB9EF3ABB83"] + description: ["Just like the Smeltery, there are many blocks you can use that function as Foundry blocks when creating your Foundry."] + id: "2207D69580CDFBC1" + rewards: [ + { + id: "7338CBFEA64BA591" + type: "xp" + xp: 100 + } + { + count: 2 + id: "383643B86AB79687" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_ladder" + } + random_bonus: 2 + type: "item" + } + { + count: 2 + id: "2440608CEC06DA96" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_glass" + } + random_bonus: 3 + type: "item" + } + { + id: "505247E8B739BE35" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_duct" + tag: { + texture: "tconstruct:scorched_bricks" + } + } + type: "item" + } + { + id: "11D4F845CDF609AA" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_chute" + tag: { + texture: "tconstruct:scorched_bricks" + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "7FC3089510C54775" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "26254F9294ED11A3" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_ladder" + } + type: "item" + } + { + id: "5C3697891448587B" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_glass" + } + type: "item" + } + { + id: "770BA3A007B00D92" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_duct" + tag: { + texture: "tconstruct:scorched_bricks" + } + } + type: "item" + } + { + id: "0BA7386BCE54A593" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_chute" + tag: { + texture: "tconstruct:scorched_bricks" + } + } + type: "item" + } + ] + title: "Customizing the Foundry" + x: 10.0d + y: -5.5d + } + { + dependencies: ["2B4E9DB9EF3ABB83"] + description: [ + "Insert the molten ingots into each of the Ingot Tanks, and the Alloyer will create the alloy." + "{image:kubejs:textures/item/alloyer.png width:200 height:125 align:1}" + ] + id: "13F681789541595F" + min_width: 300 + rewards: [ + { + id: "65484E8F0FE75217" + type: "xp" + xp: 250 + } + { + id: "28D517DB0B913A11" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_ingot_tank" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "0D1F5146D54894C1" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "4BC0656E39D18301" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_alloyer" + } + type: "item" + } + { + id: "243643F928E79149" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_ingot_tank" + } + type: "item" + } + { + id: "2ABEC4261710935A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:scorched_fuel_tank" + } + type: "item" + } + ] + title: "&3The Alloyer" + x: 7.0d + y: -5.5d + } + { + dependencies: ["2B4E9DB9EF3ABB83"] + description: [ + "Lava will not cut it for smelting down ores like &6Allthemodium&r. For this you'll need something hotter." + "" + "There are several ways to get this. You can smelt Blaze Heads in the Foundry or smelt the Blazes directly." + ] + id: "36D18517BF55CE74" + min_width: 250 + rewards: [ + { + id: "5F6917A87077A0EC" + type: "xp" + xp: 300 + } + { + id: "43F8AFBE1036B640" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:blaze_head" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "04BFEBF4E0A11B37" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "147F998E576350C8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:blaze_head" + } + type: "item" + }] + title: "&eBlazing Blood" + x: 8.5d + y: -7.0d + } + { + dependencies: ["1D4038F9AB73B8C0"] + hide_dependency_lines: true + hide_until_deps_complete: true + id: "619AC188BEE13DEA" + optional: true + rewards: [ + { + id: "0E9CA5DE3266D354" + type: "xp_levels" + xp_levels: 2 + } + { + exclude_from_claim_all: true + id: "472DB70BBF35142C" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "4B5966702ED5BA82" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:earth_cake" + } + type: "item" + }] + x: -7.0d + y: 0.5d + } + { + dependencies: ["619AC188BEE13DEA"] + id: "7239CFEB58D42A32" + optional: true + rewards: [ + { + id: "28FD7B29D0E3864A" + type: "xp_levels" + xp_levels: 2 + } + { + exclude_from_claim_all: true + id: "5B6C10AAB87D14A7" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "6EA9AA1192F7615F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:sky_cake" + } + type: "item" + }] + x: -6.0d + y: 0.5d + } + { + dependencies: ["7239CFEB58D42A32"] + id: "6D2BA4C128D7DBA9" + optional: true + rewards: [ + { + id: "446479667DD75C60" + type: "xp_levels" + xp_levels: 2 + } + { + exclude_from_claim_all: true + id: "3E841645145FA49B" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "1CCC5DB9F5F704A2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:blood_cake" + } + type: "item" + }] + x: -5.0d + y: 0.5d + } + { + dependencies: ["6E746849EB9360D7"] + id: "76D27D3905B38997" + optional: true + rewards: [ + { + id: "3E79244A02F012B9" + type: "xp_levels" + xp_levels: 5 + } + { + exclude_from_claim_all: true + id: "31E53786A687C342" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "4BF23C0DBFC66129" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:ender_cake" + } + type: "item" + }] + x: -3.0d + y: 0.5d + } + { + dependencies: ["6D2BA4C128D7DBA9"] + id: "6E746849EB9360D7" + optional: true + rewards: [ + { + id: "5DBA90C076DC7376" + type: "xp_levels" + xp_levels: 2 + } + { + exclude_from_claim_all: true + id: "3AB79930CD12F69E" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "1D511B4A6A68B2B2" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:magma_cake" + } + type: "item" + }] + x: -4.0d + y: 0.5d + } + { + dependencies: ["6D02F65F8994ECA0"] + id: "4B07A74B35BDD349" + rewards: [ + { + id: "028D012736F9526C" + type: "xp" + xp: 50 + } + { + count: 3 + id: "7CC1A1F1C9107E7A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:quartz_shuriken" + } + random_bonus: 2 + type: "item" + } + { + exclude_from_claim_all: true + id: "1260C4A10D05904D" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "52B83FFCCA922DCE" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:flint_shuriken" + } + type: "item" + }] + title: "Shuriken" + x: -4.5d + y: -1.5d + } + { + dependencies: ["36D18517BF55CE74"] + id: "49CBE02C5398241D" + rewards: [ + { + id: "6F831D0A3268FFB8" + type: "xp" + xp: 100 + } + { + id: "1CB68E94794C8E38" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:jeweled_apple" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "01ABEB12E42B256B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "65015BEEEA567CAB" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:jeweled_apple" + } + type: "item" + }] + x: 10.0d + y: -7.0d + } + { + dependencies: ["6D02F65F8994ECA0"] + hide_until_deps_complete: true + id: "096F71DEEDF355E0" + rewards: [ + { + id: "50DF9B9878FD09D9" + type: "xp" + xp: 70 + } + { + id: "268262D97642D221" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:efln_ball" + } + type: "item" + } + { + exclude_from_claim_all: true + id: "09EEC9F51FC23FAE" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "octagon" + tasks: [{ + id: "13E9B080CBD095B8" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "tconstruct:efln_ball" + } + type: "item" + }] + x: -4.5d + y: -2.5d + } + { + dependencies: ["0B6AEE7A98A236F3"] + id: "7449CC6073120055" + rewards: [ + { + id: "20CDD8E17E1271D8" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "0909BE04526CDD40" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0839828C707F1C00" + item: { + Count: 1 + id: "tconstruct:plate_chestplate" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tconstruct:cobalt" + "tconstruct:cobalt" + ] + tic_modifiers: [{ + level: 2 + name: "tconstruct:melee_protection" + }] + tic_multipliers: { + "tconstruct:attack_damage": 0.4f + } + tic_persistent: { } + tic_stats: { + "tconstruct:armor": 7.0f + "tconstruct:armor_toughness": 1.0f + "tconstruct:durability": 480.0f + "tconstruct:knockback_resistance": 0.05f + } + tic_volatile_data: { + defense: 3 + upgrades: 2 + } + } + } + type: "item" + }] + x: -0.5d + y: 0.0d + } + { + dependencies: ["0B6AEE7A98A236F3"] + id: "16D632C3D7C2F5F4" + rewards: [ + { + id: "16D709F16EB8DD59" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "2986514464E0FE8F" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "616F81ECE66D7888" + item: { + Count: 1 + id: "tconstruct:plate_shield" + tag: { + Damage: 0 + tic_broken: 0b + tic_materials: [ + "tcintegrations:livingrock" + "tconstruct:cobalt" + ] + tic_modifiers: [ + { + level: 1 + name: "tconstruct:melee_protection" + } + { + level: 1 + name: "tconstruct:stonebound" + } + { + level: 1 + name: "tconstruct:blocking" + } + ] + tic_persistent: { } + tic_stats: { + "tconstruct:armor_toughness": 1.0f + "tconstruct:block_amount": 100.0f + "tconstruct:block_angle": 180.0f + "tconstruct:durability": 540.0f + "tconstruct:knockback_resistance": 0.05f + } + tic_volatile_data: { + defense: 3 + upgrades: 2 + } + } + } + type: "item" + }] + x: 0.0d + y: 0.5d + } + ] + title: "&3&oTinkers' Construct" +} diff --git a/minecraft/config/ftbquests/quests/chapters/tinkers_smeltery.snbt b/minecraft/config/ftbquests/quests/chapters/tinkers_smeltery.snbt new file mode 100644 index 0000000..a5bcb4e --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/tinkers_smeltery.snbt @@ -0,0 +1,51 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "tinkers_smeltery" + group: "" + id: "1758DD1992C1AF8F" + order_index: 4 + quest_links: [ ] + quests: [ + { + id: "0F09DF28E86D4937" + subtitle: "smelt grout" + tasks: [{ + id: "06DEC68D3C420637" + item: "tconstruct:seared_brick" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["0F09DF28E86D4937"] + id: "6A7F8BB0804C26CA" + tasks: [ + { + id: "2CF6DE273F311043" + item: "tconstruct:seared_melter" + type: "item" + } + { + id: "31C0D7DAD74C3050" + item: "tconstruct:seared_table" + type: "item" + } + { + id: "4247419D8C6CD00E" + item: "tconstruct:seared_fuel_tank" + type: "item" + } + { + id: "45D984CBB23E4CF8" + item: "tconstruct:seared_basin" + type: "item" + } + ] + x: 0.0d + y: 1.5d + } + ] + title: "tinker's smeltery" +} diff --git a/minecraft/config/ftbquests/quests/chapters/toms_simple_storage.snbt b/minecraft/config/ftbquests/quests/chapters/toms_simple_storage.snbt new file mode 100644 index 0000000..55f2941 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/toms_simple_storage.snbt @@ -0,0 +1,682 @@ +{ + autofocus_id: "76199D604106DA00" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "toms_simple_storage" + group: "7E54189F6BA49858" + icon: "toms_storage:ts.inventory_connector" + id: "5164395CDB9E390D" + images: [ + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -5.25d + y: -8.937500000000004d + } + { + height: 1.3d + image: "kubejs:item/toms-simple-storage" + rotation: 0.0d + width: 10.0d + x: 0.0d + y: -9.5d + } + ] + order_index: 7 + quest_links: [ ] + quests: [ + { + dependencies: ["2F75111FF8C7FEE5"] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "toms_storage:block/crafting_terminal_front" + } + } + id: "15F6FC38CA52AAAB" + min_width: 300 + rewards: [ + { + id: "70B21002B0D96887" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "094BD6E3CD897A0A" + table_id: 5236874501558129216L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oChest&r quest*" + tasks: [{ + id: "53D19971B43869A8" + type: "checkmark" + }] + title: "Welcome to &eTom's Simple Storage " + x: -6.0d + y: -8.25d + } + { + dependencies: ["15F6FC38CA52AAAB"] + id: "76199D604106DA00" + rewards: [ + { + id: "31756418C0AA8965" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6227DEEF560AC4FE" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "64311E854D9C943D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.inventory_connector" + } + type: "item" + }] + x: -4.5d + y: -6.5d + } + { + dependencies: ["76199D604106DA00"] + id: "1820F2AAEE16E283" + rewards: [ + { + id: "77B0B49EE88DFB7E" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "41894861B37CC7FC" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "5C015A7DEAF65C23" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.storage_terminal" + } + type: "item" + }] + x: -2.0d + y: -6.5d + } + { + dependencies: ["1820F2AAEE16E283"] + id: "5C2F31B1E1B34BE2" + rewards: [ + { + id: "1F5EE79091529D92" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "445590F76CAFF472" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "0FD10AA8BE987870" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.crafting_terminal" + } + type: "item" + }] + x: -0.5d + y: -7.5d + } + { + dependencies: ["76199D604106DA00"] + id: "1BA22008EB73A2E6" + rewards: [ + { + id: "725EBFCBF2BFD6E0" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4E82995C8EE36CE6" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "2FE86E1296D433C1" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.trim" + } + type: "item" + }] + x: -6.5d + y: -5.0d + } + { + dependencies: ["76199D604106DA00"] + id: "7AF6D28AD4696F00" + rewards: [ + { + id: "774DE6E19196B106" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "03EBB81160C8EDDB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "51943D657352CA1D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.open_crate" + } + type: "item" + }] + x: -5.0d + y: -4.0d + } + { + dependencies: ["76199D604106DA00"] + id: "31266C79E612F903" + rewards: [ + { + id: "09F501509BDAF3D1" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "56DAB915AB54D6EB" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "6AA30A3D4D1F7C4C" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.inventory_cable" + } + type: "item" + }] + x: -2.5d + y: -4.0d + } + { + dependencies: ["31266C79E612F903"] + id: "66784B5E6CF56843" + rewards: [ + { + id: "35E5EF35A9977706" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "50C2D029211EB6EA" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "789781B474CA8EA4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.inventory_cable_framed" + } + type: "item" + }] + x: -1.0d + y: -5.0d + } + { + dependencies: ["31266C79E612F903"] + id: "3C63CDB473F8341E" + rewards: [ + { + id: "29835D3F2E708652" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1811C0C888AD3F8B" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "471862657C5AE4E0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.inventory_hopper_basic" + } + type: "item" + }] + x: -3.0d + y: -2.5d + } + { + dependencies: ["3C63CDB473F8341E"] + id: "325C9E26297FFFA0" + rewards: [ + { + id: "2412C5E83AD35CD0" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "5BABFE828B25B8E2" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "392F5E7B5FDB1A8F" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.level_emitter" + } + type: "item" + }] + x: -2.0d + y: -1.0d + } + { + dependencies: ["474ED1E79C740AAC"] + id: "7660821A30C11441" + rewards: [ + { + id: "6449DB6C180E873C" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "561778ED75F69F78" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "231E3B51BB948374" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:beacon" + } + type: "item" + } + { + count: 9L + id: "588E8EA89ECA9D58" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:iron_block" + } + type: "item" + } + ] + title: "Level 1 Beacon" + x: 1.5d + y: -1.5d + } + { + dependencies: ["31266C79E612F903"] + id: "474ED1E79C740AAC" + rewards: [ + { + id: "2C99EB43695AB514" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "65A7D5C8123E4A12" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "32EA6F6682A7A8D0" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.inventory_cable_connector" + } + type: "item" + }] + x: -0.5d + y: -3.0d + } + { + dependencies: ["474ED1E79C740AAC"] + id: "66B8214F01DF24F0" + rewards: [ + { + id: "45ECF8D147F13A92" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "6D65251245CEB2F6" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "38E3E0F2C2F11FF9" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.inventory_cable_connector_framed" + } + type: "item" + }] + x: 1.0d + y: -4.5d + } + { + dependencies: ["474ED1E79C740AAC"] + id: "104ECB251BDE1B0B" + rewards: [ + { + id: "28C96743B4F735CF" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "01421E582242E256" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "520D17181C11D22D" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.inventory_cable_connector_filtered" + } + type: "item" + }] + x: 2.0d + y: -3.5d + } + { + dependencies: ["76199D604106DA00"] + id: "60EBAC6CF5F415AE" + rewards: [ + { + id: "1750249D14BD1E21" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "36FCA5622BB8E763" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "35492E25BF860EA4" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.paint_kit" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.0d + y: -8.0d + } + { + dependencies: ["3C63CDB473F8341E"] + id: "64E366B6645CD04A" + rewards: [ + { + id: "7FC74093AFE42020" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "68FF3A85039DE9ED" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + id: "192894F0F8817766" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.inventory_proxy" + } + type: "item" + }] + x: -4.5d + y: -1.5d + } + { + dependencies: ["5C2F31B1E1B34BE2"] + id: "3784D91672D27614" + rewards: [ + { + id: "76E6521D0A336CE0" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "771FFF3A04D3090B" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "&oRequires level 2 Beacon" + tasks: [{ + id: "2FF107FE344A4067" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.wireless_terminal" + } + type: "item" + }] + x: 1.0d + y: -7.5d + } + { + dependencies: ["3784D91672D27614"] + id: "2223C841C71C7A80" + rewards: [ + { + id: "68511FBED56AD9D5" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "0B6A7AB6609247BB" + table_id: 5236874501558129216L + type: "random" + } + ] + subtitle: "&oRequires level 4 Beacon" + tasks: [{ + id: "0FA084774BFB8B00" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "toms_storage:ts.adv_wireless_terminal" + } + type: "item" + }] + x: 2.5d + y: -7.5d + } + { + dependencies: ["7660821A30C11441"] + id: "17E63BF15C04E4DD" + rewards: [ + { + id: "4F773631E0538524" + type: "xp" + xp: 200 + } + { + exclude_from_claim_all: true + id: "7AC085136DAF50C0" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [ + { + id: "57BBF507122B90B5" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:beacon" + } + type: "item" + } + { + count: 164L + id: "74150352360E2F6A" + item: { + Count: 1 + ForgeCaps: { + "dungeons_libraries:built_in_enchantments": { + BuiltInEnchantments: [ ] + } + } + id: "minecraft:iron_block" + } + type: "item" + } + ] + title: "Level 4 Beacon" + x: 3.5d + y: -1.0d + } + ] + title: "&3&oTom's Simple Storage" +} diff --git a/minecraft/config/ftbquests/quests/chapters/tools.snbt b/minecraft/config/ftbquests/quests/chapters/tools.snbt new file mode 100644 index 0000000..e266dc5 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/tools.snbt @@ -0,0 +1,431 @@ +{ + autofocus_id: "5D4D943E505E44D6" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "tools" + group: "4E2A2310634498BA" + icon: "minecraft:smithing_table" + id: "70AE8ED4FE316B78" + order_index: 4 + quest_links: [ ] + quests: [ + { + dependencies: ["071125FC42EBEAB9"] + id: "5D4D943E505E44D6" + rewards: [{ + exclude_from_claim_all: true + id: "6FED91FF0AE3381D" + table_id: 5236874501558129216L + type: "random" + }] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "58660BF3B3A3EA26" + item: "minecraft:smithing_table" + only_from_crafting: false + type: "item" + }] + title: "Found by Exploring the world" + x: 1.5d + y: 0.75d + } + { + dependencies: ["5D4D943E505E44D6"] + id: "1CBBF990E3D046C7" + rewards: [ + { + exclude_from_claim_all: true + id: "5C530C0F84986B36" + table_id: 5236874501558129216L + type: "random" + } + { + id: "33D5C3397AF22DC8" + item: "minecraft:stone" + type: "item" + } + ] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "1B3C391A386A68D5" + item: { + Count: 1 + id: "minecraft:stone_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "008488CB2FA4CDCC" + item: { + Count: 1 + id: "minecraft:stone_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "32F9CB1530E6D8EF" + item: { + Count: 1 + id: "minecraft:stone_shovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "15A88063310331AE" + item: { + Count: 1 + id: "minecraft:stone_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "20A5B055E24F5597" + item: { + Count: 1 + id: "minecraft:stone_hoe" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Stone Tools" + x: 1.5d + y: 2.25d + } + { + dependencies: ["3378DBA1114E2954"] + id: "3D8504FE7ABEF341" + rewards: [ + { + exclude_from_claim_all: true + id: "0B1367E602D9C56F" + table_id: 5236874501558129216L + type: "random" + } + { + id: "6D000AA4D3839F59" + item: "minecraft:gold_block" + type: "item" + } + ] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "189403088E3AC0F9" + item: { + Count: 1 + id: "minecraft:golden_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "507A60335EF06114" + item: { + Count: 1 + id: "minecraft:golden_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "435DAC03C91601AA" + item: { + Count: 1 + id: "minecraft:golden_shovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "73E8BC30C0F9967D" + item: { + Count: 1 + id: "minecraft:golden_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "28D3CA0640A3CAA8" + item: { + Count: 1 + id: "minecraft:golden_hoe" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Golden Tools" + x: 1.5d + y: 5.25d + } + { + dependencies: ["1CBBF990E3D046C7"] + id: "3378DBA1114E2954" + rewards: [ + { + exclude_from_claim_all: true + id: "4709BF30E1E6759D" + table_id: 5236874501558129216L + type: "random" + } + { + id: "40B41B4DD3FC5CF0" + item: "minecraft:iron_block" + type: "item" + } + ] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "2E401F22F4409BF1" + item: { + Count: 1 + id: "minecraft:iron_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "401BB7EABFAF3EEA" + item: { + Count: 1 + id: "minecraft:iron_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "2F2EE0A87F3F65C2" + item: { + Count: 1 + id: "minecraft:iron_shovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7BDC641D5317B2CB" + item: { + Count: 1 + id: "minecraft:iron_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "242610A53977FA07" + item: { + Count: 1 + id: "minecraft:iron_hoe" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Iron Tools" + x: 1.5d + y: 3.75d + } + { + dependencies: ["3D8504FE7ABEF341"] + id: "6FE2A4F98B3580EE" + rewards: [ + { + exclude_from_claim_all: true + id: "794D5DE45E7EB3C7" + table_id: 5236874501558129216L + type: "random" + } + { + id: "626734A6929427E4" + item: "minecraft:diamond_block" + type: "item" + } + ] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "1941133038627FEA" + item: { + Count: 1 + id: "minecraft:diamond_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7986952E1A37E591" + item: { + Count: 1 + id: "minecraft:diamond_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3416C25FDAD5F934" + item: { + Count: 1 + id: "minecraft:diamond_shovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "33E4CEB343B7B475" + item: { + Count: 1 + id: "minecraft:diamond_hoe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5F5206756B80EDAF" + item: { + Count: 1 + id: "minecraft:diamond_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Diamond Tools" + x: 1.5d + y: 6.75d + } + { + dependencies: ["6FE2A4F98B3580EE"] + id: "5204C894D8F8B36F" + rewards: [ + { + exclude_from_claim_all: true + id: "10B465C6ADC787F3" + table_id: 5236874501558129216L + type: "random" + } + { + id: "43C162E4924F6E2A" + item: "minecraft:netherite_block" + type: "item" + } + ] + shape: "circle" + size: 1.5d + tasks: [ + { + id: "67F8C34EAC7FDEC4" + item: { + Count: 1 + id: "minecraft:netherite_pickaxe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "3E796A499DDF5D6C" + item: { + Count: 1 + id: "minecraft:netherite_axe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "544798E57DF6D1A5" + item: { + Count: 1 + id: "minecraft:netherite_shovel" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "1EE92464DA9457CF" + item: { + Count: 1 + id: "minecraft:netherite_hoe" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "475157F05A51D4F3" + item: { + Count: 1 + id: "minecraft:netherite_sword" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "Netherite Tools" + x: 1.5d + y: 8.25d + } + ] + title: "&3&oMinecraft Tools" +} diff --git a/minecraft/config/ftbquests/quests/chapters/treasures_artifacts.snbt b/minecraft/config/ftbquests/quests/chapters/treasures_artifacts.snbt new file mode 100644 index 0000000..313b496 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/treasures_artifacts.snbt @@ -0,0 +1,1778 @@ +{ + autofocus_id: "AA10BB20CC30DD40" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "treasures_artifacts" + group: "2969F58CC6EA9A10" + icon: "quark:diamond_heart" + id: "1FFC17911A292602" + images: [ + { + height: 1.7d + image: "kubejs:textures/item/taa.png" + rotation: 0.0d + width: 10.0d + x: 0.1071428571428612d + y: -4.69285714285715d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 6.0d + y: -0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -6.0d + y: -0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -4.5d + y: -3.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 4.5d + y: -3.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 2.0d + y: 2.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -2.0d + y: 2.0d + } + ] + order_index: 1 + quest_links: [ ] + quests: [ + { + description: [ + "&6Treasures &rand &dArtifacts&r collects a wide variety of rare and unique items scattered across the world." + "" + "Most are found in dungeon chests, mob drops, or structure loot. Use &eJEI&r to look up any item and see its source." + "" + "Collect them all!" + ] + icon: "quark:diamond_heart" + id: "3BFE60B9864C5CF1" + min_width: 300 + rewards: [{ + id: "7B31E11AFC4F8A7F" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "5CB9347BED0FD976" + title: "Begin your collection" + type: "checkmark" + }] + title: "&6Treasures &rand &dArtifacts" + x: 0.0d + y: -6.5d + } + { + id: "6E630448B20FA566" + rewards: [{ + id: "5E58D086309C6BD2" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "153D6C29BB42831C" + item: { + Count: 1 + id: "relics:spatial_sign" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: 1.0d + } + { + id: "6E863267FEBC4D12" + rewards: [{ + id: "605ED7E0C04E9C6B" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "7B88755FFDF2EE0B" + item: { + Count: 1 + id: "relics:reflection_necklace" + tag: { + Damage: 0 + abilities: { + explode: { + points: 0 + stats: { + capacity: 41.064d + } + } + } + } + } + type: "item" + }] + x: 0.0d + y: -2.0d + } + { + id: "5B41A9C774DADC64" + rewards: [{ + id: "0D968B4E403095AC" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "439CC87E8BE17CCC" + item: { + Count: 1 + id: "relics:rage_glove" + tag: { + Damage: 0 + abilities: { + rage: { + points: 0 + stats: { + attack_speed: 0.006d + dealt_damage: 0.037d + incoming_damage: 0.028d + movement_speed: 0.024d + } + } + } + } + } + type: "item" + }] + x: 0.0d + y: -3.0d + } + { + id: "700FCD53D6498DAE" + rewards: [{ + id: "47983E8F81AF61C7" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "75CB4F1844307B5F" + item: { + Count: 1 + id: "relics:jellyfish_necklace" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + id: "38D5BE9C450AF78D" + rewards: [{ + id: "4D31A015F5D9ABFC" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "552E86FEC360BB5D" + item: { + Count: 1 + id: "relics:drowned_belt" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.0d + y: -2.5d + } + { + id: "0F3C12319C57A16C" + rewards: [{ + id: "143B3B5D558A06B1" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "03E9123A7DCEEF70" + item: { + Count: 1 + id: "relics:bastion_ring" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.0d + y: -1.5d + } + { + id: "1E2AE06DD8CA0B8D" + rewards: [{ + id: "76C50F5AD3572CD9" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "64D796BC76DB991F" + item: { + Count: 1 + id: "relics:chorus_inhibitor" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.0d + y: -0.5d + } + { + id: "14735A17AFA85427" + rewards: [{ + id: "5D6BF9EC1E35BC9B" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "48E307235ABC37A5" + item: { + Count: 1 + id: "relics:midnight_robe" + tag: { + Damage: 0 + abilities: { + backstab: { + points: 0 + stats: { + damage: 1.413d + distance: 17.61d + } + } + vanish: { + points: 0 + stats: { + light: 1.322d + speed: 0.268d + } + } + } + } + } + type: "item" + }] + x: 2.0d + y: -2.0d + } + { + id: "08DD2FB316B96B67" + rewards: [{ + id: "61EBCDB2F8AF3363" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "621771638900AECB" + item: { + Count: 1 + id: "relics:shadow_glaive" + tag: { + Damage: 0 + abilities: { + glaive: { + points: 0 + stats: { + bounces: 3.533d + damage: 4.764d + radius: 4.112d + recharge: 14.474d + } + } + saw: { + points: 0 + stats: { + damage: 0.847d + speed: 18.93d + } + } + } + charges: 8 + } + } + type: "item" + }] + x: 2.0d + y: -1.0d + } + { + id: "54A18F5A1702F0CE" + rewards: [{ + id: "3ED218E769CC36D4" + type: "xp" + xp: 200 + }] + shape: "rsquare" + tasks: [{ + id: "55A6DFD4BCF00B5A" + item: { + Count: 1 + id: "relics:holy_locket" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 0.0d + y: -1.0d + } + { + id: "15C62D63FBAF3CD5" + rewards: [{ + id: "2ADE50798B7E2F10" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "4E879BC3B320B1B6" + item: { + Count: 1 + id: "relics:elytra_booster" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.0d + y: 0.5d + } + { + id: "25B3051A7195EE0F" + rewards: [{ + id: "740ED6714256BDFE" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "61CF4B58BC3C5808" + item: { + Count: 1 + id: "relics:magic_mirror" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.0d + y: 0.0d + } + { + id: "57E48F6BEB4C528D" + rewards: [{ + id: "20733AF6E85FFE49" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "51B50243CCA41D58" + item: { + Count: 1 + id: "relics:blazing_flask" + tag: { + Damage: 0 + abilities: { + bonfire: { + points: 0 + stats: { + height: 3.145d + speed: 0.013d + step: 1.863d + } + } + } + } + } + type: "item" + }] + x: 3.0d + y: -1.5d + } + { + id: "18F41217816183CE" + rewards: [{ + id: "14DC332FEE05E2A4" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5490396D60340F3F" + item: { + Count: 1 + id: "relics:magma_walker" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 3.0d + y: -0.5d + } + { + id: "7C756239EA6B8718" + rewards: [{ + id: "7989125CEF6058AF" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "453DFD98A6FC41E6" + item: { + Count: 1 + id: "relics:infinity_ham" + tag: { + Damage: 0 + abilities: { + autophagy: { + points: 0 + stats: { + feed: 1.87d + } + } + infusion: { + points: 0 + stats: { + duration: 1.953d + } + } + } + pieces: 10 + } + } + type: "item" + }] + x: 4.0d + y: -1.0d + } + { + id: "1291EA352E0C0550" + rewards: [{ + id: "3A944D52E1BC1174" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "7B9D6FB769F0D547" + item: "reliquary:hero_medallion" + type: "item" + }] + x: -1.0d + y: -2.5d + } + { + id: "004FC96A6365E244" + rewards: [{ + id: "33D205096F54AACC" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "7E9F0DB18DCE9D33" + item: "reliquary:infernal_chalice" + type: "item" + }] + x: -1.0d + y: -1.5d + } + { + id: "5E2A7E5ED2A746AC" + rewards: [{ + id: "4A60ECC8E2BCD167" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "2F51A3D3B69B07F1" + item: "reliquary:infernal_claws" + type: "item" + }] + x: -1.0d + y: -0.5d + } + { + id: "189854DB8F809CD1" + rewards: [{ + id: "2D1864BAB8D6E3BF" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "6A37E7CBD22AC1D0" + item: "reliquary:kraken_shell" + type: "item" + }] + x: -1.0d + y: 0.5d + } + { + id: "563426842C9F27ED" + rewards: [{ + id: "1D43EB127B24E5E7" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "277700D25372047D" + item: "reliquary:emperor_chalice" + type: "item" + }] + x: -2.0d + y: -2.0d + } + { + id: "4B7F3ACF59E1350C" + rewards: [{ + id: "22FB2C15D68F0618" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "04A2EE0D9EBA0794" + item: "reliquary:phoenix_down" + type: "item" + }] + x: -2.0d + y: -1.0d + } + { + id: "7E3EE1F2215AFD51" + rewards: [{ + id: "5D39822A79B438FA" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5A806F3A33646678" + item: "reliquary:witherless_rose" + type: "item" + }] + x: -2.0d + y: 0.0d + } + { + id: "47741FAE1072292B" + rewards: [{ + id: "4792061923234AC7" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "2395AC7AFEE17099" + item: "reliquary:twilight_cloak" + type: "item" + }] + x: -3.0d + y: -1.5d + } + { + id: "5E0419DF39BF66EC" + rewards: [{ + id: "7034079037E2CFA5" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "518252B989F48FC8" + item: "reliquary:angelic_feather" + type: "item" + }] + x: -3.0d + y: -0.5d + } + { + id: "0638AA159A0934EF" + rewards: [{ + id: "31C6703D9176C4A8" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "0FB3D4A149D3D1C7" + item: "reliquary:infernal_tear" + type: "item" + }] + x: -4.0d + y: -1.0d + } + { + id: "4CE67989CEC1B883" + rewards: [{ + id: "4C8193445ABCAE30" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "0FEEB55A83FC60DD" + item: "artifacts:running_shoes" + type: "item" + }] + x: -2.5d + y: 3.5d + } + { + id: "1BADB3E6963E6D38" + rewards: [{ + id: "7F7434EAD5446467" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "2E85004A06DD82BA" + item: "artifacts:bunny_hoppers" + type: "item" + }] + x: -1.5d + y: 3.5d + } + { + id: "7251554BCFE0C3EE" + rewards: [{ + id: "6128C678A04E4F4E" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "1BF77D8EE66B496B" + item: "artifacts:aqua_dashers" + type: "item" + }] + x: 1.5d + y: 3.5d + } + { + id: "57A26AFD21DE2850" + rewards: [{ + id: "467D9D3BF4CDAD46" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "3C63F28295BE5AF7" + item: "artifacts:flippers" + type: "item" + }] + x: 0.5d + y: 3.5d + } + { + id: "268CDDDE6F35BBBA" + rewards: [{ + id: "16F478AA160F9F69" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5C999236894291FE" + item: { + Count: 1 + id: "artifacts:cross_necklace" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -2.5d + y: 5.5d + } + { + id: "6139E32199FFC750" + rewards: [{ + id: "36550D556AA6984D" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "1931498FB6FF3F4B" + item: "artifacts:steadfast_spikes" + type: "item" + }] + x: -0.5d + y: 3.5d + } + { + id: "4DFCFC1D6BF70F04" + rewards: [{ + id: "3215D5A62232E126" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "7247EF35EB616D92" + item: "artifacts:feral_claws" + type: "item" + }] + x: -2.0d + y: 4.5d + } + { + id: "0EBFA0136B65FFA6" + rewards: [{ + id: "50E1D92E1DBDF7AA" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5CFAF50E80760C28" + item: { + Count: 1 + id: "artifacts:antidote_vessel" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.0d + y: 4.5d + } + { + id: "2C3BE8F0C8F277E0" + rewards: [{ + id: "63F72F064CFE0218" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "7BB1EC4E80073C57" + item: "artifacts:universal_attractor" + type: "item" + }] + x: 2.0d + y: 4.5d + } + { + id: "29AC75CE39EBCBB2" + rewards: [{ + id: "1EEF424DD098EF50" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "61E5C37BA4C9C56E" + item: "artifacts:umbrella" + type: "item" + }] + x: -4.0d + y: 4.5d + } + { + id: "139B29709F2C7AA7" + rewards: [{ + id: "7835D1F1A62C04E0" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "65494A8A08742EAA" + item: { + Count: 1 + id: "artifacts:power_glove" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -3.0d + y: 4.5d + } + { + id: "310132E9A65B6AB7" + rewards: [{ + id: "0ED7F44C490DAEF4" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5A8D758FB858C9F0" + item: "artifacts:panic_necklace" + type: "item" + }] + x: -1.5d + y: 5.5d + } + { + id: "6F499B709F2085D6" + rewards: [{ + id: "0CD84CE5F7831B7D" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "045D5991319588BA" + item: "artifacts:shock_pendant" + type: "item" + }] + x: -0.5d + y: 5.5d + } + { + id: "13A6F7F30AE73032" + rewards: [{ + id: "2E7701AAA18B518A" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "68AF5DBE256FAA86" + item: "artifacts:flame_pendant" + type: "item" + }] + x: 0.5d + y: 5.5d + } + { + id: "653929B52FFA62E0" + rewards: [{ + id: "659536A082B3E50E" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "4818A830129CC90C" + item: { + Count: 1 + id: "artifacts:thorn_pendant" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.5d + y: 5.5d + } + { + id: "3579962EBDCDA4AC" + rewards: [{ + id: "7083F3553573355B" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "427CC3D687E763B2" + item: "artifacts:charm_of_sinking" + type: "item" + }] + x: 2.5d + y: 5.5d + } + { + id: "7D5A09D8E8F3C9E7" + rewards: [{ + id: "42968A1A048EC731" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "0396ED44CFFF3862" + item: { + Count: 1 + id: "relics:aqua_walker" + tag: { + Damage: 0 + abilities: { + walking: { + points: 0 + stats: { + time: 30.562d + } + } + } + } + } + type: "item" + }] + x: 3.5d + y: 5.5d + } + { + id: "543E417D54AF982D" + rewards: [{ + id: "764F09B57F0FC373" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "2B9D71D7805ECEDD" + item: { + Count: 1 + id: "relics:ice_breaker" + tag: { + Damage: 0 + abilities: { + impact: { + points: 0 + stats: { + damage: 3.421d + size: 4.092d + } + } + sustainability: { + points: 0 + stats: { + modifier: 0.556d + } + } + } + } + } + type: "item" + }] + x: 3.0d + y: 4.5d + } + { + id: "1B8EFBC5EE7EB086" + rewards: [{ + id: "77D0F8B8B028E39E" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5ABE5C314BA0E6D0" + item: { + Count: 1 + id: "relics:amphibian_boot" + tag: { + Damage: 0 + abilities: { + swimming: { + points: 0 + stats: { + speed: 0.007d + } + } + } + } + } + type: "item" + }] + x: 4.5d + y: 5.5d + } + { + id: "01B71AA809F4A326" + rewards: [{ + id: "310EA26354240A48" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "25CC6CAF9CF4CBEB" + item: { + Count: 1 + id: "relics:roller_skates" + tag: { + Damage: 0 + abilities: { + skating: { + points: 0 + stats: { + duration: 21.085d + speed: 0.004d + } + } + } + } + } + type: "item" + }] + x: 4.0d + y: 4.5d + } + { + id: "4C8D0FF4DE4922DD" + rewards: [{ + id: "1A62D277C5739F22" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "0C8204210CDBE9DC" + item: { + Count: 1 + id: "relics:wool_mitten" + tag: { + Damage: 0 + abilities: { + mold: { + points: 0 + stats: { + damage: 0.188d + freeze: 1.536d + size: 28.585d + stun: 0.042d + } + } + } + } + } + type: "item" + }] + x: -7.0d + y: 4.5d + } + { + id: "21084631EEFDEF67" + rewards: [{ + id: "5D8DEC038385F4BB" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5F8AFB4C9BEEAF62" + item: { + Count: 1 + id: "relics:leather_belt" + tag: { + Damage: 0 + abilities: { + slots: { + points: 0 + stats: { + talisman: 2.8d + } + } + } + } + } + type: "item" + }] + x: -3.5d + y: 5.5d + } + { + id: "000D157BC140AD35" + rewards: [{ + id: "4E19A87F6CC6105E" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5BCCA82E38D207EE" + item: { + Count: 1 + id: "relics:spore_sack" + tag: { + Damage: 0 + abilities: { + spore: { + points: 0 + stats: { + amount: 1.0d + resize: 0.014d + } + } + } + } + } + type: "item" + }] + x: -8.5d + y: 5.5d + } + { + id: "4D6A53901B6CAFCC" + rewards: [{ + id: "48D79D61653BE1DE" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5D704BAEB347A59A" + item: { + Count: 1 + id: "relics:arrow_quiver" + tag: { + Damage: 0 + abilities: { + agility: { + points: 0 + stats: { + modifier: 1.0d + } + } + receptacle: { + points: 0 + stats: { + slots: 2.88d + } + } + } + } + } + type: "item" + }] + x: -3.5d + y: 3.5d + } + { + id: "0972DCAF72CC9282" + rewards: [{ + id: "5F88C1CFCAF583BC" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "0688251ABB9DF9AE" + item: { + Count: 1 + id: "cyclic:charm_longfall" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 2.5d + y: 3.5d + } + { + id: "284C09B1F231BBC0" + rewards: [{ + id: "36B534A032377742" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "705B59AF25512997" + item: { + Count: 1 + id: "cyclic:charm_creeper" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 5.0d + y: 4.5d + } + { + id: "12C1CB5475B58CB0" + rewards: [{ + id: "56FDA56E0530DB15" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "4287863D6CF8364F" + item: { + Count: 1 + id: "cyclic:charm_stone" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.0d + y: 4.5d + } + { + id: "2DC18F72DA12CE9F" + rewards: [{ + id: "2A3105658054D3E8" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "3C144E819935AE8A" + item: { + Count: 1 + id: "cyclic:charm_boostpotion" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.0d + y: 4.5d + } + { + id: "0027E0B389B88DCB" + rewards: [{ + id: "1FA07D1AAB9F99B2" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "083CF9B86F9E285A" + item: { + Count: 1 + id: "artifacts:golden_hook" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 1.0d + y: 4.5d + } + { + id: "08CD9265703AE7FD" + rewards: [{ + id: "0F18E1FF8C0352AE" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "6615AFC4556906B1" + item: "artifacts:fire_gauntlet" + type: "item" + }] + x: 0.0d + y: 4.5d + } + { + id: "5267ECA423F1E955" + rewards: [{ + id: "568F28AE2BC3C9ED" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "6DCF4E8CEA2737F5" + item: "artifacts:digging_claws" + type: "item" + }] + x: -1.0d + y: 4.5d + } + { + id: "3AE28FA7D3822D55" + rewards: [{ + id: "4F53E0EE07E7BAF5" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "506BC148360E29EF" + item: "artifacts:night_vision_goggles" + type: "item" + }] + x: -6.0d + y: 4.5d + } + { + id: "0FE04683EFFC4FE0" + rewards: [{ + id: "2A84C60C88810F7C" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "48AA2E767967136C" + item: "artifacts:crystal_heart" + type: "item" + }] + x: -7.5d + y: 5.5d + } + { + id: "6CD72EC5F83E6294" + rewards: [{ + id: "3CB0F50E4F1DFB68" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "20E9100E64EC8AE2" + item: "artifacts:snorkel" + type: "item" + }] + x: -6.5d + y: 5.5d + } + { + id: "40ADD406B418B070" + rewards: [{ + id: "7E5AFEB9F59057A9" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "4A96C30C384C59A4" + item: { + Count: 1 + id: "artifacts:villager_hat" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -5.5d + y: 5.5d + } + { + id: "354271EA44AA79AE" + rewards: [{ + id: "690239682E9A393C" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "5AA135E076938DBB" + item: "artifacts:superstitious_hat" + type: "item" + }] + x: 8.5d + y: 5.5d + } + { + id: "3453DCCBAB690A2E" + rewards: [{ + id: "635381C947E666D5" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "43870E729420AF24" + item: { + Count: 1 + id: "artifacts:lucky_scarf" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: -4.5d + y: 5.5d + } + { + id: "5912F24D303C5D1A" + rewards: [{ + id: "747C7E3D421DAD0B" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "0C3287923C38BE55" + item: "artifacts:scarf_of_invisibility" + type: "item" + }] + x: 5.5d + y: 5.5d + } + { + id: "0209B501CE678F0D" + rewards: [{ + id: "75AA263F679EDA89" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "17AF009562626121" + item: { + Count: 1 + id: "artifacts:obsidian_skull" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 6.5d + y: 5.5d + } + { + id: "203DBB84E6F76851" + rewards: [{ + id: "06F93BC79B06192A" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "33B373E78F2DB2A2" + item: { + Count: 1 + id: "artifacts:kitty_slippers" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.5d + y: 5.5d + } + { + id: "303556DCD3B57E9B" + rewards: [{ + id: "245A8C6401030D83" + type: "xp" + xp: 200 + }] + shape: "square" + tasks: [{ + id: "365D1612B417C388" + item: { + Count: 1 + id: "botania:magnet_ring_greater" + tag: { } + } + type: "item" + }] + x: 9.0d + y: -3.0d + } + { + id: "3997C154A356A6A4" + rewards: [{ + id: "47C22FEBB501935B" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "239C52A699DF43FA" + item: { + Count: 1 + id: "botania:invisibility_cloak" + tag: { } + } + type: "item" + }] + x: 9.0d + y: -1.0d + } + { + id: "3CE2A3BFE0CF2F5F" + rewards: [{ + id: "06F67C281BEE1E0E" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "2C83517B4A782646" + item: { + Count: 1 + id: "botania:dice" + tag: { } + } + type: "item" + }] + x: 8.0d + y: -3.0d + } + { + id: "365CF2F8D998C129" + rewards: [{ + id: "17F6D71F438DABBB" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "4ABC85A86D6953C8" + item: { + Count: 1 + id: "relics:enders_hand" + tag: { + Damage: 0 + abilities: { + swap: { + points: 0 + stats: { + distance: 22.418d + } + } + } + } + } + type: "item" + }] + x: -9.0d + y: -2.0d + } + { + id: "70DFDB3173518E10" + rewards: [{ + id: "5CC8E491F99C0BCA" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "45A9CAF6D9D4D466" + item: { + Count: 1 + id: "relics:ice_skates" + tag: { + Damage: 0 + abilities: { + ram: { + points: 0 + stats: { + damage: 0.243d + } + } + skating: { + points: 0 + stats: { + duration: 42.753d + speed: 0.025d + } + } + } + } + } + type: "item" + }] + x: -8.0d + y: -3.0d + } + { + id: "16664C2903A62846" + rewards: [{ + id: "2B83AEB0A9BF8D1D" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "169756BF3BE0219C" + item: { + Count: 1 + id: "relics:horse_flute" + tag: { + Damage: 0 + abilities: { + heal: { + points: 0 + stats: { + amount: 0.072d + } + } + } + } + } + type: "item" + }] + x: -9.0d + y: -3.0d + } + { + id: "25F10699BC95168E" + rewards: [{ + id: "0C39B5F2692EADA0" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "4A6F6B1A2CE10358" + item: { + Count: 1 + id: "relics:hunter_belt" + tag: { + Damage: 0 + abilities: { + slots: { + points: 0 + stats: { + talisman: 1.451d + } + } + training: { + points: 0 + stats: { + damage: 1.535d + } + } + } + } + } + type: "item" + }] + x: -8.0d + y: -2.0d + } + { + id: "7F29B16A2FF63552" + rewards: [{ + id: "3503FC3E044933F2" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "194593D2D805F183" + item: "cyclic:charm_xp_speed" + type: "item" + }] + x: -9.0d + y: -1.0d + } + { + id: "05971A1830375F2A" + rewards: [{ + id: "4200FECB4CE95BD7" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "0C3249B930B7A3E2" + item: { + Count: 1 + id: "botania:black_hole_talisman" + tag: { } + } + type: "item" + }] + x: 7.0d + y: -3.0d + } + { + id: "21710D6FFE8BD8D2" + rewards: [{ + id: "48063A1252921A9F" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "1ACCB64F3165E024" + item: { + Count: 1 + id: "botania:reach_ring" + tag: { + baubleUUIDLeast: -8778025163686097661L + baubleUUIDMost: -6497266275098736007L + } + } + type: "item" + }] + x: 8.0d + y: -2.0d + } + { + id: "4F0C2CD6EE421F2F" + rewards: [{ + id: "1C0720EE81359374" + type: "xp" + xp: 200 + }] + shape: "octagon" + tasks: [{ + id: "77903262B8145724" + item: "gobber2:gobber2_ring_repair" + type: "item" + }] + x: 9.0d + y: -2.0d + } + { + id: "011104C5692DBF0A" + rewards: [{ + id: "4E6C2AABC9B9853F" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "222AE330A5A2E2F2" + item: { + Count: 1 + id: "relics:space_dissector" + tag: { + Damage: 0 + abilities: { + dissection: { + points: 0 + stats: { + distance: 27.07145d + time: 9.56473d + } + } + } + } + } + type: "item" + }] + x: 3.5d + y: 3.5d + } + { + id: "6519B663486DF850" + rewards: [{ + id: "0B37E80FFA3D8617" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "30A6BF681D6B58A0" + item: "gobber2:gobber2_ring_blink" + type: "item" + }] + x: -3.0d + y: 2.0d + } + { + id: "471E522492B65DF8" + rewards: [{ + id: "39E3937E1F655383" + type: "xp" + xp: 200 + }] + tasks: [{ + id: "130B787209F9B044" + item: "gobber2:gobber2_ring_miner" + type: "item" + }] + x: 3.0d + y: 2.0d + } + ] + title: "&6&oTreasures \\& Artifacts" +} diff --git a/minecraft/config/ftbquests/quests/chapters/ultimate_challenges.snbt b/minecraft/config/ftbquests/quests/chapters/ultimate_challenges.snbt new file mode 100644 index 0000000..6b62e2f --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/ultimate_challenges.snbt @@ -0,0 +1,761 @@ +{ + autofocus_id: "0C8BB19B42305267" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "ultimate_challenges" + group: "2969F58CC6EA9A10" + icon: "reliquary:infernal_chalice" + id: "77BF0D1882072338" + images: [ + { + height: 1.7d + image: "kubejs:textures/item/uc.png" + rotation: 0.0d + width: 10.0d + x: 1.0d + y: -11.0d + } + { + height: 2.5d + image: "kubejs:textures/item/sf.png" + rotation: 0.0d + width: 1.5d + x: 1.0d + y: -2.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: 6.5d + y: -2.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.0d + x: -4.5d + y: -2.0d + } + { + height: 1.0d + image: "kubejs:textures/item/cube.png" + rotation: 48.0d + width: 1.0d + x: 2.5d + y: -9.0d + } + { + height: 1.0d + image: "kubejs:textures/item/cube.png" + rotation: -20.0d + width: 1.0d + x: -0.5d + y: -9.0d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 4.951612903225807d + y: -9.353046594982079d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -3.0d + y: -9.38928571428572d + } + ] + order_index: 2 + quest_links: [ ] + quests: [ + { + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/jailors_scythe.png" + } + } + id: "0C8BB19B42305267" + rewards: [ + { + id: "7A4FA7FD49FA8514" + type: "xp_levels" + xp_levels: 50 + } + { + exclude_from_claim_all: true + id: "7AB642A7EDBC0F9F" + table_id: 7708913941106525583L + type: "random" + } + ] + shape: "pentagon" + size: 1.4d + tasks: [{ + icon: { + Count: 1 + id: "eidolon:deathbringer_scythe" + tag: { + Damage: 0 + } + } + id: "5FE6CF4715CD753A" + stat: "minecraft:time_since_death" + type: "stat" + value: 6900000 + }] + title: "&cSince Last Death" + x: 2.5d + y: -2.0d + } + { + id: "7D8DD102700A5C97" + rewards: [ + { + id: "4F211D24050F83EE" + type: "xp" + xp: 1000 + } + { + count: 100 + id: "3E3C41216A0803E6" + item: "minecraft:diamond" + type: "item" + } + { + exclude_from_claim_all: true + id: "08E8002382A40586" + table_id: 7708913941106525583L + type: "random" + } + ] + shape: "pentagon" + size: 1.4d + tasks: [{ + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:item/clock_of_time" + } + } + id: "5710C05DA1B84695" + stat: "minecraft:play_time" + type: "stat" + value: 5900000 + }] + title: "&bTime Played" + x: -0.5d + y: -2.0d + } + { + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/royal_guard_helmet.png" + } + } + id: "76ECAE980254D515" + rewards: [ + { + id: "2EAB0B088C3DAF20" + type: "xp_levels" + xp_levels: 1000 + } + { + count: 100 + id: "3F75B7EDBB052BF0" + item: "minecraft:diamond_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "31FDE123B2DBD66E" + table_id: 7708913941106525583L + type: "random" + } + ] + shape: "square" + size: 1.3d + subtitle: "Kill them all!" + tasks: [{ + icon: "apotheosis:boss_summoner" + id: "16DCBE2E107303B6" + stat: "minecraft:mob_kills" + title: "Kill: 1,000,000 Mobs" + type: "stat" + value: 1000000 + }] + title: "&8Thor's Justice" + x: 1.0d + y: -9.0d + } + { + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/steak.png" + } + } + id: "4641D535199C5F8B" + rewards: [ + { + id: "622597B018738240" + type: "xp_levels" + xp_levels: 500 + } + { + count: 100 + id: "236E3BAE8BCA68B2" + item: "minecraft:emerald_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "65A962C25E12F459" + table_id: 7708913941106525583L + type: "random" + } + ] + shape: "hexagon" + subtitle: "1 million steaks waiting to be grilled" + tasks: [{ + consume_items: true + count: 1000000L + id: "57BA1BF3724BDAF9" + item: "minecraft:cooked_beef" + type: "item" + }] + title: "&6King of the Grill" + x: 1.0d + y: -7.5d + } + { + id: "36901054929FE3EF" + rewards: [ + { + id: "46E0F5F0A3CAAF5F" + type: "xp_levels" + xp_levels: 1000 + } + { + exclude_from_claim_all: true + id: "6E96BF19E4519511" + table_id: 7708913941106525583L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Spend 1 million of diamonds to benefit poor" + tasks: [{ + consume_items: true + count: 1000000L + id: "79ACBA57DC39394B" + item: "minecraft:diamond" + title: "1,000,000 Diamonds" + type: "item" + }] + title: "&1Robin Hood" + x: 1.0d + y: -6.0d + } + { + id: "0B6FE364D1DADE22" + rewards: [ + { + id: "288D185D5D66CD53" + type: "xp_levels" + xp_levels: 100 + } + { + exclude_from_claim_all: true + id: "182696EDA078BC43" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + icon: "cyclic:heart" + id: "70828AFB26CF8F6D" + stat: "minecraft:animals_bred" + title: "Bred: 1,500 Animals" + type: "stat" + value: 1500 + }] + x: -0.5d + y: -4.5d + } + { + id: "7B44968F569EEE16" + rewards: [ + { + id: "56D0A4DC072A96A8" + type: "xp_levels" + xp_levels: 500 + } + { + exclude_from_claim_all: true + id: "3FD7B95E950DA731" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + icon: "ars_nouveau:glyph_craft" + id: "632CDBDBB8ACE278" + stat: "minecraft:interact_with_crafting_table" + title: "Craft: 10K items" + type: "stat" + value: 10000 + }] + x: -0.5d + y: -6.0d + } + { + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/with_er.png" + } + } + id: "4749F46F794687BF" + rewards: [ + { + id: "507CED276FDCE997" + type: "xp" + xp: 1000 + } + { + count: 100 + id: "366B35D4389818CF" + item: "minecraft:emerald" + type: "item" + } + { + exclude_from_claim_all: true + id: "0CE86FFE6CBA507B" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + entity: "minecraft:wither" + icon: "minecraft:wither_skeleton_skull" + id: "51E2C4E17C4B629C" + title: "Kill: 100x Wither" + type: "kill" + value: 100L + }] + x: -0.5d + y: -7.5d + } + { + id: "7D5BEA03255E69F2" + rewards: [ + { + id: "2F8B899B01E3E45D" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "2B452B00C02B05EB" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/villhead.png" + } + } + id: "261F33F4A4A3A3ED" + stat: "minecraft:traded_with_villager" + title: "Make: 1,000 trades with Villagers" + type: "stat" + value: 1000 + }] + x: 2.5d + y: -7.5d + } + { + id: "4E04E3C10F2CBF85" + rewards: [ + { + id: "25BB5518362721AA" + type: "xp_levels" + xp_levels: 1000 + } + { + exclude_from_claim_all: true + id: "45E96DDB07738C7F" + table_id: 7708913941106525583L + type: "random" + } + { + exclude_from_claim_all: true + id: "4B3D3F08982D151E" + table_id: 4759412880336803126L + type: "choice" + } + ] + tasks: [{ + id: "5CFE33E5A9F78A10" + points: false + title: "XP Levels: &c3,000" + type: "xp" + value: 3000L + }] + x: 2.5d + y: -6.0d + } + { + id: "2437D9BEC5AC8736" + rewards: [ + { + id: "0F0F41C6C3CBFB4D" + type: "xp" + xp: 1000 + } + { + exclude_from_claim_all: true + id: "42979CF41A1360CC" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + consume_items: true + count: 1500L + id: "37C3FAEBE72C5EDD" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "minecraft:bubble_coral" + } + { + Count: 1b + id: "minecraft:tube_coral" + } + { + Count: 1b + id: "minecraft:horn_coral" + } + { + Count: 1b + id: "minecraft:fire_coral" + } + { + Count: 1b + id: "minecraft:brain_coral" + } + ] + } + } + title: "Collect: 1,500x Corals" + type: "item" + }] + x: 2.5d + y: -4.5d + } + { + id: "37B5AB03011BEAC2" + rewards: [ + { + id: "20A48D4845CD886C" + type: "xp_levels" + xp_levels: 50 + } + { + exclude_from_claim_all: true + id: "4F7EC40AA9A4E3B1" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + icon: "minecraft:red_bed" + id: "0F332AE1241A512A" + stat: "minecraft:sleep_in_bed" + title: "Sleep: 3,000x in your bed" + type: "stat" + value: 3000 + }] + x: 3.5d + y: -7.5d + } + { + id: "1FD5C5128D418042" + rewards: [ + { + id: "4B8DC26DF9C40BA5" + type: "xp_levels" + xp_levels: 30 + } + { + exclude_from_claim_all: true + id: "052E0876DC8266A3" + table_id: 1235506154212082407L + type: "random" + } + { + exclude_from_claim_all: true + id: "70AED045846390F7" + table_id: 5236874501558129216L + type: "random" + } + ] + tasks: [{ + icon: "minecraft:jukebox" + id: "5C69AE6392056334" + stat: "minecraft:play_record" + title: "Play: 1,000 Music Discs" + type: "stat" + value: 1000 + }] + x: 3.5d + y: -6.0d + } + { + id: "410C1A5F6FA99764" + rewards: [ + { + id: "48ACDC6C1C05C394" + type: "xp_levels" + xp_levels: 150 + } + { + exclude_from_claim_all: true + id: "22405BDBB2DA8532" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + icon: "aquaculture:goldfish" + id: "14B3C291F47A3E72" + stat: "minecraft:fish_caught" + title: "Catch: 1,500x Fish" + type: "stat" + value: 1500 + }] + x: 3.5d + y: -4.5d + } + { + id: "5D9E10F27EEAF2A1" + rewards: [ + { + id: "45251A8BF2C484D5" + type: "xp" + xp: 5000 + } + { + count: 300 + id: "0A70172FF12A05A5" + item: "minecraft:gold_block" + type: "item" + } + { + exclude_from_claim_all: true + id: "09846B353759229C" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + icon: "minecraft:enchanting_table" + id: "2C3910CD1178E3CC" + stat: "minecraft:enchant_item" + title: "Enchant: 500x Items" + type: "stat" + value: 500 + }] + x: -1.5d + y: -4.5d + } + { + id: "3A8B5860FDA8013A" + rewards: [ + { + id: "5AD1652B917518B2" + type: "xp_levels" + xp_levels: 500 + } + { + exclude_from_claim_all: true + id: "6EAFEF9203B14F8B" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + count: 50L + id: "21F5E74D0CDDA049" + item: "extendedcrafting:the_ultimate_block" + type: "item" + }] + title: "&6My precious..." + x: -1.5d + y: -6.0d + } + { + id: "151505A49E3F872D" + rewards: [ + { + id: "6ECC2BBEF56E4D96" + type: "xp" + xp: 10000 + } + { + id: "473F9211965825F4" + item: "botania:gaia_ingot" + type: "item" + } + { + exclude_from_claim_all: true + id: "5F62A2BD7CE3B47A" + table_id: 7708913941106525583L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Wow!" + tasks: [{ + id: "129D737AE0F76798" + item: "draconicevolution:reactor_core" + type: "item" + }] + title: "&2The Draconic Reactor Core" + x: 1.0d + y: -4.5d + } + { + description: ["Use &eTask Screen&r to complete this Quest."] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/lava_bar.png" + } + } + id: "48AAA21C2214AED4" + rewards: [ + { + id: "06C4E0C62EF632E9" + type: "xp" + xp: 10000 + } + { + exclude_from_claim_all: true + id: "7AF2038A2B6F8AAA" + table_id: 7708913941106525583L + type: "random" + } + ] + shape: "rsquare" + subtitle: "Hot Stuff" + tasks: [{ + amount: 1000000000L + fluid: "minecraft:lava" + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/lava_bar.png" + } + } + id: "014040012F86D797" + title: "1,000,000 Buckets of Lava" + type: "fluid" + }] + title: "&4The Smeltery" + x: -3.0d + y: -6.0d + } + { + description: ["Use &eTask Screen&r to complete this Quest."] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "kubejs:textures/item/energie_bar.png" + } + } + id: "51F42BF270D6F54D" + rewards: [ + { + id: "0850077C401F05A5" + type: "xp_levels" + xp_levels: 1000 + } + { + exclude_from_claim_all: true + id: "0FC5ED217A1C14C1" + table_id: 7708913941106525583L + type: "random" + } + ] + shape: "rsquare" + subtitle: "Cool, eh?" + tasks: [{ + id: "4D8588BE28BFAE5C" + max_input: 1000L + type: "forge_energy" + value: 1000000000L + }] + title: "&5All That Power" + x: 5.0d + y: -6.0d + } + { + id: "0B6ACDEFAD525E54" + rewards: [ + { + id: "79A6C0D3BEFF28B3" + type: "xp_levels" + xp_levels: 777 + } + { + exclude_from_claim_all: true + id: "443947B8916899E6" + table_id: 7708913941106525583L + type: "random" + } + ] + tasks: [{ + consume_items: true + count: 100L + id: "617E75FAC56E0FB5" + item: { + Count: 1 + id: "extendedcrafting:ultimate_singularity" + tag: { } + } + type: "item" + }] + title: "&5The Master of the Singularity" + x: -1.5d + y: -7.5d + } + ] + title: "&6&oUltimate Challenges" +} diff --git a/minecraft/config/ftbquests/quests/chapters/vinery.snbt b/minecraft/config/ftbquests/quests/chapters/vinery.snbt new file mode 100644 index 0000000..41733a9 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/vinery.snbt @@ -0,0 +1,2366 @@ +{ + autofocus_id: "29F890C1924F2B0A" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "vinery" + group: "33C9D311E461F30C" + icon: { + Count: 1 + id: "vinery:mead" + tag: { + Year: 0 + } + } + id: "628394DC8371B39D" + images: [ + { + height: 2.7d + image: "kubejs:textures/item/vinery.png" + rotation: 0.0d + width: 7.0d + x: -4.5d + y: -9.5d + } + { + height: 1.0d + image: "kubejs:textures/item/quest.png" + rotation: 0.0d + width: 0.3d + x: -11.30357142857143d + y: -8.157142857142858d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -9.5d + y: -9.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 1.0d + y: -9.5d + } + { + height: 1.0d + image: "sereneseasons:item/calendar_06" + rotation: -25.0d + width: 1.0d + x: -12.0d + y: -1.0d + } + { + height: 1.0d + image: "sereneseasons:item/calendar_00" + rotation: 7.0d + width: 1.0d + x: 3.5d + y: -9.0d + } + { + height: 1.0d + image: "sereneseasons:item/calendar_01" + rotation: 75.0d + width: 1.0d + x: 5.5d + y: -1.0d + } + { + height: 1.0d + image: "sereneseasons:item/calendar_04" + rotation: 46.0d + width: 1.0d + x: 5.0d + y: -2.0d + } + { + height: 1.0d + image: "sereneseasons:item/calendar_02" + rotation: 0.0d + width: 1.0d + x: 5.0d + y: -1.5d + } + { + height: 1.0d + image: "croptopia:block/grape_crop_stage3" + rotation: 0.0d + width: 1.0d + x: -9.0d + y: -1.0d + } + { + height: 1.0d + image: "croptopia:block/grape_crop_stage2" + rotation: 0.0d + width: 1.0d + x: -8.0d + y: -1.0d + } + { + height: 1.0d + image: "croptopia:block/grape_crop_stage1" + rotation: 0.0d + width: 1.0d + x: -10.0d + y: -1.0d + } + { + height: 1.0d + image: "vinery:block/taiga_grape_bush_stage1" + rotation: 0.0d + width: 1.0d + x: -8.5d + y: -0.5d + } + { + height: 1.0d + image: "vinery:block/taiga_grape_bush_stage1" + rotation: 0.0d + width: 1.0d + x: -8.0d + y: -0.5d + } + { + height: 1.0d + image: "vinery:block/taiga_grape_bush_stage2" + rotation: 0.0d + width: 1.0d + x: -9.0d + y: -0.5d + } + { + height: 1.0d + image: "vinery:block/taiga_grape_bush_stage1" + rotation: 0.0d + width: 1.0d + x: -7.5d + y: -0.5d + } + { + height: 1.0d + image: "vinery:block/taiga_grape_bush_stage1" + rotation: 0.0d + width: 1.0d + x: -9.5d + y: -0.5d + } + { + height: 1.0d + image: "vinery:block/taiga_grape_bush_stage1" + rotation: 0.0d + width: 1.0d + x: -10.0d + y: -0.5d + } + { + height: 1.0d + image: "vinery:block/taiga_grape_bush_stage1" + rotation: 0.0d + width: 1.0d + x: -7.0d + y: -0.5d + } + { + height: 1.0d + image: "vinery:block/taiga_grape_bush_stage1" + rotation: 0.0d + width: 1.0d + x: -10.5d + y: -0.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: -4.5d + y: -3.5d + } + { + height: 1.0d + image: "kubejs:textures/item/spark.png" + rotation: 0.0d + width: 1.1003584229390682d + x: 1.0d + y: -1.5d + } + ] + order_index: 5 + quest_links: [ ] + quests: [ + { + dependencies: ["29F890C1924F2B0A"] + id: "225A6EBFDBEAA8D3" + rewards: [ + { + id: "4DB663B1366B53D7" + type: "xp" + xp: 10 + } + { + id: "14009925A2248A1B" + item: "vinery:rotten_cherry" + type: "item" + } + { + exclude_from_claim_all: true + id: "6790B76651EF9937" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "circle" + subtitle: "Located on Cherry Trees" + tasks: [{ + id: "7C1F23A9DCA3196C" + item: "vinery:dark_cherry_leaves" + only_from_crafting: false + type: "item" + }] + title: "You Spotted Cherry Leaves" + x: -12.0d + y: -6.0d + } + { + dependencies: ["071125FC42EBEAB9"] + description: [ + "&6Vinery&r contains nearly everything needed for not only creating wine but also for &o&bbuilding up your own vinery&r." + "" + "&n&o&bGetting started:&r" + "" + "You'll need to find &2Grapevine Bushes&r to gather your first &9Grapes&r. If you can't find any a &dWandering Winemaker&r will make visit from time to time maybe offering some &eSeeds&r. You can get seeds also by crafting." + "" + "After harvesting your first &9Grapes&r can either just eat them or put them into a &aGrapevine Pot&r and crush them &o&bby jumping and walking around in it&r. Then you can extract &cGrapejuice&r by using &7Empty Winebottles&r. Filled &7Winebottles&r can be refined in a &dAging Barrel&r by using extra &3Ingredients&r such as &5Sweetberries&r, &6Honey&r and so on. Different sort of &cGrapejuice&r and &3Ingredients&r result in different &4Wine&r. " + "" + "All &4Wines&r can not only be &o&bconsumed&r but also &o&bplaced&r. The perfect decoration for your &6Wine Shop&r or &6Wine Cellar&r!" + ] + icon: { + Count: 1 + id: "ftbquests:custom_icon" + tag: { + Icon: "vinery:item/vinery_standard" + } + } + id: "725755B3E794BE4A" + min_width: 300 + rewards: [ + { + id: "7626DA265EC9F8AB" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "769D1790CDB0BBC5" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "gear" + size: 1.5d + subtitle: "*Unlocked by completing the &b&n&oSign the contract&r quest*" + tasks: [{ + id: "3F024B8CF9F0B49C" + type: "checkmark" + }] + title: "Welcome to &dLet's Do: Vinery" + x: -12.0d + y: -7.5d + } + { + dependencies: ["29F890C1924F2B0A"] + id: "5CDE2678637022DF" + rewards: [ + { + id: "01FEE15E6D4AB09B" + type: "xp" + xp: 20 + } + { + id: "4034C1D88EA392AF" + item: "croptopia:cherry_pie" + type: "item" + } + { + exclude_from_claim_all: true + id: "1CA9781D83AEA7C2" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "circle" + tasks: [{ + count: 3L + id: "1C44D57989A71AF2" + item: "vinery:cherry" + type: "item" + }] + title: "Cherry" + x: -12.0d + y: -4.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "&dGrapes&r can be found in &bForest&r, &bPlains&r, &bSwamp&r, &bBirch Forest&r, &bMeadow&r, &bSunflower Plains&r, and &bRiver&r biomes. They are &nquite common&r and &eeasy to find&r." + "" + "&2Taiga Grapes&r can mostly be found in &bTaiga&r biomes and all sub-variants. These are &nquite rare&r and &eit may require a longer journey to find&r them." + "" + "&6Savanna Grapes&r can mostly be found in &bSavanna&r biomes and all sub-variants. However, these are &nvery rare&r." + "" + "&cJungle Grapes&r can be found in &bJungle&r biomes and all sub-variants. They are &nquite common&r and &eeasy to find&r." + ] + id: "70DF0DA4ACB2AD5D" + min_width: 300 + rewards: [ + { + id: "027AF9874C79C4C0" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "4EDE4466986F42CD" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "2C6348AB1A16EAC1" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "vinery:red_grape" + } + { + Count: 1b + id: "vinery:white_grape" + } + { + Count: 1b + id: "vinery:savanna_grapes_red" + } + { + Count: 1b + id: "vinery:savanna_grapes_white" + } + { + Count: 1b + id: "vinery:taiga_grapes_red" + } + { + Count: 1b + id: "vinery:taiga_grapes_white" + } + { + Count: 1b + id: "vinery:jungle_grapes_red" + } + { + Count: 1b + id: "vinery:jungle_grapes_white" + } + { + Count: 1b + id: "nethervinery:crimson_grape" + } + { + Count: 1b + id: "nethervinery:warped_grape" + } + ] + } + } + title: "Grapes" + type: "item" + }] + title: "The Grapes" + x: -9.0d + y: -7.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "Fill the &2Grapevine Pot&r with the &o&brespective grapes&r until it is completely full, jump in and hop/move around in it until the grapes have turned into &cGrape Juice&r." + "" + "Then, you can &aextract&r the freshly pressed &cGrape Juice&r with &bWine Bottles&r." + ] + id: "74F9F0E611FF3F7A" + min_width: 300 + rewards: [ + { + id: "629142C341C50D4D" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "245E22DC2E2908FC" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "circle" + subtitle: "Required to process grapes into Grape Juice" + tasks: [{ + id: "774B994B8C526E84" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "vinery:grapevine_pot" + } + { + Count: 1b + id: "nethervinery:crimson_grapevine_pot" + } + { + Count: 1b + id: "nethervinery:warped_grapevine_pot" + } + ] + } + } + title: "Grapevine Pot" + type: "item" + }] + title: "Grapevine Pot" + x: -4.5d + y: -7.5d + } + { + dependencies: ["29F890C1924F2B0A"] + id: "5B4893652218BAC0" + rewards: [ + { + id: "6741EFC440F6C61A" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "07157E4CA166FEB7" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "009A88450EBE7E95" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "vinery:red_grape_seeds" + } + { + Count: 1b + id: "vinery:white_grape_seeds" + } + { + Count: 1b + id: "vinery:savanna_grape_seeds_red" + } + { + Count: 1b + id: "vinery:savanna_grape_seeds_white" + } + { + Count: 1b + id: "vinery:taiga_grape_seeds_red" + } + { + Count: 1b + id: "vinery:taiga_grape_seeds_white" + } + { + Count: 1b + id: "vinery:jungle_grape_seeds_red" + } + { + Count: 1b + id: "vinery:jungle_grape_seeds_white" + } + { + Count: 1b + id: "nethervinery:crimson_grape_seeds" + } + { + Count: 1b + id: "nethervinery:warped_grape_seeds" + } + ] + } + } + title: "Grape Seeds" + type: "item" + }] + title: "The Grape Seeds" + x: -9.0d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + description: ["The &6Grapevine Stem&r is &o&btwo blocks high&r, and to place the respective &eseeds&r, you must, &o&bwhile holding the seeds&r &eclick&r on the &nupper part&r."] + id: "4A207B31D39DD83E" + min_width: 250 + rewards: [ + { + id: "0F0862DF6F7FA1D4" + type: "xp" + xp: 10 + } + { + id: "3EED84EF5D6B4E80" + item: "minecraft:oak_log" + type: "item" + } + { + exclude_from_claim_all: true + id: "0B2CDD41CC8360ED" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "circle" + subtitle: "Required to cultivate Normal, Taiga, and Savanna Grapes" + tasks: [{ + count: 8L + id: "6428EE6BCEC61DF6" + item: "vinery:grapevine_stem" + type: "item" + }] + title: "Grapevine Stems" + x: -9.0d + y: -4.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "Like the &2Aging Barrel&r, the &6Apple Press&r also resembles the crafting stations in Minecraft." + "" + "The &6Apple Press&r only has &o&b1&r &ainput slot&r for &4Apples&r (&o&btop left&r) and one &coutput slot&r (&o&bright&r)." + "" + "Once you've placed the &4Apples&r into the &ainput slot&r, it takes &o&ba few seconds&r for the crafting process to complete - the &eApple Mash&r then appears in the &coutput slot&r." + "" + "&bNote:&r The &6Apple Press&r also &nacts as a workstation&r for &5Winemaker Villagers&r." + ] + id: "2C38868BDBE81136" + min_width: 300 + rewards: [ + { + id: "52D1912CF95DF22D" + type: "xp" + xp: 30 + } + { + id: "4C99817F17198F97" + item: "minecraft:apple" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "5B2716C9B6B1DB3C" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "circle" + subtitle: "The Apple Press is a crafting station for making Apple Mash" + tasks: [{ + id: "4EBF7C2B8E8D51E9" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "vinery:wine_press" + } + { + Count: 1b + id: "vinery:apple_press" + } + { + Count: 1b + id: "nethervinery:crimson_apple_press" + } + { + Count: 1b + id: "nethervinery:warped_apple_press" + } + ] + } + } + title: "Apple Press" + type: "item" + }] + x: 5.5d + y: -7.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "The &2Aging Barrel&r works similarly to the already known crafting stations in Minecraft: It has &o&b4&r &ainput slots&r for &9ingredients&r (&o&bleft&r), one &ainput slot&r for a &3wine bottle&r (&o&bmiddle&r), and one &coutput slot&r (&o&bright&r). It also offers &o&ba built-in recipe book&r that displays &o&ball available recipes&r and the ingredients required for them." + "" + "Once you've placed the &9ingredients&r needed for the respective recipe into the corresponding &ainput slots&r, it takes about &o&b12&r seconds for the crafting process to complete - the crafted item then appears in the &coutput slot&r." + ] + id: "300972500981F181" + min_width: 300 + rewards: [ + { + id: "650592A3549FE0EC" + type: "xp" + xp: 20 + } + { + id: "4F99BA42F7043946" + item: "vinery:red_grape" + random_bonus: 3 + type: "item" + } + { + exclude_from_claim_all: true + id: "041F71EB5D4660F0" + table_id: 5709524483953410607L + type: "random" + } + ] + subtitle: "The Aging Barrel is your primary crafting station for making Wine." + tasks: [{ + id: "2B63AD54DDCCA8CA" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "vinery:fermentation_barrel" + } + { + Count: 1b + id: "nethervinery:crimson_fermentation_barrel" + } + { + Count: 1b + id: "nethervinery:warped_fermentation_barrel" + } + ] + } + } + title: "Aging Barrel" + type: "item" + }] + x: 1.0d + y: -7.5d + } + { + dependencies: ["29F890C1924F2B0A"] + id: "0E6AA6D083D6793B" + rewards: [ + { + id: "473D2731BE6DF18A" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "792AD3A9F386A8FB" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "circle" + subtitle: "Mash Apples" + tasks: [{ + id: "652E0320CE776B1C" + item: "vinery:apple_mash" + type: "item" + }] + x: 5.5d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + id: "357EA619D01BAB09" + rewards: [ + { + id: "5FF86C01045A5777" + type: "xp" + xp: 10 + } + { + id: "328972ECE202D71A" + item: "minecraft:glass_bottle" + type: "item" + } + { + exclude_from_claim_all: true + id: "39AF660C4E42614C" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "circle" + tasks: [{ + id: "39E186906DD55531" + item: { + Count: 1 + id: "vinery:apple_juice" + tag: { + Year: 77 + } + } + type: "item" + }] + x: 5.5d + y: -4.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "0AE0F6776E8FC5DE" + rewards: [ + { + id: "5DBF7B11E0D14072" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5D56DAA6FAFAE3E8" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "7A1224C68C6922F8" + item: { + Count: 1 + id: "vinery:noir_wine" + tag: { + Year: 77 + } + } + match_nbt: false + type: "item" + }] + x: 0.5d + y: -5.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "Every &o&b16&r days (&o&b384,000&r ticks), your wine will &o&bgain an additional year of aging&r, and every five years, it will gain &o&ban additional level&r to its effect up to a maximum effect level of &o&b5&r." + "" + "You don't need to perform a special action with your wine to let it age; just leave it in your inventory, a chest, barrel, cabinet, etc." + ] + id: "5D07EC9B62057188" + rewards: [ + { + id: "57FAD00A9755BAE0" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "32D2CAD465420BDC" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + id: "785163D78C3498FD" + item: "sereneseasons:calendar" + type: "item" + }] + title: "Wine Aging" + x: -10.5d + y: -4.5d + } + { + id: "29F890C1924F2B0A" + rewards: [ + { + id: "48ECE4D5F628ED56" + type: "xp" + xp: 5 + } + { + id: "41E2EBFEF613B440" + item: "minecraft:glass" + random_bonus: 1 + type: "item" + } + { + exclude_from_claim_all: true + id: "2E6FFB8E9387D70F" + table_id: 5709524483953410607L + type: "random" + } + ] + tasks: [{ + count: 8L + id: "0AB634CDCA7F49B4" + item: "vinery:wine_bottle" + type: "item" + }] + title: "Wine Bottle" + x: -10.5d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "3EDC9777F2A13566" + rewards: [ + { + id: "346E77559B92E001" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "5DE039E20E35A9A4" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2D69C743857393CA" + item: "vinery:white_grapejuice" + type: "item" + }] + x: -3.5d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + id: "46C8C986A5A0029A" + rewards: [ + { + id: "6894D0C6E4F7F9C3" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "35F09EA351DD0BBA" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "099ED8225EDD6EC8" + item: "vinery:red_grapejuice" + type: "item" + }] + x: -4.5d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "22803E207BEABDED" + rewards: [ + { + id: "044F0148BE1CD551" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "7ACE45E25F223307" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "4D7B2DEB6508417D" + item: "vinery:red_savanna_grapejuice" + type: "item" + }] + x: -5.5d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "0137D3350C4D89D7" + rewards: [ + { + id: "3F657307079FD55F" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "0E70B2BE9BE7ED7C" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0A7DB5B5F8CB178D" + item: "vinery:white_savanna_grapejuice" + type: "item" + }] + x: -5.5d + y: -5.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "579720488D482EE0" + rewards: [ + { + id: "68A599432D11C634" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "6659D4C103AE6928" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "129983D8AD106730" + item: "vinery:red_taiga_grapejuice" + type: "item" + }] + x: -3.5d + y: -5.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "297476EAC1B105BD" + rewards: [ + { + id: "313CED6E4768E05B" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "7E4F0FDD087CEFA5" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6C52F0970C5F088F" + item: "vinery:red_jungle_grapejuice" + type: "item" + }] + x: -4.5d + y: -5.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "062BECAC2BDADBD5" + rewards: [ + { + id: "7E92BD79B370835B" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "122470542416AFAF" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "29624E1DB78C6F0A" + item: "vinery:white_taiga_grapejuice" + type: "item" + }] + x: -4.0d + y: -5.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "7211D330855E6466" + rewards: [ + { + id: "4D75FD8DDAE24240" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "12C62FC0D0F57FFC" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6D6A47A41A6F824B" + item: "vinery:white_jungle_grapejuice" + type: "item" + }] + x: -5.0d + y: -5.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "6697C0AB3F101A1D" + rewards: [ + { + id: "7C257CE261B368E4" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1FDA813867A42108" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "4692EB192CD12D5C" + item: { + Count: 1 + id: "vinery:mead" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 2.5d + y: -3.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "0307097BD8D53E0C" + rewards: [ + { + id: "20A0DD291212AB3F" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1005D8845716A2DF" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0764BBAF6D2C2F18" + item: { + Count: 1 + id: "vinery:stal_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: -1.0d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "6BE2023B08329981" + rewards: [ + { + id: "0EDBF19CA2027913" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5C7A567E0E8360C2" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "07B72EDD577A3E9A" + item: { + Count: 1 + id: "vinery:kelp_cider" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 2.0d + y: -4.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "7DE7914A8BA84139" + rewards: [ + { + id: "62FD2B5794D7F436" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7B38D54B1E0AB4A1" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2A74286B8E38D9D8" + item: { + Count: 1 + id: "vinery:strad_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 0.0d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + id: "71C0E4A5369402AF" + rewards: [ + { + id: "66581669FB54376D" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "796633AC410CEB9C" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3BBDF7F2F3C8A73D" + item: { + Count: 1 + id: "vinery:magnetic_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 1.0d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "6D3503AAA607EC72" + rewards: [ + { + id: "1EA6772E984F5B31" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "63B765C2BAADA5E7" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "44011225DBC3FF3A" + item: { + Count: 1 + id: "vinery:chorus_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 2.0d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "6BB05495CE7819FE" + rewards: [ + { + id: "7A5B22718F518792" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "42466BB4AFE1090F" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "07B51B1D88B90108" + item: { + Count: 1 + id: "vinery:aegis_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 3.0d + y: -6.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "57B8752FAD84ACF3" + rewards: [ + { + id: "54B6521E47EB8B63" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3A4E1925C0E04455" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "424822D6A1C15110" + item: { + Count: 1 + id: "vinery:solaris_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: -0.5d + y: -5.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "7F5DC00532DBD60F" + rewards: [ + { + id: "470CCA0A962CE2E2" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "0B5705BD107DAD74" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "74235B856041503A" + item: { + Count: 1 + id: "vinery:bolvar_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 1.5d + y: -5.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "05522F8A628A78CD" + rewards: [ + { + id: "4973953B9C060C3C" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5073CB406AD8C40D" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2B7161847522531F" + item: { + Count: 1 + id: "vinery:cherry_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 2.5d + y: -5.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "41BA12FB1FB6AAA7" + rewards: [ + { + id: "35981AEA2776F73C" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "4DF9442A5D7E1114" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "61EE96D5547B904E" + item: { + Count: 1 + id: "vinery:clark_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: -1.0d + y: -5.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "358D90C597CB7360" + rewards: [ + { + id: "3C386D79F325D35A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "3BA3E0601C69B423" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "5D8DE06B6932A199" + item: { + Count: 1 + id: "vinery:jellie_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 0.0d + y: -5.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "34FDBA349EDB0E58" + rewards: [ + { + id: "4892F1C0C7595378" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "6DE75403B3485457" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "1BC99F9D2E766B64" + item: { + Count: 1 + id: "vinery:apple_cider" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 1.0d + y: -4.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "4BCDF4F6721DC41F" + rewards: [ + { + id: "07F6CBE70FFC0C5C" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "07C0969DAB1C20E9" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "4E3C9C596DCFCDEF" + item: { + Count: 1 + id: "vinery:apple_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 1.0d + y: -5.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "23FC46CEAD0E2964" + rewards: [ + { + id: "6611417AF0BFD7F1" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5689AB93DD0AEF88" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "67603B8A808C61C1" + item: { + Count: 1 + id: "vinery:red_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 2.0d + y: -5.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "19992B36EE22E828" + rewards: [ + { + id: "371B511FEF6FD555" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "013C276FE598D2F9" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "0FC1DB19B6A07691" + item: { + Count: 1 + id: "vinery:chenet_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: -0.5d + y: -4.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "113092281407BAD0" + rewards: [ + { + id: "39F779CC729C2115" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "1D932C62F1C904C3" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "26B014E28F691410" + item: { + Count: 1 + id: "vinery:lilitu_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 0.5d + y: -4.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "7F23757E17B1F914" + rewards: [ + { + id: "6C0AB3CC82B6FCCB" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "7F886D0356988A1F" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "6C8BE8F71B3E160A" + item: { + Count: 1 + id: "vinery:mellohi_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 1.5d + y: -4.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "3F7346FDD500E6D0" + rewards: [ + { + id: "7247EF5239B407C4" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "08EADF1BFDA4F870" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "2760BCAA31564546" + item: { + Count: 1 + id: "vinery:jo_special_mixture" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 1.5d + y: -3.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "3E6708350F08AE84" + rewards: [ + { + id: "10559F6790C5B778" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "70D17C28FCA9327D" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "040DF4DAA1D36383" + item: { + Count: 1 + id: "vinery:cristel_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 2.5d + y: -4.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "4629869BCB8B7502" + rewards: [ + { + id: "2A5EB79181D6414A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "725E10A0345B3313" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "06335A57D61A4C9E" + item: { + Count: 1 + id: "vinery:glowing_wine" + tag: { + Year: 0 + } + } + type: "item" + }] + x: -1.0d + y: -4.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "1FBAB88A2F7B8550" + rewards: [ + { + id: "2BFEDFA919BB1496" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5A6A7C76F80E7FA5" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "50B8C4A85103133F" + item: { + Count: 1 + id: "vinery:creepers_crush" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 0.5d + y: -3.5d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "3D5749E263340D8E" + rewards: [ + { + id: "17D3766448C9D8CC" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "64C8DD57BF6B48DC" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "140567F42E2533D8" + item: { + Count: 1 + id: "vinery:bottle_mojang_noir" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 0.0d + y: -4.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "6A9D154843BD9AD2" + rewards: [ + { + id: "2F574CA194C6A036" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5A16185C6B1707B9" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "25EDD70A0C72BBAD" + item: { + Count: 1 + id: "vinery:villagers_fright" + tag: { + Year: 0 + } + } + type: "item" + }] + x: 3.0d + y: -4.0d + } + { + dependencies: ["29F890C1924F2B0A"] + hide_dependency_lines: true + id: "638A88DD0F451A4E" + rewards: [ + { + id: "22614B524EBA3C3A" + type: "xp" + xp: 50 + } + { + exclude_from_claim_all: true + id: "5EF8B6F5922CD4C0" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "diamond" + tasks: [{ + id: "3248D9AE37609BCD" + item: { + Count: 1 + id: "vinery:eiswein" + tag: { + Year: 0 + } + } + type: "item" + }] + x: -0.5d + y: -3.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "The application is quite simple: Target the &9Grapevine Lattice&r and &eRight-Click&r to place your &aJungle Grape Seeds&r." + "" + "The &9Grapevine Lattice&r connects to the adjacent lattice &o&bto the right or left&r. If you're holding an &3Axe&r and &eRight-Click&r on the lattice, &o&byou can toggle&r the supports &2on&r or &4off&r. It also offers &o&btwo different placement options&r: &non top&r of the block or &non the side&r of another block." + ] + id: "6AFEDEBAA7425043" + min_width: 300 + rewards: [ + { + id: "7222DC6A88E50D66" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "5479A3A2E6519BB5" + table_id: 5709524483953410607L + type: "random" + } + ] + subtitle: "A beautiful decoration for walls, which can also be used to cultivate Jungle Grapes" + tasks: [{ + count: 8L + id: "5A346186243A85E9" + item: "decorative_blocks:lattice" + type: "item" + }] + title: "Grapevine Lattice" + x: -7.5d + y: -6.0d + } + { + dependencies: ["5D07EC9B62057188"] + description: [ + "When you wear &o&ball four pieces of the set&r, you receive &o&ba set bonus&r." + "" + "This bonus prevents the &3Bone Meal&r you use from being consumed - however, &o&bthe set loses durability in exchange&r." + ] + id: "5C4E9BBD21663E93" + rewards: [ + { + id: "7263F025343F1C0D" + type: "xp" + xp: 100 + } + { + exclude_from_claim_all: true + id: "4DCC7C6A95B71288" + table_id: 5709524483953410607L + type: "random" + } + ] + subtitle: "Perfect for grape cultivation" + tasks: [ + { + id: "637D067EE119895A" + item: { + Count: 1 + id: "vinery:straw_hat" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "4310627DC0B04D2A" + item: { + Count: 1 + id: "vinery:winemaker_apron" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "051F70EA84FF48A5" + item: { + Count: 1 + id: "vinery:winemaker_leggings" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "59A9F245336D9A11" + item: { + Count: 1 + id: "vinery:winemaker_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "&dThe Winemaker's Set" + x: -10.5d + y: -3.0d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "Used to store &4Wine&r. Come in diverse variations regarding &o&bwood type&r, &o&bsize&r, and &o&barrangement&r." + "" + "Not every &4Wine&r fits in the &nsmall&r or &nlarge&r &6Wine Racks&r." + ] + hide_dependency_lines: true + id: "52A4F956FB72A310" + rewards: [ + { + id: "421E09F81824FA51" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "19A992BA0F33E863" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Srotage for Big Wine Bottles" + tasks: [{ + id: "6856E09BD2F74182" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "vinery:cherry_wine_rack_mid" + } + { + Count: 1b + id: "vinery:oak_wine_rack_mid" + } + { + Count: 1b + id: "vinery:birch_wine_rack_mid" + } + { + Count: 1b + id: "vinery:spruce_wine_rack_mid" + } + { + Count: 1b + id: "vinery:dark_oak_wine_rack_mid" + } + { + Count: 1b + id: "vinery:jungle_wine_rack_mid" + } + { + Count: 1b + id: "vinery:acacia_wine_rack_mid" + } + { + Count: 1b + id: "vinery:mangrove_wine_rack_mid" + } + { + Count: 1b + id: "nethervinery:crimson_wine_rack_mid" + } + { + Count: 1b + id: "nethervinery:warped_wine_rack_mid" + } + ] + } + } + title: "Wine Bottle Racks" + type: "item" + }] + x: 2.0d + y: -0.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "Used to store &4Wine&r. Come in diverse variations regarding &o&bwood type&r, &o&bsize&r, and &o&barrangement&r." + "" + "Not every &4Wine&r fits in the &nsmall&r or &nlarge&r &6Wine Racks&r." + ] + hide_dependency_lines: true + id: "6366C1F65026EC65" + rewards: [ + { + id: "6E8EA1E5DE80D58C" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "6549CE465636025C" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Srotage for Small Wine Bottles" + tasks: [{ + id: "6909EC90D4792478" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "vinery:wine_rack_1" + } + { + Count: 1b + id: "vinery:oak_wine_rack_big" + } + { + Count: 1b + id: "vinery:birch_wine_rack_big" + } + { + Count: 1b + id: "vinery:spruce_wine_rack_big" + } + { + Count: 1b + id: "vinery:dark_oak_wine_rack_big" + } + { + Count: 1b + id: "vinery:jungle_wine_rack_big" + } + { + Count: 1b + id: "vinery:acacia_wine_rack_big" + } + { + Count: 1b + id: "vinery:mangrove_wine_rack_big" + } + { + Count: 1b + id: "nethervinery:crimson_wine_rack_big" + } + { + Count: 1b + id: "nethervinery:warped_wine_rack_big" + } + ] + } + } + title: "Wine 9 Bottle Storage" + type: "item" + }] + x: 0.0d + y: -0.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "Used to store &4Wine&r. Come in diverse variations regarding &o&bwood type&r, &o&bsize&r, and &o&barrangement&r." + "" + "Not every &4Wine&r fits in the &nsmall&r or &nlarge&r &6Wine Racks&r." + ] + hide_dependency_lines: true + id: "0D86D35D7BB34829" + rewards: [ + { + id: "149C73B800397719" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "49747EEBF8B36A29" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "hexagon" + subtitle: "Srotage for Small Wine Bottles" + tasks: [{ + id: "001495EBB7E7E14A" + item: { + Count: 1 + id: "itemfilters:or" + tag: { + items: [ + { + Count: 1b + id: "vinery:wine_rack_2" + } + { + Count: 1b + id: "vinery:oak_wine_rack_small" + } + { + Count: 1b + id: "vinery:birch_wine_rack_small" + } + { + Count: 1b + id: "vinery:spruce_wine_rack_small" + } + { + Count: 1b + id: "vinery:dark_oak_wine_rack_small" + } + { + Count: 1b + id: "vinery:jungle_wine_rack_small" + } + { + Count: 1b + id: "vinery:acacia_wine_rack_small" + } + { + Count: 1b + id: "vinery:mangrove_wine_rack_small" + } + { + Count: 1b + id: "nethervinery:crimson_wine_rack_small" + } + { + Count: 1b + id: "nethervinery:warped_wine_rack_small" + } + ] + } + } + title: "Wine 4 Bottle Storage" + type: "item" + }] + x: 1.0d + y: -0.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: ["Another storage and decoration option for your smaller &4Wines&r."] + hide_dependency_lines: true + id: "641F399D0F072824" + optional: true + rewards: [ + { + id: "0B23E7AF67E3587B" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "530ED0E70B612812" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "rsquare" + tasks: [{ + id: "5AA24668249E6961" + item: "vinery:wine_box" + type: "item" + }] + x: -5.0d + y: -2.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: ["This small &eBasket&r serves as a &dmini-shulker box&r with &o&b9&r slots."] + hide_dependency_lines: true + id: "6205DDBCF3DB14BB" + optional: true + rewards: [ + { + id: "1A13E3FE8B1FC05F" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "205A85746C2AC02E" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "rsquare" + subtitle: "Ready for a picnic?" + tasks: [{ + id: "1C2051510D323BE8" + item: "vinery:basket" + type: "item" + }] + x: -4.0d + y: -2.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: [ + "The &2Storage Pot&r works like regular &9Chest&r." + "" + "Into the &eFlower Box&r can be placed &o&b2&r flowers." + "" + "Into the &dFlower Pot&r can be &nonly&r placed &o&blarge type of flovers&r." + ] + hide_dependency_lines: true + id: "43B1CF3C4D7A4EA0" + optional: true + rewards: [ + { + id: "0B69F3BA71DD8B08" + type: "xp" + xp: 10 + } + { + exclude_from_claim_all: true + id: "22D9B27447834F9A" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "1F331C02794D7457" + item: "vinery:storage_pot" + type: "item" + } + { + id: "41A8CB57BA2BFB11" + item: "vinery:flower_box" + type: "item" + } + { + id: "4D36E2FD3669B1ED" + item: "vinery:flower_pot_big" + type: "item" + } + ] + title: "Decorative Pots \\& Boxes" + x: -5.5d + y: -1.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: ["The &4Cherry Table&r can be &nonly&r expandable in &o&bwidth&r."] + hide_dependency_lines: true + id: "633AB586D564BABB" + optional: true + rewards: [ + { + id: "0D6E67AAE7F26A04" + type: "xp" + xp: 20 + } + { + exclude_from_claim_all: true + id: "6F6CC726E41E5A5D" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + count: 2L + id: "7A08A92E155FC9DC" + item: "vinery:dark_cherry_chair" + type: "item" + } + { + id: "57078EB72806A28C" + item: "vinery:dark_cherry_table" + type: "item" + } + ] + title: "Table for two" + x: -4.5d + y: -1.5d + } + { + dependencies: ["29F890C1924F2B0A"] + description: ["More storage space can't be bad?"] + hide_dependency_lines: true + id: "28BE9DAB42A66B93" + optional: true + rewards: [ + { + id: "36637A905C2AC316" + type: "xp" + xp: 30 + } + { + exclude_from_claim_all: true + id: "7892ABC25164C4EF" + table_id: 5709524483953410607L + type: "random" + } + ] + shape: "rsquare" + tasks: [ + { + id: "559B1A55B44C556A" + item: "vinery:dark_cherry_cabinet" + type: "item" + } + { + id: "40259AA855B06987" + item: "vinery:dark_cherry_drawer" + type: "item" + } + { + id: "000669D062FF42CC" + item: "vinery:dark_cherry_shelf" + type: "item" + } + ] + title: "Cabinets, Drawes \\& Shelfs" + x: -3.5d + y: -1.5d + } + ] + subtitle: ["Who doesn't want their own vinery to make their own wine?"] + title: "&3&oLet's Do:&r &o&fVinery" +} diff --git a/minecraft/config/ftbquests/quests/chapters/weapons.snbt b/minecraft/config/ftbquests/quests/chapters/weapons.snbt new file mode 100644 index 0000000..8019864 --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/weapons.snbt @@ -0,0 +1,95 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "weapons" + group: "" + icon: { + Count: 1 + id: "mysticalagriculture:inferium_sword" + tag: { + Damage: 0 + } + } + id: "02A91F9396C35460" + order_index: 6 + quest_links: [ ] + quests: [ + { + id: "7152DBD2FD2ABFCA" + tasks: [{ + advancement: "apotheosis:affix/gem" + criterion: "" + id: "283A62C73BC387BD" + type: "advancement" + }] + title: "apotheosis gems" + x: 0.0d + y: -1.0d + } + { + description: ["you might find a fire claymore, mjionir, or other unique weapons when on your adventure. i cannot expect you to find any specific one"] + id: "60209123C1D316C9" + tasks: [{ + id: "7CD9A82FC871CDCB" + title: "unique simply weapons" + type: "checkmark" + }] + x: -2.5d + y: -1.0d + } + { + id: "350882EB48AFF657" + tasks: [{ + id: "4B71E25C53A15D1F" + item: { + Count: 1 + id: "mysticalagriculture:inferium_sword" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "Mystical swords" + x: 2.0d + y: -1.0d + } + { + description: ["allthemodium has better swords"] + id: "13A0C1B5BEE70126" + subtitle: "indestructible sword" + tasks: [ + { + id: "391A28DC3D4F8AEC" + item: "allthemodium:allthemodium_sword" + type: "item" + } + { + id: "681C6D8DC93F5B17" + item: "allthemodium:vibranium_sword" + type: "item" + } + { + id: "5EF52054D42F13FE" + item: "allthemodium:unobtainium_sword" + type: "item" + } + ] + x: -4.5d + y: -1.0d + } + { + description: ["yes, all of these special weapons can be enchanted. this opens up the apothic enchants questline, even if you havent completed the other quests"] + id: "72328C8CAE7AD65A" + subtitle: "OP" + tasks: [{ + id: "222267868776716C" + item: "minecraft:enchanting_table" + type: "item" + }] + x: -1.0d + y: 3.0d + } + ] + title: "weapons" +} diff --git a/minecraft/config/ftbquests/quests/chapters/when_dungeons_arise.snbt b/minecraft/config/ftbquests/quests/chapters/when_dungeons_arise.snbt new file mode 100644 index 0000000..2ed8fef --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/when_dungeons_arise.snbt @@ -0,0 +1,945 @@ +{ + autofocus_id: "2B70445E6CD99EDB" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "when_dungeons_arise" + group: "3A1C74A49BDDD6E1" + icon: { + Count: 1 + id: "minecraft:golden_sword" + tag: { + Damage: 0 + } + } + id: "231570DE6A7FCD52" + images: [{ + height: 4.0d + image: "wda_questline:textures/quests/wda_logo.png" + rotation: 0.0d + width: 8.0d + x: -1.5d + y: -5.5d + }] + order_index: 2 + progression_mode: "flexible" + quest_links: [ ] + quests: [ + { + description: [ + "Strange structures have begun rising from the land. Mysterious dungeons, fortresses, and towers that pierce the skies. No one knows where they came from, only that they’re teeming with hostile creatures, forgotten treasures, and powerful secrets." + "" + "Your task is to venture forth and uncover the mysteries of these ancient places. Each dungeon holds new dangers, but also the keys to survival: weapons, artifacts, and knowledge that will aid you in the trials ahead." + "" + "Prepare yourself adventurer. &6Exploration&r and courage are the only ways to thrive in this world where the land itself rises against you." + ] + id: "2B70445E6CD99EDB" + rewards: [ + { + id: "7FD99A708C86052D" + type: "xp" + xp: 5 + } + { + id: "087CC88DE747A5FC" + item: { + Count: 1 + id: "minecraft:stone_sword" + tag: { + Damage: 0 + Enchantments: [{ + id: "minecraft:smite" + lvl: 3s + }] + } + } + type: "item" + } + ] + shape: "diamond" + size: 3.0d + tasks: [{ + advancement: "dungeons_arise:wda_root" + criterion: "" + id: "370B39E72DBEF94E" + type: "advancement" + }] + x: -1.5d + y: -1.0d + } + { + description: ["Cresting the waves like a shadow of the past, this cursed vessel is crewed by skeletons that seem impossible to keep down. Every deck hides danger, every hold whispers of lost treasure and every strike you land may be fleeting. Only the bold (or the foolhardy) dare to face its relentless undead crew."] + hide_dependency_lines: true + id: "14857DBF1DCBF100" + rewards: [ + { + id: "3B0CBC79B26DEE87" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "5420B558F928C72A" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find an Undead Pirate Ship" + tasks: [{ + advancement: "dungeons_arise:find_undead_pirate_ship" + criterion: "" + id: "3C3E2DBE1F5C68F1" + type: "advancement" + }] + x: 2.5d + y: -1.5d + } + { + description: ["A sprawling underground stronghold, the Scorched Mines radiate in four cardinal directions from a central dome. Heat and shadows fill the tunnels, and danger lurks at every turn. Brave adventurers who navigate its branching paths may uncover riches, but only if they survive the hazards within."] + hide_dependency_lines: true + id: "6BFE5D35265080E6" + rewards: [ + { + id: "6116703F46D417E7" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "549C34F6FFCE5D4D" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find the Scorched Mines" + tasks: [{ + advancement: "dungeons_arise:find_scorched_mines" + criterion: "" + id: "4CF084A779395E48" + type: "advancement" + }] + x: 1.5d + y: 1.5d + } + { + description: ["Deep within this subterranean city, the heat of molten lava and the hum of industry dominate the air. The Nether’s influence is strong here, fueling forges and animating Forge Sentinels that patrol every corridor. Only those prepared for fire and steel will survive, and claim the treasures forged within."] + id: "0B89EB36AC565461" + rewards: [ + { + id: "0D6D26CC6DE6A964" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "149BFF2F5A5CDEE8" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Foundry" + tasks: [{ + advancement: "dungeons_arise:find_foundry" + criterion: "" + id: "69A779F12F35E890" + type: "advancement" + }] + x: 2.5d + y: 1.5d + } + { + description: ["In the wilds rests the skeletal form of a great creature. its skeleton stretching skyward like branches of pale bone. Whether a relic of forgotten myth or a beast once hunted to extinction, none can say. Its silent frame endures as a monument to creatures long lost."] + hide_dependency_lines: true + id: "73D5EE5238C37982" + rewards: [ + { + id: "7802AF75E530B01C" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "36708F4170C7CB76" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Ceryneian Hind" + tasks: [{ + advancement: "dungeons_arise:find_ceryneian_hind" + criterion: "" + id: "486BDCC199790197" + type: "advancement" + }] + x: 4.5d + y: -1.5d + } + { + description: ["Half-submerged in the oceans lie the petrified remains of a colossal beast, its skeletal form stretching farther than the eye can follow. Was it a creature of the deep, dragged ashore in ages past—or did it fall from the heavens themselves? No records remain, only questions carved into stone."] + id: "21426F5EEC922866" + rewards: [ + { + id: "15CEBAEFF468DAAB" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "2BFCF9350529EE9A" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Typhon" + tasks: [{ + advancement: "dungeons_arise:find_typhon" + criterion: "" + id: "5A189369C3178897" + type: "advancement" + }] + x: 3.5d + y: -1.5d + } + { + description: ["Nestled among the trees, this lively tavern is usually a haven for villagers looking to unwind. Yet when the ale flows too freely, even the most peaceful patrons turn aggressive, defending their pub with surprising ferocity. Enter carefully or risk being caught in a drunken brawl."] + hide_dependency_lines: true + id: "0331AC0315EBB66D" + rewards: [ + { + id: "462E17605659C551" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "421063868BC25501" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Greenwood Pub" + tasks: [{ + advancement: "dungeons_arise:find_greenwood_pub" + criterion: "" + id: "4D2D40477EC05FB4" + type: "advancement" + }] + x: 3.5d + y: 1.5d + } + { + description: ["Far below the surface lies a twisted network of chambers, where the air is thick with disease and shadow. Once a place of treatment, it now resembles a burial ground for forgotten rulers, its halls echoing with the whispers of those long lost. Only the brave (or the desperate) dare to tread these haunted corridors."] + id: "2EFC5DBD8122A0AE" + rewards: [ + { + id: "139E2F3D51F47B4A" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "668972F10C3A8DE3" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Plague Asylum" + tasks: [{ + advancement: "dungeons_arise:find_plague_asylum" + criterion: "" + id: "5DF446F246D1DC36" + type: "advancement" + }] + x: 4.5d + y: 1.5d + } + { + description: ["Far beneath the surface lies a labyrinth of rails and tunnels, carved by long-forgotten hands. The air is thick with dust and danger. Creatures lurk in the shadows, and the echoes of minecarts rattle through the dark. Yet for those who endure, veins of treasure and hidden chambers make the descent worthwhile."] + hide_dependency_lines: true + id: "76DAECF378BA3F19" + rewards: [ + { + id: "33068FEF0FFB1911" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "61A32621F26F549B" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Mining System" + tasks: [{ + advancement: "dungeons_arise:find_mining_system" + criterion: "" + id: "2416EC8365995B78" + type: "advancement" + }] + x: -6.5d + y: 0.0d + } + { + dependency_requirement: "one_started" + description: ["Driven from their villages, these hardy merchants now wander the wilds, taking shelter beneath simple cyan and brown tents. Though weary from exile, they still offer trade and refuge to travelers brave enough to seek them out. In a world rising with danger, such camps are rare havens of trust."] + hide_dependency_lines: true + id: "67030CEFEC1CEF37" + rewards: [ + { + id: "663936F61FD8BD7D" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "618167E3C75BE899" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Merchant Campsite" + tasks: [{ + advancement: "dungeons_arise:find_merchant_campsite" + criterion: "" + id: "4B08627F4A1AFF06" + type: "advancement" + }] + x: 1.5d + y: -3.0d + } + { + description: ["From a distance, it looks peaceful. Fields of golden wheat swaying beside a proud windmill. But don’t be deceived: the Illagers tend no crops for trade. Behind the rustic facade lies a nest of evil, their blades as sharp as the sickles they carry."] + id: "6A0237FADC519965" + rewards: [ + { + id: "452B3FC858AB1E86" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "05C7C6EB1EC0452C" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find an Illager Windmill" + tasks: [{ + advancement: "dungeons_arise:find_illager_windmill" + criterion: "" + id: "3F9AAADCC97C69AD" + type: "advancement" + }] + x: 2.5d + y: -3.0d + } + { + description: ["Scattered across the wilds, small bands of Illagers set up camp beneath their distinctive purple tents. Though their supplies are meager and their loot scarce, their presence is a warning, the Illagers’ reach grows wider with every outpost."] + id: "436231715C11E3BA" + rewards: [ + { + id: "3C8E48631268B5CD" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "3998AE5FEDBEFE0C" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find an Illager Campsite" + tasks: [{ + advancement: "dungeons_arise:find_illager_campsite" + criterion: "" + id: "112E7B734D7E9375" + type: "advancement" + }] + x: 3.5d + y: -3.0d + } + { + description: ["Rising like a monument to conquest, this sprawling fortress serves as a bastion of Illager power. Its many levels are patrolled by raiders and spellcasters, their banners declaring dominion over the land. Within its halls lie chambers of wealth, guarded by Evokers whose magic is as deadly as their stares."] + id: "5100CFAD43E7D67A" + rewards: [ + { + id: "19294733B3650221" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "37BC7870811C161E" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find an Illager Fort" + tasks: [{ + advancement: "dungeons_arise:find_illager_fort" + criterion: "" + id: "6C0C87A8270363FE" + type: "advancement" + }] + x: 4.5d + y: -3.0d + } + { + description: ["Dark magics linger in the depths of these dungeons, woven into items, halls, and even the very air. Power awaits the bold, but so do twisted fates for the careless."] + hide_dependency_lines: true + id: "4791FC0A2E834D85" + rewards: [ + { + id: "3646F07F510EB24F" + type: "xp" + xp: 5 + } + { + id: "541661114A223C2E" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Bathhouse" + tasks: [{ + advancement: "dungeons_arise:find_bathhouse" + criterion: "" + id: "26EE8FF09CBD5F8A" + type: "advancement" + }] + x: -4.5d + y: 1.5d + } + { + description: ["Time has claimed this once-sacred site, leaving its halls cracked and overgrown. Now, ghostly skeletons and trickster illusioners linger within, guarding little more than shadows of former glory. Though its dangers are real, the temple’s sturdy walls make it a tempting refuge for those seeking a foothold in this hostile world."] + hide_dependency_lines: true + id: "1F10BC33D22328BD" + rewards: [ + { + id: "32CDC6D0DC31D433" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "3FD519BF7723ADCA" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find an Abandoned Temple" + tasks: [{ + advancement: "dungeons_arise:find_abandoned_temple" + criterion: "" + id: "260A6A230E667757" + type: "advancement" + }] + x: 1.5d + y: 0.0d + } + { + description: ["Marked by its dark prismarine and yellow terracotta roof, this temple has long since fallen to corruption. Inside, swarms of spider-like creatures creep through its halls, striking with venom and ferocity. To enter is to step into a nest where every shadow crawls."] + id: "70327C3AC547B354" + rewards: [ + { + id: "68F97E305A50C052" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "2246F0EA7C7248DB" + table_id: 2501998888776764148L + type: "random" + } + { + id: "53017AF747D37FE2" + item: "minecraft:milk_bucket" + type: "item" + } + { + id: "75A7B522886E6DC5" + item: { + Count: 1 + id: "minecraft:shield" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "7607C35EF76429BC" + item: { + Count: 1 + id: "minecraft:potion" + tag: { + Potion: "minecraft:strong_healing" + } + } + type: "item" + } + ] + subtitle: "Find an Infested Temple" + tasks: [{ + advancement: "dungeons_arise:find_infested_temple" + criterion: "" + id: "47F1C278368603C0" + type: "advancement" + }] + x: 2.5d + y: 0.0d + } + { + description: ["Hidden among hills and valleys, the monastery stands as a quiet refuge in a world of rising danger. Here, villagers tend to simple lives of prayer and work, untouched by Illager conquest. Though the halls hold little in the way of treasure, their sturdy walls and peaceful company make this an ideal sanctuary for weary adventurers."] + id: "3ECA226F08D5195F" + rewards: [ + { + id: "41645375BA6259B7" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "22A9AA3ADAE6EEA0" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Monastery" + tasks: [{ + advancement: "dungeons_arise:find_monasteries" + criterion: "" + id: "14DE9E9CFEC93BEE" + type: "advancement" + }] + x: 4.5d + y: 0.0d + } + { + id: "188AAB5B74C6EAAE" + rewards: [{ + id: "4B897234E9FE03BE" + type: "xp" + xp: 5 + }] + subtitle: "Discover an Infested Temple explorer map" + tasks: [{ + advancement: "dungeons_arise:find_infested_temple_map" + criterion: "" + id: "35847DED78F07FD1" + type: "advancement" + }] + x: 3.5d + y: 0.0d + } + { + description: ["A riot of color rises from the wilderness, marking the territory of a cunning band of raiders. Their homes are bright and inviting, but enter at your own risk. These defenders strike fast and often. Those who prevail will find spoils and secrets hidden among the lively façades."] + hide_dependency_lines: true + id: "7052C9A5A804E866" + rewards: [ + { + id: "4CF002624EC4EA10" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "1AE275310393BC60" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Bandit Village" + tasks: [{ + advancement: "dungeons_arise:find_bandit_village" + criterion: "" + id: "046A7A36AAA1581B" + type: "advancement" + }] + x: -6.5d + y: 1.5d + } + { + description: ["Bright banners and painted walls lure travelers closer, but inside these towering strongholds, chaos reigns. Each floor brims with bandits and traps, their laughter echoing as waves of foes pour from endless spawners. Conquer the towers, and their riches—and notoriety—are yours."] + id: "4E4052F7EAD4FDD6" + rewards: [ + { + id: "4870E0C735EFB047" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "3DE76BC9FB5C418F" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find the Bandit Towers" + tasks: [{ + advancement: "dungeons_arise:find_bandit_towers" + criterion: "" + id: "3385F0267DECF3F5" + type: "advancement" + }] + x: -7.5d + y: 1.5d + } + { + description: ["Out on the open seas, the &6Illagers&r have taken to the waves, commandeering massive galleys and swift corsairs. Their sails cast long shadows, and their cannons roar with fury. Only the bravest dare to board, for fortune favors those who seize it."] + hide_dependency_lines: true + id: "1CEF2A38948010A2" + rewards: [ + { + id: "74AFEA612DAEA77B" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "572ED1EA4AA7642B" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find an Illager Corsair or an Illager Galley" + tasks: [{ + advancement: "dungeons_arise:find_illager_corsair_or_illager_galley" + criterion: "" + id: "13FAA97CD04E729F" + type: "advancement" + }] + x: 1.5d + y: -1.5d + } + { + description: ["A quiet spring hidden among the hills, its waters swirl mysteriously in the bottomless well. Travelers speak of subtle blessings for those brave enough to approach. Some even report a modest burst of speed for journeys ahead. Whether magic or rumor, the well offers a curious advantage to explorers."] + hide_dependency_lines: true + id: "63116691C92FD576" + rewards: [ + { + id: "1EC411FAAFCE2051" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "0BA5E78C68A1BE79" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Wishing Well" + tasks: [{ + advancement: "dungeons_arise:find_wishing_well" + criterion: "" + id: "1112346FCE595D25" + type: "advancement" + }] + x: -4.5d + y: 0.0d + } + { + hide_dependency_lines: true + id: "2DB4F395EA26DF4B" + rewards: [ + { + id: "4FDF1EAB54F02D9B" + type: "xp" + xp: 5 + } + { + id: "7AFBC8A4B8846916" + item: { + Count: 1 + id: "minecraft:shield" + tag: { + Damage: 0 + } + } + type: "item" + } + { + exclude_from_claim_all: true + id: "2518799CE5E090D8" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Coliseum" + tasks: [{ + advancement: "dungeons_arise:find_coliseum" + criterion: "" + id: "19F4B8F56029D48B" + type: "advancement" + }] + x: -7.5d + y: 0.0d + } + { + hide_dependency_lines: true + id: "1C375606107C117F" + rewards: [ + { + id: "65D9A05488B29DB8" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "74A1CF999C7351D0" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find Keep Kayra" + tasks: [{ + advancement: "dungeons_arise:find_keep_kayra" + criterion: "" + id: "10DC2583F7D95F67" + type: "advancement" + }] + x: -5.5d + y: 1.5d + } + { + description: ["A monument of grandeur and mystery, the Shiraz Palace sprawls in every direction, its halls twisting and turning beyond comprehension. Its purpose remains unknown, but its size and opulence are undeniable. Travelers beware: without a companion, it’s all too easy to lose your way in this labyrinthine estate."] + hide_dependency_lines: true + id: "2A0A01BE836BB2AB" + rewards: [ + { + id: "6588720BCE9DEDED" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "2BEF98DD37C72991" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find the Shiraz Palace" + tasks: [{ + advancement: "dungeons_arise:find_shiraz_palace" + criterion: "" + id: "47737CA5646934EA" + type: "advancement" + }] + x: -7.5d + y: -1.5d + } + { + description: ["Vast and dreamlike, the Aviary stretches high into wtilight sky, its halls divided into four whimsical quadrants. Each one unfolds as a surreal scene—bright, strange, and perilous in its own way. To wander here feels like stepping beyond reality itself. Is this the journey’s end… or just another beginning?"] + id: "2A1B0386B7987DD3" + rewards: [ + { + id: "5F42CB6903D2D426" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "4EA95E86AC3D0F5F" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find an Aviary" + tasks: [{ + advancement: "dungeons_arise:find_aviary" + criterion: "" + id: "655386225D266D6C" + type: "advancement" + }] + x: -4.5d + y: -1.5d + } + { + description: ["Rising like jagged thorns from the ground, these massive towers are defended by skeletons entwined with deadly roses. Each level is heavily fortified, and flying rose guards patrol the skies above. Only those who ascend to the top will claim the treasures and secrets hidden within."] + id: "4118927D9D079DC8" + rewards: [ + { + id: "6A5373B21D8CDC36" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "283CD9EBCE614F81" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Visit the Thornborn Towers" + tasks: [{ + advancement: "dungeons_arise:find_thornborn_towers" + criterion: "" + id: "2752670CDE3E38D9" + type: "advancement" + }] + x: -6.5d + y: -1.5d + } + { + id: "509E9CA83FBC780E" + rewards: [ + { + id: "56867E39A44B14B5" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "030CE8F183BEB093" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Fishing Hut" + tasks: [{ + advancement: "dungeons_arise:find_fishing_hut" + criterion: "" + id: "4727F51E44F70C4D" + type: "advancement" + }] + x: -5.5d + y: -1.5d + } + { + description: ["Whispers speak of a &9flying vessel&r that hovers above the world, shimmering with strange energy. Few dare approach, for those who return tell of eerie lights, warped corridors, and guardians not of this realm. Seek it out, if you dare—and uncover the secrets hidden within its metallic shell."] + hide_dependency_lines: true + id: "44D115281B0BFB75" + rewards: [ + { + id: "47F325A7EC68AF62" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "10007F42128A2017" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Giant Mushroom" + tasks: [{ + advancement: "dungeons_arise:find_giant_mushroom" + criterion: "" + id: "681A721779D01766" + type: "advancement" + }] + x: -4.5d + y: -3.0d + } + { + description: ["Sprouting from a cluster of towering fungi, this outpost of miners has carved their livelihood into the surface world. Ruthless and territorial, they will defend their claim with tooth and nail. Whether the giant mushrooms shield them from the sun or serve some darker purpose, none can say. One truth remains certain: the mine runs rich with ore, for those bold enough to claim it."] + id: "541BBC35DA4F0B73" + rewards: [ + { + id: "6E516C75DA00409D" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "7E2E19C6A85C2E8E" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Mushroom Mine" + tasks: [{ + advancement: "dungeons_arise:find_mushroom_mines" + criterion: "" + id: "2DB9AC6B74C7F5FE" + type: "advancement" + }] + x: -5.5d + y: -3.0d + } + { + description: ["Shaped from the stem and cap of a giant fungus, this whimsical dwelling offers a rare touch of charm in a perilous world. Lightly guarded and easy to claim, the mushroom house makes for a delightful refuge, perfect for any adventurer who’s ever dreamed of calling a mushroom home."] + id: "6CB5ACBAAED66871" + rewards: [ + { + id: "76D205BEE193F7F6" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "30AA233B9446B9B8" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Find a Mushroom House" + tasks: [{ + advancement: "dungeons_arise:find_mushroom_house" + criterion: "" + id: "29A30FFC83C5C056" + type: "advancement" + }] + x: -6.5d + y: -3.0d + } + { + description: ["Clustered around a towering central “grandmother” mushroom, these villages appear quaint from afar. Yet the villagers within are far more aggressive than their old-world counterparts, hiding a cunning fierceness beneath their colorful caps. Approach with caution as this village may welcome the unwary only to spring its traps."] + id: "1CCA31D9352C60E6" + rewards: [ + { + id: "2039486A38B0BCC9" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "53195AFD100C006D" + table_id: 2501998888776764148L + type: "random" + } + ] + shape: "circle" + subtitle: "Find a mushroom village" + tasks: [{ + advancement: "dungeons_arise:find_mushroom_village" + criterion: "" + id: "5930795CC7E40B4C" + type: "advancement" + }] + x: -7.5d + y: -3.0d + } + { + hide_dependency_lines: true + id: "3D1C0F80B74B27D5" + rewards: [ + { + id: "1153C3FCAD2127CD" + type: "xp" + xp: 5 + } + { + exclude_from_claim_all: true + id: "38D152D13F083EB8" + table_id: 2501998888776764148L + type: "random" + } + ] + subtitle: "Arrive at a Lighthouse" + tasks: [{ + advancement: "dungeons_arise:find_lighthouse" + criterion: "" + id: "4E48C3A1C4ADCEE9" + type: "advancement" + }] + x: -5.5d + y: 0.0d + } + ] + title: "When Dungeons Arise" +} diff --git a/minecraft/config/ftbquests/quests/chapters/wireless_chargers.snbt b/minecraft/config/ftbquests/quests/chapters/wireless_chargers.snbt new file mode 100644 index 0000000..edecb4d --- /dev/null +++ b/minecraft/config/ftbquests/quests/chapters/wireless_chargers.snbt @@ -0,0 +1,75 @@ +{ + autofocus_id: "55F5B764AD732CC6" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "wireless_chargers" + group: "62AD16E73710A992" + id: "6470BE5F154FB113" + order_index: 4 + quest_links: [ ] + quests: [ + { + id: "55F5B764AD732CC6" + rewards: [{ + id: "5FB7C8C4AB11E8DC" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "2FA8D19AF070B7BF" + item: "wirelesschargers:basic_wireless_block_charger" + type: "item" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["55F5B764AD732CC6"] + id: "7794DED7B044EFA2" + rewards: [{ + id: "45E2CB37618AEDD6" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "001D7AFC1D7D8B8F" + item: "wirelesschargers:advanced_wireless_block_charger" + type: "item" + }] + x: 0.0d + y: 1.5d + } + { + id: "448733C1D3DEEEEB" + rewards: [{ + id: "7DF6D0F8C2C6FEFC" + type: "xp" + xp: 50 + }] + tasks: [{ + id: "51073B2DBBA2442D" + item: "wirelesschargers:basic_wireless_player_charger" + type: "item" + }] + x: 1.5d + y: 0.0d + } + { + dependencies: ["448733C1D3DEEEEB"] + id: "41E4A7E60EEAD95A" + rewards: [{ + id: "76ECE383B65C06E4" + type: "xp" + xp: 100 + }] + tasks: [{ + id: "39F870A2B2D24CE6" + item: "wirelesschargers:advanced_wireless_player_charger" + type: "item" + }] + x: 1.5d + y: 1.5d + } + ] + title: "&3&oWireless Chargers" +} diff --git a/minecraft/config/ftbquests/quests/data.snbt b/minecraft/config/ftbquests/quests/data.snbt new file mode 100644 index 0000000..bfdf3c9 --- /dev/null +++ b/minecraft/config/ftbquests/quests/data.snbt @@ -0,0 +1,24 @@ +{ + default_autoclaim_rewards: "disabled" + default_consume_items: false + default_quest_disable_jei: false + default_quest_shape: "circle" + default_reward_team: false + detection_delay: 20 + disable_gui: false + drop_book_on_death: false + drop_loot_crates: false + emergency_items_cooldown: 300 + grid_scale: 0.5d + hide_excluded_quests: false + lock_message: "" + loot_crate_no_drop: { + boss: 0 + monster: 600 + passive: 4000 + } + pause_game: false + progression_mode: "linear" + show_lock_icons: false + version: 13 +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/054CA8E7E20BCF02.snbt b/minecraft/config/ftbquests/quests/reward_tables/054CA8E7E20BCF02.snbt new file mode 100644 index 0000000..36e82a2 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/054CA8E7E20BCF02.snbt @@ -0,0 +1,44 @@ +{ + icon: "minecraft:chest" + id: "054CA8E7E20BCF02" + loot_size: 1 + order_index: 3 + rewards: [ + { item: "minecraft:blaze_powder" } + { item: "minecraft:gold_ingot" } + { item: "minecraft:soul_sand" } + { item: "minecraft:golden_apple" } + { item: "minecraft:red_tulip" } + { item: "inventorypets:nugget_emerald" } + { item: "minecraft:iron_nugget" } + { item: "minecraft:gold_nugget" } + { item: "minecraft:cooked_chicken" } + { item: "minecraft:wheat_seeds" } + { item: "minecraft:wheat" } + { item: "minecraft:pumpkin" } + { item: "minecraft:red_mushroom" } + { item: "inventorypets:nugget_lapis" } + { item: "minecraft:bone" } + { item: "inventorypets:nugget_diamond" } + { item: "minecraft:note_block" } + { item: "minecraft:dirt" } + { item: "minecraft:cobblestone" } + { item: "minecraft:string" } + { item: "inventorypets:nugget_coal" } + { item: "minecraft:tripwire_hook" } + { item: "inventorypets:nugget_obsidian" } + { item: "minecraft:gunpowder" } + { item: "minecraft:glowstone_dust" } + { item: "minecraft:quartz" } + { item: "minecraft:lily_pad" } + { item: "minecraft:cooked_cod" } + { item: "minecraft:cod" } + { item: "minecraft:white_wool" } + { item: "minecraft:nether_wart" } + { item: "inventorypets:nugget_ender" } + { item: "minecraft:cookie" } + { item: "minecraft:carrot" } + { item: "minecraft:feather" } + ] + title: "Pets Food" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/1125664D1F9EC2E7.snbt b/minecraft/config/ftbquests/quests/reward_tables/1125664D1F9EC2E7.snbt new file mode 100644 index 0000000..90516cf --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/1125664D1F9EC2E7.snbt @@ -0,0 +1,43 @@ +{ + icon: "minecraft:chest" + id: "1125664D1F9EC2E7" + loot_size: 1 + order_index: 11 + rewards: [ + { + item: { + Count: 1 + ForgeCaps: { + Parent: { + energy: { + energy: 4000 + } + } + } + id: "cyclic:battery_clay" + tag: { + energytt: 4000 + energyttmax: 16000 + } + } + } + { count: 7, item: "fluxnetworks:flux_core", weight: 1.25f } + { item: "pneumaticcraft:transistor", weight: 1.5f } + { count: 19, item: "fluxnetworks:flux_dust" } + { item: "draconicevolution:draconium_ingot", weight: 0.5f } + { count: 3, item: "bigreactors:graphite_ingot", weight: 2.0f } + { item: "alltheores:steel_ingot" } + { count: 4, item: "pneumaticcraft:ingot_iron_compressed" } + { count: 9, item: "alltheores:uranium_ingot" } + { count: 14, item: "minecraft:redstone", weight: 3.0f } + { count: 32, item: "minecraft:obsidian", weight: 2.5f } + { item: "alltheores:lead_ingot" } + { count: 32, item: "minecraft:oak_log" } + { count: 16, item: "mysticalagriculture:prosperity_shard" } + { count: 8, item: "mysticalagriculture:prosperity_shard" } + { item: "minecraft:quartz" } + { count: 10, item: "ae2:certus_quartz_crystal" } + { item: "mobees:yellorium_bit" } + ] + title: "Power" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/3CE679FA6073FDB4.snbt b/minecraft/config/ftbquests/quests/reward_tables/3CE679FA6073FDB4.snbt new file mode 100644 index 0000000..5180a19 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/3CE679FA6073FDB4.snbt @@ -0,0 +1,14 @@ +{ + icon: "minecraft:chest" + id: "3CE679FA6073FDB4" + loot_size: 1 + order_index: 1 + rewards: [ + { item: "minecraft:flint", random_bonus: 3, weight: 3.0f } + { + type: "custom" + weight: 4.0f + } + ] + title: "Gravel1" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/420CD4CC57E4D536.snbt b/minecraft/config/ftbquests/quests/reward_tables/420CD4CC57E4D536.snbt new file mode 100644 index 0000000..e33c68c --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/420CD4CC57E4D536.snbt @@ -0,0 +1,24 @@ +{ + icon: "minecraft:chest" + id: "420CD4CC57E4D536" + loot_size: 1 + order_index: 12 + rewards: [ + { item: "ae2:creative_fluid_cell" } + { + item: { + Count: 1 + id: "extradisks:infinite_fluid_storage_disk" + tag: { + Id: [I; + 398933027 + -2063121295 + -2058375956 + 1624962544 + ] + } + } + } + ] + title: "AppliedOrRS" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/48AD1D9CEEAC5240.snbt b/minecraft/config/ftbquests/quests/reward_tables/48AD1D9CEEAC5240.snbt new file mode 100644 index 0000000..284f5dd --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/48AD1D9CEEAC5240.snbt @@ -0,0 +1,28 @@ +{ + icon: "minecraft:chest" + id: "48AD1D9CEEAC5240" + loot_size: 1 + order_index: 9 + rewards: [ + { item: "minecraft:iron_block" } + { count: 3, item: "thermal:coal_coke" } + { item: "kubejs:compressed_iron_plate" } + { item: "pneumaticcraft:compressed_iron_block" } + { item: "alltheores:steel_block" } + { count: 5, item: "alltheores:steel_ingot" } + { count: 2, item: "pneumaticcraft:ingot_iron_compressed" } + { item: "alltheores:iron_plate" } + { count: 20, item: "minecraft:iron_ingot" } + { item: "minecraft:diamond_block" } + { count: 4, item: "minecraft:diamond" } + { item: "immersiveengineering:treated_wood_horizontal" } + { count: 12, item: "minecraft:gold_ingot" } + { count: 16, item: "minecraft:dried_kelp" } + { count: 7, item: "create:andesite_alloy" } + { count: 32, item: "minecraft:oak_log" } + { count: 4, item: "mysticalagriculture:prosperity_shard" } + { item: "mobees:cobalt_bit" } + { item: "extendedcrafting:black_iron_slate" } + ] + title: "Tech" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/4F3C4E448E70422F.snbt b/minecraft/config/ftbquests/quests/reward_tables/4F3C4E448E70422F.snbt new file mode 100644 index 0000000..2875804 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/4F3C4E448E70422F.snbt @@ -0,0 +1,97 @@ +{ + icon: "minecraft:chest" + id: "4F3C4E448E70422F" + loot_size: 1 + order_index: 6 + rewards: [ + { item: "croptopia:banana" } + { item: "croptopia:avocado" } + { item: "croptopia:apricot" } + { item: "croptopia:lime" } + { item: "croptopia:lemon" } + { item: "croptopia:pecan" } + { item: "croptopia:persimmon" } + { item: "croptopia:starfruit" } + { item: "croptopia:nectarine" } + { item: "croptopia:walnut" } + { item: "croptopia:mango" } + { item: "croptopia:pear" } + { item: "croptopia:kumquat" } + { item: "croptopia:plum" } + { item: "croptopia:almond" } + { item: "croptopia:peach" } + { item: "croptopia:orange" } + { item: "croptopia:nutmeg" } + { item: "croptopia:soybean" } + { item: "croptopia:date" } + { item: "croptopia:yam" } + { item: "croptopia:coconut" } + { item: "croptopia:turnip" } + { item: "croptopia:dragonfruit" } + { item: "croptopia:cherry" } + { item: "croptopia:fig" } + { item: "croptopia:grapefruit" } + { item: "croptopia:basil" } + { item: "croptopia:asparagus" } + { item: "croptopia:cranberry" } + { item: "croptopia:coffee_beans" } + { item: "croptopia:celery" } + { item: "croptopia:greenbean" } + { item: "croptopia:kale" } + { item: "croptopia:kiwi" } + { item: "croptopia:leek" } + { item: "croptopia:lettuce" } + { item: "croptopia:oat" } + { item: "croptopia:pineapple" } + { item: "croptopia:radish" } + { item: "croptopia:raspberry" } + { item: "croptopia:rhubarb" } + { item: "croptopia:rutabaga" } + { item: "croptopia:rice" } + { item: "croptopia:olive" } + { item: "croptopia:onion" } + { item: "croptopia:peanut" } + { item: "croptopia:saguaro" } + { item: "croptopia:squash" } + { item: "croptopia:spinach" } + { item: "croptopia:strawberry" } + { item: "croptopia:tomatillo" } + { item: "croptopia:sweetpotato" } + { item: "croptopia:tomato" } + { item: "croptopia:honeydew" } + { item: "croptopia:cashew" } + { item: "croptopia:cauliflower" } + { item: "croptopia:cantaloupe" } + { item: "croptopia:grape" } + { item: "croptopia:greenonion" } + { item: "croptopia:zucchini" } + { item: "minecraft:sweet_berries" } + { item: "minecraft:glow_berries" } + { item: "minecraft:beetroot" } + { item: "minecraft:apple" } + { item: "minecraft:melon_slice" } + { item: "minecraft:carrot" } + { item: "minecraft:potato" } + { item: "croptopia:barley" } + { item: "croptopia:artichoke" } + { item: "create:bar_of_chocolate" } + { item: "ars_nouveau:sourceberry_bush" } + { item: "ars_elemental:flashpine_pod" } + { item: "minecraft:cookie" } + { item: "minecraft:bread" } + { item: "croptopia:bellpepper" } + { item: "croptopia:blackbean" } + { item: "croptopia:blackberry" } + { item: "croptopia:cucumber" } + { item: "croptopia:corn" } + { item: "croptopia:chile_pepper" } + { item: "croptopia:garlic" } + { item: "croptopia:elderberry" } + { item: "croptopia:eggplant" } + { item: "croptopia:currant" } + { item: "croptopia:blueberry" } + { item: "croptopia:broccoli" } + { item: "croptopia:cabbage" } + ] + title: "Crop Rewards" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/53186EC0A698C23F.snbt b/minecraft/config/ftbquests/quests/reward_tables/53186EC0A698C23F.snbt new file mode 100644 index 0000000..312021a --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/53186EC0A698C23F.snbt @@ -0,0 +1,1006 @@ +{ + icon: "minecraft:cake" + id: "53186EC0A698C23F" + loot_size: 1 + order_index: 0 + rewards: [ + { item: "gobberdelight:ender_gooey_pie_slice" } + { item: "gobberdelight:nether_gooey_pie_slice" } + { item: "gobberdelight:gooey_pie_slice" } + { item: "forestry:honeyed_slice" } + { item: "forcecraft:cooked_bacon" } + { item: "undergardendelight:gronglet_roll" } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 57 + "forge:effect_id": "tombstone:true_sight" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 17 + "forge:effect_id": "minecraft:hunger" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 360 + EffectId: 21 + "forge:effect_id": "minecraft:health_boost" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 10 + "forge:effect_id": "minecraft:regeneration" + }] + } + } + } + { item: "mynethersdelight:deviled_egg" } + { item: "refurbished_furniture:meatlovers_pizza_slice" } + { item: "refurbished_furniture:vegetable_pizza_slice" } + { item: "mynethersdelight:dried_ghast_with_milk" } + { item: "projectvibrantjourneys:nettle_soup" } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 10 + "forge:effect_id": "minecraft:regeneration" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 26 + "forge:effect_id": "minecraft:luck" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 28 + "forge:effect_id": "minecraft:slow_falling" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 29 + "forge:effect_id": "minecraft:conduit_power" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 16 + "forge:effect_id": "minecraft:night_vision" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 14 + "forge:effect_id": "minecraft:invisibility" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 12 + "forge:effect_id": "minecraft:fire_resistance" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 31 + "forge:effect_id": "minecraft:bad_omen" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 4 + "forge:effect_id": "minecraft:mining_fatigue" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 27 + "forge:effect_id": "minecraft:unluck" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 5 + "forge:effect_id": "minecraft:strength" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 11 + "forge:effect_id": "minecraft:resistance" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 21 + "forge:effect_id": "minecraft:health_boost" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 160 + EffectId: 13 + "forge:effect_id": "minecraft:water_breathing" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 180 + EffectId: 13 + "forge:effect_id": "minecraft:water_breathing" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 28 + "forge:effect_id": "minecraft:slow_falling" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 240 + EffectId: 27 + "forge:effect_id": "minecraft:unluck" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 100 + EffectId: 28 + "forge:effect_id": "minecraft:slow_falling" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 100 + EffectId: 10 + "forge:effect_id": "minecraft:regeneration" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 100 + EffectId: 1 + "forge:effect_id": "minecraft:speed" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 200 + EffectId: 19 + "forge:effect_id": "minecraft:poison" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 240 + EffectId: 349 + "forge:effect_id": "buzzier_bees:sunny" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 24 + "forge:effect_id": "minecraft:glowing" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 100 + EffectId: 16 + "forge:effect_id": "minecraft:night_vision" + }] + } + } + } + { item: "farmersrespite:green_tea_cookie" } + { item: "farmersrespite:nether_wart_sourdough" } + { item: "fishofthieves:half_pineapple" } + { item: "fishofthieves:earthworms" } + { item: "fishofthieves:grubs" } + { item: "fishofthieves:leeches" } + { item: "forbidden_arcanus:cooked_tentacle" } + { item: "forcecraft:fortune_cookie" } + { item: "forcecraft:soul_wafer" } + { item: "mcwholidays:candy_cane" } + { item: "hexerei:packing_peanut" } + { item: "hexerei:tallow_bottle" } + { + item: { + Count: 1 + id: "hexerei:lava_bottle" + tag: { + Damage: 0 + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 15 + "forge:effect_id": "minecraft:blindness" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 11 + "forge:effect_id": "minecraft:resistance" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 18 + "forge:effect_id": "minecraft:weakness" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 1 + "forge:effect_id": "minecraft:speed" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 160 + EffectId: 20 + "forge:effect_id": "minecraft:wither" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 240 + EffectId: 19 + "forge:effect_id": "minecraft:poison" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 8 + "forge:effect_id": "minecraft:jump_boost" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 160 + EffectId: 10 + "forge:effect_id": "minecraft:regeneration" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 180 + EffectId: 18 + "forge:effect_id": "minecraft:weakness" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 20 + "forge:effect_id": "minecraft:wither" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 5 + "forge:effect_id": "minecraft:strength" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 22 + "forge:effect_id": "minecraft:absorption" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 19 + "forge:effect_id": "minecraft:poison" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 17 + "forge:effect_id": "minecraft:hunger" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 200 + EffectId: 24 + "forge:effect_id": "minecraft:glowing" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 200 + EffectId: 27 + "forge:effect_id": "minecraft:unluck" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 400 + EffectId: 19 + "forge:effect_id": "minecraft:poison" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 300 + EffectId: 15 + "forge:effect_id": "minecraft:blindness" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 80 + EffectId: 12 + "forge:effect_id": "minecraft:fire_resistance" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 160 + EffectId: 15 + "forge:effect_id": "minecraft:blindness" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 600 + EffectId: 18 + "forge:effect_id": "minecraft:weakness" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 25 + "forge:effect_id": "minecraft:levitation" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 600 + EffectId: 1 + "forge:effect_id": "minecraft:speed" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 200 + EffectId: 3 + "forge:effect_id": "minecraft:haste" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 200 + EffectId: 15 + "forge:effect_id": "minecraft:blindness" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 200 + EffectId: 20 + "forge:effect_id": "minecraft:wither" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 200 + EffectId: 2 + "forge:effect_id": "minecraft:slowness" + }] + } + } + } + { item: "oceansdelight:baked_tentacle_on_a_stick" } + { item: "oceansdelight:cooked_guardian_tail" } + { item: "thermal:pbj_sandwich" } + { item: "undergarden:slop_bowl" } + { item: "twilightdelight:chocolate_wafer" } + { item: "oceansdelight:seagrass_salad" } + { item: "the_bumblezone:sugar_water_bottle" } + { item: "oceansdelight:honey_fried_kelp" } + { item: "oceansdelight:cooked_stuffed_cod" } + { item: "oceansdelight:fugu_roll" } + { item: "oceansdelight:elder_guardian_roll" } + { item: "thermal:sushi_maki" } + { item: "thermal:spring_salad" } + { item: "thermal:syrup_bottle" } + { item: "tconstruct:bacon" } + { item: "twilightdelight:cooked_meef_slice" } + { item: "twilightdelight:cooked_insect" } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 160 + EffectId: 9 + "forge:effect_id": "minecraft:nausea" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 18 + "forge:effect_id": "minecraft:weakness" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 450 + EffectId: 24 + "forge:effect_id": "minecraft:glowing" + }] + } + } + } + { item: "create_central_kitchen:mulberry_pie_slice" } + { item: "farmersrespite:coffee_cake_slice" } + { item: "farmersrespite:coffee_berries" } + { item: "undergardendelight:cooked_dweller_meat_slice" } + { item: "undergardendelight:cooked_gloomper_cuts" } + { item: "refurbished_furniture:sweet_berry_jam_toast" } + { item: "refurbished_furniture:glow_berry_jam_toast" } + { item: "refurbished_furniture:cheese_toastie" } + { item: "endersdelight:steak_fries" } + { item: "endersdelight:twisted_cereal" } + { item: "endersdelight:crispy_skewer" } + { item: "endersdelight:crawling_sandwich" } + { item: "endersdelight:chorus_pie_slice" } + { item: "doggytalents:edamame_unpodded" } + { item: "caupona:plump_snail" } + { item: "caupona:snail" } + { item: "caupona:wolfberries" } + { item: "caupona:fig" } + { item: "buzzier_bees:honey_apple" } + { item: "buzzier_bees:honey_bread" } + { item: "culturaldelights:cut_pickle" } + { item: "culturaldelights:smoked_tomato" } + { item: "culturaldelights:smoked_cut_eggplant" } + { item: "culturaldelights:popcorn" } + { item: "culturaldelights:tortilla_chips" } + { item: "culturaldelights:elote" } + { item: "culturaldelights:empanada" } + { item: "delightful:glow_jam_cookie" } + { item: "delightful:mulberry_pie_slice" } + { item: "delightful:gloomgourd_pie_slice" } + { item: "delightful:salmonberry_pie_slice" } + { item: "culturaldelights:calamari_roll" } + { item: "culturaldelights:rice_ball" } + { item: "culturaldelights:egg_roll" } + { item: "culturaldelights:midori_roll_slice" } + { item: "culturaldelights:avocado_toast" } + { item: "delightful:ender_nectar" } + { item: "delightful:rock_candy" } + { item: "delightful:cooked_goat" } + { item: "delightful:cantaloupe_bread" } + { item: "undergardendelight:scintling_stew" } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 1 + "forge:effect_id": "minecraft:speed" + }] + } + } + } + { + item: { + Count: 1 + id: "minecraft:suspicious_stew" + tag: { + Effects: [{ + EffectDuration: 120 + EffectId: 2 + "forge:effect_id": "minecraft:slowness" + }] + } + } + } + { item: "farmersdelight:cabbage_rolls" } + { item: "aquaculturedelight:catfish_barbecue" } + { item: "create:sweet_roll" } + { item: "create:builders_tea" } + { item: "croptopia:baked_beans" } + { item: "croptopia:baked_sweet_potato" } + { item: "croptopia:baked_yam" } + { item: "croptopia:popcorn" } + { item: "croptopia_additions:frosted_churro" } + { item: "croptopia:crema" } + { item: "croptopia:tea" } + { item: "croptopia:roasted_sunflower_seeds" } + { item: "croptopia:roasted_pumpkin_seeds" } + { item: "croptopia:corn_bread" } + { item: "croptopia:frog_legs" } + { item: "croptopia_additions:chicken_curry" } + { item: "croptopia_additions:cotton_candy" } + { item: "croptopia_additions:cupcake" } + { item: "croptopia_additions:sugar_cookie" } + { item: "croptopia_additions:churro" } + { item: "farmersdelight:cake_slice" } + { item: "farmersdelight:apple_pie_slice" } + { item: "farmersdelight:sweet_berry_cheesecake_slice" } + { item: "aquaculture:sushi" } + { item: "aquaculture:algae" } + { item: "farmersdelight:dog_food" } + { item: "farmersdelight:bone_broth" } + { item: "farmersdelight:nether_salad" } + { item: "farmersdelight:melon_popsicle" } + { item: "farmersdelight:honey_cookie" } + { item: "farmersdelight:sweet_berry_cookie" } + { item: "farmersdelight:chocolate_pie_slice" } + { item: "aquaculture:fish_fillet_raw" } + { item: "aquaculturedelight:raw_fish_fillet_roll" } + { item: "aquaculturedelight:crispy_nori_kelp" } + { item: "aquaculturedelight:poor_fisher_chowder" } + { item: "aquaculturedelight:jellyfish_jelly" } + { item: "aquaculturedelight:crispy_fried_perch" } + { item: "aquaculturedelight:fried_perch_roll" } + { item: "aquaculturedelight:cooked_small_turtle_meat" } + { item: "blue_skies:brewberry" } + { item: "blue_skies:comet_berries" } + { item: "blue_skies:crescent_fruit" } + { item: "blue_skies:black_brewberry" } + { item: "create_central_kitchen:chocolate_cake_slice" } + { item: "create_central_kitchen:honey_cake_slice" } + { item: "upgrade_aquatic:boiled_pickerelweed" } + { item: "farmersrespite:rose_hip_pie_slice" } + { item: "blue_skies:pink_brewberry" } + { item: "delightful:cantaloupe_popsicle" } + { item: "mynethersdelight:roast_ear" } + { item: "mynethersdelight:magma_cake_slice" } + { item: "delightful:salmonberry_gummy" } + { + item: { + Count: 1 + ForgeCaps: { + Parent: { + module_host: { + modules: [ ] + properties: { } + provider_id: [I; + 1795960779 + 464865888 + -1233042765 + -1129280946 + ] + } + } + } + id: "draconicadditions:hermal" + } + weight: 0.01f + } + { item: "endersdelight:strange_eclair" } + { item: "endersdelight:uncanny_cookies" } + { item: "tmted:bottle_of_wodka" } + { item: "undergardendelight:shimmerpearl" } + { item: "create_central_kitchen:pumpkin_pie_slice" } + { item: "mynethersdelight:tear_popsicle" } + { item: "undergardendelight:roasted_underbean_on_a_stick" } + { + item: { + Count: 1 + id: "candlelight:tomato_soup" + tag: { + StoredEffects: [ ] + } + } + } + { item: "bakery:bread_with_jam" } + { item: "cornexpansion:corn_syrup_cookie" } + { item: "cornexpansion:grilled_corn" } + { item: "quarkdelight:crab_bars" } + { item: "naturalist:cooked_lizard_tail" } + { item: "twilightdelight:cooked_venison_rib" } + { item: "naturalist:cooked_duck" } + { item: "naturalist:cooked_bushmeat" } + { + item: { + Count: 1 + id: "candlelight:mushroom_soup" + tag: { + StoredEffects: [ ] + } + } + } + { + item: { + Count: 1 + id: "candlelight:salmon_on_white_wine" + tag: { + StoredEffects: [ ] + } + } + } + { item: "farm_and_charm:onion_soup" } + { item: "farm_and_charm:potato_soup" } + { item: "farm_and_charm:strawberry_tea" } + { item: "farm_and_charm:nettle_tea" } + { item: "farm_and_charm:ribwort_tea" } + { item: "vinery:rotten_cherry" } + { item: "botania:mana_bottle" } + { item: "supplementaries:candy" } + { item: "doggytalents:easter_egg_candy" } + { item: "doggytalents:egg_sandwich" } + { item: "doggytalents:soy_milk" } + ] + title: "Food Rewards" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/5780741175E14A9B.snbt b/minecraft/config/ftbquests/quests/reward_tables/5780741175E14A9B.snbt new file mode 100644 index 0000000..a6f5173 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/5780741175E14A9B.snbt @@ -0,0 +1,39 @@ +{ + icon: "minecraft:chest" + id: "5780741175E14A9B" + loot_size: 1 + order_index: 7 + rewards: [ + { item: "ars_nouveau:source_gem" } + { item: "botania:manasteel_ingot" } + { count: 6, item: "naturesaura:infused_iron" } + { count: 64, item: "forbidden_arcanus:edelwood_branch" } + { item: "eidolon:pewter_ingot" } + { item: "naturesaura:token_joy" } + { + item: { + Count: 1 + id: "occultism:chalk_purple" + tag: { + Damage: 0 + Enchantments: [{ + id: "minecraft:unbreaking" + lvl: 3s + }] + } + } + } + { item: "occultism:otherstone" } + { count: 11, item: "bloodmagic:blankslate" } + { count: 3, item: "botania:livingrock" } + { count: 7, item: "botania:livingwood_log" } + { count: 4, item: "naturesaura:tainted_gold" } + { count: 3, item: "alltheores:lead_ingot" } + { count: 16, item: "minecraft:oak_log" } + { count: 8, item: "mysticalagriculture:prosperity_shard" } + { count: 3, item: "minecraft:quartz" } + { item: "mobees:crated_bee_comb_silver" } + { item: "mobees:copper_bit" } + ] + title: "Magic" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/6AFB9062C7B6058F.snbt b/minecraft/config/ftbquests/quests/reward_tables/6AFB9062C7B6058F.snbt new file mode 100644 index 0000000..aae43c8 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/6AFB9062C7B6058F.snbt @@ -0,0 +1,19 @@ +{ + icon: "minecraft:chest" + id: "6AFB9062C7B6058F" + loot_size: 1 + order_index: 13 + rewards: [ + { count: 3, item: "minecraft:netherite_block" } + { count: 48, item: "mekanism:ultimate_control_circuit" } + { count: 15, item: "mekanism:ultimate_thermodynamic_conductor" } + { count: 11, item: "extendedcrafting:enhanced_ender_component" } + { count: 5, item: "mekanism:ultimate_tier_installer" } + { count: 9, item: "minecraft:diamond_block" } + { count: 25, item: "mekanism:ultimate_logistical_transporter" } + { count: 15, item: "mythicbotany:alfsteel_ingot" } + { count: 7, item: "draconicevolution:draconium_core" } + { count: 24, item: "botania:elementium_ingot" } + ] + title: "Harsh" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/choice_compost.snbt b/minecraft/config/ftbquests/quests/reward_tables/choice_compost.snbt new file mode 100644 index 0000000..fcb648d --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/choice_compost.snbt @@ -0,0 +1,13 @@ +{ + id: "7ACE4BD2F80103E3" + loot_size: 1 + order_index: 14 + rewards: [ + { item: "minecolonies:barrel_block" } + { count: 16, item: "minecolonies:compost" } + { count: 64, item: "minecraft:oak_leaves" } + { count: 64, item: "minecraft:wheat_seeds" } + { count: 16, item: "minecraft:bone_meal" } + ] + title: "Choice Compost" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/choice_crush.snbt b/minecraft/config/ftbquests/quests/reward_tables/choice_crush.snbt new file mode 100644 index 0000000..56d5b7d --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/choice_crush.snbt @@ -0,0 +1,13 @@ +{ + id: "732BC3249916AB5F" + loot_size: 1 + order_index: 16 + rewards: [ + { count: 64, item: "minecraft:cobblestone" } + { count: 16, item: "minecraft:bone_block" } + { count: 16, item: "minecraft:clay" } + { count: 64, item: "minecraft:gravel" } + { count: 64, item: "minecraft:smooth_sandstone" } + ] + title: "Choice Crush" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/choice_flowers.snbt b/minecraft/config/ftbquests/quests/reward_tables/choice_flowers.snbt new file mode 100644 index 0000000..224a220 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/choice_flowers.snbt @@ -0,0 +1,21 @@ +{ + id: "6BECD56C7F7B27C5" + loot_size: 1 + order_index: 4 + rewards: [ + { count: 6, item: "minecraft:poppy" } + { count: 6, item: "minecraft:dandelion" } + { count: 6, item: "minecraft:blue_orchid" } + { count: 6, item: "minecraft:allium" } + { count: 6, item: "minecraft:azure_bluet" } + { count: 6, item: "minecraft:red_tulip" } + { count: 6, item: "minecraft:orange_tulip" } + { count: 6, item: "minecraft:white_tulip" } + { count: 6, item: "minecraft:pink_tulip" } + { count: 6, item: "minecraft:oxeye_daisy" } + { count: 6, item: "minecraft:cornflower" } + { count: 6, item: "minecraft:lily_of_the_valley" } + { count: 6, item: "minecraft:sunflower" } + ] + title: "Choice Flowers" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/choice_food.snbt b/minecraft/config/ftbquests/quests/reward_tables/choice_food.snbt new file mode 100644 index 0000000..af5859d --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/choice_food.snbt @@ -0,0 +1,35 @@ +{ + id: "3FCE6C893B181A17" + loot_size: 1 + order_index: 17 + rewards: [ + { count: 8, item: "minecolonies:bell_pepper" } + { count: 8, item: "minecolonies:cabbage" } + { count: 16, item: "minecolonies:durum" } + { count: 8, item: "minecolonies:eggplant" } + { count: 8, item: "minecolonies:garlic" } + { count: 8, item: "minecolonies:onion" } + { count: 8, item: "minecolonies:tomato" } + { count: 8, item: "minecolonies:rice" } + { count: 16, item: "minecolonies:corn" } + { count: 3, item: "minecraft:honey_bottle" } + { count: 8, item: "minecolonies:large_milk_bottle" } + { count: 16, item: "minecraft:egg" } + { count: 16, item: "minecraft:sugar" } + { count: 16, item: "minecraft:wheat" } + { count: 3, item: "minecolonies:manchet_dough" } + { count: 3, item: "minecolonies:muffin_dough" } + { count: 8, item: "minecolonies:butternut_squash" } + { count: 8, item: "minecolonies:peas" } + { count: 8, item: "minecraft:carrot" } + { count: 8, item: "minecraft:apple" } + { count: 8, item: "minecraft:beetroot" } + { count: 8, item: "minecraft:cooked_mutton" } + { count: 8, item: "minecraft:cooked_chicken" } + { count: 8, item: "minecraft:cooked_beef" } + { count: 8, item: "minecraft:cod" } + { count: 8, item: "minecraft:cooked_salmon" } + { count: 8, item: "minecraft:bread" } + ] + title: "Choice Food" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/choice_hospital.snbt b/minecraft/config/ftbquests/quests/reward_tables/choice_hospital.snbt new file mode 100644 index 0000000..861034b --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/choice_hospital.snbt @@ -0,0 +1,14 @@ +{ + id: "44D355363D3500BF" + loot_size: 1 + order_index: 8 + rewards: [ + { count: 8, item: "minecraft:potato" } + { count: 8, item: "minecraft:kelp" } + { count: 8, item: "minecraft:dandelion" } + { count: 3, item: "minecraft:golden_apple" } + { count: 8, item: "minecraft:carrot" } + { count: 3, item: "minecraft:honey_bottle" } + ] + title: "Choice Hospital" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/choice_logs.snbt b/minecraft/config/ftbquests/quests/reward_tables/choice_logs.snbt new file mode 100644 index 0000000..f39a8c1 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/choice_logs.snbt @@ -0,0 +1,16 @@ +{ + id: "7207C95EDFE6DFFD" + loot_size: 1 + order_index: 15 + rewards: [ + { count: 64, item: "minecraft:oak_log" } + { count: 64, item: "minecraft:spruce_log" } + { count: 64, item: "minecraft:birch_log" } + { count: 64, item: "minecraft:jungle_log" } + { count: 64, item: "minecraft:acacia_log" } + { count: 64, item: "minecraft:dark_oak_log" } + { count: 64, item: "minecraft:mangrove_log" } + { count: 64, item: "minecraft:cherry_log" } + ] + title: "Choice Logs" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/choice_sapling.snbt b/minecraft/config/ftbquests/quests/reward_tables/choice_sapling.snbt new file mode 100644 index 0000000..11f430e --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/choice_sapling.snbt @@ -0,0 +1,15 @@ +{ + id: "14C4691141636B06" + loot_size: 1 + order_index: 18 + rewards: [ + { count: 16, item: "minecraft:oak_sapling" } + { count: 16, item: "minecraft:spruce_sapling" } + { count: 16, item: "minecraft:birch_sapling" } + { count: 16, item: "minecraft:jungle_sapling" } + { count: 16, item: "minecraft:acacia_sapling" } + { count: 16, item: "minecraft:dark_oak_sapling" } + { count: 16, item: "minecraft:cherry_sapling" } + ] + title: "Choice Sapling" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/choice_stone.snbt b/minecraft/config/ftbquests/quests/reward_tables/choice_stone.snbt new file mode 100644 index 0000000..28247e0 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/choice_stone.snbt @@ -0,0 +1,15 @@ +{ + id: "11DC90A8AF7A34C3" + loot_size: 1 + order_index: 10 + rewards: [ + { count: 64, item: "minecraft:stone" } + { count: 64, item: "minecraft:andesite" } + { count: 64, item: "minecraft:granite" } + { count: 64, item: "minecraft:diorite" } + { count: 64, item: "minecraft:deepslate" } + { count: 64, item: "minecraft:sandstone" } + { count: 64, item: "minecraft:cobblestone" } + ] + title: "Choice Stone" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/malum_metals.snbt b/minecraft/config/ftbquests/quests/reward_tables/malum_metals.snbt new file mode 100644 index 0000000..591145e --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/malum_metals.snbt @@ -0,0 +1,10 @@ +{ + id: "160F16FDB98144BD" + loot_size: 1 + order_index: 1 + rewards: [ + { item: "malum:hallowed_gold_ingot" } + { count: 2, item: "malum:soul_stained_steel_ingot" } + ] + title: "Malum Metals" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/malum_resources.snbt b/minecraft/config/ftbquests/quests/reward_tables/malum_resources.snbt new file mode 100644 index 0000000..65b0553 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/malum_resources.snbt @@ -0,0 +1,21 @@ +{ + id: "60FF38F5843666C0" + loot_size: 1 + order_index: 3 + rewards: [ + { count: 2, item: "malum:hex_ash" } + { item: "malum:spirit_fabric" } + { item: "malum:hallowed_gold_ingot" } + { item: "malum:soul_stained_steel_ingot" } + { item: "malum:sacred_spirit" } + { item: "malum:wicked_spirit" } + { item: "malum:arcane_spirit" } + { item: "malum:aerial_spirit" } + { item: "malum:aqueous_spirit" } + { item: "malum:earthen_spirit" } + { count: 4, item: "malum:tainted_rock" } + { count: 4, item: "malum:twisted_rock" } + { count: 3, item: "malum:processed_soulstone" } + ] + title: "Malum Resources" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/malum_rock.snbt b/minecraft/config/ftbquests/quests/reward_tables/malum_rock.snbt new file mode 100644 index 0000000..6ab960d --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/malum_rock.snbt @@ -0,0 +1,10 @@ +{ + id: "58FAD8BCA0B4949D" + loot_size: 1 + order_index: 2 + rewards: [ + { count: 8, item: "malum:tainted_rock" } + { count: 8, item: "malum:twisted_rock" } + ] + title: "Malum Rock" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/malum_spirit.snbt b/minecraft/config/ftbquests/quests/reward_tables/malum_spirit.snbt new file mode 100644 index 0000000..0d39c4f --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/malum_spirit.snbt @@ -0,0 +1,16 @@ +{ + id: "49B376A9D393F177" + loot_size: 1 + order_index: 0 + rewards: [ + { count: 3, item: "malum:sacred_spirit" } + { count: 3, item: "malum:wicked_spirit" } + { count: 3, item: "malum:arcane_spirit" } + { item: "malum:eldritch_spirit", weight: 0.3f } + { count: 3, item: "malum:aerial_spirit" } + { count: 3, item: "malum:aqueous_spirit" } + { count: 3, item: "malum:earthen_spirit" } + { count: 3, item: "malum:infernal_spirit" } + ] + title: "Malum Spirit" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/minecolonies_common.snbt b/minecraft/config/ftbquests/quests/reward_tables/minecolonies_common.snbt new file mode 100644 index 0000000..004a3cb --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/minecolonies_common.snbt @@ -0,0 +1,66 @@ +{ + id: "23A030D0854BAACF" + loot_size: 1 + order_index: 2 + rewards: [ + { count: 3, item: "minecraft:bread" } + { count: 3, item: "minecraft:apple" } + { count: 3, item: "minecraft:carrot" } + { count: 3, item: "minecraft:potato" } + { count: 3, item: "minecraft:baked_potato" } + { count: 3, item: "minecraft:cooked_beef" } + { count: 3, item: "minecraft:cooked_porkchop" } + { count: 3, item: "minecraft:cooked_mutton" } + { count: 3, item: "minecraft:cooked_chicken" } + { count: 3, item: "minecraft:cooked_rabbit" } + { count: 3, item: "minecraft:cooked_cod" } + { count: 3, item: "minecraft:cooked_salmon" } + { count: 3, item: "minecraft:sweet_berries" } + { count: 3, item: "minecraft:spider_eye" } + { count: 3, item: "minecraft:beetroot" } + { count: 3, item: "minecraft:dried_kelp" } + { item: "minecraft:cake", weight: 0.25f } + { item: "minecraft:cookie", weight: 0.25f } + { item: "minecraft:pumpkin_pie", weight: 0.25f } + { item: "minecraft:mushroom_stew", weight: 0.5f } + { item: "minecraft:rabbit_stew", weight: 0.5f } + { item: "minecraft:beetroot_soup", weight: 0.5f } + { item: "minecraft:melon_slice", weight: 0.25f } + { count: 16, item: "minecraft:oak_log" } + { count: 64, item: "minecraft:cobblestone" } + { count: 16, item: "minecraft:string" } + { count: 32, item: "minecraft:torch" } + { item: "minecraft:target" } + { count: 64, item: "minecraft:stone" } + { count: 64, item: "minecraft:granite" } + { count: 64, item: "minecraft:diorite" } + { count: 64, item: "minecraft:andesite" } + { item: "minecraft:furnace" } + { item: "minecraft:blast_furnace" } + { count: 4, item: "minecraft:chest" } + { count: 8, item: "minecraft:bricks" } + { count: 16, item: "minecraft:clay" } + { count: 16, item: "minecraft:terracotta" } + { count: 32, item: "minecraft:glass" } + { item: "minecraft:white_bed" } + { count: 32, item: "minecraft:white_wool" } + { count: 2, item: "minecraft:sheep_spawn_egg", weight: 0.5f } + { count: 64, item: "minecraft:oak_leaves" } + { count: 4, item: "minecraft:white_dye" } + { count: 4, item: "minecraft:red_dye" } + { count: 4, item: "minecraft:yellow_dye" } + { count: 4, item: "minecraft:green_dye" } + { count: 4, item: "minecraft:black_dye" } + { count: 4, item: "minecraft:blue_dye" } + { item: "minecraft:armor_stand" } + { count: 4, item: "minecraft:flower_pot" } + { item: "domum_ornamentum:blockbarreldeco_standing" } + { item: "domum_ornamentum:blockbarreldeco_onside" } + { count: 16, item: "minecraft:coal" } + { count: 16, item: "minecraft:charcoal" } + { count: 16, item: "minecraft:kelp" } + { count: 2, item: "minecraft:cow_spawn_egg", weight: 0.5f } + { count: 2, item: "minecraft:pig_spawn_egg", weight: 0.5f } + ] + title: "MineColonies Common" +} diff --git a/minecraft/config/ftbquests/quests/reward_tables/wda_food.snbt b/minecraft/config/ftbquests/quests/reward_tables/wda_food.snbt new file mode 100644 index 0000000..50af216 --- /dev/null +++ b/minecraft/config/ftbquests/quests/reward_tables/wda_food.snbt @@ -0,0 +1,24 @@ +{ + id: "22B8E2BBB1F60AF4" + loot_size: 1 + order_index: 5 + rewards: [ + { count: 8, item: "minecraft:baked_potato" } + { count: 8, item: "minecraft:carrot" } + { count: 6, item: "minecraft:golden_carrot" } + { count: 8, item: "minecraft:bread" } + { count: 8, item: "minecraft:apple" } + { count: 2, item: "minecraft:golden_apple" } + { count: 8, item: "minecraft:cooked_beef" } + { count: 8, item: "minecraft:cooked_chicken" } + { count: 8, item: "minecraft:cooked_porkchop" } + { count: 8, item: "minecraft:cooked_cod" } + { count: 8, item: "minecraft:cooked_salmon" } + { count: 8, item: "minecraft:beetroot_soup" } + { count: 8, item: "minecraft:mushroom_stew" } + { count: 8, item: "minecraft:honey_bottle" } + { count: 2, item: "minecraft:pumpkin_pie" } + { count: 8, item: "minecraft:cookie" } + ] + title: "wda_food" +} diff --git a/minecraft/config/ftbxmodcompat.snbt b/minecraft/config/ftbxmodcompat.snbt new file mode 100644 index 0000000..7e3bd93 --- /dev/null +++ b/minecraft/config/ftbxmodcompat.snbt @@ -0,0 +1,13 @@ +{ + # Select the permissions implementation to use + # DEFAULT: use FTB Ranks then Luckperms in preference order, depending on mod availability + # Default: "default" + # Valid values: "default", "ftb_ranks", "luckperms" + permission_selector: "default" + + # Select the game stages implementation to use + # DEFAULT: use KubeJS, Game Stages, vanilla in preference order, depending on mod availability + # Default: "default" + # Valid values: "default", "vanilla", "kubejs", "gamestages" + stage_selector: "default" +} diff --git a/minecraft/config/gamemenumodoption-client.toml b/minecraft/config/gamemenumodoption-client.toml new file mode 100644 index 0000000..1d67153 --- /dev/null +++ b/minecraft/config/gamemenumodoption-client.toml @@ -0,0 +1,6 @@ + +[General] + "Show notification mod update" = true + "Render mod list background" = true + "ModMenu style" = false + diff --git a/minecraft/config/genetic-animals-common.toml b/minecraft/config/genetic-animals-common.toml new file mode 100644 index 0000000..dcb7430 --- /dev/null +++ b/minecraft/config/genetic-animals-common.toml @@ -0,0 +1,232 @@ + +[general] + #Set this to true to enable omnigenders, meaning the gender of the animal is irrelevant to who can fall pregnant, lay eggs, milk or sire young, False results in gendered animals, Visually nothing changes + "Allow Omnigenders:" = false + "Allow feeding to age/grow animals:" = false + #Allowed Values: RAVENOUS, MORE_HUNGRY, STANDARD, LESS_HUNGRY, NEVER_HUNGRY + "How fast the animals get hungry, Values: RAVENOUS, MORE_HUNGRY, STANDARD, LESS_HUNGRY, NEVER_HUNGRY" = "STANDARD" + #Range: 0 ~ 100 + "How random the genes should be, 100 is all wildtype animals, 0 is completely random which often results in all white animals:" = 90 + "Animal inventory tabs will be on the top if true and tabs will be on the side if false:" = true + #Allowed Values: GREY, SOFT_GREY, BRIGHT, COLOURFUL, SILHOUETTE, EMPTY + "What icon set is used when an icon is displaying full: " = "GREY" + #Allowed Values: GREY, SOFT_GREY, BRIGHT, COLOURFUL, SILHOUETTE, EMPTY + "What icon set is used when an icon is displaying empty: " = "SILHOUETTE" + "Animals will spawn with random biome type" = false + "Genetic animals are immune to all damage unless attacked with an axe by a player" = false + "Force Genetic Animals to use a 16x base texture" = false + +[Trading] + #If true leather workers will have extra trades for some Genetic Animal's items + "Extra leather worker trades" = true + #If true shepards will have extra trades for some Genetic Animal's items + "Extra shepard trades" = true + #If true farmers will have extra trades for some Genetic Animal's items + "Extra farmer trades" = true + #If true wandering traders will have extra trades for some Genetic Animal's items + "Extra wandering traders trades" = true + #If true wandering traders have a chance to bring chickens to trade + "Wandering traders sell chickens" = true + #If true wandering traders have a chance to bring pigs to trade + "Wandering traders sell pigs" = true + #If true wandering traders have a chance to bring cows to trade + "Wandering traders sell cows" = true + #If true wandering traders have a chance to bring sheep to trade + "Wandering traders sell sheep" = true + #If true wandering traders have a chance to bring rabbits to trade + "Wandering traders sell rabbits" = true + #If true wandering traders have a chance to bring llamas to trade + "Wandering traders sell llamas" = true + #If true wandering traders have a chance to bring mooshrooms to trade + "Wandering traders sell mooshrooms" = false + #If true wandering traders have a chance to bring mooblooms to trade + "Wandering traders sell mooblooms" = false + #If true wandering traders have a chance to bring turtles to trade + "Wandering traders sell turtles" = true + #If true wandering traders have a chance to bring axolotls to trade + "Wandering traders sell axolotls" = true + +[pig] + #Range: > 5 + "How many ticks it takes for a Pig to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a pig to become an adult, 24000 = 1 Minecraft Day:" = 60000 + "Allow vanilla minecraft Pigs to spawn/exist:" = true + "Allow Genetic Pigs to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly pig spawning is weighted, larger numbers spawn more, Default is 6" = 6 + #Range: 1 ~ 60 + "The minimum number of pigs you want to find in a group at spawn, Default is 2" = 2 + #Range: 1 ~ 60 + "The maximum number of pigs you want to find in a group at spawn, Default is 3" = 3 + +[cow] + #Range: > 5 + "How many ticks it takes for a Cow to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a cow to become an adult, 24000 = 1 Minecraft Day:" = 84000 + "Allow vanilla minecraft Cows to spawn/exist:" = true + "Allow Genetic Cows to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly cow spawning is weighted, larger numbers spawn more, Default is 8" = 8 + #Range: 1 ~ 60 + "The minimum number of cows you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of cows you want to find in a group at spawn, Default is 4" = 4 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a cow regains milk, Default is 1 for 1x speed" = 1.0 + +[mooshroom] + #Range: > 5 + "How many ticks it takes for a Mooshroom to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a Mooshroom to become an adult, 24000 = 1 Minecraft Day:" = 84000 + "Allow vanilla minecraft Mooshrooms to spawn/exist:" = true + "Allow Genetic Mooshrooms to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly Mooshroom spawning is weighted, larger numbers spawn more, Default is 8" = 8 + #Range: 1 ~ 60 + "The minimum number of Mooshrooms you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of Mooshrooms you want to find in a group at spawn, Default is 4" = 4 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a mooshroom regains mushroom stew, Default is 1 for 1x speed" = 1.0 + +#Mooshrooms spawn only on Mycylium blocks by default, If you wish to change that you can do so by using a datapack to modify the mooshrooms_spawnable_on block tag +[moobloom] + "Allow Genetic Mooblooms to replace Mooblooms added by other mods" = true + #Range: > 5 + "How many ticks it takes for a Mooblooms to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a Mooblooms to become an adult, 24000 = 1 Minecraft Day:" = 84000 + +[llama] + "Allow vanilla minecraft Llamas to spawn/exist:" = true + "Allow Genetic Llamas to continue to spawn/exist:" = true + #Range: > 5 + "How many ticks it takes for a Llama to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a llama to become an adult, 24000 = 1 Minecraft Day:" = 120000 + #Range: 1 ~ 20 + "How highly llama spawning is weighted, larger numbers spawn more, Default is 4" = 4 + #Range: 1 ~ 60 + "The minimum number of llamas you want to find in a group at spawn, Default is 2" = 2 + #Range: 1 ~ 60 + "The maximum number of llamas you want to find in a group at spawn, Default is 3" = 3 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a llama regains its wool, Default is 1 for 1x speed" = 1.0 + +[sheep] + #Range: > 5 + "How many ticks it takes for a Sheep to give birth, 24000 = 1 Minecraft Day:" = 48000 + #Range: > 1 + "How many ticks it takes for a Sheep to become an adult, 24000 = 1 Minecraft Day:" = 72000 + "Allow vanilla minecraft Sheep to spawn/exist:" = true + "Allow Genetic Sheep to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly Sheep spawning is weighted, larger numbers spawn more, Default is 12" = 12 + #Range: 1 ~ 60 + "The minimum number of Sheep you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of Sheep you want to find in a group at spawn, Default is 4" = 4 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a llama regains it's wool, Default is 1 for 1x speed" = 1.0 + +[chicken] + "Allow vanilla minecraft Chickens to spawn/exist:" = true + "Allow Genetic Chickens to continue to spawn/exist:" = true + #Range: > 1 + "How many ticks it takes for a Chicken egg to hatch, 24000 = 1 Minecraft Day:" = 24000 + #Range: > 1 + "How many ticks a chicken remains fertile for after being bred, 24000 = 1 Minecraft Day:" = 96000 + "If enabled hens never leave their nests even if they are hungry" = false + #Range: > 1 + "How many ticks it takes before a nest could start to decay, this resets every time an eggs is laid or incubated" = 24000 + #Range: 0.5 ~ 10.0 + "How far away a chicken must be from the centre of the next to start teleporting to guarantee it is aligned, Default is 1 block" = 1.0 + #Range: > 1 + "How many ticks it takes for a Chicken to become an adult, 24000 = 1 Minecraft Day:" = 60000 + #Range: 1 ~ 20 + "How highly Chicken spawning is weighted, larger numbers spawn more, Default is 10" = 10 + #Range: 1 ~ 60 + "The minimum number of Chicken you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of Chicken you want to find in a group at spawn, Default is 4" = 4 + "Allow roosters to crow:" = true + #Range: 1 ~ 24000 + "The minimum number of ticks till a rooster might crow, Default is 100ticks" = 100 + #Range: 2 ~ 24000 + "The maximum number of ticks till a rooster might crow, Default is 6000ticks" = 6000 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a chicken prepares to lay an egg, Default is 1 for 1x speed" = 1.0 + #Range: 0 ~ 100 + "This number is a percentage chance for thrown eggs to hatch into chicks, Default is 15%" = 15 + +[rabbit] + #Range: > 5 + "How many ticks it takes for a Rabbit to give birth, 24000 = 1 Minecraft Day:" = 24000 + #Range: > 1 + "How many ticks it takes for a Rabbit to become an adult, 24000 = 1 Minecraft Day:" = 48000 + "Allow vanilla minecraft Rabbits to spawn/exist:" = true + "Allow Genetic Rabbits to continue to spawn/exist:" = true + #Range: 1 ~ 20 + "How highly Rabbit spawning is weighted, larger numbers spawn more, Default is 4" = 4 + #Range: 1 ~ 60 + "The minimum number of Rabbit you want to find in a group at spawn, Default is 2" = 2 + #Range: 1 ~ 60 + "The maximum number of Rabbit you want to find in a group at spawn, Default is 3" = 3 + #Range: 1.0E-4 ~ 1000.0 + "This number multiplies how fast a rabbit with wool regains it's wool, Default is 1 for 1x speed" = 1.0 + +[turtle] + "Allow vanilla minecraft Turtles to spawn/exist:" = true + "Allow Genetic Turtles to continue to spawn/exist:" = true + #Range: > 1 + "How many ticks it takes for a Turtle to become an adult, 24000 = 1 Minecraft Day:" = 120000 + #Range: > 1 + "How many ticks it takes for a Turtle to drop its scute, 24000 = 1 Minecraft Day:" = 24000 + #Range: 1 ~ 20 + "How highly Turtle spawning is weighted, larger numbers spawn more, Default is 6" = 6 + #Range: 1 ~ 60 + "The minimum number of Turtle you want to find in a group at spawn, Default is 1" = 1 + #Range: 1 ~ 60 + "The maximum number of Turtle you want to find in a group at spawn, Default is 5" = 5 + #Range: 0 ~ 24000 + "If the eggs are randomly ticked and the time is after this but before hatchingWindowEnd their hatch level will increase" = 21600 + #Range: 0 ~ 24000 + "If the eggs are randomly ticked and the time is after hatchingWindowStart but before this their hatch level will increase" = 22550 + #Range: > 0 + "The chance that eggs won't hatch if their block is ticked, default is 500, use 1 to guarantee they increment hatching" = 500 + +#Turtles only hatch on blocks in the sand tag by default, If you wish to change that you can do so by using a datapack to modify the sand block tag +[horse] + #Range: > 5 + "How many ticks it takes for a Horse to give birth, 24000 = 1 Minecraft Day:" = 24000 + #Range: > 1000 + "How many ticks it takes for a Horse to become an adult, 24000 = 1 Minecraft Day:" = 24000 + "Allow vanilla minecraft Horses to spawn/exist:" = false + "Allow Genetic Horse to continue to spawn/exist:" = true + +[axolotl] + "Allow vanilla minecraft Axolotls to spawn/exist:" = true + "Allow Genetic Axolotls to continue to spawn/exist:" = true + #Range: > 1 + "How many ticks it takes for an Axolotl to become an adult, 24000 = 1 Minecraft Day:" = 60000 + #Range: > 1 + "How long int ticks it takes an axolotl egg to hatch in temperate biomes, Default is 24000" = 24000 + #Range: 0.0 ~ 100.0 + "How important temperature is to the hatching of axolotl eggs, a value of 0 means they will never hatch unless they are in a temperate or warmer environment, Currently not used" = 1.0 + #Range: 1 ~ 20 + "How highly Axolotl spawning is weighted, larger numbers spawn more, Default is 10" = 10 + #Range: 1 ~ 60 + "The minimum number of Axolotls you want to find in a group at spawn, Default is 4" = 4 + #Range: 1 ~ 60 + "The maximum number of Axolotls you want to find in a group at spawn, Default is 6" = 6 + +[passageOfTime] + "Allow 'Passage of Time' feature, which allows animal pregnancy and similar features to progress after player time away from chunk" = false + "Allow 'Passage of Time' feature for chickens" = false + #Range: 1 ~ 3 + "How many 'stages' can pass for a chicken when it is loaded in, each of these is one stage: Make a nest, lay in the nest, hatch the nest, Default is 2 stages" = 2 + "Disable hatching from passage of time regards of stages setting and time passed" = false + diff --git a/minecraft/config/genetic_animals/axolotl.json b/minecraft/config/genetic_animals/axolotl.json new file mode 100644 index 0000000..c8ba566 --- /dev/null +++ b/minecraft/config/genetic_animals/axolotl.json @@ -0,0 +1,10 @@ +{ + "replaceDefault": false, + "values": [ + { + "registryName": "minecraft:tropical_fish_bucket", + "hungerRestored": 6000, + "isBreedingItem": true + } + ] +} \ No newline at end of file diff --git a/minecraft/config/genetic_animals/chicken.json b/minecraft/config/genetic_animals/chicken.json new file mode 100644 index 0000000..1a103df --- /dev/null +++ b/minecraft/config/genetic_animals/chicken.json @@ -0,0 +1,70 @@ +{ + "replaceDefault": false, + "values": [ + { + "tag": "forge:seeds", + "hungerRestored": 4000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:tall_grass", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:grass", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:bread", + "hungerRestored": 18000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:wheat_seeds", + "hungerRestored": 4000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:melon_seeds", + "hungerRestored": 4000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:pumpkin_seeds", + "hungerRestored": 4000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:beetroot_seeds", + "hungerRestored": 4000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:melon_slice", + "hungerRestored": 2000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:sweet_berries", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:dandelion", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:spider_eye", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:egg", + "hungerRestored": 200, + "isBreedingItem": false + } + ] +} \ No newline at end of file diff --git a/minecraft/config/genetic_animals/cow.json b/minecraft/config/genetic_animals/cow.json new file mode 100644 index 0000000..6128b7d --- /dev/null +++ b/minecraft/config/genetic_animals/cow.json @@ -0,0 +1,70 @@ +{ + "replaceDefault": false, + "values": [ + { + "registryName": "minecraft:melon", + "hungerRestored": 10000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:pumpkin", + "hungerRestored": 10000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:tall_grass", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:vine", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:hay_block", + "hungerRestored": 54000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:oak_leaves", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:dark_oak_leaves", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:carrot", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:wheat", + "hungerRestored": 6000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:sugar", + "hungerRestored": 500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:apple", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:melon_slice", + "hungerRestored": 1100, + "isBreedingItem": false + }, + { + "registryName": "eanimod:unboundhay_block", + "hungerRestored": 54000, + "isBreedingItem": false + } + ] +} \ No newline at end of file diff --git a/minecraft/config/genetic_animals/horse.json b/minecraft/config/genetic_animals/horse.json new file mode 100644 index 0000000..6128b7d --- /dev/null +++ b/minecraft/config/genetic_animals/horse.json @@ -0,0 +1,70 @@ +{ + "replaceDefault": false, + "values": [ + { + "registryName": "minecraft:melon", + "hungerRestored": 10000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:pumpkin", + "hungerRestored": 10000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:tall_grass", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:vine", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:hay_block", + "hungerRestored": 54000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:oak_leaves", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:dark_oak_leaves", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:carrot", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:wheat", + "hungerRestored": 6000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:sugar", + "hungerRestored": 500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:apple", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:melon_slice", + "hungerRestored": 1100, + "isBreedingItem": false + }, + { + "registryName": "eanimod:unboundhay_block", + "hungerRestored": 54000, + "isBreedingItem": false + } + ] +} \ No newline at end of file diff --git a/minecraft/config/genetic_animals/llama.json b/minecraft/config/genetic_animals/llama.json new file mode 100644 index 0000000..c917f66 --- /dev/null +++ b/minecraft/config/genetic_animals/llama.json @@ -0,0 +1,50 @@ +{ + "replaceDefault": false, + "values": [ + { + "registryName": "minecraft:tall_grass", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:grass", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:hay_block", + "hungerRestored": 54000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:carrot", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:golden_carrot", + "hungerRestored": 12000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:wheat", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:sugar", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:apple", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "eanimod:unboundhay_block", + "hungerRestored": 54000, + "isBreedingItem": true + } + ] +} \ No newline at end of file diff --git a/minecraft/config/genetic_animals/pig.json b/minecraft/config/genetic_animals/pig.json new file mode 100644 index 0000000..fce195f --- /dev/null +++ b/minecraft/config/genetic_animals/pig.json @@ -0,0 +1,185 @@ +{ + "replaceDefault": false, + "values": [ + { + "registryName": "minecraft:melon", + "hungerRestored": 10000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:pumpkin", + "hungerRestored": 10000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:tall_grass", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:grass", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:vine", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:hay_block", + "hungerRestored": 54000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:oak_leaves", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:dark_oak_leaves", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:carrot", + "hungerRestored": 3000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:potato", + "hungerRestored": 3000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:beetroot", + "hungerRestored": 3000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:wheat", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:sugar", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:apple", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:bread", + "hungerRestored": 18000, + "isBreedingItem": false + }, + { + "registryName": "forge:egg", + "hungerRestored": 100, + "isBreedingItem": false + }, + { + "registryName": "minecraft:turtle_egg", + "hungerRestored": 100, + "isBreedingItem": false + }, + { + "tag": "forge:seeds", + "hungerRestored": 100, + "isBreedingItem": false + }, + { + "registryName": "minecraft:sweet_berries", + "hungerRestored": 100, + "isBreedingItem": false + }, + { + "registryName": "minecraft:rotten_flesh", + "hungerRestored": 200, + "isBreedingItem": false + }, + { + "registryName": "minecraft:brown_mushroom", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:oak_sapling", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:dark_oak_sapling", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:melon_slice", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "eanimod:unboundhay_block", + "hungerRestored": 54000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:cooked_beef", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:cooked_chicken", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:cooked_mutton", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:cooked_salmon", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:cooked_rabbit", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "eanimod:cookedchicken_darkbig", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "eanimod:cookedchicken_dark", + "hungerRestored": 2000, + "isBreedingItem": false + }, + { + "registryName": "eanimod:cookedchicken_darksmall", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "eanimod:cookedchicken_pale", + "hungerRestored": 2000, + "isBreedingItem": false + }, + { + "registryName": "eanimod:cookedchicken_palesmall", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "eanimod:cookedrabbit_small", + "hungerRestored": 750, + "isBreedingItem": false + } + ] +} \ No newline at end of file diff --git a/minecraft/config/genetic_animals/rabbit.json b/minecraft/config/genetic_animals/rabbit.json new file mode 100644 index 0000000..d590af4 --- /dev/null +++ b/minecraft/config/genetic_animals/rabbit.json @@ -0,0 +1,40 @@ +{ + "replaceDefault": false, + "values": [ + { + "registryName": "minecraft:tall_grass", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:grass", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:carrot", + "hungerRestored": 3000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:golden_carrot", + "hungerRestored": 12000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:sweet_berries", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:dandelion", + "hungerRestored": 1500, + "isBreedingItem": true + }, + { + "registryName": "minecraft:rose_bush", + "hungerRestored": 1500, + "isBreedingItem": false + } + ] +} \ No newline at end of file diff --git a/minecraft/config/genetic_animals/sheep.json b/minecraft/config/genetic_animals/sheep.json new file mode 100644 index 0000000..663df2c --- /dev/null +++ b/minecraft/config/genetic_animals/sheep.json @@ -0,0 +1,85 @@ +{ + "replaceDefault": false, + "values": [ + { + "registryName": "minecraft:melon", + "hungerRestored": 10000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:pumpkin", + "hungerRestored": 10000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:tall_grass", + "hungerRestored": 6000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:grass", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:vine", + "hungerRestored": 3000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:hay_block", + "hungerRestored": 54000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:carrot", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:golden_carrot", + "hungerRestored": 12000, + "isBreedingItem": false + }, + { + "registryName": "minecraft:wheat", + "hungerRestored": 6000, + "isBreedingItem": true + }, + { + "registryName": "minecraft:sugar", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:sweet_berries", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:dandelion", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:rose_bush", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:apple", + "hungerRestored": 1500, + "isBreedingItem": false + }, + { + "registryName": "minecraft:melon_slice", + "hungerRestored": 1000, + "isBreedingItem": false + }, + { + "registryName": "eanimod:unboundhay_block", + "hungerRestored": 54000, + "isBreedingItem": false + } + ] +} \ No newline at end of file diff --git a/minecraft/config/genetic_animals/turtle.json b/minecraft/config/genetic_animals/turtle.json new file mode 100644 index 0000000..6cc1c5b --- /dev/null +++ b/minecraft/config/genetic_animals/turtle.json @@ -0,0 +1,10 @@ +{ + "replaceDefault": false, + "values": [ + { + "registryName": "minecraft:seagrass", + "hungerRestored": 6000, + "isBreedingItem": true + } + ] +} \ No newline at end of file diff --git a/minecraft/config/geore-client.toml b/minecraft/config/geore-client.toml new file mode 100644 index 0000000..8976946 --- /dev/null +++ b/minecraft/config/geore-client.toml @@ -0,0 +1,7 @@ + +#Client settings +[Client] + #The intensity of the spyglass color overlay (0.5 = 50%) [Default: 0.5] + #Range: 0.01 ~ 1.0 + spyglassIntensity = 0.5 + diff --git a/minecraft/config/geore-common.toml b/minecraft/config/geore-common.toml new file mode 100644 index 0000000..a7052ff --- /dev/null +++ b/minecraft/config/geore-common.toml @@ -0,0 +1,69 @@ + +#General settings +[General] + #Generate Coal GeOre [Default: true] + generateCoalGeore = true + #Generate Copper GeOre [Default: true] + generateCopperGeore = true + #Generate Diamond GeOre [Default: true] + generateDiamondGeore = true + #Generate Emerald GeOre [Default: true] + generateEmeraldGeore = true + #Generate Gold GeOre [Default: true] + generateGoldGeore = true + #Generate Iron GeOre [Default: true] + generateIronGeore = true + #Generate Lapis GeOre [Default: true] + generateLapisGeore = true + #Generate Quartz GeOre [Default: true] + generateQuartzGeore = true + #Generate Quartz GeOre in the Nether [Default: true] + generateQuartzInNetherGeore = true + #Generate Redstone GeOre [Default: true] + generateRedstoneGeore = true + #Generate Budding Ancient Debris [Default: true] + generateBuddingAncientDebris = true + #Disable piston push for budding GeOre (Overrides the vanilla behavior of breaking the block upon being pushed) [Default: false] + disablePistonPushForBuddingGeOre = false + +#Modded Generation settings +[ModdedGeneration] + #Generate Ruby GeOre [Default: false] + generateRubyGeore = false + #Generate Sapphire GeOre [Default: false] + generateSapphireGeore = false + #Generate Topaz GeOre [Default: false] + generateTopazGeore = false + #Generate Zinc GeOre [Default: false] + generateZincGeore = false + #Generate Uraninite GeOre [Default: false] + generateUraniniteGeore = false + #Generate Black Quartz GeOre [Default: false] + generateBlackQuartzGeore = false + #Generate Monazite GeOre [Default: false] + generateMonaziteGeore = false + #Generate Aluminum GeOre [Default: false] + generateAluminumGeore = false + #Generate Lead GeOre [Default: false] + generateLeadGeore = false + #Generate Nickel GeOre [Default: false] + generateNickelGeore = false + #Generate Osmium GeOre [Default: false] + generateOsmiumGeore = false + #Generate Platinum GeOre [Default: false] + generatePlatinumGeore = false + #Generate Silver GeOre [Default: false] + generateSilverGeore = false + #Generate Tin GeOre [Default: false] + generateTinGeore = false + #Generate Tungsten GeOre [Default: false] + generateTungstenGeore = false + #Generate Uranium GeOre [Default: false] + generateUraniumGeore = false + #Generate Allthemodium GeOre [Default: false] + generateAllthemodiumGeore = false + #Generate Vibranium GeOre [Default: false] + generateVibraniumGeore = false + #Generate Unobtainium GeOre [Default: false] + generateUnobtainiumGeore = false + diff --git a/minecraft/config/ghosts.toml b/minecraft/config/ghosts.toml new file mode 100644 index 0000000..2ff6be7 --- /dev/null +++ b/minecraft/config/ghosts.toml @@ -0,0 +1,21 @@ +# Ghost spawnrate: [weight, minAmount, maxAmount, biomes and tags... (as many as you want)] +# +# Default: 8, 1, 2, #minecraft:is_forest +# Range: -Infinity ~ Infinity +GHOST_SPAWN = "14, 1, 2, #minecraft:is_forest" +# Ghost spawnrate: [weight, minAmount, maxAmount, biomes and tags... (as many as you want)] +# +# Default: 8, 1, 2, minecraft:flower_forest, #minecraft:is_forest, #forge:is_swamp +# Range: -Infinity ~ Infinity +SMALL_GHOST_SPAWN = "8, 1, 2, minecraft:flower_forest, #minecraft:is_forest, #forge:is_swamp" +# Kodama spawnrate: [weight, minAmount, maxAmount, biomes and tags... (as many as you want)] +# +# Default: 20, 1, 2, minecraft:birch_forest, minecraft:forest, minecraft:old_growth_spruce_taiga, minecraft:dark_forest +# Range: -Infinity ~ Infinity +KODAMA_SPAWN = "20, 1, 2, minecraft:birch_forest, minecraft:forest, minecraft:old_growth_spruce_taiga, minecraft:dark_forest" +# The maximum distance (in blocks) at which ghosts will teleport to their owner. +# +# Default: 10 +# Range: 0 ~ 1000 +GHOSTS_FOLLOW_OWNER_TELEPORT_DISTANCE = 10 + diff --git a/minecraft/config/gobber-general.toml b/minecraft/config/gobber-general.toml new file mode 100644 index 0000000..e5171f7 --- /dev/null +++ b/minecraft/config/gobber-general.toml @@ -0,0 +1,421 @@ + +#Gobber Tool Material Values +[gobber_tool_material] + #Gobber tool durability [default: 3800] + #Range: 0 ~ 9000 + gobberToolsDurability = 3800 + #Gobber tool mining speed [default: 9.0] + #Range: 1.0 ~ 25.0 + gobberToolsSpeed = 9.0 + #Gobber tool attack damage [default: 9.0] + #Range: 1.0 ~ 100.0 + gobberToolsDamage = 9.0 + #Gobber tool enchantability [default: 20] + #Range: 1 ~ 50 + gobberToolsEnchantability = 20 + +#Nether Gobber Tool Material Values +[nether_gobber_tool_material] + #Nether Gobber tool durability [default: 5200] + #Range: 0 ~ 9000 + netherGobberToolsDurability = 5200 + #Nether Gobber tool mining speed [default: 12.0] + #Range: 1.0 ~ 25.0 + netherGobberToolsSpeed = 12.0 + #Nether Gobber tool attack damage [default: 9.0] + #Range: 1.0 ~ 100.0 + netherGobberToolsDamage = 9.0 + #Nether Gobber tool enchantability [default: 25] + #Range: 1 ~ 50 + netherGobberToolsEnchantability = 25 + +#End Gobber Tool Material Values +[end_gobber_tool_material] + #End Gobber tool durability [default: 8000] + #Range: 0 ~ 9000 + endGobberToolsDurability = 8000 + #End Gobber tool mining speed [default: 14.0] + #Range: 1.0 ~ 25.0 + endGobberToolsSpeed = 14.0 + #End Gobber tool attack damage [default: 9.0] + #Range: 1.0 ~ 100.0 + endGobberToolsDamage = 9.0 + #End Gobber tool enchantability [default: 30] + #Range: 1 ~ 50 + endGobberToolsEnchantability = 30 + #Should Tools be unbreakable when crafted? [true / false, default: true] + endGobberToolsUnbreakable = true + +#Gobber Armor Material Values +[gobber_armor_material] + #Gobber armor durability multiplier [default: 71] + #Range: 1 ~ 200 + gobberArmorDurabilityMultiplier = 71 + #Gobber armor enchantability [default: 25] + #Range: 1 ~ 50 + gobberArmorEnchantability = 25 + #Gobber armor toughness [default: 2.5] + #Range: 0.0 ~ 20.0 + gobberArmorToughness = 2.5 + #Gobber armor knockback [default: 0.1] + #Range: 0.0 ~ 5.0 + gobberArmorKnockback = 0.1 + #Gobber armor head protection [default: 6] + #Range: 1 ~ 30 + gobberHeadProtection = 6 + #Gobber armor chest protection [default: 11] + #Range: 1 ~ 30 + gobberChestProtection = 11 + #Gobber armor leggings protection [default: 9] + #Range: 1 ~ 30 + gobberLeggingsProtection = 9 + #Gobber armor boots protection [default: 6] + #Range: 1 ~ 30 + gobberBootsProtection = 6 + +#Nether Gobber Armor Material Values +[nether_gobber_armor_material] + #Nether Gobber armor durability multiplier [default: 83] + #Range: 1 ~ 200 + netherGobberArmorDurabilityMultiplier = 83 + #Nether Gobber armor enchantability [default: 30] + #Range: 1 ~ 50 + netherGobberArmorEnchantability = 30 + #Nether Gobber armor toughness [default: 2.75] + #Range: 0.0 ~ 20.0 + netherGobberArmorToughness = 2.75 + #Nether Gobber armor knockback [default: 0.1] + #Range: 0.0 ~ 5.0 + netherGobberArmorKnockback = 0.1 + #Nether armor head protection [default: 7] + #Range: 1 ~ 30 + netherHeadProtection = 7 + #Nether armor chest protection [default: 12] + #Range: 1 ~ 30 + netherChestProtection = 12 + #Nether armor leggings protection [default: 10] + #Range: 1 ~ 30 + netherLeggingsProtection = 10 + #Nether armor boots protection [default: 7] + #Range: 1 ~ 30 + netherBootsProtection = 7 + +#End Gobber Armor Material Values +[end_gobber_armor_material] + #End Gobber armor durability multiplier [default: 100] + #Range: 1 ~ 200 + endGobberArmorDurabilityMultiplier = 100 + #End Gobber armor enchantability [default: 30] + #Range: 1 ~ 50 + endGobberArmorEnchantability = 30 + #End Gobber armor toughness [default: 3.0] + #Range: 0.0 ~ 20.0 + endGobberArmorToughness = 3.0 + #End Gobber armor knockback [default: 0.2] + #Range: 0.0 ~ 5.0 + endGobberArmorKnockback = 0.2 + #Should Armor be unbreakable when crafted? [true / false, default: true] + endGobberArmorUnbreakable = true + #End armor head protection [default: 8] + #Range: 1 ~ 30 + endHeadProtection = 8 + #End armor chest protection [default: 13] + #Range: 1 ~ 30 + endChestProtection = 13 + #End armor leggings protection [default: 11] + #Range: 1 ~ 30 + endLeggingsProtection = 11 + #End armor boots protection [default: 8] + #Range: 1 ~ 30 + endBootsProtection = 8 + +#Dragon Armor Material Values +[dragon_armor_material] + #Dragon armor durability multiplier [default: 100] + #Range: 1 ~ 200 + dragonArmorDurabilityMultiplier = 100 + #Dragon armor enchantability [default: 30] + #Range: 1 ~ 50 + dragonArmorEnchantability = 30 + #Dragon armor toughness [default: 3.0] + #Range: 0.0 ~ 20.0 + dragonArmorToughness = 3.0 + #Dragon armor knockback [default: 0.3] + #Range: 0.0 ~ 5.0 + dragonArmorKnockback = 0.3 + #Should Armor be unbreakable when crafted? [true / false, default: true] + dragonArmorUnbreakable = true + #Dragon armor head protection [default: 8] + #Range: 1 ~ 30 + dragonHeadProtection = 8 + #Dragon armor chest protection [default: 13] + #Range: 1 ~ 30 + dragonChestProtection = 13 + #Dragon armor leggings protection [default: 11] + #Range: 1 ~ 30 + dragonLeggingsProtection = 11 + #Dragon armor boots protection [default: 8] + #Range: 1 ~ 30 + dragonBootsProtection = 8 + +#Armor Health Perks Settings +[armor_health_perk_settings] + #Enable/disable Gobber Armor No Fall Damage [true / false, default: true] + gobberArmorNoFallDamage = true + #Enable/disable Gobber Armor fire protection [true / false, default: true] + gobberArmorFireProtection = false + #Enable/disable Gobber Armor water breathing [true / false, default: true] + gobberArmorWaterBreathing = false + #Enable/disable Gobber Armor health perks [true / false, default: true] + gobberArmorHealthPerks = false + #Enable/disable Gobber Nether Armor health perks [true / false, default: true] + gobberNetherArmorHealthPerks = false + #Enable/disable Gobber End Armor health perks [true / false, default: true] + gobberEndArmorHealthPerks = false + #Enable/disable Gobber Dragon Armor health perks [true / false, default: true] + gobberDragonArmorHealthPerks = true + #Enable/disable Gobber Armor auto feeding [true / false, default: true] + gobberArmorAutofeed = false + #Enable/disable Gobber Nether Armor auto feeding [true / false, default: true] + gobberNetherArmorAutofeed = false + #Enable/disable Gobber End Armor auto feeding [true / false, default: true] + gobberEndArmorAutofeed = false + #Enable/disable Gobber Dragon Armor auto feeding [true / false, default: true] + gobberDragonArmorAutofeed = true + #Enable/disable Gobber Nether Armor yellow hearts perks [true / false, default: true] + gobberNetherArmorYellowHeartsPerks = false + #Enable/disable Gobber End Armor yellow hearts perks [true / false, default: true] + gobberEndArmorYellowHeartsPerks = false + #Enable/disable Gobber Dragon Armor yellow hearts perks [true / false, default: true] + gobberDragonArmorYellowHeartsPerks = true + +#Gobber Food Values +[gobber_foods] + #Goo hunger value [default: 7] + #Range: 0 ~ 25 + gooHunger = 7 + #Goo saturation value [default: 0.7] + #Range: 0.0 ~ 5.0 + gooSaturation = 0.7 + #Gooey apple hunger value [default: 8] + #Range: 0 ~ 25 + gooeyAppleHunger = 8 + #Gooey apple saturation value [default: 0.8] + #Range: 0.0 ~ 5.0 + gooeyAppleSaturation = 0.8 + #Gooey bread hunger value [default: 8] + #Range: 0 ~ 25 + gooeyBreadHunger = 8 + #Gooey bread saturation value [default: 0.8] + #Range: 0.0 ~ 5.0 + gooeyBreadSaturation = 0.8 + #Gooey beef hunger value [default: 9] + #Range: 0 ~ 25 + gooeyBeefHunger = 9 + #Gooey beef saturation value [default: 0.9] + #Range: 0.0 ~ 5.0 + gooeyBeefSaturation = 0.9 + #Gooey beefstew hunger value [default: 10] + #Range: 0 ~ 25 + gooeyBeefstewHunger = 10 + #Gooey beefstew saturation value [default: 1.0] + #Range: 0.0 ~ 5.0 + gooeyBeefstewSaturation = 1.0 + +#Nether Gobber Food Values +[nether_gobber_foods] + #Nether Goo hunger value [default: 9] + #Range: 0 ~ 25 + netherGooHunger = 9 + #Nether Goo saturation value [default: 0.9] + #Range: 0.0 ~ 5.0 + netherGooSaturation = 0.9 + #Nether Gooey apple hunger value [default: 10] + #Range: 0 ~ 25 + netherGooeyAppleHunger = 10 + #Nether Gooey apple saturation value [default: 1.0] + #Range: 0.0 ~ 5.0 + netherGooeyAppleSaturation = 1.0 + #Nether Gooey bread hunger value [default: 10] + #Range: 0 ~ 25 + netherGooeyBreadHunger = 10 + #Nether Gooey bread saturation value [default: 1.0] + #Range: 0.0 ~ 5.0 + netherGooeyBreadSaturation = 1.0 + #Nether Gooey beef hunger value [default: 12] + #Range: 0 ~ 25 + netherGooeyBeefHunger = 12 + #Nether Gooey beef saturation value [default: 1.2] + #Range: 0.0 ~ 5.0 + netherGooeyBeefSaturation = 1.2 + #Nether Gooey beefstew hunger value [default: 14] + #Range: 0 ~ 25 + netherGooeyBeefstewHunger = 14 + #Nether Gooey beefstew saturation value [default: 1.5] + #Range: 0.0 ~ 5.0 + netherGooeyBeefstewSaturation = 1.5 + +#Item Cooldown Settings +[item_cooldown_settings] + #Number of ticks duration for the Ring of Blink cooldown [default: 60] + #Range: 0 ~ 3600 + ringBlinkCooldown = 60 + #Number of ticks duration for the Ring of the Miner cooldown [default: 80] + #Range: 0 ~ 3600 + ringMinerCooldown = 80 + #Number of ticks duration for the Ring of Above cooldown [default: 80] + #Range: 0 ~ 3600 + ringAboveCooldown = 80 + #Number of ticks duration for the Ring of the Explorer cooldown [default: 480] + #Range: 0 ~ 3600 + ringExplorerCooldown = 480 + #Number of ticks duration for the Sword of the Sniper cooldown [default: 60] + #Range: 0 ~ 3600 + swordSniperCooldown = 60 + #Number of ticks duration for the Staff of the Sniper cooldown [default: 60] + #Range: 0 ~ 3600 + staffSniperCooldown = 60 + #Number of ticks duration for the Ring of Husbandry cooldown [default: 2400] + #Range: 0 ~ 9600 + ringHusbandryCooldown = 2400 + +#Ring of the Explorer Settings +[ring_explorer_settings] + #Ring of Explorer - Min distance from world spawn to begin searching for a spot [default: 500] + #Range: 0 ~ 100000 + ringExplorerMin = 500 + #Ring of Explorer - Max distance from world spawn to begin searching for a spot [default: 6000] + #Range: 0 ~ 250000 + ringExplorerMax = 6000 + +#Misc Ring/staff Settings +[misc_ring_staff_settings] + #Ring of Acceleration - amount of velocity applied [default: 0.18] + #Range: 0.0 ~ 0.3 + ringAccelerationVelocity = 0.18 + #Ring of Repair - Delay time between repair ticks [default: 120] + #Range: 20 ~ 600 + ringRepairDelay = 120 + #Ring of Attraction - Radius in which items are pulled [default: 8] + #Range: 0 ~ 24 + ringAttractionBlocking = 8 + #Ring of Attraction - Items are instantly placed in player inventory [true / false, default: true] + ringAttractionMode = true + #Ring of Dismissal - Sets the horizontal velocity [default: 0.2] + #Range: 0.0 ~ 15.0 + ringDismissalVelocity = 0.2 + #Ring of Dismissal - Sets the horizontal range to detect mobs [default: 8.0] + #Range: 0.0 ~ 16.0 + ringDismissalLift = 8.0 + #Enable a single use of the Ring of Teleport [true / false, default: false] + limitedUseRingTeleport = false + #Enable Ring of AirWalking placing glass [true / false, default: true] + placeGlassRingAirWalking = true + +#Ring/Staff of Farmer Settings +[farmer_settings] + #Ring of the Farmer base tick delay [default: 20] + #Range: 10 ~ 120 + ringFarmerTickDelay = 20 + #Ring of the Farmer radius from player [default: 12] + #Range: 2 ~ 20 + ringFarmerRadius = 12 + #Staff of the Farmer base tick delay [default: 20] + #Range: 10 ~ 120 + staffFarmerTickDelay = 20 + #Staff of the Farmer radius from player [default: 12] + #Range: 2 ~ 20 + staffFarmerRadius = 12 + +#Auto Replanting Settings +[replanting_settings] + #Should the Staff of Harvest auto-replant? [true / false, default: true] + StaffHarvestReplant = true + #Should the Staff of Harvest break non-replantable crops? [true / false, default: true] + StaffFarmerBreaking = true + #Should the Staff of the Farmer auto-replant? [true / false, default: true] + StaffFarmerReplant = true + +#Armor Hunger/Saturation Settings +[armor_health_settings] + #Amount of hunger points to restore per interval [default: 1] + #Range: 0 ~ 10 + gobberArmorHunger = 1 + #Amount of saturation points to restore per interval [default: 0.02] + #Range: 0.0 ~ 10.0 + gobberArmorSaturation = 0.02 + #Amount of hunger points to restore per interval [default: 1] + #Range: 0 ~ 10 + gobberNetherArmorHunger = 1 + #Amount of saturation points to restore per interval [default: 0.05] + #Range: 0.0 ~ 10.0 + gobberNetherArmorSaturation = 0.05 + #Amount of hunger points to restore per interval [default: 1] + #Range: 0 ~ 10 + gobberEndArmorHunger = 1 + #Amount of saturation points to restore per interval [default: 0.10] + #Range: 0.0 ~ 10.0 + gobberEndArmorSaturation = 0.1 + #Amount of hunger points to restore per interval [default: 1] + #Range: 0 ~ 10 + gobberDragonArmorHunger = 1 + #Amount of saturation points to restore per interval [default: 0.15] + #Range: 0.0 ~ 10.0 + gobberDragonArmorSaturation = 0.15 + +#Medallion of Experience Settings +[medallion_exp_settings] + #Medallion of Experience multiplier for extra XP orbs [default: 5] + #Range: 0 ~ 20 + medallionExpOrbs = 5 + #Medallion of Experience multiplier for extra mob loot [default: 20] + #Range: 5 ~ 100 + medallionExpLoot = 20 + +#Medallion of Healing Settings +[medallion_healing_settings] + #Medallion of Lesser Healing Food [default: 5] + #Range: 0 ~ 10 + medallionLesserHealingFood = 1 + #Medallion of Lesser Healing Saturation [default: 20] + #Range: 0.0 ~ 10.0 + medallionLesserHealingSat = 0.02 + #Medallion of Healing Food [default: 5] + #Range: 0 ~ 10 + medallionHealingFood = 1 + #Medallion of Healing Saturation [default: 20] + #Range: 0.0 ~ 10.0 + medallionHealingSat = 0.05 + #Medallion of Greater Healing Food [default: 5] + #Range: 0 ~ 10 + medallionGreaterHealingFood = 1 + #Medallion of Greater Healing Saturation [default: 20] + #Range: 0.0 ~ 10.0 + medallionGreaterHealingSat = 0.1 + +#Dragon Star Special +[dragonStar_special] + #Enable Dragon Star Offhannd Function [true / false, default: true] + enableDragonStarOffhand = true + +#Enable Dragon Armor Void Protect - immune to /kill command +[dragon_armor_void] + #Enable Dragon Armor Void Protection [true / false, default: false] + enableDragonArmorVoidProtection = false + +#Dragon Armor Fly in Any Dimension +[dragon_armo_fly_anywhere] + #Enable Dragon Armor flight in any dimension [true / false, default: false] + enableDragonArmorFlyAnywhere = false + +#Bow Zoom Value +[bow_zoom] + #Bow zoom valuee [0.0-1.0, default: .45] + #Range: 0.1 ~ 0.9 + bow_zoom_value = 0.45 + +#Hammer/Excavator Full Damage +[full_damage] + #Hammer/Excavator Full Damage [true/false, default: true] + full_damage = false + diff --git a/minecraft/config/goblintraders-entities.toml b/minecraft/config/goblintraders-entities.toml index 0372bb5..f2130c5 100644 --- a/minecraft/config/goblintraders-entities.toml +++ b/minecraft/config/goblintraders-entities.toml @@ -1,176 +1,176 @@ -# If true, prevents the trader from despawning if named -# Valid values: true, false -preventDespawnIfNamed = true - -[goblinTrader] - # The minimum level the trader can spawn - # Valid range: -64 to 320 (inclusive) - traderMinSpawnLevel = -64 - # If true, the goblin will try to hit back a player or mob that hit them - # Valid values: true, false - canAttackBack = true - # The maximum level the trader can spawn - # Valid range: -64 to 320 (inclusive) - traderMaxSpawnLevel = 50 - # The amount of ticks to wait before trying to spawn a trader again if the spawn failed - # Valid range: 1 to 2147483647 (inclusive) - spawnInterval = 12000 - # The amount of ticks before the trader will despawn - # Valid range: 1 to 2147483647 (inclusive) - traderDespawnDelay = 24000 - # The amount of ticks before the trader will replenish it's trades. Set to -1 to disable restocking - # Valid range: -1 to 2147483647 (inclusive) - restockDelay = 48000 - # The amount of ticks before the trader will start spawning in a new world - # Valid range: 1 to 2147483647 (inclusive) - traderSpawnDelay = 24000 - # The chance out of one hundred that the trader will spawn in the over world - # Valid range: 1 to 100 (inclusive) - traderSpawnChance = 25 - # Goblins will make a grunt noise while walking around. If you find it happening too often, you can increase the interval. Value is represented in ticks. - # Valid range: 1 to 1000 (inclusive) - gruntNoiseInterval = 80 - - [goblinTrader.trades] - - [goblinTrader.trades.uncommon] - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 1.0 - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 3 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 5 - - [goblinTrader.trades.common] - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 5 - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 1.0 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 8 - - [goblinTrader.trades.legendary] - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 1 - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 0.75 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 1 - - [goblinTrader.trades.rare] - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 1.0 - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 3 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 4 - - [goblinTrader.trades.epic] - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 1.0 - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 0 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 2 - -[veinGoblinTrader] - # If true, the goblin will try to hit back a player or mob that hit them - # Valid values: true, false - canAttackBack = true - # The maximum level the trader can spawn - # Valid range: -64 to 320 (inclusive) - traderMaxSpawnLevel = 128 - # The minimum level the trader can spawn - # Valid range: -64 to 320 (inclusive) - traderMinSpawnLevel = 0 - # The amount of ticks to wait before trying to spawn a trader again if the spawn failed - # Valid range: 1 to 2147483647 (inclusive) - spawnInterval = 12000 - # The amount of ticks before the trader will despawn - # Valid range: 1 to 2147483647 (inclusive) - traderDespawnDelay = 24000 - # The amount of ticks before the trader will replenish it's trades. Set to -1 to disable restocking - # Valid range: -1 to 2147483647 (inclusive) - restockDelay = 48000 - # The amount of ticks before the trader will start spawning in a new world - # Valid range: 1 to 2147483647 (inclusive) - traderSpawnDelay = 24000 - # The chance out of one hundred that the trader will spawn in the over world - # Valid range: 1 to 100 (inclusive) - traderSpawnChance = 25 - # Goblins will make a grunt noise while walking around. If you find it happening too often, you can increase the interval. Value is represented in ticks. - # Valid range: 1 to 1000 (inclusive) - gruntNoiseInterval = 80 - - [veinGoblinTrader.trades] - - [veinGoblinTrader.trades.uncommon] - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 3 - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 1.0 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 5 - - [veinGoblinTrader.trades.common] - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 1.0 - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 5 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 8 - - [veinGoblinTrader.trades.legendary] - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 0.75 - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 1 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 1 - - [veinGoblinTrader.trades.rare] - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 3 - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 1.0 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 4 - - [veinGoblinTrader.trades.epic] - # The chance this trade rarity will be included in the goblin's trades - # Valid range: 0 to 1 (inclusive) - includeChance = 1.0 - # The minimum amount of trades that a golbin will have. - # Valid range: 0 to 2147483647 (inclusive) - minAmount = 0 - # The maximum amount of trades that a golbin can have. - # Valid range: 0 to 2147483647 (inclusive) - manAmount = 2 - +# If true, prevents the trader from despawning if named +# Valid values: true, false +preventDespawnIfNamed = true + +[goblinTrader] + # If true, the goblin will try to hit back a player or mob that hit them + # Valid values: true, false + canAttackBack = true + # The maximum level the trader can spawn + # Valid range: -64 to 320 (inclusive) + traderMaxSpawnLevel = 50 + # The minimum level the trader can spawn + # Valid range: -64 to 320 (inclusive) + traderMinSpawnLevel = -64 + # The amount of ticks before the trader will despawn + # Valid range: 1 to 2147483647 (inclusive) + traderDespawnDelay = 24000 + # The amount of ticks to wait before trying to spawn a trader again if the spawn failed + # Valid range: 1 to 2147483647 (inclusive) + spawnInterval = 12000 + # The amount of ticks before the trader will replenish it's trades. Set to -1 to disable restocking + # Valid range: -1 to 2147483647 (inclusive) + restockDelay = 48000 + # The amount of ticks before the trader will start spawning in a new world + # Valid range: 1 to 2147483647 (inclusive) + traderSpawnDelay = 24000 + # The chance out of one hundred that the trader will spawn in the over world + # Valid range: 1 to 100 (inclusive) + traderSpawnChance = 25 + # Goblins will make a grunt noise while walking around. If you find it happening too often, you can increase the interval. Value is represented in ticks. + # Valid range: 1 to 1000 (inclusive) + gruntNoiseInterval = 80 + + [goblinTrader.trades] + + [goblinTrader.trades.uncommon] + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 3 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 5 + + [goblinTrader.trades.common] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 5 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 8 + + [goblinTrader.trades.legendary] + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 0.75 + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 1 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 1 + + [goblinTrader.trades.rare] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 3 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 4 + + [goblinTrader.trades.epic] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 0 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 2 + +[veinGoblinTrader] + # The minimum level the trader can spawn + # Valid range: -64 to 320 (inclusive) + traderMinSpawnLevel = 0 + # If true, the goblin will try to hit back a player or mob that hit them + # Valid values: true, false + canAttackBack = true + # The maximum level the trader can spawn + # Valid range: -64 to 320 (inclusive) + traderMaxSpawnLevel = 128 + # The amount of ticks before the trader will despawn + # Valid range: 1 to 2147483647 (inclusive) + traderDespawnDelay = 24000 + # The amount of ticks to wait before trying to spawn a trader again if the spawn failed + # Valid range: 1 to 2147483647 (inclusive) + spawnInterval = 12000 + # The amount of ticks before the trader will replenish it's trades. Set to -1 to disable restocking + # Valid range: -1 to 2147483647 (inclusive) + restockDelay = 48000 + # The amount of ticks before the trader will start spawning in a new world + # Valid range: 1 to 2147483647 (inclusive) + traderSpawnDelay = 24000 + # The chance out of one hundred that the trader will spawn in the over world + # Valid range: 1 to 100 (inclusive) + traderSpawnChance = 25 + # Goblins will make a grunt noise while walking around. If you find it happening too often, you can increase the interval. Value is represented in ticks. + # Valid range: 1 to 1000 (inclusive) + gruntNoiseInterval = 80 + + [veinGoblinTrader.trades] + + [veinGoblinTrader.trades.uncommon] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 3 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 5 + + [veinGoblinTrader.trades.common] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 5 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 8 + + [veinGoblinTrader.trades.legendary] + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 0.75 + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 1 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 1 + + [veinGoblinTrader.trades.rare] + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 3 + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 4 + + [veinGoblinTrader.trades.epic] + # The chance this trade rarity will be included in the goblin's trades + # Valid range: 0 to 1 (inclusive) + includeChance = 1.0 + # The minimum amount of trades that a golbin will have. + # Valid range: 0 to 2147483647 (inclusive) + minAmount = 0 + # The maximum amount of trades that a golbin can have. + # Valid range: 0 to 2147483647 (inclusive) + manAmount = 2 + diff --git a/minecraft/config/golemoverhaul.jsonc b/minecraft/config/golemoverhaul.jsonc new file mode 100644 index 0000000..ceaa81a --- /dev/null +++ b/minecraft/config/golemoverhaul.jsonc @@ -0,0 +1,9 @@ +{ + "allowSpawning": true, + "spawnBarrelGolems": true, + "spawnCoalGolems": true, + "spawnHayGolems": true, + "spawnHoneyGolems": true, + "spawnSlimeGolems": true, + "spawnTerracottaGolems": true +} \ No newline at end of file diff --git a/minecraft/config/gravelminer-common.toml b/minecraft/config/gravelminer-common.toml new file mode 100644 index 0000000..8701f9c --- /dev/null +++ b/minecraft/config/gravelminer-common.toml @@ -0,0 +1,18 @@ + +[common] + #Blocks that will fall and break into items when hitting a non-solid block. Format: modid:name + gravelBlocks = ["minecraft:gravel"] + #If set to true, the mod will trigger when mining gravel as well, instead of only when mining a non-gravel block below gravel. + triggerOnGravel = true + #If set to true, GravelMiner will only be active for users who install the mod on their clients (for use in servers). + isOptIn = true + #If set to true, gravel mined via GravelMiner will have a chance of dropping as flint (server-side only). + rollFlintChance = true + +[client] + #Whether GravelMiner is currently enabled for this client (toggled via keybind) + isEnabled = true + #Defines when GravelMiner should activate. Either ALWAYS, WHEN_SNEAKING or WHEN_NOT_SNEAKING + #Allowed Values: ALWAYS, WHEN_SNEAKING, WHEN_NOT_SNEAKING + activation = "ALWAYS" + diff --git a/minecraft/config/graveyard-1.19.x-common.toml b/minecraft/config/graveyard-1.19.x-common.toml new file mode 100644 index 0000000..5e91efd --- /dev/null +++ b/minecraft/config/graveyard-1.19.x-common.toml @@ -0,0 +1,230 @@ + +["The Graveyard - Corrupted Champion Config"] + + ["The Graveyard - Corrupted Champion Config".corruptedChampion] + #Range: 1.0 ~ 1024.0 + healthInCastingPhase = 400.0 + isBossSummonableItem = ["item.minecraft.debug_stick"] + #Range: 1 ~ 100 + maxAmountSkullsInShootSkullSpell = 5 + #Range: 0 ~ 100 + maxSummonedMobs = 30 + #Range: 0 ~ 100000 + ghoulSpawnTimerInFight = 6000 + #Range: 1.0 ~ 2048.0 + damageHuntingPhaseAddition = 40.0 + #Range: 1 ~ 100000 + cooldownTeleportPlayerAndHeal = 600 + #Range: 0 ~ 100000 + durationHuntingPhase = 800 + #Range: 0 ~ 100000 + durationHealingSpell = 700 + #Range: 1.0 ~ 1024.0 + healthInHuntingPhase = 200.0 + #Range: 1 ~ 100 + maxGroupSizeSummonedMobs = 5 + #Range: 1 ~ 100000 + cooldownLevitationSpell = 400 + #Range: 1 ~ 100000 + cooldownCorpseSpell = 400 + #Range: 0.0 ~ 20.0 + armorToughness = 14.0 + isMultiphaseFight = true + #Range: 0.0 ~ 30.0 + armor = 18.0 + #Range: 0 ~ 100000 + durationLevitationSpell = 150 + #Range: 1.0 ~ 2048.0 + damageCastingPhase = 30.0 + isInvulnerableDuringSpells = true + #Range: 0 ~ 100000 + durationFallingCorpseSpell = 400 + isBloodCollectableEntity = ["entity.minecraft.villager"] + summoningNeedsStaffFragments = true + #Range: -64 ~ 100000 + playerTeleportYOffset = -15 + #Range: 0.0 ~ 1024.0 + speedInHuntPhase = 0.15 + +["The Graveyard - Particle Config"] + + ["The Graveyard - Particle Config".particle] + generate = true + #Range: 1 ~ 500 + frequency = 50 + +["The Graveyard - Mob Spawning Config"] + + ["The Graveyard - Mob Spawning Config".acolyte] + canBurnInSunlight = false + canBeWithered = true + enabled = false + + ["The Graveyard - Mob Spawning Config".corruptedVindicator] + canBurnInSunlight = true + canBeWithered = true + enabled = false + + ["The Graveyard - Mob Spawning Config".revenant] + #Range: 1 ~ 100 + maxGroupSizeRevenant = 8 + canBurnInSunlight = true + #Range: 0 ~ 100 + weight = 25 + canBeWithered = true + enabled = true + #Range: 1 ~ 100 + minGroupSizeRevenant = 5 + + ["The Graveyard - Mob Spawning Config".wraith] + canBurnInSunlight = true + canBeWithered = false + enabled = false + + ["The Graveyard - Mob Spawning Config".skeleton_creeper] + #Range: 1 ~ 100 + minGroupSizeSkeletonCreeper = 1 + canBurnInSunlight = true + #Range: 1 ~ 100 + maxGroupSizeSkeletonCreeper = 4 + #Range: 0 ~ 100 + weight = 25 + canBeWithered = true + enabled = true + + ["The Graveyard - Mob Spawning Config".corruptedPillager] + canBurnInSunlight = true + canBeWithered = true + enabled = false + + ["The Graveyard - Mob Spawning Config".ghoul] + canBurnInSunlight = true + #Range: 1 ~ 100 + minGroupSizeGhoul = 2 + #Range: 0 ~ 100 + weight = 25 + #Range: 1 ~ 100 + maxGroupSizeGhoul = 5 + canBeWithered = true + enabled = true + + ["The Graveyard - Mob Spawning Config".reaper] + canBurnInSunlight = true + #Range: 0 ~ 100 + weight = 10 + #Range: 1 ~ 100 + maxGroupSizeGhoul = 3 + canBeWithered = true + enabled = true + #Range: 1 ~ 100 + minGroupSizeReaper = 2 + + ["The Graveyard - Mob Spawning Config".nightmare] + #Range: 1 ~ 100 + minGroupSizeNightmare = 1 + canBurnInSunlight = false + #Range: 0 ~ 100 + weight = 10 + canBeWithered = false + enabled = true + #Range: 1 ~ 100 + maxGroupSizeNightmare = 1 + +["The Graveyard - Horde Config"] + + ["The Graveyard - Horde Config".horde] + #Range: 0 ~ 1000 + mobSpawnAttempts = 40 + #Range: 1 ~ 1000000 + ticksUntilSpawnHorde = 24000 + #Range: 1 ~ 1000000 + additionalRandomizedTicks = 1200 + generate = true + +# Welcome to The Graveyard Config!Welcome to The Graveyard Config! +# +#Structures: +# Enable or disable structure spawns. +# +#Mobs: +#Configure spawning weight and group size of the spawn (ghoul, revenant, reaper, nightmare, skeleton creeper). +# Configure if mobs burn in sunlight and/or if mobs are affected by the wither effect. +# +#Additional: +#Configure graveyard fog particles rising from moss and set the chance of spawning them (higher numbers = lower chance of spawning). +# Configure if hordes of graveyard mobs can spawn and set their size and frequency. +# Configure if urns have a double chest inventory. +# Configure if the wither skeleton spawner in the large graveyard will be replaced by a skeleton spawner. +# +#Configure if boss music plays during the fight against the Corrupted Champion. +# +# +# +#Music: +# +#Incarnated Evil by Rotch Gwylt (Official The Graveyard Soundtrack). +# +["The Graveyard - Structures Config"] + + ["The Graveyard - Structures Config".smallGrave] + generate = true + + ["The Graveyard - Structures Config".smallMountainGraveyard] + generate = true + + ["The Graveyard - Structures Config".smallSavannaGrave] + generate = true + + ["The Graveyard - Structures Config".crypt] + generate = true + + ["The Graveyard - Structures Config".hauntedHouse] + generate = true + + ["The Graveyard - Structures Config".lichPrison] + generate = true + + ["The Graveyard - Structures Config".mediumGraveyard] + generate = true + + ["The Graveyard - Structures Config".smallGraveyard] + generate = true + + ["The Graveyard - Structures Config".smallDesertGraveyard] + generate = true + + ["The Graveyard - Structures Config".giantMushroom] + generate = true + + ["The Graveyard - Structures Config".smallDesertGrave] + generate = true + + ["The Graveyard - Structures Config".altar] + generate = true + + ["The Graveyard - Structures Config".largeGraveyard] + generate = true + + ["The Graveyard - Structures Config".ruins] + generate = true + + ["The Graveyard - Structures Config".mushroomGrave] + generate = true + + ["The Graveyard - Structures Config".deadTree] + generate = true + + ["The Graveyard - Structures Config".memorialTree] + generate = true + +["The Graveyard - Additional Config"] + + ["The Graveyard - Additional Config".urn] + urnHasDoubleInventory = true + + ["The Graveyard - Additional Config".spawner] + disableWitherSkeletonSpawner = false + + ["The Graveyard - Additional Config".bossMusic] + enableBossMusic = true + diff --git a/minecraft/config/great_scrollable_tooltips.toml b/minecraft/config/great_scrollable_tooltips.toml new file mode 100644 index 0000000..993c42c --- /dev/null +++ b/minecraft/config/great_scrollable_tooltips.toml @@ -0,0 +1,3 @@ +enable = true +sensitivity = 10 +auto_reset = true \ No newline at end of file diff --git a/minecraft/config/grimoireofgaia-client.toml b/minecraft/config/grimoireofgaia-client.toml new file mode 100644 index 0000000..4c95ae8 --- /dev/null +++ b/minecraft/config/grimoireofgaia-client.toml @@ -0,0 +1,6 @@ + +#Client settings +[client] + #When enabled makes the mobs look more gender neutral (default: false) + genderNeutral = false + diff --git a/minecraft/config/grimoireofgaia-common.toml b/minecraft/config/grimoireofgaia-common.toml new file mode 100644 index 0000000..44742f8 --- /dev/null +++ b/minecraft/config/grimoireofgaia-common.toml @@ -0,0 +1,72 @@ + +#General Settings +[General] + #Disable mobs that use the Invisibility status effect when far from a player [Default: false] + disableInvisibility = false + #All mobs are now hostile [Default: false] + allPassiveMobsHostile = false + #Hostile day mobs will no longer attack players on sight [default: false] + passiveHostileMobs = false + #Stop befriended mobs from despawning [Default: false] + friendlyPersistence = false + +#Attribute settings +[Attributes] + + #Tier 1 + [Attributes.Tier1] + #Defines the health of Tier 1 Gaia mobs [40 = 20 Hearts] + #Range: > 1 + tier1maxHealth = 40 + #Defines the attack damage of Tier 1 Gaia mobs [4 = 2 Hearts] + #Range: > 1 + tier1attackDamage = 4 + #Defines the maximum amount of hits required to defeat Tier 1 Gaia mobs (0 = disable) + #Range: > 0 + tier1baseDefense = 2 + + #Tier 2 + [Attributes.Tier2] + #Defines the health of Tier 2 Gaia mobs [80 = 40 Hearts] + #Range: > 1 + tier2maxHealth = 80 + #Defines the attack damage of Tier 2 Gaia mobs [8 = 4 Hearts] + #Range: > 1 + tier2attackDamage = 8 + #Defines the maximum amount of hits required to defeat Tier 2 Gaia mobs (0 = disable) + #Range: > 0 + tier2baseDefense = 4 + + #Tier 3 + [Attributes.Tier3] + #Defines the health of Tier 3 Gaia mobs [160 = 80 Hearts] + #Range: > 1 + tier3maxHealth = 160 + #Defines the attack damage of Tier 3 Gaia mobs [12 = 6 Hearts] + #Range: > 1 + tier3attackDamage = 12 + #Defines the maximum amount of hits required to defeat Tier 3 Gaia mobs (0 = disable) + #Range: > 0 + tier3baseDefense = 8 + +#Damage settings +[Damage] + #Archers arrows deal an additional 1 (0.5 heart) of damage. [Default: true] + baseDamage = true + #Base Damage (melee) won't penetrate Shields. [Default: true] + shieldsBlockPiercing = true + +#Spawn settings +[Spawn] + #Mobs only spawn after a certain amount of days have passed [Default: false] + spawnDaysPassed = false + #Amount of days required to have passed before they can start spawning [Default: 3] + #Range: > 1 + spawnDaysSet = 3 + #Level 3 mobs only spawn when it is raining/snowing [Default: false] + spawnLevel3Rain = false + #Remove spawn conditions related to height (Y-axis) [Default: false] + disableYRestriction = false + #Remove spawn conditions related to weather [Default: false] + spawnWeather = false + diff --git a/minecraft/config/gtbcs_spell_lib-common.toml b/minecraft/config/gtbcs_spell_lib-common.toml new file mode 100644 index 0000000..c81818f --- /dev/null +++ b/minecraft/config/gtbcs_spell_lib-common.toml @@ -0,0 +1,10 @@ +#Whether to log the dirt block on common setup +logDirtBlock = true +#A magic number +#Range: > 0 +magicNumber = 42 +#What you want the introduction message to be for the magic number +magicNumberIntroduction = "The magic number is... " +#A list of items to log on common setup. +items = ["minecraft:iron_ingot"] + diff --git a/minecraft/config/guardvillagers-client.toml b/minecraft/config/guardvillagers-client.toml index fda8d21..0bbc66f 100644 --- a/minecraft/config/guardvillagers-client.toml +++ b/minecraft/config/guardvillagers-client.toml @@ -1,6 +1,6 @@ -#Textures not included, make your own textures by making a resource pack that adds guard_steve_0 - 6 -"Have guards use the steve model?" = false -"Have baby villagers have big heads like in bedrock?" = true -#Note that this option will automatically activate if a guard has more hearts than default -"Display guard health in icons" = true - +#Textures not included, make your own textures by making a resource pack that adds guard_steve_0 - 6 +"Have guards use the steve model?" = false +"Have baby villagers have big heads like in bedrock?" = true +#Note that this option will automatically activate if a guard has more hearts than default +"Display guard health in icons" = true + diff --git a/minecraft/config/guiclock.json5 b/minecraft/config/guiclock.json5 new file mode 100644 index 0000000..005fddb --- /dev/null +++ b/minecraft/config/guiclock.json5 @@ -0,0 +1,43 @@ +{ + // When enabled, will only show the game time when a clock is present in the inventory. + "mustHaveClockInInventoryForGameTime": true, + // When enabled, will only show the real time when a clock is present in the inventory. + "mustHaveClockInInventoryForRealTime": true, + // Whether the clock in the GUI should be lowered when the player has potion effects to prevent overlap. + "lowerClockWhenPlayerHasEffects": true, + // Sets the format of the clock to the 24-hour format. + "_24hourformat": true, + // When enabled, shows the clock item icon instead of a clock with numbers. + "showOnlyMinecraftClockIcon": false, + // Show both in-game time and real local time. + "showBothTimes": false, + // Show actual local time instead of in-game time. + "showRealTime": false, + // Show the seconds in the clock. + "showRealTimeSeconds": false, + // Show the days played in the world. + "showDaysPlayedWorld": true, + // Places the GUI clock on the left. + "clockPositionIsLeft": false, + // Places the GUI clock in the middle. + "clockPositionIsCenter": false, + // Places the GUI clock on the right. + "clockPositionIsRight": true, + // The vertical offset (y coord) for the Clock. This determines how far down the time should be on the screen. Can be changed to prevent GUIs from overlapping. + // min: 0, max: 3000 + "clockHeightOffset": 5, + // The horizontal offset (x coord) for the Clock. + // min: -3000, max: 3000 + "clockWidthOffset": 0, + // If the text displayed should have a shadow drawn below it. + "drawTextShadow": true, + // The red RGB value for the clock text. + // min: 0, max: 255 + "RGB_R": 255, + // The green RGB value for the clock text. + // min: 0, max: 255 + "RGB_G": 255, + // The blue RGB value for the clock text. + // min: 0, max: 255 + "RGB_B": 255 +} \ No newline at end of file diff --git a/minecraft/config/guideme.toml b/minecraft/config/guideme.toml index ebc77e1..5835a58 100644 --- a/minecraft/config/guideme.toml +++ b/minecraft/config/guideme.toml @@ -1,17 +1,17 @@ - -[guides] - #Never load translated guide pages for your current language. - ignoreTranslatedGuides = false - #Never show errors in guides when recipes can't be found (i.e. because they were hidden by a datapack). - hideMissingRecipeErrors = false - -[gui] - #Adapt GUI scaling for the Guide screen to fix Minecraft font issues at GUI scale 1 and 3. - adaptiveScaling = true - #Use the full width of the screen for the guide when it is opened. - fullWidthLayout = true - -[debug] - #Show debugging overlays in GUI on mouse-over. - showDebugGuiOverlays = false - + +[guides] + #Never load translated guide pages for your current language. + ignoreTranslatedGuides = false + #Never show errors in guides when recipes can't be found (i.e. because they were hidden by a datapack). + hideMissingRecipeErrors = false + +[gui] + #Adapt GUI scaling for the Guide screen to fix Minecraft font issues at GUI scale 1 and 3. + adaptiveScaling = true + #Use the full width of the screen for the guide when it is opened. + fullWidthLayout = true + +[debug] + #Show debugging overlays in GUI on mouse-over. + showDebugGuiOverlays = false + diff --git a/minecraft/config/handoveryouritems.json5 b/minecraft/config/handoveryouritems.json5 new file mode 100644 index 0000000..a67ed57 --- /dev/null +++ b/minecraft/config/handoveryouritems.json5 @@ -0,0 +1,8 @@ +{ + // If enabled, players will receive a message when they have been given an item. + "sendItemReceivedMessage": true, + // If enabled, players will receive a message when they give an item. + "sendItemGivenMessage": true, + // If enabled, players will only be able to give items when they are crouching/sneaking. + "mustCrouchToGiveItem": true +} \ No newline at end of file diff --git a/minecraft/config/hangglider-client.toml b/minecraft/config/hangglider-client.toml new file mode 100644 index 0000000..fde7476 --- /dev/null +++ b/minecraft/config/hangglider-client.toml @@ -0,0 +1,11 @@ +#Multiplier for camera tilt speed when gliding. +#Range: 0.1 ~ 1.0 +gliding_tilt_speed = 0.4 +#Automatically switch to third-person mode while gliding. +auto_third_person_gliding = false +#Tilt camera depending on gliding turn angle. +gliding_camera_tilt = true +#Multiplier for camera tilt amount when gliding. +#Range: 0.1 ~ 1.0 +gliding_tilt_amount = 0.5 + diff --git a/minecraft/config/hangglider-server.toml b/minecraft/config/hangglider-server.toml new file mode 100644 index 0000000..dc0e71f --- /dev/null +++ b/minecraft/config/hangglider-server.toml @@ -0,0 +1,82 @@ + +[wind] + #The size of the wind gusts, larger values mean the gusts push the player around in greater angles from their intended direction. Default is moderately sized. Observable gameplay effects are highly tied with wind frequency. + #Range: 1.0 ~ 100.0 + gust_size = 19.0 + #How much stronger the wind should be while it is raining. 1 means the wind is the same if raining or not, 10 means the wind is 10x stronger while it is raining. + #Range: 1.0 ~ 10.0 + raining_multiplier = 3.0 + #Enables wind, making the player move unpredictably around when gliding. + allow_wind = true + #The frequency of the wind gusts, larger values mean the wind effects occur more often. 0 removes wind. Default is semi-common. Observable gameplay effects are highly tied with gust size. + #Range: 0.0 ~ 5.0 + frequency = 0.15 + #The player's y-level/height changes the overall wind effect by this multiplier. Default is that the higher you are up in the world the stronger the wind is, but only by a moderate amount. 0 means the player's height has no effect on the wind. + #Range: -10.0 ~ 10.0 + height_multiplier = 1.5 + #Enables air resistance, making the player slow down over time when flying. Values conditional on tier of glider. + allow_air_resistance = true + #The glider's durability remaining changes the overall wind effect by this additional amount. 0 means the glider's durability won't effect the wind power, whereas 1 will mean a nearly broken glider is affected by wind about twice as much as a new one. + #Range: 0.0 ~ 5.0 + durability_multiplier = 0.7 + #A quality-of-life option to quickly change the overall power of the wind effect for all gliders. Default is an overall relatively weak wind, with moderate gusts that occur semi-commonly. Note that this value can be a decimal (i.e. 0.5 would be half as strong). More fine-grained options are available below. + #Range: 0.001 ~ 10.0 + overall_power = 1.0 + #When going fast, the overall wind effect is changed by this multiplier. Default is that going fast reduces the wind effect by a moderate amount. 0 means the player's speed has no effect on the wind. + #Range: -10.0 ~ 10.0 + speed_multiplier = 0.4 + +[reinforced_hang_glider] + #A quality-of-life option to quickly change the overall power of the wind effect for this glider. Default is an overall relatively weak wind, with moderate gusts that occur semi-commonly. + #Note that this value can be a decimal (i.e. 0.5 would be half as strong). More fine-grained options are available in the 'wind' section of this config. + #Range: 0.001 ~ 10.0 + overall_wind_power = 0.75 + #The amount of blocks to move forwards (per-tick) while gliding fast (pressing 'Shift'). + #Range: 0.0 ~ 100.0 + fast_forward_movement = 0.08 + #The amount of blocks a player falls (per-tick) while gliding normally. + #Range: 0.0 ~ 100.0 + normal_fall_movement = 0.55 + #Enables durability usage of the hang glider when gliding. + consume_durability = true + #The timeframe for durability usage, in ticks. Recall that there are 20 ticks in a second, so a value of 20 would damage the item about once a second. + #Default is 1 damage about every 10 seconds of flight, so with a durability of 618 means about 15 minutes of flight time with an undamaged glider. + #Range: 1 ~ 10000 + durability_use_interval = 200 + #The rate at which air resistance hinders your movement. 1 is no resistance, 0.5 is 1/2 as fast each tick. + #Range: 0.0 ~ 1.0 + air_resistance = 0.99 + #The amount of blocks to move forwards (per-tick) while gliding normally. + #Range: 0.0 ~ 100.0 + normal_forward_movement = 0.04 + #The amount of blocks to fall (per-tick) while gliding fast (pressing 'Shift'). + #Range: 0.0 ~ 100.0 + fast_fall_movement = 0.675 + +[hang_glider] + #A quality-of-life option to quickly change the overall power of the wind effect for this glider. Default is an overall relatively weak wind, with moderate gusts that occur semi-commonly. + #Note that this value can be a decimal (i.e. 0.5 would be half as strong). More fine-grained options are available in the 'wind' section of this config. + #Range: 0.001 ~ 10.0 + overall_wind_power = 1.4 + #The amount of blocks to move forwards (per-tick) while gliding fast (pressing 'Shift'). + #Range: 0.0 ~ 100.0 + fast_forward_movement = 0.05 + #The amount of blocks a player falls (per-tick) while gliding normally. + #Range: 0.0 ~ 100.0 + normal_fall_movement = 0.55 + #Enables durability usage of the hang glider when gliding. + consume_durability = true + #The timeframe for durability usage, in ticks. Recall that there are 20 ticks in a second, so a value of 20 would damage the item about once a second. + #Default is 1 damage about every 10 seconds of flight, so with a durability of 618 means about 15 minutes of flight time with an undamaged glider. + #Range: 1 ~ 10000 + durability_use_interval = 200 + #The rate at which air resistance hinders your movement. 1 is no resistance, 0.5 is 1/2 as fast each tick. + #Range: 0.0 ~ 1.0 + air_resistance = 0.985 + #The amount of blocks to move forwards (per-tick) while gliding normally. + #Range: 0.0 ~ 100.0 + normal_forward_movement = 0.025 + #The amount of blocks to fall (per-tick) while gliding fast (pressing 'Shift'). + #Range: 0.0 ~ 100.0 + fast_fall_movement = 0.675 + diff --git a/minecraft/config/harimt.toml b/minecraft/config/harimt.toml new file mode 100644 index 0000000..ec1a210 --- /dev/null +++ b/minecraft/config/harimt.toml @@ -0,0 +1,34 @@ + +["Async Config"] + #Disables parallel processing of entities. + disabled = false + #Maximum worker threads. -1 = auto. + #Range: > -1 + paraMax = -1 + #List of entity IDs or namespaces (*): + # - 'minecraft:zombie' = specific entity + # - 'minecraft:*' = all entities in namespace + synchronizedEntities = ["minecraft:tnt", "minecraft:creeper", "minecraft:experience_orb", "minecraft:end_crystal", "minecraft:wither", "create:*", "minecraft:item", "minecraft:ghast"] + #Enables async entity spawning. WARNING: incompatible with Carpet's lagFreeSpawning. + enableAsyncSpawn = true + #Experimental! Enables async random ticks. + enableAsyncRandomTicks = false + #Enable affinity-based entity routing. + #Routes entities in the same chunk to the same worker thread for better CPU cache locality. + #Workers steal from other lanes when idle. Recommended: true. + enableAffinityRouting = true + #Enable circuit breaker for entity tick crash isolation. + #When an entity type crashes repeatedly during async tick, it is automatically + #moved to synchronous ticking until it stabilizes. Prevents cascade failures. + enableCircuitBreaker = true + #Target number of entities per worker thread. Lower values = more parallelism. + #The system dynamically scales workers based on entity count. + #Recommended: 15-40. Default: 25. + #Range: 5 ~ 200 + entitiesPerWorker = 25 + #Timeout in milliseconds before warning about slow entity tick batches. + #Does NOT cancel ticks (unsafe) - only logs warnings for diagnostics. + #Default: 200ms. + #Range: 50 ~ 5000 + staleTaskTimeoutMs = 200 + diff --git a/minecraft/config/healingcampfire.json5 b/minecraft/config/healingcampfire.json5 new file mode 100644 index 0000000..3adfd27 --- /dev/null +++ b/minecraft/config/healingcampfire.json5 @@ -0,0 +1,26 @@ +{ + // How often in ticks the mod checks for campfires around the player. 1 second = 20 ticks, so by default every 2 seconds. + // min: 1, max: 1200 + "checkForCampfireDelayInTicks": 40, + // The radius around the campfire in blocks where players receive the regeneration effect. + // min: 1, max: 64 + "healingRadius": 16, + // The duration of the regeneration effect which the campfire applies. + // min: 1, max: 600 + "effectDurationSeconds": 60, + // The level of regeneration which the campfire applies, by default 1. + // min: 1, max: 50 + "regenerationLevel": 1, + // When enabled, the campfire heals passive mobs around where the radius is half the width of a bounding box. + "healPassiveMobs": true, + // When enabled, hides the particles from the regeneration effect around the campfire. + "hideEffectParticles": true, + // When enabled, the campfire only has an effect when the block is lit up. + "campfireMustBeLit": true, + // When enabled, the campfire only has an effect when the block is signalling. + "campfireMustBeSignalling": false, + // When enabled, the mod will work with normal campfires. + "enableEffectForNormalCampfires": true, + // When enabled, the mod will work with soul campfires. + "enableEffectForSoulCampfires": true +} \ No newline at end of file diff --git a/minecraft/config/herbalbrews.toml b/minecraft/config/herbalbrews.toml index 5aed135..3d8bddb 100644 --- a/minecraft/config/herbalbrews.toml +++ b/minecraft/config/herbalbrews.toml @@ -1,27 +1,27 @@ - -[items] - - [items.banner] - #Enable or disable the effect granted by banners. - giveEffect = true - #Enable or disable the tooltip display for banners. - showTooltip = true - - [items.hat] - #Enable or disable magic damage reduction provided by the hat. - damageReductionEnabled = true - #Percentage of magic damage reduction provided by the hat (0-100). - #Range: 0 ~ 100 - damageReductionAmount = 40 - -[blocks] - #Duration of the drying process in ticks. (20 ticks = 1 second) - #Range: > 0 - dryingDuration = 900 - #Duration of the brewing process in ticks. (20 ticks = 1 second) - #Range: > 0 - brewingDuration = 1200 - #Duration of the jug's effect in ticks. (20 ticks = 1 second) - #Range: > 0 - jugEffectDuration = 900 - + +[items] + + [items.banner] + #Enable or disable the effect granted by banners. + giveEffect = true + #Enable or disable the tooltip display for banners. + showTooltip = true + + [items.hat] + #Enable or disable magic damage reduction provided by the hat. + damageReductionEnabled = true + #Percentage of magic damage reduction provided by the hat (0-100). + #Range: 0 ~ 100 + damageReductionAmount = 40 + +[blocks] + #Duration of the drying process in ticks. (20 ticks = 1 second) + #Range: > 0 + dryingDuration = 900 + #Duration of the brewing process in ticks. (20 ticks = 1 second) + #Range: > 0 + brewingDuration = 1200 + #Duration of the jug's effect in ticks. (20 ticks = 1 second) + #Range: > 0 + jugEffectDuration = 900 + diff --git a/minecraft/config/horseexpert-client.toml b/minecraft/config/horseexpert-client.toml new file mode 100644 index 0000000..3ce585a --- /dev/null +++ b/minecraft/config/horseexpert-client.toml @@ -0,0 +1,28 @@ +#Show speed and jump height for llamas. They have those attributes as they inherit all functionality from horses, but don't really use them for anything. +all_llama_attributes = false +#Percentage value below which a value is considered to be low when shown on statistics tooltips. +#Range: 0.0 ~ 1.0 +low_value_percentage = 0.25 +#Only show statistics tooltips while sneaking (still requires a monocle to be worn). +requires_sneaking = false +#Offset on x-axis for statistics tooltips from original position. +#Range: > -2147483648 +offset_x = 0 +#Percentage value above which a value is considered to be high when shown on statistics tooltips. +#Range: 0.0 ~ 1.0 +high_value_percentage = 0.75 +#Offset on y-axis for statistics tooltips from original position. +#Range: > -2147483648 +offset_y = 0 +#Color used for highlighting high attribute values on statistics tooltips. +#Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE +high_value_color = "GREEN" +#Color used for highlighting low attribute values on statistics tooltips. +#Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE +low_value_color = "RED" +#Color used for highlighting medium attribute values on statistics tooltips. +#Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE +medium_value_color = "GOLD" +#Must the mount be tamed for any statistics to show. +must_be_tamed = true + diff --git a/minecraft/config/hostilenetworks.cfg b/minecraft/config/hostilenetworks.cfg new file mode 100644 index 0000000..c3ba175 --- /dev/null +++ b/minecraft/config/hostilenetworks.cfg @@ -0,0 +1,41 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Hostile Networks Config + +# All entries in this config file are synced from server to client. + + +power { + # The maximum FE stored in the Simulation Chamber. + # Default: 2000000; Range: [1 ~ 2147483647] + I:"Sim Chamber Power Cap"=2000000 + + # The maximum FE stored in the Loot Fabricator. + # Default: 1000000; Range: [1 ~ 2147483647] + I:"Loot Fab Power Cap"=1000000 + + # The FE/t cost of the Loot Fabricator. + # Default: 256; Range: [0 ~ 2147483647] + I:"Loot Fab Power Cost"=256 +} + + +models { + # If true, right clicking a blank data model on a mob will attune it to that mob. If disabled, you will need to provide players with a way to get attuned models! + # Default: true + B:"Right Click To Attune"=true + + # Whether the Simulation Chamber will upgrade the data on a model. (0 = No, 1 = Yes, 2 = Only up to tier boundaries) + # Default: 1; Range: [0 ~ 2] + I:"Sim Chamber Upgrades Model"=1 + + # Whether killing mobs will upgrade the data on a model. Note: If you disable this, be sure to add a way for players to get non-Faulty models! + # Default: true + B:"Killing Upgrades Model"=true + + # If true, the accuracy of the model increases as it gains progress towards the next tier. If false, always uses the base accuracy of the current tier. + # Default: true + B:"Continuous Accuracy"=true +} + + diff --git a/minecraft/config/iceandfire-client.toml b/minecraft/config/iceandfire-client.toml new file mode 100644 index 0000000..d8eeec8 --- /dev/null +++ b/minecraft/config/iceandfire-client.toml @@ -0,0 +1,9 @@ + +[general] + #Whether to display the dragon on the main menu or not + "Custom main menu" = false + #True if riding dragons should make the player take a 3rd person view automatically. + "Auto 3rd person when riding dragon" = true + #Whether to use the vanilla font in the bestiary or not + "Use Vanilla Font" = false + diff --git a/minecraft/config/iceandfire-common.toml b/minecraft/config/iceandfire-common.toml new file mode 100644 index 0000000..59d19d5 --- /dev/null +++ b/minecraft/config/iceandfire-common.toml @@ -0,0 +1,395 @@ + +[Generation] + + [Generation.Dragon] + #Whether to generate dragon skeletons or not + "Generate Dragon Skeletons" = true + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Generate Dragon Skeleton Chance" = 300 + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Generate Dragon Cave Chance" = 180 + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Generate Dragon Roost Chance" = 360 + #1 out of this number chance per block that gold will generate in dragon lairs. + #Range: 1 ~ 10000 + "Dragon Den Gold Amount" = 4 + #Ratio of Stone(this number) to Ores in Dragon Caves + #Range: 1 ~ 10000 + "Dragon Cave Ore Ratio" = 45 + + [Generation.Structures-Features] + #How far away dangerous structures(dragon roosts, cyclops caves, etc.) must be from spawn. + #Range: 1 ~ 10000 + "Dangerous World Gen Dist From Spawn" = 800 + #How far away dangerous structures(dragon roosts, cyclops caves, etc.) must be from the last generated structure. + #Range: 1 ~ 10000 + "Dangerous World Gen Dist Seperation" = 300 + #Whether to generate glacier biomes or not + "Generate Glaciers" = true + #Glacier Spawn Weight. Higher number = more common + #Range: 1 ~ 10000 + "Glacier Spawn Weight" = 4 + #True if mausoleums are allowed to generate + "Generate Mausoleums" = true + #Whether to generate graveyards or not + "Generate Graveyards" = true + #True if gorgon temples are allowed to spawn + "Generate Gorgon Temple" = true + +[Dragons] + + [Dragons.Griefing] + #Dragon griefing - 2 is no griefing, 1 is breaking weak blocks, 0 is default. This value is also affected by minecrafts mob griefing rule. + #Range: 0 ~ 2 + "Dragon Griefing" = 0 + #True if tamed dragons can follow the griefing rules. + "Tamed Dragon Griefing" = true + #The percentage chance for a block to drop as an item when a dragon breaks it. + #Range: 0.0 ~ 1.0 + "Dragon Block Breaking Drop Chance" = 0.10000000149011612 + + [Dragons.Attributes] + #How long it takes(in ticks) for a dragon egg to hatch + #Range: > 1 + "Dragon Egg Hatch Time" = 7200 + #Dragon Flap Noise Distance - Larger number, further away you can hear it + #Range: 0 ~ 10000 + "Dragon Flap Noise Distance" = 4 + #Dragon Flute Distance - how many chunks away is the dragon flute effective? + #Range: 0 ~ 10000 + "Dragon Flute Distance" = 4 + #Max dragon health. Health is scaled to this + #Range: 1.0 ~ 100000.0 + "Dragon Health" = 500.0 + #Max dragon attack damage. Attack Damage is scaled to this + #Range: 1 ~ 10000 + "Dragon Attack Damage" = 17 + #Damage dealt from a successful fire breath attack. Attack Damage is scaled to by age, so a stage 5 dragon will deal 5x as much as this number + #Range: 0.0 ~ 10000.0 + "Dragon Attack Damage(Fire breath)" = 2.0 + #Damage dealt from a successful ice breath attack. Attack Damage is scaled to by age, so a stage 5 dragon will deal 5x as much as this number + #Range: 0.0 ~ 10000.0 + "Dragon Attack Damage(Ice breath)" = 2.5 + #Damage dealt from a successful lightning breath attack. Attack Damage is scaled to by age, so a stage 5 dragon will deal 5x as much as this number + #Range: 0.0 ~ 10000.0 + "Dragon Attack Damage(Lightning breath)" = 3.5 + #Change this to slow down or speed up dragon or amphithere flight. + #Range: 0.0 ~ 2.0 + "Dragon Flight Speed Modifier" = 1.0 + #Enable this if your server is being bombarded with moved wrongly or moved too fast console messages. REQUIRES RESTART! + "Dragon Moved Wrongly Error Fix" = true + + [Dragons.Behaviour] + #How high dragons can fly, in Y height. + #Range: > 100 + "Max Dragon Flight Height" = 256 + #How far away dragons will detect gold blocks being destroyed or chests being opened + #Range: 0 ~ 10000 + "Dragon Gold Search Length" = 30 + #Whether the bite attack from a dragon heals them or not. + "Dragon Bite Heal" = true + #True if dragons can despawn. Note that if this is false there may be SERIOUS lag issues. + "Dragons Despawn" = true + #True if tamed dragons go to sleep at night. + "Tamed Dragons Sleep" = true + #True if dragons can break blocks if they get stuck. Turn this off if your dragons randomly explode. + "Dragons Dig When Stuck" = true + #True if dragons can drop their skull on death. + "Dragons Drop Skull" = true + #True if dragons can drop their heart on death. + "Dragons Drop Heart" = true + #True if dragons can drop their blood on death. + "Dragons Drop Blood" = true + #True if dragons fire/ice charges create secondary explosions that launch blocks everywhere. Turn this to true if you like unfair explosions. Or lag. + "Explosive Dragon Breath" = false + #How many blocks away can dragons spot potential prey. Note that increasing this could cause lag. + #Range: 1 ~ 10000 + "Dragon Target Search Length" = 128 + #How many blocks away can dragons wander from their defined "home" position. + #Range: 1 ~ 10000 + "Dragon Wander From Home Distance" = 40 + #Every interval of this number in ticks, dragon hunger decreases. + #Range: 1 ~ 10000 + "Dragon Hunger Tick Rate" = 3000 + #Every interval of this number in ticks, dragon allowed to break blocks. + #Range: 0 ~ 10000 + "Dragon Block Break Cooldown" = 5 + #True if villagers should run away and hide from dragons and other hostile Ice and Fire mobs. + "Villagers Fear Dragons" = true + #True if animals should run away and hide from dragons and other hostile Ice and Fire mobs. + "Animals Fear Dragons" = true + #A more intelligent dragon pathfinding system, but is also laggier. Turn this on if you think dragons are too stupid. + "Intelligent Dragon Pathfinding" = false + +[Mobs] + + [Mobs.Pixies] + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Pixies Chance" = 60 + #size of pixie villages + #Range: 1 ~ 10000 + "Pixie Village Size" = 5 + #True if pixies are allowed to steal from players + "Pixies Steal Items" = true + + [Mobs.Cyclops] + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Cyclops Cave Chance" = 100 + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Wandering Cyclops Chance" = 100 + #Maximum cyclops health + #Range: 1.0 ~ 10000.0 + "Cyclops Max Health" = 150.0 + #How many blocks away can cyclopes detect sheep. Note that increasing this could cause lag. + #Range: 1 ~ 10000 + "Cyclopes Sheep Search Length" = 17 + #Cyclops attack strength + #Range: 1.0 ~ 10000.0 + "Cyclops Attack Strength" = 15.0 + #Amount of damage done with cyclops bite attack. + #Range: 1.0 ~ 10000.0 + "Cyclops Bite Strength" = 40.0 + #Whether or not cyclops can break logs or leaves in their way + "Cyclops Griefing" = true + + [Mobs.Sirens] + #Maximum siren health + #Range: 1.0 ~ 10000.0 + "Siren Max Health" = 50.0 + #True to make the screen pink when sirens attract players + "Use Siren Shader" = true + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Sirens Chance" = 400 + #how long(in ticks) can a siren use its sing effect on a player, without a cooldown. + #Range: 100 ~ 24000 + "Siren Max Sing Time" = 12000 + #how long(in ticks) a siren has to wait after failing to lure in a player + #Range: 100 ~ 24000 + "Siren Time Between Songs" = 2000 + + [Mobs.DeathWorms] + #How many blocks away can death worms spot potential prey. Note that increasing this could cause lag + #Range: 1 ~ 10000 + "Death Worm Target Search Length" = 64 + #Default deathworm health, this is scaled to the worm's particular size + #Range: 1.0 ~ 10000.0 + "Death Worm Base Health" = 10.0 + #Default deathworm attack strength, this is scaled to the worm's particular size + #Range: 1.0 ~ 10000.0 + "Death Worm Base Attack Strength" = 3.0 + #True if wild deathworms are allowed to target and attack monsters + "Death Worms Target Monsters" = true + #Deathworm spawn weight. Higher = lower chance to spawn + #Range: 1 ~ 10000 + "Death Worm Spawn Weight" = 30 + + [Mobs.Cockatrice] + #Maximum cockatrice health + #Range: 1.0 ~ 10000.0 + "Cockatrice Health" = 40.0 + #1 out of this number chance per 6000 ticks for a chicken to lay a cockatrice egg. + #Range: > 1 + "Cockatrice chicken Search Length" = 30 + #True if chickens lay rotten eggs. + "Chickens Lay Rotten Eggs" = true + #True if cockatrices are allowed to spawn + "Spawn Cockatrices" = true + #Cockatrice spawn weight. Lower = lower chance to spawn + #Range: 1 ~ 10000 + "Cockatrice Spawn Weight" = 4 + + [Mobs.Stymphalians] + #How many blocks away can stymphalian birds spot potential prey. Note that increasing this could cause lag. + #Range: 1 ~ 10000 + "Stymphalian Bird Target Search Length" = 64 + #1/this number chance for a stymphalian feather to turn into an item before despawning. Zero means never. + #Range: 0 ~ 10000 + "Stymphalian Bird Feather Drop Chance" = 25 + #Stymphalian bird feather attack strength. + #Range: 0.0 ~ 10000.0 + "Stymphalian Bird Feather Attack Strength" = 1.0 + #How far away stymphalian birds will consider other birds to be in the same flock. + #Range: 1 ~ 10000 + "Stymphalian Bird Flock Length" = 40 + #How high stymphalian birds can fly, in Y height. + #Range: > 10 + "Max Stymphalian Bird Flight Height" = 80 + #True if stymphalian birds can drop items registered in the ore dictionary to ingotCopper, ingotBronze, nuggetCopper, nuggetBronze. + "Stymphalian Birds drop ore dict items" = true + #True if stymphalian birds are allowed to target and attack animals + "Stymphalian Birds Target Animals" = false + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Stymhphalian Bird Chance" = 100 + + [Mobs.Trolls] + #True if trolls are allowed to spawn + "Spawn Trolls" = true + #True if trolls are allowed to drop their weapon on death. + "Trolls Drop Weapon" = true + #Troll spawn weight. Lower = lower chance to spawn + #Range: 1 ~ 10000 + "Troll Spawn Weight" = 40 + #Maximum troll health + #Range: 1.0 ~ 10000.0 + "Troll Max Health" = 50.0 + #Troll attack strength + #Range: 1.0 ~ 10000.0 + "Troll Attack Strength" = 10.0 + + [Mobs.Myrmex] + #How many ticks it takes for a Myrmex Queen to produce an egg. + #Range: 1 ~ 10000 + "Myrmex Gestation Length" = 2500 + #How many ticks it takes for a Myrmex to move from a larva to a pupa, and from a pupa to an adult. + #Range: 1 ~ 100000 + "Myrmex Hatch Length" = 35000 + #One out of this number chance per chunk to generate a myrmex hive. + #Range: 1 ~ 10000 + "Myrmex Colony Gen Chance" = 150 + #How many maximum individuals a myrmex colony can have. + #Range: 10 ~ 10000 + "Myrmex Colony Max Size" = 80 + #Base Myrmex(worker) attack strength + #Range: 1.0 ~ 10000.0 + "Myrmex Base Attack Strength" = 3.0 + #The maximum radius myrmex area allowed to wander/forage + #Range: 25 ~ 4000 + "Myrmex Maximum Wander Radius" = 50 + #Myrmex hives will ignore daytime + "Myrmex Hive Ignore Daytime" = false + + [Mobs.Amphitheres] + #True if amphitheres are allowed to spawn + "Spawn Amphitheres" = true + #Amphithere spawn weight. Lower = lower chance to spawn + #Range: 1 ~ 10000 + "Amphithere Spawn Weight" = 50 + #How many blocks away can ampitheres detect villagers being hurt. Note that increasing this could cause lag. + #Range: 1 ~ 10000 + "Amphithere Villager Search Length" = 64 + #How many ticks it takes while riding an untamed amphithere to tame it. + #Range: 1 ~ 10000 + "Amphithere Tame Time" = 400 + #How fast amphitheres fly. + #Range: 0.0 ~ 3.0 + "Amphithere Flight Speed" = 1.75 + #Maximum amphithere health + #Range: 1.0 ~ 10000.0 + "Amphithere Max Health" = 50.0 + #Amphithere attack strength + #Range: 1.0 ~ 10000.0 + "Amphithere Attack Strength" = 7.0 + + [Mobs.SeaSerpents] + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Sea Serpent Chance" = 250 + #Whether or not sea serpents can break weak blocks in their way + "Sea Serpent Griefing" = true + #Default sea serpent health, this is scaled to the sea serpent's particular size + #Range: 1.0 ~ 10000.0 + "Sea Serpent Base Health" = 20.0 + #Default sea serpent attack strength, this is scaled to the sea serpent's particular size + #Range: 1.0 ~ 10000.0 + "Sea Serpent Base Attack Strength" = 4.0 + + [Mobs.Hippocampus] + #1 out of this number chance per chunk for generation + #Range: 1 ~ 10000 + "Spawn Hippocampus Chance" = 40 + #Change this to slow down or speed up hippocampus swimming. + #Range: 0.0 ~ 2.0 + "Hippocampus Swim Speed Modifier" = 1.0 + + [Mobs.Hippogryph] + #True if hippogryphs are allowed to spawn + "Spawn Hippogryphs" = true + #Hippogryph spawn weight. Lower = lower chance to spawn. + #Range: 1 ~ 10000 + "Hippogryph Spawn Weight" = 2 + #Change this to slow down or speed up hippogryph flight. + #Range: 0.0 ~ 2.0 + "Hippogryph Flight Speed Modifier" = 1.0 + + [Mobs.Gorgons] + #Maximum gorgon health + #Range: 1.0 ~ 10000.0 + "Gorgon Max Health" = 100.0 + + [Mobs.Others] + #True if dread liches are allowed to spawn + "Spawn Liches" = true + #Dread Lich spawn weight. Lower = lower chance to spawn + #Range: 1 ~ 10000 + "Lich Spawn Weight" = 2 + #Dread Lich spawn chance. Lower = higher chance to spawn + #Range: 1 ~ 10000 + "Lich Spawn Chance" = 30 + #Maximum hydra health + #Range: 1.0 ~ 10000.0 + "Hydra Max Health" = 250.0 + #One out of this number chance per chunk to generate a hydra cave. + #Range: 1 ~ 10000 + "Hydra Caves Gen Chance" = 60 + #Maximum ghost health. + #Range: 1.0 ~ 10000.0 + "Ghost Max Health" = 30.0 + #Maximum ghost attack strength. + #Range: 0.0 ~ 10000.0 + "Ghost Attack Strength" = 3.0 + #True if ghosts can rarely spawn from brutal PvP deaths. + "Ghost Spawn from PvP deaths" = true + #Villager Scribe House generation weight. Lower = lower chance to spawn + #Range: 0 ~ 10000 + "Villager Scribe House Weight" = 5 + #Allows attributes for mobs to be overridden via the config file. One might want to disable this if other mods are enabled that change mob attributes e.g armor, health etc... + "Allow Attribute Overriding" = true + +[Items] + #Default attack strength of a dragonsteel sword. + #Range: 5.0 ~ 2.147483647E9 + "Dragonsteel Sword Base Attack Strength" = 25.0 + #Default armor value of dragonsteel chestplate. + #Range: > 7 + "Dragonsteel Base Armor" = 12 + #Default armor toughness value of dragonsteel. + #Range: 0.0 ~ 1.7976931348623157E308 + "Dragonsteel Base Armor Toughness" = 6.0 + #Default durability value of dragonsteel tools. + #Range: > 1 + "Dragonsteel Base Durability" = 8000 + #Default durability value of dragonsteel equipment. + #Range: > 1 + "Dragonsteel Base Durability Equipment" = 8000 + #Disable this to remove easter egg with tinkers installed. + Weezer = true + #Percentage of critical strike that will disarm with easter egg tinkers material. + #Range: 0.0 ~ 1.0 + "Easter Egg Tinkers Tool Disarm chance" = 0.20000000298023224 + #True if the summon crystal can load chunks to find dragons. + "Chunk Load Summon Crystal" = true + #True if the dragon bone fire sword ignites attackers. + "Dragon Bone Fire Abilities" = true + #True if the dragon bone ice sword freezes attackers. + "Dragon Bone Ice Abilities" = true + #True if the dragon bone lightning sword strikes attackers. + "Dragon Bone Lightning Abilities" = true + +[Pathfinding] + #Maximum threads to use for dragon/myrmex pathfinding. Increase this number if pathing is slow and you have many cores. + #Range: > 1 + "Dragon Pathfinding Threads" = 3 + #Maximum nodes for dragons/myrmex to path too. Decrease this is dragon pathfinding is super slow or intensive. + #Range: > 1 + "Dragon Max Pathfinding Nodes" = 5000 + #Enables the option to draw the pathfinding nodes when enabled (use a stick on an entity) + "Debug Pathfinding Mode" = false + diff --git a/minecraft/config/iceandfire/amphithere_biomes.json b/minecraft/config/iceandfire/amphithere_biomes.json new file mode 100644 index 0000000..96c760c --- /dev/null +++ b/minecraft/config/iceandfire/amphithere_biomes.json @@ -0,0 +1,44 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:guiana_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:temperate_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:tropical_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:jacaranda_forest" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/cockatrice_biomes.json b/minecraft/config/iceandfire/cockatrice_biomes.json new file mode 100644 index 0000000..c046403 --- /dev/null +++ b/minecraft/config/iceandfire/cockatrice_biomes.json @@ -0,0 +1,51 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:baobab_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:araucaria_savanna" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/cyclops_cave_biomes.json b/minecraft/config/iceandfire/cyclops_cave_biomes.json new file mode 100644 index 0000000..cd9de42 --- /dev/null +++ b/minecraft/config/iceandfire/cyclops_cave_biomes.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:dacite_shore" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:basalt_barrera" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/deathworm_biomes.json b/minecraft/config/iceandfire/deathworm_biomes.json new file mode 100644 index 0000000..38e27a2 --- /dev/null +++ b/minecraft/config/iceandfire/deathworm_biomes.json @@ -0,0 +1,75 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:mojave_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:atacama_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:windswept_valley" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/desert_myrmex_biomes.json b/minecraft/config/iceandfire/desert_myrmex_biomes.json new file mode 100644 index 0000000..38e27a2 --- /dev/null +++ b/minecraft/config/iceandfire/desert_myrmex_biomes.json @@ -0,0 +1,75 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:mojave_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:atacama_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:windswept_valley" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/fire_dragon_biomes.json b/minecraft/config/iceandfire/fire_dragon_biomes.json new file mode 100644 index 0000000..2ccad89 --- /dev/null +++ b/minecraft/config/iceandfire/fire_dragon_biomes.json @@ -0,0 +1,110 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_jungle" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_plains" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_wet/overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold/overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_jungle" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:rose_fields" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:prairie" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:firecracker_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:autumnal_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:lush_stacks" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/fire_dragon_cave_biomes.json b/minecraft/config/iceandfire/fire_dragon_cave_biomes.json new file mode 100644 index 0000000..2ccad89 --- /dev/null +++ b/minecraft/config/iceandfire/fire_dragon_cave_biomes.json @@ -0,0 +1,110 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_jungle" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_plains" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_wet/overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold/overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_jungle" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_savanna" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:rose_fields" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:prairie" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:firecracker_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:autumnal_valley" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:lush_stacks" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/fire_dragon_skeleton_biomes.json b/minecraft/config/iceandfire/fire_dragon_skeleton_biomes.json new file mode 100644 index 0000000..38e27a2 --- /dev/null +++ b/minecraft/config/iceandfire/fire_dragon_skeleton_biomes.json @@ -0,0 +1,75 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sandy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_canyon" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_oasis" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:desert_spires" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ancient_sands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:mojave_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:atacama_desert" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:windswept_valley" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/fire_lily_biomes.json b/minecraft/config/iceandfire/fire_lily_biomes.json new file mode 100644 index 0000000..396fe9f --- /dev/null +++ b/minecraft/config/iceandfire/fire_lily_biomes.json @@ -0,0 +1,18 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_hot/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:firecracker_shrubland" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/forest_troll_biomes.json b/minecraft/config/iceandfire/forest_troll_biomes.json new file mode 100644 index 0000000..00a2064 --- /dev/null +++ b/minecraft/config/iceandfire/forest_troll_biomes.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/frost_lily_biomes.json b/minecraft/config/iceandfire/frost_lily_biomes.json new file mode 100644 index 0000000..1691831 --- /dev/null +++ b/minecraft/config/iceandfire/frost_lily_biomes.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_wet/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_lowlands" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/gorgon_temple_biomes.json b/minecraft/config/iceandfire/gorgon_temple_biomes.json new file mode 100644 index 0000000..cd9de42 --- /dev/null +++ b/minecraft/config/iceandfire/gorgon_temple_biomes.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_beach" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_ocean" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:dacite_shore" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:basalt_barrera" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/graveyard_biomes.json b/minecraft/config/iceandfire/graveyard_biomes.json new file mode 100644 index 0000000..dcb44ce --- /dev/null +++ b/minecraft/config/iceandfire/graveyard_biomes.json @@ -0,0 +1,26 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_water" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_beach" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_underground" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hippocampus_biomes.json b/minecraft/config/iceandfire/hippocampus_biomes.json new file mode 100644 index 0000000..a17f247 --- /dev/null +++ b/minecraft/config/iceandfire/hippocampus_biomes.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hippogryph_biomes.json b/minecraft/config/iceandfire/hippogryph_biomes.json new file mode 100644 index 0000000..14bc3ef --- /dev/null +++ b/minecraft/config/iceandfire/hippogryph_biomes.json @@ -0,0 +1,47 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_mountain" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_hill" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_mountains" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hippogryph_black_biomes.json b/minecraft/config/iceandfire/hippogryph_black_biomes.json new file mode 100644 index 0000000..d7e481e --- /dev/null +++ b/minecraft/config/iceandfire/hippogryph_black_biomes.json @@ -0,0 +1,18 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:painted_mountains" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hippogryph_brown_biomes.json b/minecraft/config/iceandfire/hippogryph_brown_biomes.json new file mode 100644 index 0000000..c60d23f --- /dev/null +++ b/minecraft/config/iceandfire/hippogryph_brown_biomes.json @@ -0,0 +1,28 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_mountain" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_hill" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hippogryph_chestnut_biomes.json b/minecraft/config/iceandfire/hippogryph_chestnut_biomes.json new file mode 100644 index 0000000..0ff073e --- /dev/null +++ b/minecraft/config/iceandfire/hippogryph_chestnut_biomes.json @@ -0,0 +1,33 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_mountain" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dry" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hippogryph_creamy_biomes.json b/minecraft/config/iceandfire/hippogryph_creamy_biomes.json new file mode 100644 index 0000000..4ad4661 --- /dev/null +++ b/minecraft/config/iceandfire/hippogryph_creamy_biomes.json @@ -0,0 +1,18 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:savanna_plateau" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hippogryph_dark_brown_biomes.json b/minecraft/config/iceandfire/hippogryph_dark_brown_biomes.json new file mode 100644 index 0000000..7131575 --- /dev/null +++ b/minecraft/config/iceandfire/hippogryph_dark_brown_biomes.json @@ -0,0 +1,55 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_mountain" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_hill" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:scarlet_mountains" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hippogryph_gray_biomes.json b/minecraft/config/iceandfire/hippogryph_gray_biomes.json new file mode 100644 index 0000000..096c487 --- /dev/null +++ b/minecraft/config/iceandfire/hippogryph_gray_biomes.json @@ -0,0 +1,25 @@ +{ + "biomes": [ + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:windswept_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "minecraft:windswept_hills" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:windswept_spires" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hippogryph_white_biomes.json b/minecraft/config/iceandfire/hippogryph_white_biomes.json new file mode 100644 index 0000000..95fa035 --- /dev/null +++ b/minecraft/config/iceandfire/hippogryph_white_biomes.json @@ -0,0 +1,65 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sparse" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_mountain" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_peak" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_sparse" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_mountain" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_slope" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:rocky_mountains" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/hydra_cave_biomes.json b/minecraft/config/iceandfire/hydra_cave_biomes.json new file mode 100644 index 0000000..480bff0 --- /dev/null +++ b/minecraft/config/iceandfire/hydra_cave_biomes.json @@ -0,0 +1,44 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:crag_gardens" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:cypress_swamplands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:bayou" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/ice_dragon_biomes.json b/minecraft/config/iceandfire/ice_dragon_biomes.json new file mode 100644 index 0000000..36c9a5c --- /dev/null +++ b/minecraft/config/iceandfire/ice_dragon_biomes.json @@ -0,0 +1,32 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_cold/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:shattered_glacier" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:frosted_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:frosted_coniferous_forest" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/ice_dragon_cave_biomes.json b/minecraft/config/iceandfire/ice_dragon_cave_biomes.json new file mode 100644 index 0000000..36c9a5c --- /dev/null +++ b/minecraft/config/iceandfire/ice_dragon_cave_biomes.json @@ -0,0 +1,32 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_cold/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:shattered_glacier" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:frosted_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:frosted_coniferous_forest" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/ice_dragon_skeleton_biomes.json b/minecraft/config/iceandfire/ice_dragon_skeleton_biomes.json new file mode 100644 index 0000000..1691831 --- /dev/null +++ b/minecraft/config/iceandfire/ice_dragon_skeleton_biomes.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_wet/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_lowlands" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/jungle_myrmex_biomes.json b/minecraft/config/iceandfire/jungle_myrmex_biomes.json new file mode 100644 index 0000000..96c760c --- /dev/null +++ b/minecraft/config/iceandfire/jungle_myrmex_biomes.json @@ -0,0 +1,44 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:guiana_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:temperate_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:tropical_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:jacaranda_forest" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/lightning_dragon_biomes.json b/minecraft/config/iceandfire/lightning_dragon_biomes.json new file mode 100644 index 0000000..656c460 --- /dev/null +++ b/minecraft/config/iceandfire/lightning_dragon_biomes.json @@ -0,0 +1,94 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ashen_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:guiana_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:temperate_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:tropical_rainforest" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:jacaranda_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:sierra_badlands" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/lightning_dragon_cave_biomes.json b/minecraft/config/iceandfire/lightning_dragon_cave_biomes.json new file mode 100644 index 0000000..656c460 --- /dev/null +++ b/minecraft/config/iceandfire/lightning_dragon_cave_biomes.json @@ -0,0 +1,94 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_jungle" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_badlands" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:ashen_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:guiana_shield" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:temperate_rainforest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:tropical_rainforest" + }, + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:jacaranda_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:sierra_badlands" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/lightning_dragon_skeleton_biomes.json b/minecraft/config/iceandfire/lightning_dragon_skeleton_biomes.json new file mode 100644 index 0000000..c046403 --- /dev/null +++ b/minecraft/config/iceandfire/lightning_dragon_skeleton_biomes.json @@ -0,0 +1,51 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:baobab_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:araucaria_savanna" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/lightning_lily_biomes.json b/minecraft/config/iceandfire/lightning_lily_biomes.json new file mode 100644 index 0000000..c046403 --- /dev/null +++ b/minecraft/config/iceandfire/lightning_lily_biomes.json @@ -0,0 +1,51 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:fractured_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_badlands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:savanna_slopes" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:baobab_savanna" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:araucaria_savanna" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/mausoleum_biomes.json b/minecraft/config/iceandfire/mausoleum_biomes.json new file mode 100644 index 0000000..c45baf8 --- /dev/null +++ b/minecraft/config/iceandfire/mausoleum_biomes.json @@ -0,0 +1,40 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_wet/overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_water" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_lowlands" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/mountain_troll_biomes.json b/minecraft/config/iceandfire/mountain_troll_biomes.json new file mode 100644 index 0000000..c60d23f --- /dev/null +++ b/minecraft/config/iceandfire/mountain_troll_biomes.json @@ -0,0 +1,28 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_mountain" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_hill" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/ore_gen_biomes.json b/minecraft/config/iceandfire/ore_gen_biomes.json new file mode 100644 index 0000000..d45a798 --- /dev/null +++ b/minecraft/config/iceandfire/ore_gen_biomes.json @@ -0,0 +1,11 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/pixie_village_biomes.json b/minecraft/config/iceandfire/pixie_village_biomes.json new file mode 100644 index 0000000..2337da7 --- /dev/null +++ b/minecraft/config/iceandfire/pixie_village_biomes.json @@ -0,0 +1,115 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_rare" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_magical" + } + ], + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_dense" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_forest" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_mountain" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_hill" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_wet/overworld" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_hot" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_cold" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_dry" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "minecraft:is_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:siberian_taiga" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:skylands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:mirage_isles" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:amaranth_fields" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:skyris_vale" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:rainbow_beach" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/sapphire_gen_biomes.json b/minecraft/config/iceandfire/sapphire_gen_biomes.json new file mode 100644 index 0000000..1691831 --- /dev/null +++ b/minecraft/config/iceandfire/sapphire_gen_biomes.json @@ -0,0 +1,35 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + }, + { + "type": "BIOME_TAG", + "negate": true, + "value": "forge:is_wet/overworld" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_forest" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:wintry_lowlands" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/sea_serpent_biomes.json b/minecraft/config/iceandfire/sea_serpent_biomes.json new file mode 100644 index 0000000..a17f247 --- /dev/null +++ b/minecraft/config/iceandfire/sea_serpent_biomes.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/siren_biomes.json b/minecraft/config/iceandfire/siren_biomes.json new file mode 100644 index 0000000..a17f247 --- /dev/null +++ b/minecraft/config/iceandfire/siren_biomes.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_ocean" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/snowy_troll_biomes.json b/minecraft/config/iceandfire/snowy_troll_biomes.json new file mode 100644 index 0000000..eb9efae --- /dev/null +++ b/minecraft/config/iceandfire/snowy_troll_biomes.json @@ -0,0 +1,16 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_snowy" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/stymphalian_bird_biomes.json b/minecraft/config/iceandfire/stymphalian_bird_biomes.json new file mode 100644 index 0000000..480bff0 --- /dev/null +++ b/minecraft/config/iceandfire/stymphalian_bird_biomes.json @@ -0,0 +1,44 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:orchid_swamp" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:crag_gardens" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:cypress_swamplands" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:bayou" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/iceandfire/wandering_cyclops_biomes.json b/minecraft/config/iceandfire/wandering_cyclops_biomes.json new file mode 100644 index 0000000..3c758c9 --- /dev/null +++ b/minecraft/config/iceandfire/wandering_cyclops_biomes.json @@ -0,0 +1,37 @@ +{ + "biomes": [ + [ + { + "type": "BIOME_TAG", + "negate": false, + "value": "minecraft:is_overworld" + }, + { + "type": "BIOME_TAG", + "negate": false, + "value": "forge:is_plains" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "terralith:steppe" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:firecracker_shrubland" + } + ], + [ + { + "type": "REGISTRY_NAME", + "negate": false, + "value": "byg:autumnal_valley" + } + ] + ] +} \ No newline at end of file diff --git a/minecraft/config/icterine.yml b/minecraft/config/icterine.yml new file mode 100644 index 0000000..8783671 --- /dev/null +++ b/minecraft/config/icterine.yml @@ -0,0 +1,36 @@ +# Report issues on Github https://github.com/Mephodio/Icterine/issues +# Discuss, get help or report issues on Discord https://discord.gg/2SpfwvM7dm + +# Enables debug logs +# Will worsen your performance, please do not enable if you don't need it! +debug_mode: false + +# Cancels advancement check when stack becomes empty (for example, when player throws out the whole stack). +# Injects into InventoryChangeTrigger. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +ignore_triggers_for_emptied_stacks: true + +# Cancels advancement check when stack size decreases (for example, when player throws out one item from stack). +# Injects into InventoryChangeTrigger, ItemStack, AbstractContainerMenu. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +ignore_triggers_for_decreased_stacks: true + +# Optimizes advancement check for advancements that require multiple items (for example, "Cover me in debris" requires full netherite armor set). +# Injects into InventoryChangeTriggerInstance. +# Disable if you have mixin conflict or some advancements became unobtainable (and also report on github/discord!). +optimize_multiple_predicate_trigger: true + +# Disables advancement check when you just open any container (for example, chest or backpack). +# Injects into AbstractContainerMenu. +# Disable if you have mixin conflict or problems with any container (and also report on github/discord!). +initialize_inventory_last_slots: true + +# Skips advancement check when you pick up or otherwise increase stack size if this change doesn't pass any advancement threshold. +# For example, dirt stack size increased from 52 to 53, but there's no advancement for getting 53 dirt in your modpack. +optimize_triggers_for_increased_stacks: true + +# When checking each item criterion, first check the count requirement and see if it was fulfilled before. +# For example, there is advancement for getting stone block, any amount. You have 52 dirt, and you pick up one more. There is +# no way you can the get stone advancement from this action, because it requires any amount of item, and you already had some. +# Another example: there is no way you can get the advancement for 64 emerald blocks if you don't have dirt and you pick up 5 dirt. +check_count_before_item_predicate_match: true \ No newline at end of file diff --git a/minecraft/config/ifeu/machine.toml b/minecraft/config/ifeu/machine.toml new file mode 100644 index 0000000..4d78a62 --- /dev/null +++ b/minecraft/config/ifeu/machine.toml @@ -0,0 +1,135 @@ + +[MachineConfig] + + [MachineConfig.WeatherControllerConfig] + #Amount of Power Consumed per Tick - Default: [30FE] + powerPerTick = 30 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineConfig.TimeControllerConfig] + #Amount of Power Consumed per Tick - Default: [30FE] + powerPerTick = 30 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineConfig.SimulatedHydroponicBedConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [600 (30s)] + maxProgress = 600 + #Amount of Power Consumed per Operation - Default: [3000FE] + powerPerOperation = 3000 + #Max Stored Power [FE] - Default: [20000 FE] + maxStoredPower = 20000 + #Chance to increase the executions of the current processor, 0.1 = 10% chance - Default: [0.1] + chanceToIncreaseExecutions = 0.1 + #Use the same blacklist as for HydroponicBed - Default: [true] + useSameList = true + #BlackList for SimulatedHydroponicBed + blackList = [] + + [MachineConfig.RuleControllerConfig] + #Amount of Power Consumed per Tick - Default: [30FE] + powerPerTick = 30 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineConfig.PlatformBuilderConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [2 (0.1s)] + maxProgress = 2 + #Amount of Power Consumed per Operation - Default: [10FE] - This is Calculated as [VALUE * (amount + 1)] + powerPerOperation = 500 + #Max Stored Power [FE] - Default: [20000 FE] + maxStoredPower = 20000 + #Max Land Range [int] - Default: [18 blocks] + maxLandRange = 18 + #Max Frame Bounds [int] - Default: [9 blocks] + maxFrameBounds = 9 + + [MachineConfig.InfuserConfig] + #Amount of Power Consumed per Tick - Default: [90FE] + powerPerTick = 90 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Input] - Default: [8000mB] + maxInputTankSize = 8000 + + [MachineConfig.FluidTransferConfig] + #Max Amount of Stored Fluid - Default: [8000mB] + maxTankSize = 8000 + #Max Amount of transfer Fluid in Progresses - Default: [1000mB] + baseMaxTransfer = 1000 + #Default Max Connect Distance of transfer Fluid - Default: [8 block] + defaultMaxConnectDistance = 8 + + [MachineConfig.FluidCraftingTableConfig] + #Max Amount of Stored Fluid [Input] - Default: [10000mB] + maxInputTankSize = 10000 + + [MachineConfig.DragonStarGeneratorConfig] + #Burn Time in Ticks [20 Ticks per Second] - Default: [1200 (60s)] + maxProgress = 1200 + #Amount of Power Produced per Tick - Default: [40000FE] + powerPerTick = 40000 + #Max Stored Power [FE] - Default: [800000000 FE] + maxStoredPower = 800000000 + #Amount of FE/t extracted from the Dragon Star Generator + extractionRate = 1600000 + + [MachineConfig.DragonGeneratorConfig] + #Burn Time in Ticks [20 Ticks per Second] - Default: [2400 (120s)] + maxProgress = 2400 + #Amount of Power Produced per Tick - Default: [4000FE] + powerPerTick = 4000 + #Max Stored Power [FE] - Default: [800000 FE] + maxStoredPower = 8000000 + #Amount of FE/t extracted from the Dragon Generator + extractionRate = 160000 + #Max Amount of Stored Fluid [Input] - Default: [8000mB] + maxInputTankSize = 8000 + + [MachineConfig.BlackHoleCapacitorConfig] + #Pity Max Stored Power [FE] - Default: [100000 FE] + pity = 100000 + #Simple Max Stored Power [FE] - Default: [500000 FE] + simple = 500000 + #Advanced Max Stored Power [FE] - Default: [5000000 FE] + advanced = 5000000 + #Supreme Max Stored Power [FE] - Default: [50000000 FE] + supreme = 50000000 + + [MachineConfig.BigDissolutionChamberConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [60 (3s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [180FE] + powerPerTick = 180 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Input] - Default: [8000mB] + maxInputTankSize = 64000 + #Max Amount of Stored Fluid [Output] - Default: [8000mB] + maxOutputTankSize = 64000 + #Default Max Thread - Default: [8] + maxThread = 8 + #Item input rules, 0: The maximum number of items in the slot is the corresponding number of items in the slot when locked, 1: The maximum number of items in the slot is the machine thread - Default: [1] + inputRule = 1 + + [MachineConfig.ArcaneDragonForgingConfig] + #Amount of Power Consumed per Tick - Default: [90FE] + powerPerTick = 90 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Input] - Default: [8000mB] + maxInputTankSize = 8000 + #Max Amount of Stored Fluid [Output] - Default: [8000mB] + maxOutputTankSize = 8000 + + [MachineConfig.PrecisionCraftingTableConfig] + #Amount of Power Consumed per Tick - Default: [90FE] + powerPerTick = 90 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineConfig.HydroponicBedConfig] + #BlackList for HydroponicBed + blackList = [] + diff --git a/minecraft/config/ifeu/misc.toml b/minecraft/config/ifeu/misc.toml new file mode 100644 index 0000000..1947bf7 --- /dev/null +++ b/minecraft/config/ifeu/misc.toml @@ -0,0 +1,23 @@ + +[MiscConfig] + + [MiscConfig.LiquidSculkMatterConfig] + #The probability of this fluid emitting WARDEN_AMBIENT sound per tick - Default: [0.1%] + ProbabilityOfProducingSound = 0.001 + #The probability of this fluid producing particle effects per tick - Default: [20%] + ProbabilityOfParticleGeneration = 0.2 + #Is it allowed for the fluid to emit WARDEN_AMBIENT sound - Default: [true] + isFluidProduceSound = true + #Is it allowed for the fluid to produce SCULK_CHARGE_POP particles - Default: [true] + isFluidGenerateParticles = true + + [MiscConfig.LiquidDragonBreathConfig] + #The probability of this fluid emitting ENDER_DRAGON_AMBIENT sound per tick - Default: [0.1%] + ProbabilityOfProducingSound = 0.001 + #The probability of this fluid producing particle effects per tick - Default: [20%] + ProbabilityOfParticleGeneration = 0.2 + #Is it allowed for the fluid to emit ENDER-DRAGON_AMBIENT sound - Default: [true] + isFluidProduceSound = true + #Is it allowed for the fluid to produce DRAGON_BREATH particles - Default: [true] + isFluidGenerateParticles = true + diff --git a/minecraft/config/illagerinvasion-server.toml b/minecraft/config/illagerinvasion-server.toml new file mode 100644 index 0000000..2423d98 --- /dev/null +++ b/minecraft/config/illagerinvasion-server.toml @@ -0,0 +1,51 @@ + +[alchemist] + #Does this illager take part in village raids. + participate_in_raids = true + +[sorcerer] + #Does this illager take part in village raids. + participate_in_raids = true + +[illusioner] + #Does this illager take part in village raids. + participate_in_raids = true + +[basher] + #Does this illager take part in village raids. + participate_in_raids = true + +[necromancer] + #Does this illager take part in village raids. + participate_in_raids = true + +[inquisitor] + #Does this illager take part in village raids. + participate_in_raids = true + +[provoker] + #Does this illager take part in village raids. + participate_in_raids = true + +[archivist] + #Does this illager take part in village raids. + participate_in_raids = true + +[marauder] + #Does this illager take part in village raids. + participate_in_raids = true + +[general] + #Will platinum armor trims provide special effects to the player depending on the piece of armor they are applied to. + #Helmet: More experience from killing mobs. + #Chestplate: Faster block breaking speed when using an incorrect or no tool. + #Leggings: Slower hunger drain when performaing actions. + #Boots: Farmland can no longer be trampled. + platinum_trim_effects = true + +[invoker] + #Show a yellow boss bar when fighting an invoker. + invoker_boss_bar = true + #Does this illager take part in village raids. + participate_in_raids = false + diff --git a/minecraft/config/illuminations.properties b/minecraft/config/illuminations.properties new file mode 100644 index 0000000..946f7d1 --- /dev/null +++ b/minecraft/config/illuminations.properties @@ -0,0 +1,16 @@ +#Fri Feb 27 21:44:56 EST 2026 +planktons-spawn-rate=MEDIUM +density=100 +firefly-rainbow=false +will-o-wisps-spawn-rate=MEDIUM +view-auras-fp=false +firefly-spawn-underground=false +debug-mode=false +display-cosmetics=true +glowworms-spawn-rate=HIGH +chorus-petal-spawn-multiplier=1 +fireflies-spawn-rate=HIGH +eyes-in-the-dark-spawn-rate=MEDIUM +halloween-features=ENABLE +firefly-spawn-always=false +firefly-white-alpha=100 diff --git a/minecraft/config/immersive_optimization.json b/minecraft/config/immersive_optimization.json index af22e84..d6a236a 100644 --- a/minecraft/config/immersive_optimization.json +++ b/minecraft/config/immersive_optimization.json @@ -1,7 +1,7 @@ { - "_documentation": "https://github.com/Luke100000/ImmersiveOptimization/wiki", + "_documentation": "https://github.com/Luke100000/ImmersiveOptimization/blob/1.20.1/common/src/main/java/net/conczin/immersive_optimization/config/Config.java", "enableEntities": true, - "enableBlockEntities": false, + "enableBlockEntities": true, "optimizeForceLoadedChunks": false, "enableDistanceCulling": true, "enableTrackingCulling": true, @@ -21,13 +21,16 @@ "minecraft:the_end": true }, "entities": { - "minecraft:ender_pearl": false, "fromanotherworld:starship": false, + "minecolonies:citizen": false, "minecraft:player": false, - "valkyrienskies": false, "minecraft:arrow": false, - "create": false, - "minecraft:ender_dragon": false + "minecraft:ender_dragon": false, + "minecraft:wither": false, + "cataclysm:netherite_monstrosity": false, + "cataclysm:ignis": false, + "cataclysm:the_harbinger": false, + "cataclysm:the_leviathan": false }, "version": 2, "name": "immersive_optimization" diff --git a/minecraft/config/immersiveengineering-client.toml b/minecraft/config/immersiveengineering-client.toml index c294554..497456c 100644 --- a/minecraft/config/immersiveengineering-client.toml +++ b/minecraft/config/immersiveengineering-client.toml @@ -1,48 +1,48 @@ -#Disables most lighting code for certain models that are rendered dynamically (TESR). May improve FPS. -#Affects turrets and garden cloches -disableFancyTESR = false -#Show the text overlay for various blocks, such as the configuration of capacitors or pumps -showTextOverlay = true -#Set the GUI scale of the Engineer's Manual. This uses the same numbers as Vanilla's GUI Scale and is therefor limited to the maximum value available ingame. -#Range: 1 ~ 32 -manualGuiScale = 4 -#Set this to true if you suffer from bad eyesight. The Engineer's manual will be switched to a bold and darker text to improve readability. -badEyesight = false -#Set this to false to change fluid recipes in the manual to use decimals on buckets instead of fractions -fluidFractions = true -#Controls if item tooltips should contain the tags names of items. These tooltips are only visible in advanced tooltip mode (F3+H) -tagTooltips = true -#Increase the distance at which certain TileEntities (specifically windmills) are still visible. This is a modifier, so set it to 1 for default render distance, to 2 for doubled distance and so on. -#Range: 0.0 ~ 1.7976931348623157E308 -increasedTileRenderdistance = 1.5 -#Set this to false to hide the update news in the manual -showUpdateNews = true -#Allows revolvers and other IE items to look properly held in 3rd person. This uses a coremod. Can be disabled in case of conflicts with other animation mods. -fancyItemHolding = true -#Set to false to disable the stencil buffer. This may be necessary on older GPUs. -stencilBufferEnabled = true -#A list of sounds that should not be muffled by the Ear Defenders. Adding to this list requires knowledge of the correct sound resource names. -earDefenders_SoundBlacklist = [] -#Use VBOs to render certain blocks. This is significantly faster than the usual rendering, -#but may not work correctly with visual effects from other mods -enableVBO = true - -#Options to set the RGB color of all IE wire types -[wire_colors] - #Range: > -2147483648 - copper = 11758655 - #Range: > -2147483648 - electrum = 15573061 - #Range: > -2147483648 - steel = 7303023 - #Range: > -2147483648 - structure_rope = 9862765 - #Range: > -2147483648 - structure_steel = 7303023 - #Range: > -2147483648 - redstone = 16723759 - #Range: > -2147483648 - copper_insulated = 16445918 - #Range: > -2147483648 - electrum_insulated = 10323322 - +#Disables most lighting code for certain models that are rendered dynamically (TESR). May improve FPS. +#Affects turrets and garden cloches +disableFancyTESR = false +#Show the text overlay for various blocks, such as the configuration of capacitors or pumps +showTextOverlay = true +#Set the GUI scale of the Engineer's Manual. This uses the same numbers as Vanilla's GUI Scale and is therefor limited to the maximum value available ingame. +#Range: 1 ~ 32 +manualGuiScale = 4 +#Set this to true if you suffer from bad eyesight. The Engineer's manual will be switched to a bold and darker text to improve readability. +badEyesight = false +#Set this to false to change fluid recipes in the manual to use decimals on buckets instead of fractions +fluidFractions = true +#Controls if item tooltips should contain the tags names of items. These tooltips are only visible in advanced tooltip mode (F3+H) +tagTooltips = true +#Increase the distance at which certain TileEntities (specifically windmills) are still visible. This is a modifier, so set it to 1 for default render distance, to 2 for doubled distance and so on. +#Range: 0.0 ~ 1.7976931348623157E308 +increasedTileRenderdistance = 1.5 +#Set this to false to hide the update news in the manual +showUpdateNews = true +#Allows revolvers and other IE items to look properly held in 3rd person. This uses a coremod. Can be disabled in case of conflicts with other animation mods. +fancyItemHolding = true +#Set to false to disable the stencil buffer. This may be necessary on older GPUs. +stencilBufferEnabled = true +#A list of sounds that should not be muffled by the Ear Defenders. Adding to this list requires knowledge of the correct sound resource names. +earDefenders_SoundBlacklist = [] +#Use VBOs to render certain blocks. This is significantly faster than the usual rendering, +#but may not work correctly with visual effects from other mods +enableVBO = true + +#Options to set the RGB color of all IE wire types +[wire_colors] + #Range: > -2147483648 + copper = 11758655 + #Range: > -2147483648 + electrum = 15573061 + #Range: > -2147483648 + steel = 7303023 + #Range: > -2147483648 + structure_rope = 9862765 + #Range: > -2147483648 + structure_steel = 7303023 + #Range: > -2147483648 + redstone = 16723759 + #Range: > -2147483648 + copper_insulated = 16445918 + #Range: > -2147483648 + electrum_insulated = 10323322 + diff --git a/minecraft/config/immersiveengineering-common.toml b/minecraft/config/immersiveengineering-common.toml index 16f02e0..28b627d 100644 --- a/minecraft/config/immersiveengineering-common.toml +++ b/minecraft/config/immersiveengineering-common.toml @@ -1,26 +1,26 @@ -#IMPORTANT NOTICE: -#THIS IS ONLY THE COMMON CONFIG. It does not contain all the values adjustable for IE. -#All modifiers for machines, all ore gen, the retrogen features and most other adjustable values have been moved to immersiveengineering-server.toml. -#That file is PER WORLD, meaning you have to go into 'saves//serverconfig' to adjust it. Those changes will then only apply for THAT WORLD. -#You can then take that config file and put it in the 'defaultconfigs' folder to make it apply automatically to all NEW worlds you generate FROM THERE ON. -#This may appear confusing to many of you, but it is a new sensible way to handle configuration, because the server configuration is synced when playing multiplayer. -importantInfo = true -#A list of preferred Mod IDs that results of IE processes should stem from, aka which mod you want the copper to come from. -#This affects the ores dug by the excavator, as well as those crushing recipes that don't have associated IE items. This list is in oreder of priority. -preferredOres = ["immersiveengineering", "minecraft"] - -[debug] - - [debug.wires] - #Enable detailed logging for the wire network. This can be useful for developers to track down issues related to wires. - enableWireLogger = false - #Run sanity checks on the wire network after every interaction. This will cause a decent amount of lag and a lot of log spam if the wire network isn't fully intact. Only enable when asked to by an IE developer. - validateNets = false - -#A list of all mods that IE has integrated compatability for -#Setting any of these to false disables the respective compat -[compat] - theoneprobe = true - curios = true - computercraft = true - +#IMPORTANT NOTICE: +#THIS IS ONLY THE COMMON CONFIG. It does not contain all the values adjustable for IE. +#All modifiers for machines, all ore gen, the retrogen features and most other adjustable values have been moved to immersiveengineering-server.toml. +#That file is PER WORLD, meaning you have to go into 'saves//serverconfig' to adjust it. Those changes will then only apply for THAT WORLD. +#You can then take that config file and put it in the 'defaultconfigs' folder to make it apply automatically to all NEW worlds you generate FROM THERE ON. +#This may appear confusing to many of you, but it is a new sensible way to handle configuration, because the server configuration is synced when playing multiplayer. +importantInfo = true +#A list of preferred Mod IDs that results of IE processes should stem from, aka which mod you want the copper to come from. +#This affects the ores dug by the excavator, as well as those crushing recipes that don't have associated IE items. This list is in oreder of priority. +preferredOres = ["immersiveengineering", "minecraft"] + +[debug] + + [debug.wires] + #Enable detailed logging for the wire network. This can be useful for developers to track down issues related to wires. + enableWireLogger = false + #Run sanity checks on the wire network after every interaction. This will cause a decent amount of lag and a lot of log spam if the wire network isn't fully intact. Only enable when asked to by an IE developer. + validateNets = false + +#A list of all mods that IE has integrated compatability for +#Setting any of these to false disables the respective compat +[compat] + theoneprobe = true + curios = true + computercraft = true + diff --git a/minecraft/config/immersivelanterns-client.toml b/minecraft/config/immersivelanterns-client.toml new file mode 100644 index 0000000..dd95a06 --- /dev/null +++ b/minecraft/config/immersivelanterns-client.toml @@ -0,0 +1,18 @@ + +#. +#Client Settings +[client] + #. + #Whether lantern accessories should switch to the left side or not. + "Left-Handed Lanterns" = false + #. + #Whether lantern accessories should switch to the back of the player or not. + "Back Lanterns" = false + #. + #No performance impact, just cosmetic. + "Enable Lantern Swinging Physics" = true + #. + #How affected by in-world forces lantern physics should be. Default 1f + #Range: 0.10000000149011612 ~ 10.0 + "Lantern Bounciness" = 1.0 + diff --git a/minecraft/config/immersivemessages-client.toml b/minecraft/config/immersivemessages-client.toml index 57e244c..bb71691 100644 --- a/minecraft/config/immersivemessages-client.toml +++ b/minecraft/config/immersivemessages-client.toml @@ -1,9 +1,9 @@ - -#. -#Client-only settings - If you're looking for general settings, look inside your world's serverconfig folder! -[client] - #. - #The time to wait before showing the next message in a list. - #Range: 0.0 ~ 3.4028234663852886E38 - timeBetweenMessages = 0.5 - + +#. +#Client-only settings - If you're looking for general settings, look inside your world's serverconfig folder! +[client] + #. + #The time to wait before showing the next message in a list. + #Range: 0.0 ~ 3.4028234663852886E38 + timeBetweenMessages = 0.5 + diff --git a/minecraft/config/immersivetips-client.toml b/minecraft/config/immersivetips-client.toml new file mode 100644 index 0000000..a1c92be --- /dev/null +++ b/minecraft/config/immersivetips-client.toml @@ -0,0 +1,25 @@ +#. +#Sets screens to manually enable tips on. +"Whitelisted Screens" = [] +#. +#Sets screens to manually disable tips on. +"Blacklisted Screens" = [] +#. +#Loads included default tips from the legacy format. +"Enable Legacy Tips" = true +#. +#Loads remote tips from GitHub for the loading screen. +"Enable Remote Loading Screen Tips" = true +#. +#Loads remote item tooltips from GitHub. +"Enable Remote Item Tips" = true +#. +#If disabled, will only show on the pause and death screens. +"Enable On Loading Screens" = true +#. +#If disabled, will only show on the loading and death screens. +"Enable On Pause Screen" = true +#. +#If disabled, will only show on the pause and loading screens. +"Enable On Death Screen" = true + diff --git a/minecraft/config/incontrol/areas.json b/minecraft/config/incontrol/areas.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/areas.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/breakevents.json b/minecraft/config/incontrol/breakevents.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/breakevents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/effects.json b/minecraft/config/incontrol/effects.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/effects.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/events.json b/minecraft/config/incontrol/events.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/events.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/experience.json b/minecraft/config/incontrol/experience.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/experience.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/leftclicks.json b/minecraft/config/incontrol/leftclicks.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/leftclicks.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/loot.json b/minecraft/config/incontrol/loot.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/loot.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/phases.json b/minecraft/config/incontrol/phases.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/phases.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/placeevents.json b/minecraft/config/incontrol/placeevents.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/placeevents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/rightclicks.json b/minecraft/config/incontrol/rightclicks.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/rightclicks.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/spawn.json b/minecraft/config/incontrol/spawn.json new file mode 100644 index 0000000..497108b --- /dev/null +++ b/minecraft/config/incontrol/spawn.json @@ -0,0 +1,10 @@ +[{ + + "mob": "aquaculture:catfish", + "result": "deny" + }, + { + "mob": "undead_revamp2:clogger", + "result": "deny" + } +] \ No newline at end of file diff --git a/minecraft/config/incontrol/spawner.json b/minecraft/config/incontrol/spawner.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/spawner.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/incontrol/summonaid.json b/minecraft/config/incontrol/summonaid.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/incontrol/summonaid.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/industrialforegoing/machine-agriculture-husbandry.toml b/minecraft/config/industrialforegoing/machine-agriculture-husbandry.toml new file mode 100644 index 0000000..6857801 --- /dev/null +++ b/minecraft/config/industrialforegoing/machine-agriculture-husbandry.toml @@ -0,0 +1,127 @@ + +[MachineAgricultureHusbandryConfig] + + [MachineAgricultureHusbandryConfig.AnimalFeederConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Operation - Default: [400FE] + powerPerOperation = 400 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #How many animals there need to be in the area to stop the machine from working + maxAnimalInTheArea = 35 + + [MachineAgricultureHusbandryConfig.MobCrusherConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [50 (2.5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerOperation = 50 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Essence [mb] - Default: [32000 mb] + tankSize = 32000 + #Attack Damage for blacklisted entities - Default: [75] + attackDamage = 75 + + [MachineAgricultureHusbandryConfig.SewageComposterConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid - Default: [8000mB] + maxTankSize = 8000 + + [MachineAgricultureHusbandryConfig.PlantGathererConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 40 + #Amount of Power Consumer per Operation - Default: [400FE] + powerPerOperation = 400 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid for 'Sludge Tank' - Default: [8000mB] + maxSludgeTankSize = 8000 + #Max Amount of Stored Fluid for 'EtherTank' - Default: [1000mB] + maxEtherTankSize = 1000 + + [MachineAgricultureHusbandryConfig.AnimalRancherConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Operation - Default: [400FE] + powerPerOperation = 400 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid - Default: [8000mB] + maxTankSize = 8000 + + [MachineAgricultureHusbandryConfig.PlantFertilizerConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 50 + #Amount of Power Consumer per Operation - Default: [400FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineAgricultureHusbandryConfig.SlaughterFactoryConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Operation - Default: [400FE] + powerPerOperation = 400 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid - Default: [8000mB] + maxMeatTankSize = 8000 + #Max Amount of Stored Fluid - Default: [8000mB] + maxPinkSlimeTankSize = 8000 + + [MachineAgricultureHusbandryConfig.PlantSowerConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 40 + #Amount of Power Consumer per Operation - Default: [1000FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineAgricultureHusbandryConfig.MobDuplicatorConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 62 + #Amount of Power Consumed per Operation - Default: [400FE] + powerPerOperation = 5000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 50000 + #Max Essence [mb] - Default: [8000 mb] + tankSize = 8000 + #Exact Copy to spawn - Default: [false] + exactCopy = false + #Essence needed to spawn [Mob health*EssenceNeeded] - Default: [12] + essenceNeeded = 12 + + [MachineAgricultureHusbandryConfig.WitherBuilderConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [40 (5s)] + maxProgress = 40 + #Amount of Power Consumed per Operation - Default: [500FE] + powerPerOperation = 20000 + #Max Stored Power [FE] - Default: [70000 FE] + maxStoredPower = 70000 + + [MachineAgricultureHusbandryConfig.AnimalBabySeparatorConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Operation - Default: [400FE] + powerPerOperation = 400 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineAgricultureHusbandryConfig.SewerConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Operation - Default: [10FE] - This is Calculated as [VALUE * (amount + 1)] + powerPerOperation = 10 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid - Default: [8000mB] + maxSewageTankSize = 8000 + #Max Amount of Stored Fluid - Default: [8000mB] + maxEssenceTankSize = 8000 + diff --git a/minecraft/config/industrialforegoing/machine-core.toml b/minecraft/config/industrialforegoing/machine-core.toml new file mode 100644 index 0000000..245177a --- /dev/null +++ b/minecraft/config/industrialforegoing/machine-core.toml @@ -0,0 +1,37 @@ + +[MachineCoreConfig] + + [MachineCoreConfig.LatexProcessingUnitConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerTick = 20 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Latex] - Default: [8000mB] + maxLatexTankSize = 16000 + #Max Amount of Stored Fluid [Water] - Default: [8000mB] + maxWaterTankSize = 16000 + + [MachineCoreConfig.FluidExtractorConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Operation - Default: [10FE] - This is Calculated as [VALUE * (amount + 1)] + powerPerOperation = 500 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Latex] - Default: [8000mB] + maxLatexTankSize = 1000 + + [MachineCoreConfig.DissolutionChamberConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [60FE] + powerPerTick = 90 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Input] - Default: [8000mB] + maxInputTankSize = 8000 + #Max Amount of Stored Fluid [Output] - Default: [8000mB] + maxOutputTankSize = 16000 + diff --git a/minecraft/config/industrialforegoing/machine-generator.toml b/minecraft/config/industrialforegoing/machine-generator.toml new file mode 100644 index 0000000..8c43a94 --- /dev/null +++ b/minecraft/config/industrialforegoing/machine-generator.toml @@ -0,0 +1,33 @@ + +[MachineGeneratorConfig] + + [MachineGeneratorConfig.BiofuelGeneratorConfig] + #Burn Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Produced per Tick - Default: [400FE] + powerPerTick = 160 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 1000000 + #Amount of FE/t extracted from the Biofuel Generator + extractionRate = 500 + #Max Amount of Stored Fluid [Biofuel] - Default: [8000mB] + maxBiofuelTankSize = 4000 + + [MachineGeneratorConfig.BioReactorConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerOperation = 400 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + maxWaterTankStorage = 16000 + maxBioFuelTankStorage = 16000 + + [MachineGeneratorConfig.PitifulGeneratorConfig] + #Amount of Power Produced per Tick - Default: [400FE] + powerPerTick = 30 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 100000 + #Amount of FE/t extracted from the Pitiful Generator + extractionRate = 1000 + diff --git a/minecraft/config/industrialforegoing/machine-misc.toml b/minecraft/config/industrialforegoing/machine-misc.toml new file mode 100644 index 0000000..10f3041 --- /dev/null +++ b/minecraft/config/industrialforegoing/machine-misc.toml @@ -0,0 +1,53 @@ + +[MachineMiscConfig] + + [MachineMiscConfig.EnchantmentExtractorConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [50 (2.5s)] + maxProgress = 50 + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Essence [mb] - Default: [32000 mb] + tankSize = 32000 + + [MachineMiscConfig.StasisChamberConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [50 (5s)] + maxProgress = 50 + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #If true, the boss bar of an entity with the AI disable won't be rendered + disableBossBars = true + + [MachineMiscConfig.EnchantmentSorterConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [50 (2.5s)] + maxProgress = 50 + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineMiscConfig.EnchantmentApplicatorConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [50 (2.5s)] + maxProgress = 50 + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Essence [mb] - Default: [64000 mb] + tankSize = 64000 + #Ignore max level for enchanting + ignoreEnchantMaxLevels = true + + [MachineMiscConfig.EnchantmentFactoryConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [50 (2.5s)] + maxProgress = 50 + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Essence [mb] - Default: [32000 mb] + tankSize = 32000 + diff --git a/minecraft/config/industrialforegoing/machine-resource-production.toml b/minecraft/config/industrialforegoing/machine-resource-production.toml new file mode 100644 index 0000000..bb52c60 --- /dev/null +++ b/minecraft/config/industrialforegoing/machine-resource-production.toml @@ -0,0 +1,179 @@ + +[MachineResourceProductionConfig] + + [MachineResourceProductionConfig.WashingFactoryConfig] + #Progress bar size [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [60FE] + powerPerTick = 60 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Meat] - Default: [8000mB] + maxTankSize = 8000 + #Max Amount of Output Fluid - Default: [8000mB] + maxOutputSize = 8000 + + [MachineResourceProductionConfig.FermentationStationConfig] + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Amount of ticks for 2x production - Default: [20 * 5 FE] + ticksFor2XProduction = 100 + #Amount of ticks for 3x production - Default: [20 * 45 FE] + ticksFor3XProduction = 900 + #Amount of ticks for 4x production - Default: [20 * 60 * 2 FE] + ticksFor4XProduction = 2400 + #Amount of ticks for 5x production - Default: [20 * 60 * 5 FE] + ticksFor5XProduction = 6000 + + [MachineResourceProductionConfig.SporeRecreatorConfig] + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Water] - Default: [8000mB] + maxWaterTankSize = 1000 + + [MachineResourceProductionConfig.BlockPlacerConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineResourceProductionConfig.FluidSievingMachineConfig] + #Progress bar size [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid - Default: [8000mB] + maxTankSize = 8000 + + [MachineResourceProductionConfig.FluidPlacerConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Input] - Default: [8000mB] + maxInputTankSize = 16000 + + [MachineResourceProductionConfig.MechanicalDirtConfig] + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Meat] - Default: [8000mB] + maxMeatTankSize = 4000 + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + + [MachineResourceProductionConfig.LaserDrillConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [50 (2.5s)] + maxProgress = 50 + #Amount of Power Consumed per Tick - Default: [1000FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineResourceProductionConfig.HydroponicBedConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Operation - Default: [1000FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineResourceProductionConfig.WaterCondensatorConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Water] - Default: [8000mB] + maxWaterTankSize = 16000 + + [MachineResourceProductionConfig.SludgeRefinerConfig] + #Amount of Power Consumed per Tick - Default: [40FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Sludge] - Default: [8000mB] + maxSludgeTankSize = 8000 + + [MachineResourceProductionConfig.OreLaserBaseConfig] + #Max progress of the machine + maxProgress = 100 + #How much weight of an item the catalyst will increase + catalystModifier = 8 + + [MachineResourceProductionConfig.DyeMixerConfig] + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerTick = 30 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineResourceProductionConfig.FluidLaserBaseConfig] + #Max progress of the machine + maxProgress = 20 + + [MachineResourceProductionConfig.MaterialStoneWorkFactoryConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [60 (3s)] + maxProgress = 60 + #Amount of Power Consumed per Tick - Default: [60FE] + powerPerTick = 60 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Water] - Default: [2000mB] + maxWaterTankSize = 2000 + #Max Amount of Stored Fluid [Lava] - Default: [2000mB] + maxLavaTankSize = 2000 + + [MachineResourceProductionConfig.BlockBreakerConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + + [MachineResourceProductionConfig.ResourcefulFurnaceConfig] + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerTick = 40 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Essence] - Default: [8000mB] + maxEssenceTankSize = 16000 + + [MachineResourceProductionConfig.MarineFisherConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [5000FE] + powerPerOperation = 5000 + #Max Stored Power [FE] - Default: [20000 FE] + maxStoredPower = 20000 + + [MachineResourceProductionConfig.FluidCollectorConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [100 (5s)] + maxProgress = 100 + #Amount of Power Consumed per Tick - Default: [400FE] + powerPerOperation = 1000 + #Max Stored Power [FE] - Default: [10000 FE] + maxStoredPower = 10000 + #Max Amount of Stored Fluid [Output] - Default: [8000mB] + maxOutputTankSize = 16000 + + [MachineResourceProductionConfig.SimulatedHydroponicBedConfig] + #Cooldown Time in Ticks [20 Ticks per Second] - Default: [200 (5s)] + maxProgress = 200 + #Amount of Power Consumed per Operation - Default: [3000FE] + powerPerOperation = 3000 + #Max Stored Power [FE] - Default: [20000 FE] + maxStoredPower = 20000 + diff --git a/minecraft/config/industrialforegoingsouls/industrialforegoing-souls-client.toml b/minecraft/config/industrialforegoingsouls/industrialforegoing-souls-client.toml new file mode 100644 index 0000000..b3b73aa --- /dev/null +++ b/minecraft/config/industrialforegoingsouls/industrialforegoing-souls-client.toml @@ -0,0 +1,6 @@ + +[IFSoulsClient] + #Particles spawned by pipes, where 0 is 0% and 1 is 100% + #Range: 0.0 ~ 1.0 + SOUL_PIPES_PARTICLES = 0.1 + diff --git a/minecraft/config/industrialforegoingsouls/industrialforegoing-souls-machines.toml b/minecraft/config/industrialforegoingsouls/industrialforegoing-souls-machines.toml new file mode 100644 index 0000000..1732dcf --- /dev/null +++ b/minecraft/config/industrialforegoingsouls/industrialforegoing-souls-machines.toml @@ -0,0 +1,36 @@ + +[IFSoulsMachines] + + [IFSoulsMachines.ConfigSoulSurge] + #How long in ticks a soul last to accelerate ticks + #Range: > 1 + SOUL_TIME = 300 + #How many extra ticks the surge will accelerate for tile entities + #Range: > 0 + ACCELERATION_TICK = 4 + #How many extra ticks the surge will accelerate for mobs + #Range: > 0 + ENTITIES_ACCELERATION_TICK = 4 + #How many extra ticks the surge will accelerate for blocks + #Range: > 0 + BLOCK_ACCELERATION_TICK = 4 + #How often a random tick block will be accelerated, by default 3% of the ticks (random) + #Range: 0.0 ~ 1.0 + RANDOM_TICK_ACCELERATION_CHANCE = 0.03 + + [IFSoulsMachines.ConfigSoulLaserBase] + #Max soul storage tank amount + #Range: > 1 + SOUL_STORAGE_AMOUNT = 1350 + #Max progress of the machine + #Range: > 1 + MAX_PROGRESS = 20 + #Kill the warden when it's life reaches near to 0 or keep it alive + KILL_WARDEN = false + #Damage done to the warden when an operation is done + #Range: > 0 + DAMAGE_PER_OPERATION = 4 + #Souls generated when an operation is done + #Range: > 1 + SOULS_PER_OPERATION = 2 + diff --git a/minecraft/config/industrialforestry-common.toml b/minecraft/config/industrialforestry-common.toml new file mode 100644 index 0000000..6f16481 --- /dev/null +++ b/minecraft/config/industrialforestry-common.toml @@ -0,0 +1,104 @@ + +["Scoop settings"] + #Multiplier of the speed at which the Industrial Scoop collects items. + #Range: 0.0 ~ 1.7976931348623157E308 + scoopSpeedMultiplier = 4.0 + #The maximum energy the Industrial Scoop can hold. + #Range: > 1 + scoopMaxEnergy = 10000 + #The amount of energy used per tick by the Industrial Scoop. + #Range: > 1 + scoopEnergyUse = 10 + +["Machines settings"] + + ["Machines settings"."Industrial Centrifuge settings"] + #Multiplier of the ticks needed to process an item in the Industrial Centrifuge. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + tickMultiplier = -0.2 + #Multiplier of the power needed to process an item in the Industrial Centrifuge. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + powerMultiplier = 0.5 + #The maximum energy the Industrial Centrifuge can hold. + #Range: > 1 + industrialCentrifugeMaxEnergy = 1000000 + #How much energy the machine can transfer per tick + #Range: > 1 + industrialCentrifugeMaxTransfer = 100000 + + ["Machines settings"."Industrial Squeezer settings"] + #Multiplier of the ticks needed to process an item in the Industrial Squeezer. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + tickMultiplier = -0.2 + #Multiplier of the power needed to process an item in the Industrial Squeezer. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + powerMultiplier = 0.5 + #The maximum energy the Industrial Squeezer can hold. + #Range: > 1 + industrialSqueezerMaxEnergy = 1000000 + #How much energy the machine can transfer per tick + #Range: > 1 + industrialSqueezerMaxTransfer = 100000 + +[Upgrades] + + [Upgrades."Speed Upgrade"] + #Multiplier of the ticks needed to process an item using a single Speed Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier1_tick_multiplier = -0.2 + #Multiplier of the power needed to process an item using a single Speed Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier1_power_multiplier = 0.2 + #Multiplier of the ticks needed to process an item using a single Speed Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier2_tick_multiplier = -0.4 + #Multiplier of the power needed to process an item using a single Speed Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier2_power_multiplier = 0.4 + #Multiplier of the ticks needed to process an item using a single Speed Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier3_tick_multiplier = -0.6 + #Multiplier of the power needed to process an item using a single Speed Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + speed_upgrade_tier3_power_multiplier = 0.6 + + [Upgrades."Efficiency Upgrade"] + #The rate at which the power needed per tick is reduced using a single Efficiency Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + efficiency_upgrade_tier1_power_multiplier = -0.2 + #The rate at which the power needed per tick is reduced using a single Efficiency Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + efficiency_upgrade_tier2_power_multiplier = -0.4 + #The rate at which the power needed per tick is reduced using a single Efficiency Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + efficiency_upgrade_tier3_power_multiplier = -0.6 + + [Upgrades."Chance Upgrade"] + #The additional success chance added by a single Chance Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier1_chance_increment = 0.2 + #Multiplier of the power needed to process an item using a single Chance Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier1_power_multiplier = 0.2 + #Multiplier of the ticks needed to process an item using a single Chance Upgrade tier 1. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier1_tick_multiplier = 0.0 + #The additional success chance added by a single Chance Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier2_chance_increment = 0.4 + #Multiplier of the power needed to process an item using a single Chance Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier2_power_multiplier = 0.4 + #Multiplier of the ticks needed to process an item using a single Chance Upgrade tier 2. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier2_tick_multiplier = 0.0 + #The additional success chance added by a single Chance Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier3_chance_increment = 0.6 + #Multiplier of the power needed to process an item using a single Chance Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier3_power_multiplier = 0.6 + #Multiplier of the ticks needed to process an item using a single Chance Upgrade tier 3. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + chance_upgrade_tier3_tick_multiplier = 0.0 + diff --git a/minecraft/config/infuserapothcompat-common.toml b/minecraft/config/infuserapothcompat-common.toml new file mode 100644 index 0000000..264fec2 --- /dev/null +++ b/minecraft/config/infuserapothcompat-common.toml @@ -0,0 +1,5 @@ + +[general] + #Allow cursed enchantments in the Enchanting Infuser without requiring a Treasure Shelf + allowCursedEnchantments = false + diff --git a/minecraft/config/integrated_simply_swords/alexscaves.json5 b/minecraft/config/integrated_simply_swords/alexscaves.json5 new file mode 100644 index 0000000..1f374ad --- /dev/null +++ b/minecraft/config/integrated_simply_swords/alexscaves.json5 @@ -0,0 +1,45 @@ +{ + /* If Alex's Caves weapons are enabled + "DEFAULT" = Defaults to if Alex's Caves is installed + "TRUE" = force enable + "FALSE" = force disable + */ + "ENABLED": "DEFAULT", + /* Material modifiers are set to the base damage of each material's tier. + Values are ints, meaning you cannot have values with a decimal point. + Valid: + - '5' + + Invalid: + - '3.4' + */ + "POLARIZER": 0, + /* Determines the base radius for Polarized effect. This is increased for each level of the effect. + Default: + - '4.0' + */ + "POLARIZED_RADIUS": 4.0, + /* Determines the base speed for Polarized effect. This is increased for each level of the effect. + Default: + - '0.2' + */ + "POLARIZED_SPEED": 0.2, + /* Integer that determines length in ticks for cool down of Pull mode on Polarizer. Divide by 20 to get seconds. + Default: + - '200' + */ + "POLARIZER_COOLDOWN": 200, + /* Determines the base speed for Polarized effect. This is increased for each level of the effect. + Default: + - '0.2' + */ + "POLARIZER_KNOCKBACK_STRENGTH": 2.0, + /* A list of entities that will be excluded from the Polarized effect. + */ + "POLARIZER_BLACKLIST": [ + "create:contraption", + "minecraft:player", + "minecraft:wither", + "minecraft:ender_dragon" + ] +} \ No newline at end of file diff --git a/minecraft/config/integrated_simply_swords/born_in_chaos.json5 b/minecraft/config/integrated_simply_swords/born_in_chaos.json5 new file mode 100644 index 0000000..42c7a0b --- /dev/null +++ b/minecraft/config/integrated_simply_swords/born_in_chaos.json5 @@ -0,0 +1,12 @@ +{ + /* This file controls values specifically for Born in Chaos. + Material modifiers are set to the base damage of each material's tier. + Values are ints, meaning you cannot have values with a decimal point. + Valid: + - '5' + + Invalid: + - '3.4' + */ + "DARK_METAL": 0 +} \ No newline at end of file diff --git a/minecraft/config/integrated_simply_swords/general.json5 b/minecraft/config/integrated_simply_swords/general.json5 new file mode 100644 index 0000000..cf0d67a --- /dev/null +++ b/minecraft/config/integrated_simply_swords/general.json5 @@ -0,0 +1,47 @@ +{ + "longsword_positiveDamageModifier": 0.0, + "twinblade_positiveDamageModifier": 0.0, + "rapier_positiveDamageModifier": 0.0, + "katana_positiveDamageModifier": 0.0, + "sai_positiveDamageModifier": 0.0, + "spear_positiveDamageModifier": 0.0, + "glaive_positiveDamageModifier": 0.0, + "warglaive_positiveDamageModifier": 0.0, + "cutlass_positiveDamageModifier": 0.0, + "claymore_positiveDamageModifier": 2.0, + "greataxe_positiveDamageModifier": 3.0, + "greathammer_positiveDamageModifier": 4.0, + "chakram_positiveDamageModifier": 0.0, + "scythe_positiveDamageModifier": 1.0, + "halberd_positiveDamageModifier": 3.0, + "longsword_negativeDamageModifier": 0.0, + "twinblade_negativeDamageModifier": 0.0, + "rapier_negativeDamageModifier": 1.0, + "katana_negativeDamageModifier": 0.0, + "sai_negativeDamageModifier": 3.0, + "spear_negativeDamageModifier": 0.0, + "glaive_negativeDamageModifier": 0.0, + "warglaive_negativeDamageModifier": 0.0, + "cutlass_negativeDamageModifier": 0.0, + "claymore_negativeDamageModifier": 0.0, + "greataxe_negativeDamageModifier": 0.0, + "greathammer_negativeDamageModifier": 0.0, + "chakram_negativeDamageModifier": 1.0, + "scythe_negativeDamageModifier": 0.0, + "halberd_negativeDamageModifier": 0.0, + "longsword_attackSpeed": -2.4000000953674316, + "twinblade_attackSpeed": -2.0, + "rapier_attackSpeed": -1.7999999523162842, + "katana_attackSpeed": -2.0, + "sai_attackSpeed": -1.5, + "spear_attackSpeed": -2.700000047683716, + "glaive_attackSpeed": -2.5999999046325684, + "warglaive_attackSpeed": -2.200000047683716, + "cutlass_attackSpeed": -2.0, + "claymore_attackSpeed": -2.799999952316284, + "greataxe_attackSpeed": -3.0999999046325684, + "greathammer_attackSpeed": -3.200000047683716, + "chakram_attackSpeed": -3.0, + "scythe_attackSpeed": -2.700000047683716, + "halberd_attackSpeed": -2.799999952316284 +} \ No newline at end of file diff --git a/minecraft/config/integrated_simply_swords/iceandfire.json5 b/minecraft/config/integrated_simply_swords/iceandfire.json5 new file mode 100644 index 0000000..619f5ee --- /dev/null +++ b/minecraft/config/integrated_simply_swords/iceandfire.json5 @@ -0,0 +1,20 @@ +{ + /* This file controls values specifically for Ice & Fire. + Material modifiers are set to the base damage of each material's tier. + Values are ints, meaning you cannot have values with a decimal point. + Valid: + - '5' + + Invalid: + - '3.4' + */ + "DRAGONSTEEL_FIRE": 0, + "DRAGONSTEEL_ICE": 0, + "DRAGONSTEEL_LIGHTNING": 0, + "DRAGONBONE": 0, + "DRAGONBONE_FIRE": 0, + "DRAGONBONE_ICE": 0, + "DRAGONBONE_LIGHTNING": 0, + "MYRMEX_DESERT": 0, + "MYRMEX_JUNGLE": 0 +} \ No newline at end of file diff --git a/minecraft/config/integrated_simply_swords/silver.json5 b/minecraft/config/integrated_simply_swords/silver.json5 new file mode 100644 index 0000000..9737ce0 --- /dev/null +++ b/minecraft/config/integrated_simply_swords/silver.json5 @@ -0,0 +1,18 @@ +{ + /* This file controls values of silver material weapons. + Material modifiers are set to the base damage of each material's tier. + Values are ints, meaning you cannot have values with a decimal point. + Valid: + - '5' + + Invalid: + - '3.4' + */ + "SILVER": 0, + /* If silver weapons are enabled + "DEFAULT" = Defaults to if a mod that adds silver ingots is installed + "TRUE" = force enable silver weapons + "FALSE" = force disable silver weapons + */ + "ENABLED": "DEFAULT" +} \ No newline at end of file diff --git a/minecraft/config/inventory_pets_illuminati_blacklist.json b/minecraft/config/inventory_pets_illuminati_blacklist.json new file mode 100644 index 0000000..8a0186e --- /dev/null +++ b/minecraft/config/inventory_pets_illuminati_blacklist.json @@ -0,0 +1,27 @@ +{ + "minecraft:dirt": 0, + "minecraft:command_block": 0, + "bibliocraft:": 0, + "allthemodium:": 0, + "doom:": 0, + "gobber2:": 0, + "ars_nouveau:": 0, + "ars_elemental:": 0, + "ars_caelum:": 0, + "ars_additions:": 0, + "inventorypets:april_fool_pet": 0, + "inventorypets:pet_nether_portal": 0, + "inventorypets:pet_end_portal": 0, + "inventorypets:item_gift": 0, + "inventorypets:patreon_shirt": 0, + "minecraft:air": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0, + "minecraft:dirt": 0 +} \ No newline at end of file diff --git a/minecraft/config/inventoryessentials-common.toml b/minecraft/config/inventoryessentials-common.toml new file mode 100644 index 0000000..0ba06a4 --- /dev/null +++ b/minecraft/config/inventoryessentials-common.toml @@ -0,0 +1,21 @@ +#Use the client implementation even on servers that have the mod installed - only useful for development purposes. +forceClientImplementation = false +#Should space-clicking move all items even if an empty slot was clicked? +allowBulkTransferAllOnEmptySlot = false +#Should space-clicking armor in the inventory swap to all matching armor? +bulkTransferArmorSets = true +#Should holding shift and moving your mouse over items quick-transfer them without requiring each to be clicked? +enableShiftDrag = true +#Should space-clicking an item move all items from that inventory at once? +enableBulkTransferAll = true +#Should ctrl-clicking only move one item at a time instead of the full stack? +enableSingleTransfer = true +#Should shift-ctrl-clicking move all items of the same type at once? +enableBulkTransfer = true +#Should shift-ctrl-drop-clicking drop all items of the same type at once? +enableBulkDrop = true +#Should control-space-clicking an item move one of each item from that inventory at once? +enableBulkTransferSingle = true +#Should middle-clicking a slot sort the inventory? +enableMiddleClickSort = true + diff --git a/minecraft/config/inventorypets-common.toml b/minecraft/config/inventorypets-common.toml new file mode 100644 index 0000000..fbbf5b8 --- /dev/null +++ b/minecraft/config/inventorypets-common.toml @@ -0,0 +1,423 @@ + +["Inventory Pets Config Settings"] + #Display the names of the fans who suggested pets (default:true) + showSuggestors = true + #Disable Cloud Pet thunder sounds (default:false) + disableCloudSound = false + #Display the mod update message during startup (default:true) + showUpdateMessage = false + #Display holiday messages during startup (default:true) + showHolidayMessages = false + #Are pets required to eat food (default:true) + petsMustEat = true + #Pets eat rarer items (default:false) + petsEatWholeItems = false + #Turn off all dungeons (default:false) + disableAllDungeons = false + #Turn off Nether dungeons (default:false) + disableNetherDungeons = false + #Turn off Space dungeons (default:false) + disableSpaceDungeons = false + #Turn off Underground dungeons (default:false) + disableUndergroundDungeons = false + #Turn off Sea Cave dungeons (default:false) + disableSeaCaveDungeons = false + #Turn off Sky dungeons (default:false) + disableSkyDungeons = false + #Turn off Tree Tops (default:false) + disableTreeTops = false + #Disable mobs spawning in dungeons (default:false) + disableMobsSpawnInDungeons = false + #Disable Squid Pet swim speed boost ability (default:false) + disableSquidSpeed = false + #Disable Creeper Pet explosion ability (default:false) + disableCreeperExplosion = false + #Disable Cloud Pet lightning strike ability (default:false) + disableCloudLightning = false + #Disable Enderman Pet auto-teleport (default:false) + disableEndermanAutoTeleport = false + #Disable Pingot Pet auto extract ability (default:false) + disablePingotAutoExtract = false + #Disable Sponge Pet absorb water (default:false) + disableSpongeWaterAbsorb = false + #Disable Illuminati Pet gives items ability (default:false) + disableIlluminatiGiveItems = false + #Illuminati Pet only gives craftable items (default:true) + illuminatiCraftedOnly = true + #Disable Machines that can Activate items (default:false) + disableRightClickMachines = false + #Reduce the number of Quantum Crystal Monster Pet minions (default:false) + reduceQuantumCrystalMonsterMinions = false + #Disable Spider Pet jump ability (default:false) + disableSpiderJump = false + #Disable Pets give items ability (default:false) + disablePetsGiveItems = false + #Disable Slime revival sound (default:false) + disableSlimeReviveSound = false + #Allow Black Hole pet abilities to affect other players (default:false) + enableBlackHoleAffectsPlayers = false + #Allow Pufferfish pet abilities to affect other players (default:false) + enablePufferfishAffectsPlayers = false + #Allow Moon pet abilities to affect other players (default:false) + enableMoonAffectsPlayers = false + #Allow Sun pet abilities to affect other players (default:false) + enableDubstepAffectsPlayers = false + #All players must be in bed for Bed Pet sleep ability (default:false) + allPlayersMustBeInBed = false + #Disable all holiday pets (default:false) + disableHolidayPets = false + #Disable the April Fool pet and messages (default:false) + disableAprilFoolHoliday = false + #Allow April Fool all year round (default:false) + yearroundAprilFool = false + #Allow more grieflike April Fools pranks (default:false) + enableAprilFoolGriefPranks = false + #Allow Petrifier to make legendary pets (default:false) + allowPetrifierLegendaries = false + #Disable the Petrifier (default:false) + disablePetrifier = false + #Disable random TNT in Tree Top chests (default:false) + disableTreeTopTNT = false + #Enable Loot Pet with FTBUltimine installed (default:false) + enableLootWithFTBUltimine = false + #Disable Cloud Fly ability (default:false) + disableCloudFly = false + #Cow Pet removes Levitation (default:false) + cowPetRemovesLevitation = false + #Factor by which PacMan Powerup bonus increases with every kill (default: 3) + #Range: 1 ~ 10 + pacManPowerupFactor = 3 + #Cloud Pet fly speed (default:3) + #Range: 1 ~ 4 + cloudFlySpeed = 3 + #Radius blocks of water absorbed by Sponge Pet (default: 8) + #Range: 1 ~ 64 + spongeAbsorbBlockRadius = 8 + #Illuminati cooldown duration in minutes (default: 1) + #Range: 1 ~ 10 + illuminatiCooldown = 1 + #Illuminati invisibility duration in minutes (default: 1) + #Range: 1 ~ 3 + illuminatiInvisibleDuration = 1 + #Item cap for all loaded items, including mods (default: 5000) + #Range: 1 ~ 50000 + illuminatiItemCapLimit = 5000 + #Juggernaut cooldown duration in minutes (default: 1) + #Range: 1 ~ 10 + juggernautCooldown = 1 + #Juggernaut shield wall duration in minutes (default: 1) + #Range: 1 ~ 3 + juggernautShieldWallDuration = 1 + #Frequency of Sky Dungeons (default: 5) + #Range: 1 ~ 10 + frequencySkyDungeons = 5 + #Frequency of Underground Dungeons (default: 5) + #Range: 1 ~ 10 + frequencyUndergroundDungeons = 5 + #Frequency of Sea Cave Dungeons (default: 5) + #Range: 1 ~ 10 + frequencySeaCaveDungeons = 5 + #Frequency of Tree Tops (default: 5) + #Range: 1 ~ 10 + frequencyTreeTops = 5 + #Frequency of Space Dungeons (default: 5) + #Range: 1 ~ 10 + frequencySpaceDungeons = 5 + #Frequency of Nether Dungeons (default: 5) + #Range: 1 ~ 10 + frequencyNetherDungeons = 5 + #Frequency of Pet Eating (default: 120) + #Range: 1 ~ 5000 + petEatTimerFactor = 120 + #Holiday Pet active month (default: 12) + #Range: 1 ~ 12 + holidayPetMonth = 12 + #Chunks Biome Pet will search through (default:96) + #Range: 1 ~ 225 + biomePetChunks = 96 + #Chicken Pet speed (default: 3) + #Range: 1 ~ 10 + chickenEffectLevel = 3 + #Hunger threshold for Pac-man Pet to auto-eats (default: 8) + #Range: 1 ~ 10 + pacManEatLevel = 8 + #Disable the Anvil pet (default:false) + disableAnvil = false + #Disable the Apple pet (default:false) + disableApple = false + #Disable the April Fool pet (default:false) + disableAprilFool = false + #Disable the Banana pet (default:false) + disableBanana = false + #Disable the Bed pet (default:false) + disableBed = false + #Disable the Biome pet (default:false) + disableBiome = false + #Disable the Black Hole pet (default:false) + disableBlackHole = false + #Disable the (default:false) + disableBlaze = false + #Disable the (default:false) + disableBrewingStand = false + #Disable the Blaze pet (default:false) + disableCheetah = false + #Disable the Chest pet (default:false) + disableChest = false + #Disable the Chicken pet (default:false) + disableChicken = false + #Disable the Christmas Tree pet (default:false) + disableChristmasTree = false + #Disable the Cloud pet (default:false) + disableCloud = false + #Disable the Cobblestone pet (default:false) + disableCobblestone = false + #Disable the Cow pet (default:false) + disableCow = false + #Disable the Crafting Table pet (default:false) + disableCraftingTable = false + #Disable the Creeper pet (default:false) + disableCreeper = false + #Disable the Dirt pet (default:false) + disableDirt = false + #Disable the Double Chest pet (default:false) + disableDoubleChest = false + #Disable the Dubstep pet (default:false) + disableDubstep = false + #Disable the Enchanting Table pet (default:false) + disableEnchantingTable = false + #Disable the Ender Chest pet (default:false) + disableEnderChest = false + #Disable the Enderman pet (default:false) + disableEnderman = false + #Disable the End Portal pet (default:false) + disableEndPortal = true + #Disable the Flying Saddle pet (default:false) + disableFlyingSaddle = false + #Disable the Furnace pet (default:false) + disableFurnace = false + #Disable the Ghast pet (default:false) + disableGhast = false + #Disable the Grave pet (default:false) + disableGrave = false + #Disable the Heart pet (default:false) + disableHeart = false + #Disable the House pet (default:false) + disableHouse = false + #Disable the Illuminati pet (default:false) + disableIlluminati = false + #Disable the Iron Golem pet (default:false) + disableIronGolem = false + #Disable the Juggernaut pet (default:false) + disableJuggernaut = false + #Disable the Jukebox pet (default:false) + disableJukebox = false + #Disable the Lead pet (default:false) + disableLead = false + #Disable the Loot pet (default:false) + disableLoot = false + #Disable the Magma Cube pet (default:false) + disableMagmaCube = false + #Disable the Menorah pet (default:false) + disableMenorah = false + #Disable the Meta pet (default:false) + disableMeta = false + #Disable the Mickerson pet (default:false) + disableMickerson = false + #Disable the Mishumaa Saba pet (default:false) + disableMishumaaSaba = false + #Disable the Moon pet (default:false) + disableMoon = false + #Disable the Mooshroom pet (default:false) + disableMooshroom = false + #Disable the Nether Portal pet (default:false) + disableNetherPortal = true + #Disable the Ocelot pet (default:false) + disableOcelot = false + #Disable the PacMan pet (default:false) + disablePacMan = false + #Disable the Pig pet (default:false) + disablePig = false + #Disable the Pingot pet (default:false) + disablePingot = false + #Disable the Pixie pet (default:false) + disablePixie = false + #Disable the Politically Correct pet (default:false) + disablePoliticallyCorrect = false + #Disable the Pufferfish pet (default:false) + disablePufferfish = false + #Disable the Purplicious Cow pet (default:false) + disablePurpliciousCow = false + #Disable the Quantum Crystal Monster pet (default:false) + disableQuantumCrystalMonster = false + #Disable the Quiver pet (default:false) + disableQuiver = false + #Disable the Saddle pet (default:false) + disableSaddle = false + #Disable the Sated Chest pet (default:false) + disableSatedChest = false + #Disable the Sated Double Chest pet (default:false) + disableSatedDoubleChest = false + #Disable the Sheep pet (default:false) + disableSheep = false + #Disable the Shield pet (default:false) + disableShield = false + #Disable the Siamese pet (default:false) + disableSiamese = false + #Disable the Silverfish pet (default:false) + disableSilverfish = false + #Disable the Slime pet (default:false) + disableSlime = false + #Disable the Snow Golem pet (default:false) + disableSnowGolem = false + #Disable the Spider pet (default:false) + disableSpider = false + #Disable the Sponge pet (default:false) + disableSponge = false + #Disable the Squid pet (default:false) + disableSquid = false + #Disable the Sun pet (default:false) + disableSun = false + #Disable the Torch pet (default:false) + disableTorch = false + #Disable the Wither pet (default:false) + disableWither = false + #Disable the Wolf pet (default:false) + disableWolf = false + #Dingot only looks for Inventory Pets structures (default:false) + dingotIPStruturesOnly = false + #Chunks Dingot Pet will search through (default:96) + #Range: 1 ~ 225 + dingotSearchChunks = 96 + #Anvil Pet's favorite food + foodAnvil = "minecraft:iron_nugget" + #Apple Pet's favorite food + foodApple = "minecraft:gold_ingot" + #April Fool Pet's favorite food + foodAprilFool = "minecraft:tripwire_hook" + #Banana Pet's favorite food + foodBanana = "minecraft:glowstone_dust" + #Bed Pet's favorite food + foodBed = "minecraft:white_wool" + #Biome Pet's favorite food + foodBiome = "minecraft:grass_block" + #Black Hole Pet's favorite food + foodBlackHole = "inventorypets:nugget_obsidian" + #Blaze Pet's favorite food + foodBlaze = "minecraft:quartz" + #Brewing Stand Pet's favorite food + foodBrewingStand = "minecraft:nether_wart" + #Cheetah Pet's favorite food + foodCheetah = "minecraft:beef" + #Chest Pet's favorite food + foodChest = "minecraft:oak_planks" + #Chicken Pet's favorite food + foodChicken = "minecraft:wheat_seeds" + #Cloud Pet's favorite food + foodCloud = "minecraft:quartz" + #Cobblestone Pet's favorite food + foodCobblestone = "minecraft:dirt" + #Cow Pet's favorite food + foodCow = "minecraft:wheat" + #Crafting Table Pet's favorite food + foodCraftingTable = "minecraft:oak_planks" + #Creeper Pet's favorite food + foodCreeper = "inventorypets:nugget_emerald" + #Dingot Pet's favorite food + foodDingot = "minecraft:copper_ingot" + #Dirt Pet's favorite food + foodDirt = "minecraft:cobblestone" + #Double Chest Pet's favorite food + foodDoubleChest = "minecraft:oak_log" + #Dubstep Pet's favorite food + foodDubstep = "minecraft:note_block" + #Enchanting Table Pet's favorite food + foodEnchantingTable = "inventorypets:nugget_lapis" + #Ender Chest Pet's favorite food + foodEnderChest = "inventorypets:nugget_ender" + #Enderman Pet's favorite food + foodEnderman = "inventorypets:nugget_obsidian" + #End Portal Pet's favorite food + foodEndPortal = "inventorypets:nugget_ender" + #Flying Saddle Pet's favorite food + foodFlyingSaddle = "inventorypets:nugget_diamond" + #Furnace Pet's favorite food + foodFurnace = "inventorypets:nugget_coal" + #Ghast Pet's favorite food + foodGhast = "minecraft:blaze_powder" + #Grave Pet's favorite food + foodGrave = "minecraft:bone" + #Heart Pet's favorite food + foodHeart = "minecraft:red_tulip" + #House Pet's favorite food + foodHouse = "minecraft:iron_nugget" + #Iron Golem Pet's favorite food + foodIronGolem = "minecraft:iron_ingot" + #Illuminati Pet's favorite food + foodIlluminati = "inventorypets:nugget_emerald" + #Juggernaut Pet's favorite food + foodJuggernaut = "inventorypets:nugget_obsidian" + #Jukebox Pet's favorite food + foodJukebox = "minecraft:redstone" + #Lead Pet's favorite food + foodLead = "minecraft:string" + #Loot Pet's favorite food + foodLoot = "minecraft:gold_nugget" + #Magma Cube Pet's favorite food + foodMagmaCube = "minecraft:quartz" + #Mickerson Pet's favorite food + foodMickerson = "inventorypets:nugget_diamond" + #Moon Pet's favorite food + foodMoon = "inventorypets:nugget_emerald" + #Mooshroom Pet's favorite food + foodMooshroom = "minecraft:red_mushroom" + #Nether Portal Pet's favorite food + foodNetherPortal = "inventorypets:nugget_obsidian" + #Ocelot Pet's favorite food + foodOcelot = "minecraft:cooked_cod" + #Pac-Man Pet's favorite food + foodPacMan = "minecraft:cookie" + #Pig Pet's favorite food + foodPig = "minecraft:carrot" + #Pingot Pet's favorite food + foodPingot = "inventorypets:nugget_diamond" + #Pixie Pet's favorite food + foodPixie = "inventorypets:nugget_emerald" + #Pufferfish Pet's favorite food + foodPufferfish = "minecraft:glowstone_dust" + #Purplicious Cow Pet's favorite food + foodPurpliciousCow = "inventorypets:nugget_diamond" + #Quantum Crystal Monster Pet's favorite food + foodQuantumCrystalMonster = "inventorypets:nugget_lapis" + #Quiver Pet's favorite food + foodQuiver = "minecraft:feather" + #Saddle Pet's favorite food + foodSaddle = "minecraft:iron_nugget" + #Sheep Pet's favorite food + foodSheep = "minecraft:wheat" + #Shield Pet's favorite food + foodShield = "minecraft:iron_nugget" + #Siamese Pet's favorite food + foodSiamese = "minecraft:cooked_chicken" + #Silverfish Pet's favorite food + foodSilverfish = "minecraft:cobblestone" + #Slime Pet's favorite food + foodSlime = "minecraft:golden_apple" + #Snow Golem Pet's favorite food + foodSnowGolem = "minecraft:pumpkin" + #Spider Pet's favorite food + foodSpider = "minecraft:beef" + #Sponge Pet's favorite food + foodSponge = "minecraft:lily_pad" + #Squid Pet's favorite food + foodSquid = "minecraft:cod" + #Sun Pet's favorite food + foodSun = "minecraft:gold_ingot" + #Torch Pet's favorite food + foodTorch = "inventorypets:nugget_coal" + #Wither Pet's favorite food + foodWither = "minecraft:soul_sand" + #Wolf Pet's favorite food + foodWolf = "minecraft:bone" + #Disable the Dingot pet (default:false) + disableDingot = false + diff --git a/minecraft/config/inventoryprofilesnext/MonumentalExperience2.modded.fun/villager-trading-config.json b/minecraft/config/inventoryprofilesnext/MonumentalExperience2.modded.fun/villager-trading-config.json new file mode 100644 index 0000000..c1d9ce9 --- /dev/null +++ b/minecraft/config/inventoryprofilesnext/MonumentalExperience2.modded.fun/villager-trading-config.json @@ -0,0 +1,53 @@ +{ + "globalBookmarks": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + }, + "globalBookmarks1": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + }, + "globalBookmarks2": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + } +} \ No newline at end of file diff --git a/minecraft/config/inventoryprofilesnext/New World/villager-trading-config.json b/minecraft/config/inventoryprofilesnext/New World/villager-trading-config.json new file mode 100644 index 0000000..c1d9ce9 --- /dev/null +++ b/minecraft/config/inventoryprofilesnext/New World/villager-trading-config.json @@ -0,0 +1,53 @@ +{ + "globalBookmarks": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + }, + "globalBookmarks1": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + }, + "globalBookmarks2": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + } +} \ No newline at end of file diff --git a/minecraft/config/inventoryprofilesnext/integrationHints/exampleIntegrationHints.json b/minecraft/config/inventoryprofilesnext/integrationHints/exampleIntegrationHints.json new file mode 100644 index 0000000..0f246d5 --- /dev/null +++ b/minecraft/config/inventoryprofilesnext/integrationHints/exampleIntegrationHints.json @@ -0,0 +1,47 @@ +{ + "package.name.className": { + "ignore": false, + "playerSideOnly": false, + "force": false, + "buttonHints": { + "SORT": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "SORT_COLUMNS": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "SORT_ROWS": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "MOVE_TO_CONTAINER": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "MOVE_TO_PLAYER": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "CONTINUOUS_CRAFTING": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0 + }, + "PROFILE_SELECTOR": { + "horizontalOffset": 0, + "top": 0, + "bottom": 0, + "hide": true + } + } + }, + "another.package.name.className": { + } +} \ No newline at end of file diff --git a/minecraft/config/inventoryprofilesnext/integrationHints/player-defined.json b/minecraft/config/inventoryprofilesnext/integrationHints/player-defined.json new file mode 100644 index 0000000..0dbaaf4 --- /dev/null +++ b/minecraft/config/inventoryprofilesnext/integrationHints/player-defined.json @@ -0,0 +1,1533 @@ +{ + "org.zeith.solarflux.client.screen.SolarPanelScreen": { + "ignore": true + }, + "org.zeith.solarflux.container.SolarPanelContainer": { + "ignore": true + }, + "com.smashingmods.alchemistry.common.block.dissolver.DissolverScreen": { + "ignore": true + }, + "com.lion.graveyard.gui.OssuaryScreen": { + "ignore": true + }, + "codechicken.translocators.client.gui.GuiTranslocator": { + "ignore": true + }, + "gg.moonflower.etched.client.screen.AlbumJukeboxScreen": { + "ignore": true + }, + "gg.moonflower.etched.client.screen.EtchingScreen": { + "ignore": true + }, + "net.povstalec.sgjourney.client.screens.NaquadahLiquidizerScreen": { + "ignore": true + }, + "satisfy.bakery.client.gui.CookingPotGui": { + "ignore": true + }, + "net.povstalec.sgjourney.client.screens.ClassicDHDScreen": { + "ignore": true + }, + "net.povstalec.sgjourney.client.screens.CrystallizerScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.vehicles.RocketScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.vehicles.RoverScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.CoalGeneratorScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.CompressorScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.EtrionicBlastFurnaceScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.NasaWorkbenchScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.FuelRefineryScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.OxygenLoaderScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.SolarPanelScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.WaterPumpScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.OxygenDistributorScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.GravityNormalizerScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.screens.machines.CryoFreezerScreen": { + "ignore": true + }, + "earth.terrarium.adastra.client.radio.screen.RadioScreen": { + "ignore": true + }, + "gg.moonflower.etched.client.screen.RadioScreen": { + "ignore": true + }, + "earth.terrarium.chipped.client.screens.WorkbenchScreen": { + "ignore": true + }, + "dev.shadowsoffire.apotheosis.village.fletching.FletchingScreen": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenPocket": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleConnector": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleCharger": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleCrafter": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleSmithingTable": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleFurnace": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleBlastFurnace": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleArmourWorkbench": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleGenerator": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleUpgradeStation": { + "ignore": true + }, + "com.tcn.dimensionalpocketsii.pocket.client.screen.ScreenModuleAnvil": { + "ignore": true + }, + "com.klikli_dev.occultism.client.gui.storage.StorageControllerGui": { + "ignore": true + }, + "net.Pandarix.betterarcheology.screen.IdentifyingScreen": { + "ignore": true + }, + "tfar.craftingstation.client.CraftingStationScreen": { + "ignore": true + }, + "net.mehvahdjukaar.sawmill.SawmillScreen": { + "ignore": true + }, + "dev.shadowsoffire.clickmachine.block.gui.AutoClickScreen": { + "ignore": true + }, + "com.pocky.solarpanels.client.gui.GuiAdvancedSolarPanel": { + "ignore": true + }, + "com.pocky.solarpanels.client.gui.GuiHybridSolarPanel": { + "ignore": true + }, + "com.pocky.solarpanels.client.gui.GuiUltimateHybridSolarPanel": { + "ignore": true + }, + "com.pocky.solarpanels.client.gui.GuiQuantumSolarPanel": { + "ignore": true + }, + "com.pocky.solarpanels.client.gui.GuiSpectralSolarPanel": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiExPatternProvider": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiExInterface": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiExIOBus": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiExPatternTerminal": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiPatternModifier": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiTagStorageBus": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiTagExportBus": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiThresholdLevelEmitter": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiModStorageBus": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiModExportBus": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiActiveFormationPlane": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiPreciseExportBus": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiWirelessConnector": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiIngredientBuffer": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiExDrive": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiExMolecularAssembler": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiExInscriber": { + "ignore": true + }, + "com.glodblock.github.extendedae.client.gui.GuiCaner": { + "ignore": true + }, + "com.glodblock.github.extendedae.xmod.wt.GuiUWirelessExPAT": { + "ignore": true + }, + "net.gigabit101.rebornstorage.client.screens.ScreenMultiCrafter": { + "ignore": true + }, + "com.pocky.solarpanels.client.gui.GuiSingularSolarPanel": { + "ignore": true + }, + "com.pocky.solarpanels.client.gui.GuiLightAbsorbingSolarPanel": { + "ignore": true + }, + "com.pocky.solarpanels.client.gui.GuiPhotonicSolarPanel": { + "ignore": true + }, + "com.pocky.solarpanels.client.gui.GuiCreativeSolarPanel": { + "ignore": true + }, + "dev.shadowsoffire.apotheosis.ench.library.EnchLibraryScreen": { + "ignore": true + }, + "dev.shadowsoffire.hostilenetworks.gui.SimChamberScreen": { + "ignore": true + }, + "dev.shadowsoffire.hostilenetworks.gui.LootFabScreen": { + "ignore": true + }, + "com.teammoeg.caupona.client.gui.TBenchScreen": { + "ignore": true + }, + "mrthomas20121.thermal_extra.client.screens.DynamoFrostScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.DrainScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.WiredChargerScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.SoulEngineScreen": { + "ignore": true + }, + "com.sammy.minersdelight.content.block.copper_pot.CopperPotScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.screen.TieredExporterScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.screen.TieredImporterScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.screen.TieredConstructorScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.screen.TieredDestructorScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.screen.TieredDiskManipulatorScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.screen.TieredInterfaceScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.screen.TieredRequesterScreen": { + "ignore": true + }, + "com.blakebr0.mysticalagriculture.client.screen.EnchanterScreen": { + "ignore": true + }, + "com.blakebr0.mysticalagriculture.client.screen.SouliumSpawnerScreen": { + "ignore": true + }, + "xfacthd.framedblocks.client.screen.PoweredFramingSawScreen": { + "ignore": true + }, + "mekanism.client.gui.GuiTeleporter": { + "ignore": true + }, + "mekanism.client.gui.GuiDimensionalStabilizer": { + "ignore": true + }, + "com.aetherteam.aether.client.gui.screen.inventory.AltarScreen": { + "ignore": true + }, + "com.aetherteam.aether.client.gui.screen.inventory.FreezerScreen": { + "ignore": true + }, + "com.aetherteam.aether.client.gui.screen.inventory.IncubatorScreen": { + "ignore": true + }, + "com.github.alexthe666.rats.client.gui.AutoCurdlerScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.device.DeviceComposterScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.device.DeviceXpCondenserScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineCrystallizerScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.client.screens.SteamDynamoScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.client.screens.StirlingBoilerScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.client.screens.MagmaticBoilerScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.client.screens.CompressionBoilerScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.client.screens.NumismaticBoilerScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.client.screens.LapidaryBoilerScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.client.screens.DisenchantmentBoilerScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.client.screens.GourmandBoilerScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.compat.pneumaticcraft.PneumaticBoilerScreen": { + "ignore": true + }, + "chiefarug.mods.systeams.compat.thermal_extra.FrostBoilerScreen": { + "ignore": true + }, + "net.satisfyu.meadow.client.screen.WoodcutterGui": { + "ignore": true + }, + "net.satisfyu.meadow.client.screen.CheeseFormGui": { + "ignore": true + }, + "net.satisfyu.meadow.client.screen.FondueGui": { + "ignore": true + }, + "com.telepathicgrunt.the_bumblezone.client.screens.CrystallineFlowerScreen": { + "ignore": true + }, + "dev.shadowsoffire.hostilenetworks.gui.DeepLearnerScreen": { + "ignore": true + }, + "com.rekindled.embers.gui.SlateScreen": { + "ignore": true + }, + "me.desht.modularrouters.client.gui.filter.TagFilterScreen": { + "ignore": true + }, + "mekanism.client.gui.item.GuiDictionary": { + "ignore": true + }, + "com.ultramega.rsinsertexportupgrade.screen.UpgradeScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.RevolverScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.BlastFurnaceScreen$Advanced": { + "ignore": true + }, + "net.geforcemods.securitycraft.screen.BlockChangeDetectorScreen": { + "ignore": true + }, + "com.github.alexmodguy.alexscaves.client.gui.SpelunkeryTableScreen": { + "ignore": true + }, + "com.github.alexthe666.rats.client.gui.UpgradeCombinerScreen": { + "ignore": true + }, + "tfar.dankstorage.client.screens.CDankStorageScreen": { + "ignore": true + }, + "elucent.eidolon.gui.SoulEnchanterScreen": { + "ignore": true + }, + "elucent.eidolon.gui.WoodenBrewingStandScreen": { + "ignore": true + }, + "elucent.eidolon.gui.ResearchTableScreen": { + "ignore": true + }, + "elucent.eidolon.gui.WorktableScreen": { + "ignore": true + }, + "dev.shadowsoffire.apotheosis.adventure.affix.salvaging.SalvagingScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.SlicerScreen": { + "ignore": true + }, + "com.aetherteam.aether.client.gui.screen.inventory.LoreBookScreen": { + "ignore": true + }, + "com.hidoni.transmog.gui.TransmogScreen": { + "ignore": true + }, + "dev.shadowsoffire.apotheosis.adventure.affix.socket.gem.cutting.GemCuttingScreen": { + "ignore": true + }, + "dev.shadowsoffire.apotheosis.adventure.affix.reforging.ReforgingScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.CoalGeneratorScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.CompressorScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.NasaWorkbenchScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.ConversionScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.SolarPanelScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.OxygenDistributorScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.WaterPumpScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.CryoFreezerScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.VehicleScreen": { + "ignore": true + }, + "earth.terrarium.ad_astra.client.screen.LargeVehicleScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.WirelessAccessPointScreen": { + "ignore": true + }, + "doggytalents.client.screen.TreatBagScreen": { + "ignore": true + }, + "com.teammoeg.caupona.client.gui.PortableBrazierScreen": { + "ignore": true + }, + "de.mari_023.ae2wtlib.wet.WETScreen": { + "ignore": true + }, + "de.mari_023.ae2wtlib.wat.WATScreen": { + "ignore": true + }, + "de.mari_023.ae2wtlib.wct.WCTScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.semiblock.LogisticsStorageScreen": { + "ignore": true + }, + "plus.dragons.createenchantmentindustry.content.contraptions.enchanting.enchanter.EnchantingGuideScreen": { + "ignore": true + }, + "com.simibubi.create.content.equipment.toolbox.ToolboxScreen": { + "ignore": true + }, + "com.simibubi.create.content.equipment.toolbox.ToolboxMenu": { + "ignore": true + }, + "com.simibubi.create.content.redstone.link.controller.LinkedControllerScreen": { + "ignore": true + }, + "com.simibubi.create.content.redstone.link.controller.LinkedControllerMenu": { + "ignore": true + }, + "com.simibubi.create.content.logistics.filter.AttributeFilterScreen": { + "ignore": true + }, + "com.simibubi.create.content.logistics.filter.AttributeFilterMenu": { + "ignore": true + }, + "com.simibubi.create.content.logistics.filter.FilterMenu": { + "ignore": true + }, + "com.simibubi.create.content.logistics.filter.FilterScreen": { + "ignore": true + }, + "com.lothrazar.cyclic.item.enderbook.EnderBookScreen": { + "ignore": true + }, + "com.klikli_dev.occultism.client.gui.storage.SatchelScreen": { + "ignore": true + }, + "net.geforcemods.securitycraft.screen.ItemInventoryScreen$KeycardHolder": { + "ignore": true + }, + "net.geforcemods.securitycraft.screen.DisguiseModuleScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.screens.PresentScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.screens.TrappedPresentScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.screens.NoticeBoardScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.screens.SackScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.screens.PulleyBlockScreen": { + "ignore": true + }, + "net.orcinus.galosphere.client.gui.CombustionTableScreen": { + "ignore": true + }, + "earth.terrarium.chipped.common.menu.ChippedScreen": { + "ignore": true + }, + "com.teammoeg.caupona.client.gui.StewPotScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.XPVacuumScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.FluidTankScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.EnchanterScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.PrimitiveAlloySmelterScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.AlloySmelterScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.SagMillScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.StirlingGeneratorScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.ImpulseHopperScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.SoulBinderScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.PoweredSpawnerScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.VacuumChestScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.CrafterScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.PaintingMachineScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.TravelAnchorScreen": { + "ignore": true + }, + "com.enderio.machines.client.gui.screen.CapacitorBankScreen": { + "ignore": true + }, + "com.enderio.conduits.client.gui.ConduitScreen": { + "ignore": true + }, + "net.permutated.pylons.machines.expulsion.ExpulsionPylonScreen": { + "ignore": true + }, + "net.permutated.pylons.machines.infusion.InfusionPylonScreen": { + "ignore": true + }, + "net.permutated.pylons.machines.harvester.HarvesterPylonScreen": { + "ignore": true + }, + "net.permutated.pylons.machines.interdiction.InterdictionPylonScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.gui.TieredExporterScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.gui.TieredImporterScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.gui.TieredConstructorScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.gui.TieredDestructorScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.gui.TieredDiskManipulatorScreen": { + "ignore": true + }, + "com.ultramega.cabletiers.gui.TieredRequesterScreen": { + "ignore": true + }, + "ad_astra_giselle_addon.client.screen.FuelLoaderScreen": { + "ignore": true + }, + "ad_astra_giselle_addon.client.screen.AutomationNasaWorkbenchScreen": { + "ignore": true + }, + "ad_astra_giselle_addon.client.screen.GravityNormalizerScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.SolarCompressorScreen": { + "ignore": true + }, + "com.ultramega.creativecrafter.gui.CreativeCrafterScreen": { + "ignore": true + }, + "com.hollingsworth.arsnouveau.client.container.CraftingTerminalScreen": { + "ignore": true + }, + "dan200.computercraft.client.gui.DiskDriveScreen": { + "ignore": true + }, + "dan200.computercraft.client.gui.PrinterScreen": { + "ignore": true + }, + "com.lothrazar.cyclic.block.batteryclay.ScreenClayBattery": { + "ignore": true + }, + "com.lothrazar.cyclic.block.cratemini.ScreenCrateMini": { + "ignore": true + }, + "com.lothrazar.cyclic.block.generatorsolar.ScreenGeneratorSolar": { + "ignore": true + }, + "com.simibubi.create.content.schematics.table.SchematicTableScreen": { + "ignore": true + }, + "com.simibubi.create.content.schematics.table.SchematicTableMenu": { + "ignore": true + }, + "com.simibubi.create.content.schematics.cannon.SchematiccannonScreen": { + "ignore": true + }, + "com.simibubi.create.content.schematics.cannon.SchematiccannonMenu": { + "ignore": true + }, + "fuzs.barteringstation.client.gui.screens.inventory.BarteringStationScreen": { + "ignore": true + }, + "xyz.apex.forge.fantasyfurniture.client.screen.FurnitureStationMenuScreen": { + "ignore": true + }, + "com.almostreliable.merequester.client.RequesterTerminalScreen": { + "ignore": true + }, + "xfacthd.framedblocks.client.screen.FramingSawScreen": { + "ignore": true + }, + "com.almostreliable.merequester.client.RequesterScreen": { + "ignore": true + }, + "commoble.jumbofurnace.client.JumboFurnaceScreen": { + "ignore": true + }, + "cy.jdkdigital.generatorgalore.common.container.GeneratorScreen": { + "ignore": true + }, + "net.nicguzzo.wands.client.screens.MagicBagScreen": { + "ignore": true + }, + "io.ejekta.bountiful.client.BoardScreen": { + "ignore": true + }, + "io.redspace.ironsspellbooks.gui.inscription_table.InscriptionTableScreen": { + "ignore": true + }, + "com.blakebr0.mysticalagriculture.client.screen.TinkeringTableScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.screens.TrappedPresentBlockGui": { + "ignore": true + }, + "io.github.hw9636.autosmithingtable.client.AutoSmithingTableScreen": { + "ignore": true + }, + "com.supermartijn642.core.gui.WidgetContainerScreen": { + "ignore": true + }, + "com.supermartijn642.core.gui.WidgetScreen": { + "ignore": true + }, + "cofh.thermal.dynamics.client.gui.attachment.FluidFilterAttachmentScreen": { + "ignore": true + }, + "com.finallion.graveyard.client.gui.OssuaryScreen": { + "ignore": true + }, + "com.illusivesoulworks.culinaryconstruct.client.CulinaryStationScreen": { + "ignore": true + }, + "tfar.dankstorage.client.screens.DankStorageScreen": { + "ignore": true + }, + "cofh.thermal.dynamics.client.gui.attachment.FluidServoAttachmentScreen": { + "ignore": true + }, + "cofh.thermal.dynamics.client.gui.attachment.EnergyLimiterAttachmentScreen": { + "ignore": true + }, + "cofh.thermal.dynamics.client.gui.attachment.FluidTurboServoAttachmentScreen": { + "ignore": true + }, + "cofh.thermal.dynamics.client.gui.ItemBufferScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.EnderCellScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.EnergyCellScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.FurnatorScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.MagmatorScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.PlayerTransmitterScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.ThermoScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.SolarScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.EnergyHopperScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.DischargerScreen": { + "ignore": true + }, + "owmii.powah.client.screen.container.ReactorScreen": { + "ignore": true + }, + "net.darkhax.botanypots.block.inv.BotanyPotScreen": { + "ignore": true + }, + "agency.highlysuspect.packages.client.PackageMakerScreen": { + "ignore": true + }, + "com.telepathicgrunt.the_bumblezone.screens.CrystallineFlowerScreen": { + "ignore": true + }, + "io.github.mortuusars.chalk.client.gui.ChalkBoxScreen": { + "ignore": true + }, + "com.teammoeg.caupona.client.PortableBrazierScreen": { + "ignore": true + }, + "com.tom.storagemod.gui.CraftingTerminalScreen": { + "ignore": true + }, + "com.lothrazar.cyclic.item.crafting.simple.CraftingStickScreen": { + "ignore": true + }, + "com.lothrazar.cyclic.item.crafting.CraftingBagScreen": { + "ignore": true + }, + "com.lothrazar.cyclic.item.datacard.filter.ScreenFilterCard": { + "ignore": true + }, + "com.lothrazar.cyclic.item.ender.EnderBookScreen": { + "ignore": true + }, + "com.lothrazar.cyclic.item.lunchbox.ScreenLunchbox": { + "ignore": true + }, + "vazkii.botania.client.gui.box.BaubleBoxGui": { + "ignore": true + }, + "vazkii.botania.client.gui.bag.FlowerPouchGui": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.semiblock.LogisticsRequesterScreen": { + "ignore": true + }, + "shadows.apotheosis.ench.library.EnchLibraryScreen": { + "ignore": true + }, + "com.teammoeg.caupona.client.StewPotScreen": { + "ignore": true + }, + "de.maxhenkel.easyvillagers.gui.ConverterScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.screens.PulleyBlockGui": { + "ignore": true + }, + "com.tom.storagemod.gui.StorageTerminalScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.screens.NoticeBoardGui": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.screens.PresentBlockScreen": { + "ignore": true + }, + "dev.smolinacadena.refinedcooking.screen.KitchenAccessPointScreen": { + "ignore": true + }, + "ca.teamdman.sfm.client.gui.screen.ManagerScreen": { + "ignore": true + }, + "shetiphian.platforms.client.gui.GuiPlatFormer": { + "ignore": true + }, + "com.blakebr0.mysticalagriculture.client.screen.HarvesterScreen": { + "ignore": true + }, + "de.maxhenkel.easyvillagers.gui.IncubatorScreen": { + "ignore": true + }, + "net.permutated.pylons.client.gui.InterdictionPylonScreen": { + "ignore": true + }, + "info.u_team.useful_railroads.screen.TeleportRailScreen": { + "ignore": true + }, + "me.tepis.integratednbt.NBTExtractorScreen": { + "ignore": true + }, + "com.chaosthedude.endermail.gui.PackageScreen": { + "ignore": true + }, + "com.chaosthedude.endermail.gui.LockerScreen": { + "ignore": true + }, + "net.blay09.mods.cookingforblockheads.client.gui.screen.SpiceRackScreen": { + "ignore": true + }, + "com.github.alexthe666.alexsmobs.client.gui.GUITransmutationTable": { + "ignore": true + }, + "com.ashindigo.storagecabinet.client.screen.CabinetManagerScreen": { + "ignore": true + }, + "cy.jdkdigital.productivebees.container.gui.BreedingChamberScreen": { + "ignore": true + }, + "de.castcrafter.travelanchors.block.ScreenTravelAnchor": { + "ignore": true + }, + "vazkii.quark.addons.oddities.client.screen.CrateScreen": { + "ignore": true + }, + "com.the9grounds.aeadditions.client.gui.MEWirelessTransceiverScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.AmadronScreen": { + "ignore": true + }, + "net.roguelogix.biggerreactors.machine.client.CyaniteReprocessorScreen": { + "ignore": true + }, + "com.hrznstudio.titanium.client.screen.container.BasicAddonScreen": { + "ignore": true + }, + "com.tynoxs.buildersdelight.content.client.gui.ChiselScreen": { + "ignore": true + }, + "com.tynoxs.buildersdelight.content.client.gui.HammerScreen": { + "ignore": true + }, + "com.darkere.crashutils.Screens.PlayerInvScreen": { + "ignore": true + }, + "org.cyclops.integrateddynamics.core.client.gui.container.ContainerScreenAspectSettings": { + "ignore": true + }, + "org.cyclops.integratedcrafting.client.gui.ContainerScreenPartInterfaceCraftingSettings": { + "ignore": true + }, + "org.cyclops.integrateddynamics.core.client.gui.container.ContainerScreenPartSettings": { + "ignore": true + }, + "vapourdrive.furnacemk2.furnace.FurnaceMk2Screen": { + "ignore": true + }, + "com.lothrazar.cyclic.block.tp.ScreenTeleport": { + "ignore": true + }, + "com.lothrazar.cyclic.block.wireless.fluid.ScreenWirelessFluid": { + "ignore": true + }, + "com.direwolf20.laserio.client.screens.LaserNodeScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.AssemblerScreen": { + "ignore": true + }, + "com.direwolf20.laserio.client.screens.FilterTagScreen": { + "ignore": true + }, + "com.direwolf20.laserio.client.screens.FilterBasicScreen": { + "ignore": true + }, + "com.direwolf20.laserio.client.screens.FilterCountScreen": { + "ignore": true + }, + "com.direwolf20.laserio.client.screens.CardItemScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.AirCannonScreen": { + "ignore": true + }, + "irongenerators.client.gui.GeneratorGUIScreen": { + "ignore": true + }, + "com.direwolf20.mininggadgets.client.screens.FilterScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.PressureChamberInterfaceScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.ChargingStationScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.ElevatorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.PneumaticDoorBaseScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.VacuumPumpScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.UVLightBoxScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.SecurityStationInventoryScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.UniversalSensorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.AerialInterfaceScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.ElectrostaticCompressorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.AphorismTileScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.OmnidirectionalHopperScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.ProgrammerScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.CreativeCompressorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.CreativeCompressedIronBlockScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.LiquidCompressorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.AdvancedLiquidCompressorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.AirCompressorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.AdvancedAirCompressorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.LiquidHopperScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.ProgrammableControllerScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.GasLiftScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.RefineryControllerScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.ThermopneumaticProcessingPlantScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.SentryTurretScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.KeroseneLampScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.FluxCompressorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.PneumaticDynamoScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.ThermalCompressorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.EtchingTankScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.FluidTankScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.ReinforcedChestScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.SmartChestScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.TagWorkbenchScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.FluidMixerScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.VacuumTrapScreen": { + "ignore": true + }, + "com.tynoxs.buildersdelight.client.gui.ChiselScreen": { + "ignore": true + }, + "com.leobeliik.convenientcurioscontainer.gui.ConvenientScreen": { + "ignore": true + }, + "com.tynoxs.buildersdelight.client.gui.HammerScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.SpawnerExtractorScreen": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiDigitalMiner": { + "ignore": true + }, + "mekanism.generators.client.gui.GuiFissionReactor": { + "ignore": true + }, + "mekanism.client.gui.GuiSPS": { + "ignore": true + }, + "mekanism.generators.client.gui.GuiFusionReactorController": { + "ignore": true + }, + "mekanism.generators.client.gui.GuiIndustrialTurbine": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiElectricMachine": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiPrecisionSawmill": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiMetallurgicInfuser": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiAdvancedElectricMachine": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiCombiner": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiFactory": { + "ignore": true + }, + "mekanism.client.gui.GuiSecurityDesk": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiElectricPump": { + "ignore": true + }, + "mekanism.client.gui.item.GuiPersonalStorageItem": { + "ignore": true + }, + "mekanism.client.gui.GuiLogisticalSorter": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiRotaryCondensentrator": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiChemicalOxidizer": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiChemicalInfuser": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiElectrolyticSeparator": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiChemicalDissolutionChamber": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiChemicalWasher": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiChemicalCrystallizer": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiNutritionalLiquifier": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiIsotopicCentrifuge": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiPRC": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiSeismicVibrator": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiFluidicPlenisher": { + "ignore": true + }, + "mekanism.client.gui.GuiLaserAmplifier": { + "ignore": true + }, + "mekanism.client.gui.GuiLaserTractorBeam": { + "ignore": true + }, + "mekanism.client.gui.GuiQuantumEntangloporter": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiSolarNeutronActivator": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiOredictionificator": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiResistiveHeater": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiFormulaicAssemblicator": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiFuelwoodHeater": { + "ignore": true + }, + "mekanism.client.gui.GuiModificationStation": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiAntiprotonicNucleosynthesizer": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiPigmentExtractor": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiPigmentMixer": { + "ignore": true + }, + "mekanism.client.gui.machine.GuiPaintingMachine": { + "ignore": true + }, + "mekanism.client.gui.qio.GuiQIODriveArray": { + "ignore": true + }, + "mekanism.client.gui.qio.GuiQIODashboard": { + "ignore": true + }, + "mekanism.client.gui.qio.GuiQIOImporter": { + "ignore": true + }, + "mekanism.client.gui.qio.GuiQIOExporter": { + "ignore": true + }, + "mekanism.client.gui.qio.GuiQIORedstoneAdapter": { + "ignore": true + }, + "mekanism.client.gui.GuiFluidTank": { + "ignore": true + }, + "mekanism.client.gui.GuiChemicalTank": { + "ignore": true + }, + "mekanism.client.gui.GuiEnergyCube": { + "ignore": true + }, + "mekanism.generators.client.gui.GuiHeatGenerator": { + "ignore": true + }, + "mekanism.generators.client.gui.GuiSolarGenerator": { + "ignore": true + }, + "mekanism.generators.client.gui.GuiGasGenerator": { + "ignore": true + }, + "mekanism.generators.client.gui.GuiBioGenerator": { + "ignore": true + }, + "mekanism.generators.client.gui.GuiWindGenerator": { + "ignore": true + }, + "mekanism.client.gui.GuiThermalEvaporationController": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.MillstoneScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.CrucibleScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.SteamBoilerScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.RotaryPumpScreen": { + "ignore": true + }, + "shadows.apotheosis.adventure.affix.salvaging.SalvagingScreen": { + "ignore": true + }, + "shadows.apotheosis.adventure.affix.reforging.ReforgingScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.SteamTurbineScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.FluidTankScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.FireboxScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.SmelterScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.SaltReactorScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.RadiatorScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.FluidCoolerScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.FatCollectorScreen": { + "ignore": true + }, + "org.cyclops.everlastingabilities.client.gui.ContainerScreenAbilityContainer": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.FatCongealerScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.WaterCentrifugeScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.BeamExtractorScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.ColorChartScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.BeaconHarnessScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.FatFeederScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.CopshowiumMakerScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.ReagentFilterScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.HeatLimiterScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.IceboxScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.StampMillScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.OreCleanserScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.BlastFurnaceScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.SteamerScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.WindingTableScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.DetailedAutoCrafterScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.SequenceBoxScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.FormulationVatScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.BrewingVatScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.AutoInjectorScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.ColdStorageScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.HydroponicsTroughScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.StasisStorageScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.CultivatorVatScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.IncubatorScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.BloodCentrifugeScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.EmbryoLabScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.HeatReservoirCreativeScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.MasterAxisCreativeScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.BeamExtractorCreativeScreen": { + "ignore": true + }, + "com.Da_Technomancer.crossroads.gui.screen.DetailedCrafterScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineFurnaceScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineSawmillScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachinePulverizerScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineSmelterScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineInsolatorScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineCentrifugeScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachinePressScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineCrucibleScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineChillerScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineRefineryScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachinePyrolyzerScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineBottlerScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineBrewerScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.machine.MachineCrafterScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.dynamo.DynamoStirlingScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.dynamo.DynamoCompressionScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.dynamo.DynamoMagmaticScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.dynamo.DynamoNumismaticScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.dynamo.DynamoLapidaryScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.dynamo.DynamoDisenchantmentScreen": { + "ignore": true + }, + "cofh.thermal.expansion.client.gui.dynamo.DynamoGourmandScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.device.DeviceTreeExtractorScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.device.DeviceWaterGenScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.device.DeviceRockGenScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.device.DeviceCollectorScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.device.DeviceNullifierScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.device.DevicePotionDiffuserScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.TinkerBenchScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.ChargeBenchScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.storage.EnergyCellScreen": { + "ignore": true + }, + "cofh.thermal.core.client.gui.storage.FluidCellScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.PoweredCraftingTableScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.QuarryScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.PumpScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.BatteryBoxScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.BasicGeneratorScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.GeothermalGeneratorScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.SolarPanelScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.NuclearReactorScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.MachineScreen": { + "ignore": true + }, + "dev.ftb.mods.ftbic.screen.AntimatterConstructorScreen": { + "ignore": true + }, + "me.desht.pneumaticcraft.client.gui.PressurizedSpawnerScreen": { + "ignore": true + }, + "net.minecraft.client.gui.screens.inventory.InventoryScreen": { + "buttonHints": { + "SORT": { + "horizontalOffset": -12, + "bottom": 2 + }, + "MOVE_TO_CONTAINER": { + "bottom": -10 + }, + "SORT_ROWS": { + "bottom": 14 + }, + "SORT_COLUMNS": { + "bottom": 14 + }, + "SHOW_EDITOR": { + "horizontalOffset": 27, + "top": -5 + } + } + }, + "top.theillusivec4.curios.client.gui.CuriosScreen": { + "buttonHints": { + "SORT": { + "horizontalOffset": -12, + "bottom": 2 + }, + "MOVE_TO_CONTAINER": { + "bottom": -10 + }, + "SORT_COLUMNS": { + "bottom": 14 + }, + "SORT_ROWS": { + "bottom": 14 + } + } + }, + "net.p3pp3rf1y.sophisticatedstorage.client.gui.StorageScreen": { + "buttonHints": { + "MOVE_TO_CONTAINER": { + "horizontalOffset": 4, + "bottom": 2 + }, + "MOVE_TO_PLAYER": { + "horizontalOffset": 29 + }, + "SORT": { + "horizontalOffset": 29 + }, + "SORT_COLUMNS": { + "horizontalOffset": 29 + }, + "SORT_ROWS": { + "horizontalOffset": 29 + } + } + }, + "com.mrcrayfish.furniture.refurbished.client.gui.screen.WorkbenchScreen": { + "ignore": true + }, + "com.mrcrayfish.furniture.refurbished.client.gui.screen.ElectricityGeneratorScreen": { + "ignore": true + } +} \ No newline at end of file diff --git a/minecraft/config/inventoryprofilesnext/integrationHints/upgraded-From-Pre-v1.2.5.json b/minecraft/config/inventoryprofilesnext/integrationHints/upgraded-From-Pre-v1.2.5.json new file mode 100644 index 0000000..e4c9ee8 --- /dev/null +++ b/minecraft/config/inventoryprofilesnext/integrationHints/upgraded-From-Pre-v1.2.5.json @@ -0,0 +1,1085 @@ +{ + "appeng.client.gui.implementations.CellWorkbenchScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.EnergyLevelEmitterScreen": { + "ignore": true + }, + "appeng.client.gui.me.items.PatternEncodingTermScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.FormationPlaneScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.StorageLevelEmitterScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.StorageBusScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.SpatialIOPortScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.ItemInterfaceScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.FluidInterfaceScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.IOPortScreen": { + "ignore": true + }, + "appeng.client.gui.me.items.ItemTerminalScreen": { + "ignore": true + }, + "appeng.client.gui.me.items.PatternTermScreen": { + "ignore": true + }, + "appeng.client.gui.me.items.CraftingTermScreen": { + "ignore": true + }, + "appeng.client.gui.me.interfaceterminal.InterfaceTerminalScreen": { + "ignore": true + }, + "appeng.client.gui.me.fluids.FluidTerminalScreen": { + "ignore": true + }, + "com.mrcrayfish.goldenhopper.client.gui.screens.inventory.GoldenHopperScreen": { + "ignore": true + }, + "com.misha.blocks.BlockBurnerScreen": { + "ignore": true + }, + "com.misha.blocks.CoalInfuserScreen": { + "ignore": true + }, + "com.misha.blocks.InductionFurnaceScreen": { + "ignore": true + }, + "com.misha.blocks.LavaGeneratorScreen": { + "ignore": true + }, + "com.misha.blocks.BatteryScreen": { + "ignore": true + }, + "com.misha.blocks.CentrifugeScreen": { + "ignore": true + }, + "com.misha.blocks.CompressorScreen": { + "ignore": true + }, + "com.misha.blocks.UpgraderScreen": { + "ignore": true + }, + "tv.mongotheelder.pitg.screens.GlassPaneTableScreen": { + "ignore": true + }, + "de.maxhenkel.pipez.gui.ExtractScreen": { + "ignore": true + }, + "cy.jdkdigital.productivebees.container.gui.FeederScreen": { + "ignore": true + }, + "cy.jdkdigital.productivebees.container.gui.AdvancedBeehiveScreen": { + "ignore": true + }, + "com.yogpc.qp.machines.module.ScreenQuarryModule": { + "ignore": true + }, + "com.yogpc.qp.machines.workbench.ScreenWorkbench": { + "ignore": true + }, + "com.yogpc.qp.machines.mover.MoverScreen": { + "ignore": true + }, + "com.yogpc.qp.machines.advquarry.AdvQuarryScreen": { + "ignore": true + }, + "com.yogpc.qp.machines.mini_quarry.MiniQuarryScreen": { + "ignore": true + }, + "com.yogpc.qp.machines.placer.PlacerScreen": { + "ignore": true + }, + "li.cil.scannable.client.gui.ConfigurableEntityScannerModuleContainerScreen": { + "ignore": true + }, + "li.cil.scannable.client.gui.ConfigurableBlockScannerModuleContainerScreen": { + "ignore": true + }, + "net.geforcemods.securitycraft.screen.BlockReinforcerScreen": { + "ignore": true + }, + "net.geforcemods.securitycraft.screen.KeycardReaderScreen": { + "ignore": true + }, + "net.geforcemods.securitycraft.screen.ProjectorScreen": { + "ignore": true + }, + "net.silentchaos512.gear.item.blueprint.book.BlueprintBookContainerScreen": { + "ignore": true + }, + "com.supermartijn642.simplemagnets.gui.MagnetContainerScreen": { + "ignore": true + }, + "com.tom.storagemod.gui.GuiStorageTerminal": { + "ignore": true + }, + "com.tom.storagemod.gui.GuiCraftingTerminal": { + "ignore": true + }, + "com.tom.storagemod.gui.GuiLevelEmitter": { + "ignore": true + }, + "dev.gigaherz.toolbelt.common.BeltScreen": { + "ignore": true + }, + "com.supermartijn642.trashcans.screen.ItemTrashCanScreen": { + "ignore": true + }, + "com.supermartijn642.trashcans.screen.LiquidTrashCanScreen": { + "ignore": true + }, + "com.supermartijn642.trashcans.screen.EnergyTrashCanScreen": { + "ignore": true + }, + "com.supermartijn642.trashcans.screen.UltimateTrashCanScreen": { + "ignore": true + }, + "mods.waterstrainer.gui.GuiStrainer": { + "ignore": true + }, + "mods.waterstrainer.gui.GuiWormBin": { + "ignore": true + }, + "lain.mods.cos.impl.client.gui.GuiCosArmorInventory": { + "ignore": true + }, + "fuzs.enchantinginfuser.client.gui.screens.inventory.InfuserScreen": { + "ignore": true + }, + "com.lothrazar.cyclic.item.storagebag.ScreenStorageBag": { + "ignore": true + }, + "shadows.click.block.gui.AutoClickScreen": { + "ignore": true + }, + "com.the_millman.christmasfestivity.client.gui.EpiphanyStockingScreen": { + "ignore": true + }, + "com.the_millman.christmasfestivity.client.gui.ChristmasPresentScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.StorageBlockScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.FluidStorageBlockScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.CrafterManagerScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.CraftingMonitorScreen": { + "ignore": true + }, + "com.simibubi.create.content.logistics.block.redstone.StockpileSwitchScreen": { + "ignore": true + }, + "com.simibubi.create.content.curiosities.toolbox.ToolboxScreen": { + "ignore": true + }, + "com.simibubi.create.content.logistics.item.LinkedControllerScreen": { + "ignore": true + }, + "com.simibubi.create.content.curiosities.symmetry.SymmetryWandScreen": { + "ignore": true + }, + "com.simibubi.create.content.logistics.item.filter.AttributeFilterScreen": { + "ignore": true + }, + "com.simibubi.create.content.curiosities.tools.BlueprintScreen": { + "ignore": true + }, + "se.mickelus.tetra.blocks.workbench.gui.WorkbenchScreen": { + "ignore": true + }, + "com.direwolf20.buildinggadgets.client.screen.CopyGUI": { + "ignore": true + }, + "com.direwolf20.buildinggadgets.client.screen.DestructionGUI": { + "ignore": true + }, + "com.direwolf20.buildinggadgets.client.screen.MaterialListGUI": { + "ignore": true + }, + "com.direwolf20.buildinggadgets.client.screen.TemplateManagerGUI": { + "ignore": true + }, + "com.direwolf20.charginggadgets.blocks.chargingstation.ChargingStationScreen": { + "ignore": true + }, + "com.direwolf20.mininggadgets.client.screens.MiningSettingScreen": { + "ignore": true + }, + "org.cyclops.colossalchests.client.gui.container.ContainerScreenColossalChest": { + "ignore": true + }, + "net.joefoxe.hexerei.screen.HerbJarScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.CircuitTableScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.ToolboxScreen": { + "ignore": true + }, + "blusunrize.lib.manual.gui.ManualScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.AlloySmelterScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.CokeOvenScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.BlastFurnaceScreen": { + "ignore": true + }, + "ninjaphenix.expandedstorage.client.MiniChestScreen": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.nasaworkbench.NasaWorkbenchGuiWindow": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.rover.RoverGuiWindow": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.rocket.RocketGuiWindow": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.planetselection.PlanetSelectionGuiWindow": { + "ignore": true + }, + "se.gory_moon.chargers.client.ChargerScreen": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.crafter.client.GuiCrafter": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiRedstoneInformation": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.teleporter.client.GuiTeleportProbe": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.teleporter.client.GuiAdvancedPorter": { + "ignore": true + }, + "mcjty.rftoolsbuilder.modules.builder.client.GuiShapeCard": { + "ignore": true + }, + "com.nyfaria.nyfsquiver.core.interfaces.QuiverContainerScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.gui.RedMerchantGui": { + "ignore": true + }, + "org.cyclops.integratedterminals.client.gui.container.ContainerScreenTerminalStorage": { + "ignore": true + }, + "org.cyclops.integratedcrafting.client.gui.ContainerScreenPartInterfaceCrafting": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenPartWriter": { + "ignore": true + }, + "org.cyclops.integratedterminals.client.gui.container.ContainerScreenTerminalCraftingJobs": { + "ignore": true + }, + "org.cyclops.integratedtunnels.core.part.ContainerScreenInterfaceSettings": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenPartReader": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenPartDisplay": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenOnTheDynamicsOfIntegration": { + "ignore": true + }, + "shadows.hostilenetworks.gui.DeepLearnerScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.MixerScreen": { + "ignore": true + }, + "com.mrcrayfish.furniture.client.gui.screen.inventory.MailBoxScreen": { + "ignore": true + }, + "com.legacy.blue_skies.client.gui.screen.BagOfSpoilsScreen": { + "ignore": true + }, + "net.minecraft.client.gui.screens.inventory.SmithingScreen": { + "ignore": true + }, + "mob_grinding_utils.inventory.client.GuiSaw": { + "ignore": true + }, + "mob_grinding_utils.inventory.client.GuiFan": { + "ignore": true + }, + "mob_grinding_utils.inventory.client.GuiAbsorptionHopper": { + "ignore": true + }, + "mob_grinding_utils.inventory.client.GuiXPSolidifier": { + "ignore": true + }, + "mob_grinding_utils.inventory.client.GuiMGUSpawner": { + "ignore": true + }, + "slimeknights.tconstruct.tables.client.inventory.TinkerChestScreen": { + "ignore": true + }, + "slimeknights.mantle.client.screen.BackgroundContainerScreen": { + "ignore": true + }, + "slimeknights.tconstruct.smeltery.client.screen.HeatingStructureScreen": { + "ignore": true + }, + "slimeknights.tconstruct.smeltery.client.screen.MelterScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.ToolboxBlockScreen": { + "ignore": true + }, + "net.bdew.generators.controllers.turbine.GuiFuelTurbine": { + "ignore": true + }, + "net.bdew.generators.controllers.syngas.GuiSyngas": { + "ignore": true + }, + "ironfurnaces.gui.BlockIronFurnaceScreen": { + "ignore": true + }, + "ironfurnaces.gui.BlockSilverFurnaceScreen": { + "ignore": true + }, + "ironfurnaces.gui.BlockWirelessEnergyHeaterScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.DriveScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.InscriberScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.SecurityStationScreen": { + "ignore": true + }, + "appeng.client.gui.me.common.MEStorageScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.IOBusScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.PatternProviderScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.InterfaceScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.ChestScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.CondenserScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.VibrationChamberScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.MolecularAssemblerScreen": { + "ignore": true + }, + "appeng.client.gui.implementations.WirelessScreen": { + "ignore": true + }, + "dan200.computercraft.client.gui.GuiTurtle": { + "ignore": true + }, + "dan200.computercraft.client.gui.GuiDiskDrive": { + "ignore": true + }, + "dan200.computercraft.client.gui.GuiPrinter": { + "ignore": true + }, + "mod.chiselsandbits.client.screens.BitBagScreen": { + "ignore": true + }, + "mod.chiselsandbits.client.screens.ModificationTableScreen": { + "ignore": true + }, + "mod.chiselsandbits.client.screens.ChiseledPrinterScreen": { + "ignore": true + }, + "net.blay09.mods.cookingforblockheads.client.gui.screen.RecipeBookScreen": { + "ignore": true + }, + "net.blay09.mods.cookingforblockheads.client.gui.screen.OvenScreen": { + "ignore": true + }, + "ovh.corail.woodcutter.client.gui.WoodcutterScreen": { + "ignore": true + }, + "de.maxhenkel.easyvillagers.gui.AutoTraderScreen": { + "ignore": true + }, + "de.maxhenkel.easyvillagers.gui.OutputScreen": { + "ignore": true + }, + "de.maxhenkel.easyvillagers.gui.BreederScreen": { + "ignore": true + }, + "de.maxhenkel.easyvillagers.gui.VillagerIOScreen": { + "ignore": true + }, + "doggytalents.client.screen.FoodBowlScreen": { + "ignore": true + }, + "sirttas.elementalcraft.item.source.analysis.SourceAnalysisGlassScreen": { + "ignore": true + }, + "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableGui": { + "ignore": true + }, + "shetiphian.enderchests.client.gui.GuiEnderChest": { + "ignore": true + }, + "wile.engineersdecor.blocks.EdLabeledCrate$LabeledCrateGui": { + "ignore": true + }, + "wile.engineersdecor.blocks.EdFurnace$FurnaceGui": { + "ignore": true + }, + "wile.engineersdecor.blocks.EdElectricalFurnace$ElectricalFurnaceGui": { + "ignore": true + }, + "wile.engineersdecor.blocks.EdHopper$HopperGui": { + "ignore": true + }, + "wile.engineersdecor.blocks.EdDropper$DropperGui": { + "ignore": true + }, + "wile.engineersdecor.blocks.EdPlacer$PlacerGui": { + "ignore": true + }, + "wile.engineersdecor.blocks.EdWasteIncinerator$WasteIncineratorGui": { + "ignore": true + }, + "com.Da_Technomancer.essentials.gui.ItemShifterScreen": { + "ignore": true + }, + "com.Da_Technomancer.essentials.gui.FluidShifterScreen": { + "ignore": true + }, + "com.Da_Technomancer.essentials.gui.AutoCrafterScreen": { + "ignore": true + }, + "com.supermartijn642.itemcollectors.screen.AdvancedCollectorScreen": { + "ignore": true + }, + "cy.jdkdigital.productivebees.container.gui.BottlerScreen": { + "ignore": true + }, + "cy.jdkdigital.productivebees.container.gui.CentrifugeScreen": { + "ignore": true + }, + "cy.jdkdigital.productivebees.container.gui.HoneyGeneratorScreen": { + "ignore": true + }, + "cy.jdkdigital.productivebees.container.gui.CatcherScreen": { + "ignore": true + }, + "cy.jdkdigital.productivebees.container.gui.IncubatorScreen": { + "ignore": true + }, + "cy.jdkdigital.productivebees.container.gui.GeneIndexerScreen": { + "ignore": true + }, + "li.cil.scannable.client.gui.ScannerContainerScreen": { + "ignore": true + }, + "net.gigabit101.shrink.client.screen.ShrinkScreen": { + "ignore": true + }, + "net.silentchaos512.gear.block.salvager.SalvagerScreen": { + "ignore": true + }, + "net.silentchaos512.gear.block.charger.ChargerScreen": { + "ignore": true + }, + "net.silentchaos512.gear.block.compounder.MetalAlloyerScreen": { + "ignore": true + }, + "net.silentchaos512.gear.block.compounder.RecrystallizerScreen": { + "ignore": true + }, + "net.silentchaos512.gear.block.compounder.RefabricatorScreen": { + "ignore": true + }, + "net.silentchaos512.gear.block.press.MetalPressScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.gui.NoticeBoardGui": { + "ignore": true + }, + "com.dannyandson.tinyredstone.gui.ChopperScreen": { + "ignore": true + }, + "net.blay09.mods.waystones.client.gui.screen.WarpPlateScreen": { + "ignore": true + }, + "com.lothrazar.plaingrinder.grind.ScreenGrinder": { + "ignore": true + }, + "net.blay09.mods.farmingforblockheads.client.gui.screen.MarketScreen": { + "ignore": true + }, + "com.lothrazar.cyclic.block.generatorfluid.ScreenGeneratorFluid": { + "ignore": true + }, + "com.lothrazar.cyclic.block.generatoritem.ScreenGeneratorDrops": { + "ignore": true + }, + "com.lothrazar.cyclic.block.packager.ScreenPackager": { + "ignore": true + }, + "com.lothrazar.cyclic.block.shapedata.ScreenShapedata": { + "ignore": true + }, + "com.lothrazar.cyclic.block.battery.ScreenBattery": { + "ignore": true + }, + "com.lothrazar.cyclic.block.crate.ScreenCrate": { + "ignore": true + }, + "com.lothrazar.cyclic.block.clock.ScreenClock": { + "ignore": true + }, + "com.lothrazar.cyclic.block.anvilvoid.ScreenAnvilVoid": { + "ignore": true + }, + "com.lothrazar.cyclic.block.wireless.energy.ScreenWirelessEnergy": { + "ignore": true + }, + "com.lothrazar.cyclic.block.wireless.item.ScreenWirelessItem": { + "ignore": true + }, + "com.lothrazar.cyclic.block.soundrecord.ScreenSoundRecorder": { + "ignore": true + }, + "com.lothrazar.cyclic.block.soundplay.ScreenSoundPlayer": { + "ignore": true + }, + "com.lothrazar.cyclic.block.generatorfuel.ScreenGeneratorFuel": { + "ignore": true + }, + "com.lothrazar.cyclic.block.generatorfood.ScreenGeneratorFood": { + "ignore": true + }, + "com.lothrazar.cyclic.block.wireless.redstone.ScreenTransmit": { + "ignore": true + }, + "com.lothrazar.cyclic.block.disenchant.ScreenDisenchant": { + "ignore": true + }, + "com.lothrazar.cyclic.block.fishing.ScreenFisher": { + "ignore": true + }, + "com.lothrazar.cyclic.block.dropper.ScreenDropper": { + "ignore": true + }, + "com.lothrazar.cyclic.block.user.ScreenUser": { + "ignore": true + }, + "com.lothrazar.cyclic.block.breaker.ScreenBreaker": { + "ignore": true + }, + "com.lothrazar.cyclic.block.placer.ScreenPlacer": { + "ignore": true + }, + "com.lothrazar.cyclic.block.melter.ScreenMelter": { + "ignore": true + }, + "com.lothrazar.cyclic.block.peatfarm.ScreenPeatFarm": { + "ignore": true + }, + "com.lothrazar.cyclic.block.solidifier.ScreenSolidifier": { + "ignore": true + }, + "com.lothrazar.cyclic.block.fan.ScreenFan": { + "ignore": true + }, + "com.lothrazar.cyclic.block.anvil.ScreenAnvil": { + "ignore": true + }, + "com.lothrazar.cyclic.block.placerfluid.ScreenPlacerFluid": { + "ignore": true + }, + "com.lothrazar.cyclic.block.collectfluid.ScreenFluidCollect": { + "ignore": true + }, + "com.lothrazar.cyclic.block.collectitem.ScreenItemCollector": { + "ignore": true + }, + "com.lothrazar.cyclic.block.harvester.ScreenHarvester": { + "ignore": true + }, + "com.lothrazar.cyclic.block.shapebuilder.ScreenStructure": { + "ignore": true + }, + "com.lothrazar.cyclic.block.miner.ScreenMiner": { + "ignore": true + }, + "com.lothrazar.cyclic.block.forester.ScreenForester": { + "ignore": true + }, + "com.lothrazar.cyclic.block.expcollect.ScreenExpPylon": { + "ignore": true + }, + "com.lothrazar.cyclic.block.anvilmagma.ScreenAnvilMagma": { + "ignore": true + }, + "com.lothrazar.cyclic.block.beaconpotion.ScreenPotion": { + "ignore": true + }, + "com.lothrazar.cyclic.block.crafter.ScreenCrafter": { + "ignore": true + }, + "com.lothrazar.cyclic.block.workbench.ScreenWorkbench": { + "ignore": true + }, + "de.ellpeck.prettypipes.terminal.containers.ItemTerminalGui": { + "ignore": true + }, + "de.ellpeck.prettypipes.terminal.containers.CraftingTerminalGui": { + "ignore": true + }, + "de.ellpeck.prettypipes.pressurizer.PressurizerGui": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.grid.GridScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.DiskDriveScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.ExternalStorageScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.ImporterScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.ExporterScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.ControllerScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.InterfaceScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.FluidInterfaceScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.ConstructorScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.DestructorScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.NetworkTransmitterScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.RelayScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.DetectorScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.SecurityManagerScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.WirelessTransmitterScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.DiskManipulatorScreen": { + "ignore": true + }, + "com.refinedmods.refinedstorage.screen.CrafterScreen": { + "ignore": true + }, + "edivad.extrastorage.client.screen.AdvancedCrafterScreen": { + "ignore": true + }, + "de.melanx.extradisks.blocks.item.ExtraItemStorageBlockScreen": { + "ignore": true + }, + "de.melanx.extradisks.blocks.fluid.ExtraFluidStorageBlockScreen": { + "ignore": true + }, + "edivad.extrastorage.client.screen.AdvancedExporterScreen": { + "ignore": true + }, + "edivad.extrastorage.client.screen.AdvancedImporterScreen": { + "ignore": true + }, + "com.simibubi.create.content.schematics.block.SchematicannonScreen": { + "ignore": true + }, + "com.simibubi.create.content.schematics.block.SchematicTableScreen": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.generators.generator.ScreenGenerator": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.generators.solar_panels.ScreenSolarGenerator": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.generators.geo_generator.ScreenGeoGenerator": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.battery_box.ScreenBatteryBox": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.electric_furnace.ScreenElectricFurnace": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.crusher.ScreenCrusher": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.compressor.ScreenCompressor": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.extractor.ScreenExtractor": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.sawmill.ScreenSawmill": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.extruder.ScreenExtruder": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.alloy_smelter.ScreenAlloySmelter": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.canning_machine.ScreenCanningMachine": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.fluid_enricher.ScreenFluidEnricher": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.recycler.ScreenRecycler": { + "ignore": true + }, + "com.direwolf20.mininggadgets.client.screens.ModificationTableScreen": { + "ignore": true + }, + "net.joefoxe.hexerei.screen.CofferScreen": { + "ignore": true + }, + "net.joefoxe.hexerei.screen.MixingCauldronScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.ModWorkbenchScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.ClocheScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.ChemTurretScreen": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.GunTurretScreen": { + "ignore": true + }, + "net.mehvahdjukaar.supplementaries.client.gui.PresentBlockGui": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.generators.semifluid_generator.ScreenSemifluidGenerator": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.machines.fermenter.ScreenFermenter": { + "ignore": true + }, + "com.maciej916.indreb.common.block.impl.generators.crystalline_generator.ScreenCrystallineGenerator": { + "ignore": true + }, + "com.blakebr0.mysticalagriculture.client.screen.ReprocessorScreen": { + "ignore": true + }, + "beyond_earth_giselle_addon.client.gui.FuelLoaderScreen": { + "ignore": true + }, + "beyond_earth_giselle_addon.client.gui.ElectricBlastFurnaceScreen": { + "ignore": true + }, + "beyond_earth_giselle_addon.client.gui.AdvancedCompressorScreen": { + "ignore": true + }, + "beyond_earth_giselle_addon.client.gui.GravityNormalizerScreen": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.coalgenerator.CoalGeneratorGuiWindow": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.compressor.CompressorGuiWindow": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.fuelrefinery.FuelRefineryGuiWindow": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.oxygenloader.OxygenLoaderGuiWindow": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.oxygenbubbledistributor.OxygenBubbleDistributorGuiWindow": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.solarpanel.SolarPanelGuiWindow": { + "ignore": true + }, + "net.mrscauthd.beyond_earth.gui.screens.waterpump.WaterPumpGuiWindow": { + "ignore": true + }, + "mcjty.rftoolsbase.modules.infuser.client.GuiMachineInfuser": { + "ignore": true + }, + "mcjty.rftoolspower.modules.blazing.client.GuiBlazingGenerator": { + "ignore": true + }, + "mcjty.rftoolspower.modules.blazing.client.GuiBlazingAgitator": { + "ignore": true + }, + "mcjty.rftoolspower.modules.blazing.client.GuiBlazingInfuser": { + "ignore": true + }, + "mcjty.rftoolspower.modules.dimensionalcell.client.GuiDimensionalCell": { + "ignore": true + }, + "mcjty.rftoolspower.modules.endergenic.client.GuiEnderMonitor": { + "ignore": true + }, + "mcjty.rftoolspower.modules.endergenic.client.GuiPearlInjector": { + "ignore": true + }, + "mcjty.rftoolspower.modules.endergenic.client.GuiEndergenic": { + "ignore": true + }, + "mcjty.rftoolspower.modules.generator.client.GuiCoalGenerator": { + "ignore": true + }, + "mcjty.rftoolspower.modules.monitor.client.GuiPowerMonitor": { + "ignore": true + }, + "mcjty.rftoolsstorage.modules.modularstorage.client.GuiModularStorage": { + "ignore": true + }, + "mcjty.rftoolsstorage.modules.scanner.client.GuiStorageScanner": { + "ignore": true + }, + "mcjty.rftoolsstorage.modules.craftingmanager.client.GuiCraftingManager": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiAnalog": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiCounter": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiInvChecker": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiSensor": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiSequencer": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiThreeLogic": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiTimer": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiRedstoneTransmitter": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.logic.client.GuiRedstoneReceiver": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.screen.client.GuiScreen": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.screen.client.GuiScreenController": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.spawner.client.GuiMatterBeamer": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.spawner.client.GuiSpawner": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.tank.client.GuiTank": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.teleporter.client.GuiMatterTransmitter": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.teleporter.client.GuiMatterReceiver": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.teleporter.client.GuiDialingDevice": { + "ignore": true + }, + "mcjty.rftoolsutility.modules.environmental.client.GuiEnvironmentalController": { + "ignore": true + }, + "mcjty.rftoolsbase.modules.crafting.client.GuiCraftingCard": { + "ignore": true + }, + "mcjty.rftoolsbase.modules.tablet.client.GuiTablet": { + "ignore": true + }, + "mcjty.rftoolsbase.modules.filter.client.GuiFilterModule": { + "ignore": true + }, + "mcjty.rftoolsbuilder.modules.builder.client.GuiBuilder": { + "ignore": true + }, + "mcjty.rftoolsbuilder.modules.shield.client.GuiShield": { + "ignore": true + }, + "mcjty.rftoolscontrol.modules.craftingstation.client.GuiCraftingStation": { + "ignore": true + }, + "mcjty.rftoolscontrol.modules.multitank.client.GuiMultiTank": { + "ignore": true + }, + "mcjty.rftoolscontrol.modules.processor.client.GuiProcessor": { + "ignore": true + }, + "mcjty.rftoolscontrol.modules.programmer.client.GuiProgrammer": { + "ignore": true + }, + "mcjty.rftoolscontrol.modules.various.client.GuiNode": { + "ignore": true + }, + "mcjty.rftoolscontrol.modules.various.client.GuiWorkbench": { + "ignore": true + }, + "com.legacy.blue_skies.client.gui.screen.ArcsScreen": { + "ignore": true + }, + "com.lothrazar.cyclic.block.crusher.ScreenCrusher": { + "ignore": true + }, + "com.teammetallurgy.aquaculture.client.gui.screen.TackleBoxScreen": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenMechanicalDryingBasin": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenVariablestore": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenDelay": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenLogicProgrammer": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenMaterializer": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenProxy": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenCoalGenerator": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenLogicProgrammerPortable": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenLabeller": { + "ignore": true + }, + "top.theillusivec4.culinaryconstruct.client.CulinaryScreen": { + "ignore": true + }, + "org.cyclops.integrateddynamics.client.gui.container.ContainerScreenMechanicalSqueezer": { + "ignore": true + }, + "com.davenonymous.bonsaitrees3.client.BonsaiPotScreen": { + "ignore": true + }, + "shadows.hostilenetworks.gui.SimChamberScreen": { + "ignore": true + }, + "shadows.hostilenetworks.gui.LootFabScreen": { + "ignore": true + }, + "com.YTrollman.CableTiers.gui.TieredExporterScreen": { + "ignore": true + }, + "com.YTrollman.CableTiers.gui.TieredImporterScreen": { + "ignore": true + }, + "com.YTrollman.CableTiers.gui.TieredDestructorScreen": { + "ignore": true + }, + "com.YTrollman.CableTiers.gui.TieredConstructorScreen": { + "ignore": true + }, + "com.YTrollman.CableTiers.gui.TieredDiskManipulatorScreen": { + "ignore": true + }, + "com.YTrollman.CableTiers.gui.TieredRequesterScreen": { + "ignore": true + }, + "com.buuz135.refinedstoragerequestify.proxy.client.GuiRequester": { + "ignore": true + }, + "me.desht.modularrouters.client.gui.ModularRouterScreen": { + "ignore": true + }, + "dan200.computercraft.client.gui.GuiComputer": { + "ignore": true + }, + "blusunrize.immersiveengineering.client.gui.CraftingTableScreen": { + "ignore": true + }, + "com.blakebr0.mysticalagriculture.client.screen.SoulExtractorScreen": { + "ignore": true + }, + "com.mrcrayfish.furniture.client.gui.screen.inventory.PostBoxScreen": { + "ignore": true + }, + "slimeknights.tconstruct.tables.client.inventory.TinkerStationScreen": { + "ignore": true + }, + "slimeknights.tconstruct.tables.client.inventory.PartBuilderScreen": { + "ignore": true + }, + "slimeknights.tconstruct.tables.client.inventory.CraftingStationScreen": { + "ignore": true + }, + "com.github.klikli_dev.occultism.client.gui.DimensionalMineshaftScreen": { + "ignore": true + }, + "net.bdew.generators.gui.GuiOutputConfig": { + "ignore": true + }, + "net.silentchaos512.gear.block.grader.GraderScreen": { + "ignore": true + } +} \ No newline at end of file diff --git a/minecraft/config/inventoryprofilesnext/inventoryprofiles.json b/minecraft/config/inventoryprofilesnext/inventoryprofiles.json new file mode 100644 index 0000000..890e85c --- /dev/null +++ b/minecraft/config/inventoryprofilesnext/inventoryprofiles.json @@ -0,0 +1,85 @@ +{ + "ModSettings": { + "sort_order": "ACCUMULATED_COUNT_DESCENDING", + "highlight_foused_items": { + "value": false + }, + "highlight_foused_items_foreground": false, + "enable_updates_check": false, + "first_run": false + }, + "GuiSettings": { + "enable_inventory_editor_button": { + "value": false + }, + "enable_inventory_settings_button": { + "value": false + }, + "enable_profiles_ui": { + "value": false + }, + "enable_profiles_announcement": false, + "continuous_crafting_saved_value": false + }, + "LockedSlotsSettings": { + "lock_slots_disable_user_interaction": { + "value": true + }, + "locked_slots_foreground_style": 1 + }, + "AutoRefillSettings": { + "disable_for_drop_item": { + "value": true + }, + "tool_damage_threshold": 1, + "visual_durability_notification": { + "value": false + }, + "number_of_notifications": 10, + "notification_step": 1, + "visual_replace_success_notification": { + "value": false + }, + "visual_replace_failed_notification": { + "value": false + }, + "type_visual_replace_failed_notification": "HOTBAR" + }, + "Hotkeys": { + "open_config_menu": { + "main": { + "keys": "" + } + }, + "reload_custom_configs": { + "main": { + "keys": "" + } + }, + "sort_inventory": { + "main": { + "keys": "BUTTON_3" + } + }, + "scroll_to_chest": { + "main": { + "keys": "" + } + }, + "scroll_to_inventory": { + "main": { + "keys": "" + } + }, + "open_gui_editor": { + "main": { + "keys": "" + } + } + }, + "Tweaks": { + "prevent_close_gui_drop_item": { + "value": true + } + } +} \ No newline at end of file diff --git a/minecraft/config/inventoryprofilesnext/villager-trading-config.json b/minecraft/config/inventoryprofilesnext/villager-trading-config.json new file mode 100644 index 0000000..c1d9ce9 --- /dev/null +++ b/minecraft/config/inventoryprofilesnext/villager-trading-config.json @@ -0,0 +1,53 @@ +{ + "globalBookmarks": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + }, + "globalBookmarks1": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + }, + "globalBookmarks2": { + "armorer": [], + "butcher": [], + "cartographer": [], + "cleric": [], + "farmer": [], + "fisherman": [], + "fletcher": [], + "leatherworker": [], + "librarian": [], + "mason": [], + "shepherd": [], + "toolsmith": [], + "weaponsmith": [], + "nitwit": [], + "none": [] + } +} \ No newline at end of file diff --git a/minecraft/config/invtweaks-client.toml b/minecraft/config/invtweaks-client.toml new file mode 100644 index 0000000..947dc5a --- /dev/null +++ b/minecraft/config/invtweaks-client.toml @@ -0,0 +1,182 @@ + +#Sorting customization +[sorting] + #Rules for sorting + #Each element is of the form + #A-D is the row from top to bottom + #1-9 is the column from left to right + #POS denotes the target slots + #Exs. POS = D3 means 3rd slot of hotbar + # POS = B means 2nd row, left to right + # POS = 9 means 9th column, bottom to top + # POS = A1-C9 means slots A1,A2,…,A9,B1,…,B9,C1,…,C9 + # POS = A9-C1 means slots A9,A8,…,A1,B9,…,B1,C9,…,C1 + #Append v to POS of the form A1-C9 to move in columns instead of rows + #Append r to POS of the form B or 9 to reverse slot order + #CATEGORY is the item category to designate the slots to + #CATEGORY = /LOCKED prevents slots from moving in sorting + #CATEGORY = /FROZEN has the effect of /LOCKED and, in addition, ignores slot in auto-refill + #CATEGORY = /OTHER covers all remaining items after other rules are exhausted + rules = ["D /LOCKED", "A1-C9 /OTHER"] + + #Categor(y/ies) for sorting + # + #name: the name of the category + # + #spec: + #Each element denotes a series of semicolon-separated clauses + #Items need to match all clauses of at least one element + #Items matching earlier elements are earlier in order + #A clause of the form /tag: matches a tag + #Clauses /instanceof: or /class: check if item is + #instance of class or exactly of that class respectively + #Specifying an item's registry name as a clause checks for that item + #Prepending an exclamation mark at the start of a clause inverts it + [[sorting.category]] + name = "sword" + spec = ["/instanceof:net.minecraft.world.item.SwordItem"] + + [[sorting.category]] + name = "axe" + spec = ["/instanceof:net.minecraft.world.item.AxeItem"] + + [[sorting.category]] + name = "pickaxe" + spec = ["/instanceof:net.minecraft.world.item.PickaxeItem"] + + [[sorting.category]] + name = "shovel" + spec = ["/instanceof:net.minecraft.world.item.ShovelItem"] + + [[sorting.category]] + name = "hoe" + spec = ["/instanceof:net.minecraft.world.item.HoeItem"] + + [[sorting.category]] + name = "acceptableFood" + spec = ["/isFood:; !minecraft:rotten_flesh; !minecraft:spider_eye; !minecraft:poisonous_potato; !minecraft:pufferfish"] + + [[sorting.category]] + name = "torch" + spec = ["minecraft:torch"] + + [[sorting.category]] + name = "cheapBlocks" + spec = ["/tag:forge:cobblestone", "/tag:minecraft:dirt"] + + [[sorting.category]] + name = "blocks" + spec = ["/instanceof:net.minecraft.world.item.BlockItem"] + + #Custom settings per GUI + #x = x-position of external sort button relative to GUI top left + #y = same as above except for the y-position + #Omit x and y to leave position unchanged + #sortRange = slots to sort + #E.g. sortRange = "5,0-2" sorts slots 5,0,1,2 in that order + #sortRange = "" disables sorting for that container + #Out-of-bound slots are ignored + #Omit sortRange to leave as default + [[sorting.containerOverrides]] + containerClass = "appeng.client.gui.implementations.*Screen" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "appeng.client.gui.me.items.*Screen" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "de.mari_023.ae2wtlib.wct.*Screen" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "com.github.glodblock.epp.client.gui.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "org.cyclops.integrateddynamics.inventory.container.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "org.cyclops.integratedterminals.inventory.container.ContainerTerminalStoragePart" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "com.refinedmods.refinedstorage.screen.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "net.p3pp3rf1y.sophisticatedbackpacks.common.gui.BackpackContainer" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "net.p3pp3rf1y.sophisticatedstorage.common.gui.StorageContainerMenu" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "tfar.craftingstation.CraftingStationMenu" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "tfar.dankstorage.container.DankContainers" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "mcjty.rftoolsutility.modules.crafter.blocks.CrafterContainer" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "gripe._90.megacells.menu.MEGAInterfaceMenu" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "cofh.thermal.core.client.gui.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "ironfurnaces.gui.furnaces.*" + sortRange = "0-45" + + [[sorting.containerOverrides]] + containerClass = "com.direwolf20.justdirethings.client.screens.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "com.direwolf20.laserio.client.screens.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "com.stal111.forbidden_arcanus.client.gui.screen.*" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "aztech.modern_industrialization.*.gui.*Screen" + sortRange = "" + + [[sorting.containerOverrides]] + containerClass = "slimeknights.tconstruct.smeltery.client.screen.HeatingStructureScreen" + x = 41 + y = 0 + sortRange = "" + +#Tweaks +[tweaks] + #Enable debug will log the name of the screens being opened + enableDebug = false + #Enable auto-refill + autoRefill = true + #Enable a quick view of how many items that you're currently holding exists in your inventory by displaying it next your hotbar. + quickView = true + #0 = disable sorting + #1 = player sorting only + #2 = external sorting only + #3 = all sorting enabled (default) + #Range: 0 ~ 3 + enableSort = 3 + #0 = disable buttons (i.e. keybind only) + #1 = buttons for player sorting only + #2 = buttons for external sorting only + #3 = all buttons enabled (default) + #Range: 0 ~ 3 + enableButtons = 3 + diff --git a/minecraft/config/ironbows-common.toml b/minecraft/config/ironbows-common.toml new file mode 100644 index 0000000..add54ad --- /dev/null +++ b/minecraft/config/ironbows-common.toml @@ -0,0 +1,21 @@ +#Range: 0.0 ~ 3.4028234663852886E38 +"Iron Bow damage bonus" = 1.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Golden Bow damage bonus" = 1.5 +#Range: 0.0 ~ 3.4028234663852886E38 +"Diamond Bow damage bonus" = 2.5 +#Range: 0.0 ~ 3.4028234663852886E38 +"Emerald Bow damage bonus" = 3.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Netherite Bow damage bonus" = 5.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Iron Crossbow damage bonus" = 1.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Golden Crossbow damage bonus" = 1.5 +#Range: 0.0 ~ 3.4028234663852886E38 +"Diamond Crossbow damage bonus" = 2.5 +#Range: 0.0 ~ 3.4028234663852886E38 +"Emerald Crossbow damage bonus" = 3.0 +#Range: 0.0 ~ 3.4028234663852886E38 +"Netherite Crossbow damage bonus" = 5.0 + diff --git a/minecraft/config/ironfurnaces-client.toml b/minecraft/config/ironfurnaces-client.toml new file mode 100644 index 0000000..15d3f3b --- /dev/null +++ b/minecraft/config/ironfurnaces-client.toml @@ -0,0 +1,277 @@ + +#Modded Furnace Settings +[modded_furnaces] + + [modded_furnaces.vibranium_furnace] + # How much RF to generate per tick + # Default: 3000 + #Range: 1 ~ 100000 + generation = 3000 + # Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course. + # Default: 32 + #Range: 1 ~ 64 + mult = 32 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 3 + #Range: 1 ~ 72000 + speed = 3 + + [modded_furnaces.allthemodium_furnace] + # How much RF to generate per tick + # Default: 2000 + #Range: 1 ~ 100000 + generation = 2000 + # Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course. + # Default: 16 + #Range: 1 ~ 64 + mult = 16 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 5 + #Range: 1 ~ 72000 + speed = 5 + + [modded_furnaces.unobtainium_furnace] + # How much RF to generate per tick + # Default: 5000 + #Range: 1 ~ 100000 + generation = 5000 + # Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course. + # Default: 64 + #Range: 1 ~ 64 + mult = 64 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 1 + #Range: 1 ~ 72000 + speed = 1 + +#Update Checker Settings +[updates] + + [updates.check_updates] + # true = check for updates, false = don't check for updates. + # Default: true. + updates = true + +#Furnace Settings +[furnaces] + # The capacity of the recipe cache, higher values use more memory. + # Default: 10 + #Range: 1 ~ 100 + recipe_cache = 10 + + [furnaces.iron_furnace] + # How much RF to generate per tick + # Default: 40 + #Range: 1 ~ 100000 + generation = 40 + # What tier this furnace should be. + # Default: 0 + #Range: 0 ~ 2 + tier = 0 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 160 + #Range: 2 ~ 72000 + speed = 160 + + [furnaces.obsidian_furnace] + # How much RF to generate per tick + # Default: 500 + #Range: 1 ~ 100000 + generation = 500 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 20 + #Range: 2 ~ 72000 + speed = 20 + + [furnaces.recipeMaxXPLevel] + # How many levels of experience that can be stored in recipes stored in the furnace, after the experience stored in the recipe reaches this value (in levels) it will be voided. + # Default: 100 + # 100 levels is 30971 XP + #Range: 1 ~ 1000 + level = 100 + + [furnaces.netherite_furnace] + # How much RF to generate per tick + # Default: 1000 + #Range: 1 ~ 100000 + generation = 1000 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 5 + #Range: 2 ~ 72000 + speed = 5 + + [furnaces.copper_furnace] + # How much RF to generate per tick + # Default: 40 + #Range: 1 ~ 100000 + generation = 40 + # What tier this furnace should be. + # Default: 0 + #Range: 0 ~ 2 + tier = 0 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 180 + #Range: 2 ~ 72000 + speed = 180 + + [furnaces.emerald_furnace] + # How much RF to generate per tick + # Default: 320 + #Range: 1 ~ 100000 + generation = 320 + # What tier this furnace should be. + # Default: 1 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 40 + #Range: 2 ~ 72000 + speed = 40 + + [furnaces.million_furnace] + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + + [furnaces.crystal_furnace] + # How much RF to generate per tick + # Default: 360 + #Range: 1 ~ 100000 + generation = 360 + # What tier this furnace should be. + # Default: 2 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 40 + #Range: 2 ~ 72000 + speed = 40 + + [furnaces.diamond_furnace] + # How much RF to generate per tick + # Default: 240 + #Range: 1 ~ 100000 + generation = 240 + # What tier this furnace should be. + # Default: 1 + #Range: 0 ~ 2 + tier = 2 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 80 + #Range: 2 ~ 72000 + speed = 80 + + [furnaces.silver_furnace] + # How much RF to generate per tick + # Default: 100 + #Range: 1 ~ 100000 + generation = 100 + # What tier this furnace should be. + # Default: 1 + #Range: 0 ~ 2 + tier = 1 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 140 + #Range: 2 ~ 72000 + speed = 140 + + [furnaces.rainbow_furnace] + # How much power the Rainbow Furnace will generate. + # Default: 50000 + #Range: 1 ~ 100000000 + rainbow_generation = 50000 + # How much RF to generate per tick + # Default: 2000 + #Range: 1 ~ 100000 + generation = 2000 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 20 + #Range: 2 ~ 72000 + speed = 20 + + [furnaces.energy] + # How much energy can be stored in tier 0 furnaces. + # Default: 80 000 + #Range: > 4000 + tier_0 = 80000 + # How much energy can be stored in tier 2 furnaces. + # Default: 1 000 000 + #Range: > 4000 + tier_2 = 1000000 + # How much energy can be stored in tier 1 furnaces. + # Default: 200 000 + #Range: > 4000 + tier_1 = 200000 + + [furnaces.gold_furnace] + # How much RF to generate per tick + # Default: 160 + #Range: 1 ~ 100000 + generation = 160 + # What tier this furnace should be. + # Default: 1 + #Range: 0 ~ 2 + tier = 1 + # Number of ticks to complete one smelting operation. + # 200 ticks is what a regular furnace takes. + # Default: 120 + #Range: 2 ~ 72000 + speed = 120 + +#JEI Settings +[jei] + + [jei.jei] + # Enable or disable the Click Area inside the GUI in all of Iron Furnaces' furnaces. + enable_jei_click_area = true + # Enable or disable the Catalysts in Jei for Iron Furnaces. + enable_jei_catalysts = true + # Enable or disable the JeiPlugin of Iron Furnaces. + enable_jei = true + +#Misc +[misc] + + [misc.misc] + # Enable or disable the Rainbow Content + rainbow = true + # Enable or disable light-updates, furances will no longer emit light, true = disable + lightupdates = false + # Enable or disable version checking and player identification through the web, true = disabled, if your server is using firewall software you might want to disable this + web = false + # Show furnace settings errors in chat, used for debugging + errors = false + diff --git a/minecraft/config/ironfurnaces.toml b/minecraft/config/ironfurnaces.toml new file mode 100644 index 0000000..e69de29 diff --git a/minecraft/config/ironjetpacks-client.toml b/minecraft/config/ironjetpacks-client.toml new file mode 100644 index 0000000..950a230 --- /dev/null +++ b/minecraft/config/ironjetpacks-client.toml @@ -0,0 +1,27 @@ + +#General configuration options. +[General] + #Enable jetpack sounds? + jetpackSounds = true + #Enable jetpack particles? + jetpackParticles = true + #Enable jetpack stat tooltips? + advancedTooltips = true + +#HUD configuration options. +[HUD] + #Enable the HUD? + enable = true + #The position preset for the HUD. + #0=Top Left, 1=Middle Left, 2=Bottom Left, 3=Top Right, 4=Middle Right, 5=Bottom Right + #Range: 0 ~ 5 + position = 1 + #The X offset for the HUD. + #Range: > -2147483648 + offsetX = 0 + #The Y offset for the HUD. + #Range: > -2147483648 + offsetY = 0 + #Show HUD over the chat? + showOverChat = false + diff --git a/minecraft/config/ironjetpacks-common.toml b/minecraft/config/ironjetpacks-common.toml new file mode 100644 index 0000000..a57c41a --- /dev/null +++ b/minecraft/config/ironjetpacks-common.toml @@ -0,0 +1,19 @@ + +#General configuration options. +[General] + #Should jetpacks be enchantable? + enchantableJetpacks = false + #Enable Curios integration. + curiosIntegration = true + +#Dynamic recipe options. +[Recipe] + #Enable default recipes for Energy Cells? + cells = true + #Enable default recipes for Thrusters? + thrusters = true + #Enable default recipes for Capacitors? + capacitors = true + #Enable default recipes for Jetpacks? + jetpacks = true + diff --git a/minecraft/config/ironjetpacks/jetpacks/bronze.json b/minecraft/config/ironjetpacks/jetpacks/bronze.json new file mode 100644 index 0000000..99be7d5 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/bronze.json @@ -0,0 +1,25 @@ +{ + "name": "bronze", + "disable": false, + "tier": 2, + "color": "da9839", + "armorPoints": 3, + "enchantability": 9, + "craftingMaterial": "tag:forge:ingots/bronze", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 800000, + "usage": 120, + "speedVertical": 0.41, + "accelVertical": 0.12, + "speedSideways": 0.14, + "speedHoverAscend": 0.27, + "speedHoverDescend": 0.25, + "speedHover": 0.075, + "sprintSpeedMulti": 1.1, + "sprintSpeedMultiVertical": 1.05, + "sprintFuelMulti": 2.1 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/copper.json b/minecraft/config/ironjetpacks/jetpacks/copper.json new file mode 100644 index 0000000..9b96a5f --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/copper.json @@ -0,0 +1,25 @@ +{ + "name": "copper", + "disable": false, + "tier": 1, + "color": "ee825b", + "armorPoints": 2, + "enchantability": 12, + "craftingMaterial": "minecraft:copper_ingot", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 250000, + "usage": 85, + "speedVertical": 0.29, + "accelVertical": 0.11, + "speedSideways": 0.1, + "speedHoverAscend": 0.23, + "speedHoverDescend": 0.25, + "speedHover": 0.092, + "sprintSpeedMulti": 1.05, + "sprintSpeedMultiVertical": 1.025, + "sprintFuelMulti": 1.4 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/creative.json b/minecraft/config/ironjetpacks/jetpacks/creative.json new file mode 100644 index 0000000..62bd2eb --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/creative.json @@ -0,0 +1,25 @@ +{ + "name": "creative", + "disable": false, + "tier": -1, + "color": "cf1ae9", + "armorPoints": 8, + "enchantability": 0, + "craftingMaterial": "null", + "creative": true, + "rarity": 3, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 0, + "usage": 0, + "speedVertical": 1.03, + "accelVertical": 0.17, + "speedSideways": 0.21, + "speedHoverAscend": 0.45, + "speedHoverDescend": 0.25, + "speedHover": 0.0, + "sprintSpeedMulti": 2.0, + "sprintSpeedMultiVertical": 1.5, + "sprintFuelMulti": 0.0 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/diamond.json b/minecraft/config/ironjetpacks/jetpacks/diamond.json new file mode 100644 index 0000000..68e05d5 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/diamond.json @@ -0,0 +1,25 @@ +{ + "name": "diamond", + "disable": false, + "tier": 4, + "color": "4cf4e0", + "armorPoints": 4, + "enchantability": 10, + "craftingMaterial": "tag:forge:gems/diamond", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 30000000, + "usage": 650, + "speedVertical": 0.9, + "accelVertical": 0.15, + "speedSideways": 0.19, + "speedHoverAscend": 0.41, + "speedHoverDescend": 0.25, + "speedHover": 0.005, + "sprintSpeedMulti": 1.8, + "sprintSpeedMultiVertical": 1.4, + "sprintFuelMulti": 3.8 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/electrum.json b/minecraft/config/ironjetpacks/jetpacks/electrum.json new file mode 100644 index 0000000..71cf9d7 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/electrum.json @@ -0,0 +1,25 @@ +{ + "name": "electrum", + "disable": false, + "tier": 3, + "color": "f6f395", + "armorPoints": 2, + "enchantability": 18, + "craftingMaterial": "tag:forge:ingots/electrum", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 10000000, + "usage": 310, + "speedVertical": 0.79, + "accelVertical": 0.14, + "speedSideways": 0.17, + "speedHoverAscend": 0.37, + "speedHoverDescend": 0.25, + "speedHover": 0.03, + "sprintSpeedMulti": 1.6, + "sprintSpeedMultiVertical": 1.3, + "sprintFuelMulti": 3.5 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/emerald.json b/minecraft/config/ironjetpacks/jetpacks/emerald.json new file mode 100644 index 0000000..65123b5 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/emerald.json @@ -0,0 +1,25 @@ +{ + "name": "emerald", + "disable": false, + "tier": 5, + "color": "4dd979", + "armorPoints": 4, + "enchantability": 15, + "craftingMaterial": "tag:forge:gems/emerald", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 48000000, + "usage": 880, + "speedVertical": 1.03, + "accelVertical": 0.17, + "speedSideways": 0.21, + "speedHoverAscend": 0.45, + "speedHoverDescend": 0.25, + "speedHover": 0.0, + "sprintSpeedMulti": 2.0, + "sprintSpeedMultiVertical": 1.5, + "sprintFuelMulti": 4.0 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/gold.json b/minecraft/config/ironjetpacks/jetpacks/gold.json new file mode 100644 index 0000000..33b1f0e --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/gold.json @@ -0,0 +1,25 @@ +{ + "name": "gold", + "disable": false, + "tier": 3, + "color": "f9eb59", + "armorPoints": 2, + "enchantability": 25, + "craftingMaterial": "tag:forge:ingots/gold", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 10000000, + "usage": 300, + "speedVertical": 0.61, + "accelVertical": 0.13, + "speedSideways": 0.15, + "speedHoverAscend": 0.34, + "speedHoverDescend": 0.25, + "speedHover": 0.03, + "sprintSpeedMulti": 1.5, + "sprintSpeedMultiVertical": 1.25, + "sprintFuelMulti": 3.2 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/invar.json b/minecraft/config/ironjetpacks/jetpacks/invar.json new file mode 100644 index 0000000..ba2c945 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/invar.json @@ -0,0 +1,25 @@ +{ + "name": "invar", + "disable": false, + "tier": 3, + "color": "a4b2a9", + "armorPoints": 3, + "enchantability": 15, + "craftingMaterial": "tag:forge:ingots/invar", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 12000000, + "usage": 350, + "speedVertical": 0.61, + "accelVertical": 0.13, + "speedSideways": 0.15, + "speedHoverAscend": 0.34, + "speedHoverDescend": 0.25, + "speedHover": 0.03, + "sprintSpeedMulti": 1.5, + "sprintSpeedMultiVertical": 1.25, + "sprintFuelMulti": 3.2 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/iron.json b/minecraft/config/ironjetpacks/jetpacks/iron.json new file mode 100644 index 0000000..cccca52 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/iron.json @@ -0,0 +1,25 @@ +{ + "name": "iron", + "disable": false, + "tier": 2, + "color": "d8d8d8", + "armorPoints": 3, + "enchantability": 9, + "craftingMaterial": "tag:forge:ingots/iron", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 800000, + "usage": 120, + "speedVertical": 0.41, + "accelVertical": 0.12, + "speedSideways": 0.14, + "speedHoverAscend": 0.27, + "speedHoverDescend": 0.25, + "speedHover": 0.075, + "sprintSpeedMulti": 1.1, + "sprintSpeedMultiVertical": 1.05, + "sprintFuelMulti": 2.1 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/platinum.json b/minecraft/config/ironjetpacks/jetpacks/platinum.json new file mode 100644 index 0000000..435c890 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/platinum.json @@ -0,0 +1,25 @@ +{ + "name": "platinum", + "disable": false, + "tier": 4, + "color": "a6e9ff", + "armorPoints": 4, + "enchantability": 12, + "craftingMaterial": "tag:forge:ingots/platinum", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 36000000, + "usage": 720, + "speedVertical": 0.92, + "accelVertical": 0.155, + "speedSideways": 0.193, + "speedHoverAscend": 0.42, + "speedHoverDescend": 0.25, + "speedHover": 0.005, + "sprintSpeedMulti": 1.8, + "sprintSpeedMultiVertical": 1.4, + "sprintFuelMulti": 3.8 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/silver.json b/minecraft/config/ironjetpacks/jetpacks/silver.json new file mode 100644 index 0000000..02f1389 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/silver.json @@ -0,0 +1,25 @@ +{ + "name": "silver", + "disable": false, + "tier": 2, + "color": "8b99a4", + "armorPoints": 3, + "enchantability": 12, + "craftingMaterial": "tag:forge:ingots/silver", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 1200000, + "usage": 150, + "speedVertical": 0.48, + "accelVertical": 0.13, + "speedSideways": 0.15, + "speedHoverAscend": 0.3, + "speedHoverDescend": 0.25, + "speedHover": 0.07, + "sprintSpeedMulti": 1.3, + "sprintSpeedMultiVertical": 1.15, + "sprintFuelMulti": 2.7 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/steel.json b/minecraft/config/ironjetpacks/jetpacks/steel.json new file mode 100644 index 0000000..6b1ba01 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/steel.json @@ -0,0 +1,25 @@ +{ + "name": "steel", + "disable": false, + "tier": 3, + "color": "565656", + "armorPoints": 3, + "enchantability": 15, + "craftingMaterial": "tag:forge:ingots/steel", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 12000000, + "usage": 350, + "speedVertical": 0.67, + "accelVertical": 0.135, + "speedSideways": 0.155, + "speedHoverAscend": 0.35, + "speedHoverDescend": 0.25, + "speedHover": 0.025, + "sprintSpeedMulti": 1.5, + "sprintSpeedMultiVertical": 1.25, + "sprintFuelMulti": 3.2 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/stone.json b/minecraft/config/ironjetpacks/jetpacks/stone.json new file mode 100644 index 0000000..2f13bcc --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/stone.json @@ -0,0 +1,25 @@ +{ + "name": "stone", + "disable": false, + "tier": 1, + "color": "7f7f7f", + "armorPoints": 2, + "enchantability": 12, + "craftingMaterial": "tag:forge:stone", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 100000, + "usage": 70, + "speedVertical": 0.25, + "accelVertical": 0.11, + "speedSideways": 0.08, + "speedHoverAscend": 0.18, + "speedHoverDescend": 0.25, + "speedHover": 0.1, + "sprintSpeedMulti": 1.0, + "sprintSpeedMultiVertical": 1.0, + "sprintFuelMulti": 1.0 +} \ No newline at end of file diff --git a/minecraft/config/ironjetpacks/jetpacks/wood.json b/minecraft/config/ironjetpacks/jetpacks/wood.json new file mode 100644 index 0000000..167d1a6 --- /dev/null +++ b/minecraft/config/ironjetpacks/jetpacks/wood.json @@ -0,0 +1,25 @@ +{ + "name": "wood", + "disable": false, + "tier": 0, + "color": "83663c", + "armorPoints": 1, + "enchantability": 15, + "craftingMaterial": "tag:minecraft:planks", + "creative": false, + "rarity": 0, + "toughness": 0.0, + "knockbackResistance": 0.0, + "curios": true, + "capacity": 20000, + "usage": 32, + "speedVertical": 0.18, + "accelVertical": 0.1, + "speedSideways": 0.06, + "speedHoverAscend": 0.16, + "speedHoverDescend": 0.25, + "speedHover": 0.14, + "sprintSpeedMulti": 1.0, + "sprintSpeedMultiVertical": 1.0, + "sprintFuelMulti": 1.0 +} \ No newline at end of file diff --git a/minecraft/config/irons_spellbooks-client.toml b/minecraft/config/irons_spellbooks-client.toml new file mode 100644 index 0000000..a59eec6 --- /dev/null +++ b/minecraft/config/irons_spellbooks-client.toml @@ -0,0 +1,77 @@ + +############################################################################################### +### ## +### ## +### ## +### ## +### ## +### ## +### ATTENTION: These are client configs. For gameplay settings, go to the SERVER CONFIGS ## +### ## +### ## +### ## +### ## +### ## +### ## +############################################################################################### +# +[UI] + + [UI.ManaBar] + #By default (Contextual), the mana bar only appears when you are holding a magic item or are not at max mana. + #Allowed Values: Never, Always, Contextual + manaBarDisplay = "Contextual" + #Used to adjust mana bar's position (11 is one full hunger bar up). + manaBarXOffset = 0 + manaBarYOffset = 0 + manaBarTextVisible = true + #Allowed Values: Hunger, XP, Center, TopLeft, TopRight, BottomLeft, BottomRight + manaBarAnchor = "Hunger" + manaTextXOffset = 0 + manaTextYOffset = 0 + + [UI.SpellBar] + #By default (Always), the spell bar always shows the spells in your equipped spellbook. Contextual will hide them when not in use. + #Allowed Values: Never, Always, Contextual + spellBarDisplay = "Always" + #Used to adjust spell bar's position. + spellBarXOffset = 0 + spellBarYOffset = 0 + #Allowed Values: Hotbar, TopLeft, TopRight, BottomLeft, BottomRight + spellBarAnchor = "Hotbar" + + [UI.RecastOverlay] + #Allowed Values: Center, TopCenter, TopLeft, TopRight, BottomLeft, BottomRight + recastAnchor = "TopCenter" + recastXOffset = 0 + recastYOffset = 0 + + [UI.SpellWheel] + #Whether to Spell Wheel size ignores the Gui scale option + ignoreGuiScale = false + #If ignoreGuiScale is enabled, apply this multiplier to its size + ignoreGuiScaleSizeMultiplier = 1.0 + +[Animations] + #What to render in first person while casting. + showFirstPersonArms = true + showFirstPersonItems = true + +[Renderers] + #By default, both fireballs are replaced with an enhanced model used by fire spells. + replaceGhastFireballs = true + replaceBlazeFireballs = true + +[Music] + enableBossMusic = true + +[Misc] + #Whether shield spells can collide with particles. Can affect performance. Default: true + shieldParticleCollisions = false + +[Summons] + #Whether owned summons appear glowing to yourself. Default: true + ownedSummonsGlow = true + #Hex Color Value of owned summons glow outline. Default: 0xAAFFAA + summonGlowColor = "0xAAFFAA" + diff --git a/minecraft/config/irons_spellbooks_spell_config/global_config.json b/minecraft/config/irons_spellbooks_spell_config/global_config.json new file mode 100644 index 0000000..9100d84 --- /dev/null +++ b/minecraft/config/irons_spellbooks_spell_config/global_config.json @@ -0,0 +1,5 @@ +{ + "_comment1": "Global spell configuration. Values here apply to ALL spells as fallback defaults.", + "_comment2": "Per-spell config files OVERRIDE these values", + "_comment3": "Hint: /ironsSpellbooks config list to shows all available parameter keys." +} \ No newline at end of file diff --git a/minecraft/config/irons_spellbooks_spell_config/irons_spellbooks/example.txt b/minecraft/config/irons_spellbooks_spell_config/irons_spellbooks/example.txt new file mode 100644 index 0000000..b54121f --- /dev/null +++ b/minecraft/config/irons_spellbooks_spell_config/irons_spellbooks/example.txt @@ -0,0 +1,13 @@ +{ + "_comment1": "Config Files must be placed in a directory labeled with their mod id, and the file name must match the spell id!", + "_comment2": "For global config: /config/irons_spellbooks_spell_config//.json", + "_comment3": "For datapacks: /data//irons_spellbooks_spell_config/.json", + "irons_spellbooks:min_rarity": "common", + "irons_spellbooks:enabled": true, + "irons_spellbooks:power_multiplier": 1.0, + "irons_spellbooks:mana_cost_multiplier": 1.0, + "irons_spellbooks:max_level": 1, + "irons_spellbooks:cooldown_in_seconds": 10.0, + "irons_spellbooks:school": "irons_spellbooks:evocation", + "irons_spellbooks:allow_crafting": true +} \ No newline at end of file diff --git a/minecraft/config/itemcollectors-common.toml b/minecraft/config/itemcollectors-common.toml new file mode 100644 index 0000000..84dad84 --- /dev/null +++ b/minecraft/config/itemcollectors-common.toml @@ -0,0 +1,22 @@ +[General] + # What should be the maximum range of the basic item collector? + # Allowed range: 1 ~ 10 - Default: 5 + basicCollectorMaxRange = 5 + + # Should the basic item collector have a filter? + # Allowed values: true, false - Default: false + basicCollectorFilter = false + + # What should be the maximum range of the advanced item collector? + # Allowed range: 1 ~ 10 - Default: 7 + advancedCollectorMaxRange = 7 + + # Should the advanced item collector have a filter? + # Allowed values: true, false - Default: true + advancedCollectorFilter = true + +[Performance] + # What should be the maximum number of items an item collector should try to pick up and insert in a tick? Reducing this number may improve performance when there's a lot of items laying around, for example when storage is full. A value of -1 indicates no limit on the number of insertions. + # Allowed range: -1 ~ 10000 - Default: 20 + maxInsertions = 20 + diff --git a/minecraft/config/jade/plugins.json b/minecraft/config/jade/plugins.json index 501e5e7..7b1e04d 100644 --- a/minecraft/config/jade/plugins.json +++ b/minecraft/config/jade/plugins.json @@ -51,15 +51,28 @@ "painting": true, "chiseled_bookshelf": true }, - "midnight": { - "traditional_age": true, - "nightstag": true + "splendid_slimes": { + "splendid_slime": true }, - "mekajadeupgrade": { - "upgrades": true + "jadeaddons.create": { + "filter": true, + "backtank_capacity": true, + "goggles.requires_goggles": true, + "goggles": false, + "blaze_burner": true, + "exact_block": true, + "goggles.detailed": false, + "placard": true }, - "immersiveengineering": { - "multiblock_icon": true + "jadeaddons.mcjtylib": { + "jadeaddons": true + }, + "mekanismcovers": { + "cover_component": true + }, + "jademoddedentities": { + "villager": true, + "doggy_talents_next": true }, "jade": { "coordinates.rel": false, @@ -69,20 +82,11 @@ "registry_name": "OFF", "mod_name": true }, - "mekalights": { - "meka_light": true - }, - "expatternprovider": { - "jade_chamber": true, - "jade_wireless": true - }, - "infinitybuttons": { - "hide_secret_buttons": true, - "hide_lantern_buttons": true, - "hide_torch_buttons": true - }, - "balm": { - "jade": true + "adorablehamsterpets": { + "hamster_debug_info": true, + "hamster_bed_info": true, + "wild_bush_tooltips": true, + "hamster_genetics": true }, "ae2": { "part_icon": true, @@ -96,24 +100,6 @@ "crafting_monitor": true, "part_name": true }, - "eclipticseasons": { - "greenhouse_core": true, - "animal": true, - "cauldron": true, - "crop": true, - "snowy_status": true, - "crop.shift_hint": true - }, - "ars_nouveau": { - "mob_jar": true - }, - "jadeaddons": { - "equipment_requirement": "" - }, - "exposure": { - "lightroom": true, - "photograph_frame": true - }, "mekanism": { "infuse_type": true, "gas": true, @@ -124,37 +110,108 @@ "energy": true, "tooltip_renderer": true }, + "easy_villagers": { + "villager": true, + "converter": true, + "breeder": true + }, + "pipez": { + "pipe": true + }, + "reliquary": { + "pedestal": true, + "altar": true, + "mortar": true, + "cauldron": true + }, + "waystones": { + "waystone": true + }, + "cookingforblockheads": { + "fridge": true, + "oven": true, + "sink": true, + "preservation_chamber": true, + "milk_jar": true, + "toaster": true + }, + "storagedrawers": { + "display.stacklimit": true, + "main": true, + "display.content": true, + "display.status": true + }, + "framedblocks": { + "framed_item_frame": true + }, + "dimstorage": { + "dim_block_base": true, + "dim_tank": true + }, + "railcraft": { + "signals": true, + "track_component": true, + "locomotive": true, + "switch_track": true + }, + "tombstone": { + "decorative_graves": true, + "player_graves": true + }, + "pneumaticcraft": { + "pneumatic": true, + "tube_module": true, + "entity": true, + "redstone": true, + "camo": true, + "semiblock": true + }, + "expatternprovider": { + "jade_chamber": true, + "jade_wireless": true + }, + "apotheosis": { + "adventure": true, + "ench": true, + "spawner": true + }, + "quality_food": { + "quality": true + }, + "balm": { + "jade": true + }, + "productivebees": { + "solitary_nest": true, + "jar": true, + "canvas_beehive": true, + "bee_attributes": true, + "productive_bee": true + }, + "ars_nouveau": { + "mob_jar": true + }, + "jadeaddons": { + "equipment_requirement": "" + }, + "jadeaddons.lootr": { + "info": true + }, "mysticalagradditions": { "infused_farmland": true }, + "aether_redux": { + "logicator": true + }, "twilightforest": { "quest_ram_wool": true }, "supplementaries": { "hat_stand": true }, - "dynamictrees": { - "rooty_water": true, - "pod": true, - "fruit": true, - "rooty": true, - "branch": true - }, - "waystones": { - "waystone": true - }, - "corpse": { - "corpse": true - }, - "engineered_schematics": { - "schematic_info": true - }, "mysticalagriculture": { "infused_farmland": true, "crop": true, "inferium_crop": true - }, - "immersivetechnology": { - "display": true } } \ No newline at end of file diff --git a/minecraft/config/jade/sort-order.json b/minecraft/config/jade/sort-order.json index b2d77c1..3641c85 100644 --- a/minecraft/config/jade/sort-order.json +++ b/minecraft/config/jade/sort-order.json @@ -1,4 +1,8 @@ { + "adorablehamsterpets:hamster_bed_info": null, + "adorablehamsterpets:hamster_debug_info": null, + "adorablehamsterpets:hamster_genetics": null, + "adorablehamsterpets:wild_bush_tooltips": null, "ae2:charger": null, "ae2:crafting_monitor": null, "ae2:debug": null, @@ -10,47 +14,66 @@ "ae2:pattern_provider": null, "ae2:power_storage": null, "ae2:server_data": null, + "aether_redux:logicator": null, + "apotheosis:adventure": null, + "apotheosis:ench": null, + "apotheosis:spawner": null, "ars_nouveau:mob_jar": null, "balm:jade": null, - "corpse:corpse": null, + "cookingforblockheads:fridge": null, + "cookingforblockheads:milk_jar": null, + "cookingforblockheads:oven": null, + "cookingforblockheads:preservation_chamber": null, + "cookingforblockheads:sink": null, + "cookingforblockheads:toaster": null, + "dimstorage:dim_block_base": null, + "dimstorage:dim_tank": null, + "dtphc2:maple_spile": null, + "dtphc2:passion_fruit_vine": null, "dynamictrees:branch": null, "dynamictrees:fruit": null, "dynamictrees:pod": null, "dynamictrees:rooty": null, "dynamictrees:rooty_water": null, - "eclipticseasons:animal": null, - "eclipticseasons:cauldron": null, - "eclipticseasons:crop": null, - "eclipticseasons:greenhouse_core": null, - "engineered_schematics:schematic_info": null, + "easy_villagers:breeder": null, + "easy_villagers:converter": null, + "easy_villagers:villager": null, "expatternprovider:jade_chamber": null, "expatternprovider:jade_wireless": null, "expatternprovider:tile_data": null, - "exposure:lightroom": null, - "exposure:photograph_frame": null, + "framedblocks:framed_item_frame": null, "immersiveengineering:multiblock_icon": null, "immersiveengineering:multiblock_inventory": null, "immersiveengineering:multiblock_tank": null, - "immersivetechnology:display": null, - "immersivetechnology:multiblock_energy": null, - "immersivetechnology:multiblock_fluid": null, - "immersivetechnology:status": null, "jade:block_face": null, "jade:distance": null, "jade:mod_name": null, "jade:object_name": null, "jade:registry_name": null, + "jadeaddons.create:backtank_capacity": null, + "jadeaddons.create:blaze_burner": null, + "jadeaddons.create:contraption_inv": null, + "jadeaddons.create:crafting_blueprint": null, + "jadeaddons.create:exact_block": null, + "jadeaddons.create:filter": null, + "jadeaddons.create:goggles": null, + "jadeaddons.create:hide_boiler_tanks": null, + "jadeaddons.create:package": null, + "jadeaddons.create:placard": null, + "jadeaddons.create:table_cloth": null, + "jadeaddons.lootr:info": null, + "jadeaddons.lootr:inventory": null, + "jadeaddons.mcjtylib:jadeaddons": null, "jadeaddons.tconstruct:casting_table": null, "jadeaddons.tconstruct:duct_fluid": null, "jadeaddons.tconstruct:duct_item": null, - "mekajadeupgrade:upgrades": null, - "mekalights:meka_light": null, + "jademoddedentities:doggy_talents_next": null, + "jademoddedentities:villager": null, "mekanism:data_provider": null, "mekanism:entity_data_provider": null, "mekanism:remove_builtin": null, "mekanism:tooltip_renderer": null, - "midnight:nightstag": null, - "midnight:traditional_age": null, + "mekanismcovers:cover_component": null, "minecraft:animal_owner": null, "minecraft:armor_stand": null, "minecraft:beehive": null, @@ -96,9 +119,34 @@ "mysticalagriculture:crop": null, "mysticalagriculture:inferium_crop": null, "mysticalagriculture:infused_farmland": null, + "pipez:pipe": null, + "pneumaticcraft:camo": null, + "pneumaticcraft:entity": null, + "pneumaticcraft:pneumatic": null, + "pneumaticcraft:redstone": null, + "pneumaticcraft:semiblock": null, + "pneumaticcraft:tube_module": null, + "productivebees:canvas_beehive": null, + "productivebees:jar": null, + "productivebees:productive_bee": null, + "productivebees:solitary_nest": null, + "quality_food:quality": null, + "railcraft:locomotive": null, + "railcraft:signals": null, + "railcraft:switch_track": null, + "railcraft:track_component": null, + "reliquary:altar": null, + "reliquary:cauldron": null, + "reliquary:mortar": null, + "reliquary:pedestal": null, + "splendid_slimes:splendid_slime": null, + "storagedrawers:main": null, "supplementaries:hat_stand": null, "supplementaries:present": null, "supplementaries:safe": null, + "theurgy:mercury_flux": null, + "tombstone:decorative_graves": null, + "tombstone:player_graves": null, "twilightforest:quest_ram_wool": null, "waystones:waystone": null } \ No newline at end of file diff --git a/minecraft/config/jamlib/known_suspicious_jars.txt b/minecraft/config/jamlib/known_suspicious_jars.txt new file mode 100644 index 0000000..e69de29 diff --git a/minecraft/config/jaopca/custom_forms.json b/minecraft/config/jaopca/custom_forms.json new file mode 100644 index 0000000..e69de29 diff --git a/minecraft/config/jaopca/lang/en_us.json b/minecraft/config/jaopca/lang/en_us.json new file mode 100644 index 0000000..8e0eba1 --- /dev/null +++ b/minecraft/config/jaopca/lang/en_us.json @@ -0,0 +1,903 @@ +{ + "jaopca.material.activated_carbon": "", + "jaopca.material.adamantine": "", + "jaopca.material.adamantite": "", + "jaopca.material.adamantium": "", + "jaopca.material.advanced_alloy": "", + "jaopca.material.aeternium": "", + "jaopca.material.agar": "", + "jaopca.material.agate": "", + "jaopca.material.alexandrite": "", + "jaopca.material.alfsteel": "", + "jaopca.material.allthemodium": "", + "jaopca.material.almandine": "", + "jaopca.material.alugentum": "", + "jaopca.material.aluminium": "", + "jaopca.material.aluminium_sulfite": "", + "jaopca.material.aluminum": "", + "jaopca.material.aluminum_steel": "", + "jaopca.material.alunite": "", + "jaopca.material.amazonite": "", + "jaopca.material.amber": "", + "jaopca.material.americium": "", + "jaopca.material.amethyst": "", + "jaopca.material.amethyst_bronze": "", + "jaopca.material.ametrine": "", + "jaopca.material.ammolite": "", + "jaopca.material.ammonium_chloride": "", + "jaopca.material.andesite": "", + "jaopca.material.andradite": "", + "jaopca.material.angerite": "", + "jaopca.material.annealed_copper": "", + "jaopca.material.antihumoranium": "Anti-Humoranium", + "jaopca.material.antimony": "", + "jaopca.material.antimony_trifluoride": "", + "jaopca.material.antimony_trioxide": "", + "jaopca.material.apalachia": "", + "jaopca.material.apatite": "", + "jaopca.material.aquamarine": "", + "jaopca.material.aquatic": "", + "jaopca.material.arcane_crystal": "", + "jaopca.material.arcanium": "", + "jaopca.material.archaic_brick": "", + "jaopca.material.argonite": "", + "jaopca.material.arlemite": "", + "jaopca.material.arsenic": "", + "jaopca.material.arsenic_trioxide": "", + "jaopca.material.asbestos": "", + "jaopca.material.ash": "", + "jaopca.material.ashes": "", + "jaopca.material.ashstone": "", + "jaopca.material.astrite": "", + "jaopca.material.attuned_titanium": "", + "jaopca.material.australiansapphire": "Australian Sapphire", + "jaopca.material.azure_electrum": "", + "jaopca.material.azure_silver": "", + "jaopca.material.azurite": "", + "jaopca.material.baolian": "", + "jaopca.material.barite": "", + "jaopca.material.barium": "", + "jaopca.material.barium_sulfide": "", + "jaopca.material.baronyte": "", + "jaopca.material.basalt": "", + "jaopca.material.basaltic_mineral_sand": "", + "jaopca.material.bastnasite": "", + "jaopca.material.battery_alloy": "", + "jaopca.material.bauxite": "", + "jaopca.material.bendalloy": "", + "jaopca.material.benitoite": "", + "jaopca.material.bentonite": "", + "jaopca.material.beryllium": "", + "jaopca.material.bioterium": "", + "jaopca.material.biotite": "", + "jaopca.material.biphenyl": "", + "jaopca.material.bismuth": "", + "jaopca.material.bismuth_brass": "", + "jaopca.material.bismuth_bronze": "", + "jaopca.material.bismuth_steel": "", + "jaopca.material.bitripentium": "", + "jaopca.material.bixbite": "", + "jaopca.material.black_bronze": "", + "jaopca.material.black_diamond": "", + "jaopca.material.black_opal": "", + "jaopca.material.black_steel": "", + "jaopca.material.blackcatseye": "Black Cat's Eye", + "jaopca.material.blackdiamond": "Black Diamond", + "jaopca.material.blackopal": "Black Opal", + "jaopca.material.blackpearl": "Black Pearl", + "jaopca.material.blackstarsapphire": "Black Star Sapphire", + "jaopca.material.blackstone": "", + "jaopca.material.blastproof_alloy": "", + "jaopca.material.blaze": "", + "jaopca.material.blaze_gold": "", + "jaopca.material.blazegold": "", + "jaopca.material.blazing_copper": "", + "jaopca.material.blazium": "", + "jaopca.material.bloodgem": "", + "jaopca.material.bloodquartz": "", + "jaopca.material.bloodstone": "", + "jaopca.material.blue_alloy": "", + "jaopca.material.blue_steel": "", + "jaopca.material.blue_topaz": "", + "jaopca.material.bluecatseye": "Blue Cat's Eye", + "jaopca.material.bluepearl": "Blue Pearl", + "jaopca.material.bluestone": "", + "jaopca.material.blutonium": "", + "jaopca.material.bone": "", + "jaopca.material.borax": "", + "jaopca.material.bornite": "", + "jaopca.material.boron": "", + "jaopca.material.boron_arsenide": "", + "jaopca.material.boron_nitride": "", + "jaopca.material.borosilicate_glass": "", + "jaopca.material.bort": "", + "jaopca.material.brass": "", + "jaopca.material.brick": "", + "jaopca.material.brickerite": "", + "jaopca.material.bronze": "", + "jaopca.material.browndiamond": "Brown Diamond", + "jaopca.material.brownpearl": "Brown Pearl", + "jaopca.material.bscco": "BSCCO", + "jaopca.material.c_mn_blend": "", + "jaopca.material.cadmium": "", + "jaopca.material.caesium": "", + "jaopca.material.caesium_137": "Caesium-137", + "jaopca.material.calcite": "", + "jaopca.material.calcium": "", + "jaopca.material.calcium_carbonate": "", + "jaopca.material.calcium_chloride": "", + "jaopca.material.calcium_ferrocyanide": "", + "jaopca.material.calcium_hydroxide": "", + "jaopca.material.calcium_phosphide": "", + "jaopca.material.calcium_sulfate": "", + "jaopca.material.calorite": "", + "jaopca.material.caminite_brick": "", + "jaopca.material.caprolactam": "", + "jaopca.material.carbon": "", + "jaopca.material.carbon_manganese": "", + "jaopca.material.carbonic_fluix": "", + "jaopca.material.carminite": "", + "jaopca.material.carnelian": "", + "jaopca.material.carobbiite": "", + "jaopca.material.cassiterite": "", + "jaopca.material.cassiterite_sand": "", + "jaopca.material.cast_iron": "", + "jaopca.material.cats_eye": "Cat's Eye", + "jaopca.material.catseye": "Cat's Eye", + "jaopca.material.cave_magmite": "", + "jaopca.material.cerium": "", + "jaopca.material.certus_quartz": "", + "jaopca.material.chalcanthite": "", + "jaopca.material.chalcocite": "", + "jaopca.material.chalcopyrite": "", + "jaopca.material.chaos": "", + "jaopca.material.charcoal": "", + "jaopca.material.chloronium": "", + "jaopca.material.chorus_metal": "", + "jaopca.material.chrome": "", + "jaopca.material.chromite": "", + "jaopca.material.chromium": "", + "jaopca.material.chromium_trioxide": "", + "jaopca.material.chrysolite": "", + "jaopca.material.chrysoprase": "", + "jaopca.material.cinnabar": "", + "jaopca.material.citrine": "", + "jaopca.material.clay": "", + "jaopca.material.cloggrum": "", + "jaopca.material.coal": "", + "jaopca.material.coal_coke": "", + "jaopca.material.cobalt": "", + "jaopca.material.cobalt_brass": "", + "jaopca.material.cobalt_oxide": "", + "jaopca.material.cobaltite": "", + "jaopca.material.cocoa": "", + "jaopca.material.coke": "", + "jaopca.material.collagen": "", + "jaopca.material.composite_metal": "", + "jaopca.material.compressed_iron": "", + "jaopca.material.concrete": "", + "jaopca.material.conductive_alloy": "", + "jaopca.material.constantan": "", + "jaopca.material.cooperite": "", + "jaopca.material.copper": "", + "jaopca.material.copper_alloy": "", + "jaopca.material.copper_carbonate": "", + "jaopca.material.coral": "", + "jaopca.material.corrupted": "", + "jaopca.material.corruptedcybercrystal": "Corrupted Cyber Crystal", + "jaopca.material.corrupti": "", + "jaopca.material.crimson_iron": "", + "jaopca.material.crimson_steel": "", + "jaopca.material.crimsongold": "Crimson Gold", + "jaopca.material.crusteel": "", + "jaopca.material.crystal": "", + "jaopca.material.crystal_binder": "", + "jaopca.material.crystallite": "", + "jaopca.material.cupric_oxide": "", + "jaopca.material.cupronickel": "", + "jaopca.material.cyanemerald": "Cyan Emerald", + "jaopca.material.cyanite": "", + "jaopca.material.cyanstarsapphire": "Cyan Star Sapphire", + "jaopca.material.cyber_steel": "", + "jaopca.material.cybercrystal": "Cyber Crystal", + "jaopca.material.cyclohexanone_oxime": "", + "jaopca.material.damascus_steel": "", + "jaopca.material.dark_ash": "", + "jaopca.material.dark_ashes": "", + "jaopca.material.dark_steel": "", + "jaopca.material.darkbluediamond": "Dark Blue Diamond", + "jaopca.material.darkbluepearl": "Dark Blue Pearl", + "jaopca.material.darmstadtium": "", + "jaopca.material.dawnstone": "", + "jaopca.material.deepslate": "", + "jaopca.material.desh": "", + "jaopca.material.diamond": "", + "jaopca.material.diatomite": "", + "jaopca.material.diethylenetriaminepentaacetic_acid": "", + "jaopca.material.dilithium": "", + "jaopca.material.dimensional_blend": "", + "jaopca.material.diorite": "", + "jaopca.material.divine": "", + "jaopca.material.draconic": "", + "jaopca.material.dragonscale": "", + "jaopca.material.dragonsteel_fire": "Fire Dragonsteel", + "jaopca.material.dragonsteel_ice": "Ice Dragonsteel", + "jaopca.material.dragonsteel_lightning": "Lightning Dragonsteel", + "jaopca.material.dragonstone": "", + "jaopca.material.drenched_iron": "", + "jaopca.material.duralumin": "", + "jaopca.material.duranium": "", + "jaopca.material.durasteel": "", + "jaopca.material.eclipsealloy": "Eclipse Alloy", + "jaopca.material.eclipsediamond": "Eclipse Diamond", + "jaopca.material.eden": "", + "jaopca.material.eighzo": "", + "jaopca.material.elecanium": "", + "jaopca.material.electrical_copper": "", + "jaopca.material.electrified_netherite": "", + "jaopca.material.electrotine": "", + "jaopca.material.electrotine_alloy": "", + "jaopca.material.electrum": "", + "jaopca.material.elementium": "", + "jaopca.material.emberstone": "", + "jaopca.material.emerald": "", + "jaopca.material.end_steel": "", + "jaopca.material.end_stone": "", + "jaopca.material.ender": "", + "jaopca.material.ender_crystal": "", + "jaopca.material.ender_eye": "", + "jaopca.material.ender_pearl": "", + "jaopca.material.endereye": "", + "jaopca.material.enderium": "", + "jaopca.material.endorium": "", + "jaopca.material.endstone": "", + "jaopca.material.energetic_alloy": "", + "jaopca.material.energetic_blend": "", + "jaopca.material.energetic_copper": "", + "jaopca.material.energized_copper": "", + "jaopca.material.energized_gold": "", + "jaopca.material.enriched_naquadah": "", + "jaopca.material.enriched_naquadah_sulfate": "", + "jaopca.material.enriched_naquadah_trinium_europium_duranide": "", + "jaopca.material.enticing_crystal": "", + "jaopca.material.entro": "", + "jaopca.material.epidote": "", + "jaopca.material.epoxy": "", + "jaopca.material.erbium": "", + "jaopca.material.euclase": "", + "jaopca.material.eudialyte": "", + "jaopca.material.europium": "", + "jaopca.material.europium_155": "Europium-155", + "jaopca.material.extreme": "", + "jaopca.material.fairy": "", + "jaopca.material.felsteel": "", + "jaopca.material.ferricore": "", + "jaopca.material.ferrite_mixture": "", + "jaopca.material.ferroboron": "", + "jaopca.material.ferrosilite": "", + "jaopca.material.fiery": "", + "jaopca.material.fire_clay": "", + "jaopca.material.fireclay": "", + "jaopca.material.fireite": "", + "jaopca.material.fireopal": "Fire Opal", + "jaopca.material.flerovium": "", + "jaopca.material.flint": "", + "jaopca.material.flour": "", + "jaopca.material.flourite": "", + "jaopca.material.fluix": "", + "jaopca.material.fluix_iron": "", + "jaopca.material.fluix_steel": "", + "jaopca.material.fluorite": "", + "jaopca.material.flux_infused": "", + "jaopca.material.force": "", + "jaopca.material.forgotten_metal": "", + "jaopca.material.froststeel": "", + "jaopca.material.fullers_earth": "", + "jaopca.material.fyrite": "", + "jaopca.material.gadolinium": "", + "jaopca.material.galaxite": "", + "jaopca.material.galena": "", + "jaopca.material.gallium": "", + "jaopca.material.gallium_arsenide": "", + "jaopca.material.gallium_sulfide": "", + "jaopca.material.galu": "", + "jaopca.material.garnet": "", + "jaopca.material.garnet_sand": "", + "jaopca.material.garnierite": "", + "jaopca.material.gausum": "", + "jaopca.material.gelatin": "", + "jaopca.material.gelot": "", + "jaopca.material.gemenyte": "", + "jaopca.material.germanium": "", + "jaopca.material.ghastly": "", + "jaopca.material.ghoulish": "", + "jaopca.material.ghoulquartz": "Ghoul Quartz", + "jaopca.material.glass": "", + "jaopca.material.glauconite_sand": "", + "jaopca.material.glowstone": "", + "jaopca.material.glowtite": "", + "jaopca.material.gobber": "", + "jaopca.material.gobber_end": "End Gobber", + "jaopca.material.gobber_nether": "Nether Gobber", + "jaopca.material.goethite": "", + "jaopca.material.gold": "", + "jaopca.material.goshenite": "", + "jaopca.material.grains_of_infinity": "", + "jaopca.material.grains_of_pizeallity": "", + "jaopca.material.grains_of_prescience": "", + "jaopca.material.grains_of_the_end": "", + "jaopca.material.grains_of_vibrancy": "", + "jaopca.material.grandidierite": "", + "jaopca.material.granite": "", + "jaopca.material.granite_red": "", + "jaopca.material.granitic_mineral_sand": "", + "jaopca.material.graphene": "", + "jaopca.material.graphite": "", + "jaopca.material.green_sapphire": "", + "jaopca.material.greencatseye": "Green Cat's Eye", + "jaopca.material.greendiamond": "Green Diamond", + "jaopca.material.greengold": "Green Gold", + "jaopca.material.greenpearl": "Green Pearl", + "jaopca.material.greenstarsapphire": "Green Star Sapphire", + "jaopca.material.grindstone": "", + "jaopca.material.grossular": "", + "jaopca.material.gunpowder": "", + "jaopca.material.gypsum": "", + "jaopca.material.hackmantite": "", + "jaopca.material.hafnium": "", + "jaopca.material.hard_carbon": "", + "jaopca.material.hastelloy_c_276": "Hastelloy C-276", + "jaopca.material.hastelloy_x": "Hastelloy-X", + "jaopca.material.he_mox": "HE Mox", + "jaopca.material.he_uranium": "HE Uranium", + "jaopca.material.heliodor": "", + "jaopca.material.hellforged": "", + "jaopca.material.hellstone": "", + "jaopca.material.hematite": "", + "jaopca.material.hepatizon": "", + "jaopca.material.hercynite": "", + "jaopca.material.holmium": "", + "jaopca.material.hop_graphite": "HOP Graphite", + "jaopca.material.hsla_steel": "HSLA Steel", + "jaopca.material.hslasteel": "HSLA Steel", + "jaopca.material.hsse": "HSS-E", + "jaopca.material.hssg": "HSS-G", + "jaopca.material.hsss": "HSS-S", + "jaopca.material.humoranium": "", + "jaopca.material.hureaulite": "", + "jaopca.material.hydratedpotassium": "Hydrated Potassium", + "jaopca.material.ice": "", + "jaopca.material.iceopal": "Ice Opal", + "jaopca.material.iesnium": "", + "jaopca.material.ikegamini": "", + "jaopca.material.ikegamium": "", + "jaopca.material.ikegamonium": "", + "jaopca.material.illumenite": "", + "jaopca.material.ilmenite": "", + "jaopca.material.inanite": "", + "jaopca.material.incoloy_ma_956": "Incoloy MA-956", + "jaopca.material.indigolite": "", + "jaopca.material.indium": "", + "jaopca.material.indium_gallium_phosphide": "", + "jaopca.material.indium_phosphide": "", + "jaopca.material.indium_tin_barium_titanium_cuprate": "", + "jaopca.material.inert_metal_mixture": "", + "jaopca.material.infused_entro": "", + "jaopca.material.insanite": "", + "jaopca.material.invar": "", + "jaopca.material.iodine": "", + "jaopca.material.iolite": "", + "jaopca.material.iridium": "", + "jaopca.material.iridium_alloy": "", + "jaopca.material.iridium_chloride": "", + "jaopca.material.iridium_metal_residue": "", + "jaopca.material.irisagate": "Iris Agate", + "jaopca.material.iron": "", + "jaopca.material.ironwood": "", + "jaopca.material.irradiated_borax": "", + "jaopca.material.jade": "", + "jaopca.material.jasper": "", + "jaopca.material.jewelyte": "", + "jaopca.material.jungle": "", + "jaopca.material.kanthal": "", + "jaopca.material.kepu": "", + "jaopca.material.khnumite": "", + "jaopca.material.knightmetal": "", + "jaopca.material.knightslime": "", + "jaopca.material.kunzite": "", + "jaopca.material.kyanite": "", + "jaopca.material.labradorite": "", + "jaopca.material.lanthanum": "", + "jaopca.material.lapis": "", + "jaopca.material.lapotron": "", + "jaopca.material.large_amethyst": "", + "jaopca.material.larimar": "", + "jaopca.material.lavium": "", + "jaopca.material.lazurite": "", + "jaopca.material.le_mox": "LE Mox", + "jaopca.material.le_uranium": "LE Uranium", + "jaopca.material.lead": "", + "jaopca.material.lead_platinum": "", + "jaopca.material.lepidolite": "", + "jaopca.material.lightbluesapphire": "Light Blue Sapphire", + "jaopca.material.lignite_coal": "", + "jaopca.material.limonite": "", + "jaopca.material.lithium": "", + "jaopca.material.lithium_chloride": "", + "jaopca.material.lithium_manganese_dioxide": "", + "jaopca.material.ludicrite": "", + "jaopca.material.lumium": "", + "jaopca.material.lunar": "", + "jaopca.material.lutetium": "", + "jaopca.material.lyon": "", + "jaopca.material.magentite": "", + "jaopca.material.magma_steel": "", + "jaopca.material.magmite": "", + "jaopca.material.magnalium": "", + "jaopca.material.magnesia": "", + "jaopca.material.magnesite": "", + "jaopca.material.magnesium": "", + "jaopca.material.magnesium_chloride": "", + "jaopca.material.magnesium_diboride": "", + "jaopca.material.magnet": "", + "jaopca.material.magnetic_iron": "", + "jaopca.material.magnetic_neodymium": "", + "jaopca.material.magnetic_samarium": "", + "jaopca.material.magnetic_steel": "", + "jaopca.material.magnetite": "", + "jaopca.material.malachite": "", + "jaopca.material.mana": "", + "jaopca.material.mana_diamond": "", + "jaopca.material.manasteel": "", + "jaopca.material.manganese": "", + "jaopca.material.manganese_dioxide": "", + "jaopca.material.manganese_oxide": "", + "jaopca.material.manganese_phosphide": "", + "jaopca.material.manyullyn": "", + "jaopca.material.maradonyx": "", + "jaopca.material.maraging_steel_300": "", + "jaopca.material.marble": "", + "jaopca.material.maroondiamond": "Maroon Diamond", + "jaopca.material.massicot": "", + "jaopca.material.matizium": "", + "jaopca.material.matrixopal": "", + "jaopca.material.meat": "", + "jaopca.material.medusaquartz": "", + "jaopca.material.melodium": "", + "jaopca.material.mercury": "", + "jaopca.material.mercury_barium_calcium_cuprate": "", + "jaopca.material.metal_mixture": "", + "jaopca.material.meteorite": "", + "jaopca.material.mica": "", + "jaopca.material.mirabilite": "", + "jaopca.material.mithril": "", + "jaopca.material.mixed_metal": "", + "jaopca.material.moldavite": "", + "jaopca.material.molten": "", + "jaopca.material.molybdenite": "", + "jaopca.material.molybdenum": "", + "jaopca.material.molybdenum_disilicide": "", + "jaopca.material.monazite": "", + "jaopca.material.moonstone": "", + "jaopca.material.morganite": "", + "jaopca.material.mortum": "", + "jaopca.material.mundabitur": "", + "jaopca.material.mystite": "", + "jaopca.material.mystium": "", + "jaopca.material.mythril": "", + "jaopca.material.naquadah": "", + "jaopca.material.naquadah_alloy": "", + "jaopca.material.naquadria": "", + "jaopca.material.naquadria_sulfate": "", + "jaopca.material.nebu": "", + "jaopca.material.neodymium": "", + "jaopca.material.neon": "", + "jaopca.material.neonmeteorite": "Neon Meteorite", + "jaopca.material.neptunium": "", + "jaopca.material.nether_brick": "", + "jaopca.material.nether_quartz": "", + "jaopca.material.nether_star": "", + "jaopca.material.netherite": "", + "jaopca.material.netherite_scrap": "", + "jaopca.material.netherrack": "", + "jaopca.material.neutronium": "", + "jaopca.material.nichrome": "", + "jaopca.material.nickel": "", + "jaopca.material.nickel_zinc_ferrite": "", + "jaopca.material.nicrosil": "", + "jaopca.material.nighalite": "", + "jaopca.material.niobium": "", + "jaopca.material.niobium_nitride": "", + "jaopca.material.niobium_tin": "", + "jaopca.material.niobium_titanium": "", + "jaopca.material.niter": "", + "jaopca.material.novasteel": "", + "jaopca.material.obsidian": "", + "jaopca.material.oilsands": "", + "jaopca.material.olivediamond": "Olive Diamond", + "jaopca.material.olivepearl": "Olive Pearl", + "jaopca.material.olivine": "", + "jaopca.material.onyx": "", + "jaopca.material.opal": "", + "jaopca.material.orangecatseye": "Orange Cat's Eye", + "jaopca.material.orangediamond": "Orange Diamond", + "jaopca.material.orangepearl": "Orange Pearl", + "jaopca.material.orangestarsapphire": "Orange Star Sapphire", + "jaopca.material.orichalcum": "", + "jaopca.material.ornamyte": "", + "jaopca.material.osmiridium": "", + "jaopca.material.osmium": "", + "jaopca.material.osmium_tetroxide": "", + "jaopca.material.ostrum": "", + "jaopca.material.oxdrite": "", + "jaopca.material.painite": "", + "jaopca.material.palintinium": "", + "jaopca.material.palladium": "", + "jaopca.material.palladium_raw": "Raw Palladium", + "jaopca.material.paper": "", + "jaopca.material.paracetamol": "", + "jaopca.material.peacockore": "Peacock Ore", + "jaopca.material.peacocktopaz": "Peacock Topaz", + "jaopca.material.pearl": "", + "jaopca.material.pelenium": "", + "jaopca.material.pendorite_alloy": "", + "jaopca.material.pentlandite": "", + "jaopca.material.peridot": "", + "jaopca.material.perlite": "", + "jaopca.material.pewter": "", + "jaopca.material.phosphate": "", + "jaopca.material.phosphophyllite": "", + "jaopca.material.phosphorus": "", + "jaopca.material.phosphorus_pentoxide": "", + "jaopca.material.photovoltaic": "", + "jaopca.material.pig_iron": "", + "jaopca.material.pink_slime": "", + "jaopca.material.pinkdiamond": "Pink Diamond", + "jaopca.material.pinkpearl": "Pink Pearl", + "jaopca.material.pinkruby": "Pink Ruby", + "jaopca.material.pinkstarsapphire": "Pink Star Sapphire", + "jaopca.material.pinktigerseye": "Pink Tiger's Eye", + "jaopca.material.piroot": "", + "jaopca.material.pitambarineelam": "Pitambari Neelam", + "jaopca.material.pitchblende": "", + "jaopca.material.platinum": "", + "jaopca.material.platinum_group_sludge": "", + "jaopca.material.platinum_raw": "", + "jaopca.material.platinum_sludge_residue": "", + "jaopca.material.plutonium": "", + "jaopca.material.plutonium_239": "Plutonium-239", + "jaopca.material.plutonium_241": "Plutonium-241", + "jaopca.material.pollucite": "", + "jaopca.material.polonium": "", + "jaopca.material.polybenzimidazole": "", + "jaopca.material.polycaprolactam": "", + "jaopca.material.polydimethylsiloxane": "", + "jaopca.material.polyethylene": "", + "jaopca.material.polyphenylene_sulfide": "", + "jaopca.material.polytetrafluoroethylene": "", + "jaopca.material.polyvinyl_butyral": "", + "jaopca.material.polyvinyl_chloride": "", + "jaopca.material.potash": "", + "jaopca.material.potassium": "", + "jaopca.material.potassium_carbonate": "", + "jaopca.material.potassium_cyanide": "", + "jaopca.material.potassium_dichromate": "", + "jaopca.material.potassium_feldspar": "", + "jaopca.material.potassium_ferrocyanide": "", + "jaopca.material.potassium_fluoride": "", + "jaopca.material.potassium_hydroxide": "", + "jaopca.material.potassium_iodide": "", + "jaopca.material.potassium_sulfate": "", + "jaopca.material.potin": "", + "jaopca.material.powellite": "", + "jaopca.material.prescient_crystal": "", + "jaopca.material.prism": "", + "jaopca.material.prismalium": "", + "jaopca.material.prismarine": "", + "jaopca.material.prismatic": "", + "jaopca.material.prismide": "", + "jaopca.material.promethium_147": "Promethium-147", + "jaopca.material.protactinium_233": "Protactinium-233", + "jaopca.material.prussian_blue": "", + "jaopca.material.pulsating_alloy": "", + "jaopca.material.pulsating_crystal": "", + "jaopca.material.pure_copper": "", + "jaopca.material.pure_gold": "", + "jaopca.material.pure_iron": "", + "jaopca.material.pure_steel": "", + "jaopca.material.pure_titanium": "", + "jaopca.material.purplecatseye": "Purple Cat's Eye", + "jaopca.material.purplediamond": "Purple Diamond", + "jaopca.material.purplegold": "Purple Gold", + "jaopca.material.purplepearl": "Purple Pearl", + "jaopca.material.purplestarsapphire": "Purple Star Sapphire", + "jaopca.material.purpur": "", + "jaopca.material.pyrite": "", + "jaopca.material.pyrochlore": "", + "jaopca.material.pyrolitic_carbon": "", + "jaopca.material.pyrolusite": "", + "jaopca.material.pyrope": "", + "jaopca.material.qivium": "", + "jaopca.material.quantanium": "", + "jaopca.material.quartz": "", + "jaopca.material.quartz_sand": "", + "jaopca.material.quartzite": "", + "jaopca.material.queens_slime": "", + "jaopca.material.quicklime": "", + "jaopca.material.quicksilver": "", + "jaopca.material.rad_away": "", + "jaopca.material.radium": "", + "jaopca.material.rare_earth": "", + "jaopca.material.rareamethyst": "Rare Amethyst", + "jaopca.material.rarecitrine": "Rare Citrine", + "jaopca.material.rareearthmetal": "Rare Earth Metal", + "jaopca.material.raresapphire": "Rare Sapphire", + "jaopca.material.rarest_metal_mixture": "", + "jaopca.material.raretanzanite": "Rare Tanzanite", + "jaopca.material.raspberrydiamond": "Raspberry Diamond", + "jaopca.material.raw_novasteel": "", + "jaopca.material.raw_rubber": "", + "jaopca.material.raw_styrene_butadiene_rubber": "", + "jaopca.material.realgar": "", + "jaopca.material.realmite": "", + "jaopca.material.red_alloy": "", + "jaopca.material.red_beryl": "", + "jaopca.material.red_garnet": "", + "jaopca.material.red_granite": "", + "jaopca.material.red_steel": "", + "jaopca.material.redcatseye": "Red Cat's Eye", + "jaopca.material.reddiamond": "Red Diamond", + "jaopca.material.redpearl": "Red Pearl", + "jaopca.material.redrock": "", + "jaopca.material.redstone": "", + "jaopca.material.redstone_alloy": "", + "jaopca.material.refined_glowstone": "", + "jaopca.material.refined_iron": "", + "jaopca.material.refined_obsidian": "", + "jaopca.material.refined_radiance": "", + "jaopca.material.regalium": "", + "jaopca.material.reinforced_epoxy_resin": "", + "jaopca.material.resonating": "", + "jaopca.material.retium": "", + "jaopca.material.rhodium": "", + "jaopca.material.rhodium_plated_palladium": "", + "jaopca.material.rhodochrosite": "", + "jaopca.material.rhodonite": "", + "jaopca.material.ridiculite": "", + "jaopca.material.rock_salt": "", + "jaopca.material.rose_gold": "", + "jaopca.material.rose_quartz": "", + "jaopca.material.rosegold": "Rose Gold", + "jaopca.material.rosequartz": "Rose Quartz", + "jaopca.material.rosite": "", + "jaopca.material.rtm_alloy": "", + "jaopca.material.rubber": "", + "jaopca.material.ruby": "", + "jaopca.material.rupee": "", + "jaopca.material.ruridit": "", + "jaopca.material.ruthenium": "", + "jaopca.material.ruthenium_106": "Ruthenium-106", + "jaopca.material.ruthenium_tetroxide": "", + "jaopca.material.ruthenium_trinium_americium_neutronate": "", + "jaopca.material.rutile": "", + "jaopca.material.sal_ammoniac": "", + "jaopca.material.salt": "", + "jaopca.material.saltpeter": "", + "jaopca.material.samarium": "", + "jaopca.material.samarium_iron_arsenic_oxide": "", + "jaopca.material.sand": "", + "jaopca.material.sapphire": "", + "jaopca.material.sardonyx": "", + "jaopca.material.saw": "", + "jaopca.material.sawdust": "", + "jaopca.material.scandium": "", + "jaopca.material.scheelite": "", + "jaopca.material.seaborgium": "", + "jaopca.material.serpentine": "", + "jaopca.material.shadow": "", + "jaopca.material.shadow_steel": "", + "jaopca.material.shaka": "", + "jaopca.material.shibuichi": "", + "jaopca.material.shyregem": "", + "jaopca.material.shyrestone": "", + "jaopca.material.sic_sic_cmc": "SiC-SiC CMC", + "jaopca.material.signalum": "", + "jaopca.material.silica": "", + "jaopca.material.silicon": "", + "jaopca.material.silicon_bronze": "", + "jaopca.material.silicon_carbide": "", + "jaopca.material.silicon_dioxide": "", + "jaopca.material.silicone_rubber": "", + "jaopca.material.silver": "", + "jaopca.material.simoganium": "", + "jaopca.material.simonium": "", + "jaopca.material.skeletal": "", + "jaopca.material.skythern": "", + "jaopca.material.slag": "", + "jaopca.material.slimesteel": "", + "jaopca.material.smokyquartz": "Smoky Quartz", + "jaopca.material.snowflakeobsidian": "Snowflake Obsidian", + "jaopca.material.soapstone": "", + "jaopca.material.soda_ash": "", + "jaopca.material.sodalite": "", + "jaopca.material.sodium": "", + "jaopca.material.sodium_bicarbonate": "", + "jaopca.material.sodium_bisulfate": "", + "jaopca.material.sodium_fluoride": "", + "jaopca.material.sodium_hydroxide": "", + "jaopca.material.sodium_nitrite": "", + "jaopca.material.sodium_sulfide": "", + "jaopca.material.solardiamond": "Solar Diamond", + "jaopca.material.solarium": "", + "jaopca.material.soldering_alloy": "", + "jaopca.material.sonoranite": "", + "jaopca.material.soul_stained_steel": "", + "jaopca.material.soularium": "", + "jaopca.material.soulfire": "", + "jaopca.material.soulquartz": "Soul Quartz", + "jaopca.material.soulsand": "", + "jaopca.material.soulsteel": "", + "jaopca.material.source": "", + "jaopca.material.spessartine": "", + "jaopca.material.sphalerite": "", + "jaopca.material.spinel": "", + "jaopca.material.spodumene": "", + "jaopca.material.stainless_steel": "", + "jaopca.material.stainlesssteel": "Stainless Steel", + "jaopca.material.starmetal": "", + "jaopca.material.starruby": "Star Ruby", + "jaopca.material.starsapphire": "Star Sapphire", + "jaopca.material.steel": "", + "jaopca.material.steeleaf": "", + "jaopca.material.stellarium": "", + "jaopca.material.stellite_100": "Stellite-100", + "jaopca.material.sterling_silver": "", + "jaopca.material.stibnite": "", + "jaopca.material.stone": "", + "jaopca.material.strontium": "", + "jaopca.material.strontium_90": "Strontium-90", + "jaopca.material.styrene_butadiene_rubber": "", + "jaopca.material.sugar": "", + "jaopca.material.sugillite": "", + "jaopca.material.sulfur": "", + "jaopca.material.sunsetjasper": "Sunset Jasper", + "jaopca.material.sunstone": "", + "jaopca.material.super_alloy": "", + "jaopca.material.super_useless": "", + "jaopca.material.superconductive": "", + "jaopca.material.superconductor": "", + "jaopca.material.swift_alloy": "", + "jaopca.material.talc": "", + "jaopca.material.tantalite": "", + "jaopca.material.tantalum": "", + "jaopca.material.tantalum_carbide": "", + "jaopca.material.tanzanite": "", + "jaopca.material.tbp": "Protactinium-Enriched Thorium", + "jaopca.material.technetium": "", + "jaopca.material.tektite": "", + "jaopca.material.terbium": "", + "jaopca.material.terminite": "", + "jaopca.material.terran": "", + "jaopca.material.terrasteel": "", + "jaopca.material.tetrahedrite": "", + "jaopca.material.thallasium": "", + "jaopca.material.thallium": "", + "jaopca.material.thermite": "", + "jaopca.material.thermoconducting": "", + "jaopca.material.thorium": "", + "jaopca.material.thounite": "", + "jaopca.material.tigerseye": "Tiger's Eye", + "jaopca.material.tin": "", + "jaopca.material.tin_alloy": "", + "jaopca.material.tin_silver": "", + "jaopca.material.titanium": "", + "jaopca.material.titanium_carbide": "", + "jaopca.material.titanium_trifluoride": "", + "jaopca.material.titanium_tungsten_carbide": "", + "jaopca.material.titaniumcarbide": "", + "jaopca.material.topaz": "", + "jaopca.material.torridite": "", + "jaopca.material.tough_alloy": "", + "jaopca.material.tourmaline": "", + "jaopca.material.treated_wood": "", + "jaopca.material.tricalcium_phosphate": "", + "jaopca.material.trinium": "", + "jaopca.material.trinium_sulfide": "", + "jaopca.material.tritanium": "", + "jaopca.material.trona": "", + "jaopca.material.tungstate": "", + "jaopca.material.tungsten": "", + "jaopca.material.tungsten_carbide": "", + "jaopca.material.tungsten_steel": "", + "jaopca.material.tungstensteel": "", + "jaopca.material.tungstic_acid": "", + "jaopca.material.turquoise": "", + "jaopca.material.tyrian_steel": "", + "jaopca.material.ultimet": "", + "jaopca.material.unobtainium": "", + "jaopca.material.unobtainium_allthemodium_alloy": "", + "jaopca.material.unobtainium_vibranium_alloy": "", + "jaopca.material.unobtanium": "", + "jaopca.material.unstable": "", + "jaopca.material.uraninite": "", + "jaopca.material.uranium": "", + "jaopca.material.uranium_235": "", + "jaopca.material.uranium_238": "", + "jaopca.material.uranium_rhodium_dinaquadide": "", + "jaopca.material.uranium_triplatinum": "", + "jaopca.material.useless": "", + "jaopca.material.utherium": "", + "jaopca.material.uvarovite": "", + "jaopca.material.vanadium": "", + "jaopca.material.vanadium_gallium": "", + "jaopca.material.vanadium_magnetite": "", + "jaopca.material.vanadium_steel": "", + "jaopca.material.vanadiumsteel": "", + "jaopca.material.varsium": "", + "jaopca.material.vesuvianite": "", + "jaopca.material.vibranium": "", + "jaopca.material.vibranium_allthemodium_alloy": "", + "jaopca.material.vibrant_alloy": "", + "jaopca.material.vibrant_crystal": "", + "jaopca.material.villiaumite": "", + "jaopca.material.wakurium": "", + "jaopca.material.watermelontourmaline": "Watermelon Tourmaline", + "jaopca.material.watertight_steel": "", + "jaopca.material.wavy": "", + "jaopca.material.weather_crystal": "", + "jaopca.material.wheat": "", + "jaopca.material.white_diamond": "", + "jaopca.material.whitecatseye": "White Cat's Eye", + "jaopca.material.whitediamond": "White Diamond", + "jaopca.material.whitepearl": "White Pearl", + "jaopca.material.whitestone": "", + "jaopca.material.wildwood": "", + "jaopca.material.witheredsteel": "Withered Steel", + "jaopca.material.wood": "", + "jaopca.material.wrought_iron": "", + "jaopca.material.wulfenite": "", + "jaopca.material.xernium": "", + "jaopca.material.xychorium": "", + "jaopca.material.xychorium_blue": "Blue Xychorium", + "jaopca.material.xychorium_dark": "Dark Xychorium", + "jaopca.material.xychorium_green": "Green Xychorium", + "jaopca.material.xychorium_light": "Light Xychorium", + "jaopca.material.xychorium_red": "Red Xychorium", + "jaopca.material.yellorium": "", + "jaopca.material.yellow_diamond": "", + "jaopca.material.yellow_garnet": "", + "jaopca.material.yellow_limonite": "", + "jaopca.material.yellowcake": "", + "jaopca.material.yellowcatseye": "Yellow Cat's Eye", + "jaopca.material.yellowdiamond": "Yellow Diamond", + "jaopca.material.yellowonyx": "Yellow Onyx", + "jaopca.material.yellowpearl": "Yellow Pearl", + "jaopca.material.yellowstarsapphire": "Yellow Star Sapphire", + "jaopca.material.yokel": "", + "jaopca.material.ytterbium": "", + "jaopca.material.yttrium": "", + "jaopca.material.yttrium_barium_cuprate": "", + "jaopca.material.yurium": "", + "jaopca.material.zebrajasper": "Zebra Jasper", + "jaopca.material.zeolite": "", + "jaopca.material.zeron_100": "Zeron-100", + "jaopca.material.zinc": "", + "jaopca.material.zinc_sulfide": "", + "jaopca.material.zincite": "", + "jaopca.material.zircaloy": "", + "jaopca.material.zircon": "", + "jaopca.material.zirconeight": "Zircon", + "jaopca.material.zirconeleven": "Zircon", + "jaopca.material.zirconfive": "Zircon", + "jaopca.material.zirconfour": "Zircon", + "jaopca.material.zirconium": "", + "jaopca.material.zirconium_molybdenum": "", + "jaopca.material.zirconnine": "Zircon", + "jaopca.material.zirconone": "Zircon", + "jaopca.material.zirconseven": "Zircon", + "jaopca.material.zirconsix": "Zircon", + "jaopca.material.zirconten": "Zircon", + "jaopca.material.zirconthree": "Zircon", + "jaopca.material.zircontwelve": "Zircon", + "jaopca.material.zircontwo": "Zircon" +} \ No newline at end of file diff --git a/minecraft/config/jaopca/main.toml b/minecraft/config/jaopca/main.toml new file mode 100644 index 0000000..3949408 --- /dev/null +++ b/minecraft/config/jaopca/main.toml @@ -0,0 +1,113 @@ + +#Configurations related to materials. +[materials] + #Should the mod find ingot materials with ores. + ingot = true + #Should the mod find ingot materials with ores but without raw ores. + ingotLegacy = true + #Should the mod find gem materials with ores. + gem = true + #Should the mod find crystal materials with ores. + crystal = true + #Should the mod find dust materials with ores. + dust = true + #Should the mod find ingot materials without ores. + ingotPlain = true + #Should the mod find gem materials without ores. + gemPlain = true + #Should the mod find crystal materials without ores. + crystalPlain = true + #Should the mod find dust materials without ores. + dustPlain = true + +#Configurations related to material overrides. +[materialOverrides] + #List of materials that should be gems. + gem = [ + "diamond", + "emerald", + "lapis", + "prismarine", + "quartz" +] + #List of materials that should be crystals. + crystal = [] + #List of materials that should be dusts. + dust = [ + "glowstone", + "redstone" +] + +#Configurations related to item selection. +[itemSelection] + #List of mods that are preferred when selecting items in recipes. + preferredMods = [ + "minecraft" +] + +#Configurations related to block tags. +[blockTags] + #List of block tags that should not be added. + blacklist = [] + #List of block tags that should be considered as defined. + customDefined = [] + +#Configurations related to item tags. +[itemTags] + #List of item tags that should not be added. + blacklist = [] + #List of item tags that should be considered as defined. + customDefined = [] + +#Configurations related to fluid tags. +[fluidTags] + #List of fluid tags that should not be added. + blacklist = [] + #List of fluid tags that should be considered as defined. + customDefined = [] + +#Configurations related to entity type tags. +[entityTypeTags] + #List of entity type tags that should not be added. + blacklist = [] + #List of entity type tags that should be considered as defined. + customDefined = [] + +#Configurations related to recipes. +[recipes] + #List of recipes that should not be added. + blacklist = [] + #List of recipes by regex that should not be added. + regexBlacklist = [] + +#Configurations related to loot tables. +[lootTables] + #List of loot tables that should not be added. + blacklist = [] + +#Configurations related to advancements. +[advancements] + #List of advancements that should not be added. + blacklist = [] + +#Configurations related to data modules. +[data] + #List of data modules that should not be registered. + moduleBlacklist = [] + #List of custom tag entries to add. Use "item" as registry for item tags, "fluid" for fluid tags, etc. Format: "registry#namespace:entry=namespace:tag" + customTags = [] + +#Configurations related to color generation. +[colors] + #The gamma value used to blend colors. + gammaValue = 2.0 + #Should colors of all materials be reset on next startup. + resetColors = false + +#Configurations related to material localization. +[materialLocalization] + #Should the mod check for material localization updates. + checkL10nUpdates = true + #The update interval of localization files in days. + updateInterval = 3.0 + diff --git a/minecraft/config/jaopca/materials/adamantium.toml b/minecraft/config/jaopca/materials/adamantium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/adamantium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/advanced_alloy.toml b/minecraft/config/jaopca/materials/advanced_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/advanced_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/aeternium.toml b/minecraft/config/jaopca/materials/aeternium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/aeternium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/allthemodium.toml b/minecraft/config/jaopca/materials/allthemodium.toml new file mode 100644 index 0000000..769af6d --- /dev/null +++ b/minecraft/config/jaopca/materials/allthemodium.toml @@ -0,0 +1,19 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + diff --git a/minecraft/config/jaopca/materials/aluminum.toml b/minecraft/config/jaopca/materials/aluminum.toml new file mode 100644 index 0000000..7f979ea --- /dev/null +++ b/minecraft/config/jaopca/materials/aluminum.toml @@ -0,0 +1,19 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + diff --git a/minecraft/config/jaopca/materials/amethyst.toml b/minecraft/config/jaopca/materials/amethyst.toml new file mode 100644 index 0000000..accb801 --- /dev/null +++ b/minecraft/config/jaopca/materials/amethyst.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = true + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/amethyst_bronze.toml b/minecraft/config/jaopca/materials/amethyst_bronze.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/amethyst_bronze.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/antimetal.toml b/minecraft/config/jaopca/materials/antimetal.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/antimetal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/apatite.toml b/minecraft/config/jaopca/materials/apatite.toml new file mode 100644 index 0000000..c3debae --- /dev/null +++ b/minecraft/config/jaopca/materials/apatite.toml @@ -0,0 +1,25 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 4233906 + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/arcane_crystal.toml b/minecraft/config/jaopca/materials/arcane_crystal.toml new file mode 100644 index 0000000..d750759 --- /dev/null +++ b/minecraft/config/jaopca/materials/arcane_crystal.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 10596850 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/arcane_gold.toml b/minecraft/config/jaopca/materials/arcane_gold.toml new file mode 100644 index 0000000..4265727 --- /dev/null +++ b/minecraft/config/jaopca/materials/arcane_gold.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 12750951 + diff --git a/minecraft/config/jaopca/materials/ardite.toml b/minecraft/config/jaopca/materials/ardite.toml new file mode 100644 index 0000000..c87e2c0 --- /dev/null +++ b/minecraft/config/jaopca/materials/ardite.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/ash.toml b/minecraft/config/jaopca/materials/ash.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/ash.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/awakened_supremium.toml b/minecraft/config/jaopca/materials/awakened_supremium.toml new file mode 100644 index 0000000..aa200b6 --- /dev/null +++ b/minecraft/config/jaopca/materials/awakened_supremium.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 11749888 + diff --git a/minecraft/config/jaopca/materials/beetron.toml b/minecraft/config/jaopca/materials/beetron.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/beetron.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/bismuth.toml b/minecraft/config/jaopca/materials/bismuth.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/bismuth.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/bitumen.toml b/minecraft/config/jaopca/materials/bitumen.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/bitumen.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/black_chocolate.toml b/minecraft/config/jaopca/materials/black_chocolate.toml new file mode 100644 index 0000000..7a55f86 --- /dev/null +++ b/minecraft/config/jaopca/materials/black_chocolate.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 7817520 + diff --git a/minecraft/config/jaopca/materials/black_quartz.toml b/minecraft/config/jaopca/materials/black_quartz.toml new file mode 100644 index 0000000..221d273 --- /dev/null +++ b/minecraft/config/jaopca/materials/black_quartz.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 2963776 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/blaze.toml b/minecraft/config/jaopca/materials/blaze.toml new file mode 100644 index 0000000..24bd12c --- /dev/null +++ b/minecraft/config/jaopca/materials/blaze.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 12945205 + diff --git a/minecraft/config/jaopca/materials/bluestone.toml b/minecraft/config/jaopca/materials/bluestone.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/bluestone.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/blutonium.toml b/minecraft/config/jaopca/materials/blutonium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/blutonium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/brass.toml b/minecraft/config/jaopca/materials/brass.toml new file mode 100644 index 0000000..b346706 --- /dev/null +++ b/minecraft/config/jaopca/materials/brass.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 13608287 + diff --git a/minecraft/config/jaopca/materials/brick.toml b/minecraft/config/jaopca/materials/brick.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/brick.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/bronze.toml b/minecraft/config/jaopca/materials/bronze.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/bronze.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/calorite.toml b/minecraft/config/jaopca/materials/calorite.toml new file mode 100644 index 0000000..02d656c --- /dev/null +++ b/minecraft/config/jaopca/materials/calorite.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 10433858 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/carminite.toml b/minecraft/config/jaopca/materials/carminite.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/carminite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/certus_quartz-1.toml.bak b/minecraft/config/jaopca/materials/certus_quartz-1.toml.bak new file mode 100644 index 0000000..0c74662 --- /dev/null +++ b/minecraft/config/jaopca/materials/certus_quartz-1.toml.bak @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = true + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 0xAAC9E1 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/certus_quartz-2.toml.bak b/minecraft/config/jaopca/materials/certus_quartz-2.toml.bak new file mode 100644 index 0000000..0c74662 --- /dev/null +++ b/minecraft/config/jaopca/materials/certus_quartz-2.toml.bak @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = true + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 0xAAC9E1 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/certus_quartz.toml b/minecraft/config/jaopca/materials/certus_quartz.toml new file mode 100644 index 0000000..bf3cdea --- /dev/null +++ b/minecraft/config/jaopca/materials/certus_quartz.toml @@ -0,0 +1,31 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = true + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/charcoal.toml b/minecraft/config/jaopca/materials/charcoal.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/charcoal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/chimerite.toml b/minecraft/config/jaopca/materials/chimerite.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/chimerite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/chlorophyte.toml b/minecraft/config/jaopca/materials/chlorophyte.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/chlorophyte.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/cincinnasite.toml b/minecraft/config/jaopca/materials/cincinnasite.toml new file mode 100644 index 0000000..c87e2c0 --- /dev/null +++ b/minecraft/config/jaopca/materials/cincinnasite.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/cinderslime.toml b/minecraft/config/jaopca/materials/cinderslime.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/cinderslime.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/cinnabar.toml b/minecraft/config/jaopca/materials/cinnabar.toml new file mode 100644 index 0000000..bed8414 --- /dev/null +++ b/minecraft/config/jaopca/materials/cinnabar.toml @@ -0,0 +1,25 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 10836065 + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/coal.toml b/minecraft/config/jaopca/materials/coal.toml new file mode 100644 index 0000000..830c0b6 --- /dev/null +++ b/minecraft/config/jaopca/materials/coal.toml @@ -0,0 +1,21 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 2434086 + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/coal_coke.toml b/minecraft/config/jaopca/materials/coal_coke.toml new file mode 100644 index 0000000..c31cd75 --- /dev/null +++ b/minecraft/config/jaopca/materials/coal_coke.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 5921369 + diff --git a/minecraft/config/jaopca/materials/cobalt.toml b/minecraft/config/jaopca/materials/cobalt.toml new file mode 100644 index 0000000..62ed78b --- /dev/null +++ b/minecraft/config/jaopca/materials/cobalt.toml @@ -0,0 +1,29 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 2580657 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/compressed_iron.toml b/minecraft/config/jaopca/materials/compressed_iron.toml new file mode 100644 index 0000000..bf5c177 --- /dev/null +++ b/minecraft/config/jaopca/materials/compressed_iron.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 6908007 + diff --git a/minecraft/config/jaopca/materials/conductive_alloy.toml b/minecraft/config/jaopca/materials/conductive_alloy.toml new file mode 100644 index 0000000..e74f378 --- /dev/null +++ b/minecraft/config/jaopca/materials/conductive_alloy.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 12228755 + diff --git a/minecraft/config/jaopca/materials/constantan.toml b/minecraft/config/jaopca/materials/constantan.toml new file mode 100644 index 0000000..523c312 --- /dev/null +++ b/minecraft/config/jaopca/materials/constantan.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 12557137 + diff --git a/minecraft/config/jaopca/materials/copper.toml b/minecraft/config/jaopca/materials/copper.toml new file mode 100644 index 0000000..c2cffb7 --- /dev/null +++ b/minecraft/config/jaopca/materials/copper.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 12280389 + diff --git a/minecraft/config/jaopca/materials/copper_alloy.toml b/minecraft/config/jaopca/materials/copper_alloy.toml new file mode 100644 index 0000000..d241d71 --- /dev/null +++ b/minecraft/config/jaopca/materials/copper_alloy.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 10056235 + diff --git a/minecraft/config/jaopca/materials/corrupti.toml b/minecraft/config/jaopca/materials/corrupti.toml new file mode 100644 index 0000000..6a29226 --- /dev/null +++ b/minecraft/config/jaopca/materials/corrupti.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 5050941 + diff --git a/minecraft/config/jaopca/materials/crimson.toml b/minecraft/config/jaopca/materials/crimson.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/crimson.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/crystallized_ether.toml b/minecraft/config/jaopca/materials/crystallized_ether.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/crystallized_ether.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/cyanite.toml b/minecraft/config/jaopca/materials/cyanite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/cyanite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/dark.toml b/minecraft/config/jaopca/materials/dark.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/dark.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/dark_metal.toml b/minecraft/config/jaopca/materials/dark_metal.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/dark_metal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/dark_steel.toml b/minecraft/config/jaopca/materials/dark_steel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/dark_steel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/demonite.toml b/minecraft/config/jaopca/materials/demonite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/demonite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/deorum.toml b/minecraft/config/jaopca/materials/deorum.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/deorum.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/desh.toml b/minecraft/config/jaopca/materials/desh.toml new file mode 100644 index 0000000..cf8457e --- /dev/null +++ b/minecraft/config/jaopca/materials/desh.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 11758406 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/diamond.toml b/minecraft/config/jaopca/materials/diamond.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/diamond.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/draconium.toml b/minecraft/config/jaopca/materials/draconium.toml new file mode 100644 index 0000000..8761417 --- /dev/null +++ b/minecraft/config/jaopca/materials/draconium.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 8411814 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/draconium_awakened-1.toml.bak b/minecraft/config/jaopca/materials/draconium_awakened-1.toml.bak new file mode 100644 index 0000000..f0ab497 --- /dev/null +++ b/minecraft/config/jaopca/materials/draconium_awakened-1.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 0xE37B01 + diff --git a/minecraft/config/jaopca/materials/draconium_awakened.toml b/minecraft/config/jaopca/materials/draconium_awakened.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/draconium_awakened.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/draculite.toml b/minecraft/config/jaopca/materials/draculite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/draculite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/dragonstone.toml b/minecraft/config/jaopca/materials/dragonstone.toml new file mode 100644 index 0000000..8c7a9c7 --- /dev/null +++ b/minecraft/config/jaopca/materials/dragonstone.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 13205420 + diff --git a/minecraft/config/jaopca/materials/ebony.toml b/minecraft/config/jaopca/materials/ebony.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/ebony.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/echo_bronze.toml b/minecraft/config/jaopca/materials/echo_bronze.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/echo_bronze.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/electrical_steel.toml b/minecraft/config/jaopca/materials/electrical_steel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/electrical_steel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/electrotine.toml b/minecraft/config/jaopca/materials/electrotine.toml new file mode 100644 index 0000000..61adf0f --- /dev/null +++ b/minecraft/config/jaopca/materials/electrotine.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/electrotine_alloy.toml b/minecraft/config/jaopca/materials/electrotine_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/electrotine_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/electrum.toml b/minecraft/config/jaopca/materials/electrum.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/electrum.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/elementium.toml b/minecraft/config/jaopca/materials/elementium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/elementium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/emerald.toml b/minecraft/config/jaopca/materials/emerald.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/emerald.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/end_steel.toml b/minecraft/config/jaopca/materials/end_steel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/end_steel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/end_stone.toml b/minecraft/config/jaopca/materials/end_stone.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/end_stone.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/ender_crystal.toml b/minecraft/config/jaopca/materials/ender_crystal.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/ender_crystal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/ender_pearl.toml b/minecraft/config/jaopca/materials/ender_pearl.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/ender_pearl.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/enderium.toml b/minecraft/config/jaopca/materials/enderium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/enderium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/energetic_alloy.toml b/minecraft/config/jaopca/materials/energetic_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/energetic_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/energized_copper.toml b/minecraft/config/jaopca/materials/energized_copper.toml new file mode 100644 index 0000000..aba2fb8 --- /dev/null +++ b/minecraft/config/jaopca/materials/energized_copper.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 14198150 + diff --git a/minecraft/config/jaopca/materials/energized_gold.toml b/minecraft/config/jaopca/materials/energized_gold.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/energized_gold.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/enticing_crystal.toml b/minecraft/config/jaopca/materials/enticing_crystal.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/enticing_crystal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/ether_ashes.toml b/minecraft/config/jaopca/materials/ether_ashes.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/ether_ashes.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/ethereal_alloy.toml b/minecraft/config/jaopca/materials/ethereal_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/ethereal_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/ethereal_brick.toml b/minecraft/config/jaopca/materials/ethereal_brick.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/ethereal_brick.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/extraterrestrial_steel.toml b/minecraft/config/jaopca/materials/extraterrestrial_steel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/extraterrestrial_steel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/fiery.toml b/minecraft/config/jaopca/materials/fiery.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/fiery.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/fire_dragonsteel.toml b/minecraft/config/jaopca/materials/fire_dragonsteel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/fire_dragonsteel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/flour.toml b/minecraft/config/jaopca/materials/flour.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/flour.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/fluix.toml b/minecraft/config/jaopca/materials/fluix.toml new file mode 100644 index 0000000..bc79f30 --- /dev/null +++ b/minecraft/config/jaopca/materials/fluix.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 8148383 + diff --git a/minecraft/config/jaopca/materials/fluorite.toml b/minecraft/config/jaopca/materials/fluorite.toml new file mode 100644 index 0000000..4ded6c4 --- /dev/null +++ b/minecraft/config/jaopca/materials/fluorite.toml @@ -0,0 +1,25 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 13359839 + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/forgotten_steel.toml b/minecraft/config/jaopca/materials/forgotten_steel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/forgotten_steel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/glowstone-1.toml.bak b/minecraft/config/jaopca/materials/glowstone-1.toml.bak new file mode 100644 index 0000000..b6a02f7 --- /dev/null +++ b/minecraft/config/jaopca/materials/glowstone-1.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xBF894E + diff --git a/minecraft/config/jaopca/materials/glowstone-2.toml.bak b/minecraft/config/jaopca/materials/glowstone-2.toml.bak new file mode 100644 index 0000000..b6a02f7 --- /dev/null +++ b/minecraft/config/jaopca/materials/glowstone-2.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xBF894E + diff --git a/minecraft/config/jaopca/materials/glowstone-3.toml.bak b/minecraft/config/jaopca/materials/glowstone-3.toml.bak new file mode 100644 index 0000000..b6a02f7 --- /dev/null +++ b/minecraft/config/jaopca/materials/glowstone-3.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 0xBF894E + diff --git a/minecraft/config/jaopca/materials/glowstone.toml b/minecraft/config/jaopca/materials/glowstone.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/glowstone.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/gold.toml b/minecraft/config/jaopca/materials/gold.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/gold.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/grains_of_infinity.toml b/minecraft/config/jaopca/materials/grains_of_infinity.toml new file mode 100644 index 0000000..664e59c --- /dev/null +++ b/minecraft/config/jaopca/materials/grains_of_infinity.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + #The color of this material. + color = 3552565 + diff --git a/minecraft/config/jaopca/materials/grains_of_pizeallity.toml b/minecraft/config/jaopca/materials/grains_of_pizeallity.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/grains_of_pizeallity.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/grains_of_prescience.toml b/minecraft/config/jaopca/materials/grains_of_prescience.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/grains_of_prescience.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/grains_of_the_end.toml b/minecraft/config/jaopca/materials/grains_of_the_end.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/grains_of_the_end.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/grains_of_vibrancy.toml b/minecraft/config/jaopca/materials/grains_of_vibrancy.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/grains_of_vibrancy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/graphite.toml b/minecraft/config/jaopca/materials/graphite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/graphite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/gravitite.toml b/minecraft/config/jaopca/materials/gravitite.toml new file mode 100644 index 0000000..c87e2c0 --- /dev/null +++ b/minecraft/config/jaopca/materials/gravitite.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/hellforged.toml b/minecraft/config/jaopca/materials/hellforged.toml new file mode 100644 index 0000000..01e4c01 --- /dev/null +++ b/minecraft/config/jaopca/materials/hellforged.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 10542032 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/hepatizon.toml b/minecraft/config/jaopca/materials/hepatizon.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/hepatizon.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/hop_graphite.toml b/minecraft/config/jaopca/materials/hop_graphite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/hop_graphite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/ice_dragonsteel.toml b/minecraft/config/jaopca/materials/ice_dragonsteel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/ice_dragonsteel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/iesnium.toml b/minecraft/config/jaopca/materials/iesnium.toml new file mode 100644 index 0000000..4c0ac3c --- /dev/null +++ b/minecraft/config/jaopca/materials/iesnium.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 7120050 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/imperium.toml b/minecraft/config/jaopca/materials/imperium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/imperium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/inanite.toml b/minecraft/config/jaopca/materials/inanite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/inanite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/inferium.toml b/minecraft/config/jaopca/materials/inferium.toml new file mode 100644 index 0000000..6854b74 --- /dev/null +++ b/minecraft/config/jaopca/materials/inferium.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 7638016 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/insanite.toml b/minecraft/config/jaopca/materials/insanite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/insanite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/insanium.toml b/minecraft/config/jaopca/materials/insanium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/insanium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/insulating_resin.toml b/minecraft/config/jaopca/materials/insulating_resin.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/insulating_resin.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/invar.toml b/minecraft/config/jaopca/materials/invar.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/invar.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/iridium.toml b/minecraft/config/jaopca/materials/iridium.toml new file mode 100644 index 0000000..7801c63 --- /dev/null +++ b/minecraft/config/jaopca/materials/iridium.toml @@ -0,0 +1,29 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 10460056 + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/iron.toml b/minecraft/config/jaopca/materials/iron.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/iron.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/ironwood.toml b/minecraft/config/jaopca/materials/ironwood.toml new file mode 100644 index 0000000..6954ec3 --- /dev/null +++ b/minecraft/config/jaopca/materials/ironwood.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 7037520 + diff --git a/minecraft/config/jaopca/materials/jade.toml b/minecraft/config/jaopca/materials/jade.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/jade.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/knightmetal.toml b/minecraft/config/jaopca/materials/knightmetal.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/knightmetal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/knightslime.toml b/minecraft/config/jaopca/materials/knightslime.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/knightslime.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/lapis.toml b/minecraft/config/jaopca/materials/lapis.toml new file mode 100644 index 0000000..8f54324 --- /dev/null +++ b/minecraft/config/jaopca/materials/lapis.toml @@ -0,0 +1,21 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 3430829 + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/lead.toml b/minecraft/config/jaopca/materials/lead.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/lead.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/lightite.toml b/minecraft/config/jaopca/materials/lightite.toml new file mode 100644 index 0000000..4e695e3 --- /dev/null +++ b/minecraft/config/jaopca/materials/lightite.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 12696764 + diff --git a/minecraft/config/jaopca/materials/lightning_dragonsteel.toml b/minecraft/config/jaopca/materials/lightning_dragonsteel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/lightning_dragonsteel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/lightnum.toml b/minecraft/config/jaopca/materials/lightnum.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/lightnum.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/lithium.toml b/minecraft/config/jaopca/materials/lithium.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/lithium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/ludicrite.toml b/minecraft/config/jaopca/materials/ludicrite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/ludicrite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/lumium.toml b/minecraft/config/jaopca/materials/lumium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/lumium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/magentite.toml b/minecraft/config/jaopca/materials/magentite.toml new file mode 100644 index 0000000..434af0c --- /dev/null +++ b/minecraft/config/jaopca/materials/magentite.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 13195465 + diff --git a/minecraft/config/jaopca/materials/mana.toml b/minecraft/config/jaopca/materials/mana.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/mana.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/mana_diamond.toml b/minecraft/config/jaopca/materials/mana_diamond.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/mana_diamond.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/manasteel.toml b/minecraft/config/jaopca/materials/manasteel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/manasteel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/manyullyn.toml b/minecraft/config/jaopca/materials/manyullyn.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/manyullyn.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/meteoric_iron.toml b/minecraft/config/jaopca/materials/meteoric_iron.toml new file mode 100644 index 0000000..f2ce172 --- /dev/null +++ b/minecraft/config/jaopca/materials/meteoric_iron.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 11237509 + diff --git a/minecraft/config/jaopca/materials/mithril-1.toml.bak b/minecraft/config/jaopca/materials/mithril-1.toml.bak new file mode 100644 index 0000000..e31ed66 --- /dev/null +++ b/minecraft/config/jaopca/materials/mithril-1.toml.bak @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 0x9ABEC4 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/mithril.toml b/minecraft/config/jaopca/materials/mithril.toml new file mode 100644 index 0000000..95a91a7 --- /dev/null +++ b/minecraft/config/jaopca/materials/mithril.toml @@ -0,0 +1,31 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/mundabitur.toml b/minecraft/config/jaopca/materials/mundabitur.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/mundabitur.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/neptunium.toml b/minecraft/config/jaopca/materials/neptunium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/neptunium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/nether_brick.toml b/minecraft/config/jaopca/materials/nether_brick.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/nether_brick.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/nether_ruby.toml b/minecraft/config/jaopca/materials/nether_ruby.toml new file mode 100644 index 0000000..97e8192 --- /dev/null +++ b/minecraft/config/jaopca/materials/nether_ruby.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/netherite.toml b/minecraft/config/jaopca/materials/netherite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/netherite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/netherite_scrap.toml b/minecraft/config/jaopca/materials/netherite_scrap.toml new file mode 100644 index 0000000..769af6d --- /dev/null +++ b/minecraft/config/jaopca/materials/netherite_scrap.toml @@ -0,0 +1,19 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + diff --git a/minecraft/config/jaopca/materials/nickel.toml b/minecraft/config/jaopca/materials/nickel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/nickel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/niter.toml b/minecraft/config/jaopca/materials/niter.toml new file mode 100644 index 0000000..7ceca42 --- /dev/null +++ b/minecraft/config/jaopca/materials/niter.toml @@ -0,0 +1,29 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 10457492 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/obsidian.toml b/minecraft/config/jaopca/materials/obsidian.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/obsidian.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/obsidian_bronze.toml b/minecraft/config/jaopca/materials/obsidian_bronze.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/obsidian_bronze.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/osmium.toml b/minecraft/config/jaopca/materials/osmium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/osmium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/ostrum.toml b/minecraft/config/jaopca/materials/ostrum.toml new file mode 100644 index 0000000..5d62c49 --- /dev/null +++ b/minecraft/config/jaopca/materials/ostrum.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 7950683 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/peridot.toml b/minecraft/config/jaopca/materials/peridot.toml new file mode 100644 index 0000000..e31e30a --- /dev/null +++ b/minecraft/config/jaopca/materials/peridot.toml @@ -0,0 +1,29 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 11780930 + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/pewter.toml b/minecraft/config/jaopca/materials/pewter.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/pewter.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/pig_iron.toml b/minecraft/config/jaopca/materials/pig_iron.toml new file mode 100644 index 0000000..9c2fd1f --- /dev/null +++ b/minecraft/config/jaopca/materials/pig_iron.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 11173244 + diff --git a/minecraft/config/jaopca/materials/platinum.toml b/minecraft/config/jaopca/materials/platinum.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/platinum.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/plutonium.toml b/minecraft/config/jaopca/materials/plutonium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/plutonium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/prescient_crystal.toml b/minecraft/config/jaopca/materials/prescient_crystal.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/prescient_crystal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/prismarine.toml b/minecraft/config/jaopca/materials/prismarine.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/prismarine.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/prosperity.toml b/minecraft/config/jaopca/materials/prosperity.toml new file mode 100644 index 0000000..6d80f8d --- /dev/null +++ b/minecraft/config/jaopca/materials/prosperity.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 11586250 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/prudentium.toml b/minecraft/config/jaopca/materials/prudentium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/prudentium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/pulsating_alloy.toml b/minecraft/config/jaopca/materials/pulsating_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/pulsating_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/pulsating_crystal.toml b/minecraft/config/jaopca/materials/pulsating_crystal.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/pulsating_crystal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/pyral.toml b/minecraft/config/jaopca/materials/pyral.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/pyral.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/pyrium.toml b/minecraft/config/jaopca/materials/pyrium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/pyrium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/quartz.toml b/minecraft/config/jaopca/materials/quartz.toml new file mode 100644 index 0000000..accb801 --- /dev/null +++ b/minecraft/config/jaopca/materials/quartz.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = true + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/queens_slime.toml b/minecraft/config/jaopca/materials/queens_slime.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/queens_slime.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/red_alloy.toml b/minecraft/config/jaopca/materials/red_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/red_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/redstone.toml b/minecraft/config/jaopca/materials/redstone.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/redstone.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/redstone_alloy.toml b/minecraft/config/jaopca/materials/redstone_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/redstone_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/refined_glowstone.toml b/minecraft/config/jaopca/materials/refined_glowstone.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/refined_glowstone.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/refined_obsidian.toml b/minecraft/config/jaopca/materials/refined_obsidian.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/refined_obsidian.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/refined_sentrite.toml b/minecraft/config/jaopca/materials/refined_sentrite.toml new file mode 100644 index 0000000..c87e2c0 --- /dev/null +++ b/minecraft/config/jaopca/materials/refined_sentrite.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/reggarfonite.toml b/minecraft/config/jaopca/materials/reggarfonite.toml new file mode 100644 index 0000000..342acd0 --- /dev/null +++ b/minecraft/config/jaopca/materials/reggarfonite.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 8180679 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/ridiculite.toml b/minecraft/config/jaopca/materials/ridiculite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/ridiculite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/rose_gold.toml b/minecraft/config/jaopca/materials/rose_gold.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/rose_gold.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/rough_iron.toml b/minecraft/config/jaopca/materials/rough_iron.toml new file mode 100644 index 0000000..d167117 --- /dev/null +++ b/minecraft/config/jaopca/materials/rough_iron.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 11378066 + diff --git a/minecraft/config/jaopca/materials/ruby.toml b/minecraft/config/jaopca/materials/ruby.toml new file mode 100644 index 0000000..c06eb05 --- /dev/null +++ b/minecraft/config/jaopca/materials/ruby.toml @@ -0,0 +1,29 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 12599894 + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/sal_ammoniac-1.toml.bak b/minecraft/config/jaopca/materials/sal_ammoniac-1.toml.bak new file mode 100644 index 0000000..c3e4393 --- /dev/null +++ b/minecraft/config/jaopca/materials/sal_ammoniac-1.toml.bak @@ -0,0 +1,29 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 0xCEA4D1 + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/sal_ammoniac.toml b/minecraft/config/jaopca/materials/sal_ammoniac.toml new file mode 100644 index 0000000..fe2c9de --- /dev/null +++ b/minecraft/config/jaopca/materials/sal_ammoniac.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/salt.toml b/minecraft/config/jaopca/materials/salt.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/salt.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/saltpeter.toml b/minecraft/config/jaopca/materials/saltpeter.toml new file mode 100644 index 0000000..61adf0f --- /dev/null +++ b/minecraft/config/jaopca/materials/saltpeter.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/sapphire.toml b/minecraft/config/jaopca/materials/sapphire.toml new file mode 100644 index 0000000..444b34b --- /dev/null +++ b/minecraft/config/jaopca/materials/sapphire.toml @@ -0,0 +1,29 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 7050203 + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/shadow_gem.toml b/minecraft/config/jaopca/materials/shadow_gem.toml new file mode 100644 index 0000000..e9b89c8 --- /dev/null +++ b/minecraft/config/jaopca/materials/shadow_gem.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 9259218 + diff --git a/minecraft/config/jaopca/materials/shimmerslime.toml b/minecraft/config/jaopca/materials/shimmerslime.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/shimmerslime.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/shroomite.toml b/minecraft/config/jaopca/materials/shroomite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/shroomite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/signalum.toml b/minecraft/config/jaopca/materials/signalum.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/signalum.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/silky_jewel.toml b/minecraft/config/jaopca/materials/silky_jewel.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/silky_jewel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/silver.toml b/minecraft/config/jaopca/materials/silver.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/silver.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/sky_insulating_resin.toml b/minecraft/config/jaopca/materials/sky_insulating_resin.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/sky_insulating_resin.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/skyjade.toml b/minecraft/config/jaopca/materials/skyjade.toml new file mode 100644 index 0000000..97e8192 --- /dev/null +++ b/minecraft/config/jaopca/materials/skyjade.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/slimesteel.toml b/minecraft/config/jaopca/materials/slimesteel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/slimesteel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/soul_steel.toml b/minecraft/config/jaopca/materials/soul_steel.toml new file mode 100644 index 0000000..2db2147 --- /dev/null +++ b/minecraft/config/jaopca/materials/soul_steel.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 7170405 + diff --git a/minecraft/config/jaopca/materials/soularium.toml b/minecraft/config/jaopca/materials/soularium.toml new file mode 100644 index 0000000..b7c3032 --- /dev/null +++ b/minecraft/config/jaopca/materials/soularium.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 5785135 + diff --git a/minecraft/config/jaopca/materials/soulium.toml b/minecraft/config/jaopca/materials/soulium.toml new file mode 100644 index 0000000..e3ff2fa --- /dev/null +++ b/minecraft/config/jaopca/materials/soulium.toml @@ -0,0 +1,33 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 6832172 + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/soulsteel.toml b/minecraft/config/jaopca/materials/soulsteel.toml new file mode 100644 index 0000000..ab94ea7 --- /dev/null +++ b/minecraft/config/jaopca/materials/soulsteel.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 5662562 + diff --git a/minecraft/config/jaopca/materials/source.toml b/minecraft/config/jaopca/materials/source.toml new file mode 100644 index 0000000..f701ece --- /dev/null +++ b/minecraft/config/jaopca/materials/source.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 11956189 + diff --git a/minecraft/config/jaopca/materials/spectre.toml b/minecraft/config/jaopca/materials/spectre.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/spectre.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/steel.toml b/minecraft/config/jaopca/materials/steel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/steel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/steeleaf.toml b/minecraft/config/jaopca/materials/steeleaf.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/steeleaf.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/sterling_silver.toml b/minecraft/config/jaopca/materials/sterling_silver.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/sterling_silver.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/stormforged_steel.toml b/minecraft/config/jaopca/materials/stormforged_steel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/stormforged_steel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/stratus.toml b/minecraft/config/jaopca/materials/stratus.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/stratus.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/sulfur.toml b/minecraft/config/jaopca/materials/sulfur.toml new file mode 100644 index 0000000..5e64ba0 --- /dev/null +++ b/minecraft/config/jaopca/materials/sulfur.toml @@ -0,0 +1,25 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + #The color of this material. + color = 14010737 + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/supremium.toml b/minecraft/config/jaopca/materials/supremium.toml new file mode 100644 index 0000000..3403261 --- /dev/null +++ b/minecraft/config/jaopca/materials/supremium.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 11730944 + diff --git a/minecraft/config/jaopca/materials/terminite.toml b/minecraft/config/jaopca/materials/terminite.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/terminite.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/terrasteel.toml b/minecraft/config/jaopca/materials/terrasteel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/terrasteel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/tertium.toml b/minecraft/config/jaopca/materials/tertium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/tertium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/thallasium.toml b/minecraft/config/jaopca/materials/thallasium.toml new file mode 100644 index 0000000..c87e2c0 --- /dev/null +++ b/minecraft/config/jaopca/materials/thallasium.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/tin.toml b/minecraft/config/jaopca/materials/tin.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/tin.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/tinkers_bronze.toml b/minecraft/config/jaopca/materials/tinkers_bronze.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/tinkers_bronze.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/unobtainium.toml b/minecraft/config/jaopca/materials/unobtainium.toml new file mode 100644 index 0000000..769af6d --- /dev/null +++ b/minecraft/config/jaopca/materials/unobtainium.toml @@ -0,0 +1,19 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + diff --git a/minecraft/config/jaopca/materials/unobtainium_allthemodium_alloy.toml b/minecraft/config/jaopca/materials/unobtainium_allthemodium_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/unobtainium_allthemodium_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/unobtainium_vibranium_alloy.toml b/minecraft/config/jaopca/materials/unobtainium_vibranium_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/unobtainium_vibranium_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/uraninite.toml b/minecraft/config/jaopca/materials/uraninite.toml new file mode 100644 index 0000000..95a91a7 --- /dev/null +++ b/minecraft/config/jaopca/materials/uraninite.toml @@ -0,0 +1,31 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + +[molten] + #The temperature of this molten fluid. + temperature = 1000 + diff --git a/minecraft/config/jaopca/materials/uranium.toml b/minecraft/config/jaopca/materials/uranium.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/uranium.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/valkyrum.toml b/minecraft/config/jaopca/materials/valkyrum.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/valkyrum.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/veridium.toml b/minecraft/config/jaopca/materials/veridium.toml new file mode 100644 index 0000000..c87e2c0 --- /dev/null +++ b/minecraft/config/jaopca/materials/veridium.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/vibranium.toml b/minecraft/config/jaopca/materials/vibranium.toml new file mode 100644 index 0000000..769af6d --- /dev/null +++ b/minecraft/config/jaopca/materials/vibranium.toml @@ -0,0 +1,19 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + diff --git a/minecraft/config/jaopca/materials/vibranium_allthemodium_alloy.toml b/minecraft/config/jaopca/materials/vibranium_allthemodium_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/vibranium_allthemodium_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/vibrant_alloy.toml b/minecraft/config/jaopca/materials/vibrant_alloy.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/vibrant_alloy.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/vibrant_crystal.toml b/minecraft/config/jaopca/materials/vibrant_crystal.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/vibrant_crystal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/warden_steel.toml b/minecraft/config/jaopca/materials/warden_steel.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/warden_steel.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/weather_crystal.toml b/minecraft/config/jaopca/materials/weather_crystal.toml new file mode 100644 index 0000000..a94a1b2 --- /dev/null +++ b/minecraft/config/jaopca/materials/weather_crystal.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + diff --git a/minecraft/config/jaopca/materials/white_chocolate-1.toml.bak b/minecraft/config/jaopca/materials/white_chocolate-1.toml.bak new file mode 100644 index 0000000..fd0b898 --- /dev/null +++ b/minecraft/config/jaopca/materials/white_chocolate-1.toml.bak @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 0xAE7E4B + diff --git a/minecraft/config/jaopca/materials/white_chocolate.toml b/minecraft/config/jaopca/materials/white_chocolate.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/white_chocolate.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/wood.toml b/minecraft/config/jaopca/materials/wood.toml new file mode 100644 index 0000000..686efc5 --- /dev/null +++ b/minecraft/config/jaopca/materials/wood.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "dust" + diff --git a/minecraft/config/jaopca/materials/wrought_iron.toml b/minecraft/config/jaopca/materials/wrought_iron.toml new file mode 100644 index 0000000..a6dd49d --- /dev/null +++ b/minecraft/config/jaopca/materials/wrought_iron.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 4939109 + diff --git a/minecraft/config/jaopca/materials/yellorium.toml b/minecraft/config/jaopca/materials/yellorium.toml new file mode 100644 index 0000000..e5514f9 --- /dev/null +++ b/minecraft/config/jaopca/materials/yellorium.toml @@ -0,0 +1,17 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + #The color of this material. + color = 11642961 + diff --git a/minecraft/config/jaopca/materials/zanite.toml b/minecraft/config/jaopca/materials/zanite.toml new file mode 100644 index 0000000..97e8192 --- /dev/null +++ b/minecraft/config/jaopca/materials/zanite.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "crystal" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/materials/zinc.toml b/minecraft/config/jaopca/materials/zinc.toml new file mode 100644 index 0000000..e444124 --- /dev/null +++ b/minecraft/config/jaopca/materials/zinc.toml @@ -0,0 +1,15 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + diff --git a/minecraft/config/jaopca/materials/zith.toml b/minecraft/config/jaopca/materials/zith.toml new file mode 100644 index 0000000..c87e2c0 --- /dev/null +++ b/minecraft/config/jaopca/materials/zith.toml @@ -0,0 +1,27 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #Is the storage block of this material small (2x2). + isSmallStorageBlock = false + #The module blacklist of this material. "*" is an alias for all modules. If a module name occurs an odd number of times (including wildcards), then the module is blacklisted. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[theurgy] + #The alchemical sulfur tier of this material. + tier = "common" + +[create] + #The default byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The default base to use in Mekanism's Combiner to recreate ores. + oreBase = "#forge:cobblestone/normal" + diff --git a/minecraft/config/jaopca/modules/actuallyadditions.toml b/minecraft/config/jaopca/modules/actuallyadditions.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/actuallyadditions.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/actuallyadditions_legacy.toml b/minecraft/config/jaopca/modules/actuallyadditions_legacy.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/actuallyadditions_legacy.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/actuallyadditions_non_ingot.toml b/minecraft/config/jaopca/modules/actuallyadditions_non_ingot.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/actuallyadditions_non_ingot.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/bloodmagic.toml b/minecraft/config/jaopca/modules/bloodmagic.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/bloodmagic.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/bloodmagic_compat.toml b/minecraft/config/jaopca/modules/bloodmagic_compat.toml new file mode 100644 index 0000000..c83cc53 --- /dev/null +++ b/minecraft/config/jaopca/modules/bloodmagic_compat.toml @@ -0,0 +1,9 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have ARC to dust recipes added. + toDustMaterialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/create.toml b/minecraft/config/jaopca/modules/create.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/create.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/create_compat.toml b/minecraft/config/jaopca/modules/create_compat.toml new file mode 100644 index 0000000..48c80c7 --- /dev/null +++ b/minecraft/config/jaopca/modules/create_compat.toml @@ -0,0 +1,9 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have pressing to plate recipes added. + toPlateMaterialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/create_non_ingot.toml b/minecraft/config/jaopca/modules/create_non_ingot.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/create_non_ingot.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/custom.toml b/minecraft/config/jaopca/modules/custom.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/custom.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/dusts.toml b/minecraft/config/jaopca/modules/dusts.toml new file mode 100644 index 0000000..e63cb05 --- /dev/null +++ b/minecraft/config/jaopca/modules/dusts.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/jaopca/modules/energizedpower.toml b/minecraft/config/jaopca/modules/energizedpower.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/energizedpower.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/energizedpower_compat.toml b/minecraft/config/jaopca/modules/energizedpower_compat.toml new file mode 100644 index 0000000..199177c --- /dev/null +++ b/minecraft/config/jaopca/modules/energizedpower_compat.toml @@ -0,0 +1,11 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have pulverizer to dust recipes added. + toDustMaterialBlacklist = [] + #The materials that should not have compressor to plate recipes added. + toPlateMaterialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/energizedpower_non_ingot.toml b/minecraft/config/jaopca/modules/energizedpower_non_ingot.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/energizedpower_non_ingot.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/extras_ae2.toml b/minecraft/config/jaopca/modules/extras_ae2.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/extras_ae2.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/extras_gears.toml b/minecraft/config/jaopca/modules/extras_gears.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/extras_gears.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/extras_plates.toml b/minecraft/config/jaopca/modules/extras_plates.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/extras_plates.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/extras_rods.toml b/minecraft/config/jaopca/modules/extras_rods.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/extras_rods.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/immersiveengineering.toml b/minecraft/config/jaopca/modules/immersiveengineering.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/immersiveengineering.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/immersiveengineering_compat.toml b/minecraft/config/jaopca/modules/immersiveengineering_compat.toml new file mode 100644 index 0000000..38ae117 --- /dev/null +++ b/minecraft/config/jaopca/modules/immersiveengineering_compat.toml @@ -0,0 +1,21 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have crusher to dust recipes added. + toDustMaterialBlacklist = [] + #The materials that should not have arc furnace to ingot recipes added. + toIngotMaterialBlacklist = [] + #The materials that should not have press to gear recipes added. + toGearMaterialBlacklist = [] + #The materials that should not have press to plate recipes added. + toPlateMaterialBlacklist = [] + #The materials that should not have press to rod recipes added. + toRodMaterialBlacklist = [] + #The materials that should not have press to wire recipes added. + toWireMaterialBlacklist = [] + #The materials that should not have hammering recipes added. + hammerToPlateMaterialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/immersiveengineering_non_ingot.toml b/minecraft/config/jaopca/modules/immersiveengineering_non_ingot.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/immersiveengineering_non_ingot.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/mekanism.toml b/minecraft/config/jaopca/modules/mekanism.toml new file mode 100644 index 0000000..40d79d2 --- /dev/null +++ b/minecraft/config/jaopca/modules/mekanism.toml @@ -0,0 +1,33 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +#Configurations related to gas tags. +[gasTags] + #List of gas tags that should not be added. + blacklist = [] + #List of gas tags that should be considered as defined. + customDefined = [] + +#Configurations related to infuse type tags. +[infuseTypeTags] + #List of infuse type tags that should not be added. + blacklist = [] + #List of infuse type tags that should be considered as defined. + customDefined = [] + +#Configurations related to pigment tags. +[pigmentTags] + #List of infuse type tags that should not be added. + blacklist = [] + #List of infuse type tags that should be considered as defined. + customDefined = [] + +#Configurations related to slurry tags. +[slurryTags] + #List of infuse type tags that should not be added. + blacklist = [] + #List of infuse type tags that should be considered as defined. + customDefined = [] + diff --git a/minecraft/config/jaopca/modules/mekanism_compat.toml b/minecraft/config/jaopca/modules/mekanism_compat.toml new file mode 100644 index 0000000..57dd35d --- /dev/null +++ b/minecraft/config/jaopca/modules/mekanism_compat.toml @@ -0,0 +1,13 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have crushing to dust recipes added. + toDustMaterialBlacklist = [] + #The materials that should not have enriching to material recipes added. + toCrystalMaterialBlacklist = [] + #The materials that should not have combining to ore recipes added. + toOreMaterialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/mekanism_non_ingot.toml b/minecraft/config/jaopca/modules/mekanism_non_ingot.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/mekanism_non_ingot.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/molten.toml b/minecraft/config/jaopca/modules/molten.toml new file mode 100644 index 0000000..e63cb05 --- /dev/null +++ b/minecraft/config/jaopca/modules/molten.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/jaopca/modules/nuggets.toml b/minecraft/config/jaopca/modules/nuggets.toml new file mode 100644 index 0000000..e63cb05 --- /dev/null +++ b/minecraft/config/jaopca/modules/nuggets.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/jaopca/modules/occultism.toml b/minecraft/config/jaopca/modules/occultism.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/occultism.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/occultism_compat.toml b/minecraft/config/jaopca/modules/occultism_compat.toml new file mode 100644 index 0000000..fc2bd1e --- /dev/null +++ b/minecraft/config/jaopca/modules/occultism_compat.toml @@ -0,0 +1,9 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have crushing to dust recipes added. + toDustMaterialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/railcraft.toml b/minecraft/config/jaopca/modules/railcraft.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/railcraft.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/railcraft_compat.toml b/minecraft/config/jaopca/modules/railcraft_compat.toml new file mode 100644 index 0000000..b1d2787 --- /dev/null +++ b/minecraft/config/jaopca/modules/railcraft_compat.toml @@ -0,0 +1,11 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have crusher to dust recipes added. + toDustMaterialBlacklist = [] + #The materials that should not have rolling to plate recipes added. + toCrystalMaterialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/railcraft_non_ingot.toml b/minecraft/config/jaopca/modules/railcraft_non_ingot.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/railcraft_non_ingot.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/raw_storage_blocks.toml b/minecraft/config/jaopca/modules/raw_storage_blocks.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/raw_storage_blocks.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/small_dusts.toml b/minecraft/config/jaopca/modules/small_dusts.toml new file mode 100644 index 0000000..e63cb05 --- /dev/null +++ b/minecraft/config/jaopca/modules/small_dusts.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/jaopca/modules/storage_blocks.toml b/minecraft/config/jaopca/modules/storage_blocks.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/storage_blocks.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/tconstruct.toml b/minecraft/config/jaopca/modules/tconstruct.toml new file mode 100644 index 0000000..03072dd --- /dev/null +++ b/minecraft/config/jaopca/modules/tconstruct.toml @@ -0,0 +1,9 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #Should the module only add recipes for materials with JAOPCA molten fluids. + jaopcaOnly = true + diff --git a/minecraft/config/jaopca/modules/tconstruct_compat.toml b/minecraft/config/jaopca/modules/tconstruct_compat.toml new file mode 100644 index 0000000..d81af67 --- /dev/null +++ b/minecraft/config/jaopca/modules/tconstruct_compat.toml @@ -0,0 +1,41 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #Should the module only add recipes for materials with JAOPCA molten fluids. + jaopcaOnly = true + #The materials that should not have ingot/gem melting recipes added. + materialToMoltenMaterialBlacklist = [] + #The materials that should not have storage block melting recipes added. + storageBlockToMoltenMaterialBlacklist = [] + #The materials that should not have nugget melting recipes added. + nuggetToMoltenMaterialBlacklist = [] + #The materials that should not have dust melting recipes added. + dustToMoltenMaterialBlacklist = [] + #The materials that should not have plate melting recipes added. + plateToMoltenMaterialBlacklist = [] + #The materials that should not have gear melting recipes added. + gearToMoltenMaterialBlacklist = [] + #The materials that should not have coin melting recipes added. + coinToMoltenMaterialBlacklist = [] + #The materials that should not have rod melting recipes added. + rodToMoltenMaterialBlacklist = [] + #The materials that should not have sheetmetal melting recipes added. + sheetmetalToMoltenMaterialBlacklist = [] + #The materials that should not have ingot/gem casting recipes added. + toMaterialMaterialBlacklist = [] + #The materials that should not have storage block casting recipes added. + toStorageBlockMaterialBlacklist = [] + #The materials that should not have nugget casting recipes added. + toNuggetMaterialBlacklist = [] + #The materials that should not have plate casting recipes added. + toPlateMaterialBlacklist = [] + #The materials that should not have gear casting recipes added. + toGearMaterialBlacklist = [] + #The materials that should not have coin casting recipes added. + toCoinMaterialBlacklist = [] + #The materials that should not have rod casting recipes added. + toRodMaterialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/thermal_expansion.toml b/minecraft/config/jaopca/modules/thermal_expansion.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/thermal_expansion.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/thermal_expansion_compat.toml b/minecraft/config/jaopca/modules/thermal_expansion_compat.toml new file mode 100644 index 0000000..8d8a642 --- /dev/null +++ b/minecraft/config/jaopca/modules/thermal_expansion_compat.toml @@ -0,0 +1,39 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[recipes] + #The materials that should not have pulverizer to dust recipes added. + toDustMaterialBlacklist = [] + #The materials that should not have smelter to ingot recipes added. + dustToIngotMaterialBlacklist = [] + #The materials that should not have press to plate recipes added. + toPlateMaterialBlacklist = [] + #The materials that should not have press to gear recipes added. + toGearMaterialBlacklist = [] + #The materials that should not have press material to coin recipes added. + materialToCoinMaterialBlacklist = [] + #The materials that should not have press nugget to coin recipes added. + nuggetToCoinMaterialBlacklist = [] + #The materials that should not have press material to storage block recipes added. + toStorageBlockMaterialBlacklist = [] + #The materials that should not have press nugget to material recipes added. + nuggetToMaterialMaterialBlacklist = [] + #The materials that should not have press raw material to raw storage block recipes added. + toRawStorageBlockMaterialBlacklist = [] + #The materials that should not have press storage block to material recipes added. + storageBlockToMaterialMaterialBlacklist = [] + #The materials that should not have press material to nugget recipes added. + toNuggetMaterialBlacklist = [] + #The materials that should not have press raw storage block to raw material recipes added. + toRawMaterialMaterialBlacklist = [] + #The materials that should not have chiller to ingot recipes added. + moltenToIngotMaterialBlacklist = [] + #The materials that should not have chiller to rod recipes added. + toRodMaterialBlacklist = [] + #The materials that should not have create centrifuge compat recipes added. + createToNuggetMaterialBlacklist = [] + #The materials that should not have create smelter compat recipes added. + createToIngotMaterialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/thermal_expansion_legacy.toml b/minecraft/config/jaopca/modules/thermal_expansion_legacy.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/thermal_expansion_legacy.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/thermal_expansion_non_ingot.toml b/minecraft/config/jaopca/modules/thermal_expansion_non_ingot.toml new file mode 100644 index 0000000..c9f5c15 --- /dev/null +++ b/minecraft/config/jaopca/modules/thermal_expansion_non_ingot.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + diff --git a/minecraft/config/jaopca/modules/theurgy.toml b/minecraft/config/jaopca/modules/theurgy.toml new file mode 100644 index 0000000..7926229 --- /dev/null +++ b/minecraft/config/jaopca/modules/theurgy.toml @@ -0,0 +1,9 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + +[tags] + #Should the module add tier tags for alchemical sulfurs. + addTierTags = false + diff --git a/minecraft/config/jaopca/modules/tiny_dusts.toml b/minecraft/config/jaopca/modules/tiny_dusts.toml new file mode 100644 index 0000000..e63cb05 --- /dev/null +++ b/minecraft/config/jaopca/modules/tiny_dusts.toml @@ -0,0 +1,7 @@ + +[general] + #The material blacklist of this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is blacklisted. These rules applies to all config material blacklists. + materialBlacklist = [] + #The materials to force generate passive forms for this module. "*" is an alias for all materials, and "*" followed with a material type name is an alias for all materials of that material type. If a material name occurs an odd number of times (including wildcards), then the material is whitelisted. These rules apply to all config material whitelists. + passiveMaterialWhitelist = [] + diff --git a/minecraft/config/jearchaeology-common.toml b/minecraft/config/jearchaeology-common.toml new file mode 100644 index 0000000..0e8c283 --- /dev/null +++ b/minecraft/config/jearchaeology-common.toml @@ -0,0 +1,5 @@ +#Enable compatibility with ATM +atm_compat = true +#Enable compatibility with Better Archeology +betterarcheology_compat = true + diff --git a/minecraft/config/jeed-client.toml b/minecraft/config/jeed-client.toml new file mode 100644 index 0000000..1aa6bc8 --- /dev/null +++ b/minecraft/config/jeed-client.toml @@ -0,0 +1,13 @@ +#Show effect colors in tooltip +effect_color = true +#Draw a black box behind effect icons +effect_box = true +#A list of effects that should not be registered nor shown in JEI/REI. You can also use the 'hidden' mob_effect tag +hidden_effects = [""] +#Show ingredients list along with an effect description +ingredients_list = true +#Renders individual slots instead of a big one. Only works for REI +render_slots = false +#Removes vanilla tooltips rendered when an effect renders small (square box) +replace_vanilla_tooltips = true + diff --git a/minecraft/config/jei/async_incompatible_plugins.json b/minecraft/config/jei/async_incompatible_plugins.json new file mode 100644 index 0000000..603b602 --- /dev/null +++ b/minecraft/config/jei/async_incompatible_plugins.json @@ -0,0 +1,9 @@ +{ + "formatVersion": 2, + "phaseIncompatible": { + "Registering recipes": [ + "yungscavebiomes:jei_plugin", + "endergetic:endergetic" + ] + } +} \ No newline at end of file diff --git a/minecraft/config/jei/world/local/New_World/lookupHistory.ini b/minecraft/config/jei/world/local/New_World/lookupHistory.ini new file mode 100644 index 0000000..f4d24f7 --- /dev/null +++ b/minecraft/config/jei/world/local/New_World/lookupHistory.ini @@ -0,0 +1,100 @@ +T:{Count:1b,id:"cyclic:flint_block"} +T:{Count:1b,id:"itemfilters:tag",tag:{value:"monumental_experience:crafter"}} +T:{Count:1b,id:"draconicevolution:draconium_chest"} +T:{Count:1b,id:"draconicevolution:draconic_wireless_crystal"} +T:{Count:1b,id:"draconicevolution:draconic_relay_crystal"} +T:{Count:1b,id:"draconicevolution:draconic_io_crystal"} +T:{Count:1b,id:"draconicevolution:reactor_stabilizer"} +T:{Count:1b,id:"draconicevolution:reactor_injector"} +T:{Count:1b,id:"draconicevolution:reactor_core"} +T:{Count:1b,id:"draconicevolution:draconic_sword"} +T:{Count:1b,id:"draconicevolution:wyvern_io_crystal"} +T:{Count:1b,id:"draconicevolution:basic_io_crystal"} +T:{Count:1b,id:"minecraft:iron_sword",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:cave_map",tag:{BiomeTargetResourceKey:"alexscaves:magnetic_caves"}} +T:{Count:1b,id:"alexscaves:cave_book"} +T:{Count:1b,id:"alexscaves:cave_codex",tag:{CaveBiome:"alexscaves:magnetic_caves"}} +T:{Count:1b,id:"alexscaves:magnetic_light"} +T:{Count:1b,id:"alexscaves:hologram_projector"} +T:{Count:1b,id:"alexscaves:magnetic_activator"} +T:{Count:1b,id:"alexscaves:heart_of_iron"} +T:{Count:1b,id:"alexscaves:azure_magnet"} +T:{Count:1b,id:"alexscaves:block_of_azure_neodymium"} +T:{Count:1b,id:"alexscaves:azure_neodymium_pillar"} +T:{Count:1b,id:"alexscaves:azure_neodymium_node"} +T:{Count:1b,id:"alexscaves:scarlet_magnet"} +T:{Count:1b,id:"alexscaves:block_of_scarlet_neodymium"} +T:{Count:1b,id:"alexscaves:scarlet_neodymium_pillar"} +T:{Count:1b,id:"alexscaves:scarlet_neodymium_node"} +T:{Count:1b,id:"alexscaves:heavy_bone"} +T:{Count:1b,id:"alexscaves:tough_hide"} +T:{Count:1b,id:"alexscaves:primordial_soup"} +T:{Count:1b,id:"alexscaves:seething_stew"} +T:{Count:1b,id:"alexscaves:serene_salad"} +T:{Count:1b,id:"alexscaves:dinosaur_nugget"} +T:{Count:1b,id:"alexscaves:amber_curiosity"} +T:{Count:1b,id:"alexscaves:pewen_sap"} +T:{Count:1b,id:"alexscaves:pine_nuts"} +T:{Count:1b,id:"alexscaves:cave_tablet",tag:{CaveBiome:"alexscaves:primordial_caves"}} +T:{Count:1b,id:"alexscaves:quarry"} +T:{Count:1b,id:"alexscaves:magnetic_levitation_rail"} +T:{Count:1b,id:"alexscaves:limestone"} +T:{Count:1b,id:"alexscaves:amber_monolith"} +T:{Count:1b,id:"alexscaves:ambersol"} +T:{Count:1b,id:"alexscaves:amber"} +T:{Count:1b,id:"alexscaves:footprint_pottery_sherd"} +T:{Count:1b,id:"alexscaves:dinosaur_pottery_sherd"} +T:{Count:1b,id:"alexscaves:extinction_spear",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:tectonic_shard"} +T:{Count:1b,id:"alexscaves:ominous_catalyst"} +T:{Count:1b,id:"alexscaves:primordial_pants",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:primordial_tunic",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:primordial_helmet",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:limestone_spear"} +T:{Count:1b,id:"alexscaves:primitive_club",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:atlatitan_egg"} +T:{Count:1b,id:"alexscaves:relicheirus_egg"} +T:{Count:1b,id:"alexscaves:tremorsaurus_egg"} +T:{Count:1b,id:"alexscaves:grottoceratops_egg"} +T:{Count:1b,id:"alexscaves:vallumraptor_egg"} +T:{Count:1b,id:"alexscaves:subterranodon_egg"} +T:{Count:1b,id:"alexscaves:curly_fern"} +T:{Count:1b,id:"alexscaves:fiddlehead"} +T:{Count:1b,id:"alexscaves:pewen_wood"} +T:{Count:1b,id:"alexscaves:pewen_pines"} +T:{Count:1b,id:"alexscaves:pewen_sapling"} +T:{Count:1b,id:"alexscaves:pewen_branch"} +T:{Count:1b,id:"alexscaves:pewen_sign"} +T:{Count:1b,id:"alexscaves:cave_codex",tag:{CaveBiome:"alexscaves:toxic_caves"}} +T:{Count:1b,id:"alexscaves:cave_tablet",tag:{CaveBiome:"alexscaves:toxic_caves"}} +T:{Count:1b,id:"alexscaves:volcanic_core"} +T:{Count:1b,id:"alexscaves:flood_basalt"} +T:{Count:1b,id:"alexscaves:primal_magma"} +T:{Count:1b,id:"alexscaves:fern_thatch"} +T:{Count:1b,id:"alexscaves:tree_star"} +T:{Count:1b,id:"alexscaves:ancient_sapling"} +T:{Count:1b,id:"alexscaves:archaic_vine"} +T:{Count:1b,id:"alexscaves:cycad"} +T:{Count:1b,id:"alexscaves:radgill"} +T:{Count:1b,id:"alexscaves:cooked_radgill"} +T:{Count:1b,id:"alexscaves:radon_bottle"} +T:{Count:1b,id:"alexscaves:cinder_brick"} +T:{Count:1b,id:"alexscaves:spelunkie"} +T:{Count:1b,id:"alexscaves:raygun"} +T:{Count:1b,id:"alexscaves:remote_detonator"} +T:{Count:1b,id:"alexscaves:charred_remnant"} +T:{Count:1b,id:"alexscaves:fissile_core"} +T:{Count:1b,id:"alexscaves:hazmat_boots",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:hazmat_leggings",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:hazmat_chestplate",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:hazmat_mask",tag:{Damage:0}} +T:{Count:1b,id:"alexscaves:polymer_plate"} +T:{Count:1b,id:"alexscaves:toxic_paste"} +T:{Count:1b,id:"alexscaves:green_soylent"} +T:{Count:1b,id:"alexscaves:slam"} +T:{Count:1b,id:"alexscaves:music_disc_fusion"} +T:{Count:1b,id:"alexscaves:disc_fragment_fusion"} +T:{Count:1b,id:"alexscaves:acidic_radrock"} +T:{Count:1b,id:"alexscaves:radrock_uranium_ore"} +T:{Count:1b,id:"alexscaves:underweed"} +T:{Count:1b,id:"alexscaves:waste_drum"} diff --git a/minecraft/config/jei/world/server/Official_Server_a32f126a/lookupHistory.ini b/minecraft/config/jei/world/server/Official_Server_a32f126a/lookupHistory.ini new file mode 100644 index 0000000..5671b97 --- /dev/null +++ b/minecraft/config/jei/world/server/Official_Server_a32f126a/lookupHistory.ini @@ -0,0 +1,69 @@ +T:{Count:1b,id:"ars_nouveau:earth_essence"} +T:{Count:1b,id:"ars_nouveau:fire_essence"} +T:{Count:1b,id:"ars_nouveau:water_essence"} +T:{Count:1b,id:"ars_nouveau:air_essence"} +T:{Count:1b,id:"ars_nouveau:manipulation_essence"} +T:{Count:1b,id:"mysticalagriculture:air_essence"} +T:{Count:1b,id:"mysticalagriculture:earth_essence"} +T:{Count:1b,id:"mysticalagriculture:fire_essence"} +T:{Count:1b,id:"mysticalagriculture:water_essence"} +T:{Count:1b,id:"minecraft:barrier"} +T:{Count:1b,id:"mysticalagriculture:witherproof_glass"} +T:{Count:1b,id:"undergarden:sediment_glass"} +T:{Count:1b,id:"mysticalagriculture:soul_dust"} +T:{Count:1b,id:"mysticalagriculture:soul_glass"} +T:{Count:1b,id:"mcwwindows:one_way_glass"} +T:{Count:1b,id:"gobber2:gobber2_glass"} +T:{Count:1b,id:"gobber2:gobber2_glob_nether"} +T:{Count:1b,id:"gobber2:gobber2_glass_nether"} +T:{Count:1b,id:"mekanism:structural_glass"} +T:{Count:1b,id:"alexscaves:sea_glass_shards"} +T:{Count:1b,id:"alexscaves:depth_glass"} +T:{Count:1b,id:"apotheotic_additions:luminous_glass"} +T:{Count:1b,id:"blue_skies:midnight_glass"} +T:{Count:1b,id:"blue_skies:crystal_glass"} +T:{Count:1b,id:"alexsmobs:rainbow_jelly"} +T:{Count:1b,id:"alexsmobs:rainbow_glass"} +T:{Count:1b,id:"ae2:quartz_vibrant_glass"} +T:{Count:1b,id:"ae2:quartz_glass"} +T:{Count:1b,id:"ae2:quartz_fiber"} +T:{Count:1b,id:"farmersdelight:rice_bag"} +T:{Count:1b,id:"farmersdelight:safety_net"} +T:{Count:1b,id:"farmersdelight:tatami"} +T:{Count:1b,id:"brewery:rope"} +T:{Count:1b,id:"supplementaries:rope"} +T:{Count:1b,id:"beautify:rope"} +T:{Count:1b,id:"farmersdelight:rope"} +T:{Count:1b,id:"minecraft:bone_meal"} +T:{Count:1b,id:"mcwbyg:rope_florus_bridge"} +T:{Count:1b,id:"mcwbyg:florus_rope_bridge_stair"} +T:{Count:1b,id:"farmersdelight:acacia_cabinet"} +T:{Count:1b,id:"farmersdelight:hot_cocoa"} +T:{Count:1b,id:"farmersdelight:milk_bottle"} +T:{Count:1b,id:"farmersdelight:canvas_sign"} +T:{Count:1b,id:"farmersdelight:netherite_knife",tag:{Damage:0}} +T:{Count:1b,id:"minecraft:enchanted_book",tag:{StoredEnchantments:[{id:"farmersdelight:backstabbing",lvl:7s}]}} +T:{Count:1b,id:"farmersdelight:golden_knife",tag:{Damage:0}} +T:{Count:1b,id:"farmersdelight:stove"} +T:{Count:1b,id:"farmersdelight:skillet",tag:{Damage:0}} +T:{Count:1b,id:"farmersdelight:cutting_board"} +T:{Count:1b,id:"farmersdelight:cooking_pot"} +T:{Count:1b,id:"croptopia_additions:pad_thai"} +T:{Count:1b,id:"wfc:chocolate_waffle"} +T:{Count:1b,id:"wfc:waffle_iron",tag:{Damage:0}} +T:{Count:1b,id:"croptopia_additions:frosted_churro"} +T:{Count:1b,id:"croptopia_additions:churro"} +T:{Count:1b,id:"croptopia:knife"} +T:{Count:1b,id:"croptopia:frying_pan"} +T:{Count:1b,id:"croptopia:food_press"} +T:{Count:1b,id:"croptopia:cooking_pot"} +T:{Count:1b,id:"croptopia:tuna_sandwich"} +T:{Count:1b,id:"croptopia:chicken_and_dumplings"} +T:{Count:1b,id:"croptopia:buttered_toast"} +T:{Count:1b,id:"croptopia:scrambled_eggs"} +T:{Count:1b,id:"alltheores:lead_dust"} +T:{Count:1b,id:"alltheores:lead_ingot"} +T:{Count:1b,id:"mcwfurnitures:crimson_desk"} +T:{Count:1b,id:"industrialforestry:industrial_scoop",tag:{}} +T:{Count:1b,id:"industrialforestry:industrial_squeezer"} +T:{Count:1b,id:"industrialforestry:industrial_centrifuge"} diff --git a/minecraft/config/jei_trim_hider/jei_trim_hider-client.toml b/minecraft/config/jei_trim_hider/jei_trim_hider-client.toml new file mode 100644 index 0000000..44ea932 --- /dev/null +++ b/minecraft/config/jei_trim_hider/jei_trim_hider-client.toml @@ -0,0 +1,27 @@ + +[general] + #Hide Smithing Trim items in JEI Item Panel. + #Default: true + hideTemplateItems = true + #Hide Smithing Trim recipes in JEI Usage View. + #Default: true + hideTrimRecipes = true + +[overrides] + #Note: If the following lists are modified in-game, JEI item panel and smithing recipes will update immediately, + # but Info pages require re-entering the world to take effect. + # + #=== Whitelist === + #Items in this list will be exempt from hiding logic. + #Used to keep specific trim templates visible. + #Format: ["modid:item_name"] + whitelist = [] + #=== Custom Trims === + #By default, this mod automatically identifies trims via the minecraft:trim_templates tag. + #For mods without standard tags, you can expand the scope here. + #Supported formats: + #1. Exact match: ["modid:item_name"], apply to specific items. + #2. Range match: ["modid"], ALL items under this mod will be treated as trims. + # Use range match ONLY if you are sure the mod only adds trims. + customTrims = [] + diff --git a/minecraft/config/jeiintegration-client.toml b/minecraft/config/jeiintegration-client.toml new file mode 100644 index 0000000..de911d4 --- /dev/null +++ b/minecraft/config/jeiintegration-client.toml @@ -0,0 +1,24 @@ + +#Tooltip Settings +# Tooltip Options +# Configure the options below to one of the following: disabled, enabled, onShift, onDebug or onShiftAndDebug +[tooltip_options] + # Configure tooltip for burn time. + burnTimeTooltipMode = "disabled" + # Configure tooltip for durability. + durabilityTooltipMode = "disabled" + # Configure tooltip for enchantability + enchantabilityTooltipMode = "disabled" + # Configure tooltip for hunger and saturation. + foodTooltipMode = "disabled" + # Configure tooltip for max stack size. + maxStackSizeTooltipMode = "disabled" + # Configure tooltip for NBT data. + nbtTooltipMode = "disabled" + # Configure tooltip for registry name. E.g. minecraft:stone + registryNameTooltipMode = "disabled" + # Configure tooltip for tags. E.g. forge:ingot, minecraft:planks + tagsTooltipMode = "disabled" + # Configure tooltip for translation key. E.g. block.minecraft.stone + translationKeyTooltipMode = "disabled" + diff --git a/minecraft/config/jeioptimizer-client.toml b/minecraft/config/jeioptimizer-client.toml new file mode 100644 index 0000000..8d5aa9b --- /dev/null +++ b/minecraft/config/jeioptimizer-client.toml @@ -0,0 +1,32 @@ +#Number of worker threads. 0 = auto (cores - 2, min 2). +#Range: 0 ~ 64 +worker_count = 0 +#Log how long each acceleration phase took. +log_timing = true + +[filter] + #Strategy for accelerating JEI ingredient filter build. + # OFF — vanilla JEI + # BATCH — pack per-item calls into one addAll (~10-15% faster, safe) + # PARALLEL_PREFIX — build each search prefix on its own thread (safe) + # PARALLEL_FULL — also parallelize tokenization inside each prefix (best) + #Default: PARALLEL_FULL + #Allowed Values: OFF, BATCH, PARALLEL_PREFIX, PARALLEL_FULL + mode = "PARALLEL_FULL" + #Build IngredientFilter contents in background — player enters world immediately, + #JEI search becomes available 1-2 sec later. If a player opens JEI before then, + #they see an empty grid until ready. Default false. + async = false + +[plugins] + #EXPERIMENTAL. Phase names of PluginCaller.callOnPlugins to run in parallel. + #Each plugin's handler runs concurrently. Mods NOT thread-safe in their JEI plugins + #WILL crash here (we saw theurgy, ars_nouveau, compactmachines crash in our 1.21.1 test). + #Empty list = disabled (DEFAULT, recommended). + #Try: ["Registering recipes"] only if you've verified your mod set is safe. + parallel_phases = [] + #EXPERIMENTAL. Build CreativeModeTab contents in parallel. + #In our 1.21.1 test pack this LOST 22% of JEI items because some mods' tab builders + #race on internal state. Default OFF (safe). Enable only if your mod set is verified. + parallel_creative_tabs = false + diff --git a/minecraft/config/jeresources-common.toml b/minecraft/config/jeresources-common.toml new file mode 100644 index 0000000..d12b6d9 --- /dev/null +++ b/minecraft/config/jeresources-common.toml @@ -0,0 +1,11 @@ +#Range: 1 ~ 4 +itemsPerColumn = 4 +#Range: 1 ~ 4 +itemsPerRow = 4 +diyData = true +showDevData = false +enchantsBlacklist = ["flimflam", "soulBound"] +hiddenTabs = [] +dimensionsBlacklist = [-11] +disableLootManagerReloading = false + diff --git a/minecraft/config/jeresources.toml b/minecraft/config/jeresources.toml new file mode 100644 index 0000000..d12b6d9 --- /dev/null +++ b/minecraft/config/jeresources.toml @@ -0,0 +1,11 @@ +#Range: 1 ~ 4 +itemsPerColumn = 4 +#Range: 1 ~ 4 +itemsPerRow = 4 +diyData = true +showDevData = false +enchantsBlacklist = ["flimflam", "soulBound"] +hiddenTabs = [] +dimensionsBlacklist = [-11] +disableLootManagerReloading = false + diff --git a/minecraft/config/jerintegration-client.toml b/minecraft/config/jerintegration-client.toml new file mode 100644 index 0000000..9598a99 --- /dev/null +++ b/minecraft/config/jerintegration-client.toml @@ -0,0 +1,18 @@ + +#Jer Integration override options +[jer-integration] + #Enable / Disable patch for Randomite Classic + randomite = true + #Enable / Disable patch for Create + create = true + #Enable / Disable patch for Thermal + thermal = true + #Enable / Disable patch for Immersive Engineering + immersiveengineering = true + #Enable / Disable patch for Tinkers' Construct + tconstruct = true + #Enable / Disable patch for Mekanism + mekanism = true + #Enable / Disable patch for Mining Master + miningmaster = true + diff --git a/minecraft/config/jmi-client.toml b/minecraft/config/jmi-client.toml new file mode 100644 index 0000000..0200e09 --- /dev/null +++ b/minecraft/config/jmi-client.toml @@ -0,0 +1,27 @@ + +#Client-Side Integration +[FTBChunks] + #Enable FTBChunks Integration + ftbChunks = true + #Range: 0.0 ~ 1.0 + claimedChunkOverlayOpacity = 0.22222299873828888 + #Disable conflict functions for FTBChunks (MiniMap, Waypoint beam, Death waypoint) + disableFTBFunction = true + +[Waystones] + #Enable Waystones Integration + waystones = true + #The color code for Waystone marker. You can generate the color code from https://www.mathsisfun.com/hexadecimal-decimal-colors.html + #Range: 0 ~ 16777215 + wayStoneMarkerColor = 16777215 + +[WaypointMessage] + #List of block id and tags for WaypointMessage. e.g., ["#forge:ores/diamond", "minecraft:diamond_block"] + waypointMessageBlocks = [] + emptyHandOnly = true + +["JourneyMap Default Config"] + #When local JM default config version is older than `defaultConfigVersion` it will copy everything under `/config/jmdefaultconfig/` to `/journeymap/` and replace the existing files. Set to -1 to disable. + #Range: > -1 + defaultConfigVersion = -1 + diff --git a/minecraft/config/jumpoverfences-client.toml b/minecraft/config/jumpoverfences-client.toml new file mode 100644 index 0000000..18f049a --- /dev/null +++ b/minecraft/config/jumpoverfences-client.toml @@ -0,0 +1,6 @@ + +#Client settings +[client] + #modid:thingid list of stuff to jump, used for implicit jumping, for example the default list item 'cfm:oak_upgraded_fence + jumpTheseToo = ["cfm:oak_upgraded_fence"] + diff --git a/minecraft/config/kiwi-client.yaml b/minecraft/config/kiwi-client.yaml new file mode 100644 index 0000000..0612468 --- /dev/null +++ b/minecraft/config/kiwi-client.yaml @@ -0,0 +1,14 @@ +# Use Cloth Config mod for the descriptions. +--- +contributorCosmetic: '' +cosmeticScreenKeybind: true +globalTooltip: false +noMicrosoftTelemetry: true +debug: + tagsTooltip: true + debugTooltipMsg: false + tagsTooltipAppendKeybindHint: true + tagsPerPage: 6 + NBTTooltip: true + F3CopyInInventory: true +suppressExperimentalSettingsWarning: false diff --git a/minecraft/config/kiwi-common.yaml b/minecraft/config/kiwi-common.yaml new file mode 100644 index 0000000..f83169a --- /dev/null +++ b/minecraft/config/kiwi-common.yaml @@ -0,0 +1,6 @@ +# Use Cloth Config mod for the descriptions. +--- +vars: + Author: Snownee +kSwitch: + creativeOnly: false diff --git a/minecraft/config/kleeslabs-common.toml b/minecraft/config/kleeslabs-common.toml new file mode 100644 index 0000000..5084524 --- /dev/null +++ b/minecraft/config/kleeslabs-common.toml @@ -0,0 +1,8 @@ +#Control whether KleeSlabs should trigger ALWAYS, ONLY_WHEN_SNEAKING or ONLY_WHEN_NOT_SNEAKING +#Allowed Values: ALWAYS, ONLY_WHEN_SNEAKING, ONLY_WHEN_NOT_SNEAKING +mode = "ALWAYS" +#IDs of mods whose compatibility should be disabled. +disabledCompat = [] +#Set to true to have KleeSlabs dump a list of items containing the word 'slab' in their name upon world load +dumpSlabs = false + diff --git a/minecraft/config/krypton_fnp.yaml b/minecraft/config/krypton_fnp.yaml new file mode 100644 index 0000000..18f7fba --- /dev/null +++ b/minecraft/config/krypton_fnp.yaml @@ -0,0 +1,16 @@ +mixin: + # Enable new encryption optimizations on the client side + clientEncrypt: true + # Optimized RconClient implementation + rconClient: true + # Optimized VarLong implementation + bestVarLong: true + # Optimized VarInt implementation + bestVarInt: true + # Optimized Utf implementation + bestUtf: true +compress: + # The compression level for packets, between 1-9. + compressionLevel: 6 + # Permit Oversized Packets + permitOversizedPackets: true diff --git a/minecraft/config/l2_configs/l2library-client.toml b/minecraft/config/l2_configs/l2library-client.toml index a9efe0b..e4d67a7 100644 --- a/minecraft/config/l2_configs/l2library-client.toml +++ b/minecraft/config/l2_configs/l2library-client.toml @@ -1,14 +1,14 @@ -#Info background transparency. 1 means opaque. -#Range: 0.0 ~ 1.0 -infoAlpha = 0.5 -#Info alignment. 0 means top. 1 means middle. 2 means bottom. -#Range: 0 ~ 2 -infoAnchor = 1 -#Info max width. 0.5 means half screen. default: 0.3 -#Range: 0.0 ~ 0.5 -infoMaxWidth = 0.3 -#Render Selection only when pressing shift -selectionDisplayRequireShift = false -#Scroll for selection only when pressing shift -selectionScrollRequireShift = true - +#Info background transparency. 1 means opaque. +#Range: 0.0 ~ 1.0 +infoAlpha = 0.5 +#Info alignment. 0 means top. 1 means middle. 2 means bottom. +#Range: 0 ~ 2 +infoAnchor = 1 +#Info max width. 0.5 means half screen. default: 0.3 +#Range: 0.0 ~ 0.5 +infoMaxWidth = 0.3 +#Render Selection only when pressing shift +selectionDisplayRequireShift = false +#Scroll for selection only when pressing shift +selectionScrollRequireShift = true + diff --git a/minecraft/config/l2_configs/l2library-common.toml b/minecraft/config/l2_configs/l2library-common.toml index ac3553e..9094511 100644 --- a/minecraft/config/l2_configs/l2library-common.toml +++ b/minecraft/config/l2_configs/l2library-common.toml @@ -1,3 +1,3 @@ -#Restore full health on respawn -restoreFullHealthOnRespawn = true - +#Restore full health on respawn +restoreFullHealthOnRespawn = true + diff --git a/minecraft/config/lazyyyyy.general.json b/minecraft/config/lazyyyyy.general.json new file mode 100644 index 0000000..3045928 --- /dev/null +++ b/minecraft/config/lazyyyyy.general.json @@ -0,0 +1,5 @@ +{ + "debug": { + "packCache": false + } +} \ No newline at end of file diff --git a/minecraft/config/lazyyyyy.mixins.json b/minecraft/config/lazyyyyy.mixins.json new file mode 100644 index 0000000..0a6dac6 --- /dev/null +++ b/minecraft/config/lazyyyyy.mixins.json @@ -0,0 +1,13 @@ +{ + "debug": false, + "async_model_baking": false, + "axiom.async_check_commercial": true, + "entity_sound_features.async_sound_events": true, + "lazy_entity_renderers": true, + "moremcmeta.avoid_duplicate_sprites": true, + "toomanyplayers.async_networking": true, + "yacl.lazy_animated_image": true, + "kiwi.faster_annotation": true, + "pack_resources_cache": true, + "avoid_redundant_list_resources": true +} \ No newline at end of file diff --git a/minecraft/config/leavemybarsalone-client.toml b/minecraft/config/leavemybarsalone-client.toml new file mode 100644 index 0000000..144c502 --- /dev/null +++ b/minecraft/config/leavemybarsalone-client.toml @@ -0,0 +1,5 @@ +#Render food bar when riding a mount. +food_bar = true +#Render experience bar when not jumping with a mount. +experience_bar = true + diff --git a/minecraft/config/leavesbegone-server.toml b/minecraft/config/leavesbegone-server.toml new file mode 100644 index 0000000..0a30752 --- /dev/null +++ b/minecraft/config/leavesbegone-server.toml @@ -0,0 +1,7 @@ +#Maximum ticks it takes for leaves to decay. +#Range: > 0 +maximum_decay_ticks = 20 +#Minimum ticks after which leaves will start to decay. +#Range: > 0 +minimum_decay_ticks = 5 + diff --git a/minecraft/config/legendary_monsters-common.toml b/minecraft/config/legendary_monsters-common.toml new file mode 100644 index 0000000..9128363 --- /dev/null +++ b/minecraft/config/legendary_monsters-common.toml @@ -0,0 +1,312 @@ + +["Mob Settings"] + + ["Mob Settings"."General Settings"] + #allow Camera Shake + "Allow Camera Shake" = true + #allow custom bossbars + "Allow Custom Boss Bars" = true + #allow bosses healing when out of combat + "Allow Bosses Natural Healing" = true + #allow boss music + "Allow Boss Music" = true + #Boss Music Volume Multiplier + #Range: 0.0 ~ 1000.0 + "Boss Music Volume Multiplier" = 1.0 + #Allow Falling Cloud Particles + "Allow Falling Cloud Particles" = true + #for example when boss heals up after killing all players the boss will go back to previous phase + "Allow Boss phase reset" = true + #if Boss has no target and is > 15 blocks away from the spawn he will teleport back to the spawn position. That applies to mini bosses too. + "Allow Bosses and Mini Bosses teleport back to their spawn Position" = true + + ["Mob Settings"."Chorusling Settings"] + #Multiplies damage dealt by Chorusling + #Range: 0.0 ~ 1000.0 + "Chorusling Damage Multiplier" = 1.0 + #Multiplies health of Chorusling + #Range: 0.0 ~ 1000.0 + "Chorusling Health Multiplier" = 1.0 + + ["Mob Settings"."Endersent Settings"] + #Multiplies damage dealt by Endersent + #Range: 0.0 ~ 1000.0 + "Endersent Damage Multiplier" = 1.0 + #Multiplies health of Endersent + #Range: 0.0 ~ 1000.0 + "Endersent Health Multiplier" = 1.0 + + ["Mob Settings"."Spiky Worm Settings"] + #Multiplies damage dealt by Spiky Worm + #Range: 0.0 ~ 1000.0 + "Spiky Worm Damage Multiplier" = 1.0 + #Multiplies health of Spiky Worm + #Range: 0.0 ~ 1000.0 + "Spiky Worm Health Multiplier" = 1.0 + + ["Mob Settings"."Ambusher Settings"] + #Multiplies damage dealt by Ambusher + #Range: 0.0 ~ 1000.0 + "Ambusher Damage Multiplier" = 1.0 + #Multiplies health of Ambusher + #Range: 0.0 ~ 1000.0 + "Ambusher Health Multiplier" = 1.0 + #Enables/Disables Projectile Damage For Ambusher + "Allow Ambusher Projectile Immunity" = true + + ["Mob Settings"."Stratling Settings"] + #Multiplies damage dealt by Stratling + #Range: 0.0 ~ 1000.0 + "Stratling Damage Multiplier" = 1.0 + #Multiplies health of Stratling + #Range: 0.0 ~ 1000.0 + "Stratling Health Multiplier" = 1.0 + + ["Mob Settings"."Hovering Hurricane Settings"] + #Multiplies damage dealt by Hovering Hurricane + #Range: 0.0 ~ 1000.0 + "Hovering Hurricane Damage Multiplier" = 1.0 + #Multiplies health of Hovering Hurricane + #Range: 0.0 ~ 1000.0 + "Hovering Hurricane Health Multiplier" = 1.0 + + ["Mob Settings"."Ancient Guardian Settings"] + #Multiplies damage dealt by Ancient Guardian + #Range: 0.0 ~ 1000.0 + "Ancient Guardian Damage Multiplier" = 1.0 + #Multiplies health of Ancient Guardian + #Range: 0.0 ~ 1000.0 + "Ancient Guardian Health Multiplier" = 1.0 + #Enables/Disables Stun Ability for Ancient Guardian. §cNOTE: Disabling This may make the bossfight less fun. + "Allow Ancient Guardian Stun Ability" = true + #Enables/Disables Projectile Damage for Ancient Guardian + "Allow Ancient Guardian Projectile Immunity" = true + + ["Mob Settings"."Haunted Knight Settings"] + #Multiplies damage dealt by Haunted Knight + #Range: 0.0 ~ 1000.0 + "Haunted Knight Damage Multiplier" = 1.0 + #Multiplies health of Haunted Knight + #Range: 0.0 ~ 1000.0 + "Haunted Knight Health Multiplier" = 1.0 + #Enables/Disables Projectile Immunity For Haunted Knight + "Allow Haunted Knight Projectile Immunity" = true + + ["Mob Settings"."Haunted Guard Settings"] + #Multiplies damage dealt by Haunted Guard + #Range: 0.0 ~ 1000.0 + "Haunted Guard Damage Multiplier" = 1.0 + #Multiplies health of Haunted Guard + #Range: 0.0 ~ 1000.0 + "Haunted Guard Health Multiplier" = 1.0 + #Enables/Disables Projectile Immunity For Haunted Guard + "Allow Haunted Guard Projectile Immunity" = true + + ["Mob Settings"."Posessed Paladin Settings"] + #Multiplies damage dealt by Posessed Paladin + #Range: 0.0 ~ 1000.0 + "Posessed Paladin Damage Multiplier" = 1.0 + #Multiplies health of Posessed Paladin. §cNOTE: Disabling This may make the bossfight less fun. + #Range: 0.0 ~ 1000.0 + "Posessed Paladin Health Multiplier" = 1.0 + #Enables/Disables Stun Ability for Posessed Paladin + "Allow Posessed Paladin Stun Ability" = true + #Enables/Disables Projectile Immunity for Posessed Paladin + "Allow Posessed Paladin Projectile Immunity" = true + + ["Mob Settings"."Overgrown Colosuss Settings"] + #Multiplies damage dealt by Overgrown Colosuss + #Range: 0.0 ~ 1000.0 + "Overgrown Colosuss Damage Multiplier" = 1.0 + #Multiplies health of Overgrown Colosuss + #Range: 0.0 ~ 1000.0 + "Overgrown Colosuss Health Multiplier" = 1.0 + #Enables/Disables Stun Ability for Overgrown Colosuss. §cNOTE: Disabling This may make the bossfight less fun. + "Allow Overgrown Colosuss Stun Ability" = true + #Enables/Disables Projectile Immunity for Overgrown Colosuss + "Allow Overgrown Colosuss Projectile Immunity" = true + + ["Mob Settings"."Mossy Golem Settings"] + #Multiplies damage dealt by Mossy Golem + #Range: 0.0 ~ 1000.0 + "Mossy Golem Damage Multiplier" = 1.0 + #Multiplies health of Mossy Golem + #Range: 0.0 ~ 1000.0 + "Mossy Golem Health Multiplier" = 1.0 + + ["Mob Settings"."Cloud Golem Settings"] + #Multiplies damage dealt by Cloud Golem + #Range: 0.0 ~ 1000.0 + "Cloud Golem Damage Multiplier" = 1.0 + #Multiplies health of Cloud Golem + #Range: 0.0 ~ 1000.0 + "Cloud Golem Health Multiplier" = 1.0 + #Enables Projectile Damage for Cloud Golem + "Allow Cloud Golem Projectile Damage" = false + #Cloud Golem loses Consciousness after Laser Attack + "Allow Cloud Golem Loses Consciousness" = true + #Cloud Golem can Charge once more after missing when he is low on HP + "Allow Cloud Golem Charge once More" = true + #Enables/Disables Cloud Golem Invulnerability Time (this boss is not getting schredded in 0.5seconds by frame - ignore weapons) + "Allow Cloud Golem Invulnerability Time" = true + #Maximum damage that can be dealt to Cloud Golem + #Range: 0.0 ~ 1000.0 + "Cloud Golem Damage Cap" = 18.0 + + ["Mob Settings"."Cloud Golem's Falling Cloud Settings"] + #Multiplies damage dealt by Falling Cloud + #Range: 0.0 ~ 1000.0 + "Falling Cloud Damage Multiplier" = 1.0 + + ["Mob Settings"."Frostbitten Golem Settings"] + #Multiplies damage dealt by Frostbitten Golem + #Range: 0.0 ~ 1000.0 + "Frostbitten Golem Damage Multiplier" = 1.0 + #Multiplies health of Frostbitten Golem + #Range: 0.0 ~ 1000.0 + "Frostbitten Golem Health Multiplier" = 1.0 + #Enables/Disables Projectile Immunity for Frostbitten Golem + "Allow Frostbitten Golem Projectile Immunity" = true + + ["Mob Settings"."Dune Sentinel Settings"] + #Multiplies damage dealt by Dune Sentinel + #Range: 0.0 ~ 1000.0 + "Dune Sentinel Damage Multiplier" = 1.0 + #Multiplies health of Dune Sentinel + #Range: 0.0 ~ 1000.0 + "Dune Sentinel Health Multiplier" = 1.0 + #Enables/Disables Projectile Immunity for Dune Sentinel + "Allow Dune Sentinel Projectile Immunity" = true + #Multiplies damage dealt by Bomber + #Range: 0.0 ~ 1000.0 + "Bomber Damage Multiplier" = 1.0 + #Multiplies health of Bomber + #Range: 0.0 ~ 1000.0 + "Bomber Health Multiplier" = 1.0 + + ["Mob Settings"."Skeletosaurus Settings"] + #Multiplies damage dealt by Skeletosaurus + #Range: 0.0 ~ 1000.0 + "Skeletosaurus Damage Multiplier" = 1.0 + #Multiplies health of Skeletosaurus + #Range: 0.0 ~ 1000.0 + "Skeletosaurus Health Multiplier" = 1.0 + + ["Mob Settings"."Lava Eater Settings"] + #Multiplies damage dealt by Lava Eater + #Range: 0.0 ~ 1000.0 + "Lava Eater Damage Multiplier" = 1.0 + #Multiplies health of Lava Eater + #Range: 0.0 ~ 1000.0 + "Lava Eater Health Multiplier" = 1.0 + #Disables/Enables Projectile Immunity for Lava Eater + "Allow Lava Eater Projectile Immunity" = true + + ["Mob Settings"."Warped Fungussus Settings"] + #Multiplies damage dealt by Warped Fungussus + #Range: 0.0 ~ 1000.0 + "Warped Fungussus Damage Multiplier" = 1.0 + #Multiplies health of Warped Fungussus + #Range: 0.0 ~ 1000.0 + "Warped Fungussus Health Multiplier" = 1.0 + + ["Mob Settings"."Withered Abomination Settings"] + #Multiplies damage dealt by Withered Abomination + #Range: 0.0 ~ 1000.0 + "Withered Abomination Damage Multiplier" = 1.0 + #Multiplies health of Withered Abomination + #Range: 0.0 ~ 1000.0 + "Withered Abomination Health Multiplier" = 1.0 + #Enables/Disables Stun Ability for Withered Abomination + "Allow Withered Abomination Stun Ability" = false + + ["Mob Settings"."Shulker Mimic Settings"] + #Multiplies damage dealt by Shulker Mimic + #Range: 0.0 ~ 1000.0 + "Shulker Mimic Damage Multiplier" = 1.0 + #Multiplies health of Shulker Mimic + #Range: 0.0 ~ 1000.0 + "Shulker Mimic Health Multiplier" = 1.0 + #Enables/Disables Projectile immunity for Shulker Mimic + "Allow Shulker Mimic Projectile Immunity" = true + + ["Mob Settings"."Tamable Knight Settings"] + #Multiplies damage dealt by Knight + #Range: 0.0 ~ 100.0 + "Knight Damage Multiplier" = 1.0 + #Multiplies health of Knight + #Range: 0.0 ~ 100.0 + "Knight Health Multiplier" = 1.0 + + ["Mob Settings"."Tamable Guard Settings"] + #Multiplies damage dealt by Guard + #Range: 0.0 ~ 1000.0 + "Guard Damage Multiplier" = 1.0 + #Multiplies health of Guard + #Range: 0.0 ~ 1000.0 + "Guard Health Multiplier" = 1.0 + + ["Mob Settings"."Skeloraptor Settings"] + #Multiplies damage dealt by Skeloraptor + #Range: 0.0 ~ 1000.0 + "Skeloraptor Damage Multiplier" = 1.0 + #Multiplies health of Skeloraptor + #Range: 0.0 ~ 1000.0 + "Skeloraptor Health Multiplier" = 1.0 + + ["Mob Settings"."Flameborn Guard Settings"] + #Multiplies damage dealt by Flameborn Guard + #Range: 0.0 ~ 1000.0 + "The Flameborn Guard Damage Multiplier" = 1.0 + #Multiplies damage of Flameborn Guard + #Range: 0.0 ~ 1000.0 + "Flameborn Guard Damage Multiplier" = 1.0 + + ["Mob Settings"."Annihilation Pursuer Settings"] + #Multiplies damage of Annihilation Pursuer + #Range: 0.0 ~ 1000.0 + "Annihilation Pursuer Damage Multiplier" = 1.0 + + ["Mob Settings"."The Obliterator Settings"] + #Multiplies damage dealt by The Obliterator + #Range: 0.0 ~ 1000.0 + "The Obliterator Damage Multiplier" = 1.0 + #Multiplies Health of The Obliterator + #Range: 0.0 ~ 1000.0 + "The Obliterator Health Multiplier" = 1.0 + #The bigger it is the stronger the Damage Adaptation is + #Range: 0 ~ 1000 + "The Obliterator Damage Adaptation Multiplier" = 1 + #ON/OFF Obliterator I Frame protection + "The Obliterator Invulnerability Time" = true + #Increases/Decreases Anti Cheese(Airborne Variation) distance which makes the Boss invulnerable when player has a high ground, default is -4 below the boss and 4 above. chaning the value will change both '-' and '+' values. + #Range: 0 ~ 1000 + "Protection against airborne cheese" = 4 + #ON/OFF Annihilation effect that The Obliterator Inflicts after hitting you, it's a stacking debuff that reduces your attack speed. + "The Obliterator Annihilation Debuff Effect" = false + #% Damage for Obliterator's clones(punching) + #Range: 0 ~ 1000 + "% Damage for Obliterator's clones(punching)" = 7 + #% Damage for Obliterator's portals + #Range: 0 ~ 1000 + "% Damage for Obliterator's portals" = 5 + #% Damage for Obliterator's portal Explosion + #Range: 0 ~ 1000 + "% Damage for Obliterator's portal Explosion" = 3 + + ["Mob Settings"."Flame Drifter Settings"] + #Multiplies damage dealt by Flame Drifter + #Range: 0.0 ~ 1000.0 + "Flame Drifter Damage Multiplier" = 1.0 + #Multiplies Health of Flame Drifter + #Range: 0.0 ~ 1000.0 + "Flame Drifter Health Multiplier" = 1.0 + + ["Mob Settings"."Wandering Eye Settings"] + #Multiplies damage dealt by Wandering Eye + #Range: 0.0 ~ 1000.0 + "Wandering Eye Damage Multiplier" = 1.0 + #Multiplies Health of Wandering Eye + #Range: 0.0 ~ 1000.0 + "Wandering Eye Health Multiplier" = 1.0 + diff --git a/minecraft/config/legendarycreatures/json/_example-spawn.json b/minecraft/config/legendarycreatures/json/_example-spawn.json new file mode 100644 index 0000000..7bfcbf0 --- /dev/null +++ b/minecraft/config/legendarycreatures/json/_example-spawn.json @@ -0,0 +1,25 @@ +{ + "_comment": "block_names: spawns when player breaks a specific block by its registry ID. block_tags: spawns when player breaks any block belonging to a tag. entity_names: spawns when player kills a specific entity by its registry ID. entity_type_tags: spawns when player kills any entity belonging to a tag. chance is a value from 0.0 to 1.0 (e.g. 0.15 = 15%). 'default' key applies to any block/entity not explicitly listed. black_list: prevents spawning even if the block/entity would match a default entry.", + "block_names": { + "minecraft:clay": {"chance": 0.15}, + "minecraft:mud": {"chance": 0.10}, + "default": {"chance": 0.02} + }, + "block_tags": { + "minecraft:dirt": {"chance": 0.05} + }, + "entity_names": { + "minecraft:frog": {"chance": 0.30}, + "minecraft:tropical_fish": {"chance": 0.20}, + "default": {"chance": 0.05} + }, + "entity_type_tags": { + "minecraft:aquatic": {"chance": 0.10} + }, + "black_list": { + "block_names": ["minecraft:bedrock"], + "block_tags": ["minecraft:nether_carver_replaceables"], + "entity_names": ["minecraft:ender_dragon"], + "entity_type_tags": ["minecraft:skeletons"] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/bullfrog-spawn.json b/minecraft/config/legendarycreatures/json/bullfrog-spawn.json new file mode 100644 index 0000000..8875c1b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/bullfrog-spawn.json @@ -0,0 +1,12 @@ +{ + "block_names": {}, + "block_tags": {}, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/corpse_eater-spawn.json b/minecraft/config/legendarycreatures/json/corpse_eater-spawn.json new file mode 100644 index 0000000..52f3a0b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/corpse_eater-spawn.json @@ -0,0 +1,47 @@ +{ + "block_names": {}, + "block_tags": {}, + "entity_names": { + "default": { + "chance": 0.005 + } + }, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [ + "minecraft:bee", + "minecraft:cow", + "minecraft:pig", + "minecraft:chicken", + "minecraft:cod", + "minecraft:donkey", + "minecraft:fox", + "minecraft:horse", + "minecraft:mooshroom", + "minecraft:mule", + "minecraft:ocelot", + "minecraft:panda", + "minecraft:parrot", + "minecraft:polar_bear", + "minecraft:pufferfish", + "minecraft:rabbit", + "minecraft:salmon", + "minecraft:sheep", + "minecraft:skeleton_horse", + "minecraft:snow_golem", + "minecraft:squid", + "minecraft:strider", + "minecraft:tropical_fish", + "minecraft:turtle", + "minecraft:trader_llama", + "minecraft:villager", + "minecraft:wandering_trader", + "minecraft:axolotl", + "minecraft:camel", + "legendarycreatures:corpse_eater" + ], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/desert_mojo-spawn.json b/minecraft/config/legendarycreatures/json/desert_mojo-spawn.json new file mode 100644 index 0000000..73bbc1b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/desert_mojo-spawn.json @@ -0,0 +1,19 @@ +{ + "block_names": { + "minecraft:dead_bush": { + "chance": 0.01 + }, + "minecraft:cactus": { + "chance": 0.01 + } + }, + "block_tags": {}, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/ender_wisp-spawn.json b/minecraft/config/legendarycreatures/json/ender_wisp-spawn.json new file mode 100644 index 0000000..8875c1b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/ender_wisp-spawn.json @@ -0,0 +1,12 @@ +{ + "block_names": {}, + "block_tags": {}, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/forest_mojo-spawn.json b/minecraft/config/legendarycreatures/json/forest_mojo-spawn.json new file mode 100644 index 0000000..c29cfca --- /dev/null +++ b/minecraft/config/legendarycreatures/json/forest_mojo-spawn.json @@ -0,0 +1,22 @@ +{ + "block_names": {}, + "block_tags": { + "minecraft:tall_flowers": { + "chance": 0.01 + }, + "minecraft:flowers": { + "chance": 0.01 + }, + "minecraft:small_flowers": { + "chance": 0.01 + } + }, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/hound-spawn.json b/minecraft/config/legendarycreatures/json/hound-spawn.json new file mode 100644 index 0000000..8875c1b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/hound-spawn.json @@ -0,0 +1,12 @@ +{ + "block_names": {}, + "block_tags": {}, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/nether_wisp-spawn.json b/minecraft/config/legendarycreatures/json/nether_wisp-spawn.json new file mode 100644 index 0000000..8875c1b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/nether_wisp-spawn.json @@ -0,0 +1,12 @@ +{ + "block_names": {}, + "block_tags": {}, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/peacock_spider-spawn.json b/minecraft/config/legendarycreatures/json/peacock_spider-spawn.json new file mode 100644 index 0000000..8875c1b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/peacock_spider-spawn.json @@ -0,0 +1,12 @@ +{ + "block_names": {}, + "block_tags": {}, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/scarecrow-spawn.json b/minecraft/config/legendarycreatures/json/scarecrow-spawn.json new file mode 100644 index 0000000..3052260 --- /dev/null +++ b/minecraft/config/legendarycreatures/json/scarecrow-spawn.json @@ -0,0 +1,28 @@ +{ + "block_names": {}, + "block_tags": { + "minecraft:crops": { + "chance": 0.01 + }, + "sereneseasons:winter_crops": { + "chance": 0.01 + }, + "sereneseasons:spring_crops": { + "chance": 0.01 + }, + "sereneseasons:summer_crops": { + "chance": 0.01 + }, + "sereneseasons:autumn_crops": { + "chance": 0.01 + } + }, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/scorpion-spawn.json b/minecraft/config/legendarycreatures/json/scorpion-spawn.json new file mode 100644 index 0000000..8875c1b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/scorpion-spawn.json @@ -0,0 +1,12 @@ +{ + "block_names": {}, + "block_tags": {}, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/scorpion_baby-spawn.json b/minecraft/config/legendarycreatures/json/scorpion_baby-spawn.json new file mode 100644 index 0000000..8875c1b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/scorpion_baby-spawn.json @@ -0,0 +1,12 @@ +{ + "block_names": {}, + "block_tags": {}, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/json/wisp-spawn.json b/minecraft/config/legendarycreatures/json/wisp-spawn.json new file mode 100644 index 0000000..8875c1b --- /dev/null +++ b/minecraft/config/legendarycreatures/json/wisp-spawn.json @@ -0,0 +1,12 @@ +{ + "block_names": {}, + "block_tags": {}, + "entity_names": {}, + "entity_type_tags": {}, + "black_list": { + "block_names": [], + "block_tags": [], + "entity_names": [], + "entity_type_tags": [] + } +} \ No newline at end of file diff --git a/minecraft/config/legendarycreatures/legendarycreatures-common.toml b/minecraft/config/legendarycreatures/legendarycreatures-common.toml new file mode 100644 index 0000000..f82ce61 --- /dev/null +++ b/minecraft/config/legendarycreatures/legendarycreatures-common.toml @@ -0,0 +1,118 @@ + +# Options related to mob spawning +[MobSpawning] + + [MobSpawning.desert_mojo] + #When true, allows the Desert Mojo to spawn when a player breaks a block listed in config/legendarycreatures/json/desert_mojo-spawn.json + "Desert Mojo Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/desert_mojo-spawn.json has a chance to spawn a Desert Mojo at that location + "Desert Mojo Killing Entity Spawn " = true + #Enables Desert Mojo natural spawning in the world + "Desert Mojo Natural Spawn" = true + + [MobSpawning.forest_mojo] + #When true, allows the Forest Mojo to spawn when a player breaks a block listed in config/legendarycreatures/json/forest_mojo-spawn.json + "Forest Mojo Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/forest_mojo-spawn.json has a chance to spawn a Forest Mojo at that location + "Forest Mojo Killing Entity Spawn " = true + #Enables Forest Mojo natural spawning in the world + "Forest Mojo Natural Spawn" = true + + [MobSpawning.hound] + #When true, allows the Hound to spawn when a player breaks a block listed in config/legendarycreatures/json/hound-spawn.json + "Hound Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/hound-spawn.json has a chance to spawn a Hound at that location + "Hound Killing Entity Spawn " = true + #Enables Hound natural spawning in the world + "Hound Natural Spawn" = true + + [MobSpawning.scorpion] + #When true, allows the Scorpion to spawn when a player breaks a block listed in config/legendarycreatures/json/scorpion-spawn.json + "Scorpion Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/scorpion-spawn.json has a chance to spawn a Scorpion at that location + "Scorpion Killing Entity Spawn " = true + #Enables Scorpion natural spawning in the world + "Scorpion Natural Spawn" = true + + [MobSpawning.scorpion_baby] + #When true, allows the Baby Scorpion to spawn when a player breaks a block listed in config/legendarycreatures/json/scorpion_baby-spawn.json + "Baby Scorpion Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/scorpion_baby-spawn.json has a chance to spawn a Baby Scorpion at that location + "Baby Scorpion Killing Entity Spawn " = true + #Enables Baby Scorpion natural spawning in the world + "Baby Scorpion Natural Spawn" = true + + [MobSpawning.wisp] + #When true, allows the Wisp to spawn when a player breaks a block listed in config/legendarycreatures/json/wisp-spawn.json + "Wisp Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/wisp-spawn.json has a chance to spawn a Wisp at that location + "Wisp Killing Entity Spawn " = true + "Wisp Purse Xp Reward Range " = [30, 30] + #Enables Wisp natural spawning in the world + "Wisp Natural Spawn" = true + + [MobSpawning.nether_wisp] + #When true, allows the Nether Wisp to spawn when a player breaks a block listed in config/legendarycreatures/json/nether_wisp-spawn.json + "Nether Wisp Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/nether_wisp-spawn.json has a chance to spawn a Nether Wisp at that location + "Nether Wisp Killing Entity Spawn " = true + "Nether Wisp Purse Xp Reward Range " = [80, 80] + #Enables Nether Wisp natural spawning in the world + "Nether Wisp Natural Spawn" = true + + [MobSpawning.ender_wisp] + #When true, allows the Ender Wisp to spawn when a player breaks a block listed in config/legendarycreatures/json/ender_wisp-spawn.json + "Ender Wisp Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/ender_wisp-spawn.json has a chance to spawn an Ender Wisp at that location + "Ender Wisp Killing Entity Spawn " = true + "Ender Wisp Purse Xp Reward Range " = [240, 240] + #Enables Ender Wisp natural spawning in the world + "Ender Wisp Natural Spawn" = true + + [MobSpawning.corpse_eater] + #When true, allows the Corpse Eater to spawn when a player breaks a block listed in config/legendarycreatures/json/corpse_eater-spawn.json + "Corpse Eater Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/corpse_eater-spawn.json has a chance to spawn a Corpse Eater at that location + "Corpse Eater Killing Entity Spawn " = true + #Enables Corpse Eater natural spawning in the world + "Corpse Eater Natural Spawn" = true + + [MobSpawning.peacock_spider] + #When true, allows the Peacock Spider to spawn when a player breaks a block listed in config/legendarycreatures/json/peacock_spider-spawn.json + "Peacock Spider Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/peacock_spider-spawn.json has a chance to spawn a Peacock Spider at that location + "Peacock Spider Killing Entity Spawn " = true + #Enables Peacock Spider natural spawning in the world + "Peacock Spider Natural Spawn" = true + + [MobSpawning.bullfrog] + #When true, allows the Bullfrog to spawn when a player breaks a block listed in config/legendarycreatures/json/bullfrog-spawn.json + "Bullfrog Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/bullfrog-spawn.json has a chance to spawn a Bullfrog at that location + "Bullfrog Killing Entity Spawn " = true + #Enables Bullfrog natural spawning in the world + "Bullfrog Natural Spawn" = true + + [MobSpawning.scarecrow] + #When true, allows the Scarecrow to spawn when a player breaks a block listed in config/legendarycreatures/json/scarecrow-spawn.json + "Scarecrow Breaking Block Spawn " = true + #When true, killing a mob listed in config/legendarycreatures/json/scarecrow-spawn.json has a chance to spawn a Scarecrow at that location + "Scarecrow Killing Entity Spawn " = true + #Enables Scarecrow natural spawning in the world + "Scarecrow Natural Spawn" = true + + # WARNING: Disabling an insect that is paired with a hostile mob will give that hostile mob a 100% chance of filling spawn slots + [MobSpawning.insects] + #Enables Butterfly natural spawning. Paired with: Forest Mojo, Hound + "Butterfly Natural Spawn" = true + #Enables Dragonfly natural spawning. Paired with: Bullfrog + "Dragonfly Natural Spawn" = true + #Enables Ladybug natural spawning. Paired with: Scarecrow, Wisp + "Ladybug Natural Spawn" = true + #Enables Scarab natural spawning. Paired with: Desert Mojo, Scorpion, Baby Scorpion, Corpse Eater + "Scarab Natural Spawn" = true + #Enables Mantis natural spawning. Paired with: Peacock Spider + "Mantis Natural Spawn" = true + #Enables Hermit Crab natural spawning. Paired with: Peacock Spider + "Hermit Crab Natural Spawn" = true + diff --git a/minecraft/config/legendarytooltips-common.toml b/minecraft/config/legendarytooltips-common.toml new file mode 100644 index 0000000..1a08823 --- /dev/null +++ b/minecraft/config/legendarytooltips-common.toml @@ -0,0 +1,120 @@ + +# Legendary Tooltips Configuration Instructions +# +# *** READ THIS FIRST *** +# +# By default, this mod does not apply special borders to most items. It was designed to work well with mod packs where +# the available selection of items can vary widely, so it is up to the user or mod pack designer to customize as needed. +# There are many options available for setting up which custom borders (also called frames) apply to which items. Follow these steps: +# 1. Decide which items you want to have custom borders, and which borders. Note that each custom border has a number associated with it (starting at 0). +# 2. For each custom border you want to use, fill out the associated list in the "definitions" section. This will be filled out with a list of "selectors", +# each of which tell the mod what items have that border. Please read the information above the definitions section for specifics. +# 3. Selectors for borders are checked in the order provided in the "priorities" section. Once a match is found, that border is displayed. +# For example, if border 0 had the selector "%Diamond" and border 1 had the selector "diamond_sword", they would both match for diamond swords. +# In this case, whichever border number came first in the priority list would be the border that would get drawn in-game. +# 4. Optionally, border colors associated with custom borders can be set in the "colors" section. The start color is the color at the top of the tooltip, +# and the end color is the bottom, with a smooth transition between. Please read the information above the color section for specifics. +[client] + + [client.visual_options] + # Whether item names in tooltips should have a line under them separating them from the rest of the tooltip. + name_separator = true + # If enabled, tooltip border colors will match item rarity colors (except for custom borders). + borders_match_rarity = true + # If enabled, tooltips will display a drop shadow. + tooltip_shadow = true + # If enabled, items showing a custom border will have a special shine effect when hovered over. + shine_effect = true + # If enabled, tooltip titles will be drawn centered. + centered_title = true + # If enabled, tooltips with custom borders will always be at least wide enough to display all border decorations. + enforce_minimum_width = false + # If enabled, some unnecessary text and spacing will be removed from equipment tooltips. + compact_tooltips = true + # Which items should have a 3D model rendered in the tooltip. If set to "equipment", the model will only be rendered for items with durability. + #Allowed Values: NONE, EQUIPMENT, ALL + render_item_model = "EQUIPMENT" + # The speed at which 3D models in tooltips will rotate. Lower values rotate faster, set to 0 to disable rotation. + #Range: 0.0 ~ 50.0 + model_rotation_speed = 12.0 + + # Entry types: + # Match all - Specifying just an asterisk (*) will match all items. Examples: "*" + # Item ID - Use item ID to match single items. Must include mod name for modded items. Examples: "minecraft:stick", "iron_ore", "spoiledeggs:spoiled_egg" + # Tag - $ followed by tag name to match all items with that tag. Examples: "$forge:stone", "$planks" + # Mod name - @ followed by mod identifier to match all items from that mod. Examples: "@spoiledeggs" + # Rarity - ! followed by item's rarity to match all items with that rarity. This is ONLY vanilla rarities. Examples: "!uncommon", "!rare", "!epic" + # Item name color - # followed by color hex code, to match all items with that exact color item name. Examples: "#23F632" + # Display name - % followed by any text. Will match any item with this text (case-sensitive) in its tooltip display name. Examples: "%Netherite", "%Uncommon" + # Tooltip text - ^ followed by any text. Will match any item with this text (case-sensitive) anywhere in the tooltip text (besides the name). Examples: "^Legendary" + # NBT tag - & followed by tag name and optional comparator (=, >, <, or !=) and value, in the format or just . Examples: "&Damage=0", "&Tier>1", "&map!=128", "&Enchantments" + # Negation - ~ followed by any selector above. This selector will be negated, matching every item that does NOT match the selector. Examples: "~minecraft:stick", "~!uncommon", "~@minecraft" + # Combining selectors - Any number of selectors can be combined by separating them with a plus sign. Examples: "minecraft:diamond_sword+&Enchantments", "minecraft:stick+~!common+&Damage=0" + [client.definitions] + level0_entries = ["!epic", "!rare"] + level1_entries = [] + level2_entries = [] + level3_entries = [] + level4_entries = [] + level5_entries = [] + level6_entries = [] + level7_entries = [] + level8_entries = [] + level9_entries = [] + level10_entries = [] + level11_entries = [] + level12_entries = [] + level13_entries = [] + level14_entries = [] + level15_entries = [] + # Enter blacklist selectors here using the same format as above. Any items that match these selectors will NOT show a border. + blacklist = [] + + # Set border priorities here. This should be a list of numbers that correspond to border levels, with numbers coming first being higher priority. + # Optionally, -1 can be inserted to indicate relative priority of data and api-defined borders. If you don't know what that means, you don't need to worry about it. + [client.priorities] + priorities = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] + + # The colors used for each tooltip, in this order: top border color, bottom border color, top background color, bottom background color. + # None of these colors are required, though any colors not specified will be replaced with the default tooltip colors. + # + # VALID COLOR FORMATS + # Hex color code - A hex color code is preceded by # or 0x and must be quoted. Supports 3, 4, 6, or 8 digit codes in the formats RGB, ARGB, RRGGBB, AARRGGBB. + # Examples: "#F4C", "0xFEE0", "#40FF2E", "#CC00E2EE" + # + # Decimal color code - A decimal color code, which is just a hex color code converted to decimal. May or may not be quoted. + # Examples: 15614720, "4278251143" + # + # Minecraft color name - One of the standard 16 Minecraft color names. Must be quoted. + # Examples: "red", "dark_purple", "gold" + # + # Web color name - One of the standard 140 web/HTML color names or "transparent". Must be quoted. + # Examples: "chartreuse", "darkorange", "deeppink", "deepskyblue" + # + # Modifiers - Colors specified in any of the above formats can be modified by using modifiers. + # Modifiers are specified after any color in the format "<+, -, or =>". + # The letters represent h - hue, s - saturation, v - value, r - red, g - green, b - blue, a - alpha. + # Valid amounts are 0 to 255 for all types except hue, which accepts 0 to 359. + # Examples: "red+h15", "#saddlebrown-v20+s5", "10_aqua_aqua+v15-h5", "#F4C-r15-v10=a40" + # + # Animated color - An animated color that fades from one to another in sequence. + # A string in the format "_". Must be quoted. + # Examples: "10_black_#7FFF00", "5.5_gold_orange_orangered", "20_red_orange_yellow_green_blue_purple" + [client.colors] + level0_colors = [-6723294, -10864099, -266991104, -401208832] + level1_colors = ["auto", "auto", "auto", "auto"] + level2_colors = ["auto", "auto", "auto", "auto"] + level3_colors = ["auto", "auto", "auto", "auto"] + level4_colors = ["auto", "auto", "auto", "auto"] + level5_colors = ["auto", "auto", "auto", "auto"] + level6_colors = ["auto", "auto", "auto", "auto"] + level7_colors = ["auto", "auto", "auto", "auto"] + level8_colors = ["auto", "auto", "auto", "auto"] + level9_colors = ["auto", "auto", "auto", "auto"] + level10_colors = ["auto", "auto", "auto", "auto"] + level11_colors = ["auto", "auto", "auto", "auto"] + level12_colors = ["auto", "auto", "auto", "auto"] + level13_colors = ["auto", "auto", "auto", "auto"] + level14_colors = ["auto", "auto", "auto", "auto"] + level15_colors = ["auto", "auto", "auto", "auto"] + diff --git a/minecraft/config/littlejoys-common.toml b/minecraft/config/littlejoys-common.toml new file mode 100644 index 0000000..e47b11a --- /dev/null +++ b/minecraft/config/littlejoys-common.toml @@ -0,0 +1,41 @@ + +[dropRush] + #The base chance for a drop rush to occur. + baseChance = 0.019999999552965164 + +[digSpots] + #The minimum distance between dig spots, preventing them from spawning too close together. + minimumDistanceBetween = 128 + #The distance dig spots will spawn from the player. + spawnDistance = 32 + #The seconds that must pass after a dig spot appeared before another dig spot can appear for a player. + spawnIntervalSeconds = 300.0 + #The seconds that must pass after digging a dig spot before another dig spot can appear for a player. + afterDiggingCooldownSeconds = 600.0 + #The limit of dig spots that can spawn in a given chunk overall. Once this many dig spots have spawned, the chunk will never spawn any again. Set to -1 to disable. + totalLimitPerChunk = 1 + #The offset applied to the spawn area in the direction the player is facing. Set to 0 to center it around the player. + projectForwardDistance = 25 + +[fishingSpots] + #The minimum distance between fishing spots, preventing them from spawning too close together. + minimumDistanceBetween = 128 + #The distance fishing spots will spawn from the player. + spawnDistance = 8 + #The seconds that must pass after a fishing spot appeared before another fishing spot can appear for a player. + spawnIntervalSeconds = 300.0 + #The seconds that must pass after fishing a fishing spot before another fishing spot can appear for a player. + afterFishingCooldownSeconds = 600.0 + #The maximum distance a bobber can be from a fishing spot to still trigger it. + fishingRangeTolerance = 3 + #Fishing spots will lure fish quicker than regular water. Set to -1 to disable. + secondsUntilLured = 2.0 + #The limit of fishing spots that can spawn in a given chunk overall. Once this many fishing spots have spawned, the chunk will never spawn any again. Set to -1 to disable. + totalLimitPerChunk = -1 + #The offset applied to the spawn area in the direction the player is facing. Set to 0 to center it around the player. + projectForwardDistance = 4 + +[goldRush] + #The base chance for a gold rush to occur. + baseChance = 0.019999999552965164 + diff --git a/minecraft/config/lmft.json b/minecraft/config/lmft.json new file mode 100644 index 0000000..8ae664a --- /dev/null +++ b/minecraft/config/lmft.json @@ -0,0 +1,3 @@ +{ + "disableIngameError": true +} \ No newline at end of file diff --git a/minecraft/config/logbegone.toml b/minecraft/config/logbegone.toml new file mode 100644 index 0000000..bb1f8f3 --- /dev/null +++ b/minecraft/config/logbegone.toml @@ -0,0 +1,5 @@ + +[logbegone] + regex = ["Disconnecting VANILLA connection attempt", "Channels "] + phrases = ["Disconnecting VANILLA connection attempt", "Channels "] + diff --git a/minecraft/config/logsfixer/adaptive-families.tsv b/minecraft/config/logsfixer/adaptive-families.tsv new file mode 100644 index 0000000..f1cddb8 --- /dev/null +++ b/minecraft/config/logsfixer/adaptive-families.tsv @@ -0,0 +1,38 @@ +e:generic:backup_disabled_preparing_saving 3 3 0 3.3083418314629655E-5 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.35 0.11350148875382415 0.16249999999999998 2 0 0 1782494484564 0 0.1585 0 +e:generic:breakdown_loot 6 2 4 2.103914013452976E-5 0.14981364226413593 0.0 1.0 0.149860012134204 0.14079055968708187 0.0 0.09992272654276735 0.0 0.27649753599999993 0.20719807048474773 0.175 0 0 0 1783713807869 0 0.823 0 +e:network:connection_lost 20 12 8 0.2646508772223182 0.03738332787962771 0.0 1.0 0.0 0.0 0.0 0.19047930428811832 0.0 0.24193679409321955 0.16031722974860846 0.5833333333333334 0 0 0 1783714570065 0 0.3259587170824943 0 +e:generic:drops_loot_session_total 10 4 6 3.054762779120814E-5 0.14981824370292407 0.0 1.0 0.14998112463766156 0.14107055896642245 0.0 0.10004388342967793 0.0 0.24914480847814655 0.2092005583100713 0.2916666666666667 0 0 0 1783713807864 0 0.823 0 +e:network:logged_player_singleplayer_stopping 14 6 8 2.79812167695355E-4 0.0 0.0 1.0 0.0 0.0 0.0 0.19081755349223511 0.0 0.22262981561128195 0.14532661087382476 0.4083333333333333 0 0 0 1783714570110 0 0.303 0 +e:generic:backup_complete_enabled_saving 4 4 0 3.405385390321021E-5 0.0 0.0 1.0 0.0 3.3271064206291576E-5 0.0 0.0 0.0 0.35 0.11350652308305659 0.19166666666666665 2 0 0 1782494491563 0 0.30955874390259736 0 +e:generic:drop_final_loot_statistics 14 6 8 2.7986118649318874E-4 0.12716643076799894 0.0 1.0 0.278174207034244 0.2615849302331554 0.0 0.19081766147276846 0.0 0.22262981561128195 0.26936788902302883 0.4083333333333333 0 0 0 1783714570152 0 0.823 0 +e:generic:loot_nether 3 1 2 8.220476967633075E-7 7.669458198866079E-7 0.0 1.0 1.5344781496623786E-6 1.736560905805882E-6 0.0 1.3715167514880953E-6 0.0 0.32199999999999995 0.1154609377113282 0.0875 0 0 0 1782420944603 0 0.823 0 +u:saving_chunks_repeat 655 1 654 7.989603777060029 0.9999880511679164 0.0 1.0 0.0 0.0 9.757091371392184E-11 0.9996048181199101 0.0 4.851282837135407E-22 0.5759511443223448 1.0 9 0 8 1783714569258 1 0.6544683439996343 1782623266844 +e:generic:corrupted_loot 3 3 0 8.220481135713878E-7 7.669462087561102E-7 0.7744 1.0 1.5344788121429922E-6 1.7365616998351572E-6 0.0 1.3715173698599275E-6 8.984681952818988E-7 0.982528 0.06922395075770668 0.0875 0 0 0 1782420944617 0 0.603 0 +u:class_or_injection_error 1 0 1 4.7885253982869426E-6 4.7885253982869426E-6 0.0 1.0 4.7885253982869426E-6 4.7885253982869426E-6 4.7885253982869426E-6 4.7885253982869426E-6 0.0 0.0 0.13800366322192967 0.06666666666666667 1 0 1 1782418339926 0 0.9029999999999999 0 +e:generic:cursed_loot 3 1 2 8.220479596168029E-7 7.669460651209468E-7 0.0 1.0 1.5344785512459118E-6 1.7365613952174387E-6 0.0 1.371517130654891E-6 0.0 0.32199999999999995 0.11546093771158875 0.0875 0 0 0 1782420944611 0 0.823 0 +u:info_burst_noise 8 4 4 4.517014886703839E-4 0.19628419733646163 0.0 1.0 0.0 0.1589945875737382 0.0 0.13361918463218844 0.0 0.27254079999999997 0.1823800645392889 0.5333333333333333 8 0 4 1783713614588 0 0.573 0 +u:saving_pause_repeat 18 18 0 0.8423216290794812 0.12721057758853732 0.0 1.0 0.0 0.0 1.248033622639267E-4 0.0 0.0 0.35 0.18467972688818224 0.825 9 0 0 1783714569164 0 0.3320686648433224 0 +e:generic:loot_lost 3 1 2 8.220482202956863E-7 7.669463083268617E-7 0.0 1.0 1.534478989888364E-6 1.7365619070259904E-6 0.0 1.3715175336058343E-6 0.0 0.32199999999999995 0.11546093771186444 0.0875 0 0 0 1782420944621 0 0.823 0 +u:structural_error_repeat 13 13 0 1.3983965120297167E-6 2.8235062025119056E-6 0.0 1.0 1.0 0.12000166097786422 1.6609778642290555E-6 0.0 0.0 0.35 0.38150078377349605 0.6791666666666666 11 0 0 1783714570121 0 0.5085 0 +e:generic:black_loot 3 1 2 8.22047782566646E-7 7.66945899938536E-7 0.0 1.0 1.5344782883452512E-6 1.7365610721284136E-6 0.0 1.3715168803221897E-6 0.0 0.32199999999999995 0.11546093771141674 0.0875 0 0 0 1782420944606 0 0.823 0 +e:generic:loot_magical 3 1 2 8.22048071889977E-7 7.669461698685664E-7 0.0 1.0 1.5344787341681405E-6 1.736561610417732E-6 0.0 1.3715173002046146E-6 0.0 0.32199999999999995 0.11546093771170474 0.0875 0 0 0 1782420944615 0 0.823 0 +e:generic:exotic_loot 3 1 2 8.220480173976082E-7 7.669461190287353E-7 0.0 1.0 1.5344786442410039E-6 1.7365615048053076E-6 0.0 1.3715172171495062E-6 0.0 0.32199999999999995 0.11546093771164789 0.0875 0 0 0 1782420944613 0 0.823 0 +e:generic:loot_wither 3 1 2 8.220481870922171E-7 7.669462773489776E-7 0.0 1.0 1.534478939366824E-6 1.7365618471405609E-6 0.0 1.3715174858471989E-6 0.0 0.32199999999999995 0.11546093771183191 0.0875 0 0 0 1782420944620 0 0.823 0 +u:registration_noise 10 4 6 3.054762967708361E-5 0.14981824439779903 0.0 1.0 0.14998112533861907 0.14107055973972585 0.0 0.10004388389974887 0.0 0.24914480847814655 0.2092005587411846 0.2916666666666667 0 0 0 1783713807866 0 0.823 0 +e:generic:changing_distance_view 27 6 21 0.005491788606926831 0.1967084853909915 0.0 1.0 1.7180929842484247E-6 0.1592030524039528 6.869978131225357E-5 0.13371396508928135 0.0 0.12020487490797473 0.55 1.0 15 3 9 1783713614102 1 0.823 1783363668946 +e:generic:keep_overloaded_running_ticks 44 44 0 6.250572464207769E-5 0.03311987520933994 1.0 0.0 1.3776742298093449E-5 0.02784262539200363 6.706877160111202E-4 0.02086904303045307 0.01962077046077292 1.0 0.0 1.0 45 0 25 1783362792793 0 0.4358741860471313 0 +e:generic:advancement_made_moderngaming_owner 17 3 14 1.6930033910045845 0.5980903626352307 0.0 1.0 0.16980548641025422 0.513850591122233 0.0013697307145399988 0.4493997526562753 0.0 0.1235568147236342 0.45087352812759435 0.7958333333333334 16 0 13 1783714396318 0 0.76143198210165 0 +e:generic:guardian_loot 3 1 2 8.220481461137709E-7 7.669462391172393E-7 0.0 1.0 1.5344788620477748E-6 1.7365617588495239E-6 0.0 1.3715174169271119E-6 0.0 0.32199999999999995 0.11546093771178464 0.0875 0 0 0 1782420944618 0 0.823 0 +e:generic:evil_loot 3 1 2 8.220478978227038E-7 7.669460074691514E-7 0.0 1.0 1.534478474050466E-6 1.7365612901182926E-6 0.0 1.3715170529919433E-6 0.0 0.32199999999999995 0.11546093771153468 0.0875 0 0 0 1782420944610 0 0.823 0 +e:generic:changing_distance_simulation 2 1 1 4.699700118137915E-8 4.533902100083846E-8 0.0 1.0 0.0 2.5025787240836452E-5 0.0 4.800602223618189E-8 0.0 0.35 0.11350376718435637 0.13333333333333333 2 0 1 1782623038396 0 0.573 0 +e:generic:loot_rogue 3 1 2 8.22048038663493E-7 7.669461388692056E-7 0.0 1.0 1.5344786836251266E-6 1.7365615505515102E-6 0.0 1.3715172524219033E-6 0.0 0.32199999999999995 0.11546093771167215 0.0875 0 0 0 1782420944614 0 0.823 0 +e:generic:loot_undead 3 1 2 8.220478348094154E-7 7.669459486795467E-7 0.0 1.0 1.5344783761735604E-6 1.7365611739530032E-6 0.0 1.37151696102429E-6 0.0 0.32199999999999995 0.11546093771147187 0.0875 0 0 0 1782420944608 0 0.823 0 +u:advancement_list_loaded_repeat 0 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0324 0.3 20 0 16 0 0 0.0324 0 +e:generic:bountiful_entry_pool_reward 5 1 4 7.893988290862234E-4 0.0 0.244 0.9496 0.0 2.0762003066186375E-4 0.0 1.1751292986219818E-4 5.107452729626505E-5 0.27538553599999993 0.11275424774767272 0.18333333333333335 1 0 1 1782622759409 0 0.4943109331361432 0 +e:generic:backup_complete_preparing_save 3 0 3 6.401848458274356E-5 0.029763273149435308 0.0 1.0 0.031042824448992718 0.023833520660721752 0.0 0.019878581329653817 0.0 0.0 0.15529563758065337 0.19999999999999998 3 0 3 1783362885142 0 0.573 0 +e:generic:backup_differential_name_preparing 4 4 0 3.405242321230061E-5 1.071617114522697E-6 0.0 1.0 0.0 1.1485955615858717E-6 1.1485955615858717E-6 0.0 0.0 0.35 0.11350192513007748 0.19166666666666665 2 0 0 1782494489905 0 0.546299996675702 0 +e:generic:loot_witch 3 1 2 8.220478709680832E-7 7.669459824145168E-7 0.0 1.0 1.5344784294521795E-6 1.7365612387484561E-6 0.0 1.3715170118739094E-6 0.0 0.32199999999999995 0.11546093771150664 0.0875 0 0 0 1782420944609 0 0.823 0 +e:generic:interrupted_taskbatch 2 2 0 4.8886098640301906E-9 2.6568531956593645E-9 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.35 0.11350000053880982 0.05833333333333333 0 0 0 1782190800486 0 0.31629999972928996 0 +e:generic:chunks_data_dimension_saving 11 0 11 5.395987332141826E-6 6.341804849153283E-5 0.0 1.0 7.964813146431508E-5 6.05570850744267E-5 4.02676371051223E-5 9.27764143356078E-5 0.0 0.0 0.13805120316156486 0.6208333333333333 9 0 9 1782623267056 0 0.6035266934543576 0 +e:generic:cold_loot 3 1 2 8.220477512101453E-7 7.669458706838107E-7 0.0 1.0 1.534478239546877E-6 1.7365610142275944E-6 0.0 1.3715168344954054E-6 0.0 0.32199999999999995 0.11546093771138546 0.0875 0 0 0 1782420944605 0 0.823 0 +e:generic:memory_status 1 1 0 2.642585319967875E-9 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.35 0.11350000011891634 0.06666666666666667 1 0 0 1782190645407 0 0.1585 0 diff --git a/minecraft/config/logsfixer/ceiling.tsv b/minecraft/config/logsfixer/ceiling.tsv new file mode 100644 index 0000000..160d8ef --- /dev/null +++ b/minecraft/config/logsfixer/ceiling.tsv @@ -0,0 +1,23 @@ +d522c8020d2af81c 1783714570159 26 13 0 0 1 critical_thread_precision u:jei_start_event_repeat 0 u:jei_start_event_repeat 0 0 0 1782190800699 1783714570159 1783714570159 1783714570159 39 39 0 0 0 0 0 0 0 0 0 0 0 +8a4f91c3eefb6325 1783362793332 25 44 46 0 2 net.minecraft.server.MinecraftServer cant_keep_up Can't keep up! Is the server overloaded? Running {}ms or {} ticks behind 11 e:generic:keep_overloaded_running_ticks 46 can't keep up! is the server overloaded? running {}ms or {} ticks behind 44 4 1782190752837 1783362793332 1783362793332 1783362793332 2886 502886 1 11 1782497372403 0 0 4 0 0 0 0 0 +f4a4828ff2118f5c 1783714570159 7 6 0 0 1 KubeJS Server loot_system/04_end_remastered_drops.js#683: [AOF] FINAL EYE DROP STATISTICS (Server Shutdown) 0 e:generic:drop_final_loot_statistics 0 0 0 1782190800699 1783714570159 1783363949453 1783714570159 13 13 0 0 0 0 0 0 0 0 0 0 0 +40463750a1be0fb2 1783714570159 7 6 0 0 1 KubeJS Server loot_system/04_end_remastered_drops.js#682: ═══════════════════════════════════════════════════════ 0 0 0 0 1782190800699 1783714570159 1783363949453 1783714570159 13 13 0 0 0 0 0 0 0 0 0 0 0 +ec5616c21c3c4c43 1783362885301 1 0 0 0 1 computer.heather.advancedbackups.AdvancedBackups \n*************************************\nSAVE COMPLETE - PREPARING FOR BACKUP!\n************************************* 0 e:generic:backup_complete_preparing_save 0 0 0 1783362885301 1783362885301 0 1783362885301 1 -549999 0 0 0 0 0 0 0 0 0 0 0 +506e30a00eb5cfb8 1783714570159 0 18 0 0 1 net.minecraft.client.server.IntegratedServer Saving and pausing game... 0 u:saving_pause_repeat 0 0 0 1782190724480 1783714570159 1783714570159 0 18 18 0 0 0 0 0 0 0 0 0 0 0 +710bf3d4e9c3fab3 1783714395702 2 0 0 0 1 net.minecraft.server.MinecraftServer Owner - Modern_Gaming~ has made the advancement [Let's Get To Work] 0 e:generic:advancement_made_moderngaming_owner 0 0 1 1783362709047 1783714395702 0 1783714395702 252 252 0 0 0 0 0 1 0 0 0 0 0 +f70b661b15c6d6cc 1782622759919 5 1 1 0 2 bountiful bountiful reward pool entry is not valid!: tombstone_rabbit_mask Bountiful reward pool entry is not valid!: tombstone_rabbit_mask 1 e:generic:bountiful_entry_pool_reward Bountiful reward pool entry is not valid!: tombstone_rabbit_mask 1 bountiful reward pool entry is not valid!: tombstone_rabbit_mask 0 1 1782622759466 1782622759919 1782622759466 1782622759466 283 -299717 0 1 bountiful reward pool entry is not valid!: tombstone_rabbit_mask 1782622759919 0 0 1 0 0 0 0 0 +d508abe0600e3fa3 1783713807869 1 0 0 0 1 KubeJS Server loot_system/04_end_remastered_drops.js#686: [AOF] Registered Mobs: 103 0 u:registration_noise 0 0 0 1783713807869 1783713807869 0 1783713807869 1 -199999 0 0 0 0 0 0 0 0 0 0 0 +725341c65800413d 1783714395702 2 0 0 0 1 net.minecraft.server.MinecraftServer Owner - Modern_Gaming~ has made the advancement [Isn't It Iron Pick] 0 e:generic:advancement_made_moderngaming_owner 0 0 1 1783362709047 1783714395702 0 1783714395702 252 252 0 0 0 0 0 1 0 0 0 0 0 +6acc0797df5ab009 1783714396322 4 0 0 0 1 net.minecraft.server.MinecraftServer Owner - Modern_Gaming~ has made the advancement [Recycler] 0 e:generic:advancement_made_moderngaming_owner 0 0 1 1783362709047 1783714396322 0 1783714396322 254 254 0 0 0 0 0 1 0 0 0 0 0 +dd049054445c7d4b 1782623267528 11 0 0 0 1 Chunk Activity Tracker saving data for # chunks for dimension " 0 e:generic:chunks_data_dimension_saving 0 0 0 1782190650896 1782623267528 0 1782623267528 11 -549989 0 0 0 0 0 0 0 0 0 0 0 +721681662ef2819d 1783714570159 8 6 0 0 1 net.minecraft.server.network.ServerGamePacketListenerImpl Stopping singleplayer server as player logged out 0 e:network:logged_player_singleplayer_stopping 0 0 1 1782190800573 1783714570159 1783363949387 1783714570159 264 264 0 0 0 0 0 1 0 0 0 0 0 +a0990ff21f592895 1783713615318 1 0 0 0 1 net.minecraft.server.MinecraftServer Owner - Modern_Gaming~ has made the advancement [Fruits of the Field] 0 e:generic:advancement_made_moderngaming_owner 0 0 1 1783713615318 1783713615318 0 1783713615318 251 -199749 0 0 0 0 0 1 0 0 0 0 0 +37725dbafa30d803 1783363737507 1 0 0 0 1 com.github.alexthe666.alexsmobs.AlexsMobs found pupfish chunk at # ~ -# after # tries 0 u:info_burst_noise 0 0 0 1783363737507 1783363737507 0 1783363737507 1 -549999 0 0 0 0 0 0 0 0 0 0 0 +1494fc455740b8f2 1783713614605 16 6 0 0 1 net.minecraft.client.server.IntegratedServer Changing view distance to {}, from {} 0 e:generic:changing_distance_view 0 0 0 1782190650896 1783713614605 1782623038869 1783713614605 22 22 0 0 0 0 0 0 0 0 0 0 0 +4add08d0fafdb55a 1783713807869 1 0 0 0 1 KubeJS Server loot_system/04_end_remastered_drops.js#685: [AOF] Total Session Eye Drops: 0 0 e:generic:drops_loot_session_total 0 0 0 1783713807869 1783713807869 0 1783713807869 1 -199999 0 0 0 0 0 0 0 0 0 0 0 +36652dca5c05a152 1783714570159 20 20 0 0 1 critical_thread_precision u:advancement_list_loaded_repeat 0 u:advancement_list_loaded_repeat 0 0 0 1782190800699 1783714570159 1783714570159 1783714570159 40 40 0 0 0 0 0 0 0 0 0 0 0 +17ecaf377d555824 1783714570160 6 4 0 0 1 KubeJS Server loot_system/04_end_remastered_drops.js#684: ═══════════════════════════════════════════════════════ 0 0 0 0 1782190800699 1783714570160 1783363949453 1783714570160 10 10 0 0 0 0 0 0 0 0 0 0 0 +5adeb3ccb58a0394 1783714570160 8 12 0 0 1 net.minecraft.server.network.ServerGamePacketListenerImpl {} lost connection: {} 0 e:network:connection_lost 0 0 1 1782190800573 1783714570160 1783363949387 1783714570160 270 270 0 0 0 0 0 1 0 0 0 0 0 +acc230fd4aced7ac 1783713614605 2 0 0 0 1 com.github.alexthe666.alexsmobs.AlexsMobs found pupfish chunk at # ~ # after # tries 0 u:info_burst_noise 0 0 0 1783362709047 1783713614605 0 1783713614605 2 2 0 0 0 0 0 0 0 0 0 0 0 +1496eda82dfacc9a 1783714570160 624 1 0 0 1 net.minecraft.server.MinecraftServer saving chunks for level " 0 u:saving_chunks_repeat 0 0 1 1782190724480 1783714570160 1782332989645 1783714570160 875 875 0 0 0 0 0 1 0 0 0 0 0 +dfe13796ea8ef85f 1783714570160 0 13 0 0 3 net.minecraft.Util poi data mismatch: already registered at blockpos 0 u:structural_error_repeat 0 0 2 1782418306197 1783714570160 1783714570160 0 513 513 0 0 0 0 0 2 0 0 0 0 0 diff --git a/minecraft/config/lootr-client.toml b/minecraft/config/lootr-client.toml new file mode 100644 index 0000000..bdb3624 --- /dev/null +++ b/minecraft/config/lootr-client.toml @@ -0,0 +1,5 @@ +#set to true to use vanilla textures instead of Lootr special textures. Note: this will prevent previously opened chests from rendering differently +vanilla_textures = false +#set to true to use the old Lootr textures +old_textures = false + diff --git a/minecraft/config/lootr-common.toml b/minecraft/config/lootr-common.toml new file mode 100644 index 0000000..9f03ed9 --- /dev/null +++ b/minecraft/config/lootr-common.toml @@ -0,0 +1,89 @@ +#whether or not the entire forge:chests/wooden tag should be added to the conversion list for structures (if they are backed by RandomizableContainerBlockEntity) +convert_wooden_chests = true +#list of loot tables which will decay (default blank, meaning no chests decay, in the format of (in the format of ["modid:loot_table", "othermodid:other_loot_table"]) +decay_loot_tables = [] +#a list of additional chests that should be converted (in the format of ["modid:name", "modid:other_name"], must be a tile entity instance of RandomizableContainerBlockEntity) +additional_chests = [] +#list of mod IDs whose loot tables will decay (default blank, meaning no chests decay, in the format ["modid", "othermodid"]) +decay_modids = [] +#list of modids whose loot tables shouldn't be converted (in the format of ["modid", "other_modid"]) +loot_modid_blacklist = [] +#allows fake players to destroy Lootr chests without having to sneak, overrides the `disable_break` option for fake players +enable_fake_player_break = false +#a list of additional trapped chests that should be converted (in the format of ["modid:name", "modid:other_name"], must be a tile entity instance of RandomizableContainerBlockEntity) +additional_trapped_chests = [] +#lootr chests cannot be destroyed by any explosion +blast_immune = false +#list of dimensions (to the exclusion of all others) that loot chest should be replaced in (default: blank, allowing all dimensions, e.g., ["minecraft:overworld", "minecraft:the_end"]) +dimension_whitelist = [] +#disables styling of breaking, decaying and refreshing messages sent to players +disable_message_styles = false +#list of dimensions where loot chests should automatically decay (default: blank, e.g., ["minecraft:the_nether", "minecraft:the_end"]) +decay_dimensions = [] +#whether or not the entire forge:chests/trapped tag should be added to the conversion list for structures (if they are backed by RandomizableContainerBlockEntity +convert_trapped_chests = true +#list of structures in which loot chests should automatically decay (in the format of ["modid:structure_name", "modid:other_structure_name"]) +decay_structures = [] +#lootr will automatically log all unresolved tables (i.e., for containers that have a loot table associated with them but, for whatever reason, the lookup for this table returns empty). setting this option to true additionally informs players when they open containers. +report_unresolved_tables = false +#list of dimensions by modid that loot chests should not be replaced in (default: blank, allowing all modids, format e.g., ["minecraft +#othermod"]) +modid_dimension_blacklist = [] +#if true, all block entities will be checked before being added to the ticker for an eligible loot table. enable this if a huge quantity of containers are clogging the conversion system; note that aggressive mode may prevent certain chests from properly converted even though eligible +aggressive_mode = false +#list of loot tables which shouldn't be converted (in the format of ["modid:loot_table", "othermodid:other_loot_table"]) +loot_table_blacklist = [] +#list of dimensions where loot chests should automatically refresh (default: blank, e.g., ["minecraft:overworld", "othermod:otherdimension"]) +refresh_dimensions = [] +#list of mod IDs whose loot tables will refresh (default blank, meaning no chests refresh, in the format of ["modid", "othermodid"]) +refresh_modids = [] +#determine whether or not loot generated is the same for all players using the provided seed, or randomised per player +randomise_seed = true +#allows players to open Lootr containers within spawn protection areas +bypass_spawn_protection = true +#when true, custom inventories will act like trapped chests when opened +trapped_custom = false +#how long (in ticks) a decaying loot containers should take to decay (default 5 minutes = 5 * 60 * 20) +#Range: > 0 +decay_value = 6000 +#list of loot tables which will refresh (default blank, meaning no chests refresh, in the format of ["modid:loot_table", "othermodid:loot_table"]) +refresh_loot_tables = [] +#whether or not the Elytra item frame should be converted into a standard loot chest with a guaranteed elytra +convert_elytras = true +#list of dimensions by modid that loot chest should be replaced in (default: blank, allowing all modids, format e.g., ["minecraft +#othermod"]) +modid_dimension_whitelist = [] +#prevent notifications of decaying or refreshed chests +disable_notifications = false +#overriding refresh_loot_tables, refresh_modids and refresh_dimensions: all chests will refresh after being opened for the first time +refresh_all = false +#overriding decay_loot_tables, decay_modids and decay_dimensions: all chests will decay after being opened for the first time +decay_all = false +#lootr chests cannot be destroyed by creeper or TNT explosions +blast_resistant = false +#list of dimensions that loot chests should not be replaced in (default: blank, allowing all dimensions, format e.g., ["minecraft:overworld", "minecraft:the_end"]) +dimension_blacklist = [] +#allow the destruction of Lootr chests regardless. overrides `disable_break` +enable_break = false +#the maximum age for containers; entries above this age will be discarded [default: 60 * 20 * 15, fifteen minutes] [note: the value 6000 will be corrected to 18000. if you wish to use 6000, please use 6001 or 5999.] +#Range: > 0 +max_age = 18000 +#prevent the destruction of Lootr chests except while sneaking in creative mode +disable_break = false +#whether or not mineshaft chest minecarts should be converted to standard loot chests +convert_mineshafts = true +#when true, comparators on Lootr containers will give an output of 1; when false, they will give an output of 0 +power_comparators = true +#maximum time (in ticks) remaining on a chest before a notification for refreshing or decaying is sent to a player (default 30 seconds, -1 for no delay) +#Range: > -1 +notification_delay = 600 +#if true, no chests will be converted +disable = false +#how long (in ticks) a refreshing loot containers should take to refresh their contents (default 20 minutes = 20 * 60 * 20) +#Range: > 0 +refresh_value = 24000 +#disregard chests and chunks that are outside of the world border; enable this option if you are using a world border and are suffering consistent TPS issues; if you change the world border, you will need to restart your client +check_world_border = false +#list of structures in which loot chests should automatically refresh (in the format of ["modid:structure_name", "othermodid:other_structure_name"]) +refresh_structures = [] + diff --git a/minecraft/config/lootr_liason-common.toml b/minecraft/config/lootr_liason-common.toml new file mode 100644 index 0000000..3e1c836 --- /dev/null +++ b/minecraft/config/lootr_liason-common.toml @@ -0,0 +1,20 @@ +#Ticks to wait after detecting a container before finalizing (allows worldgen to finish) +#Range: 0 ~ 400 +finalization_delay_ticks = 20 +#Max containers to finalize per server tick +#Range: 1 ~ 64 +max_finalizations_per_tick = 8 + +[mimics] + #[mimics] Enable mimic compatibility for the Artifacts mod + enable_artifacts_mimic_compat = true + #[mimics] When to roll for mimic: 'finalization' or 'first_interact' + mimic_roll_timing = "finalization" + #[mimics] Container block IDs excluded from mimic (e.g. minecraft:barrel) + exclude_container_types = ["minecraft:barrel"] + #[mimics] Respect Artifacts mod's mimic config when available + respect_artifacts_config = true + #[mimics] Max mimic evaluations per tick (when using first_interact) + #Range: 1 ~ 64 + max_mimic_checks_per_tick = 8 + diff --git a/minecraft/config/lucent-client.toml b/minecraft/config/lucent-client.toml index a1d68c9..51cbe6f 100644 --- a/minecraft/config/lucent-client.toml +++ b/minecraft/config/lucent-client.toml @@ -1,154 +1,166 @@ - -[dynamic_lighting_settings] - # - # If enabled, vanilla mobs and items will recieve dynamic lighting. If disabled, only objects specified by external mods or configs will recieve dynamic lighting. - # Default: true - vanillaDynamicLighting = true - # - # If enabled, torches and other vanilla fire-based items will not emit light underwater. - # Default: false - torchesDoNothingInWater = false - # - # A multiplier applied to an entity's light level when in the deep dark. - # Default: 0.5 - #Range: 0.0 ~ 1.0 - deepDarkScaling = 0.5 - # - # The maximum amount of times light tries to refresh in a second. Higher values attempt to refresh more often. This number can be decreased if you experience poor performance. - # Default: 40 - #Range: 1 ~ 240 - lightRefreshRate = 40 - # - # Determines how far away you should be able to see light from an entity (measured in blocks). 0 for infinite distance. Use this to prevent far away entities from causing light updates. - # Default: 128 - #Range: 0 ~ 1024 - maxVisibleDistance = 128 - # - # Determines if dynamic lighting should still occur when an entity is behind a wall. Turning this on may impact performance, but allows light to be seen around corners from far away. Entities within 24 blocks will always emit light. - # Default: false - seeThroughWalls = false - # - # Determines if dynamic lighting smoothly blends as you move. Works best with a high refresh rate. Will result in worse performance since lighting updates typically happen more often. - # Default: true - smoothBlending = true - # - # If enabled, chunks with dynamic lighting will always render off thread. Improves FPS, but may cause strange rendering glitches (Does nothing if Optifine is installed). - # Default: true - threadedRendering = true - - [dynamic_lighting_settings.entity_lighting] - # - # Sets the light level of entities. Allows for adding modded entities. Set the light to -1 to unregister it. - # Example: ["minecraft:blaze=9", "minecraft:creeper=5"] - # Default: [] - entityBrightnessOverrides = [] - - [dynamic_lighting_settings.entity_lighting.burning_entities] - # - # Determines if entities on fire emit light. - # Default: true - burningEntitiesGlow = true - # - # How bright a burning entity should be. - # Default: 10 - #Range: 0 ~ 15 - burningEntityLightLevel = 10 - - [dynamic_lighting_settings.entity_lighting.glowing_entities] - # - # Determines if entities affected with the glowing effect emit light. - # Default: true - glowingEntitiesGlow = true - # - # How bright an entity with the glowing effect be. - # Default: 5 - #Range: 0 ~ 15 - glowingEntityLightLevel = 5 - - [dynamic_lighting_settings.entity_lighting.entity_settings] - # - # Determines if if creepers emit light before they explode. - # Default: true - creepersGlow = true - - [dynamic_lighting_settings.item_lighting] - # - # Modifies the light level of items. Allows for adding modded items. Set the light to -1 to unregister it. - # Example: ["minecraft:torch=14", "minecraft:diamond=10"] - # Default: [] - itemBrightnessOverrides = [] - # - # Determines if items in the world emit light. - # Default: true - itemEntitiesGlow = true - # - # Determines if held or worn items emit light. - # Default: true - heldItemsGlow = true - # - # Determines if item frames with glowing items emit light. - # Default: true - itemFramesGlow = true - -[block_emission_settings] - # - # Determines if block textures can be lit brighter than usual. - # Default: true - blockTexturesGlow = true - # - # Modifies the light level of block textures. Set the light to -1 to unregister it. - # Example: ["minecraft:block/end_portal_frame_eye=12", "minecraft:block/stone=4"] - # Default: [] - blockTextureBrightnessOverrides = [] - -[armor_trim_emission_settings] - # - # Determines if armor trim materials can be lit brighter than usual. - # Default: true - armorTrimsGlow = true - # - # Modifies the light level of armor trim textures based on trim material. Set the light to -1 to unregister it. - # Example: ["minecraft:diamond=10", "minecraft:gold=7"] - # Default: [] - armorTrimBrightnessOverrides = [] - -[debug_settings] - # - # Logs info about registry data. - # Default: false - logRegistry = false - # - # Logs the average time 100 dynamic lighting calculations took, and provides a fastest refresh time for your machine based on these numbers. - # Default: false - logLightCalculationTime = false - # - # Logs when a mod or resource pack is using a deprecated folder structure. - # Default: true - logDeprecatedFolderStructure = true - # - # Logs when dynamic lighting encounters an issue. - # Default: false - logDynamicLightingErrors = false - - [debug_settings.flags] - # - # Disables emissive block textures if an incompatible mod is discovered. - # Default: true - disableBlockTextureGlowIfError = true - # - # Warns when Flywheel is installed since you may see weird dynamic lighting on some blocks from Create. - # Default: true - warnAboutFlywheel = false - # - # Warns when Sodium (or a variation) is installed since dynamic lighting may not work. - # Default: true - warnAboutSodium = true - -[mod_compat] - - [mod_compat.enabled_builtin_plugins] - # - # Enables the plugin for Tinkers' Construct. - # Default: true - tconstruct = true - + +[dynamic_lighting_settings] + # + # If enabled, vanilla mobs and items will recieve dynamic lighting. If disabled, only objects specified by external mods or configs will recieve dynamic lighting. + # Default: true + vanillaDynamicLighting = true + # + # If enabled, torches and other vanilla fire-based items will not emit light underwater. + # Default: false + torchesDoNothingInWater = false + # + # A multiplier applied to an entity's light level when in the deep dark. + # Default: 0.5 + #Range: 0.0 ~ 1.0 + deepDarkScaling = 0.5 + # + # The maximum amount of times light tries to refresh in a second. Higher values attempt to refresh more often. This number can be decreased if you experience poor performance. + # Default: 40 + #Range: 1 ~ 240 + lightRefreshRate = 60 + # + # Determines how far away you should be able to see light from an entity (measured in blocks). 0 for infinite distance. Use this to prevent far away entities from causing light updates. + # Default: 128 + #Range: 0 ~ 1024 + maxVisibleDistance = 128 + # + # Determines if dynamic lighting should still occur when an entity is behind a wall. Turning this on may impact performance, but allows light to be seen around corners from far away. Entities within 24 blocks will always emit light. + # Default: false + seeThroughWalls = false + # + # Determines if dynamic lighting smoothly blends as you move. Works best with a high refresh rate. Will result in worse performance since lighting updates typically happen more often. + # Default: true + smoothBlending = false + # + # If enabled, chunks with dynamic lighting will always render off thread. Improves FPS, but may cause strange rendering glitches (Does nothing if Optifine is installed). + # Default: true + threadedRendering = true + + [dynamic_lighting_settings.entity_lighting] + # + # Sets the light level of entities. Allows for adding modded entities. Set the light to -1 to unregister it. + # Example: ["minecraft:blaze=9", "minecraft:creeper=5"] + # Default: [] + entityBrightnessOverrides = [] + + [dynamic_lighting_settings.entity_lighting.burning_entities] + # + # Determines if entities on fire emit light. + # Default: true + burningEntitiesGlow = true + # + # How bright a burning entity should be. + # Default: 10 + #Range: 0 ~ 15 + burningEntityLightLevel = 10 + + [dynamic_lighting_settings.entity_lighting.glowing_entities] + # + # Determines if entities affected with the glowing effect emit light. + # Default: true + glowingEntitiesGlow = true + # + # How bright an entity with the glowing effect be. + # Default: 5 + #Range: 0 ~ 15 + glowingEntityLightLevel = 5 + + [dynamic_lighting_settings.entity_lighting.entity_settings] + # + # Determines if if creepers emit light before they explode. + # Default: true + creepersGlow = true + + [dynamic_lighting_settings.item_lighting] + # + # Modifies the light level of items. Allows for adding modded items. Set the light to -1 to unregister it. + # Example: ["minecraft:torch=14", "minecraft:diamond=10"] + # Default: [] + itemBrightnessOverrides = [] + # + # Determines if items in the world emit light. + # Default: true + itemEntitiesGlow = true + # + # Determines if held or worn items emit light. + # Default: true + heldItemsGlow = true + # + # Determines if item frames with glowing items emit light. + # Default: true + itemFramesGlow = true + +[block_emission_settings] + # + # Determines if block textures can be lit brighter than usual. + # Default: true + blockTexturesGlow = true + # + # Modifies the light level of block textures. Set the light to -1 to unregister it. + # Example: ["minecraft:block/end_portal_frame_eye=12", "minecraft:block/stone=4"] + # Default: [] + blockTextureBrightnessOverrides = [] + +[armor_trim_emission_settings] + # + # Determines if armor trim materials can be lit brighter than usual. + # Default: true + armorTrimsGlow = true + # + # Modifies the light level of armor trim textures based on trim material. Set the light to -1 to unregister it. + # Example: ["minecraft:diamond=10", "minecraft:gold=7"] + # Default: [] + armorTrimBrightnessOverrides = [] + +[debug_settings] + # + # Logs info about registry data. + # Default: false + logRegistry = false + # + # Logs the average time 100 dynamic lighting calculations took, and provides a fastest refresh time for your machine based on these numbers. + # Default: false + logLightCalculationTime = false + # + # Logs when a mod or resource pack is using a deprecated folder structure. + # Default: true + logDeprecatedFolderStructure = true + # + # Logs when dynamic lighting encounters an issue. + # Default: false + logDynamicLightingErrors = false + + [debug_settings.flags] + # + # Disables emissive block textures if an incompatible mod is discovered. + # Default: true + disableBlockTextureGlowIfError = true + # + # Warns when Flywheel is installed since you may see weird dynamic lighting on some blocks from Create. + # Default: true + warnAboutFlywheel = false + # + # Warns when Sodium (or a variation) is installed since dynamic lighting may not work. + # Default: true + warnAboutSodium = true + +[mod_compat] + + [mod_compat.enabled_builtin_plugins] + # + # Enables the plugin for Blue Skies. + # Default: true + blue_skies = true + # + # Enables the plugin for Create. + # Default: true + create = true + # + # Enables the plugin for Quark. + # Default: true + quark = true + # + # Enables the plugin for Tinkers' Construct. + # Default: true + tconstruct = true + diff --git a/minecraft/config/magnumtorch-server.toml b/minecraft/config/magnumtorch-server.toml new file mode 100644 index 0000000..dce5461 --- /dev/null +++ b/minecraft/config/magnumtorch-server.toml @@ -0,0 +1,145 @@ + +[diamond_torch] + #Mobs that should still be allowed to spawn despite being included in "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_whitelist = [] + #Mobs that should not be allowed to spawn despite being absent from "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_blacklist = [] + #Type of shape used for calculating area in which spawns are prevented. + #This basically let's you choose between maximum or euclidean metrics. + #Allowed Values: ELLIPSOID, CYLINDER, CUBOID + shape_type = "ELLIPSOID" + #Range for preventing mob spawns on y-dimension. + #Range: > 0 + vertical_range = 32 + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Allowed Values: NATURAL, SPAWNER, STRUCTURE, MOB_SUMMONED, JOCKEY, EVENT, REINFORCEMENT, PATROL, TRIGGERED + blocked_spawn_types = ["NATURAL", "PATROL", "STRUCTURE", "JOCKEY"] + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Allowed Values: MONSTER, CREATURE, AMBIENT, AXOLOTLS, UNDERGROUND_WATER_CREATURE, WATER_CREATURE, WATER_AMBIENT + mob_category = ["MONSTER"] + #Range for preventing mob spawns on x-z-plane. + #Range: > 0 + horizontal_range = 64 + +[emerald_torch] + #Mobs that should still be allowed to spawn despite being included in "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_whitelist = [] + #Mobs that should not be allowed to spawn despite being absent from "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_blacklist = [] + #Type of shape used for calculating area in which spawns are prevented. + #This basically let's you choose between maximum or euclidean metrics. + #Allowed Values: ELLIPSOID, CYLINDER, CUBOID + shape_type = "CUBOID" + #Range for preventing mob spawns on y-dimension. + #Range: > 0 + vertical_range = 64 + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Allowed Values: NATURAL, SPAWNER, STRUCTURE, MOB_SUMMONED, JOCKEY, EVENT, REINFORCEMENT, PATROL, TRIGGERED + blocked_spawn_types = ["NATURAL", "EVENT"] + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Allowed Values: MONSTER, CREATURE, AMBIENT, AXOLOTLS, UNDERGROUND_WATER_CREATURE, WATER_CREATURE, WATER_AMBIENT + mob_category = ["CREATURE"] + #Range for preventing mob spawns on x-z-plane. + #Range: > 0 + horizontal_range = 128 + +[amethyst_torch] + #Mobs that should still be allowed to spawn despite being included in "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_whitelist = [] + #Mobs that should not be allowed to spawn despite being absent from "mob_category". + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. + mob_blacklist = [] + #Type of shape used for calculating area in which spawns are prevented. + #This basically let's you choose between maximum or euclidean metrics. + #Allowed Values: ELLIPSOID, CYLINDER, CUBOID + shape_type = "ELLIPSOID" + #Range for preventing mob spawns on y-dimension. + #Range: > 0 + vertical_range = 32 + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Types of mob spawns to block (provided by vanilla, some seem a little arbitrary). By default this is configured to only affect natural spawns occurring without player interaction and to not disrupt any game events such as raids. + #NATURAL: monsters spawned during night time, cats in villages, phantoms in the sky + #SPAWNER: all kinds of mobs summoned by monster spawners + #STRUCTURE: zombified piglin from nether portals + #MOB_SUMMONED: iron golems from villagers + #JOCKEY: mobs spawned as a rider for another mob + #EVENT: mobs spawned by game events, mainly zombie sieges, raids, wandering trader visits + #REINFORCEMENT: zombie reinforcements spawned when a zombie is hurt + #PATROL: pillager patrols + #TRIGGERED: skeleton horse traps and warden from sculk shriekers + #Allowed Values: NATURAL, SPAWNER, STRUCTURE, MOB_SUMMONED, JOCKEY, EVENT, REINFORCEMENT, PATROL, TRIGGERED + blocked_spawn_types = ["NATURAL"] + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Mobs of this category are prevented from spawning through natural means (e.g. mob spawners and breeding will still work). + #For refining affected mobs use blacklist and whitelist options. + #If you only want to prevent a few mob types from spawning that do not fit any category leave this list empty and include them in the blacklist option. + #Allowed Values: MONSTER, CREATURE, AMBIENT, AXOLOTLS, UNDERGROUND_WATER_CREATURE, WATER_CREATURE, WATER_AMBIENT + mob_category = ["AMBIENT", "AXOLOTLS", "WATER_AMBIENT", "WATER_CREATURE", "UNDERGROUND_WATER_CREATURE"] + #Range for preventing mob spawns on x-z-plane. + #Range: > 0 + horizontal_range = 64 + diff --git a/minecraft/config/mahoutsukai-client.toml b/minecraft/config/mahoutsukai-client.toml new file mode 100644 index 0000000..dced452 --- /dev/null +++ b/minecraft/config/mahoutsukai-client.toml @@ -0,0 +1,70 @@ + +[Client] + #Multiplier for Caliburn ring speed + #Range: 0.0 ~ 1.0E8 + POWER_CONSOLIDATION_CALIBURN_RING_SPEED = 1.0 + #Whether to show the circles in the sky + HEAVENS_CUP_CLIENT_CIRCLE = true + #How far away Leylines can be seen + #Range: 0 ~ 100000000 + LEY_RENDER_DISTANCE = 100 + #Toggle for Fae Sounds + FAE_NOISE = true + #X value of Mahou value on screen + #Range: 0 ~ 100000000 + CLIENT_GUI_MAHOU_PLACEMENT_X = 10 + #Y value of Mahou value on screen + #Range: 0 ~ 100000000 + CLIENT_GUI_MAHOU_PLACEMENT_Y = 20 + #Ring speed for the Mystic Code + #Range: 0.0 ~ 1.0E8 + MYSTIC_CODE_RING_SPEED = 1.0 + #Spinning speed for boundaries + #Range: 0.0 ~ 1.0E8 + BOUNDARY_SPEED = 2.0 + #Toggle bleeding potion effect display + SHOW_BLEEDING = true + #Mystic Staff Beam Volume Factor + #Range: 0.0 ~ 10.0 + MYSTIC_STAFF_BEAM_VOLUME_FACTOR = 0.1 + #Added X value to left tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_LEFT_X = 0 + #Added Y value to left tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_LEFT_Y = 0 + #Added X value to right tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_RIGHT_X = 0 + #Added Y value to right tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_RIGHT_Y = 0 + #Added X value to bottom tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_BOTTOM_X = 0 + #Added Y value to bottom tab position of Mystic Eyes of Insight + #Range: -10000 ~ 10000 + INSIGHT_BOTTOM_Y = 0 + #Quality of links of the chain, reducing can improve FPS + #Range: 3 ~ 10000 + CHAIN_QUALITY = 11 + #How loud the chains are + #Range: 0.0 ~ 10.0 + CHAIN_VOLUME = 0.01 + #Volume control for Caliburn's Smite attack + #Range: 0.0 ~ 10.0 + SMITE_VOLUME = 1.0 + #Show ability cooldown as a potion effect + SHOW_MORGAN_CALIBURN_COOLDOWN = false + #No Shaders + NO_SHADERS = false + #Old Circle Render + OLD_CIRCLE_RENDER = false + #Old Circle Animation + OLD_CIRCLE_ANIM = false + #Show Selected Entity + SHOW_SELECTED_ENTITY = true + #Selective Displacement Hold Time + #Range: 0 ~ 100000 + SELECTIVE_DISPLACEMENT_HOLD_TIME = 5 + diff --git a/minecraft/config/majruszlibrary.json b/minecraft/config/majruszlibrary.json new file mode 100644 index 0000000..f5edf74 --- /dev/null +++ b/minecraft/config/majruszlibrary.json @@ -0,0 +1,4 @@ +{ + "debug_logs_enabled": false, + "send_new_available_updates_message": true +} \ No newline at end of file diff --git a/minecraft/config/majruszsaccessories.json b/minecraft/config/majruszsaccessories.json new file mode 100644 index 0000000..0f7700e --- /dev/null +++ b/minecraft/config/majruszsaccessories.json @@ -0,0 +1,584 @@ +{ + "accessories": { + "adventurer_kit": { + "chest_size_bonus": { + "multiplier": 1.2, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "any_chest_spawn_chance": 0.025 + }, + "adventurer_rune": { + "chest_size_bonus": { + "multiplier": 1.5, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "extra_archaeology_item": { + "chance": 0.2, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "swim_speed": { + "multiplier": 0.25, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + } + }, + "ancient_scarab": { + "extra_archaeology_item": { + "chance": 0.16, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "suspicious_block_spawn_chance": 0.125, + "suspicious_block_ids": [ + "minecraft:archaeology/desert_well", + "minecraft:archaeology/desert_pyramid", + "minecraft:archaeology/trail_ruins_common", + "minecraft:archaeology/trail_ruins_rare", + "minecraft:archaeology/ocean_ruin_warm", + "minecraft:archaeology/ocean_ruin_cold", + "{regex}.*archaeology.*" + ] + }, + "angler_rune": { + "fishing_luck": { + "bonus": 3.0, + "bonus_range": { + "min": 0.0, + "max": 10.0 + } + }, + "fishing_time": { + "multiplier": 0.25, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "extra_fishing_treasure": { + "chance": 0.06, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + } + }, + "angler_trophy": { + "fishing_luck": { + "bonus": 2.5, + "bonus_range": { + "min": 0.0, + "max": 10.0 + } + }, + "fishing_drop_chance": 0.01 + }, + "certificate_of_taming": { + "animal_bonus": { + "bonus": 0.2, + "bonus_range": { + "min": 0.0, + "max": 1.0 + } + }, + "taming_drop_chance": 0.1 + }, + "discount_voucher": { + "trading_discount": { + "multiplier": 0.12, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "trading_drop_chance": 0.01 + }, + "dream_catcher": { + "sleep_bonuses": { + "count": 1.0, + "count_range": { + "min": 1.0, + "max": 10.0 + }, + "duration": 300, + "duration_range": { + "min": 1, + "max": 10000 + }, + "effects": [ + { + "id": "minecraft:regeneration", + "amplifier": 0 + }, + { + "id": "minecraft:saturation", + "amplifier": 0 + }, + { + "id": "minecraft:absorption", + "amplifier": 1 + }, + { + "id": "minecraft:resistance", + "amplifier": 0 + }, + { + "id": "minecraft:fire_resistance", + "amplifier": 0 + }, + { + "id": "minecraft:speed", + "amplifier": 0 + }, + { + "id": "minecraft:haste", + "amplifier": 0 + }, + { + "id": "minecraft:strength", + "amplifier": 0 + } + ] + }, + "sleeping_drop_chance": 0.1 + }, + "household_rune": { + "trading_discount": { + "multiplier": 0.15, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "sleep_bonuses": { + "count": 1.2, + "count_range": { + "min": 1.0, + "max": 10.0 + }, + "duration": 360, + "duration_range": { + "min": 1, + "max": 10000 + }, + "effects": [ + { + "id": "minecraft:regeneration", + "amplifier": 0 + }, + { + "id": "minecraft:saturation", + "amplifier": 0 + }, + { + "id": "minecraft:absorption", + "amplifier": 1 + }, + { + "id": "minecraft:resistance", + "amplifier": 0 + }, + { + "id": "minecraft:fire_resistance", + "amplifier": 0 + }, + { + "id": "minecraft:speed", + "amplifier": 0 + }, + { + "id": "minecraft:haste", + "amplifier": 0 + }, + { + "id": "minecraft:strength", + "amplifier": 0 + } + ] + }, + "stronger_potion": { + "duration_penalty": 0.5, + "duration_penalty_range": { + "min": 0.0, + "max": 1.0 + }, + "amplifier": 1.2, + "amplifier_range": { + "min": 1.0, + "max": 10.0 + } + } + }, + "idol_of_fertility": { + "breeding_twins": { + "chance": 0.25, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "breeding_drop_chance": 0.01 + }, + "lucky_rock": { + "extra_mining_item": { + "chance": 0.03, + "chance_range": { + "min": 0.0, + "max": 1.0 + }, + "loot_ids": { + "__default": "majruszsaccessories:gameplay/lucky_rock_default", + "minecraft:the_end": "majruszsaccessories:gameplay/lucky_rock_end", + "minecraft:the_nether": "majruszsaccessories:gameplay/lucky_rock_nether" + } + }, + "mining_drop_chance": 7.5E-4 + }, + "metal_lure": { + "extra_fishing_treasure": { + "chance": 0.05, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "fish_drop_chance": 0.015, + "fish_ids": [ + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish" + ] + }, + "miner_guide": { + "mining_speed_bonus": { + "multiplier": 0.1, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "underground_chest_spawn_chance": 0.05 + }, + "miner_rune": { + "extra_mining_item": { + "chance": 0.04, + "chance_range": { + "min": 0.0, + "max": 1.0 + }, + "loot_ids": { + "__default": "majruszsaccessories:gameplay/lucky_rock_default", + "minecraft:the_end": "majruszsaccessories:gameplay/lucky_rock_end", + "minecraft:the_nether": "majruszsaccessories:gameplay/lucky_rock_nether" + } + }, + "mining_speed_bonus": { + "multiplier": 0.12, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "mining_free_durability_use": { + "chance": 0.12, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + } + }, + "nature_rune": { + "animal_bonus": { + "bonus": 0.25, + "bonus_range": { + "min": 0.0, + "max": 1.0 + } + }, + "breeding_twins": { + "chance": 0.3, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "double_crops": { + "chance": 0.3, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + } + }, + "secret_ingredient": { + "stronger_potion": { + "duration_penalty": 0.6, + "duration_penalty_range": { + "min": 0.0, + "max": 1.0 + }, + "amplifier": 1.0, + "amplifier_range": { + "min": 1.0, + "max": 10.0 + } + }, + "brewing_drop_chance": 0.02 + }, + "soul_of_minecraft": { + "chest_size_bonus": { + "multiplier": 1.8, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "extra_archaeology_item": { + "chance": 0.24, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "swim_speed": { + "multiplier": 0.3, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "fishing_luck": { + "bonus": 3.5, + "bonus_range": { + "min": 0.0, + "max": 10.0 + } + }, + "fishing_time": { + "multiplier": 0.3, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "extra_fishing_treasure": { + "chance": 0.07, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "trading_discount": { + "multiplier": 0.18, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "sleep_bonuses": { + "count": 1.5, + "count_range": { + "min": 1.0, + "max": 10.0 + }, + "duration": 420, + "duration_range": { + "min": 1, + "max": 10000 + }, + "effects": [ + { + "id": "minecraft:regeneration", + "amplifier": 0 + }, + { + "id": "minecraft:saturation", + "amplifier": 0 + }, + { + "id": "minecraft:absorption", + "amplifier": 1 + }, + { + "id": "minecraft:resistance", + "amplifier": 0 + }, + { + "id": "minecraft:fire_resistance", + "amplifier": 0 + }, + { + "id": "minecraft:speed", + "amplifier": 0 + }, + { + "id": "minecraft:haste", + "amplifier": 0 + }, + { + "id": "minecraft:strength", + "amplifier": 0 + } + ] + }, + "stronger_potion": { + "duration_penalty": 0.4, + "duration_penalty_range": { + "min": 0.0, + "max": 1.0 + }, + "amplifier": 1.4, + "amplifier_range": { + "min": 1.0, + "max": 10.0 + } + }, + "extra_mining_item": { + "chance": 0.05, + "chance_range": { + "min": 0.0, + "max": 1.0 + }, + "loot_ids": { + "__default": "majruszsaccessories:gameplay/lucky_rock_default", + "minecraft:the_end": "majruszsaccessories:gameplay/lucky_rock_end", + "minecraft:the_nether": "majruszsaccessories:gameplay/lucky_rock_nether" + } + }, + "mining_speed_bonus": { + "multiplier": 0.15, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "mining_free_durability_use": { + "chance": 0.15, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "animal_bonus": { + "bonus": 0.3, + "bonus_range": { + "min": 0.0, + "max": 1.0 + } + }, + "breeding_twins": { + "chance": 0.36, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "double_crops": { + "chance": 0.36, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + } + }, + "swimmer_guide": { + "swim_speed": { + "multiplier": 0.2, + "multiplier_range": { + "min": 0.0, + "max": 10.0 + } + }, + "underwater_chest_spawn_chance": 0.05, + "buried_treasure_spawn_chance": 0.25 + }, + "tamed_potato_beetle": { + "double_crops": { + "chance": 0.25, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "harvesting_drop": { + "harvesting_chance": 0.0025, + "potato_multiplier": 2.0 + } + }, + "tool_scraps": { + "mining_free_durability_use": { + "chance": 0.1, + "chance_range": { + "min": 0.0, + "max": 1.0 + } + }, + "durability_drop_chance_multiplier": 3.0E-4 + }, + "unbreakable_fishing_line": { + "fishing_time": { + "multiplier": 0.2, + "multiplier_range": { + "min": 0.0, + "max": 1.0 + } + }, + "fishing_drop_chance": 0.005, + "fish_drop_chance": 0.005, + "fish_ids": [ + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish" + ] + } + }, + "boosters": { + "dice": { + "accessory_drop_chance_multiplier": 0.2, + "guardian_drop_chance": 0.05 + }, + "golden_dice": { + "accessory_drop_chance_multiplier": 0.3 + }, + "golden_horseshoe": { + "luck_bonus": 1.5 + }, + "horseshoe": { + "luck_bonus": 1.0, + "skeleton_horseman_drop_chance": 0.334 + }, + "onyx": { + "efficiency_bonus": 0.09, + "warden_drop_chance": 1.0 + }, + "owl_feather": { + "experience_bonus": 0.15, + "vex_drop_chance": 0.1 + }, + "loot_table": "majruszsaccessories:gameplay/nether_accessories", + "nether_chest_chance": 0.1, + "nether_mob_chance": 0.005 + }, + "efficiency": { + "range": { + "min": -0.6, + "max": 0.6 + }, + "average": 0.0, + "standard_deviation": 0.2 + } +} \ No newline at end of file diff --git a/minecraft/config/majruszsdifficulty.json b/minecraft/config/majruszsdifficulty.json new file mode 100644 index 0000000..2c19ccf --- /dev/null +++ b/minecraft/config/majruszsdifficulty.json @@ -0,0 +1,851 @@ +{ + "game_stages": { + "is_per_player_difficulty_enabled": false, + "list": [ + { + "id": "normal", + "format": [ + "WHITE" + ], + "triggers": { + "dimensions": [], + "entities": [] + }, + "messages": [] + }, + { + "id": "expert", + "format": [ + "RED", + "BOLD" + ], + "triggers": { + "dimensions": [ + "{regex}.*" + ], + "entities": [] + }, + "messages": [ + { + "id": "majruszsdifficulty.stages.expert.started", + "format": [ + "RED", + "BOLD" + ] + }, + { + "id": "majruszsdifficulty.undead_army.on_expert", + "format": [ + "DARK_PURPLE" + ] + } + ] + }, + { + "id": "master", + "format": [ + "DARK_PURPLE", + "BOLD" + ], + "triggers": { + "dimensions": [], + "entities": [ + "minecraft:ender_dragon" + ] + }, + "messages": [ + { + "id": "majruszsdifficulty.stages.master.started", + "format": [ + "DARK_PURPLE", + "BOLD" + ] + }, + { + "id": "majruszsdifficulty.undead_army.on_master", + "format": [ + "DARK_PURPLE" + ] + } + ] + } + ], + "crd_penalty": { + "__default": 0.0, + "expert": 0.15, + "master": 0.3 + } + }, + "features": { + "block_illusioner_from_joining_raids": { + "is_enabled": true, + "required_game_stage": "normal" + }, + "creeper_chain_reaction": { + "is_enabled": true, + "required_game_stage": "expert" + }, + "creeper_explode_behind_wall": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 1.0, + "is_scaled_by_crd": false + }, + "creeper_explosion_immunity": { + "is_enabled": true, + "required_game_stage": "expert", + "damage_multiplier": 0.2 + }, + "creeper_spawn_charged": { + "is_enabled": true, + "required_game_stage": "normal", + "chance": 0.125, + "is_scaled_by_crd": true + }, + "creeper_spawn_debuffed": { + "is_enabled": true, + "required_game_stage": "normal", + "chance": 0.375, + "is_scaled_by_crd": true, + "effects": [ + { + "id": "minecraft:weakness", + "amplifier": 0, + "duration": 60.0 + }, + { + "id": "minecraft:slowness", + "amplifier": 0, + "duration": 60.0 + }, + { + "id": "minecraft:mining_fatigue", + "amplifier": 0, + "duration": 60.0 + }, + { + "id": "minecraft:saturation", + "amplifier": 0, + "duration": 60.0 + } + ] + }, + "creeper_split_into_creeperlings": { + "is_enabled": true, + "count": { + "__default": 2, + "expert": 4, + "master": 6 + }, + "chance": 0.666, + "is_scaled_by_crd": true + }, + "deadlier_explosions": { + "is_enabled": true, + "required_game_stage": "normal", + "radius_multiplier": 1.2599, + "fire_chance": 0.75, + "is_scaled_by_crd": true + }, + "double_loot": { + "is_enabled": true, + "chance": { + "__default": 0.0, + "expert": 0.05, + "master": 0.1 + }, + "blacklisted_items": [ + "minecraft:nether_star", + "minecraft:totem_of_undying" + ] + }, + "drowned_lightning_bolt": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 1.0, + "is_scaled_by_crd": false + }, + "enderman_teleport_attack": { + "is_enabled": true, + "required_game_stage": "master", + "chance": 0.5, + "is_scaled_by_crd": true + }, + "evoker_with_totem": { + "is_enabled": true, + "required_game_stage": "normal", + "chance": 1.0, + "is_scaled_by_crd": true + }, + "experience_bonus": { + "is_enabled": true, + "extra_multiplier": { + "__default": 0.0, + "expert": 0.2, + "master": 0.4 + } + }, + "jockey_spawn": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 0.125, + "is_scaled_by_crd": false + }, + "mob_groups": { + "piglins": { + "required_game_stage": "expert", + "chance": 0.25, + "is_scaled_by_crd": true, + "leader_types": [ + { + "type": "minecraft:piglin", + "equipment": "majruszsdifficulty:mob_groups/piglin_leader" + } + ], + "sidekicks_count": { + "min": 1, + "max": 3 + }, + "sidekick_types": [ + { + "type": "minecraft:piglin", + "equipment": "majruszsdifficulty:mob_groups/piglin_sidekick" + } + ] + }, + "skeletons": { + "required_game_stage": "normal", + "chance": 0.1, + "is_scaled_by_crd": true, + "leader_types": [ + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:mob_groups/skeleton_leader" + } + ], + "sidekicks_count": { + "min": 1, + "max": 3 + }, + "sidekick_types": [ + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:mob_groups/skeleton_sidekick" + } + ] + }, + "undead": { + "required_game_stage": "normal", + "chance": 0.1, + "is_scaled_by_crd": true, + "leader_types": [ + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_3_skeleton" + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_3_skeleton" + }, + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_3_mob" + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_3_mob" + } + ], + "sidekicks_count": { + "min": 2, + "max": 4 + }, + "sidekick_types": [ + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob" + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob" + }, + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob" + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob" + } + ] + }, + "zombie_miners": { + "required_game_stage": "expert", + "chance": 0.25, + "is_scaled_by_crd": true, + "leader_types": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:mob_groups/zombie_leader" + } + ], + "sidekicks_count": { + "min": 1, + "max": 3 + }, + "sidekick_types": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:mob_groups/zombie_sidekick" + } + ] + } + }, + "mobs_apply_effects": [ + { + "required_game_stage": "expert", + "chance": 0.25, + "is_scaled_by_crd": true, + "entity_type": "minecraft:spider", + "effect": { + "id": "minecraft:poison", + "amplifier": 0, + "duration": 7.0 + } + }, + { + "required_game_stage": "expert", + "chance": 0.5, + "is_scaled_by_crd": true, + "entity_type": "minecraft:slime", + "effect": { + "id": "minecraft:slowness", + "amplifier": 0, + "duration": 7.0 + } + }, + { + "required_game_stage": "master", + "chance": 0.5, + "is_scaled_by_crd": true, + "entity_type": "minecraft:shulker", + "effect": { + "id": "minecraft:blindness", + "amplifier": 0, + "duration": 7.0 + } + }, + { + "required_game_stage": "master", + "chance": 0.75, + "is_scaled_by_crd": true, + "entity_type": "minecraft:phantom", + "effect": { + "id": "minecraft:levitation", + "amplifier": 0, + "duration": 7.0 + } + } + ], + "mobs_spawn_stronger": { + "is_enabled": true, + "health_bonus": { + "__default": 0.0, + "expert": 0.15, + "master": 0.3 + }, + "damage_bonus": { + "__default": 0.0, + "expert": 0.1, + "master": 0.2 + }, + "excluded_mobs": [] + }, + "pillager_with_fireworks": { + "is_enabled": true, + "required_game_stage": "master", + "chance": 0.15, + "is_scaled_by_crd": true, + "crossbow_multishot_chance": 0.25, + "firework_drop_chance": 0.25, + "firework_count": 8 + }, + "spawn_blocker": { + "forbidden_entities": { + "__default": [ + "majruszsdifficulty:illusioner", + "majruszsdifficulty:tank", + "majruszsdifficulty:cerberus" + ], + "expert": [ + "majruszsdifficulty:cerberus" + ], + "master": [] + } + }, + "spawn_killer_bunny": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 0.1, + "is_scaled_by_crd": true + }, + "spawn_player_zombie": { + "is_enabled": true, + "required_game_stage": "expert", + "chance": 1.0, + "is_scaled_by_crd": false, + "head_chance": 1.0, + "head_drop_chance": 0.1 + }, + "spawn_rate_increaser": { + "is_enabled": true, + "multiplier": { + "__default": 1.0, + "expert": 1.1, + "master": 1.2 + } + } + }, + "blood_moon": { + "is_enabled": false, + "night_trigger_chance": 0.0666, + "spawn_rate_multiplier": 2.0, + "crd_penalty": 0.5 + }, + "undead_army": { + "is_enabled": true, + "reset_all_participants_kills": true, + "wave_duration": 1200.0, + "preparing_duration": 10.0, + "highlight_delay": 300.0, + "extra_size_ratio_per_player": 0.5, + "area_radius": 70, + "kill_requirement": 100, + "kill_requirement_first": 25, + "kill_requirement_warning": 3, + "waves": [ + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_1_mob", + "count": 2 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_1_mob", + "count": 2 + }, + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_1_mob", + "count": 2 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_1_mob", + "count": 2 + } + ], + "game_stage": "normal", + "exp": 8 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob", + "count": 2 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob", + "count": 3 + }, + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob", + "count": 3 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_2_mob", + "count": 2 + } + ], + "game_stage": "normal", + "exp": 16 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_3_mob", + "count": 3 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_3_skeleton", + "count": 3 + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_3_mob", + "count": 3 + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_3_skeleton", + "count": 3 + } + ], + "boss": { + "type": "majruszsdifficulty:tank", + "count": 1 + }, + "game_stage": "normal", + "exp": 24 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 2 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 1 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_skeleton", + "count": 2 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 1 + }, + { + "type": "majruszsdifficulty:tank", + "count": 1 + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 3 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 1 + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_4_skeleton", + "count": 3 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_4_mob", + "count": 1 + } + ], + "game_stage": "expert", + "exp": 32 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_5_mob", + "count": 1 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_5_skeleton", + "count": 1 + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_5_skeleton", + "count": 3 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_5_mob", + "count": 2 + }, + { + "type": "majruszsdifficulty:tank", + "count": 1 + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_5_mob", + "count": 3 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_5_mob", + "count": 2 + } + ], + "boss": { + "type": "majruszsdifficulty:cerberus", + "count": 1 + }, + "game_stage": "expert", + "exp": 40 + }, + { + "mobs": [ + { + "type": "minecraft:zombie", + "equipment": "majruszsdifficulty:undead_army/wave_6_mob", + "count": 1 + }, + { + "type": "minecraft:skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_6_skeleton", + "count": 1 + }, + { + "type": "majruszsdifficulty:tank", + "count": 1 + }, + { + "type": "minecraft:stray", + "equipment": "majruszsdifficulty:undead_army/wave_6_skeleton", + "count": 1 + }, + { + "type": "minecraft:husk", + "equipment": "majruszsdifficulty:undead_army/wave_6_mob", + "count": 1 + }, + { + "type": "minecraft:wither_skeleton", + "equipment": "majruszsdifficulty:undead_army/wave_6_wither_skeleton", + "count": 1 + }, + { + "type": "majruszsdifficulty:cerberus", + "count": 1 + } + ], + "boss": { + "type": "majruszsdifficulty:giant", + "equipment": "majruszsdifficulty:undead_army/wave_6_mob", + "count": 1 + }, + "game_stage": "master", + "exp": 48 + } + ] + }, + "mobs": { + "cursed_armor": { + "item_drop_chance": 0.2, + "custom_name_chance": 0.025, + "custom_names": [ + "Freshah" + ], + "locations": [ + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_dungeon", + "chests": [ + "minecraft:chests/simple_dungeon" + ], + "chance": 0.5 + }, + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_stronghold", + "chests": [ + "minecraft:chests/stronghold_corridor", + "minecraft:chests/stronghold_crossing", + "minecraft:chests/stronghold_library" + ], + "chance": 0.4 + }, + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_portal", + "chests": [ + "minecraft:chests/ruined_portal" + ], + "chance": 1.0 + }, + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_nether", + "chests": [ + "minecraft:chests/bastion_bridge", + "minecraft:chests/bastion_hoglin_stable", + "minecraft:chests/bastion_other", + "minecraft:chests/bastion_treasure", + "minecraft:chests/nether_bridge" + ], + "chance": 0.25 + }, + { + "loot": "majruszsdifficulty:gameplay/cursed_armor_end", + "chests": [ + "minecraft:chests/end_city_treasure" + ], + "chance": 0.5 + } + ] + } + }, + "items": { + "bandage": { + "normal_effects": [ + { + "id": "majruszsdifficulty:glass_regeneration", + "amplifier": 0, + "duration": 20.0 + } + ], + "golden_effects": [ + { + "id": "majruszsdifficulty:glass_regeneration", + "amplifier": 1, + "duration": 20.0 + }, + { + "id": "majruszsdifficulty:bleeding_immunity", + "amplifier": 0, + "duration": 90.0 + } + ] + }, + "evoker_fang_scroll": { + "attack_damage": 12, + "attack_range": { + "min": 8, + "max": 20 + } + }, + "sonic_boom_scroll": { + "attack_damage": 14, + "attack_range": { + "min": 12, + "max": 30 + } + }, + "wither_sword": { + "effect": { + "id": "minecraft:wither", + "amplifier": 1, + "duration": 6.0 + } + } + }, + "bleeding": { + "chance_multiplier_base": 0.09, + "chance_multiplier_per_armor": 0.03, + "chance_multiplier_per_armor_toughness": 0.03, + "is_enabled": true, + "can_be_cured_with_golden_apples": true, + "is_applicable_to_animals": true, + "is_applicable_to_pillagers": true, + "other_applicable_mobs": [ + "minecraft:player", + "minecraft:villager" + ], + "immune_mobs": [ + "minecraft:zombie_horse", + "minecraft:skeleton_horse" + ], + "effect": { + "__default": { + "amplifier": 0, + "duration": 24.0 + }, + "expert": { + "amplifier": 1, + "duration": 24.0 + }, + "master": { + "amplifier": 2, + "duration": 24.0 + } + }, + "sources": { + "arrows": { + "is_enabled": true, + "chance": 0.333 + }, + "bite": { + "is_enabled": true, + "chance": 0.5, + "blacklisted_animals": [ + "minecraft:llama" + ] + }, + "cactus": { + "is_enabled": true, + "chance": 0.5 + }, + "tools": { + "is_enabled": true, + "list": [ + { + "id": "minecraft:trident", + "chance": 0.3, + "enchantments": [ + { + "id": "minecraft:impaling", + "extra_chance_per_level": 0.04 + } + ] + }, + { + "id": "{regex}.*_sword", + "chance": 0.3, + "enchantments": [ + { + "id": "minecraft:sharpness", + "extra_chance_per_level": 0.04 + }, + { + "id": "{regex}(minecraft:smite)|(minecraft:bane_of_arthropods)|(majruszsenchantments:misanthropy)", + "extra_chance_per_level": 0.02 + } + ] + }, + { + "id": "{regex}.*_axe", + "chance": 0.26, + "enchantments": [ + { + "id": "minecraft:sharpness", + "extra_chance_per_level": 0.04 + }, + { + "id": "{regex}(minecraft:smite)|(minecraft:bane_of_arthropods)|(majruszsenchantments:misanthropy)", + "extra_chance_per_level": 0.02 + } + ] + }, + { + "id": "{regex}(.*_pickaxe)|minecraft:shears", + "chance": 0.22, + "enchantments": [] + }, + { + "id": "{regex}.*_shovel", + "chance": 0.18, + "enchantments": [] + }, + { + "id": "{regex}.*_hoe", + "chance": 0.14, + "enchantments": [] + } + ] + } + } + } +} \ No newline at end of file diff --git a/minecraft/config/majruszsenchantments.json b/minecraft/config/majruszsenchantments.json new file mode 100644 index 0000000..48acbf0 --- /dev/null +++ b/minecraft/config/majruszsenchantments.json @@ -0,0 +1,142 @@ +{ + "is_shield_enchantable": true, + "is_horse_armor_enchantable": true, + "enchantments": { + "death_wish": { + "is_enabled": true, + "damage_multiplier_range": { + "min": 1.0, + "max": 2.0 + }, + "vulnerability_multiplier_range": { + "min": 0.7, + "max": 1.2 + } + }, + "dodge": { + "is_enabled": true, + "dodge_chance_per_level": 0.125 + }, + "enlightenment": { + "is_enabled": true, + "experience_multiplier_per_level": 0.125 + }, + "fishing_fanatic": { + "is_enabled": true, + "extra_loot_chance": 0.33333, + "level_up_chance": { + "__default": 0.06, + "level_2": 0.05, + "level_3": 0.04, + "level_4": 0.03, + "level_5": 0.02, + "level_6": 0.01, + "level_7": 0.004, + "level_8": 0.002 + }, + "level_up_chance_rain_multiplier": 2.0, + "special_drop_chance": { + "__default": 0.0, + "level_4": 0.0025, + "level_5": 0.0075, + "level_6": 0.02, + "level_7": 0.04, + "level_8": 0.06 + }, + "special_drop_id": "majruszsenchantments:gameplay/fishing/fishing_fanatic_extra", + "damage_bonus_per_level": 1.0, + "attack_speed_multiplier_per_level": 0.82 + }, + "fuse_cutter": { + "is_enabled": true, + "max_distance": 6.0, + "shield_cooldown_ratio": 1.5 + }, + "gold_fuelled": { + "is_enabled": true + }, + "harvester": { + "is_enabled": true + }, + "horse_frost_walker": { + "is_enabled": true + }, + "horse_protection": { + "is_enabled": true, + "armor_bonus_per_level": 2.0 + }, + "horse_swiftness": { + "is_enabled": true, + "speed_multiplier_per_level": 0.125 + }, + "hunter": { + "is_enabled": true, + "penalty_multiplier_per_level": -0.1, + "distance_multiplier_per_level": 0.01 + }, + "immortality": { + "is_enabled": true + }, + "leech": { + "is_enabled": true, + "health_chance": 0.1, + "hunger_chance": 0.1, + "effect_chance": 0.1 + }, + "magic_protection": { + "is_enabled": true + }, + "misanthropy": { + "is_enabled": true, + "damage_bonus_per_level": 2.5 + }, + "repulsion": { + "is_enabled": true, + "knockback_strength": 1.0 + }, + "sixth_sense": { + "is_enabled": true, + "glow_duration": 2.0, + "chest_ids": [ + "minecraft:chests/ancient_city", + "minecraft:chests/ancient_city_ice_box" + ], + "loot_id": "majruszsenchantments:chests/ancient_city_sixth_sense" + }, + "smelter": { + "is_enabled": true + }, + "telekinesis": { + "is_enabled": true + } + }, + "curses": { + "breaking_curse": { + "is_enabled": true, + "damage_multiplier_per_level": 1.0 + }, + "corrosion_curse": { + "is_enabled": true, + "damage_dealt_per_level": 0.25, + "damage_cooldown": 3.0 + }, + "fatigue_curse": { + "is_enabled": true, + "speed_multiplier_per_level": { + "mining": 0.8, + "attacking": 0.8, + "moving": 0.95, + "item_using": 0.8, + "item_swinging": 0.8 + } + }, + "incompatibility_curse": { + "is_enabled": true + }, + "slippery_curse": { + "is_enabled": true, + "drop_chance": 0.03, + "drop_cooldown": 1.0 + } + } +} \ No newline at end of file diff --git a/minecraft/config/malum-client.toml b/minecraft/config/malum-client.toml new file mode 100644 index 0000000..0fbe66a --- /dev/null +++ b/minecraft/config/malum-client.toml @@ -0,0 +1,8 @@ + +[codex] + #What theme should the encyclopedia arcana be in? + #Allowed Values: DEFAULT, EASY_READING + bookTheme = "DEFAULT" + #Should the scroll direction be reversed in the encyclopedia arcana entry screen? This simply affects how you move through pages in an entry. + scrollDirection = false + diff --git a/minecraft/config/malum-common.toml b/minecraft/config/malum-common.toml new file mode 100644 index 0000000..19ed52f --- /dev/null +++ b/minecraft/config/malum-common.toml @@ -0,0 +1,39 @@ + +[spirit] + #If set to true, any spirits dropped will simply take the form of an item. + noFancySpirits = false + #If set to true, any spirits dropped through non-entity-means will simply take the form of an item. + noFancySpiritsTotem = true + + [spirit.affinity] + + [spirit.affinity.soul_ward] + #Multiplier for physical damage taken while soul ward is active. + #Range: 0.0 ~ 1.0 + soulWardPhysical = 0.699999988079071 + #Multiplier for magic damage taken while soul ward is active. + #Range: 0.0 ~ 1.0 + soulWardMagic = 0.10000000149011612 + #Base time in ticks it takes for one point of soul ward to recover. + soulWardRate = 100 + + [spirit.spawner] + #If set to true, mob spawners will create soulless mobs instead. + lameSpawners = false + + [spirit.defaults] + #Whether entities without spirit jsons will use the default spirit data for their category. + defaultSpiritValues = true + +[compat] + + [compat.irons_spellbooks] + #Should Iron's Spellbooks' magic damage count as Soul Damage? + ironsSpellbooksPlayerSpiritDrops = true + #Should Iron's Spellbooks' magic damage when dealt by non-players count as Soul Damage + ironsSpellbooksNonPlayerSpiritDrops = true + +[codex] + #If set to true, the first undead enemy a player slays will drop the encyclopedia arcana. + enableCodexDrop = true + diff --git a/minecraft/config/mantle-client.toml b/minecraft/config/mantle-client.toml index ba29ec0..585058c 100644 --- a/minecraft/config/mantle-client.toml +++ b/minecraft/config/mantle-client.toml @@ -1,11 +1,11 @@ -#If not DISABLE, enables the Mantle heart renderer, which stacks hearts by changing the color instead of vertically stacking them. -#WITH_MAX will show the max health in colored containers behind the health bar. NO_MAX will show just the health bar -#If DISABLE, uses the Forge heart renderer. -#Mod authors: this config is not meant for compatibility with your heart renderer, cancel the RenderGameOverlayEvent.Pre event and our logic won't run -#Allowed Values: DISABLE, NO_MAX, WITH_MAX -heartRenderer = "WITH_MAX" -#If true, fluids properly have their lighting adjusted under vanilla fog effects such as blindness. If false, they render as nearly fullbright ignoring fog. -#This config option is provided as the fix breaks shaders, and slightly broken is better than fully broken. -#Best fix is to fix your shaders though, so you can have no broken visuals. -enableFluidFogFix = true - +#If not DISABLE, enables the Mantle heart renderer, which stacks hearts by changing the color instead of vertically stacking them. +#WITH_MAX will show the max health in colored containers behind the health bar. NO_MAX will show just the health bar +#If DISABLE, uses the Forge heart renderer. +#Mod authors: this config is not meant for compatibility with your heart renderer, cancel the RenderGameOverlayEvent.Pre event and our logic won't run +#Allowed Values: DISABLE, NO_MAX, WITH_MAX +heartRenderer = "WITH_MAX" +#If true, fluids properly have their lighting adjusted under vanilla fog effects such as blindness. If false, they render as nearly fullbright ignoring fog. +#This config option is provided as the fix breaks shaders, and slightly broken is better than fully broken. +#Best fix is to fix your shaders though, so you can have no broken visuals. +enableFluidFogFix = true + diff --git a/minecraft/config/matc-client.toml b/minecraft/config/matc-client.toml new file mode 100644 index 0000000..07c87ec --- /dev/null +++ b/minecraft/config/matc-client.toml @@ -0,0 +1,11 @@ + +#Whether or not crystals should display 'Uses Left' tooltips +["Uses Left Tooltips"] + #Should crystals display 'Uses Left' on their tooltips? + usesTooltip = true + +#Whether or not crystals should display their upgrade tooltips +["Upgrade Tooltips"] + #Should crystals display upgrade tooltips? + upgradeTooltip = true + diff --git a/minecraft/config/mcjtylib-client.toml b/minecraft/config/mcjtylib-client.toml new file mode 100644 index 0000000..1ff0ea1 --- /dev/null +++ b/minecraft/config/mcjtylib-client.toml @@ -0,0 +1,144 @@ + +#Style settings for all mods using mcjtylib +[style] + #Color: slider top left border + colorSliderTopLeft = "2b2b2b" + #Color: slider bottom right border + colorSliderBottomRight = "ffffff" + #Color: slider background + colorSliderFiller = "636363" + #Color: slider knob top left border + colorSliderKnobTopLeft = "eeeeee" + #Color: slider knob bottom right border + colorSliderKnobBottomRight = "333333" + #Color: slider knob background + colorSliderKnobFiller = "8b8b8b" + #Color: slider knob top left border while dragging + colorSliderKnobDraggingTopLeft = "5c669d" + #Color: slider knob bottom right border while dragging + colorSliderKnobDraggingBottomRight = "bcc5ff" + #Color: slider knob background while dragging + colorSliderKnobDraggingFiller = "7f89bf" + #Color: slider knob top left border while hovering + colorSliderKnobHoveringTopLeft = "a5aac5" + #Color: slider knob bottom right border while hovering + colorSliderKnobHoveringBottomRight = "777c99" + #Color: slider knob background while hovering + colorSliderKnobHoveringFiller = "858aa5" + #Color: slider knob little marker lines + colorSliderKnobMarkerLine = "4e4e4e" + #Color: text normal + colorTextNormal = "303030" + #Color: text as used in lists + colorTextInListNormal = "151515" + #Color: text disabled + colorTextDisabled = "a0a0a0" + #Color: textfield top left border + colorTextFieldTopLeft = "2b2b2b" + #Color: textfield bottom right border + colorTextFieldBottomRight = "ffffff" + #Color: textfield background + colorTextFieldFiller = "c6c6c6" + #Color: textfield backbground while focused + colorTextFieldFocusedFiller = "eeeeee" + #Color: textfield backbground while hovering + colorTextFieldHoveringFiller = "dadada" + #Color: textfield cursor + colorTextFieldCursor = "0" + #Color: energy bar top left border + colorEnergyBarTopLeft = "2b2b2b" + #Color: energy bar bottom right border + colorEnergyBarBottomRight = "ffffff" + #Color: energy bar high energy level + colorEnergyBarHighEnergy = "dd0000" + #Color: energy bar low energy level + colorEnergyBarLowEnergy = "631111" + #Color: energy bar spacer (between every energy level bar) + colorEnergyBarSpacer = "430000" + #Color: energy bar text + colorEnergyBarText = "ffffff" + #Color: list background + colorListBackground = "8b8b8b" + #Color: list separator line + colorListSeparatorLine = "5c5c5c" + #Color: list selected and highlighted gradient + colorListSelectedHighlightedGradient1 = "bbbb00" + #Color: list selected and highlighted gradient + colorListSelectedHighlightedGradient2 = "999900" + #Color: list selected gradient + colorListSelectedGradient1 = "616161" + #Color: list selected gradient + colorListSelectedGradient2 = "414141" + #Color: list highlighted gradient + colorListHighlightedGradient1 = "717120" + #Color: list highlighted gradient + colorListHighlightedGradient2 = "515110" + #Color: standard bevel bright border color + colorBackgroundBevelBright = "ffffff" + #Color: standard bevel dark border color + colorBackgroundBevelDark = "2b2b2b" + #Color: standard background color + colorBackgroundFiller = "c6c6c6" + #Color: toggle button normal top left border + colorToggleNormalBorderTopLeft = "eeeeee" + #Color: toggle button normal bottom right border + colorToggleNormalBorderBottomRight = "777777" + #Color: toggle button normal background + colorToggleNormalFiller = "c6c6c6" + #Color: toggle button disabled top left border + colorToggleDisabledBorderTopLeft = "eeeeee" + #Color: toggle button disabled bottom right border + colorToggleDisabledBorderBottomRight = "777777" + #Color: toggle button disabled background + colorToggleDisabledFiller = "c6c6c6" + #Color: toggle button normal text + colorToggleTextNormal = "303030" + #Color: toggle button disabled text + colorToggleTextDisabled = "a0a0a0" + #Color: cycle button small triangle + colorCycleButtonTriangleNormal = "0" + #Color: cycle button disabled small triangle + colorCycleButtonTriangleDisabled = "888888" + #Color: external border around buttons and some other components + colorButtonExternalBorder = "0" + #Color: button top left border + colorButtonBorderTopLeft = "eeeeee" + #Color: button bottom right border + colorButtonBorderBottomRight = "777777" + #Color: button background + colorButtonFiller = "c6c6c6" + #Color: button background gradient + colorButtonFillerGradient1 = "b1b1b1" + #Color: button background gradient + colorButtonFillerGradient2 = "e1e1e1" + #Color: disabled button top left border + colorButtonDisabledBorderTopLeft = "eeeeee" + #Color: disabled button bottom right border + colorButtonDisabledBorderBottomRight = "777777" + #Color: disabled button background + colorButtonDisabledFiller = "c6c6c6" + #Color: disabled button background gradient + colorButtonDisabledFillerGradient1 = "b1b1b1" + #Color: disabled button background gradient + colorButtonDisabledFillerGradient2 = "e1e1e1" + #Color: selected button top left border + colorButtonSelectedBorderTopLeft = "5c669d" + #Color: selected button bottom right border + colorButtonSelectedBorderBottomRight = "bcc5ff" + #Color: selected button background + colorButtonSelectedFiller = "7f89bf" + #Color: selected button background gradient + colorButtonSelectedFillerGradient1 = "6a74aa" + #Color: selected button background gradient + colorButtonSelectedFillerGradient2 = "949ed4" + #Color: hovering button top left border + colorButtonHoveringBorderTopLeft = "a5aac5" + #Color: hovering button bottom right border + colorButtonHoveringBorderBottomRight = "999ebb" + #Color: hovering button background + colorButtonHoveringFiller = "a2a7c2" + #Color: hovering button background gradient + colorButtonHoveringFillerGradient1 = "8d92ad" + #Color: hovering button background gradient + colorButtonHoveringFillerGradient2 = "babfda" + diff --git a/minecraft/config/meadow.toml b/minecraft/config/meadow.toml index 52e7d8f..470675b 100644 --- a/minecraft/config/meadow.toml +++ b/minecraft/config/meadow.toml @@ -1,9 +1,9 @@ - -[Blocks] - - [Blocks.Banner] - #Set to false to disable the banner's effect. - giveEffect = true - #Set to false to hide the banner's tooltip. If giveEffect is false, showTooltip is automatically false. - showTooltip = true - + +[Blocks] + + [Blocks.Banner] + #Set to false to disable the banner's effect. + giveEffect = true + #Set to false to hide the banner's tooltip. If giveEffect is false, showTooltip is automatically false. + showTooltip = true + diff --git a/minecraft/config/measurements-client.toml b/minecraft/config/measurements-client.toml index 9aaaf7b..e4bea32 100644 --- a/minecraft/config/measurements-client.toml +++ b/minecraft/config/measurements-client.toml @@ -1,19 +1,19 @@ - -#Client settings -[client] - #Set line color. [Default: YELLOW] - #Allowed Values: RANDOM, WHITE, ORANGE, MAGENTA, LIGHT_BLUE, YELLOW, LIME, PINK, GRAY, LIGHT_GRAY, CYAN, PURPLE, BLUE, BROWN, GREEN, RED, BLACK - lineColor = "YELLOW" - #Set text color. [Default: YELLOW] - #Allowed Values: RANDOM, XYZRGB, WHITE, ORANGE, MAGENTA, LIGHT_BLUE, YELLOW, LIME, PINK, GRAY, LIGHT_GRAY, CYAN, PURPLE, BLUE, BROWN, GREEN, RED, BLACK - textColor = "YELLOW" - #Set text size [Default: 0.02] - #Range: 0.01 ~ 0.1 - textSize = 0.02 - #Set line width (thickness). [Default: 2] - #Range: 1.0 ~ 16.0 - lineWidth = 2.0 - #Set line width when further away (thickness). [Default: 2] - #Range: 1 ~ 16 - lineWidthMax = 2 - + +#Client settings +[client] + #Set line color. [Default: YELLOW] + #Allowed Values: RANDOM, WHITE, ORANGE, MAGENTA, LIGHT_BLUE, YELLOW, LIME, PINK, GRAY, LIGHT_GRAY, CYAN, PURPLE, BLUE, BROWN, GREEN, RED, BLACK + lineColor = "YELLOW" + #Set text color. [Default: YELLOW] + #Allowed Values: RANDOM, XYZRGB, WHITE, ORANGE, MAGENTA, LIGHT_BLUE, YELLOW, LIME, PINK, GRAY, LIGHT_GRAY, CYAN, PURPLE, BLUE, BROWN, GREEN, RED, BLACK + textColor = "YELLOW" + #Set text size [Default: 0.02] + #Range: 0.01 ~ 0.1 + textSize = 0.02 + #Set line width (thickness). [Default: 2] + #Range: 1.0 ~ 16.0 + lineWidth = 2.0 + #Set line width when further away (thickness). [Default: 2] + #Range: 1 ~ 16 + lineWidthMax = 2 + diff --git a/minecraft/config/mekanismcovers.json b/minecraft/config/mekanismcovers.json new file mode 100644 index 0000000..65eda40 --- /dev/null +++ b/minecraft/config/mekanismcovers.json @@ -0,0 +1,4 @@ +{ + "disableAdvancedCoverRendering": false, + "enableShaderCompatibleRendering": true +} \ No newline at end of file diff --git a/minecraft/config/merequester-common.toml b/minecraft/config/merequester-common.toml new file mode 100644 index 0000000..0015dd2 --- /dev/null +++ b/minecraft/config/merequester-common.toml @@ -0,0 +1,11 @@ + +[requester] + #The amount of requests a single ME Requester can hold. + #Range: 1 ~ 64 + requests = 5 + #The amount of energy (in AE) the ME Requester drains from the ME network when idle. + #Range: 0.0 ~ 1.7976931348623157E308 + idle_energy = 5.0 + #Whether the ME Requester requires an ME network channel to function. + require_channel = true + diff --git a/minecraft/config/mffs-client.toml b/minecraft/config/mffs-client.toml new file mode 100644 index 0000000..e7ce299 --- /dev/null +++ b/minecraft/config/mffs-client.toml @@ -0,0 +1,5 @@ + +[general] + #Apply a fancy glitch effect on projector mode renders. Reload resources to apply change. + enableProjectorModeGlitch = true + diff --git a/minecraft/config/mffs-common.toml b/minecraft/config/mffs-common.toml new file mode 100644 index 0000000..184fafc --- /dev/null +++ b/minecraft/config/mffs-common.toml @@ -0,0 +1,44 @@ + +[general] + #Turning this to false will make MFFS run without electricity or energy systems required. Great for vanilla! + enableElectricity = true + #Cache allows temporary data saving to decrease calculations required + useCache = true + #How many force field blocks can be generated per tick? Less reduces lag. + #Range: > 0 + maxFFGenPerTick = 1000000 + #Allow server operators to bypass Force Field biometry + allowOpBiometryOverride = true + #Should the interdiction matrix interact with creative players? + interactCreative = true + #Max custom mode field scale + #Range: > 0 + maxCustomModeScale = 200 + #Give players a copy of the MFFS guidebook when they first join a world + giveGuidebookOnFirstJoin = true + +[coercion_deriver] + #FE to convert into 1 Fortron + #Range: > 1 + feCostPerFortron = 400 + #FE to subtract when converting Fortron to FE + #Range: > 0 + fortronToFeLoss = 1 + #Base limit of fortron produced per tick (20 per second). Scales with speed modules and catalyst. + #Range: > 1 + fortronPerTick = 200 + #Production bonus per speed module. production = fortronPerTick + (fortronPerTick * speedModuleCount)... or x2 multiplicative + #Range: > 1 + fortronPerTickSpeedModule = 200 + +[balance] + #Fortron catalyst production multiplier + #Range: 0.0 ~ 10000.0 + catalystMultiplier = 2.0 + #The amount of ticks a single catalyst item lasts for + #Range: 1 ~ 10000 + catalystBurnTime = 200 + #Energy to consume when the Interdiction Matrix kills a player + #Range: > 0 + interdictionMatrixKillEnergy = 0 + diff --git a/minecraft/config/minecolonies-client.toml b/minecraft/config/minecolonies-client.toml new file mode 100644 index 0000000..21347d0 --- /dev/null +++ b/minecraft/config/minecolonies-client.toml @@ -0,0 +1,20 @@ + +#All configuration items related to the core gameplay +[gameplay] + #minecolonies.config.enablecitizenvoices.comment [Default: true] + enablecitizenvoices = true + #By default, when placing a schematic near other buildings, the already-placed buildings will show as if they were at level 5 and have a blue outline around them. You can disable that by setting this to false. [Default: true] + neighborbuildingrendering = true + #How close a building needs to be to another to be considered a neighbor, in blocks. -1 = intersecting, 0 = touching [Default: 4, min: -2, max: 16] + #Range: -2 ~ 16 + neighborbuildingrange = 4 + #How close (in blocks) you need to be to see work orders while wearing the Build Goggles. [Default: 50, min: 1, max: 250] + #Range: 1 ~ 250 + buildgogglerange = 50 + #When true, the colony borders shown when holding the build tool will be in the colony's team color. When false, the colony you're inside will be white and any other colony will be red. [Default: true] + colonyteamborders = true + #Should special holiday content be displayed? [Default: true] + holidayfeatures = true + #When true, dyed leather items will show a tooltip so that you know what color to use. [Default: true] + showdyetooltips = true + diff --git a/minecraft/config/minecolonies-common.toml b/minecraft/config/minecolonies-common.toml new file mode 100644 index 0000000..934f30e --- /dev/null +++ b/minecraft/config/minecolonies-common.toml @@ -0,0 +1,11 @@ + +#All configuration items related to the core gameplay +[gameplay] + #Whether to generate supply ships and camps in loot chests. [Default: true] + generatesupplyloot = false + +#All configurations related to the request system +[requestsystem] + #Should the request system show debug information in the debug.log? Useful if malfunctioning. [Default: false] + enabledebuglogging = false + diff --git a/minecraft/config/minecolonies_compatibility-common.toml b/minecraft/config/minecolonies_compatibility-common.toml new file mode 100644 index 0000000..8985855 --- /dev/null +++ b/minecraft/config/minecolonies_compatibility-common.toml @@ -0,0 +1,9 @@ + +[jobs] + + [jobs.ranger] + canUseCrossbow = true + + [jobs.knight] + canUseAxe = true + diff --git a/minecraft/config/minecolonies_tweaks-client.toml b/minecraft/config/minecolonies_tweaks-client.toml new file mode 100644 index 0000000..b49e698 --- /dev/null +++ b/minecraft/config/minecolonies_tweaks-client.toml @@ -0,0 +1,13 @@ + +[gui] + #ESC key allows return to previous window. + #Applies at Hut/Citizen inventory and Recipe Teach window and Hire window. + escToReturn = true + #Add close button what can return previous window. + #Applies at Hut/Citizen inventory and Recipe Teach window. + addCloseButton = false + +[fields] + #Render selected seed item above field's head. + renderSeed = true + diff --git a/minecraft/config/minecolonies_tweaks-common.toml b/minecraft/config/minecolonies_tweaks-common.toml new file mode 100644 index 0000000..6fa77d0 --- /dev/null +++ b/minecraft/config/minecolonies_tweaks-common.toml @@ -0,0 +1,8 @@ + +[buildings] + customCraftingModules = [] + +[worldGens] + #Range: 0.0 ~ 1.0 + emptyColoniesGenerationChance = 1.0 + diff --git a/minecraft/config/minecolonies_tweaks-custom_tools.json b/minecraft/config/minecolonies_tweaks-custom_tools.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/minecolonies_tweaks-custom_tools.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/mininggadgets-client.toml b/minecraft/config/mininggadgets-client.toml new file mode 100644 index 0000000..e69de29 diff --git a/minecraft/config/mininggadgets-common.toml b/minecraft/config/mininggadgets-common.toml new file mode 100644 index 0000000..671f2b2 --- /dev/null +++ b/minecraft/config/mininggadgets-common.toml @@ -0,0 +1,64 @@ + +#Power settings +[power] + + #Mining Gadget Settings + [power.mining_gadget] + #Maximum power for the Mining Gadget + #Range: > 0 + maxPower = 1000000 + #Base cost per block broken + #Range: > 0 + baseCost = 200 + + #Upgrade Cost Settings + [power.upgrades] + #Cost per block for Silk Touch upgrade + #Range: > 0 + upgradeSilkCost = 100 + #Cost per block for Magnet upgrade + #Range: > 0 + upgradeMagnet = 25 + #Cost per block for Void Junk upgrade + #Range: > 0 + upgradeVoid = 10 + #Cost per block for Fortune 1 upgrade + #Range: > 0 + upgradeFortune1 = 30 + #Cost per block for Fortune 2 upgrade + #Range: > 0 + upgradeFortune2 = 60 + #Cost per block for Fortune 3 upgrade + #Range: > 0 + upgradeFortune3 = 100 + #Cost per block for Efficiency 1 upgrade + #Range: > 0 + upgradeEfficiency1 = 10 + #Cost per block for Efficiency 2 upgrade + #Range: > 0 + upgradeEfficiency2 = 20 + #Cost per block for Efficiency 3 upgrade + #Range: > 0 + upgradeEfficiency3 = 30 + #Cost per block for Efficiency 4 upgrade + #Range: > 0 + upgradeEfficiency4 = 40 + #Cost per block for Efficiency 5 upgrade + #Range: > 0 + upgradeEfficiency5 = 50 + #Cost per Light Block placed + #Range: > 0 + upgradeLight = 100 + #Cost per block Frozen + #Range: > 0 + upgradeFreeze = 100 + #Capacity Boost from Battery 1 Upgrade + #Range: > 0 + battery1 = 2000000 + #Capacity Boost from Battery 2 Upgrade + #Range: > 0 + battery2 = 5000000 + #Capacity Boost from Battery 3 Upgrade + #Range: > 0 + battery3 = 10000000 + diff --git a/minecraft/config/misanthropy_ftb_quest_additions-common.toml b/minecraft/config/misanthropy_ftb_quest_additions-common.toml new file mode 100644 index 0000000..7ec596a --- /dev/null +++ b/minecraft/config/misanthropy_ftb_quest_additions-common.toml @@ -0,0 +1,44 @@ + +[quest_description] + #Auto-center all quest description text including headings. + #Can be toggled per-quest in-game with Shift+O while the quest panel is open. + #Default: false (left-aligned) + auto_center_text = true + #Disable rendering of quest subtitles in the View Quest Panel. + #Default: false + disable_quest_subtitle = false + #Convert legacy formatting symbols (like &e, &l) to native section formatting (§e, §l) for centering calculations. + #This ensures that formatting codes are not measured as actual, physical characters by the font renderer. + #Default: true + fix_centering_symbols = true + #A list of Snowee's Text Animator tags to ignore from blockquote parsing. + #Match types: + #1. EXACT match (e.g. '' matches '' literally) + #2. PREFIX match (e.g. '' matches any tag starting with '') + snowee_whitelist = ["", ""] + +[search_styling] + #The spotlight/highlight color around matching quests (HEX format, e.g., #38BDF8 or #8838BDF8). + #Default: #38BDF8 + search_spot_color = "#38BDF8" + #The background color of the chapter panel search bar (HEX format, e.g., #1E1F22 or #881E1F22). + #Default: #1E1F22 + search_bar_background_color = "#1E1F22" + #The border color of the chapter panel search bar (HEX format, e.g., #3A3C43). + #Default: #3A3C43 + search_bar_border_color = "#3A3C43" + #The text color of the chapter panel search bar (HEX format, e.g., #E3E5E8, or leave empty for default color). + #Default: #E3E5E8 + search_bar_text_color = "#E3E5E8" + #The vertical position of the search bar in the chapter list panel. + #Allowed values: top, bottom + #Default: top + search_bar_alignment = "top" + #Whether the search bar should stay pinned at the top/bottom of the panel while scrolling, or scroll along with the list. + #Default: true + pin_search_bar = true + #[BETA] Enable the search bar and matching quest highlights in the chapter panel. + #WARNING: The pinned alignment behaves like an experimental overlay and can cause rendering overlaps/clipping when scrolling. + #Default: true + enable_search_bar = true + diff --git a/minecraft/config/mobtimizations/MobsBlacklist.toml b/minecraft/config/mobtimizations/MobsBlacklist.toml new file mode 100644 index 0000000..618f725 --- /dev/null +++ b/minecraft/config/mobtimizations/MobsBlacklist.toml @@ -0,0 +1,10 @@ + +#General mod settings +[general] + #Mobs to exclude from everything this mod does, so it doesn't change their behavior at all + blacklistMobs = [] + #These are all the mobs from your modpack you can choose from when adding to the blacklist, use this to find the mob you need, then add it to the array for the blacklistMobs config option. + mobsYouCanBlacklist = ["minecraft:allay", "minecraft:axolotl", "minecraft:bat", "minecraft:bee", "minecraft:blaze", "minecraft:camel", "minecraft:cat", "minecraft:cave_spider", "minecraft:chicken", "minecraft:cod", "minecraft:cow", "minecraft:creeper", "minecraft:dolphin", "minecraft:donkey", "minecraft:drowned", "minecraft:elder_guardian", "minecraft:ender_dragon", "minecraft:enderman", "minecraft:endermite", "minecraft:evoker", "minecraft:fox", "minecraft:frog", "minecraft:ghast", "minecraft:giant", "minecraft:glow_squid", "minecraft:goat", "minecraft:guardian", "minecraft:hoglin", "minecraft:horse", "minecraft:husk", "minecraft:illusioner", "minecraft:llama", "minecraft:magma_cube", "minecraft:mooshroom", "minecraft:mule", "minecraft:ocelot", "minecraft:panda", "minecraft:parrot", "minecraft:phantom", "minecraft:pig", "minecraft:piglin", "minecraft:piglin_brute", "minecraft:pillager", "minecraft:polar_bear", "minecraft:pufferfish", "minecraft:rabbit", "minecraft:ravager", "minecraft:salmon", "minecraft:sheep", "minecraft:shulker", "minecraft:silverfish", "minecraft:skeleton", "minecraft:skeleton_horse", "minecraft:slime", "minecraft:sniffer", "minecraft:spider", "minecraft:squid", "minecraft:stray", "minecraft:strider", "minecraft:tadpole", "minecraft:trader_llama", "minecraft:tropical_fish", "minecraft:turtle", "minecraft:vex", "minecraft:vindicator", "minecraft:wandering_trader", "minecraft:warden", "minecraft:witch", "minecraft:wither", "minecraft:wither_skeleton", "minecraft:wolf", "minecraft:zoglin", "minecraft:zombie", "minecraft:zombie_horse", "minecraft:zombie_villager", "minecraft:zombified_piglin"] + #Set the blacklist to behave as a whitelist instead + useBlacklistAsWhitelist = false + diff --git a/minecraft/config/mobtimizations/features-customization.toml b/minecraft/config/mobtimizations/features-customization.toml new file mode 100644 index 0000000..70962a6 --- /dev/null +++ b/minecraft/config/mobtimizations/features-customization.toml @@ -0,0 +1,28 @@ + +#General mod settings +[general] + #Percent chance to run for task: zombie village raid task + #Range: > -2147483648 + zombieVillageRaidPercentChance = 33 + #Percent chance to run for task: zombie seeking turtle eggs to destroy + #Range: > -2147483648 + zombieSearchAndDestroyTurtleEggPercentChance = 0 + #In addition to the timed delay, an additional percent chance to run for task: mob wander pathfinding + #Range: > -2147483648 + mobWanderingPercentChance = 100 + #Delay in ticks between allowed mob wander pathfinds + #Range: > -2147483648 + mobWanderingDelay = 100 + #If not near a player, the delay in ticks between wander pathfinds are multiplied by this amount + #Range: > -2147483648 + mobWanderingReducedRateMultiplier = 6 + #If not near a player, we only allow give the mob this much of a percent chance to search for a target + #Range: > -2147483648 + mobEnemyTargetingReducedRatePercentChance = 10 + #If a mob is at least this far away from a player, additional reduced rates are used for the tasks mentioned in playerProximityReducedRate in features.toml + #Range: > -2147483648 + playerProximityReducedRateRangeCutoff = 12 + #How often in ticks we update our check on how close a mob is to a player + #Range: > -2147483648 + playerProximityReducedRatePlayerScanRate = 40 + diff --git a/minecraft/config/mobtimizations/features.toml b/minecraft/config/mobtimizations/features.toml new file mode 100644 index 0000000..01a90d3 --- /dev/null +++ b/minecraft/config/mobtimizations/features.toml @@ -0,0 +1,20 @@ + +#General mod settings +[general] + #If true, optimizes the expensive zombie village raid task that scans around a lot for villagers, by default cuts the chance to 1/3 + optimizationZombieVillageRaid = true + #If true, optimizes the expensive mob targeting tasks + optimizationMobEnemyTargeting = true + #If true, optimizes the expensive mob wander pathfinding, even more so if far from players + optimizationMobWandering = true + #If true, disables the frequent pathfinds done while already following a path + optimizationMobRepathfinding = true + #If true, optimizes the expensive searching done to find a turtle egg to crush, for zombies/husks, by default fully disabling it + optimizationZombieSearchAndDestroyTurtleEgg = true + #If true, disables the expensive 3x3x3 hazard scanning that is constantly running every tick while path following, for monsters only, your pets are safe + optimizationMonsterHazardAvoidingPathfollowing = true + #Stops expensive overhead added to adding potion effects for non players on the server side + mod_ArmorSetBonuses_fixServerEffectImmunityCheckingOnNonPlayers = true + #If true, wander pathfinding and enemy targeting attempts will be further reduced when far away from players + playerProximityReducedRate = true + diff --git a/minecraft/config/modelfix-client.toml b/minecraft/config/modelfix-client.toml new file mode 100644 index 0000000..19c7058 --- /dev/null +++ b/minecraft/config/modelfix-client.toml @@ -0,0 +1,21 @@ + +[default] + #quad expansion increment. enlarges each quad. Use to hide gaps. Keep both as close to 0 as possible. Note that increasing it to non 0 will slightly increase the amount of quads per item model. Could be an issue with HD texture packs.Try these values: 0.002 or 0.008 + #Range: -0.1 ~ 0.1 + item_quads_expansion = 0.0 + #quad x/y offset. simply put moves the quad toward the center of the item. Use to hide gaps + #Range: -0.1 ~ 0.1 + item_quads_indent = 0.007 + +[mac_os] + #It has been reported that some mac os systems are affected by atlas bleeding so the mod cant apply its main fix by removing atlas shrinking. Instead it can reduce it as much as possible by multiplying it by shrink_value_multiplier + #quad expansion increment. enlarges each quad. Use to hide gaps. Keep both as close to 0 as possible. Note that increasing it to non 0 will slightly increase the amount of quads per item model. Could be an issue with HD texture packs + #Range: -0.1 ~ 0.1 + item_quads_expansion = 0.0 + #quad x/y offset. simply put moves the quad toward the center of the item. Use to hide gaps + #Range: -0.1 ~ 0.1 + item_quads_indent = 0.0099 + #set to 0 for non macos behavior. 1 keeps vanilla behavior to prevent atlas bleeding + #Range: 0.0 ~ 1.0 + shrink_ratio_multiplier = 1.0 + diff --git a/minecraft/config/modernfix-common.toml b/minecraft/config/modernfix-common.toml index 41413ef..30b8bc5 100644 --- a/minecraft/config/modernfix-common.toml +++ b/minecraft/config/modernfix-common.toml @@ -1,3 +1,3 @@ -#These JEI plugins will be loaded on the main thread -blacklist_async_jei_plugins = ["jepb:jei_plugin"] - +#These JEI plugins will be loaded on the main thread +blacklist_async_jei_plugins = ["jepb:jei_plugin"] + diff --git a/minecraft/config/modernfix-mixins.properties b/minecraft/config/modernfix-mixins.properties index 8d26699..d94fef8 100644 --- a/minecraft/config/modernfix-mixins.properties +++ b/minecraft/config/modernfix-mixins.properties @@ -9,12 +9,9 @@ # mixin.perf.dynamic_resources=true # Do not include the #. You may reset to defaults by deleting this file. # -# To enable features that are still in testing, add a line at the bottom setting the stability level: -# stability_level=BETA -# # Available options: # mixin.bugfix.buffer_builder_leak=true # (default) -# mixin.bugfix.chunk_deadlock=false # (overridden for mod compat) +# mixin.bugfix.chunk_deadlock=true # (default) # mixin.bugfix.cofh_core_crash=true # (default) # mixin.bugfix.concurrency=true # (default) # mixin.bugfix.ctm_resourceutil_cme=true # (default) @@ -27,7 +24,7 @@ # mixin.bugfix.missing_block_entities=false # (default) # mixin.bugfix.model_data_manager_cme=true # (default) # mixin.bugfix.packet_leak=false # (default) -# mixin.bugfix.paper_chunk_patches=false # (overridden for mod compat) +# mixin.bugfix.paper_chunk_patches=true # (default) # mixin.bugfix.recipe_book_type_desync=true # (default) # mixin.bugfix.registry_ops_cme=true # (default) # mixin.bugfix.removed_dimensions=true # (default) @@ -61,12 +58,12 @@ # mixin.perf.blast_search_trees.force=false # (default) # mixin.perf.cache_blockstate_cache_arrays=true # (default) # mixin.perf.cache_profile_texture_url=true # (default) -# mixin.perf.cache_strongholds=false # (overridden for mod compat) +# mixin.perf.cache_strongholds=true # (default) # mixin.perf.cache_upgraded_structures=true # (default) # mixin.perf.chunk_meshing=true # (default) # mixin.perf.clear_mixin_classinfo=false # (default) # mixin.perf.compact_bit_storage=true # (default) -# mixin.perf.compact_entity_models=true # (default) +# mixin.perf.compact_entity_models=false # (default) # mixin.perf.compact_imposterprotochunks=true # (default) # mixin.perf.compact_mojang_registries=true # (default) # mixin.perf.compress_unihex_font=true # (default) @@ -77,7 +74,7 @@ # mixin.perf.deduplicate_wall_shapes=true # (default) # mixin.perf.dynamic_dfu=true # (default) # mixin.perf.dynamic_entity_renderers=false # (default) -# mixin.perf.dynamic_languages=true # (default) +# mixin.perf.dynamic_languages=false # (default) # mixin.perf.dynamic_resources=false # (default) # mixin.perf.dynamic_resources.ctm=true # (default) # mixin.perf.dynamic_resources.ldlib=true # (default) @@ -86,10 +83,9 @@ # mixin.perf.fast_forge_dummies=true # (default) # mixin.perf.fast_registry_validation=true # (default) # mixin.perf.faster_capabilities=true # (default) -# mixin.perf.faster_capabilities.bytecode_analysis=true # (default) +# mixin.perf.faster_capabilities.bytecode_analysis=false # (default) # mixin.perf.faster_ingredients=true # (default) # mixin.perf.faster_item_rendering=false # (default) -# mixin.perf.faster_loot_loading=true # (default) # mixin.perf.faster_structure_location=true # (default) # mixin.perf.faster_texture_stitching=true # (default) # mixin.perf.fix_handshake_stall=true # (default) @@ -97,7 +93,7 @@ # mixin.perf.forge_cap_retrieval=true # (default) # mixin.perf.forge_registry_alloc=true # (default) # mixin.perf.forge_registry_lambda=true # (default) -# mixin.perf.ingredient_item_deduplication=true # (default) +# mixin.perf.ingredient_item_deduplication=false # (default) # mixin.perf.kubejs=true # (default) # mixin.perf.lazy_search_tree_registry=true # (default) # mixin.perf.memoize_creative_tab_build=true # (default) @@ -108,7 +104,7 @@ # mixin.perf.patchouli_deduplicate_books=true # (default) # mixin.perf.potential_spawns_alloc=true # (default) # mixin.perf.reduce_blockstate_cache_rebuilds=true # (default) -# mixin.perf.release_protochunks=false # (overridden for mod compat) +# mixin.perf.release_protochunks=true # (default) # mixin.perf.remove_biome_temperature_cache=true # (default) # mixin.perf.remove_spawn_chunks=false # (default) # mixin.perf.resourcefullib_highlight_deduplication=true # (default) @@ -117,12 +113,14 @@ # mixin.perf.state_definition_construct=true # (default) # mixin.perf.suspend_integrated_server_during_load=true # (default) # mixin.perf.tag_id_caching=true # (default) -# mixin.perf.thread_priorities=true # (default) +# mixin.perf.thread_priorities=false # (overridden for mod compat) # mixin.perf.ticking_chunk_alloc=true # (default) # mixin.perf.worldgen_allocation=true # (default) # mixin.safety=true # (default) -# stability_level=GA # (default) # # User overrides go here. -mixin.perf.dynamic_resources=true -mixin.perf.faster_item_rendering=true +mixin.bugfix.packet_leak=true +mixin.perf.clear_mixin_classinfo=true +mixin.perf.deduplicate_climate_parameters=true +mixin.perf.deduplicate_location=true +mixin.perf.ingredient_item_deduplication=true diff --git a/minecraft/config/modonomicon-client.toml b/minecraft/config/modonomicon-client.toml new file mode 100644 index 0000000..9951338 --- /dev/null +++ b/minecraft/config/modonomicon-client.toml @@ -0,0 +1,10 @@ + +#Quality of Life Settings +[qol] + #Enable smooth zoom in book categories + enableSmoothZoom = true + #Enable keeping the last open page stored when closing an entry. Regardless of this setting it will be stored when closing the entire book with Esc. + storeLastOpenPageWhenClosingEntry = false + #If your locale is not supported by the default Modonomicon font, indicated by the book just rendering blocky shapes instead of characters, add your locale to this list to fall back to the builtin Minecraft font. + fontFallbackLocales = ["zh_cn", "ja_jp", "ko_kr"] + diff --git a/minecraft/config/modularrouters-client.toml b/minecraft/config/modularrouters-client.toml new file mode 100644 index 0000000..9d493c9 --- /dev/null +++ b/minecraft/config/modularrouters-client.toml @@ -0,0 +1,16 @@ + +[Misc] + #Should module tooltips always show module settings (without needing to hold Shift)? + alwaysShowSettings = true + #Should module GUI's be tinted according to the module item colour? + moduleGuiBackgroundTint = true + #Should items being transferred be rendered in-world? Looks good, but many items may incur an FPS hit. + renderFlyingItems = true + #When holding an Item Router, should nearby camouflaged routers be highlighted? + heldRouterShowsCamoRouters = true + +[Sound] + #Volume of the bleep played when various operations are done with modules/upgrades/etc. such as binding to an inventory, setting camo... + #Range: 0.0 ~ 2.0 + bleepVolume = 0.5 + diff --git a/minecraft/config/modularrouters-common.toml b/minecraft/config/modularrouters-common.toml new file mode 100644 index 0000000..1fb2116 --- /dev/null +++ b/minecraft/config/modularrouters-common.toml @@ -0,0 +1,167 @@ + +[Module] + #Base range for Sender Mk1 (no range upgrades) + #Range: > 1 + sender1BaseRange = 8 + #Max range for Sender Mk1 + #Range: > 1 + sender1MaxRange = 16 + #Base range for Sender Mk2 (no range upgrades) + #Range: > 1 + sender2BaseRange = 24 + #Max range for Sender Mk2 + #Range: > 1 + sender2MaxRange = 48 + #Base range for Vacuum (no range upgrades) + #Range: > 1 + vacuumBaseRange = 6 + #Max range for Vacuum + #Range: > 1 + vacuumMaxRange = 12 + #Base range for Extruder Mk1 (no range upgrades) + #Range: > 1 + extruder1BaseRange = 16 + #Max range for Extruder Mk1 + #Range: > 1 + extruder1MaxRange = 32 + #Base range for Extruder Mk2 (no range upgrades) + #Range: > 1 + extruder2BaseRange = 32 + #Max range for Extruder Mk2 + #Range: > 1 + extruder2MaxRange = 64 + #Base range for Puller Mk2 (no range upgrades) + #Range: > 1 + puller2BaseRange = 12 + #Max range for Puller Mk2 + #Range: > 1 + puller2MaxRange = 24 + #Base range for Fluid Mk2 (no range upgrades) + #Range: > 1 + fluid2BaseRange = 12 + #Max range for Fluid Mk2 + #Range: > 1 + fluid2MaxRange = 24 + #Should Sender modules show particle effects when working? + senderParticles = true + #Should Puller modules show particle effects when working? + pullerParticles = true + #Should Placer modules show particle effects when working? + placerParticles = true + #Should Breaker modules show particle effects when working? + breakerParticles = true + #Should Vacuum modules show particle effects when working? + vacuumParticles = true + #Should Flinger modules show smoke effects & play a sound when working? + flingerEffects = true + #Should Extruder Mk1/2 modules play a sound when placing/removing blocks? + extruderSound = true + #Should Extruder Mk1/2 modules push entities along when extruding blocks? + extruderPushEntities = true + #Should Breaker & Extruder Mk1 Modules respect the harvest level of the pickaxe used to craft them? (e.g. craft with an Iron Pickaxe => can't break Obsidian + breakerHarvestLevelLimit = true + #Dimension ID's which the Sender Mk3 cannot send to or from, and the Player Module cannot operate (both router dimension and player dimension are checked). This can be wildcarded, e.g. 'somemod:*' blacklists all dimensions added by the mod 'somemod' + dimensionBlacklist = [] + +[Router] + #Base tick interval (in server ticks) for a router; router will run this often + #Range: > 1 + baseTickRate = 20 + #Number of ticks by which 1 Speed Upgrade will reduce the router's tick interval + #Range: > 1 + ticksPerUpgrade = 2 + #Hard minimum tick interval for a router regardless of Speed Upgrades + #Range: > 1 + hardMinTickRate = 2 + #Router with eco mode enabled will go into low-power mode if idle for this many server ticks + #Range: > 1 + ecoTimeout = 100 + #Tick interval for an eco-mode router which has gone into low-power mode + #Range: > 1 + lowPowerTickRate = 100 + #Base fluid transfer rate (mB/t in each direction) for a router + #Range: > 1 + fluidBaseTransferRate = 50 + #Max fluid transfer rate (mB/t in each direction) for a router + #Range: > 1 + fluidMaxTransferRate = 400 + #Fluid transfer rate increase per Fluid Transfer Upgrade + #Range: > 1 + mBperFluidUpgade = 10 + #FE capacity per Energy Upgrade + #Range: > 1 + fePerEnergyUpgrade = 50000 + #FE transfer rate (FE/t) per Energy Upgrade + #Range: > 1 + feXferPerEnergyUpgrade = 1000 + #Should block-breaking modules drop XP where appropriate? (ore mining etc.) + blockBreakXPDrops = true + +["Energy Costs"] + #Energy cost (FE) to run one right-click operation for the Activator Module + #Range: > 0 + activatorModuleEnergyCost = 0 + #Energy cost (FE) to run one left-click (attack) operation for the Activator Module + #Range: > 0 + activatorModuleEnergyCostAttack = 150 + #Energy cost (FE) to run one operation for the Breaker Module + #Range: > 0 + breakerModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Detector Module + #Range: > 0 + detectorModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Distributor Module + #Range: > 0 + distributorModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Dropper Module + #Range: > 0 + dropperModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Energy Distributor Module + #Range: > 0 + energydistributorModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Energy Output Module + #Range: > 0 + energyoutputModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Extruder Module Mk1 + #Range: > 0 + extruderModule1EnergyCost = 0 + #Energy cost (FE) to run one operation for the Extruder Module Mk2 + #Range: > 0 + extruderModule2EnergyCost = 0 + #Energy cost (FE) to run one operation for the Flinger Module + #Range: > 0 + flingerModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Fluid Module Mk1 + #Range: > 0 + fluidModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Fluid Module Mk2 + #Range: > 0 + fluidModule2EnergyCost = 0 + #Energy cost (FE) to run one operation for the Placer Module + #Range: > 0 + placerModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Player Module + #Range: > 0 + playerModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Puller Module Mk1 + #Range: > 0 + pullerModule1EnergyCost = 0 + #Energy cost (FE) to run one operation for the Puller Module Mk2 + #Range: > 0 + pullerModule2EnergyCost = 0 + #Energy cost (FE) to run one operation for the Sender Module Mk1 + #Range: > 0 + senderModule1EnergyCost = 0 + #Energy cost (FE) to run one operation for the Sender Module Mk2 + #Range: > 0 + senderModule2EnergyCost = 0 + #Energy cost (FE) to run one operation for the Sender Module Mk3 + #Range: > 0 + senderModule3EnergyCost = 0 + #Energy cost (FE) to run one operation for the Vacuum Module + #Range: > 0 + vacuumModuleEnergyCost = 0 + #Energy cost (FE) to run one operation for the Void Module + #Range: > 0 + voidModuleEnergyCost = 0 + diff --git a/minecraft/config/monolib-common.toml b/minecraft/config/monolib-common.toml new file mode 100644 index 0000000..4af3438 --- /dev/null +++ b/minecraft/config/monolib-common.toml @@ -0,0 +1,7 @@ +# enable_debugging permits more console logs, default = false +enable_debugging = false + +# enable_jar_verification checks installed jar files against mod reposting websites, default = true +enable_jar_verification = true + + diff --git a/minecraft/config/monolib-server.json b/minecraft/config/monolib-server.json new file mode 100644 index 0000000..14428bb --- /dev/null +++ b/minecraft/config/monolib-server.json @@ -0,0 +1,4 @@ +{ + "verifyModFilenames": true, + "additionalDebugLogs": false +} \ No newline at end of file diff --git a/minecraft/config/moonlight-client.toml b/minecraft/config/moonlight-client.toml index 4653f82..ddf9f3b 100644 --- a/minecraft/config/moonlight-client.toml +++ b/minecraft/config/moonlight-client.toml @@ -1,13 +1,13 @@ - -[general] - #Merge all dynamic resource packs from all mods that use this library into a single pack - merge_dynamic_resource_packs = true - #Prevents map texture from being upladed to GPU when only map markers have changed.Could increase performance - lazy_map_upload = true - #Renders map textures using mipmap. Vastly improves look from afar as well when inside a Map Atlas from Map Atlases or similar. Set to 0 to have no mipmap like vanilla - #Range: 0 ~ 4 - maps_mipmap = 3 - #Fix minecraft entity shading to be exactly the same that blocks use. (1 for up,0.8 for north, 0.6 for west and 0.5 for down).This means that if you have a model and render it with a tile renderer or entity it will appear identical as one rendered via baked models.Using no gui will prevent it from changing item rendered in GUIs, in case you dont like that look.Note there is a known compat issue with Figura mod. Keep this True or False with that one - #Allowed Values: FALSE, NO_GUI, TRUE - consistent_entity_renderer_shading = "NO_GUI" - + +[general] + #Merge all dynamic resource packs from all mods that use this library into a single pack + merge_dynamic_resource_packs = true + #Prevents map texture from being upladed to GPU when only map markers have changed.Could increase performance + lazy_map_upload = true + #Renders map textures using mipmap. Vastly improves look from afar as well when inside a Map Atlas from Map Atlases or similar. Set to 0 to have no mipmap like vanilla + #Range: 0 ~ 4 + maps_mipmap = 3 + #Fix minecraft entity shading to be exactly the same that blocks use. (1 for up,0.8 for north, 0.6 for west and 0.5 for down).This means that if you have a model and render it with a tile renderer or entity it will appear identical as one rendered via baked models.Using no gui will prevent it from changing item rendered in GUIs, in case you dont like that look.Note there is a known compat issue with Figura mod. Keep this True or False with that one + #Allowed Values: FALSE, NO_GUI, TRUE + consistent_entity_renderer_shading = "NO_GUI" + diff --git a/minecraft/config/moonlight-common.toml b/minecraft/config/moonlight-common.toml index 1719cf0..e63a7af 100644 --- a/minecraft/config/moonlight-common.toml +++ b/minecraft/config/moonlight-common.toml @@ -1,13 +1,13 @@ - -[general] - #Clears dynamic models and textures from the mod dynamic pack once resource reload is done. This can save up some RAM. Turning off if you notice inconsistencies with pack loading - clear_dynamic_resources = false - #Enables multi-threaded generation for dynamic assets (if supported). This could improve performance on systems with more cores available. - multi_threaded_generation = true - #ONLY for debugging purpose. Turns one some debug functionality like more logging or blocktypes_debug.txt, the file can be found in ~/.minecraft/debug/dynamic_registry_dump... - extra_debug = false - #Enable this will list each BlockTypes' Children. The List of BlockTypes' children will be also in the same file via EXTRA_DEBUG. NOTE: To enable this, EXTRA_DEBUG must be enabled, too. - extra_children_debug = false - #Global datapack folder. A folder where you can store and load datapacks for all your worlds automatically. Set to empty string to disable - global_datapacks_folder = "moonlight-global-datapacks" - + +[general] + #Clears dynamic models and textures from the mod dynamic pack once resource reload is done. This can save up some RAM. Turning off if you notice inconsistencies with pack loading + clear_dynamic_resources = false + #Enables multi-threaded generation for dynamic assets (if supported). This could improve performance on systems with more cores available. + multi_threaded_generation = true + #ONLY for debugging purpose. Turns one some debug functionality like more logging or blocktypes_debug.txt, the file can be found in ~/.minecraft/debug/dynamic_registry_dump... + extra_debug = false + #Enable this will list each BlockTypes' Children. The List of BlockTypes' children will be also in the same file via EXTRA_DEBUG. NOTE: To enable this, EXTRA_DEBUG must be enabled, too. + extra_children_debug = false + #Global datapack folder. A folder where you can store and load datapacks for all your worlds automatically. Set to empty string to disable + global_datapacks_folder = "moonlight-global-datapacks" + diff --git a/minecraft/config/moremekanismprocessing-client.toml b/minecraft/config/moremekanismprocessing-client.toml new file mode 100644 index 0000000..d133e1f --- /dev/null +++ b/minecraft/config/moremekanismprocessing-client.toml @@ -0,0 +1,199 @@ + +#color : ores rgb color +[ores] + + [ores.aluminum] + #if empty, use default + #default : a0c4d8 + color = "" + + [ores.amethyst] + #if empty, use default + #default : cc33cc + color = "" + + [ores.apatite] + #if empty, use default + #default : 3595b2 + color = "" + + [ores.azure_silver] + #if empty, use default + #default : ce9cf3 + color = "" + + [ores.bismuth] + #if empty, use default + #default : e8d8e8 + color = "" + + [ores.bort] + #if empty, use default + #default : 7495af + color = "" + + [ores.cinnabar] + #if empty, use default + #default : 990f0f + color = "" + + [ores.cobalt] + #if empty, use default + #default : 1e66bf + color = "" + + [ores.crimson_iron] + #if empty, use default + #default : f44770 + color = "" + + [ores.desh] + #if empty, use default + #default : ff9f51 + color = "" + + [ores.dilithium] + #if empty, use default + #default : d8c4c4 + color = "" + + [ores.draconium] + #if empty, use default + #default : a351cc + color = "" + + [ores.electrotine] + #if empty, use default + #default : cb4f8 + color = "" + + [ores.green_sapphire] + #if empty, use default + #default : 33cc33 + color = "" + + [ores.iridium] + #if empty, use default + #default : d8d8c4 + color = "" + + [ores.lithium] + #if empty, use default + #default : 808080 + color = "" + + [ores.nickel] + #if empty, use default + #default : e5e09e + color = "" + + [ores.niter] + #if empty, use default + #default : b8afaf + color = "" + + [ores.peridot] + #if empty, use default + #default : 66ff66 + color = "" + + [ores.platinum] + #if empty, use default + #default : a0f0ff + color = "" + + [ores.ruby] + #if empty, use default + #default : cc3333 + color = "" + + [ores.sapphire] + #if empty, use default + #default : 3333cc + color = "" + + [ores.ostrum] + #if empty, use default + #default : 9f616f + color = "" + + [ores.calorite] + #if empty, use default + #default : c44249 + color = "" + + [ores.silver] + #if empty, use default + #default : d8e4ed + color = "" + + [ores.sulfur] + #if empty, use default + #default : d8cc51 + color = "" + + [ores.titanium] + #if empty, use default + #default : 405060 + color = "" + + [ores.tungsten] + #if empty, use default + #default : 333333 + color = "" + + [ores.zinc] + #if empty, use default + #default : cccc8e + color = "" + + [ores.coal] + #if empty, use default + #default : 2d2d2d + color = "" + + [ores.lapis] + #if empty, use default + #default : 2c69c8 + color = "" + + [ores.diamond] + #if empty, use default + #default : 49ead6 + color = "" + + [ores.redstone] + #if empty, use default + #default : ff0000 + color = "" + + [ores.emerald] + #if empty, use default + #default : 17da61 + color = "" + + [ores.quartz] + #if empty, use default + #default : ebe3db + color = "" + + [ores.boron] + #if empty, use default + #default : 7c7c7c + color = "" + + [ores.magnesium] + #if empty, use default + #default : e7b9e5 + color = "" + + [ores.thorium] + #if empty, use default + #default : 2e2e2e + color = "" + + [ores.palladium] + #if empty, use default + #default : b4c9c9 + color = "" + diff --git a/minecraft/config/moremekanismprocessing-common.toml b/minecraft/config/moremekanismprocessing-common.toml new file mode 100644 index 0000000..f3978a1 --- /dev/null +++ b/minecraft/config/moremekanismprocessing-common.toml @@ -0,0 +1,202 @@ + +[general] + #true : show all recipes + #false : hide ore not exist recipes (can hide recipes when some mod not installed) + showOreNotExistRecipes = false + +#processingLevel : set ores processing max level +# 5 : can into up x5 (able all procssing) +# 4 : can into up x4 (disable ore dissolution, slurry crystalizing) +# 3 : can into up x3 (disable injecting) +# 2 : can into up x2 (disable purifying and clumps crushing) +# 1 : reserved (currently same with 0) +# 0 : disable all processing in this mod +#disabled processing items are hided your world +[ores] + + [ores.aluminum] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.amethyst] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.apatite] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.azure_silver] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.bismuth] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.bort] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.cinnabar] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.cobalt] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.crimson_iron] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.desh] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.dilithium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.draconium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.electrotine] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.green_sapphire] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.iridium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.lithium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.nickel] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.niter] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.peridot] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.platinum] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.ruby] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.sapphire] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.ostrum] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.calorite] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.silver] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.sulfur] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.titanium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.tungsten] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.zinc] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.coal] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/coal"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.lapis] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/lapis"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.diamond] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/diamond"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.redstone] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/redstone"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.emerald] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/emerald"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.quartz] + #exist for modpacks, set greater than 2 to enable this material recipes + #less than or equals 2 is use Mekanism Default Recipes + # warning : when enabled, ore block can infinitely regenerate using Mekanism Combiner Default Recipe + # propose remove/override Mekanism Combiner Default Recipe + # e.g.) "ingredient":{"tag":"forge:dusts/quartz"}},"amount":8 + #Range: 0 ~ 5 + processingLevel = 0 + + [ores.boron] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.magnesium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.thorium] + #Range: 0 ~ 5 + processingLevel = 5 + + [ores.palladium] + #Range: 0 ~ 5 + processingLevel = 5 + diff --git a/minecraft/config/moreoverlays.toml b/minecraft/config/moreoverlays.toml new file mode 100644 index 0000000..337e130 --- /dev/null +++ b/minecraft/config/moreoverlays.toml @@ -0,0 +1,94 @@ + +#Settings for the light / mobspawn overlay +[lightoverlay] + #Range of the lightoverlay (positive Y) + #Range: > 0 + uprange = 4 + #Range of the lightoverlay (negative Y) + #Range: > 0 + downrange = 16 + #Range of the lightoverlay (Horizontal N,E,S,W) + #Range: > 0 + hrange = 16 + #Ignore if there in no 2 Block space to spawn. (Less lag if true) + ignoreLayer = false + #Ignore if mobs can actually spawn according to other mods and biome spawn lists and just go by light value + ignoreSpawnList = false + #Blocks can allow/disallow spawns for different entity types. The check for this isn't very performat. + #Setting this to true will increase performance but decrease accuracy. + simpleCheck = false + #Minimum save light level where no mobs can spawn + #Range: > 0 + saveLevel = 1 + #Finished 1.18 migration (internal) + finishedMigration = true + #Render light levels as numbers instead of crosses + spawn_numbers = false + #Only update the light scanner every N client ticks/frames. Set to 1 to update every frame (disables throttling). + #Range: > 1 + update_interval_frames = 1 + +#Settings for the chunk bounds overlay +[chunkbounds] + #Radius (in Chunks) to show the edges (red line) + #Range: > 0 + radius = 1 + #Show the middle of the current Chunk (yellow line) + middle = true + +#General render settings. +#Line thickness, Colors, ... +[rendersettings] + #Color for the chunk edge + #Range: 0 ~ 16777215 + chunk_edge_color = 16711680 + #Color for the chunk grid + #Range: 0 ~ 16777215 + chunk_grid_color = 65280 + #Color for the middle chunk line + #Range: 0 ~ 16777215 + chunk_mid_color = 16776960 + #Line width for chunk boundaries + #Range: 0.0 ~ 1.7976931348623157E308 + chunk_line_width = 1.5 + #Color the X that marks "Spawns always possible" + #Range: 0 ~ 16777215 + spawn_always_color = 16711680 + #Color the X that marks "Spawns at night possible" + #Range: 0 ~ 16777215 + spawn_night_color = 16776960 + #Line width for spawn indication + #Range: 0.0 ~ 1.7976931348623157E308 + spawn_line_width = 2.0 + #Use thicker lines for chunk boundaries + chunk_line_thick = false + #Color for the number that marks "No spawns possible" + #Range: 0 ~ 16777215 + spawn_safe_color = 65280 + #Scale/size of the number overlay when enabled (world units) + #Range: 0.005 ~ 0.5 + spawn_number_scale = 0.07 + +#Settings for the search overlay +[searchoverlay] + #Setting this to false this will disable the functionality to double click the JEI search bar for item searching. + search_enabled = true + #Also searches for the custom name of an item in user inventory (for example items named in anvil) + #Setting this to false will increase performance. + custom_search = true + #Also searches the tooltip of items in the users inventory + #Setting this to false will increase performance. + search_tooltip = true + #Maximum amount of search results for the item searching to be active + #Range: > 256 + search_max_results = 16384 + #Color for the search box when double clicked + #Range: 0 ~ 16777215 + search_box_color = 16776960 + #Color of the filtered out slots + #Range: 0 ~ 16777215 + search_slot_color = 0 + #Transparancy for the filtered out slots + #Range: 0.0 ~ 1.0 + search_slot_alpha = 0.5 + diff --git a/minecraft/config/morerelics-client.toml b/minecraft/config/morerelics-client.toml new file mode 100644 index 0000000..a0f9101 --- /dev/null +++ b/minecraft/config/morerelics-client.toml @@ -0,0 +1,14 @@ + +["Weaver's Spool"] + #The corner which the silk bar is rendered at. + #Allowed Values: TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT + silkBarCorner = "BOTTOM_RIGHT" + +[Cyberpsychosis] + #Disguises some passive and neutral mobs as hostile mobs while the Cyberpsychosis effect is active. + cyberpsychosisDisguiseEffect = true + +["Wonder of U"] + #The black and white + outline effect of nullification. + nullificationVisualEffect = true + diff --git a/minecraft/config/morerelics-common.toml b/minecraft/config/morerelics-common.toml new file mode 100644 index 0000000..109eed2 --- /dev/null +++ b/minecraft/config/morerelics-common.toml @@ -0,0 +1,21 @@ + +[VertebraX] + #List of effects which can't be filtered/reduced by vertebrax. + excludedEffects = ["minecraft:levitation"] + #Pairs of effects which will grant the opposite version upon filtration. + #Format: 'modid:original_effect|modid:opposite_effect' Example: minecraft:weakness|minecraft:strength + #You can include modded effects here but first effect should be harmful and second effect should be beneficial or it won't work. + oppositeEffectMappings = ["minecraft:weakness|minecraft:strength", "minecraft:slowness|minecraft:speed", "minecraft:unluck|minecraft:luck", "minecraft:blindness|minecraft:night_vision", "minecraft:mining_fatigue|minecraft:haste", "morerelics:vulnerability|minecraft:resistance"] + +#IMPORTANT, This is not where you change relic stats. +#To do that you need to enable enabledExtendedConfigs in relic.yaml and it will auto generate relic config files in config/morerelics/relics upon running the game once. You can change the values from there. +#Although I DO NOT RECOMMEND doing that because it is a very buggy system. If you enable it, when I update the mod it will still try to fetch values from those files. +#This means when I change stat values those won't affect your game and if I change/add an ability to a relic it will crash with "data is null". +#To fix this you would need to delete the updated relics config file in config/morerelics/relics so it can regenerate correctly on your next launch. +[General] + #The relics included here cannot have multiple copies worn. + #Some relics (e.g. Made in Heaven, Gravitum Gloves) are hardcoded to be that way due to interactions, bugs and cannot be changed. + #This config only works with More Relics relics. + #Format Example:["morerelics:guts_orb","morerelics:mass_gauntlet"] + blockWearingCopies = [] + diff --git a/minecraft/config/morevillagers-common.toml b/minecraft/config/morevillagers-common.toml index ab5199c..2329bc2 100644 --- a/minecraft/config/morevillagers-common.toml +++ b/minecraft/config/morevillagers-common.toml @@ -1,32 +1,32 @@ - -#House generation settings -[houses] - #Should More Villagers houses generate in plains biome villages? - generatePlainsHouses = true - #Should More Villagers houses generate in taiga biome villages? - generateTaigaHouses = true - #Should More Villagers houses generate in savanna biome villages? - generateSavannaHouses = true - #Should More Villagers houses generate in snowy biome villages? - generateSnowyHouses = true - #Should More Villagers houses generate in desert biome villages? - generateDesertHouses = true - - #House weights (spawn frequency) - [houses.weights] - #Woodworker house spawn chance - #Range: > 0 - woodworkerHouseWeight = 10 - #Oceanographer house spawn chance - #Range: > 0 - oceanographerHouseWeight = 10 - #Florist house spawn chance - #Range: > 0 - floristHouseWeight = 10 - #Hunter house spawn chance - #Range: > 0 - hunterHouseWeight = 10 - #Engineer house spawn chance - #Range: > 0 - engineerHouseWeight = 10 - + +#House generation settings +[houses] + #Should More Villagers houses generate in plains biome villages? + generatePlainsHouses = true + #Should More Villagers houses generate in taiga biome villages? + generateTaigaHouses = true + #Should More Villagers houses generate in savanna biome villages? + generateSavannaHouses = true + #Should More Villagers houses generate in snowy biome villages? + generateSnowyHouses = true + #Should More Villagers houses generate in desert biome villages? + generateDesertHouses = true + + #House weights (spawn frequency) + [houses.weights] + #Woodworker house spawn chance + #Range: > 0 + woodworkerHouseWeight = 10 + #Oceanographer house spawn chance + #Range: > 0 + oceanographerHouseWeight = 10 + #Florist house spawn chance + #Range: > 0 + floristHouseWeight = 10 + #Hunter house spawn chance + #Range: > 0 + hunterHouseWeight = 10 + #Engineer house spawn chance + #Range: > 0 + engineerHouseWeight = 10 + diff --git a/minecraft/config/mowziesmobs-client.toml b/minecraft/config/mowziesmobs-client.toml new file mode 100644 index 0000000..520a26a --- /dev/null +++ b/minecraft/config/mowziesmobs-client.toml @@ -0,0 +1,19 @@ + +[client] + #Toggles the lantern glow effect, which may look bad with certain shaders. + glow_effect = true + #Toggles the Umvuthana footprint effects, which may decrease performance. + umvuthana_footprints = true + #Enable camera shaking during certain mob attacks and abilities. + do_camera_shake = true + #Play boss battle themes during boss encounters. + play_boss_music = true + #Use custom boss health bar textures, if the boss has them. + custom_boss_bar = true + #Use custom player animations. + custom_player_anims = true + #Set to true to hide your own 3rd-person player animations while you are in 1st-person view mode. This is useful with mods that render the 3rd-person model in 1st-person, as some of the Mowzie's Mobs 3rd-person animations can block the camera. + hide_player_anims_in_first_person = false + #Play Umvuthana Crane heal sounds. Turn this off if you are experiencing crashes when Cranes appear during Umvuthi's boss battle. + crane_heal_sounds = true + diff --git a/minecraft/config/mowziesmobs-common.toml b/minecraft/config/mowziesmobs-common.toml new file mode 100644 index 0000000..41a4173 --- /dev/null +++ b/minecraft/config/mowziesmobs-common.toml @@ -0,0 +1,816 @@ + +[tools_and_abilities] + #Cost in minutes of using the supernova ability. + #Range: > 0 + supernova_cost = 60 + + [tools_and_abilities.suns_blessing] + #Duration in minutes of the Sun's Blessing effect. + #Range: > 0 + suns_blessing_duration = 60 + #Range: 0.0 ~ 1.7976931348623157E308 + suns_blessing_attack_multiplier = 1.0 + #Cost in minutes of using the solar beam ability. + #Range: > 0 + solar_beam_cost = 5 + + [tools_and_abilities.wrought_helm] + #Set to true for the Wrought Helm to have limited durability. + breakable = false + + [tools_and_abilities.wrought_helm.armor_config] + #Multiply armor damage reduction by this amount. See official Minecraft Wiki for an explanation of how armor damage reduction works. + #Range: 0.0 ~ 1.7976931348623157E308 + damage_reduction_multiplier = 1.0 + #Multiply armor toughness by this amount. See official Minecraft Wiki for an explanation of how armor toughness works. + #Range: 0.0 ~ 1.7976931348623157E308 + toughness_multiplier = 1.0 + + [tools_and_abilities.axe_of_a_thousand_metals] + #Set to true for the Axe of a Thousand Metals to have limited durability. + breakable = false + + [tools_and_abilities.axe_of_a_thousand_metals.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 9.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 0.8999999761581421 + + [tools_and_abilities.sol_visage] + #Set to true for the Sol Visage to have limited durability. + breakable = false + #Maximum number of Umvuthana followers a player can summon at once using the Sol Visage + #Range: 0 ~ 300 + max_followers = 10 + + [tools_and_abilities.sol_visage.armor_config] + #Multiply armor damage reduction by this amount. See official Minecraft Wiki for an explanation of how armor damage reduction works. + #Range: 0.0 ~ 1.7976931348623157E308 + damage_reduction_multiplier = 1.0 + #Multiply armor toughness by this amount. See official Minecraft Wiki for an explanation of how armor toughness works. + #Range: 0.0 ~ 1.7976931348623157E308 + toughness_multiplier = 1.0 + + [tools_and_abilities.ice_crystal] + #Multiply all damage done with the ice crystal by this amount. + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + #Set to true for the ice crystal to have limited durability. + #Prevents regeneration in inventory. + breakable = false + #Ice crystal durability + #Range: > 1 + durability = 600 + #Freeze duration in ticks (applies to frostmaw too!) + #Range: > 1 + freeze_duration = 50 + + [tools_and_abilities.umvuthana_mask] + + [tools_and_abilities.umvuthana_mask.armor_config] + #Multiply armor damage reduction by this amount. See official Minecraft Wiki for an explanation of how armor damage reduction works. + #Range: 0.0 ~ 1.7976931348623157E308 + damage_reduction_multiplier = 1.0 + #Multiply armor toughness by this amount. See official Minecraft Wiki for an explanation of how armor toughness works. + #Range: 0.0 ~ 1.7976931348623157E308 + toughness_multiplier = 1.0 + + [tools_and_abilities.geomancerArmor] + + [tools_and_abilities.geomancerArmor.armor_config] + #Multiply armor damage reduction by this amount. See official Minecraft Wiki for an explanation of how armor damage reduction works. + #Range: 0.0 ~ 1.7976931348623157E308 + damage_reduction_multiplier = 1.0 + #Multiply armor toughness by this amount. See official Minecraft Wiki for an explanation of how armor toughness works. + #Range: 0.0 ~ 1.7976931348623157E308 + toughness_multiplier = 1.0 + + [tools_and_abilities.spear] + + [tools_and_abilities.spear.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 5.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 1.600000023841858 + + [tools_and_abilities.naga_fang_dagger] + #Duration in ticks of the poison effect (20 ticks = 1 second). + #Range: > 0 + poison_duration = 40 + #Damage multiplier when attacking from behind + #Range: 0.0 ~ 1.7976931348623157E308 + backstab_damage_mult = 2.0 + + [tools_and_abilities.naga_fang_dagger.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 3.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 2.0 + + [tools_and_abilities.blowgun] + #Duration in ticks of the poison effect (20 ticks = 1 second). + #Range: > 0 + poison_duration = 40 + #Multiply all damage done with the blowgun/darts by this amount. + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 1.0 + + [tools_and_abilities.earthrend_gauntlet] + #Multiply all damage done with the Earthrend Gauntlet by this amount. + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + #Set to true for the Earthrend Gauntlet to have limited durability. + #Prevents regeneration in inventory. + breakable = false + #Earthrend Gauntlet durability + #Range: > 1 + durability = 400 + #Set to false to disable the Earthrend Gauntlet's tunneling ability. + enable_tunneling = true + + [tools_and_abilities.earthrend_gauntlet.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 6.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 1.2000000476837158 + + [tools_and_abilities.sculptor_staff] + #Multiply all damage done with the Sculptor Staff by this amount. + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [tools_and_abilities.sculptor_staff.tool_config] + #Tool attack damage + #Range: 0.0 ~ 1.7976931348623157E308 + attack_damage = 3.0 + #Tool attack speed + #Range: 0.0 ~ 1.7976931348623157E308 + attack_speed = 1.0 + + [tools_and_abilities.elokosa_paw] + #How long effects inflicted by Elokosa Paws last in ticks + #Range: > 1 + effect_duration = 600 + #How long players must wait between uses of Elokosa Paws in ticks + #Range: > 0 + cooldown = 1800 + #How many times players can use an Elokosa Paw before it breaks + #Range: > 1 + number_of_uses = 3 + +[mobs] + + [mobs.frostmaw] + #Disable/enable Frostmaw's boss health bar + has_boss_bar = true + #Disable/enable frostmaws healing while asleep + heals_out_of_battle = true + #Allow players to steal frostmaws' ice crystals (only using specific means!) + stealable_ice_crystal = true + #Disable/enable frostmaws resetting health when a player respawns nearby. (Prevents respawn cheese!) + reset_health_when_respawn = true + + [mobs.frostmaw.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["forge:is_snowy,!minecraft:is_ocean,!minecraft:is_river,!minecraft:is_beach,!minecraft:is_forest,!minecraft:is_taiga"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for spawning structure/mob with world generation + [mobs.frostmaw.generation_config] + #Smaller number causes more generation, -1 to disable generation + #Maximum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_distance = 25 + #Smaller number causes more generation, -1 to disable generation + #Minimum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_separation = 8 + #Maximum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_max = 100.0 + #Minimum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_min = 50.0 + #Names of structures this mob/structure will avoid when generating. + #NO LONGER USED! USE DATAPACK INSTEAD + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.frostmaw.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.umvuthi] + #Disable/enable Umvuthi's boss health bar + has_boss_bar = true + #Disable/enable Umvuthi healing while not in combat + heals_out_of_battle = true + #Which item Umvuthi desires in exchange for the Sun's Blessing + trade_which_item = "minecraft:gold_block" + #How many of the item Umvuthi desires in exchange for the Sun's Blessing + #Range: 0 ~ 64 + trade_how_many = 7 + #Disable/enable Umvuthi resetting health when a player respawns nearby. (Prevents respawn cheese!) + reset_health_when_respawn = true + #Umvuthi will summon healers whenever he loses this much total health. + #Range: > 0 + spawn_healers_threshold = 45 + + #Generation controls for Umvuthana Groves + [mobs.umvuthi.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_savanna"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for spawning structure/mob with world generation + [mobs.umvuthi.generation_config] + #Smaller number causes more generation, -1 to disable generation + #Maximum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_distance = 25 + #Smaller number causes more generation, -1 to disable generation + #Minimum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_separation = 8 + #Maximum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_max = 100.0 + #Minimum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_min = 50.0 + #Names of structures this mob/structure will avoid when generating. + #NO LONGER USED! USE DATAPACK INSTEAD + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.umvuthi.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.ferrous_wroughtnaut] + #Disable/enable Ferrous Wroughtnaut's boss health bar + has_boss_bar = true + #Disable/enable Ferrous Wroughtnaut healing while not active + heals_out_of_battle = true + #Disable/enable Ferrous Wroughtnaut resetting health when a player respawns nearby. (Prevents respawn cheese!) + reset_health_when_respawn = true + + [mobs.ferrous_wroughtnaut.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["!minecraft:is_ocean"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for spawning structure/mob with world generation + [mobs.ferrous_wroughtnaut.generation_config] + #Smaller number causes more generation, -1 to disable generation + #Maximum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_distance = 15 + #Smaller number causes more generation, -1 to disable generation + #Minimum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_separation = 5 + #Maximum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_max = 50.0 + #Minimum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_min = 20.0 + #Names of structures this mob/structure will avoid when generating. + #NO LONGER USED! USE DATAPACK INSTEAD + avoid_structures = [] + + [mobs.ferrous_wroughtnaut.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.sculptor] + #How tall (in blocks) the Sculptor's test will be + #Range: 1 ~ 500 + test_height = 60 + #The time limit (in seconds) for completing the Sculptor's test + #Range: 1 ~ 36000 + test_time_limit = 400 + #Disable/enable the Sculptor healing while not in combat + heals_out_of_battle = true + #Disable/enable the Sculptor's boss health bar + has_boss_bar = true + #Which item the Sculptor desires in exchange for a chance to try his challenge + trade_which_item = "mowziesmobs:bluff_rod" + #How many of the item the Sculptor desires in exchange for a chance to try his challenge + #Range: 0 ~ 64 + trade_how_many = 1 + #Set to true for the Sculptor to disappear after a player beats the test and claims the reward. + disappear_after_reward = true + + [mobs.sculptor.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["forge:is_peak"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for spawning structure/mob with world generation + [mobs.sculptor.generation_config] + #Smaller number causes more generation, -1 to disable generation + #Maximum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_distance = 25 + #Smaller number causes more generation, -1 to disable generation + #Minimum number of chunks between placements of this mob/structure. + #NO LONGER USED! USE DATAPACK INSTEAD + #Range: > -1 + generation_separation = 8 + #Maximum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_max = 200.0 + #Minimum height for generation placement. -65 to ignore + #Range: -65.0 ~ 256.0 + height_min = 120.0 + #Names of structures this mob/structure will avoid when generating. + #NO LONGER USED! USE DATAPACK INSTEAD + avoid_structures = [] + + [mobs.sculptor.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.grottol] + + [mobs.grottol.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["!forge:is_mushroom"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.grottol.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 2 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 1 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:base_stone_overworld"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = 16 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = -65 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = true + #Names of structures this mob will avoid spawning near. + avoid_structures = [] + + [mobs.grottol.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.lantern] + + [mobs.lantern.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_forest,mowziesmobs:is_magical,!forge:is_snowy"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.lantern.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 5 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 2 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 4 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:leaves", "minecraft:logs"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 60 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = [] + + [mobs.lantern.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.umvuthana] + + #Controls spawning for Umvuthana hunting groups + #Group size controls how many raptors spawn, not followers + #See Umvuthi config for grove structure controls + [mobs.umvuthana.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_savanna"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.umvuthana.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 5 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 1 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:sand"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 60 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = false + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts", "mowziesmobs:umvuthana_groves"] + + [mobs.umvuthana.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.naga] + + [mobs.naga.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_beach,minecraft:is_mountain", "minecraft:is_beach,minecraft:is_hill"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = ["minecraft:stony_shore"] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.naga.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 20 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 2 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:base_stone_overworld"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 68 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = true + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.naga.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.foliaath] + + [mobs.foliaath.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_jungle"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.foliaath.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 70 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 4 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:leaves", "minecraft:logs"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 60 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.foliaath.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.bluff] + + [mobs.bluff.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = [] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.bluff.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 10 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 2 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 3 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = [] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = -65 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = true + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = true + #Names of structures this mob will avoid spawning near. + avoid_structures = [] + + [mobs.bluff.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + + [mobs.Elokosa] + + [mobs.Elokosa.biome_config] + #Mowzie's Mobs bosses cannot generate in modded or non-overworld biomes unless the biome is added to the 'has_structure/has_mowzie_structure' tag via a datapack! + #Each entry is a combination of allowed biome tags or biome names. + #Separate types with commas to require biomes to have all tags in an entry + #Put a '!' before a biome tag to mean NOT that tag + #A blank entry means all biomes. No entries means no biomes. + #For example, 'minecraft:is_forest,forge:is_spooky,!forge:is_snowy' would mean all biomes that are spooky forests but not snowy forests + #'!minecraft:is_mountain' would mean all non-mountain biomes + biome_tags = ["minecraft:is_jungle"] + #Allow spawns in these biomes regardless of the biome tag settings + biome_whitelist = [] + #Prevent spawns in these biomes regardless of the biome tag settings + biome_blacklist = [] + + #Controls for vanilla-style mob spawning + [mobs.Elokosa.spawn_config] + #Smaller number causes less spawning, 0 to disable spawning + #Range: > 0 + spawn_rate = 5 + #Minimum number of mobs that appear in a spawn group + #Range: > 1 + min_group_size = 1 + #Maximum number of mobs that appear in a spawn group + #Range: > 1 + max_group_size = 1 + #Probability of a spawn attempt succeeding. 1 for normal spawning, 0 will prevent spawning. Used to make mobs extra rare. + #Range: 0.0 ~ 1.0 + extra_rarity = 1.0 + #Names of dimensions this mob can spawn in + dimensions = ["minecraft:overworld"] + #Names of blocks this mob is allowed to spawn on. Leave blank to ignore block names. + allowed_blocks = [] + #Tags of blocks this mob is allowed to spawn on. Leave blank to ignore block tags. + allowed_block_tags = ["minecraft:animals_spawnable_on", "minecraft:leaves", "minecraft:logs"] + #Maximum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_max = -65 + #Minimum height for this spawn. -65 to ignore. + #Range: -65 ~ 256 + height_min = 60 + #Set to true to only allow this mob to spawn in the dark, like zombies and skeletons. + needs_darkness = false + #Set to true to only spawn mob if it can see the sky. + needs_see_sky = false + #Set to true to only spawn mob if it can't see the sky. + needs_cant_see_sky = false + #Names of structures this mob will avoid spawning near. + avoid_structures = ["minecraft:villages", "minecraft:pillager_outposts"] + + [mobs.Elokosa.combat_config] + #Scale mob health by this value + #Range: 0.0 ~ 1.7976931348623157E308 + health_multiplier = 1.0 + #Scale mob attack damage by this value + #Range: 0.0 ~ 1.7976931348623157E308 + attack_multiplier = 1.0 + diff --git a/minecraft/config/mystianapiary-common.toml b/minecraft/config/mystianapiary-common.toml new file mode 100644 index 0000000..85857c5 --- /dev/null +++ b/minecraft/config/mystianapiary-common.toml @@ -0,0 +1,14 @@ + +[apiary] + #Log bee produce resolution to the console for troubleshooting. + debugBeeProduce = false + #Base speed multiplier for the apiary. 1 = no change, 2 = half the base process time, 4 = quarter, etc. + #Range: 1.0 ~ 1024.0 + apiaryBaseSpeedMultiplier = 2.0 + #Soft cap: maximum slot completions processed per tick to smooth bursts. Set 0 to disable. + #Range: 0 ~ 27 + maxCompletionsPerTick = 12 + #Randomized bees: keep the same selected flower for this many completions before rerolling. 1 = reroll every completion. + #Range: 1 ~ 6000 + randomizedRerollIntervalCompletions = 40 + diff --git a/minecraft/config/mysticaladaptations-common.toml b/minecraft/config/mysticaladaptations-common.toml new file mode 100644 index 0000000..11d9b26 --- /dev/null +++ b/minecraft/config/mysticaladaptations-common.toml @@ -0,0 +1,21 @@ + +["Mystical Agradditions"] + #Set how many augments can be placed on the insanium armor + #Range: 1 ~ 2 + insanium_armor_augments = 2 + #Set how many augments can be placed on the insanium tools + #Range: 1 ~ 2 + insanium_tools_augments = 2 + +["Vampirism Compat"] + #Enable the Thirstless Augment + thirstless_augment = true + #Enable the Daywalker Augment + daywalker_augment = true + +["Mob Drops"] + #Wither drops insanium essence when killed with an Insanium weapon. + wither_insanium = true + #Ender Dragon drops insanium essence when killed with an Insanium weapon. + dragon_insanium = true + diff --git a/minecraft/config/mysticalagriculture-client.toml b/minecraft/config/mysticalagriculture-client.toml index 42157cc..f92d22b 100644 --- a/minecraft/config/mysticalagriculture-client.toml +++ b/minecraft/config/mysticalagriculture-client.toml @@ -1,6 +1,6 @@ - -#General configuration options. -[General] - #Should Growth Accelerators use animated textures? - animatedGrowthAccelerators = true - + +#General configuration options. +[General] + #Should Growth Accelerators use animated textures? + animatedGrowthAccelerators = true + diff --git a/minecraft/config/mysticalagriculture-common.toml b/minecraft/config/mysticalagriculture-common.toml index f079d42..d10fb56 100644 --- a/minecraft/config/mysticalagriculture-common.toml +++ b/minecraft/config/mysticalagriculture-common.toml @@ -1,48 +1,48 @@ - -#General configuration options. -[General] - #The amount of uses the basic Infusion Crystal should have. - #Range: > 10 - infusionCrystalUses = 1000 - #Should the Wither drop Cognizant Dust when killed with a Mystical Enlightenment enchanted essence weapon? - witherDropsCognizant = true - #Should vanilla crafting recipes for seeds be generated? - seedCraftingRecipes = false - #Should the Wither drop essence when killed with an essence weapon? - witherDropsEssence = true - #Should the Ender Dragon drop Cognizant Dust when killed with a Mystical Enlightenment enchanted essence weapon? - dragonDropsCognizant = true - #Should wearing a full set of Awakened Supremium armor grant the Plant Growth AOE set bonus? - awakenedSupremiumSetBonus = true - #Should Supremium Tools be enchantable in an Enchanting Table? - enchantableSupremiumTools = true - #The amount of time in seconds between each Growth Accelerator growth tick. - #Range: > 1 - growthAcceleratorCooldown = 10 - #Should fake players be able to use watering cans? - fakePlayerWatering = true - #Should the Ender Dragon drop essence when killed with an essence weapon? - dragonDropsEssence = true - #Should right clicking on Farmland with an Essence create Essence Farmland? - essenceFarmlandConversion = true - #Should crops have a chance of dropping a second seed when harvested? - secondarySeedDrops = true - #The percentage chance that harvesting a Resource Crop will drop a Fertilized Essence. - #Range: 0.0 ~ 1.0 - fertilizedEssenceChance = 0.1 - #The percentage chance that a passive or hostile mob will drop an Inferium Essence when killed. - #Range: 0.0 ~ 1.0 - inferiumDropChance = 0.2 - -#World generation options. -[World] - #The percentage chance a Soulium Ore spawns in a Soulstone cluster. - #Range: 0.0 ~ 1.0 - souliumOreChance = 0.05 - #Should Inferium Ore generate in the world? - generateInferiumOre = true - #Should Prosperity Ore generate in the world? - generateProsperityOre = true - #Should Soulstone generate in the world? - generateSoulstone = true - + +#General configuration options. +[General] + #The amount of uses the basic Infusion Crystal should have. + #Range: > 10 + infusionCrystalUses = 1000 + #Should the Wither drop Cognizant Dust when killed with a Mystical Enlightenment enchanted essence weapon? + witherDropsCognizant = true + #Should vanilla crafting recipes for seeds be generated? + seedCraftingRecipes = false + #Should the Wither drop essence when killed with an essence weapon? + witherDropsEssence = true + #Should the Ender Dragon drop Cognizant Dust when killed with a Mystical Enlightenment enchanted essence weapon? + dragonDropsCognizant = true + #Should wearing a full set of Awakened Supremium armor grant the Plant Growth AOE set bonus? + awakenedSupremiumSetBonus = true + #Should Supremium Tools be enchantable in an Enchanting Table? + enchantableSupremiumTools = true + #The amount of time in seconds between each Growth Accelerator growth tick. + #Range: > 1 + growthAcceleratorCooldown = 10 + #Should fake players be able to use watering cans? + fakePlayerWatering = true + #Should the Ender Dragon drop essence when killed with an essence weapon? + dragonDropsEssence = true + #Should right clicking on Farmland with an Essence create Essence Farmland? + essenceFarmlandConversion = true + #Should crops have a chance of dropping a second seed when harvested? + secondarySeedDrops = true + #The percentage chance that harvesting a Resource Crop will drop a Fertilized Essence. + #Range: 0.0 ~ 1.0 + fertilizedEssenceChance = 0.1 + #The percentage chance that a passive or hostile mob will drop an Inferium Essence when killed. + #Range: 0.0 ~ 1.0 + inferiumDropChance = 0.2 + +#World generation options. +[World] + #The percentage chance a Soulium Ore spawns in a Soulstone cluster. + #Range: 0.0 ~ 1.0 + souliumOreChance = 0.05 + #Should Inferium Ore generate in the world? + generateInferiumOre = true + #Should Prosperity Ore generate in the world? + generateProsperityOre = true + #Should Soulstone generate in the world? + generateSoulstone = true + diff --git a/minecraft/config/mythicbotany-client.toml b/minecraft/config/mythicbotany-client.toml new file mode 100644 index 0000000..0df20e3 --- /dev/null +++ b/minecraft/config/mythicbotany-client.toml @@ -0,0 +1,5 @@ +#Set to false to disable particles from the mythicbotany rings for your own player. You'll still see them from other players. +ring_particles = true +#Set to false to disable the background on Botania HUDs. +hud_backgrounds = true + diff --git a/minecraft/config/mythicbotany.json5 b/minecraft/config/mythicbotany.json5 new file mode 100644 index 0000000..3c2459d --- /dev/null +++ b/minecraft/config/mythicbotany.json5 @@ -0,0 +1,171 @@ +{ + // Whether to add an extra ring slot to curios. + "addExtraRingSlot": true, + + // Whether the alfheim dimension is enabled. When this is set to false, you'll still be able to use + // the mead of kvasir as usual but the portal to alfheim will not work. + "enableAlfheim": true, + + // Whether players that manage to get to alfheim via another mod but have not drunk the mead of kvasir + // should get a blindness effect. + "lockAlfheim": true, + + // Whether to replace the recipe for the Gaia Pylon with a recipe that requires Alfsteel. + "replaceGaiaRecipe": true, + + "alftools": { + + // Jump boost modifier for the alfsteel boots + // Minimum: 0.0 + "jump_modifier": 0.025, + + // Knockback resistance modifier for the alfsteel chestplate + // Minimum: 0.0 + "knockback_resistance_modifier": 1, + + // Reach distance modifier for the alfsteel helmet + // Minimum: 0.0 + "reach_modifier": 2, + + // Speed modifier for the alfsteel leggings + // Minimum: 0.0 + "speed_modifier": 0.05, + + // Armor stats for alfsteel armor. + "armor_values": { + + "boots": { + "defense": 3, + "toughness": 3 + }, + "chestplate": { + "defense": 8, + "toughness": 3 + }, + "helmet": { + "defense": 3, + "toughness": 3 + }, + "leggings": { + "defense": 6, + "toughness": 3 + } + }, + + // Durability stats for alfsteel tools. + // max_durability is the maximum durability, a tool has + // mana_per_durability is the amount of mana consumed per durability loss + "durability": { + + "armor": { + "max_durability": 5200, + "mana_per_durability": 100 + }, + "axe": { + "max_durability": 4600, + "mana_per_durability": 200 + }, + "pickaxe": { + "max_durability": 4600, + "mana_per_durability": 200 + }, + "sword": { + "max_durability": 4600, + "mana_per_durability": 200 + } + }, + + "tool_values": { + + // The attack damage dealt by the alf blade + "sword_damage": 12, + + // The attack speed modifier for the alf blade + "sword_speed": 2.4 + } + }, + + "flowers": { + + // How much mana a wither aconite should generate per nether star. + // Minimum: 1 + "witherAconiteMana": 1200000, + + // Can be used to tweak the multipliers for the raindeletia. All matching values are multiplied + // The result is the mana generated per tick. + "raindeletia": { + + // Base modifier. This one will always be applied + // Minimum: 0.0 + "base": 5, + + // Modifier for dry grass + // Minimum: 0.0 + "dry_grass": 0.5, + + // Modifier for enchanted soil + // Minimum: 0.0 + "enchanted_soil": 5, + + // Modifier for normal rain, not for thunder + // Minimum: 0.0 + "rain": 0.09, + + // Modifier for thundering + // Minimum: 0.0 + "thunder": 3, + + // Modifier for vivid grass + // Minimum: 0.0 + "vivid_grass": 2 + } + }, + + "mjoellnir": { + + // The amount the attack speed increases per level of hammer mobility. + // Minimum: 0.0 + "attack_speed_multiplier": 0.2, + + // The base attack speed attribute for mjoellnir. + "base_attack_speed": -3.5, + + // The base damage for melee attacks. + // Minimum: 1.0 + "base_damage_melee": 25, + + // The base damage for the main target on ranged attacks. + // Minimum: 1.0 + "base_damage_ranged": 25, + + // Enchantment multiplier for sharpness and power enchantments. + // Minimum: 1.0 + "enchantment_multiplier": 5, + + // The cooldown in ticks after a ranged attack, before mjoellnir can be thrown again. + // Minimum: 0 + "ranged_cooldown": 120, + + // What is required for a player to hold mjoellnir. + // nothing - Players will always be able to hold mjoellnir. + // effect - Players need the absorption effect to hold mjoellnir. + // hearts - Players need absorption hearts to hold mjoellnir. + // If they run out of golden hearts but still have the effect, mjoellnir is dropped. + // Allowed values: nothing, effect, hearts + "requirement": "effect", + + // What is required for a player that holds the ring of thor to hold mjoellnir. + // If a player holds the ring of thor, this OR `mjoellnir.requirement` must be met. + // Allowed values: nothing, effect, hearts + "requirement_thor": "nothing", + + // The chance for secondary targets to get lightning effects applied as well on ranged attacks. + // Range: 0.0 - 1.0 + "secondary_lightning_chance": 0.25, + + // The damage dealt to secondary targets on ranged attacks. + // This value is multiplied with the damage to the main target. + // Range: 0.0 - 1.0 + "secondary_target_multiplier": 0.4 + } +} diff --git a/minecraft/config/nasty-common.toml b/minecraft/config/nasty-common.toml new file mode 100644 index 0000000..dd4a523 --- /dev/null +++ b/minecraft/config/nasty-common.toml @@ -0,0 +1,82 @@ + +["Nasty Skeleton"] + #Minimum health + #Range: 4.0 ~ 5000.0 + MinHealth = 20.0 + #Maximum health + #Range: 20.0 ~ 5000.0 + MaxHealth = 30.0 + #Minimum Distance + #Range: 0.0 ~ 1280000.0 + MinDistance = 500.0 + #Maximum Distance + #Range: 0.0 ~ 1280000.0 + MaxDistance = 22500.0 + #Bonus Power + #Range: 0 ~ 10 + BonusPower = 2 + #Bonus Power for Hard + #Range: 0 ~ 20 + BonusHardPower = 4 + #Magic Damage for arrow used by purple skeleton + #Range: 0 ~ 50 + MagicDamage = 2 + #Poison Time + #Range: 1 ~ 30 + PoisonTime = 5 + #Yellow skeleton effect Time + #Range: 1 ~ 30 + YellowTime = 4 + #Spawn in Biome weight + #Range: 0 ~ 200 + SpawnBiome = 60 + #Spawn in Feature weight + #Range: 0 ~ 20 + SpawnFeature = 5 + #Spawn in Dungeon weight + #Range: 0 ~ 200 + SpawnDungeon = 80 + #Spawn light level adjustment (use 0 to be same as normal skeletons) + #Range: 0 ~ 15 + SpawnLightAdj = 0 + #Spawn block level adjustment (use 0 to be same as normal skeletons) + #Range: 0 ~ 15 + SpawnLightAdj2 = 0 + #Arrow Damage Multiplier (damage to skeleton) + #Range: 0.0 ~ 1.0 + ArrowDamageMultiplier = 0.85 + #Add inaccuracy to shot + #Range: 0.0 ~ 1.0 + AddInaccuracy = 0.3 + #Explosive Arrow cause Armor to drop + ExplosiveArrowOnArmor = false + #Explosive Arrow cause Block to drop + ExplosiveArrowOnBlock = false + #Explosive Arrow cause Shield to drop + ExplosiveArrowOnShield = false + #Use blindness instead of nausea for the yellow skeleton + UseBlindness = false + #Explosive Arrow strength + #Range: 1.0 ~ 1500.0 + ExplosiveArrowStrength = 3.0 + #Virus Distance for spreading + #Range: 0.0 ~ 20.0 + VirusDistance = 3.0 + #Virus Chance for spreading + #Range: 0.0 ~ 1.0 + VirusChance = 0.01 + #Spawn type based on Tempature + SpawnTempBased = false + #Spawn weights (Green,Red,Purple,Cyan,Orange,Yellow) + SpawnVariantWeights = "8,4,3,3,4,1" + #Biome adjustments (biome,variant,hp,speed) + BiomeAdjustments = ["minecraft:plains,*,-0.2,0.2", "minecraft:swamp,0,0.2,0.0", "minecraft:swamp,*,0.1,-0.1", "minecraft:badlands,*,0.3,0.3", "minecraft:dark_forest,*,0.3,0.3"] + +["Nasty Wolf"] + #Virus Mode + #Allowed Values: OFF, WILD, UNNAMED + VirusMode = "WILD" + #Virus Chance for spreading + #Range: 0.0 ~ 1.0 + VirusChance = 0.1 + diff --git a/minecraft/config/naturalist.json b/minecraft/config/naturalist.json new file mode 100644 index 0000000..8f48aeb --- /dev/null +++ b/minecraft/config/naturalist.json @@ -0,0 +1,126 @@ +{ + "alligatorRemoved": false, + "bassRemoved": false, + "bearRemoved": true, + "bluejayRemoved": true, + "boarRemoved": true, + "butterflyRemoved": false, + "canaryRemoved": false, + "cardinalRemoved": false, + "catfishRemoved": true, + "coralSnakeRemoved": false, + "deerRemoved": false, + "dragonflyRemoved": false, + "duckRemoved": false, + "elephantRemoved": true, + "finchRemoved": false, + "fireflyRemoved": false, + "forestFoxRemoved": false, + "forestRabbitRemoved": false, + "giraffeRemoved": false, + "hippoRemoved": false, + "lionRemoved": false, + "lizardRemoved": false, + "rattlesnakeRemoved": true, + "rhinoRemoved": true, + "robinRemoved": false, + "snailRemoved": false, + "snakeRemoved": false, + "sparrowRemoved": false, + "tortoiseRemoved": false, + "vultureRemoved": false, + "zebraRemoved": false, + "alligatorSpawnWeight": 10, + "alligatorSpawnMinGroupSize": 2, + "alligatorSpawnMaxGroupSize": 3, + "bassSpawnWeight": 10, + "bassSpawnMinGroupSize": 3, + "bassSpawnMaxGroupSize": 6, + "bearSpawnWeight": 10, + "bearSpawnMinGroupSize": 1, + "bearSpawnMaxGroupSize": 2, + "bluejaySpawnWeight": 10, + "bluejaySpawnMinGroupSize": 3, + "bluejaySpawnMaxGroupSize": 4, + "boarSpawnWeight": 10, + "boarSpawnMinGroupSize": 3, + "boarSpawnMaxGroupSize": 4, + "butterflySpawnWeight": 10, + "butterflySpawnMinGroupSize": 3, + "butterflySpawnMaxGroupSize": 6, + "canarySpawnWeight": 10, + "canarySpawnMinGroupSize": 3, + "canarySpawnMaxGroupSize": 4, + "cardinalSpawnWeight": 10, + "cardinalSpawnMinGroupSize": 3, + "cardinalSpawnMaxGroupSize": 4, + "catfishSpawnWeight": 10, + "catfishSpawnMinGroupSize": 1, + "catfishSpawnMaxGroupSize": 2, + "coralSnakeSpawnWeight": 10, + "coralSnakeSpawnMinGroupSize": 1, + "coralSnakeSpawnMaxGroupSize": 1, + "deerSpawnWeight": 10, + "deerSpawnMinGroupSize": 3, + "deerSpawnMaxGroupSize": 5, + "dragonflySpawnWeight": 10, + "dragonflySpawnMinGroupSize": 2, + "dragonflySpawnMaxGroupSize": 4, + "duckSpawnWeight": 10, + "duckSpawnMinGroupSize": 3, + "duckSpawnMaxGroupSize": 4, + "elephantSpawnWeight": 5, + "elephantSpawnMinGroupSize": 1, + "elephantSpawnMaxGroupSize": 3, + "finchSpawnWeight": 10, + "finchSpawnMinGroupSize": 3, + "finchSpawnMaxGroupSize": 4, + "fireflySpawnWeight": 10, + "fireflySpawnMinGroupSize": 2, + "fireflySpawnMaxGroupSize": 4, + "forestFoxSpawnWeight": 10, + "forestFoxSpawnMinGroupSize": 1, + "forestFoxSpawnMaxGroupSize": 2, + "forestRabbitSpawnWeight": 10, + "forestRabbitSpawnMinGroupSize": 2, + "forestRabbitSpawnMaxGroupSize": 3, + "giraffeSpawnWeight": 5, + "giraffeSpawnMinGroupSize": 1, + "giraffeSpawnMaxGroupSize": 3, + "hippoSpawnWeight": 10, + "hippoSpawnMinGroupSize": 1, + "hippoSpawnMaxGroupSize": 3, + "lionSpawnWeight": 3, + "lionSpawnMinGroupSize": 1, + "lionSpawnMaxGroupSize": 3, + "lizardSpawnWeight": 10, + "lizardSpawnMinGroupSize": 1, + "lizardSpawnMaxGroupSize": 1, + "rattlesnakeSpawnWeight": 10, + "rattlesnakeSpawnMinGroupSize": 1, + "rattlesnakeSpawnMaxGroupSize": 1, + "rhinoSpawnWeight": 1, + "rhinoSpawnMinGroupSize": 1, + "rhinoSpawnMaxGroupSize": 3, + "robinSpawnWeight": 10, + "robinSpawnMinGroupSize": 3, + "robinSpawnMaxGroupSize": 4, + "snailSpawnWeight": 10, + "snailSpawnMinGroupSize": 2, + "snailSpawnMaxGroupSize": 3, + "snakeSpawnWeight": 10, + "snakeSpawnMinGroupSize": 1, + "snakeSpawnMaxGroupSize": 1, + "sparrowSpawnWeight": 10, + "sparrowSpawnMinGroupSize": 3, + "sparrowSpawnMaxGroupSize": 4, + "tortoiseSpawnWeight": 10, + "tortoiseSpawnMinGroupSize": 1, + "tortoiseSpawnMaxGroupSize": 1, + "vultureSpawnWeight": 3, + "vultureSpawnMinGroupSize": 3, + "vultureSpawnMaxGroupSize": 5, + "zebraSpawnWeight": 1, + "zebraSpawnMinGroupSize": 2, + "zebraSpawnMaxGroupSize": 6 +} diff --git a/minecraft/config/naturesaura-common.toml b/minecraft/config/naturesaura-common.toml new file mode 100644 index 0000000..ef0551a --- /dev/null +++ b/minecraft/config/naturesaura-common.toml @@ -0,0 +1,72 @@ + +[general] + #Additional conversion recipes for the Botanist's Pickaxe right click function. Each entry needs to be formatted as modid:input_block[prop1=value1,...]->modid:output_block[prop1=value1,...] where block state properties are optional, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + additionalBotanistPickaxeConversions = [] + #Additional dimensions that map to Aura types that should be present in them. This is useful if you have a modpack with custom dimensions that should have Aura act similarly to an existing dimension in them. Each entry needs to be formatted as dimension_name->aura_type, where aura_type can be any of naturesaura:overworld, naturesaura:nether and naturesaura:end, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + auraTypeOverrides = [] + #Additional blocks that are recognized as generatable ores for the passive ore generation effect. Each entry needs to be formatted as tag_name->oreWeight->dimension where a higher weight makes the ore more likely to spawn with 5000 being the weight of coal, the default ore with the highest weight, and dimension being any of overworld and nether, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + additionalOres = [] + #Blocks that are exempt from being recognized as generatable ores for the passive ore generation effect. Each entry needs to be formatted as modid:block[prop1=value1,...] where block state properties are optional, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + oreExceptions = [] + #Blocks that are exept from being fertilized by the plant boost effect. Each entry needs to be formatted as modid:block, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + plantBoostExceptions = [] + #Additional projectile types that are allowed to be consumed by the projectile generator. Each entry needs to be formatted as entity_registry_name->aura_amount, and entries follow standard TOML array formatting (https://toml.io/en/v1.0.0#array). + additionalProjectiles = [] + #The amount of blocks that can be between two Aura Field Creators for them to be connectable and work together + fieldCreatorRange = 24 + #The Aura to RF ratio used by the RF converter, read as aura*ratio = rf + auraToRFRatio = 0.05 + #The maximum amount of animals that can be around the powder of fertility before it stops working + maxAnimalsAroundPowder = 200 + #The maximum amount of blocks that aura can spread from an initial position before it starts fizzling out. It's recommended to lower this value on a large server to avoid lag caused by players chunk-loading their bases for extended amounts of time without an Aura Detector present. + maxAuraSpreadRange = 100 + +[features] + #If the RF converter block should be enabled + rfConverter = true + #If the chunk loader block should be enabled + chunkLoader = true + #If the Aura Imbalance effect of grass and trees dying in the area if the Aura levels are too low should occur + grassDieEffect = true + #If the Aura Imbalance effect of nether blocks degrading in the area if the Aura levels are too low should occur + netherDecayEffect = true + #If the Aura Imbalance effect of plant growth being boosted if the Aura levels are high enough should occur + plantBoostEffect = true + #If the Aura Imbalance effect of aura containers in players' inventories being filled if the Aura levels are high enough should occur + cacheRechargeEffect = true + #If the Aura Imbalance effect of explosions happening randomly if Aura levels are too low should occur + explosionEffect = true + #If the Aura Imbalance effect of breathlessness if Aura levels are too low should occur + breathlessEffect = true + #If the Aura Imbalance effect of passive mobs being angered if Aura levels are too low should occur + angerEffect = true + #If the Aura Imbalance effect of farm animals being affected in positive ways if Aura levels are too high should occur + animalEffect = true + #If the Aura Imbalance effect of ores spawning in the area if Aura levels are too high should occur + oreEffect = true + #If Aura Blooms and Aura Cacti should generate in the level + auraBlooms = true + #If the Aura Imbalance effect of grass growing on netherrack if the Aura levels are high enough should occur + netherGrassEffect = true + +[client] + #The percentage of particles that should be displayed, where 1 is 100% and 0 is 0% + #Range: 0.0 ~ 1.0 + particleAmount = 1.0 + #If particle spawning should respect the particle setting in Minecraft's video settings screen + respectVanillaParticleSettings = false + #The percentage of particles that should spawn when there is an excess amount of Aura in the environment, where 1 is 100% and 0 is 0% + excessParticleAmount = 1.0 + #The location of the aura bar, where 0 is top left, 1 is top right, 2 is bottom left and 3 is bottom right + #Range: 0 ~ 3 + auraBarLocation = 0 + #The location of the aura cache bar, where 0 is to the left of the hotbar and 1 is to the right of the hotbar + #Range: 0 ~ 1 + cacheBarLocation = 0 + #If debug information about Aura around the player should be displayed in the F3 debug menu if the player is in creative mode + debugText = true + #If, when the F3 debug menu is open and the player is in creative mode, every Aura spot should be highlighted in the level for debug purposes + debugLevel = false + #If certain equippable items, like the Environmental Eye, should be rendered on the player + renderItemsOnPlayer = true + diff --git a/minecraft/config/naturescompass-client.toml b/minecraft/config/naturescompass-client.toml index a60cb99..1c0fac7 100644 --- a/minecraft/config/naturescompass-client.toml +++ b/minecraft/config/naturescompass-client.toml @@ -1,13 +1,13 @@ - -[Client] - #Displays Nature's Compass information even while chat is open. - displayWithChatOpen = true - #Fixes biome names by adding missing spaces. Ex: ForestHills becomes Forest Hills - fixBiomeNames = true - #The line offset for information rendered on the HUD. - #Range: 0 ~ 50 - overlayLineOffset = 1 - #The side for information rendered on the HUD. Ex: LEFT, RIGHT - #Allowed Values: LEFT, RIGHT - overlaySide = "LEFT" - + +[Client] + #Displays Nature's Compass information even while chat is open. + displayWithChatOpen = true + #Fixes biome names by adding missing spaces. Ex: ForestHills becomes Forest Hills + fixBiomeNames = true + #The line offset for information rendered on the HUD. + #Range: 0 ~ 50 + overlayLineOffset = 1 + #The side for information rendered on the HUD. Ex: LEFT, RIGHT + #Allowed Values: LEFT, RIGHT + overlaySide = "LEFT" + diff --git a/minecraft/config/naturescompass-common.toml b/minecraft/config/naturescompass-common.toml index 984eb89..08ff49f 100644 --- a/minecraft/config/naturescompass-common.toml +++ b/minecraft/config/naturescompass-common.toml @@ -1,29 +1,29 @@ - -[General] - #Allows a player to teleport to a located biome when in creative mode, opped, or in cheat mode. - allowTeleport = true - #The maximum number of times a player can search for the next instance of a located biome. Set to 0 to disable searching for additional biome instances and make the compass always locate the nearest biome. - #Range: 0 ~ 10000 - maxNextSearches = 25 - #Allows players to view the precise coordinates and distance of a located structure on the HUD, rather than relying on the direction the compass is pointing. - displayCoordinates = true - #biomeSize * radiusModifier = maxSearchRadius. Raising this value will increase search accuracy but will potentially make the process more resource . - #Range: 0 ~ 1000000 - radiusModifier = 2500 - #biomeSize * sampleSpaceModifier = sampleSpace. Lowering this value will increase search accuracy but will make the process more resource intensive. - #Range: 0 ~ 1000000 - sampleSpaceModifier = 16 - #A list of biomes that the compass will not be able to search for, specified by resource location. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:savanna", "minecraft:desert", "minecraft:*ocean*"] - biomeBlacklist = [] - #The default number of XP levels consumed when searching for a biome. Individual biomes can be configured via perBiomeXpLevels. - #Range: 0 ~ 3 - defaultXpLevels = 0 - #A list of per-biome XP level costs that override defaultXpLevels, specified as comma-separated "biome_id,num_levels" pairs. Biomes not listed here use defaultXpLevels. Max of 3 levels. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:deep_dark,3", "minecraft:end*,2", "minecraft:*caves,3"] - perBiomeXpLevels = [] - #The maximum number of samples to be taken when searching for a biome. - #Range: 0 ~ 1000000 - maxSamples = 50000 - #The number of successful biome searches before the compass breaks and must be repaired. Set to 0 to disable durability. - #Range: 0 ~ 10000 - compassDurability = 0 - + +[General] + #Allows a player to teleport to a located biome when in creative mode, opped, or in cheat mode. + allowTeleport = true + #Allows players to view the precise coordinates and distance of a located structure on the HUD, rather than relying on the direction the compass is pointing. + displayCoordinates = true + #biomeSize * radiusModifier = maxSearchRadius. Raising this value will increase search accuracy but will potentially make the process more resource . + #Range: 0 ~ 1000000 + radiusModifier = 2500 + #biomeSize * sampleSpaceModifier = sampleSpace. Lowering this value will increase search accuracy but will make the process more resource intensive. + #Range: 0 ~ 1000000 + sampleSpaceModifier = 16 + #A list of biomes that the compass will not be able to search for, specified by resource location. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:savanna", "minecraft:desert", "minecraft:*ocean*"] + biomeBlacklist = [] + #The maximum number of samples to be taken when searching for a biome. + #Range: 0 ~ 1000000 + maxSamples = 50000 + #The maximum number of times a player can search for the next instance of a located biome. Set to 0 to disable searching for additional biome instances and make the compass always locate the nearest biome. + #Range: 0 ~ 10000 + maxNextSearches = 25 + #The default number of XP levels consumed when searching for a biome. Individual biomes can be configured via perBiomeXpLevels. + #Range: 0 ~ 3 + defaultXpLevels = 0 + #A list of per-biome XP level costs that override defaultXpLevels, specified as comma-separated "biome_id,num_levels" pairs. Biomes not listed here use defaultXpLevels. Max of 3 levels. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex: ["minecraft:deep_dark,3", "minecraft:end*,2", "minecraft:*caves,3"] + perBiomeXpLevels = [] + #The number of successful biome searches before the compass breaks and must be repaired. Set to 0 to disable durability. + #Range: 0 ~ 10000 + compassDurability = 0 + diff --git a/minecraft/config/neruina.json b/minecraft/config/neruina.json index 1488f1c..1affbf7 100644 --- a/minecraft/config/neruina.json +++ b/minecraft/config/neruina.json @@ -1,8 +1,6 @@ { - "min_permission_level_for_messages": 0, - "min_permission_level_for_commands": 2, + "log_level": "OPERATORS", "auto_kill_ticking_entities": false, - "kill_players_instead": false, "ticking_exception_threshold": 10, "handle_ticking_entities": true, "handle_ticking_block_entities": true, diff --git a/minecraft/config/nightconfigfixes.toml b/minecraft/config/nightconfigfixes.toml new file mode 100644 index 0000000..8ae9c6a --- /dev/null +++ b/minecraft/config/nightconfigfixes.toml @@ -0,0 +1,12 @@ +#When single config values need to be corrected (think like the config value is a number 1-10, but the user enters an incompatible input like '5.0', in that case only this single value needs fixing not the whole file), +#Forge restores the built-in default value for that option, but ignores a value that is set in a possibly present default config in 'defaultconfigs'. +#This option fixes this behavior and checks for a value in a default config from 'defaultconfigs' before falling back to the built-in default. +correctConfigValuesFromDefaultConfig = true +#Config loading from a file config appears to occasionally fail and throw a com.electronwill.nightconfig.core.io.ParsingException: Not enough data available. +#This workaround catches the exception, and recreates a fresh file to try config loading for again. If loading fails for the new file the original exception is thrown. +#To make sure any required changes through configs stay intact through such recreations, placed your changed configs in the 'defaultconfigs' directory. +recreateConfigsWhenParsingFails = true +#Prevent server config files from being saved inside the current world directory. Instead, save them to the global config directory in .minecraft/config/. +#This option effectively disables per world server configs, but helps a lot with avoiding user confusion. +forceGlobalServerConfigs = false + diff --git a/minecraft/config/nostartupmessages-common.toml b/minecraft/config/nostartupmessages-common.toml new file mode 100644 index 0000000..f92dd23 --- /dev/null +++ b/minecraft/config/nostartupmessages-common.toml @@ -0,0 +1,3 @@ +#A list of messages that if contained in a message will be stopped. +messages = ["You are using a beta version of Railcraft Reborn", "This game is using an alpha build of Ender IO", "This pack contains Observable", "Ars Nouveau adds bulit in", "Hello, and thank you for downloading Terralith!", "[Mekanism]"] + diff --git a/minecraft/config/notenoughanimations.json b/minecraft/config/notenoughanimations.json new file mode 100644 index 0000000..93ce604 --- /dev/null +++ b/minecraft/config/notenoughanimations.json @@ -0,0 +1,78 @@ +{ + "configVersion": 11, + "animationSmoothingSpeed": 0.2, + "holdingItems": [ + "quad-mstv-mtv:pale_oak_torch", + "quad-mstv-mtv:bamboo_torch", + "minecraft:clock", + "quad-mstv-mtv:spruce_soul_torch", + "minecraft:compass", + "minecraft:soul_torch", + "quad-mstv-mtv:jungle_soul_torch", + "quad-mstv-mtv:birch_soul_torch", + "quad-mstv-mtv:warped_soul_torch", + "minecraft:torch", + "quad-mstv-mtv:bamboo_soul_torch", + "quad-mstv-mtv:mangrove_torch", + "quad-mstv-mtv:cherry_soul_torch", + "minecraft:recovery_compass", + "quad-mstv-mtv:jungle_torch", + "quad-mstv-mtv:mangrove_soul_torch", + "minecraft:soul_lantern", + "quad-mstv-mtv:acacia_torch", + "quad-mstv-mtv:cherry_torch", + "quad-mstv-mtv:spruce_torch", + "quad-mstv-mtv:dark_oak_soul_torch", + "quad-mstv-mtv:warped_torch", + "minecraft:lantern", + "quad-mstv-mtv:crimson_soul_torch", + "quad-mstv-mtv:pale_oak_soul_torch", + "quad-mstv-mtv:birch_torch", + "quad-mstv-mtv:acacia_soul_torch", + "quad-mstv-mtv:crimson_torch", + "quad-mstv-mtv:dark_oak_torch" + ], + "enableAnimationSmoothing": true, + "enableInWorldMapRendering": true, + "enableOffhandHiding": true, + "enableRotationLocking": true, + "enableLadderAnimation": true, + "ladderAnimationAmplifier": 0.35, + "ladderAnimationArmHeight": 1.7, + "ladderAnimationArmSpeed": 2.0, + "enableRotateToLadder": true, + "enableEatDrinkAnimation": true, + "enableRowBoatAnimation": true, + "enableHorseAnimation": true, + "enableHorseLegAnimation": false, + "dontHoldItemsInBed": true, + "freezeArmsInBed": true, + "rotationLock": "NONE", + "limitRotationLockToFP": true, + "showLastUsedSword": false, + "sheathSwords": [ + "minecraft:golden_sword", + "minecraft:iron_sword", + "minecraft:wooden_sword", + "minecraft:stone_sword", + "minecraft:diamond_sword", + "minecraft:netherite_sword" + ], + "enableCrawlingAnimation": true, + "holdUpItemsMode": "CONFIG", + "holdUpTarget": "CAMERA", + "holdUpCameraOffset": 0.1, + "holdUpOnlySelf": false, + "holdUpItemOffset": 0.0, + "itemSwapAnimation": true, + "tweakElytraAnimation": true, + "petAnimation": true, + "fallingAnimation": false, + "freezingAnimation": true, + "huggingAnimation": false, + "narutoRunning": false, + "enableInWorldBookRendering": false, + "disableLegSmoothing": false, + "bowAnimation": "VANILLA", + "burningAnimation": true +} \ No newline at end of file diff --git a/minecraft/config/numismatics-utils-client.toml b/minecraft/config/numismatics-utils-client.toml new file mode 100644 index 0000000..4ce1e56 --- /dev/null +++ b/minecraft/config/numismatics-utils-client.toml @@ -0,0 +1,13 @@ + +["Numismatics Utils"] + #The horizontal offset of the Bank Meter text (in pixels) + #Default is 2. + hud_x_position = 2 + #The vertical offset of the Bank Meter text (in pixels) + #Default is 2. + hud_y_position = 2 + #The scale of the Bank Meter text. + #Default is 1.0. + #Range: 0.5 ~ 10.0 + hud_scale = 1.0 + diff --git a/minecraft/config/nyfsspiders.toml b/minecraft/config/nyfsspiders.toml new file mode 100644 index 0000000..d04778f --- /dev/null +++ b/minecraft/config/nyfsspiders.toml @@ -0,0 +1,5 @@ +#Whether the path finder debug preview should be enabled. +path_finder_debug_preview = false +#Whether spiders should be prevented from climbing in rain. +prevent_climbing_in_rain = false + diff --git a/minecraft/config/occultengineering-client.toml b/minecraft/config/occultengineering-client.toml new file mode 100644 index 0000000..b8e8bd1 --- /dev/null +++ b/minecraft/config/occultengineering-client.toml @@ -0,0 +1,9 @@ + +#. +#Client-only settings +[client] + #. + #The vision range through Spirit Solution will be multiplied by this factor + #Range: 0.125 ~ 256.0 + spirit_solution = 1.0 + diff --git a/minecraft/config/occultism-client.toml b/minecraft/config/occultism-client.toml new file mode 100644 index 0000000..9651fe7 --- /dev/null +++ b/minecraft/config/occultism-client.toml @@ -0,0 +1,42 @@ + +#Visual Settings +[visual] + #Shows all tags an item has in the tooltip on hover if advanced tooltips (F3+H) are enabled. + showItemTagsInTooltip = false + #Disables the headache- and possibly seizure-inducing visual effects of Demon's Dream. + disableDemonsDreamShaders = false + #Disables holiday themed visual content such as familiar skins. + disableHolidayTheming = false + #When true the old divination rod selected block renderer will be used. + #May work for some people that do not see selected block outlines when using the divination rod. + useAlternativeDivinationRodRenderer = false + #The integer code of the color of the white chalk glyph in world. + #This is intended to allow people with color blindness to change the color of the glyph. + #For most types of color blindness it should not be necessary to change this. + whiteChalkGlyphColor = 16777215 + #The integer code of the color of the golden chalk glyph in world. + #This is intended to allow people with color blindness to change the color of the glyph. + #For most types of color blindness it should not be necessary to change this. + goldenChalkGlyphColor = 15783680 + #The integer code of the color of the purple chalk glyph in world. + #This is intended to allow people with color blindness to change the color of the glyph. + #For most types of color blindness it should not be necessary to change this. + purpleChalkGlyphColor = 10224531 + #The integer code of the color of the red chalk glyph in world. + #This is intended to allow people with color blindness to change the color of the glyph. + #For most types of color blindness this value should be changed to a green color, we recommend 33289 (= Hex 0x008209) + redChalkGlyphColor = 13369601 + +#Misc Settings +[misc] + #Sync JEI search in storage actuator. + syncJeiSearch = false + #If true, divination rod will render all matching blocks with an outline. Disable if it causes lag. + #This setting will be unused, if Theurgy is installed alongside, as Occultism will use Theurgy's divination rod result rendering instead. + divinationRodHighlightAllResults = false + #The scan range in blocks for the divination rod. Too high might cause lags + #Range: > 1 + divinationRodScanRange = 129 + #Disables the sound played when a spirit fire successfully crafted an item. + disableSpiritFireSuccessSound = false + diff --git a/minecraft/config/okzoomer-client.toml b/minecraft/config/okzoomer-client.toml new file mode 100644 index 0000000..4d700c0 --- /dev/null +++ b/minecraft/config/okzoomer-client.toml @@ -0,0 +1,84 @@ + +[features] + #Defines the cinematic camera while zooming. + #'OFF' disables the cinematic camera + #'VANILLA' uses Vanilla's cinematic camera. + #'MULTIPLIED' is a multiplied variant of 'VANILLA' + #Allowed Values: OFF, VANILLA, MULTIPLIED + cinematic_camera = "OFF" + #Reduces the mouse sensitivity when zooming. + reduce_sensitivity = true + #Adds transitions between zooms. + #'OFF' disables transitions. + #'SMOOTH' replicates Vanilla's dynamic FOV. + #'LINEAR' removes the smoothiness. + #Allowed Values: OFF, SMOOTH, LINEAR + zoom_transition = "SMOOTH" + #The behavior of the zoom key. + #'HOLD' needs the zoom key to be hold. + #'TOGGLE' has the zoom key toggle the zoom. + #'PERSISTENT' makes the zoom permanent. + #Allowed Values: HOLD, TOGGLE, PERSISTENT + zoom_mode = "HOLD" + #Allows to increase or decrease zoom by scrolling. + zoom_scrolling = true + #Adds zoom manipulation keys along with the zoom key. + #Note that this config will NOT prevent the keybinds from being registered, but they will become unusable if false. + extra_key_binds = true + #Adds an overlay in the screen during zoom. + #'VIGNETTE' uses a vignette as the overlay. + #'SPYGLASS' uses the spyglass overlay with the vignette texture. + #The vignette texture can be found at: assets/okzoomer/textures/misc/zoom_overlay.png + #Allowed Values: OFF, VIGNETTE, SPYGLASS + zoom_overlay = "OFF" + #Determines how the zoom will depend on the spyglass. + #'REQUIRE_ITEM' will make zooming require a spyglass. + #'REPLACE_ZOOM' will replace spyglass's zoom with Ok Zoomer's zoom. + #'BOTH' will apply both options at the same time. + #The 'REQUIRE_ITEM' option is configurable through the okzoomer:zoom_dependencies item tag. + #Allowed Values: OFF, REQUIRE_ITEM, REPLACE_ZOOM, BOTH + spyglass_dependency = "OFF" + #If the OkZoomer overlay should be disabled when the HUD is hidden. (F1 mode) + disable_overlay_no_hud = true + +[values] + #The divisor applied to the FOV when zooming. + #Range: 0.0 ~ 1.7976931348623157E308 + zoom_divisor = 4.0 + #The minimum value that you can scroll down. + #Range: 0.0 ~ 1.7976931348623157E308 + minimum_zoom_divisor = 1.0 + #The maximum value that you can scroll down. + #Range: 0.0 ~ 1.7976931348623157E308 + maximum_zoom_divisor = 50.0 + #The number of steps between the zoom divisor and the maximum zoom divisor. + #Used by zoom scrolling. + #Range: > 0 + upper_scroll_steps = 20 + #The number of steps between the zoom divisor and the minimum zoom divisor. + #Used by zoom scrolling. + #Range: > 0 + lower_scroll_steps = 4 + #The multiplier used for smooth transitions. + #Range: -1.0 ~ 1.0 + smooth_multiplier = 0.75 + #The multiplier used for the multiplied cinematic camera. + #Range: -4.0 ~ 4.0 + cinematic_multiplier = 4.0 + #The minimum value that the linear transition step can reach. + #Range: 0.0 ~ 1.7976931348623157E308 + minimum_linear_step = 0.125 + #The maximum value that the linear transition step can reach. + #Range: 0.0 ~ 1.7976931348623157E308 + maximum_linear_step = 0.25 + +[tweaks] + #Allows resetting the zoom with the middle mouse button. + reset_zoom_with_mouse = true + #If enabled, the spyglass overlay texture is used instead of Ok Zoomer's overlay texture. + use_spyglass_texture = false + #If enabled, the zoom will use spyglass sounds on zooming in and out. + use_spyglass_sounds = false + #Shows toasts when the server imposes a restriction. + show_restriction_toasts = true + diff --git a/minecraft/config/opolis_utilities.toml b/minecraft/config/opolis_utilities.toml new file mode 100644 index 0000000..599e497 --- /dev/null +++ b/minecraft/config/opolis_utilities.toml @@ -0,0 +1,35 @@ + +["Opolis Utilities Config File"] + #Cooldown in ticks of the home stone, default = 6000 + "Home Stone Cooldown" = 6000 + #Does the home stone take damge when teleporting, default = true + "Home Stone Durability" = true + #URL for your discord + "Discord URL" = "https://discord.gg/benbenlaw" + #Modpack name + "Modpack name" = "TESTMODPACK" + #Modpack Version + "Modpack Version" = "VERSION" + #Mobs basic loot bag drop chance 0.0 = always, 1.0 = never, 0.5 = 50% chance, default = 0.75 + "Mob Drop Chance" = 0.95 + #Additional rolls when using the crook on leaves + "Additional Crook Rolls" = 3 + #The max range of the Ender Scrambler + "(WIP)Max Ender Scrambler Range" = 8 + #The min range of the Ender Scrambler + "(WIP)Min Ender Scrambler Range" = 8 + #The number of attempts to grow a sapling per right click + "(WIP)Total Attempts for Sapling Grower" = 128 + #Can the animal net capture hostile mobs, default = false + "Animal Net: Hostile Mobs" = false + #Can the animal net capture water mobs, default = true + "Animal Net: Water Mobs" = true + #Can the animal net capture animal mobs, default = true + "Animal Net: Animal Mobs" = true + #Can the animal net capture villager mobs, default = false + "Animal Net: Villager Mobs" = false + #Does the animal net take damage when capturing mobs, default = true + "Animal Net: Takes Damage?" = true + #Do wooden buttons make a doorbell sound, default = false + "Wooden Buttons Make Doorbell Sound" = false + diff --git a/minecraft/config/out_of_sight-client.toml b/minecraft/config/out_of_sight-client.toml new file mode 100644 index 0000000..8a227b9 --- /dev/null +++ b/minecraft/config/out_of_sight-client.toml @@ -0,0 +1,10 @@ + +#General mod settings +[general] + #Range: 1.0 ~ 30000.0 + tileEntityRenderRangeMax = 48.0 + #Range: 1.0 ~ 30000.0 + entityRenderRangeMax = 48.0 + tileEntityRenderLimitModdedOnly = false + entityRenderLimitModdedOnly = false + diff --git a/minecraft/config/overflowingbars-client.toml b/minecraft/config/overflowingbars-client.toml new file mode 100644 index 0000000..656328a --- /dev/null +++ b/minecraft/config/overflowingbars-client.toml @@ -0,0 +1,62 @@ + +[toughness] + #Render a separate armor bar for the armor toughness attribute (from diamond and netherite armor). + #Having only this option active will make the toughness bar behave just like vanilla's armor bar without any colorful stacking or so. + armor_toughness_bar = true + #Render row count to indicate total amount of rows since not all may be visible at once due to the stacked rendering. + allow_count = true + #Show colorful icons on the front row, not just on all subsequent rows. + colorize_first_row = false + #Shift toughness bar up or down by specified number of icon rows. Allows for better mod compat on Fabric, has no effect on Forge. + #Range: -5 ~ 5 + toughness_bar_row_shift = 0 + #Render the toughness bar on the left side above the hotbar (where health and armor is rendered). + left_side = false + #Add layers to this bar. When disabled any modifications to the bar from this mod will be turned off. + allow_layers = true + #Don't draw empty armor points, this will make the armor bar potentially shorter. + skip_empty_armor_points = true + #Use vanilla's icons on all front rows, use custom colored icons on the background row. + inverse_coloring = false + +[health] + #Show colorful icons on the front row, not just on all subsequent rows. + colorize_first_row = false + #Add layers to this bar. When disabled any modifications to the bar from this mod will be turned off. + allow_layers = true + #Render row count to indicate total amount of rows since not all may be visible at once due to the stacked rendering. + allow_count = true + #Use vanilla's icons on all front rows, use custom colored icons on the background row. + inverse_coloring = false + +[armor] + #Show colorful icons on the front row, not just on all subsequent rows. + colorize_first_row = false + #Add layers to this bar. When disabled any modifications to the bar from this mod will be turned off. + allow_layers = true + #Don't draw empty armor points, this will make the armor bar potentially shorter. + skip_empty_armor_points = true + #Render row count to indicate total amount of rows since not all may be visible at once due to the stacked rendering. + allow_count = true + #Use vanilla's icons on all front rows, use custom colored icons on the background row. + inverse_coloring = false + +[row_count] + #Color of row count, use any chat formatting color value. + #Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + row_count_color = "WHITE" + #Only include completely filled rows for the row count. + count_full_rows_only = false + #Force drawing row count using the font renderer, will make numbers display larger. + force_font_renderer = false + #Show row count also when only one row is present. + always_render_row_count = false + #Render an 'x' together with the row count number. + row_count_x = true + +[general] + #Move chat messages above armor/absorption bar. + move_chat_above_armor = true + #Move the experience level display above the experience bar. + move_experience_above_bar = true + diff --git a/minecraft/config/paintings-client.toml b/minecraft/config/paintings-client.toml new file mode 100644 index 0000000..c082952 --- /dev/null +++ b/minecraft/config/paintings-client.toml @@ -0,0 +1,5 @@ + +[general] + #Pick True to show the size of paintings in the painting gui + show_painting_size = true + diff --git a/minecraft/config/pamhc2trees.toml b/minecraft/config/pamhc2trees.toml new file mode 100644 index 0000000..b7e8144 --- /dev/null +++ b/minecraft/config/pamhc2trees.toml @@ -0,0 +1,5 @@ + +["Right-click Fruit Tree Harvesting Settings"] + #Disable/enable right-click harvesting of tree fruits + "Enable right-click harvesting for tree fruits" = true + diff --git a/minecraft/config/paraglider-common.toml b/minecraft/config/paraglider-common.toml index 9501754..82f9627 100644 --- a/minecraft/config/paraglider-common.toml +++ b/minecraft/config/paraglider-common.toml @@ -1,27 +1,27 @@ - -#Easy to access switches to toggle side features on and off. -#Most of them requires server restart or datapack reload. All of them, actually. -[features] - #For those who wants to remove Spirit Orbs generated in the world, more specifically... - # * Spirit Orbs generated in various chests - # * Spirit Orbs dropped by spawners and such - #Note that bargain recipe for Heart Containers/Stamina Vessels will persist, even if this option is disabled. - spiritOrbGens = true - #For those who wants to remove entirety of Heart Containers from the game, more specifically... - # * Heart Containers obtained by "challenges" (i.e. Killing dragon, wither, raid) - # * Bargains using Heart Containers (custom recipes won't be affected) - #Note that if this option is disabled while staminaVessels is enabled, "challenges" will drop stamina vessels instead. - heartContainers = true - #For those who wants to remove entirety of Stamina Vessels from the game, more specifically... - # * Bargains using Stamina Vessels (custom recipes won't be affected) - staminaVessels = true - #For those who wants to remove all structures added by this mod. Requires restart. - structures = true - -[debug] - debugPlayerMovement = false - traceMovementPacket = false - traceVesselPacket = false - traceBargainPacket = false - traceWindPacket = false - + +#Easy to access switches to toggle side features on and off. +#Most of them requires server restart or datapack reload. All of them, actually. +[features] + #For those who wants to remove Spirit Orbs generated in the world, more specifically... + # * Spirit Orbs generated in various chests + # * Spirit Orbs dropped by spawners and such + #Note that bargain recipe for Heart Containers/Stamina Vessels will persist, even if this option is disabled. + spiritOrbGens = true + #For those who wants to remove entirety of Heart Containers from the game, more specifically... + # * Heart Containers obtained by "challenges" (i.e. Killing dragon, wither, raid) + # * Bargains using Heart Containers (custom recipes won't be affected) + #Note that if this option is disabled while staminaVessels is enabled, "challenges" will drop stamina vessels instead. + heartContainers = true + #For those who wants to remove entirety of Stamina Vessels from the game, more specifically... + # * Bargains using Stamina Vessels (custom recipes won't be affected) + staminaVessels = true + #For those who wants to remove all structures added by this mod. Requires restart. + structures = true + +[debug] + debugPlayerMovement = false + traceMovementPacket = false + traceVesselPacket = false + traceBargainPacket = false + traceWindPacket = false + diff --git a/minecraft/config/paraglider-player-states.toml b/minecraft/config/paraglider-player-states.toml index dfe959f..5bd19bb 100644 --- a/minecraft/config/paraglider-player-states.toml +++ b/minecraft/config/paraglider-player-states.toml @@ -1,74 +1,74 @@ - -#Configuration file for player states. -#You can adjust stamina delta (negative value means consumption / positive value means gain) and -#recovery delay (in ticks) of all player states registered in the game. -#To reload the config, use the following command: /paraglider reloadPlayerStates -# -[paraglider] - - [paraglider.ascending] - #Range: > -2147483648 - staminaDelta = -3 - #Range: > 0 - recoveryDelay = 10 - - [paraglider.breathing_underwater] - #Range: > -2147483648 - staminaDelta = 20 - #Range: > 0 - recoveryDelay = 0 - - [paraglider.flying] - #Range: > -2147483648 - staminaDelta = 20 - #Range: > 0 - recoveryDelay = 0 - - [paraglider.idle] - #Range: > -2147483648 - staminaDelta = 20 - #Range: > 0 - recoveryDelay = 0 - - [paraglider.midair] - #Range: > -2147483648 - staminaDelta = 0 - #Range: > 0 - recoveryDelay = 0 - - [paraglider.on_vehicle] - #Range: > -2147483648 - staminaDelta = 20 - #Range: > 0 - recoveryDelay = 0 - - [paraglider.panic_paragliding] - #Range: > -2147483648 - staminaDelta = -3 - #Range: > 0 - recoveryDelay = 10 - - [paraglider.paragliding] - #Range: > -2147483648 - staminaDelta = -3 - #Range: > 0 - recoveryDelay = 10 - - [paraglider.running] - #Range: > -2147483648 - staminaDelta = -10 - #Range: > 0 - recoveryDelay = 10 - - [paraglider.swimming] - #Range: > -2147483648 - staminaDelta = -6 - #Range: > 0 - recoveryDelay = 10 - - [paraglider.underwater] - #Range: > -2147483648 - staminaDelta = 3 - #Range: > 0 - recoveryDelay = 0 - + +#Configuration file for player states. +#You can adjust stamina delta (negative value means consumption / positive value means gain) and +#recovery delay (in ticks) of all player states registered in the game. +#To reload the config, use the following command: /paraglider reloadPlayerStates +# +[paraglider] + + [paraglider.ascending] + #Range: > -2147483648 + staminaDelta = -3 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.breathing_underwater] + #Range: > -2147483648 + staminaDelta = 20 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.flying] + #Range: > -2147483648 + staminaDelta = 20 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.idle] + #Range: > -2147483648 + staminaDelta = 20 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.midair] + #Range: > -2147483648 + staminaDelta = 0 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.on_vehicle] + #Range: > -2147483648 + staminaDelta = 20 + #Range: > 0 + recoveryDelay = 0 + + [paraglider.panic_paragliding] + #Range: > -2147483648 + staminaDelta = -3 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.paragliding] + #Range: > -2147483648 + staminaDelta = -3 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.running] + #Range: > -2147483648 + staminaDelta = -10 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.swimming] + #Range: > -2147483648 + staminaDelta = -6 + #Range: > 0 + recoveryDelay = 10 + + [paraglider.underwater] + #Range: > -2147483648 + staminaDelta = 3 + #Range: > 0 + recoveryDelay = 0 + diff --git a/minecraft/config/particle_core_config.toml b/minecraft/config/particle_core_config.toml new file mode 100644 index 0000000..7fc14c0 --- /dev/null +++ b/minecraft/config/particle_core_config.toml @@ -0,0 +1,12 @@ +# Don't change this! Version used to track needed updates. +version = 1 +disableParticles = false +byTypeReductions = { } +maxParticlesPerSheet = 8192 +particleRenderDistanceMultiplier = 0.75 +asynchronousTicking = true +reduceAllChance = 0.25 +reduceDecreasedChance = 0.25 +turnOffPotionParticlesV2 = [ + "NONE" +] \ No newline at end of file diff --git a/minecraft/config/particle_core_disabled_optimizations_v2.json b/minecraft/config/particle_core_disabled_optimizations_v2.json new file mode 100644 index 0000000..8244f49 --- /dev/null +++ b/minecraft/config/particle_core_disabled_optimizations_v2.json @@ -0,0 +1,17 @@ +{ + "_Disable_Optimizations_Options": { + "ROTATION": "[Impact: Medium] Disables mixins related to vertex rotation caching (ParticleManagerRotationMixin, BillboardParticleMixin)", + "TYPE": "[Impact: Low to Medium] Disables mixins related to particle disabling and reduction (WorldRendererTypeMixin, ParticleManagerCreatorMixin, FireworksSparkParticleMixin)", + "DECREASE": "[Impact: Low] Disables mixins related particle settings reduction (ALL, DECREASED, MINIMAL) (WorldRendererDecreaseMixin)", + "LIGHTMAP": "[Impact: Medium] Disables mixins related to light map caching (ParticleManagerCachedLightMixin, ParticleBrightnessCacheMixin, ParticleCachePosMixin, ParticleManagerCachedPosMixin)", + "POTION": "[Impact: Low] Disables mixins related to potion particle disabling (LivingEntityMixin)", + "MOVE": "[Impact: Medium] Disables mixins related to particle movement optimization (ParticleMoveAdjustMixin, ParticleCachePosMixin, ParticleManagerCachedPosMixin)", + "VERTEX": "[Impact: HIGH] Disables mixins related to particle vertex drawing optimizations (BillboardParticleVertexMixin, BufferBuilderVertexMixin)", + "COUNT": "[Impact: Variable] Disables mixins related to max particle count setting (ParticleManagerCountMixin)", + "ASYNC": "[Impact: Medium] Disables asynchronous ticking of particles (ParticleManagerAsyncMixin)", + "RENDER_DISTANCE": "[Impact: Variable] Disables mixins that control max particle render distance (ParticleManagerRenderDistanceMixin, ParticleAccessor)" + }, + "disableOptimizations": [ + "NONE" + ] +} \ No newline at end of file diff --git a/minecraft/config/passiveskilltreeadditions-client.toml b/minecraft/config/passiveskilltreeadditions-client.toml new file mode 100644 index 0000000..ee3bb4c --- /dev/null +++ b/minecraft/config/passiveskilltreeadditions-client.toml @@ -0,0 +1,9 @@ + +["Button Settings"] + #X position of the Passive Skill Tree button in the inventory screen + #Range: > 0 + buttonX = 63 + #Y position of the Passive Skill Tree button in the inventory screen + #Range: > 0 + buttonY = 68 + diff --git a/minecraft/config/patchouli-client.toml b/minecraft/config/patchouli-client.toml index ecdf233..61584db 100644 --- a/minecraft/config/patchouli-client.toml +++ b/minecraft/config/patchouli-client.toml @@ -1,16 +1,16 @@ -#Set this to true to disable advancement locking for ALL books, making all entries visible at all times. Config Flag: advancements_disabled -disableAdvancementLocking = false -#Granular list of Book ID's to disable advancement locking for, e.g. [ "botania:lexicon" ]. Config Flags: advancements_disabled_ -noAdvancementBooks = [] -#Enable testing mode. By default this doesn't do anything, but you can use the config flag in your books if you want. Config Flag: testing_mode -testingMode = false -#Set this to the ID of a book to have it show up in players' inventories, replacing the recipe book. -inventoryButtonBook = "" -#Set this to true to use Shift instead of Ctrl for the inventory quick lookup feature. -useShiftForQuickLookup = false -#Set how text overflow should be coped with: overflow the text off the page, truncate overflowed text, or resize everything to fit. Relogin after changing. -#Allowed Values: OVERFLOW, TRUNCATE, RESIZE -textOverflowMode = "RESIZE" -#How long in ticks the quick lookup key needs to be pressed before the book opens -quickLookupTime = 10 - +#Set this to true to disable advancement locking for ALL books, making all entries visible at all times. Config Flag: advancements_disabled +disableAdvancementLocking = false +#Granular list of Book ID's to disable advancement locking for, e.g. [ "botania:lexicon" ]. Config Flags: advancements_disabled_ +noAdvancementBooks = [] +#Enable testing mode. By default this doesn't do anything, but you can use the config flag in your books if you want. Config Flag: testing_mode +testingMode = false +#Set this to the ID of a book to have it show up in players' inventories, replacing the recipe book. +inventoryButtonBook = "" +#Set this to true to use Shift instead of Ctrl for the inventory quick lookup feature. +useShiftForQuickLookup = false +#Set how text overflow should be coped with: overflow the text off the page, truncate overflowed text, or resize everything to fit. Relogin after changing. +#Allowed Values: OVERFLOW, TRUNCATE, RESIZE +textOverflowMode = "RESIZE" +#How long in ticks the quick lookup key needs to be pressed before the book opens +quickLookupTime = 10 + diff --git a/minecraft/config/patchouli_library-client.toml b/minecraft/config/patchouli_library-client.toml new file mode 100644 index 0000000..3a6c621 --- /dev/null +++ b/minecraft/config/patchouli_library-client.toml @@ -0,0 +1,19 @@ + +[config_v1] + #Horizontal offset for the book button, relative to left of inventory panel. + #Range: > -2147483648 + buttonXOffset = 4 + #Vertical offset for the book button, relative to top of inventory panel. + #Range: > -2147483648 + buttonYOffset = -24 + #Horizontal offset for the pinned books buttons, relative to left of inventory panel. + #Range: > -2147483648 + pinnedBooksXOffset = -21 + #Vertical offset for the pinned books buttons, relative to top of inventory panel. + #Range: > -2147483648 + pinnedBooksYOffset = -24 + #Pinned book ids. + pinnedBooks = [] + #Show Patchouli fumo as books list button icon + patchouliFumoAsButtonIcon = false + diff --git a/minecraft/config/paxi/datapack_load_order.json b/minecraft/config/paxi/datapack_load_order.json new file mode 100644 index 0000000..1868fa5 --- /dev/null +++ b/minecraft/config/paxi/datapack_load_order.json @@ -0,0 +1,3 @@ +{ + "loadOrder": [] +} \ No newline at end of file diff --git a/minecraft/config/paxi/datapacks/GobberxCreate.zip b/minecraft/config/paxi/datapacks/GobberxCreate.zip new file mode 100644 index 0000000..15ca306 Binary files /dev/null and b/minecraft/config/paxi/datapacks/GobberxCreate.zip differ diff --git a/minecraft/config/paxi/datapacks/LessStructures-SpacingTweaks-1.20.1-2.1.56.zip b/minecraft/config/paxi/datapacks/LessStructures-SpacingTweaks-1.20.1-2.1.56.zip new file mode 100644 index 0000000..10d3a0e Binary files /dev/null and b/minecraft/config/paxi/datapacks/LessStructures-SpacingTweaks-1.20.1-2.1.56.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Advanced_Peripherals_v3.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Advanced_Peripherals_v3.zip new file mode 100644 index 0000000..33ea347 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Advanced_Peripherals_v3.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Desert_Temples_v8.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Desert_Temples_v8.zip new file mode 100644 index 0000000..fa346f7 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Desert_Temples_v8.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Dungeons_v5.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Dungeons_v5.zip new file mode 100644 index 0000000..3ef0a65 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Dungeons_v5.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Jungle_Temples_v6.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Jungle_Temples_v6.zip new file mode 100644 index 0000000..9028c12 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Jungle_Temples_v6.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Monuments_v6.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Monuments_v6.zip new file mode 100644 index 0000000..26a47e0 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Monuments_v6.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Strongholds_v5.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Strongholds_v5.zip new file mode 100644 index 0000000..4f3b606 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Strongholds_v5.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Witch_Huts_v4.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Witch_Huts_v4.zip new file mode 100644 index 0000000..c579226 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Better_Witch_Huts_v4.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Bountiful_v3.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Bountiful_v3.zip new file mode 100644 index 0000000..c0bc1b1 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Bountiful_v3.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Bygone_Nether_v2.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Bygone_Nether_v2.zip new file mode 100644 index 0000000..d743039 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Bygone_Nether_v2.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Farmers_Delight_v6.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Farmers_Delight_v6.zip new file mode 100644 index 0000000..f5cc360 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Farmers_Delight_v6.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Hexerei_v6.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Hexerei_v6.zip new file mode 100644 index 0000000..b35ce27 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Hexerei_v6.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-Immersive_Engineering_v7.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-Immersive_Engineering_v7.zip new file mode 100644 index 0000000..522330d Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-Immersive_Engineering_v7.zip differ diff --git a/minecraft/config/paxi/datapacks/Repurposed_Structures-More_Villagers_v10.zip b/minecraft/config/paxi/datapacks/Repurposed_Structures-More_Villagers_v10.zip new file mode 100644 index 0000000..71e96f3 Binary files /dev/null and b/minecraft/config/paxi/datapacks/Repurposed_Structures-More_Villagers_v10.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-FarmersDelightCompat-1.20.1-1.0.3.zip b/minecraft/config/paxi/datapacks/SkyVillages-FarmersDelightCompat-1.20.1-1.0.3.zip new file mode 100644 index 0000000..8fa10e9 Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-FarmersDelightCompat-1.20.1-1.0.3.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-GraveyardCompat-1.20.1-1.0.3.zip b/minecraft/config/paxi/datapacks/SkyVillages-GraveyardCompat-1.20.1-1.0.3.zip new file mode 100644 index 0000000..16ac578 Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-GraveyardCompat-1.20.1-1.0.3.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-LetsDoBakery-1.20.1-1.0.4.zip b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoBakery-1.20.1-1.0.4.zip new file mode 100644 index 0000000..6e6c052 Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoBakery-1.20.1-1.0.4.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-LetsDoBeachparty-1.20.1-1.0.4.1.zip b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoBeachparty-1.20.1-1.0.4.1.zip new file mode 100644 index 0000000..dee5be9 Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoBeachparty-1.20.1-1.0.4.1.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-LetsDoBrewery-1.20.1-1.0.4.1.zip b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoBrewery-1.20.1-1.0.4.1.zip new file mode 100644 index 0000000..1be1fed Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoBrewery-1.20.1-1.0.4.1.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-LetsDoCandlelight-1.20.1-1.0.4.zip b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoCandlelight-1.20.1-1.0.4.zip new file mode 100644 index 0000000..df42b20 Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoCandlelight-1.20.1-1.0.4.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-LetsDoHerbalBrews-1.20.1-1.0.4.zip b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoHerbalBrews-1.20.1-1.0.4.zip new file mode 100644 index 0000000..4605ea1 Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoHerbalBrews-1.20.1-1.0.4.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-LetsDoVinery-1.20.1-1.0.4.zip b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoVinery-1.20.1-1.0.4.zip new file mode 100644 index 0000000..0340560 Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-LetsDoVinery-1.20.1-1.0.4.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-SupplementariesCompat-1.20.1-1.0.3.1.zip b/minecraft/config/paxi/datapacks/SkyVillages-SupplementariesCompat-1.20.1-1.0.3.1.zip new file mode 100644 index 0000000..addc7ba Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-SupplementariesCompat-1.20.1-1.0.3.1.zip differ diff --git a/minecraft/config/paxi/datapacks/SkyVillages-WaystonesCompat-1.20.1-1.0.3-fabric.zip b/minecraft/config/paxi/datapacks/SkyVillages-WaystonesCompat-1.20.1-1.0.3-fabric.zip new file mode 100644 index 0000000..e218c28 Binary files /dev/null and b/minecraft/config/paxi/datapacks/SkyVillages-WaystonesCompat-1.20.1-1.0.3-fabric.zip differ diff --git a/minecraft/config/paxi/datapacks/VB-MobVariantCompat1.4.1.zip b/minecraft/config/paxi/datapacks/VB-MobVariantCompat1.4.1.zip new file mode 100644 index 0000000..e05bf1f Binary files /dev/null and b/minecraft/config/paxi/datapacks/VB-MobVariantCompat1.4.1.zip differ diff --git a/minecraft/config/paxi/datapacks/WDA-NoFlyingStructures-OWEND-1.18.2-1.20.1.zip b/minecraft/config/paxi/datapacks/WDA-NoFlyingStructures-OWEND-1.18.2-1.20.1.zip new file mode 100644 index 0000000..8b891e2 Binary files /dev/null and b/minecraft/config/paxi/datapacks/WDA-NoFlyingStructures-OWEND-1.18.2-1.20.1.zip differ diff --git a/minecraft/config/paxi/datapacks/WDA-VanillaLoot-1.18.2-1.19.2-0.0.1.zip b/minecraft/config/paxi/datapacks/WDA-VanillaLoot-1.18.2-1.19.2-0.0.1.zip new file mode 100644 index 0000000..a785ce0 Binary files /dev/null and b/minecraft/config/paxi/datapacks/WDA-VanillaLoot-1.18.2-1.19.2-0.0.1.zip differ diff --git a/minecraft/config/paxi/datapacks/ctov-croptopia-v2-1-add-on.zip b/minecraft/config/paxi/datapacks/ctov-croptopia-v2-1-add-on.zip new file mode 100644 index 0000000..d5b6678 Binary files /dev/null and b/minecraft/config/paxi/datapacks/ctov-croptopia-v2-1-add-on.zip differ diff --git a/minecraft/config/paxi/resourcepacks/alex's naturals.zip b/minecraft/config/paxi/resourcepacks/alex's naturals.zip new file mode 100644 index 0000000..3764c19 Binary files /dev/null and b/minecraft/config/paxi/resourcepacks/alex's naturals.zip differ diff --git a/minecraft/config/paxi/resourcepacks/tconjeidark.zip b/minecraft/config/paxi/resourcepacks/tconjeidark.zip new file mode 100644 index 0000000..16ed002 Binary files /dev/null and b/minecraft/config/paxi/resourcepacks/tconjeidark.zip differ diff --git a/minecraft/config/paxi/resourcepacks/waystones_1.20.1_update_5.zip b/minecraft/config/paxi/resourcepacks/waystones_1.20.1_update_5.zip new file mode 100644 index 0000000..7470e83 Binary files /dev/null and b/minecraft/config/paxi/resourcepacks/waystones_1.20.1_update_5.zip differ diff --git a/minecraft/config/pickletweaks-client.toml b/minecraft/config/pickletweaks-client.toml new file mode 100644 index 0000000..a41bcea --- /dev/null +++ b/minecraft/config/pickletweaks-client.toml @@ -0,0 +1,11 @@ + +#General configuration options +[General] + #The harvest level names used by the Tool Info Tweak tooltips. + harvestLevelNames = ["Stone", "Iron", "Diamond", "Obsidian", "Netherite"] + +#Disable features. +[Features] + #Tool Information Tooltips enabled? + toolInfoTooltip = true + diff --git a/minecraft/config/pickletweaks-common.toml b/minecraft/config/pickletweaks-common.toml new file mode 100644 index 0000000..24dcfdc --- /dev/null +++ b/minecraft/config/pickletweaks-common.toml @@ -0,0 +1,96 @@ + +#General configuration options. +[General] + #The effective radius of the Magnet. + #Range: 1.0 ~ 16.0 + magnetRange = 7.0 + #Should fake players be able to use watering cans? + fakePlayerWatering = true + #Here you can specify a list of tools that shouldn't have tool info tooltips. + #Ex. ["minecraft:iron_pickaxe", "minecraft:iron_axe"] + #You can use tags for tools by doing tag:. + #Ex: ["tag:minecraft:tools"] + #You can also blacklist entire mods by doing :* + #Ex. ["pickletweaks:*"] + toolInfoTooltipBlacklist = ["silentgear:*"] + +#Disable specific features. +[Features] + #Enable Colored Cobblestone? + coloredCobblestone = false + #Enable Smooth Glowstone? + smoothGlowstone = false + #Enable Coal and Charcoal Piece? + coalPiece = false + #Enable Diamond and Emerald Apples? + apples = false + #Enable Watering Can? + wateringCan = false + #Enable Meshes? + meshes = false + #Enable Magnet? + magnet = false + #Enable Night Vision Goggles? + nightVisionGoggles = false + #Enable Paxels? + paxels = false + #Enable Flint tools and armor? + flintGear = false + #Enable Emerald tools and armor? + emeraldGear = false + #Enable right click crop harvesting? + rightClickHarvest = true + #Enable Sickles? + sickles = false + #Enable Scythes? + scythes = false + +#Crafting grid tool repair configuration options. +["Grid Repair"] + #Should Crafting Grid Tool Repairing be enabled? + enabled = true + #How much material required to fully repair a tool. + #Range: 1 ~ 8 + cost = 3 + #How much additional material required to repair enchanted tools. + #Range: 0 ~ 8 + enchantmentCost = 4 + #Crafting grid repair removes all non-curse enchantments. + stripEnchantments = false + #Should default repair materials be disabled? Doing this makes it so ONLY the custom materials work. + disableDefaults = false + #Enabling this makes it so custom repair materials override the default ones for the tools specified. + overrideMode = false + #Makes it so shovels need 50% less material to repair. + cheapShovel = false + #Makes it so shears need 50% less material to repair. + cheapShears = false + #Tools that should not be repairable in the crafting grid. + #Ex: ["minecraft:stone_pickaxe", "minecraft:stone_sword"] + #You can use tags for tools by doing tag:. + #Ex: ["tag:minecraft:tools"] + #You can also blacklist entire mods by doing :* + #Ex. ["pickletweaks:*"] + blacklist = [] + #Here you can specify custom repair materials for tools. + #Ex: ["minecraft:stone_shovel=minecraft:stick"] + #You can use tags for materials by doing tag:. + #Ex: ["minecraft:stone_shovel=tag:forge:ingots/iron"] + #You can also use tags for tools by doing tag:. + #Ex: ["tag:minecraft:tools=tag:forge:ingots/iron"] + #You can specify how effective the material is by appending @ + #Ex: ["minecraft:stone_shovel=minecraft:stick@0.5"] + overrides = ["minecraft:shears=minecraft:iron_ingot", "pickletweaks:flint_shears=minecraft:flint"] + +#Disable and configure tweaks. +[Tweaks] + #Enabled tools not breaking? + toolBreaking = true + #Tools and weapons that should be ineffective. + #Ex: ["minecraft:stone_pickaxe", "minecraft:stone_sword"] + #You can use tags for tools by doing tag:. + #Ex: ["tag:minecraft:tools"] + #You can also whitelist entire mods by doing :* + #Ex. ["pickletweaks:*"] + uselessTools = [] + diff --git a/minecraft/config/pickupnotifier/pickupnotifier-client.toml b/minecraft/config/pickupnotifier/pickupnotifier-client.toml new file mode 100644 index 0000000..f809551 --- /dev/null +++ b/minecraft/config/pickupnotifier/pickupnotifier-client.toml @@ -0,0 +1,68 @@ + +[display] + #Should the picked up amount be shown when it's just a single item. + display_single_count = true + #Add the total amount of an item in your inventory to the entry. + inventory_count = false + #Mode for drawing a background behind entries for better visibility. 'CHAT' is similar to the chat background, 'TOOLTIP' uses the tooltip background rendering instead. + #Allowed Values: NONE, CHAT, TOOLTIP + entry_background = "NONE" + #Add the name of the item to the entry. + display_item_name = true + #Where and if to display the amount of items picked up. 'SPRITE' will render the amount on the item sprite like in inventories, 'TEXT' will add a dedicated text including the amount to the item name display. + #Allowed Values: OFF, SPRITE, TEXT, BOTH + display_amount = "TEXT" + #Show a small sprite next to the name of each entry showing its contents. + draw_sprites = true + #Color of the entry name text. + #Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + default_color = "WHITE" + #Ignore rarity of items and always use color specified in "Text Color" instead. + ignore_rarity = false + #Screen corner for entry list to be drawn in. + #Allowed Values: TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT + screen_corner = "BOTTOM_RIGHT" + #Offset on x-axis from screen border. + #Range: > 0 + offset_x = 8 + #Offset on y-axis from screen border. + #Range: > 0 + offset_y = 4 + #Percentage of relative screen height entries are allowed to fill at max. + #Range: 0.0 ~ 1.0 + max_height = 0.5 + #Scale of entries. A lower scale will make room for more rows to show. Works together with "GUI Scale" option in "Video Settings". + #Range: 1 ~ 24 + scale = 4 + +[general] + #Prevent items from being added to the pick-up log when in creative mode. + disable_in_creative = false + #Show the value of experience points collected instead of the amount of individual orbs. + experience_value = true + #Force-run the mod on the client-side only. + #Only enable this when there are problems, e. g. the same pick-up being logged multiple times. Partial item stack pick-ups (when the inventory is full) won't show, and backpack compat won't work. + #When playing on a server without this mod this option will be used automatically. + force_client_only = false + #Show item entities the player has collected in the pick-up notifications. + include_items = true + #Show experience orbs the player has collected in the pick-up notifications. + include_experience = true + #Show shot arrows the player has collected in the pick-up notifications. + include_arrows = true + +[behavior] + #Combine entries of the same type instead of showing each one individually. + #Allowed Values: ALWAYS, NEVER, EXCLUDE_NAMED + combine_entries = "EXCLUDE_NAMED" + #Amount of ticks each entry will be shown for. Set to 0 to only remove entries when space for new ones is needed. + #Range: > 0 + display_time = 80 + #Make outdated entries slowly move out of the screen instead of disappearing in place. + move_out_of_screen = true + #Amount of ticks it takes for an entry to move out of the screen. Value cannot be larger than "Display Time". + #Range: > 0 + move_time = 20 + #Make outdated entry names slowly fade away instead of simply vanishing. + fade_away = true + diff --git a/minecraft/config/pickupnotifier/pickupnotifier-server.toml b/minecraft/config/pickupnotifier/pickupnotifier-server.toml new file mode 100644 index 0000000..241e274 --- /dev/null +++ b/minecraft/config/pickupnotifier/pickupnotifier-server.toml @@ -0,0 +1,6 @@ +#Collect partial pick-up entries (when there isn't enough room in your inventory) in the log. +#Might accidentally log items that have not been picked up, therefore it can be disabled. +partial_pick_ups = true +#Show entries for items picked up that don't go to the player's inventory. This will enable compatibility with some backpack mods, but might also falsely log items the player never actually receives; depending on the backpack implementation. +backpack_integration = true + diff --git a/minecraft/config/pingwheel.json b/minecraft/config/pingwheel.json new file mode 100644 index 0000000..15c97c5 --- /dev/null +++ b/minecraft/config/pingwheel.json @@ -0,0 +1,17 @@ +{ + "pingVolume": 100, + "pingDuration": 7, + "pingDistance": 2048, + "correctionPeriod": 1.0, + "itemIconVisible": true, + "directionIndicatorVisible": true, + "nameLabelForced": false, + "pingSize": 100, + "channel": "", + "removeRadius": 10, + "raycastDistance": 1024, + "safeZoneLeft": 5, + "safeZoneRight": 5, + "safeZoneTop": 5, + "safeZoneBottom": 60 +} \ No newline at end of file diff --git a/minecraft/config/pingwheel.server.json b/minecraft/config/pingwheel.server.json new file mode 100644 index 0000000..150134d --- /dev/null +++ b/minecraft/config/pingwheel.server.json @@ -0,0 +1,6 @@ +{ + "defaultChannelMode": "AUTO", + "playerTrackingEnabled": true, + "msToRegenerate": 1000, + "rateLimit": 5 +} \ No newline at end of file diff --git a/minecraft/config/pipezlagfix-common.toml b/minecraft/config/pipezlagfix-common.toml new file mode 100644 index 0000000..d31a5aa --- /dev/null +++ b/minecraft/config/pipezlagfix-common.toml @@ -0,0 +1,11 @@ + +[general] + #Whether the mod is enabled. + enabled = true + #The initial backoff delay in ticks when an item pipe fails to insert items. + #Range: 1 ~ 1200 + baseBackoffTicks = 2 + #The maximum backoff delay in ticks for item pipes. + #Range: 1 ~ 1200 + maxBackoffTicks = 32 + diff --git a/minecraft/config/pneumaticcraft-client.toml b/minecraft/config/pneumaticcraft-client.toml new file mode 100644 index 0000000..7c7ebfc --- /dev/null +++ b/minecraft/config/pneumaticcraft-client.toml @@ -0,0 +1,84 @@ + +[general] + #Enable Aphorism Tile Drama! http://mc-drama.herokuapp.com/ + aphorism_drama = true + #Defines which widgets are shown in the Programmer GUI: easy, medium, or advanced + #Allowed Values: EASY, MEDIUM, ADVANCED + programmer_difficulty = "EASY" + #Show tank fluids with the The One Probe when sneaking? Note that TOP has its own support for showing tanks, which by default requires a Probe to be held, or a Probe-enabled helmet to be worn. + top_shows_fluids = false + #Tint Logistics configuration GUI backgrounds according to the colour of the logistics frame you are configuring. + logistics_gui_tint = true + #Should GUI side tabs be shown with a beveled edge? Setting to false uses a plain black edge, as in earlier versions of the mod. + gui_bevel = true + #Always show the pressure durability bar for pressurizable items, even when full? + always_show_pressure_durability_bar = true + #Should tube modules emit redstone play redstone particle effects when active? + tube_module_redstone_particles = false + #Should widgets in the GUI Remote Editor be snapped to a 4x4 grid? + gui_remote_grid_snap = true + #Should the SSP game pause when the Programmer GUI is open (does not apply in SMP)? + programmer_gui_pauses = false + #Should players holding an Amadron Tablet get a notification message when offers are shuffled periodically? + notify_amadron_offer_updates = true + #Should Pressure Chambers show air particle effects inside themselves when pressurized? + pressure_chamber_particles = false + #Should the Jackhammer continually show a HUD indicating break modes other than basic single-block? If false, the mode HUD will show only when switching modes + jackhammer_hud = true + +[armor] + #Intensity of the FOV modification when using Pneumatic Leggings speed boost: 0.0 for no FOV modification, higher values zoom out more. Note: non-zero values may cause FOV clashes with other mods. + #Range: 0.0 ~ 1.0 + leggings_fov_factor = 0.0 + #Maximum time, as a percentage of the tick, that the Pneumatic Helmet Block Tracker may take when active and scanning blocks. Larger values mean more rapid update of block information, but potentially greater impact on client FPS. + #Range: 1 ~ 100 + block_tracker_max_time_per_tick = 10 + #Enable the Pneumatic Helmet Coordinate Tracker pathfinder + path_enabled = false + #True if the Pneumatic Helmet Coordinate Tracker pathfinder should draw lines, false for tiles. + wire_path = false + #Should the Pneumatic Helmet Coordinate Tracker pathfinder path be visible through blocks? + xray_enabled = false + #How frequently should the Pneumatic Helmet Coordinate Tracker pathfinder path be recalculated? + #Allowed Values: SLOW, NORMAL, FAST + path_update_setting = "NORMAL" + #True: show pressure as numbers. False: show pressure as horizontal bar. + show_pressure_numerically = true + #Should enchantment glint be shown on Pneumatic Armor pieces? Disable if you don't like the enchantment glint messing up your carefully chosen colour scheme... + show_enchant_glint = true + #Maximum screen roll in degrees when banking left or right during Jet Boots flight - cosmetic only + #Range: 0 ~ 90 + max_jet_boots_roll = 35 + #Which component initialisation messages to display when armor is booting up + #Allowed Values: ALL, ENABLED_ONLY, NONE + component_init_messages = "ALL" + +[sound] + #Volume level of the Elevator while running + #Range: 0.0 ~ 2.0 + elevator_volume_running = 1.0 + #Volume level of the Elevator *clunk* while starting/stopping + #Range: 0.0 ~ 2.0 + elevator_volume_start_stop = 1.0 + #Volume level of air leaks from unconnected tubes/machines. Beware: turning this off could lead to undetected leaks wasting pressure forever! + #Range: 0.0 ~ 2.0 + air_leak_volume = 1.0 + #Volume level of the hand-held Minigun + #Range: 0.0 ~ 2.0 + minigun_volume_held = 0.75 + #Volume level of drone-mounted Miniguns + #Range: 0.0 ~ 2.0 + minigun_volume_drone = 1.0 + #Volume level of the Sentry Turret's Minigun + #Range: 0.0 ~ 2.0 + minigun_volume_sentry_turret = 1.0 + #Volume level of the Jet Boots in normal flight mode + #Range: 0.0 ~ 2.0 + jetboots_volume = 1.0 + #Volume level of the Jet Boots when in Builder Mode + #Range: 0.0 ~ 2.0 + jetboots_volume_builder_mode = 0.3 + #Volume level of the Jackhammer + #Range: 0.0 ~ 2.0 + jackhammer_volume = 0.7 + diff --git a/minecraft/config/pneumaticcraft-common.toml b/minecraft/config/pneumaticcraft-common.toml new file mode 100644 index 0000000..519e90d --- /dev/null +++ b/minecraft/config/pneumaticcraft-common.toml @@ -0,0 +1,366 @@ + +[General] + #Enable mod dungeon loot generation + enable_dungeon_loot = true + #Efficiency of fuel buckets as furnace fuel (default 0.05 means 1 bucket of LPG smelts 450 items in a vanilla furnace) + #Range: 0.0 ~ 1.7976931348623157E308 + fuel_bucket_efficiency = 0.05 + #Maximum number of blocks in the area defined in an Area Programming Puzzle Piece + #Range: > 1 + max_programming_area = 250000 + #Fluids at least as hot as this temperature (Kelvin) will be auto-registered as Liquid Compressor fuels, the quality being dependent on fluid temperature. + #Range: > 0 + min_fluid_fuel_temperature = 373 + #Should dyes be used up when coloring things (Drones, Logistics Modules, Redstone Modules)? + use_up_dyes_when_coloring = false + #Cooldown, in ticks, between subsequent uses of Bandages. Set to 0 to disable cooldowns entirely. + #Range: > 0 + bandage_cooldown = 160 + #Time, in ticks, it takes to use a bandage. + #Range: > 1 + bandage_use_time = 40 + #Health points restored on bandage use (1 health = half a heart). + #Range: 1.0 ~ 1.7976931348623157E308 + bandage_health_restored = 6.0 + +[Worldgen] + #Oil worldgen whitelist by dimension ID: add dimension ID's to this list if you want oil lake worldgen to happen ONLY in those dimensions. You can wildcard the path; e.g 'modid:*' whitelists ALL dimensions of namespace 'modid'. If this is empty, it is ignored, and 'oil_world_gen_dimension_blacklist' will be checked instead. + oil_world_gen_dimension_whitelist = [] + #Oil worldgen blacklist by dimension ID: add dimension ID's to this list if you don't want oil lake worldgen to happen there. You can wildcard this; e.g 'modid:*' blacklists ALL dimensions of namespace 'modid'. + oil_world_gen_dimension_blacklist = [] + +["Machine Properties"] + #Aerial Interface backwards compat: allow pre-0.8.0 behaviour of getting player's armor inventory from top face, even with Dispenser Upgrade installed + aerial_interface_armor_compat = true + #Chance per tick of Crop Supports causing a growth tick. The default, 0.002, is roughly 2.5 times faster than the vanilla growth rate + #Range: 0.0 ~ 1.7976931348623157E308 + crop_sticks_growth_boost_chance = 0.002 + #Changing this value will alter the pressurized air production of the Electric Compressor. The input, EU, will stay the same + #Range: > 0 + electric_compressor_efficiency = 40 + #Base chance (1/x) per tick of a lightning strike on/around the Electrostatic Generator + #Range: > 0 + electrostatic_lightning_chance = 100000 + #The max height of an elevator per stacked Elevator Base block. + #Range: 1 ~ 256 + elevator_base_blocks_per_base = 6 + #The amount of air produced by using 100 FE (Forge Energy) in the flux compressor + #Range: > 0 + flux_compressor_efficiency = 40 + #The amount to multiply the air production of the solar compressor by. + #Range: 0.0 ~ 1.7976931348623157E308 + solar_compressor_multiplier = 1.0 + #Can the Kerosene Lamp burn any kind of fuel? If false, only Kerosene can be burnt + kerosene_lamp_can_use_any_fuel = true + #Kerosene Lamp fuel efficiency: higher values mean fuel will last longer in the lamp + #Range: 0.0 ~ 1.7976931348623157E308 + kerosene_lamp_fuel_efficiency = 1.0 + #The amount of air produced by using 100 MJ (Minecraft Joules) in the flux compressor + #Range: > 0 + kinetic_compressor_efficiency = 40 + #Can the Liquid Hopper absorb/dispense fluids into the world with a Dispenser Upgrade? + liquid_hopper_dispenser = true + #Can the Omnidirectional Hopper dispense items into the world with a Dispenser Upgrade? + omni_hopper_dispenser = true + #Are players in Creative mode exempt from Security Station block protection? If false, only server ops are exempt (command permission >= 2) + security_station_creative_players_exempt = false + #Can Security Stations be hacked? If set to false, Security Stations are purely a grief protection feature with no hacking minigame + security_station_allow_hacking = true + #The amount of air produced for 1 pump cycle in the manual compressor + #Range: > 0 + manual_compressor_air_per_cycle = 1000 + #The amount of hunger consumed from the player for 1 pump cycle step in the manual compressor. For comparison, sprinting consumes 0.1 hunger per meter sprinted. + #Range: 0.0 ~ 40.0 + manual_compressor_hunger_drain_per_cycle_step = 0.1 + #Whether to allow fake players to use the manual compressor + manual_compressor_allow_fake_players = false + #The amount of FE (Forge Energy) produced by using 100mL of air in the Pneumatic Dynamo + #Range: > 0 + pneumatic_dynamo_efficiency = 40 + #The amount of MJ (Minecraft Joules) produced by using 100mL of air in the Pneumatic Dynamo + #Range: > 0 + pneumatic_engine_efficiency = 40 + #Changing this value will alter the pressurized air usage of the Pneumatic Generator. The output, EU, will stay the same. + #Range: > 0 + pneumatic_generator_efficiency = 40 + #Changing this value will alter the hydraulic bar production of the Pneumatic Pump. The input, air, will stay the same + #Range: > 0 + pneumatic_pump_efficiency = 40 + #Minimum pressure required for the Pressurized Spawner to run + #Range: 1.0 ~ 20.0 + pressurized_spawner_min_pressure = 10.0 + #Speed multiplier per speed upgrade: speed mult = speedUpgradeSpeedMultiplier ^ num_of_speed_upgrades + #Range: 1.0 ~ 2.0 + speed_upgrade_speed_multiplier = 1.5 + #Fuel usage / heat gen multiplier per speed upgrade: usage mult = speedUpgradeUsageMultiplier ^ num_of_speed_upgrades + #Range: 1.0 ~ 2.0 + speed_upgrade_usage_multiplier = 1.649999976158142 + #Blacklist items from being allowed in the Pressure Chamber disenchanting system. This is a starts-with string match, so you can match by mod, or individual item names as you need. Blacklisted by default are Quark Ancient Tomes, and all Tetra items; both can lead to enchantment duping as they have special enchantment mechanics. + disenchanting_blacklist = ["quark:ancient_tome", "tetra:"] + #ID's of dimensions in which the Aerial Interface is not allowed to operate. You can use wildcarded dimensions here, e.g. 'somemod:*'. + aerial_interface_dimension_blacklist = [] + #Minimum interval in ticks which the player can use the Vortex Cannon to boost their own speed + #Range: > 1 + vortex_cannon_player_boost_rate = 10 + +["Pneumatic Armor"] + #Jetboots air usage in mL/tick (per Jet Boots Upgrade) + #Range: > 0 + jet_boots_air_usage = 12 + #Jetboots height limit before cutting out, relative to world max build height + #Range: > -2147483648 + jet_boots_height_limit = 64 + #Base Pneumatic Armor startup time in ticks (before Speed Upgrades) + #Range: > 20 + armor_startup_time = 200 + #Flippers Upgrade speed boost when in water and feet on ground + #Range: 0.0 ~ 1.0 + flippers_speed_boost_ground = 0.03 + #Flippers Upgrade speed boost when floating in water + #Range: 0.0 ~ 1.0 + flippers_speed_boost_floating = 0.045 + #Air usage for armor repair, in mL per Item Life Upgrade per point of damage repaired + #Range: > 0 + repair_air_usage = 100 + #Air usage for Magnet Upgrade, in mL per item or XP orb attracted + #Range: > 0 + magnet_air_usage = 20 + #Air used per point of 'player air' restored by the Scuba Upgrade + #Range: > 1 + scuba_multiplier = 8 + +[Advanced] + #When set to true, the Kerosene Lamp's fake air blocks won't be registered and therefore removed from the world. Useful if this causes trouble (it shouldn't though) + disable_kerosene_lamp_fake_air_block = false + #The minimum interval in ticks between which fluid tank contents should be synced to clients. Smaller values mean smoother visual tank updates, but more of a performance cost in terms of network syncing. Note that fluid tank sync packets are also only sent when a fluid tank changes by more than 1% of its capacity, or 1000mB, whichever is smaller. + #Range: 1 ~ 100 + fluid_tank_update_rate = 10 + #Precision to which pressurizable item air levels are synced to client. Default of 10 is precise enough to show pressure to 1 decimal place, which is what is display in client tooltips & pneumatic armor HUD. Lower values will sync less precisely, reducing server->client network traffic. Values higher than 10 are not recommended (will cause extra network traffic for no benefit). + #Range: 1 ~ 100 + pressurizable_sync_precision = 10 + #Don't remove a water source block when picking up (drones, liquid hoppers, gas lift) if it has at least two water source neighbours. This can reduce lag due to frequent block updates, and can also potentially make water import much faster. Set this to false if you want no-infinite-water rules in a world, or want to limit the speed of water importing to vanilla block update rates. + dont_update_infinite_water_sources = true + #When set to true, server will strip NBT data from pressurizable items (pneumatic armor, drones...) which the client doesn't care about. Good for saving on network chatter, but can cause players to be kicked under some circumstances. If this occurs, set this config value to false. + nbt_to_client_modification = true + +["Micromissile Properties"] + #Base explosion damage (modified by missile setup) + #Range: 0.0 ~ 1.7976931348623157E308 + base_explosion_damage = 1.0 + #Do micromissile explosions cause terrain damage? Note: when set to true, the 'tntExplosionDropDecay' gamerule is used to determine block drops. + damage_terrain = false + #Do micromissile explosions start fires? + start_fires = false + #Cooldown for missile firing in ticks + #Range: > 0 + launch_cooldown = 15 + #Base fueled-flight duration in ticks. After this, missiles will drop from the sky. + #Range: > 0 + lifetime = 300 + #Hard missile lifetime in ticks. After this, missiles will immediately explode. Value must be greater than or equal to the 'lifetime' setting. + #Range: > 0 + max_lifetime = 600 + #Number of micromissiles per pod + #Range: > 0 + missile_pod_size = 100 + +["Minigun Properties"] + #Armor Piercing Ammo damage multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + ap_ammo_damage_multiplier = 1.25 + #Armor Piercing Ammo percentage chance to ignore target's armor + #Range: 1 ~ 100 + ap_ammo_ignore_armor_chance = 100 + #Armor Piercing Ammo cartridge size + #Range: 1 ~ 30000 + armor_piercing_ammo_cartridge_size = 250 + #Base bullet damage of the Sentry Gun, Handheld Minigun, and Drone Minigun, before ammo bonuses are considered + #Range: 0.0 ~ 1.7976931348623157E308 + base_damage = 4.0 + #Base range of Minigun, before Range Upgrades are considered + #Range: 5 ~ 100 + base_range = 50 + #Explosive Ammo cartridge size + #Range: 1 ~ 30000 + explosive_ammo_cartridge_size = 125 + #Minigun Explosive Ammo damage multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + explosive_ammo_damage_multiplier = 0.2 + #Explosive Ammo base percentage chance to cause an explosion + #Range: > 0 + explosive_ammo_explosion_chance = 50 + #Minigun Explosive Ammo explosion power (ref: 2 = creeper, 4 = TNT + #Range: 0.0 ~ 1.7976931348623157E308 + explosive_ammo_explosion_power = 1.5 + #Does Minigun Explosive Ammo damage terrain? + explosive_ammo_terrain_damage = false + #Freezing Ammo base percentage chance to form ice or snow on blocks which have been hit + #Range: 0 ~ 100 + freezing_ammo_block_ice_chance = 10 + #Freezing Ammo cartridge size + #Range: > 0 + freezing_ammo_cartridge_size = 500 + #Freezing Ammo base percentage chance to form ice on entities which have been hit + #Range: 0 ~ 100 + freezing_ammo_entity_ice_chance = 20 + #Damage done to entities within the fake 'ice' blocks cause by freezing ammo + #Range: 0.0 ~ 1.7976931348623157E308 + freezing_ammo_fake_ice_damage = 1.0 + #Incendiary ammo base percentage chance to ignite blocks + #Range: 1 ~ 100 + incendiary_ammo_block_ignite_chance = 20 + #Incendiary Ammo cartridge size + #Range: 1 ~ 30000 + incendiary_ammo_cartridge_size = 500 + #Incendiary ammo base percentage chance to ignite entities + #Range: 1 ~ 100 + incendiary_ammo_entity_ignite_chance = 100 + #Incendiary ammo fire duration on target entities (seconds) + #Range: > 0 + incendiary_ammo_fire_duration = 8 + #Percentage chance per shot of potion-tipped ammo proc'ing the potion effect, before Dispenser Upgrades are considered + #Range: 1 ~ 100 + potion_proc_chance = 7 + #Standard Ammo cartridge size + #Range: 1 ~ 30000 + standard_ammo_cartridge_size = 1000 + #Weighted Ammo air usage multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + weighted_ammo_air_usage_multiplier = 8.0 + #Weighted Ammo cartridge size + #Range: 1 ~ 30000 + weighted_ammo_cartridge_size = 250 + #Weighted Ammo damage multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + weighted_ammo_damage_multiplier = 2.5 + #Weighted Ammo range multiplier (relative to standard ammo) + #Range: 0.0 ~ 1.7976931348623157E308 + weighted_ammo_range_multiplier = 0.2 + #Show particles when a block is hit by minigun fire? Looks good, but consumes some network bandwidth. + block_hit_particles = true + +[Integration] + #Immersive Engineering: External Heater heat/FE. The amount of PneumaticCraft heat added by using 1 FE in the heater. + #Range: 0.0 ~ 1.7976931348623157E308 + ie_external_heater_heat_per_fe = 0.01 + #Immersive Engineering: External Heater FE/t. Set to 0 to disable External Heater integration entirely. + #Range: > 0 + ie_external_heater_fe_per_tick = 100 + #Mekanism thermal resistance multiplier. Larger values mean slower heat transfer between Mekanism and PneumaticCraft blocks. + #Range: 1.0 ~ 1.7976931348623157E308 + mek_thermal_resistance_factor = 5.0 + #Mekanism <-> PneumaticCraft heat conversion efficiency. Set to 0 to disable Mekanism heat integration entirely. Note that Mekanism and PNC use a similar heat system, but scale things quite differently (Mekanism heaters produces a LOT of heat by PneumaticCraft standards), so conversion efficiency tuning is important for inter-mod balance. + #Range: 0.0 ~ 2.0 + mek_thermal_conversion_efficiency = 0.01 + #Volume boost multiplier for pressurizable items with the CoFH Holding enchantment; air volume is multiplied by (1 + level_of_holding_enchantment) x this value. Set to 0 to disallow pressurizable items being enchanted with the Holding enchantment at all. + #Range: 0.0 ~ 1.7976931348623157E308 + cofh_holding_multiplier = 1.0 + +[Recipes] + #Does Molten Plastic solidify to Plastic Sheets when poured into the world? If set to false, then Heat Frame cooling is the only other way to make Plastic Sheets (by default). + in_world_plastic_solidification = true + #Is in-world Yeast crafting allowed (making more Yeast Culture by pouring Water next to a Yeast Culture block with Sugar in it)? If set to false, then the default TPP Mushroom & Water -> Yeast Culture recipe is the only way to get Yeast Culture. + in_world_yeast_crafting = true + +[Amadron] + #Number of periodic offers randomly selected for the 'live' offer list. Note: this a maximum, and the actual number chosen each time may be less. Periodic offers are those offers which have a static: false field in their recipe JSON. + #Range: > 0 + numPeriodicOffers = 10 + #Number of villager offers randomly selected for the 'live' offer list. Note: this a maximum, and the actual number chosen each time may be less. + #Range: > 0 + numVillagerOffers = 20 + #Time in ticks between each periodic offer reshuffle (24000 ticks = one Minecraft day) + #Range: > 1000 + reshuffleInterval = 24000 + #Max number of custom trades a (non-admin) player may add + #Range: > 0 + max_trades_per_player = 50 + #Broadcast a notification when any player adds a custom trade + notify_of_trade_addition = true + #Broadcast a notification when any player removes a custom trade + notify_of_trade_removal = true + #Broadcast a notification when a custom Amadron trade is made + notify_of_deal_made = true + #Amadrone spawn location, relative to the delivery/pickup position. This is a X/Y/Z triple. See also 'amadrone_spawn_location_relative_to_ground_level' for how the drone's Y position is calculated. + amadrone_spawn_location = [30, 30, 0] + #Affects Amadrone Y spawning position: when true, the Y position is relative to ground level at the calculated X/Z position. When false, it is relative to the delivery/pickup position. + amadrone_spawn_location_relative_to_ground_level = true + +[Heat] + #Default thermal resistance for solid blocks + #Range: 4.9E-324 ~ 1.7976931348623157E308 + blockThermalResistance = 500.0 + #Default thermal resistance for fluid blocks + #Range: 4.9E-324 ~ 1.7976931348623157E308 + fluidThermalResistance = 100.0 + #Thermal resistance of air; controls how fast blocks lose heat to air when exposed + #Range: 1.0 ~ 1.7976931348623157E308 + airThermalResistance = 100.0 + #Default heat capacity for fluid blocks + #Range: > 0 + defaultFluidHeatCapacity = 10000 + #Ambient temperature modifier by biome (default 25 gives the Nether a heat boost of 30C) + #Range: 0.0 ~ 1000.0 + ambientTemperatureBiomeModifier = 25.0 + #Ambient temperature increase by altitude, in degrees per block below 48 (or 75% of sea level). Note that temperature decrease per block above 64 is handled by vanilla. + #Range: 0.0 ~ 10.0 + ambientTemperatureHeightModifier = 0.1 + #Automatically register heat properties for all detected modded fluids based on their self-defined temperature? (note: vanilla lava and water are always added) + addDefaultFluidEntries = true + +[Logistics] + #Logistics Module air usage per item per block distance + #Range: 0.0 ~ 1.7976931348623157E308 + item_transport_cost = 1.0 + #Logistics Module air usage per mB of fluid per block distance + #Range: 0.0 ~ 1.7976931348623157E308 + fluid_transport_cost = 0.02 + #Minimum pressure for a Logistics Module to function + #Range: 0.0 ~ 20.0 + min_pressure = 3.0 + +[Jackhammer] + #Max veinmining range (distance from mined block) for Vein Miner Plus mode + #Range: 1 ~ 32 + max_vein_miner_range = 10 + #Base Jackhammer air usage per block broken (speed upgrades increase this) + #Range: > 0 + base_air_usage = 50 + +[Villagers] + #Frequency of PneumaticCraft village house generation? Default value of 8 tends to give 0-2 houses per village with no other mods present. Set to 0 to disable house generation entirely. May need to raise this value if there are many other mods also adding village houses. Note: changing this value won't affect any already-generated houses, only new generation. + #Range: > 0 + addMechanicHouse = 8 + #Which trades should the Pressure Mechanic offer? ALL will offer all trades. PCB_BLUEPRINT will offer *only* the PCB Blueprint, an item required for normal progression through the mod. NONE will offer nothing (but the PCB Blueprint is also available via Amadron by default). Note that changing this won't affect any already-spawned Pressure Mechanics. + #Allowed Values: NONE, PCB_BLUEPRINT, ALL + mechanicTrades = "ALL" + +[Drones] + #Enable Drone Suffocation Damage + enable_drone_suffocation = true + #Drones render their held item (the item in slot 0 of their inventory) ? Note: this is in common config since if enabled, server needs to sync the item data to the client. + drones_render_held_item = true + #Are drones allowed to import Experience Orbs and convert them to Memory Essence fluid? + drones_can_import_xp_orbs = true + #Will Drones automatically get picked up by Boats/Minecarts/etc. if they're close enough? + drones_can_be_picked_up = false + #Show particle trail indicating the currently-debugged drone's planned path + drone_debugger_path_particles = true + #When set to true, Drones will not execute any program. This is useful to set to true when due to a bug Drones are lagging your server or crashing it. Please report any such bugs as a PneumaticCraft: Repressurized issue so it can be investigated. + stop_drone_ai = false + #How far will a drone go to find a Charging Station when it's low on air? Note: drones will teleport, possibly across the world to someone else's base, if this range is very large. + #Range: > 16 + max_drone_charging_station_search_range = 80 + #The maximum distance that a Drone may teleport when it can't find a path to its destination. Default value of 0 means no limit. This is primarily intended to limit abuse of teleportation to other players on PvP servers, but may find other uses. Be careful about setting this value very low. + #Range: > 0 + max_drone_teleport_range = 0 + #When false, drones may not navigate or teleport into unloaded chunks. Setting this true may lead to server performance and stability issues - beware. + allow_navigate_to_unloaded_chunks = false + #If a Drone has found a path, but gets stuck on a block along that path, it will teleport to its destination after this many ticks of being stuck. Set this to 0 to disable teleporting, which will likely leave the drone waiting there forever (or until it runs out of air). Note that getting stuck on a block is usually the fault of the mod that added the block (especially if the block has a non-full-cube shape), but if you encounter this behaviour, please report it as a PneumaticCraft: Repressurized issue so it can be investigated. + #Range: > 0 + stuck_drone_teleport_ticks = 20 + #When true, drones can query the location of any player on the server with the '$player=' variable syntax. Set this to false if you don't want to allow this, e.g. on a PvP server, where this can turn drones into lethal assassins. + allowAnyPlayerVarQuery = true + #When true, drones can teleport into areas protected by Security Stations of other player. You may wish to set this to false on PvP servers. + allowTeleportToProtectedArea = true + diff --git a/minecraft/config/pneumaticcraft/ArmorFeatureStatus.cfg b/minecraft/config/pneumaticcraft/ArmorFeatureStatus.cfg new file mode 100644 index 0000000..6e8e16f --- /dev/null +++ b/minecraft/config/pneumaticcraft/ArmorFeatureStatus.cfg @@ -0,0 +1,39 @@ +{ + "description": "Tracks the active upgrades for the Pneumatic Armor (clientside)", + "features": { + "pneumaticcraft:fall_protection": true, + "pneumaticcraft:jet_boots.module.hover": true, + "pneumaticcraft:air_conditioning": false, + "pneumaticcraft:stomp": false, + "pneumaticcraft:hacking": false, + "pneumaticcraft:jet_boots.module.flight_stabilizers": false, + "pneumaticcraft:block_tracker": false, + "pneumaticcraft:jump_boost": true, + "pneumaticcraft:charging": true, + "pneumaticcraft:coordinate_tracker": false, + "pneumaticcraft:step_assist": true, + "pneumaticcraft:drone_debug": false, + "pneumaticcraft:entity_tracker": false, + "pneumaticcraft:chestplate_launcher": false, + "pneumaticcraft:run_speed": true, + "pneumaticcraft:block_tracker.module.spawner": false, + "pneumaticcraft:ender_visor": false, + "pneumaticcraft:night_vision": false, + "pneumaticcraft:reach_distance": false, + "pneumaticcraft:magnet": false, + "pneumaticcraft:jet_boots": false, + "pneumaticcraft:block_tracker.module.energy": false, + "pneumaticcraft:block_tracker.module.fluids": false, + "pneumaticcraft:block_tracker.module.inventories": false, + "pneumaticcraft:kick": false, + "pneumaticcraft:core_components": true, + "pneumaticcraft:search": false, + "pneumaticcraft:elytra": false, + "pneumaticcraft:block_tracker.module.misc": false, + "pneumaticcraft:jet_boots.module.smart_hover": false, + "pneumaticcraft:block_tracker.module.hackables": false, + "pneumaticcraft:block_tracker.module.end_portal": false, + "pneumaticcraft:scuba": false, + "pneumaticcraft:jet_boots.module.builder_mode": false + } +} \ No newline at end of file diff --git a/minecraft/config/pneumaticcraft/MicromissileDefaults.cfg b/minecraft/config/pneumaticcraft/MicromissileDefaults.cfg new file mode 100644 index 0000000..87e83ca --- /dev/null +++ b/minecraft/config/pneumaticcraft/MicromissileDefaults.cfg @@ -0,0 +1,4 @@ +{ + "Description": "Stores default Micromissile settings on a per-player basis", + "defaults": {} +} \ No newline at end of file diff --git a/minecraft/config/pneumaticcraft/PneumaticArmorHUDLayout.cfg b/minecraft/config/pneumaticcraft/PneumaticArmorHUDLayout.cfg new file mode 100644 index 0000000..d43a123 --- /dev/null +++ b/minecraft/config/pneumaticcraft/PneumaticArmorHUDLayout.cfg @@ -0,0 +1,4 @@ +{ + "Description": "Stores the layout of Pneumatic Armor HUD elements", + "hud_layout": {} +} \ No newline at end of file diff --git a/minecraft/config/pneumaticcraft/ProgrammingPuzzleBlacklist.cfg b/minecraft/config/pneumaticcraft/ProgrammingPuzzleBlacklist.cfg new file mode 100644 index 0000000..18de309 --- /dev/null +++ b/minecraft/config/pneumaticcraft/ProgrammingPuzzleBlacklist.cfg @@ -0,0 +1,66 @@ +{ + "description": "In the \u0027blacklist\u0027 tag you can add any progwidget registry names you wish to blacklist from this instance. When they were used in existing programs already they will be deleted. A reference list of all known programming puzzle names can be seen in \u0027allWidgets\u0027.", + "blacklist": [], + "allWidgets": [ + "pneumaticcraft:comment", + "pneumaticcraft:start", + "pneumaticcraft:area", + "pneumaticcraft:text", + "pneumaticcraft:item_filter", + "pneumaticcraft:item_assign", + "pneumaticcraft:liquid_filter", + "pneumaticcraft:coordinate", + "pneumaticcraft:coordinate_operator", + "pneumaticcraft:entity_attack", + "pneumaticcraft:dig", + "pneumaticcraft:harvest", + "pneumaticcraft:place", + "pneumaticcraft:block_right_click", + "pneumaticcraft:entity_right_click", + "pneumaticcraft:pickup_item", + "pneumaticcraft:drop_item", + "pneumaticcraft:void_item", + "pneumaticcraft:void_liquid", + "pneumaticcraft:inventory_export", + "pneumaticcraft:inventory_import", + "pneumaticcraft:liquid_export", + "pneumaticcraft:liquid_import", + "pneumaticcraft:entity_export", + "pneumaticcraft:entity_import", + "pneumaticcraft:rf_import", + "pneumaticcraft:rf_export", + "pneumaticcraft:goto", + "pneumaticcraft:teleport", + "pneumaticcraft:emit_redstone", + "pneumaticcraft:label", + "pneumaticcraft:jump", + "pneumaticcraft:jump_sub", + "pneumaticcraft:wait", + "pneumaticcraft:rename", + "pneumaticcraft:suicide", + "pneumaticcraft:external_program", + "pneumaticcraft:crafting", + "pneumaticcraft:standby", + "pneumaticcraft:logistics", + "pneumaticcraft:for_each_coordinate", + "pneumaticcraft:for_each_item", + "pneumaticcraft:edit_sign", + "pneumaticcraft:condition_coordinate", + "pneumaticcraft:condition_redstone", + "pneumaticcraft:condition_light", + "pneumaticcraft:condition_item_inventory", + "pneumaticcraft:condition_block", + "pneumaticcraft:condition_liquid_inventory", + "pneumaticcraft:condition_entity", + "pneumaticcraft:condition_pressure", + "pneumaticcraft:condition_item", + "pneumaticcraft:drone_condition_item", + "pneumaticcraft:drone_condition_liquid", + "pneumaticcraft:drone_condition_entity", + "pneumaticcraft:drone_condition_pressure", + "pneumaticcraft:drone_condition_upgrades", + "pneumaticcraft:condition_rf", + "pneumaticcraft:drone_condition_rf", + "pneumaticcraft:computer_control" + ] +} \ No newline at end of file diff --git a/minecraft/config/pneumaticcraft/thirdparty.cfg b/minecraft/config/pneumaticcraft/thirdparty.cfg new file mode 100644 index 0000000..4f3cc53 --- /dev/null +++ b/minecraft/config/pneumaticcraft/thirdparty.cfg @@ -0,0 +1,19 @@ +{ + "description": "Enable/disable integration of specific third-party mods", + "enabled_mods": { + "theoneprobe": true, + "cofh_core": true, + "immersiveengineering": true, + "computercraft": true, + "waila": true, + "jei": true, + "botania": true, + "crafttweaker": true, + "mekanism": true, + "curios": true, + "patchouli": true, + "create": true, + "gamestages": true, + "appliedenergistics2": true + } +} \ No newline at end of file diff --git a/minecraft/config/polymorph-integrations.toml b/minecraft/config/polymorph-integrations.toml index 99fb6ac..37b3816 100644 --- a/minecraft/config/polymorph-integrations.toml +++ b/minecraft/config/polymorph-integrations.toml @@ -1,6 +1,6 @@ -# Please be aware that enabling any third-party mod integration introduces instability and performance overheads, caution is strongly advised. -# If crashes or issues arise, disable the related modules as the first step in troubleshooting and report the issue to Polymorph. -fastfurnace = true -fastsuite = true -fastbench = true - +# Please be aware that enabling any third-party mod integration introduces instability and performance overheads, caution is strongly advised. +# If crashes or issues arise, disable the related modules as the first step in troubleshooting and report the issue to Polymorph. +fastfurnace = true +fastsuite = true +fastbench = true + diff --git a/minecraft/config/powah.json5 b/minecraft/config/powah.json5 new file mode 100644 index 0000000..0914860 --- /dev/null +++ b/minecraft/config/powah.json5 @@ -0,0 +1,381 @@ +{ + // World generation config options. + "worldgen": { + // Enable this to disable worldgen entirely. If true, the other options have no effect. + "disable_all": false, + "poor_uraninite_veins_per_chunk": 8, + "uraninite_veins_per_chunk": 6, + "dense_uraninite_veins_per_chunk": 3, + "dry_ice_veins_per_chunk": 9 + }, + // Other general config options. + "general": { + // Enable this to get Player Aerial Pearl by right clicking a Zombie or Husk with a Aerial Pearl. + "player_aerial_pearl": true, + // Enable this to get Dimensional Binding card by right clicking an Enderman or Endermite with a Binding card. + "dimensional_binding_card": true, + // Enable this to get Lens Of Ender by right clicking an Enderman or Endermite with a Photoelectric Pane. + "lens_of_ender": true, + // List of fluids used in the Magmator. + "magmatic_fluids": { + "minecraft:lava": 10000 + }, + // List of coolant fluids used in the Reactor and the Thermo Generator. + "coolant_fluids": { + "minecraft:water": 1 + }, + // List of heat source blocks used under Thermo Generator. + "heat_blocks": { + "minecraft:magma_block": 800, + "minecraft:lava": 1000, + "powah:blazing_crystal_block": 2800 + }, + // Energy produced per fuel tick in the Furnator. + "energy_per_fuel_tick": 30, + "energizing_range": 4, + /* Multiplier to the required energy applied after an energizing recipe is read. + Use this to adjust the cost of ALL energizing recipes. + */ + "energizing_energy_ratio": 1.0 + }, + // Configuration of energy values for generators. + "generators": { + "furnators": { + "capacities": { + "starter": 20000, + "basic": 80000, + "hardened": 200000, + "blazing": 800000, + "niotic": 2000000, + "spirited": 8000000, + "nitro": 40000000 + }, + "transfer_rates": { + "starter": 80, + "basic": 320, + "hardened": 800, + "blazing": 3200, + "niotic": 8000, + "spirited": 32000, + "nitro": 160000 + }, + "generation_rates": { + "starter": 20, + "basic": 80, + "hardened": 200, + "blazing": 800, + "niotic": 2000, + "spirited": 8000, + "nitro": 40000 + } + }, + "magmators": { + "capacities": { + "starter": 20000, + "basic": 80000, + "hardened": 200000, + "blazing": 800000, + "niotic": 2000000, + "spirited": 8000000, + "nitro": 40000000 + }, + "transfer_rates": { + "starter": 80, + "basic": 320, + "hardened": 800, + "blazing": 3200, + "niotic": 8000, + "spirited": 32000, + "nitro": 160000 + }, + "generation_rates": { + "starter": 20, + "basic": 80, + "hardened": 200, + "blazing": 800, + "niotic": 2000, + "spirited": 8000, + "nitro": 40000 + } + }, + "reactors": { + "capacities": { + "starter": 250000, + "basic": 1000000, + "hardened": 2500000, + "blazing": 10000000, + "niotic": 25000000, + "spirited": 100000000, + "nitro": 500000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + }, + "generation_rates": { + "starter": 250, + "basic": 1000, + "hardened": 2500, + "blazing": 10000, + "niotic": 25000, + "spirited": 100000, + "nitro": 500000 + } + }, + "solar_panels": { + "capacities": { + "starter": 20000, + "basic": 80000, + "hardened": 200000, + "blazing": 800000, + "niotic": 2000000, + "spirited": 8000000, + "nitro": 40000000 + }, + "transfer_rates": { + "starter": 80, + "basic": 320, + "hardened": 800, + "blazing": 3200, + "niotic": 8000, + "spirited": 32000, + "nitro": 160000 + }, + "generation_rates": { + "starter": 20, + "basic": 60, + "hardened": 100, + "blazing": 200, + "niotic": 400, + "spirited": 800, + "nitro": 2000 + } + }, + "thermo_generators": { + "capacities": { + "starter": 20000, + "basic": 80000, + "hardened": 200000, + "blazing": 800000, + "niotic": 2000000, + "spirited": 8000000, + "nitro": 40000000 + }, + "transfer_rates": { + "starter": 80, + "basic": 320, + "hardened": 800, + "blazing": 3200, + "niotic": 8000, + "spirited": 32000, + "nitro": 160000 + }, + "generation_rates": { + "starter": 20, + "basic": 60, + "hardened": 100, + "blazing": 200, + "niotic": 400, + "spirited": 800, + "nitro": 2000 + } + } + }, + // Configuration of energy values for other devices. + "devices": { + "batteries": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + } + }, + "cables": { + "transfer_rates": { + "starter": 500, + "basic": 2000, + "hardened": 5000, + "blazing": 20000, + "niotic": 50000, + "spirited": 200000, + "nitro": 1000000 + } + }, + "dischargers": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + } + }, + "ender_cells": { + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + }, + "channels": { + "starter": 1, + "basic": 2, + "hardened": 3, + "blazing": 5, + "niotic": 7, + "spirited": 9, + "nitro": 12 + } + }, + "ender_gates": { + "transfer_rates": { + "starter": 500, + "basic": 2000, + "hardened": 5000, + "blazing": 20000, + "niotic": 50000, + "spirited": 200000, + "nitro": 1000000 + }, + "channels": { + "starter": 1, + "basic": 2, + "hardened": 3, + "blazing": 5, + "niotic": 7, + "spirited": 9, + "nitro": 12 + } + }, + "energy_cells": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + } + }, + "energizing_rods": { + "capacities": { + "starter": 10000, + "basic": 40000, + "hardened": 100000, + "blazing": 400000, + "niotic": 1000000, + "spirited": 4000000, + "nitro": 20000000 + }, + "transfer_rates": { + "starter": 100, + "basic": 400, + "hardened": 1000, + "blazing": 4000, + "niotic": 10000, + "spirited": 40000, + "nitro": 200000 + } + }, + "hoppers": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + }, + "charging_rates": { + "starter": 500, + "basic": 2000, + "hardened": 5000, + "blazing": 20000, + "niotic": 50000, + "spirited": 200000, + "nitro": 1000000 + } + }, + "player_transmitters": { + "capacities": { + "starter": 1000000, + "basic": 4000000, + "hardened": 10000000, + "blazing": 40000000, + "niotic": 100000000, + "spirited": 400000000, + "nitro": 2000000000 + }, + "transfer_rates": { + "starter": 1000, + "basic": 4000, + "hardened": 10000, + "blazing": 40000, + "niotic": 100000, + "spirited": 400000, + "nitro": 2000000 + }, + "charging_rates": { + "starter": 500, + "basic": 2000, + "hardened": 5000, + "blazing": 20000, + "niotic": 50000, + "spirited": 200000, + "nitro": 1000000 + } + } + } +} \ No newline at end of file diff --git a/minecraft/config/prefab.toml b/minecraft/config/prefab.toml new file mode 100644 index 0000000..77860e4 --- /dev/null +++ b/minecraft/config/prefab.toml @@ -0,0 +1,252 @@ + +[general] + #General + #Determines which starting item a player gets on first world join. Valid values for this option are: "Starting House", "Moderate House", "Nothing". Server configuration overrides client. + "Starting Item" = "Nothing" + #Can new players for a world receive a starting item?. Server configuration overrides client. + "New Players Get Starting Item" = false + #Determines if the spawners for the Monster Masher building are included. Server configuration overrides client. + "Include Spawners in Monster Masher" = true + #Determines if the Preview buttons in structure GUIs and other structure previews functions are enabled. Client side only. + "Include Structure Previews" = true + #Determines if the mineshaft chest is included when building mineshafts for various structures. + "Include Mineshaft Chest" = true + #Determines if the bulldozer item can create drops when it clears an area. + "Bulldozer Creates Drops" = true + #Determines if water can be generated in structures when the current dimension is not the oveworld. Does not affect Nether + "Include Water In Non-Overworld Dimesions" = true + #Play Sound When Generating Blueprint + "Play Building Sound" = true + + [general."chest contents"] + #Chest Options + #Determines if a Stone Sword is added the the chest when the house is created. + "Add Sword" = true + #Determines if a Stone Axe is added the the chest when the house is created. + "Add Axe" = true + #Determines if a Stone Shovel is added the the chest when the house is created. + "Add Shovel" = true + #Determines if a Stone Hoe is added the the chest when the house is created. + "Add Hoe" = true + #Determines if a Stone Pickaxe is added the the chest when the house is created. + "Add Pickaxe" = true + #Determines if Leather Armor is added the the chest when the house is created. + "Add Armor" = true + #Determines if Bread is added the the chest when the house is created. + "Add Food" = true + #Determines if seeds, potatoes and carrots are added the the chest when the house is created. + "Add Crops" = true + #Determines if a stack of dirt is added the the chest when the house is created. + "Add Dirt" = true + #Determines if a stack of cobble is added the the chest when the house is created. + "Add Cobblestone" = true + #Determines if a set of oak saplings are added the the chest when the house is created. + "Add Saplings" = true + #Determines if a set of torches are added the the chest when the house is created. + "Add Torches" = true + + [general."starter house"] + #Starter House Options + #Determines if the bed is included in the starter house. When playing on a server, the server configuration is used + "Add Bed" = true + #Determines if the crafting table is included in the starter house. When playing on a server, the server configuration is used + "Add Crafting Table" = true + #Determines if the furnace is included in the starter house. When playing on a server, the server configuration is used + "Add Furnace" = true + #Determines if chests are included in the starter house. When playing on a server, the server configuration is used + "Add Chests" = true + #Determines if the chest contents is included in the starter house. When playing on a server, the server configuration is used + "Add Chest Contents" = true + #Determines if the mineshaft is included in the starter house. When playing on a server, the server configuration is used + "Add Mineshaft" = true + + [general.recipes] + #Determines if the recipe(s) associated with the Compressed Stone are enabled. + "Compressed Stone" = true + #Determines if the recipe(s) associated with the Compressed Glowstone are enabled. + "Compressed Glowstone" = true + #Determines if the recipe(s) associated with the Compressed Dirt are enabled. + "Compressed Dirt" = true + #Determines if the recipe(s) associated with the Compressed Chest are enabled. + "Compressed Chest" = true + #Determines if the recipe(s) associated with the Pile of Bricks are enabled. + "Pile of Bricks" = true + #Determines if the recipe(s) associated with the Warehouse are enabled. + Warehouse = true + #Determines if the recipe(s) associated with the Upgrade are enabled. + Upgrade = true + #Determines if the recipe(s) associated with the Improved Warehouse are enabled. + "Improved Warehouse" = true + #Determines if the recipe(s) associated with the Bundle of Timber are enabled. + "Bundle of Timber" = true + #Determines if the recipe(s) associated with the Nether Gate are enabled. + "Nether Gate" = true + #Determines if the recipe(s) associated with the Machinery Tower are enabled. + "Machinery Tower" = true + #Determines if the recipe(s) associated with the Defense Bunker are enabled. + "Defense Bunker" = true + #Determines if the recipe(s) associated with the Mineshaft Entrance are enabled. + "Mineshaft Entrance" = true + #Determines if the recipe(s) associated with the Ender Gateway are enabled. + "Ender Gateway" = true + #Determines if the recipe(s) associated with the Magic Temple are enabled. + "Magic Temple" = true + #Determines if the recipe(s) associated with the Instant Bridge are enabled. + "Instant Bridge" = true + #Determines if the recipe(s) associated with the Paper Lantern are enabled. + "Paper Lantern" = true + #Determines if the recipe(s) associated with the Compressed Obsidian are enabled. + "Compressed Obsidian" = true + #Determines if the recipe(s) associated with the Villager Houses are enabled. + "Villager Houses" = true + #Determines if the recipe(s) associated with the Phasic Block are enabled. + "Phasic Block" = true + #Determines if the recipe(s) associated with the Smart Glass are enabled. + "Smart Glass" = true + #Determines if the recipe(s) associated with the Green House are enabled. + "Green House" = true + #Determines if the recipe(s) associated with the House are enabled. + House = true + #Determines if the recipe(s) associated with the Glass Stairs are enabled. + "Glass Stairs" = true + #Determines if the recipe(s) associated with the Glass Slabs are enabled. + "Glass Slabs" = true + #Determines if the recipe(s) associated with the Improved House are enabled. + "Improved House" = true + #Determines if the recipe(s) associated with the Grassy Plains are enabled. + "Grassy Plains" = true + #Determines if the recipe(s) associated with the Aqua Base are enabled. + "Aqua Base" = true + #Determines if the recipe(s) associated with the Watch Tower are enabled. + "Watch Tower" = true + #Determines if the recipe(s) associated with the Bulldozer are enabled. + Bulldozer = true + #Determines if the recipe(s) associated with the Jail are enabled. + Jail = true + #Determines if the recipe(s) associated with the Saloon are enabled. + Saloon = true + #Determines if the recipe(s) associated with the Ski Lodge are enabled. + "Ski Lodge" = true + #Determines if the recipe(s) associated with the Windmill are enabled. + Windmill = true + #Determines if the recipe(s) associated with the Town Hall are enabled. + "Town Hall" = true + #Determines if the recipe(s) associated with the Heap of Timber are enabled. + "Heap of Timber" = true + #Determines if the recipe(s) associated with the Ton of Timber are enabled. + "Ton of Timber" = true + #Determines if the recipe(s) associated with the Workshop are enabled. + Workshop = true + #Determines if the recipe(s) associated with the Modern Buildings are enabled. + "Modern Buildings" = true + #Determines if the recipe(s) associated with the Swift Blade are enabled. + "Swift Blade" = true + #Determines if the recipe(s) associated with the Sickle are enabled. + Sickle = true + #Determines if the recipe(s) associated with the Dirt Recipes are enabled. + "Dirt Recipes" = true + #Determines if the recipe(s) associated with the Bunch of Beets are enabled. + "Bunch of Beets" = true + #Determines if the recipe(s) associated with the Bunch of Carrots are enabled. + "Bunch of Carrots" = true + #Determines if the recipe(s) associated with the Bunch of Potatoes are enabled. + "Bunch of Potatoes" = true + #Determines if the recipe(s) associated with the Bunch of Eggs are enabled. + "Bunch of Eggs" = true + #Determines if the recipe(s) associated with the Wooden Crate are enabled. + "Wooden Crate" = true + #Determines if the recipe(s) associated with the Farm are enabled. + Farm = true + #Determines if the recipe(s) associated with the Improved Farm are enabled. + "Improved Farm" = true + #Determines if the recipe(s) associated with the Advanced Farm are enabled. + "Advanced Farm" = true + #Determines if the recipe(s) associated with the Quartz-Crete are enabled. + Quartz-Crete = true + #Determines if the recipe(s) associated with the Advanced House are enabled. + "Advanced House" = true + #Determines if the recipe(s) associated with the Dark Light Lamp are enabled. + "Dark Light Lamp" = true + #Determines if the recipe(s) associated with the Light Switch are enabled. + "Light Switch" = true + + [general."structure options"] + item_prefab_item_farm_prefab_gui_farm_beef = true + item_prefab_item_farm_prefab_gui_farm_berry = true + item_prefab_item_farm_prefab_gui_farm_cactus = true + item_prefab_item_farm_prefab_gui_farm_chicken = true + item_prefab_item_farm_prefab_gui_farm_elevated = true + item_prefab_item_farm_prefab_gui_farm_horse = true + item_prefab_item_farm_prefab_gui_farm_multi_level = true + item_prefab_item_farm_prefab_gui_farm_rabbit = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_bamboo = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_barn = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_green_house = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_horse = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_melon = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_monster = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_produce = true + item_prefab_item_farm_advanced_prefab_gui_farm_advanced_tree = true + item_prefab_item_farm_improved_prefab_gui_farm_advanced_barn = true + item_prefab_item_farm_improved_prefab_gui_farm_advanced_green_house = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_automated = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_bee = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_chicken = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_fish = true + item_prefab_item_farm_improved_prefab_gui_farm_improved_sugar_cane = true + item_prefab_item_farm_improved_prefab_gui_farm_mushroom = true + item_prefab_item_modern_buildings_prefab_gui_modern_apartment = true + item_prefab_item_modern_buildings_prefab_gui_modern_cinema = true + item_prefab_item_modern_buildings_prefab_gui_modern_cottage = true + item_prefab_item_modern_buildings_prefab_gui_modern_hipster_fruit_stand = true + item_prefab_item_modern_buildings_prefab_gui_modern_juice_shop = true + item_prefab_item_modern_buildings_prefab_gui_modern_mini_hotel = true + item_prefab_item_modern_buildings_prefab_gui_modern_restaurant = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_bank = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_construction_site = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_gas_station = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_house = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_library = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_mall_store = true + item_prefab_item_modern_buildings_improved_prefab_gui_modern_water_park = true + item_prefab_item_nether_gate_item_prefab_item_nether_gate_skull = true + item_prefab_item_nether_gate_item_prefab_item_nether_gate_tree = true + item_prefab_item_villager_houses_prefab_gui_villager_blacksmith = true + item_prefab_item_villager_houses_prefab_gui_villager_house_angled = true + item_prefab_item_villager_houses_prefab_gui_villager_house_fenced = true + item_prefab_item_villager_houses_prefab_gui_villager_house_flat = true + item_prefab_item_villager_houses_prefab_gui_villager_long_house = true + item_prefab_item_watch_tower_item_prefab_item_watch_tower = true + item_prefab_item_watch_tower_item_prefab_item_watch_tower_2 = true + item_prefab_item_watch_tower_item_prefab_item_watch_tower_dark = true + item_prefab_item_house_prefab_gui_house_basic_display = true + item_prefab_item_house_prefab_gui_house_cabin_display = true + item_prefab_item_house_prefab_gui_house_camping_display = true + item_prefab_item_house_prefab_gui_house_desert_display = true + item_prefab_item_house_prefab_gui_house_desert_display2 = true + item_prefab_item_house_prefab_gui_house_hobbit_display = true + item_prefab_item_house_prefab_gui_house_izba_display = true + item_prefab_item_house_prefab_gui_house_loft_display = true + item_prefab_item_house_prefab_gui_house_modern_display = true + item_prefab_item_house_prefab_gui_house_mushroom_display = true + item_prefab_item_house_prefab_gui_house_ranch_display = true + item_prefab_item_house_prefab_gui_house_snowy_display = true + item_prefab_item_house_prefab_gui_house_subaquatic_display = true + item_prefab_item_house_prefab_gui_house_tower_display = true + item_prefab_item_house_prefab_gui_house_tree_display = true + item_prefab_item_house_improved_prefab_gui_house_improved_acacia = true + item_prefab_item_house_improved_prefab_gui_house_improved_acacia_2 = true + item_prefab_item_house_improved_prefab_gui_house_improved_cottage_house = true + item_prefab_item_house_improved_prefab_gui_house_improved_crimson_house = true + item_prefab_item_house_improved_prefab_gui_house_improved_earthen = true + item_prefab_item_house_improved_prefab_gui_house_improved_hobbit_house = true + item_prefab_item_house_improved_prefab_gui_house_improved_jungle = true + item_prefab_item_house_improved_prefab_gui_house_improved_mountain = true + item_prefab_item_house_improved_prefab_gui_house_improved_nether = true + item_prefab_item_house_improved_prefab_gui_house_improved_spruce = true + item_prefab_item_house_improved_prefab_gui_house_improved_tower_house = true + item_prefab_item_house_improved_prefab_gui_modern_house = true + item_prefab_item_house_advanced_prefab_gui_house_advanced_estate = true + item_prefab_item_house_advanced_prefab_gui_house_advanced_manor = true + item_prefab_item_house_advanced_prefab_gui_house_advanced_workshop = true + diff --git a/minecraft/config/prettybeaches-common.toml b/minecraft/config/prettybeaches-common.toml new file mode 100644 index 0000000..9005ebe --- /dev/null +++ b/minecraft/config/prettybeaches-common.toml @@ -0,0 +1,7 @@ +#List of blocks that should be affected by the adjusted water physics. If you want to have all blocks affected, just include "*" in the list. +affectedBlocks = ["minecraft:sand"] +#Whether buckets should be able to retrieve infinite water without destroying sources as well. +infiniteBucketWater = false +#Whether the flooding of adjacent air blocks should be animated or instant. +animatedFlooding = true + diff --git a/minecraft/config/productivebees-client.toml b/minecraft/config/productivebees-client.toml new file mode 100644 index 0000000..b54a248 --- /dev/null +++ b/minecraft/config/productivebees-client.toml @@ -0,0 +1,13 @@ + +[Client] + #Render centrifuge comb inventory on the block. + renderCombsInCentrifuge = false + #Render bees inside bee jars. + renderBeesInJars = false + #Stop bee nest helmets from making sounds. + mutedBeeNestHelmet = false + #Bees wear santa hats. + alwaysChristmas = false + #Render entities inside amber blocks. + renderEntitiesInAmber = false + diff --git a/minecraft/config/projectile_damage.json b/minecraft/config/projectile_damage.json new file mode 100644 index 0000000..35c8d50 --- /dev/null +++ b/minecraft/config/projectile_damage.json @@ -0,0 +1,7 @@ +{ + "status_effect_impact_multiplier_per_stack": 0.2, + "default_bow_damage": 6.0, + "default_crossbow_damage": 9.0, + "add_default_attributes_for_unspecified_bows": false, + "add_default_attributes_for_unspecified_crossbows": false +} \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys-common.toml b/minecraft/config/projectvibrantjourneys-common.toml new file mode 100644 index 0000000..870de1d --- /dev/null +++ b/minecraft/config/projectvibrantjourneys-common.toml @@ -0,0 +1,99 @@ + +["World Generation"] + #Enable generation of rocks + enableRocks = true + #Enable generation of twigs + enableTwigs = true + #Enable generation of fallen leaves + enableFallenLeaves = true + #Enable generation of bones + enableBones = true + #Enable generation of charred bones + enableCharredBones = true + #Enable generation of ice chunks + enableIceChunks = true + #Enable generation of pinecones + enablePinecones = true + #Enable generation of seashells + enableSeashells = true + #Enable generation of fallen trees + enableFallenTrees = true + #Enable generation of sea oats + enableSeaOats = true + #Enable generation of cattails + enableCattails = true + #Enable generation of beach grass + enableBeachGrass = true + #Enable generation of bark mushrooms + enableBarkMushrooms = true + #Enable generation of glowcap + enableGlowcap = true + #Enable generation of cindercane + enableCindercane = true + #Enable generation of nether nettles + enableNetherNettles = true + #Enable generation of short grass + enableShortGrass = true + #Enable generation of natural cobwebs + enableNaturalCobwebs = true + #Enable generation of small cacti + enableSmallCacti = true + #Enable generation of prickly bushes + enablePricklyBush = true + #Enable generation of reeds + enableReeds = true + #Enable generation of extra lilypads in lakes + enableExtraLilypads = true + #Enable generation of extra seagrass in lakes + enableExtraSeagrass = true + #Enable generation of extra grass in rivers + enableExtraRiverGrass = true + #Enable moss carpets in old growth taiga biomes + enableMossCarpets = true + #Enable of tide pools in stony shores + enableTidePools = true + #Enable cave roots + enableCaveRoots = true + #Enable better ruined nether portals + enableBetterRuinedNetherPortals = true + #Enable generation of icicles + enableIcicles = true + #Enable generation of sandy sprouts + enableSandySprouts = true + #Enable generation of dried beached kelp + enableDriedBeachedKelp = true + #Enable generation of glowing blue fungus + enableGlowingBlueFungus = true + #Enable generation of muddy bones + enableMuddyBones = true + #Enable generation of lotus ponds in cherry groves + enableLotusPonds = true + #Enable generation of pink lotuses in flower forests + enableFloatingPinkLotus = true + #Enable generation of hot springs + enableHotSprings = true + #Enable generation of bushes + enableBushes = true + #Enable generation of wildflowers + enableWildflowers = true + #Enable generation of slime nodules + enableSlimeNodules = true + #Enable generation of pink vines + enablePinkVines = true + #Enable generation of watergrass + enableWatergrass = true + #Enable generation of gravel pits + enableGravelPits = true + #Enable generation of gold pits + enableGoldPits = true + #Enable generation of beached kelp + enableBeachedKelp = true + +["Entity Options"] + #Enable spawning of tropical fish in jungles + enableJungleTropicalFish = true + +["Misc Options"] + #Enable replaceable groundcover behavior - i.e. makes it behave like tall grass when placing blocks + replaceableGroundcover = true + diff --git a/minecraft/config/projectvibrantjourneys/biomesoplenty/acacia_trees.json b/minecraft/config/projectvibrantjourneys/biomesoplenty/acacia_trees.json new file mode 100644 index 0000000..1f6323b --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/biomesoplenty/acacia_trees.json @@ -0,0 +1,6 @@ +[ + { + "biomeName": "biomesoplenty:lush_desert", + "chance": 5 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/biomesoplenty/birch_trees.json b/minecraft/config/projectvibrantjourneys/biomesoplenty/birch_trees.json new file mode 100644 index 0000000..bda5186 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/biomesoplenty/birch_trees.json @@ -0,0 +1,14 @@ +[ + { + "biomeName": "biomesoplenty:seasonal_forest", + "chance": 10 + }, + { + "biomeName": "biomesoplenty:boreal_forest", + "chance": 20 + }, + { + "biomeName": "biomesoplenty:rainbow_hills", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/biomesoplenty/dark_oak_trees.json b/minecraft/config/projectvibrantjourneys/biomesoplenty/dark_oak_trees.json new file mode 100644 index 0000000..8052030 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/biomesoplenty/dark_oak_trees.json @@ -0,0 +1,10 @@ +[ + { + "biomeName": "biomesoplenty:pumpkin_patch", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:seasonal_forest", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/biomesoplenty/jungle_trees.json b/minecraft/config/projectvibrantjourneys/biomesoplenty/jungle_trees.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/biomesoplenty/jungle_trees.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/biomesoplenty/oak_trees.json b/minecraft/config/projectvibrantjourneys/biomesoplenty/oak_trees.json new file mode 100644 index 0000000..1c8f7e3 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/biomesoplenty/oak_trees.json @@ -0,0 +1,66 @@ +[ + { + "biomeName": "biomesoplenty:lavender_forest", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:floodplain", + "chance": 2 + }, + { + "biomeName": "biomesoplenty:dead_forest", + "chance": 2 + }, + { + "biomeName": "biomesoplenty:prairie", + "chance": 10 + }, + { + "biomeName": "biomesoplenty:woodland", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:old_growth_dead_forest", + "chance": 2 + }, + { + "biomeName": "biomesoplenty:mystic_grove", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:seasonal_forest", + "chance": 10 + }, + { + "biomeName": "biomesoplenty:old_growth_woodland", + "chance": 20 + }, + { + "biomeName": "biomesoplenty:fungal_jungle", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:orchard", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:bamboo_grove", + "chance": 10 + }, + { + "biomeName": "biomesoplenty:maple_woods", + "chance": 20 + }, + { + "biomeName": "biomesoplenty:lavender_field", + "chance": 1 + }, + { + "biomeName": "biomesoplenty:wetland", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:snowy_maple_woods", + "chance": 5 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/biomesoplenty/spruce_trees.json b/minecraft/config/projectvibrantjourneys/biomesoplenty/spruce_trees.json new file mode 100644 index 0000000..c807bbd --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/biomesoplenty/spruce_trees.json @@ -0,0 +1,26 @@ +[ + { + "biomeName": "biomesoplenty:forested_field", + "chance": 10 + }, + { + "biomeName": "biomesoplenty:dead_forest", + "chance": 2 + }, + { + "biomeName": "biomesoplenty:mediterranean_forest", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:jade_cliffs", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:wetland", + "chance": 5 + }, + { + "biomeName": "biomesoplenty:old_growth_dead_forest", + "chance": 2 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/byg/acacia_trees.json b/minecraft/config/projectvibrantjourneys/byg/acacia_trees.json new file mode 100644 index 0000000..361a426 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/byg/acacia_trees.json @@ -0,0 +1,10 @@ +[ + { + "biomeName": "byg:araucaria_savanna", + "chance": 10 + }, + { + "biomeName": "byg:baobab_savanna", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/byg/birch_trees.json b/minecraft/config/projectvibrantjourneys/byg/birch_trees.json new file mode 100644 index 0000000..1403db5 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/byg/birch_trees.json @@ -0,0 +1,18 @@ +[ + { + "biomeName": "byg:temperate_grove", + "chance": 10 + }, + { + "biomeName": "byg:borealis_grove", + "chance": 10 + }, + { + "biomeName": "byg:howling_peaks", + "chance": 5 + }, + { + "biomeName": "byg:autumnal_forest", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/byg/dark_oak_trees.json b/minecraft/config/projectvibrantjourneys/byg/dark_oak_trees.json new file mode 100644 index 0000000..ba18a3d --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/byg/dark_oak_trees.json @@ -0,0 +1,6 @@ +[ + { + "biomeName": "byg:temperate_rainforest", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/byg/jungle_trees.json b/minecraft/config/projectvibrantjourneys/byg/jungle_trees.json new file mode 100644 index 0000000..405fa4f --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/byg/jungle_trees.json @@ -0,0 +1,6 @@ +[ + { + "biomeName": "byg:crag_gardens", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/byg/oak_trees.json b/minecraft/config/projectvibrantjourneys/byg/oak_trees.json new file mode 100644 index 0000000..7b45cf3 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/byg/oak_trees.json @@ -0,0 +1,46 @@ +[ + { + "biomeName": "byg:fragment_forest", + "chance": 5 + }, + { + "biomeName": "byg:coconino_meadow", + "chance": 5 + }, + { + "biomeName": "byg:autumnal_forest", + "chance": 30 + }, + { + "biomeName": "byg:orchard", + "chance": 15 + }, + { + "biomeName": "byg:allium_fields", + "chance": 5 + }, + { + "biomeName": "byg:white_mangrove_marshes", + "chance": 5 + }, + { + "biomeName": "byg:prairie", + "chance": 5 + }, + { + "biomeName": "byg:baobab_savanna", + "chance": 5 + }, + { + "biomeName": "byg:araucaria_savanna", + "chance": 5 + }, + { + "biomeName": "byg:temperate_rainforest", + "chance": 10 + }, + { + "biomeName": "byg:red_oak_forest", + "chance": 15 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/byg/spruce_trees.json b/minecraft/config/projectvibrantjourneys/byg/spruce_trees.json new file mode 100644 index 0000000..74062f5 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/byg/spruce_trees.json @@ -0,0 +1,38 @@ +[ + { + "biomeName": "byg:howling_peaks", + "chance": 5 + }, + { + "biomeName": "byg:frosted_taiga", + "chance": 15 + }, + { + "biomeName": "byg:weeping_witch_forest", + "chance": 5 + }, + { + "biomeName": "byg:autumnal_taiga", + "chance": 20 + }, + { + "biomeName": "byg:maple_taiga", + "chance": 5 + }, + { + "biomeName": "byg:canadian_shield", + "chance": 15 + }, + { + "biomeName": "byg:borealis_grove", + "chance": 10 + }, + { + "biomeName": "byg:dacite_ridges", + "chance": 10 + }, + { + "biomeName": "byg:rose_fields", + "chance": 5 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/minecraft/acacia_trees.json b/minecraft/config/projectvibrantjourneys/minecraft/acacia_trees.json new file mode 100644 index 0000000..c16a0a3 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/minecraft/acacia_trees.json @@ -0,0 +1,14 @@ +[ + { + "biomeName": "minecraft:savanna", + "chance": 20 + }, + { + "biomeName": "minecraft:savanna_plateau", + "chance": 20 + }, + { + "biomeName": "minecraft:windswept_savanna", + "chance": 20 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/minecraft/birch_trees.json b/minecraft/config/projectvibrantjourneys/minecraft/birch_trees.json new file mode 100644 index 0000000..3092402 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/minecraft/birch_trees.json @@ -0,0 +1,26 @@ +[ + { + "biomeName": "minecraft:dark_forest", + "chance": 2 + }, + { + "biomeName": "minecraft:flower_forest", + "chance": 20 + }, + { + "biomeName": "minecraft:birch_forest", + "chance": 20 + }, + { + "biomeName": "minecraft:meadow", + "chance": 5 + }, + { + "biomeName": "minecraft:old_growth_birch_forest", + "chance": 20 + }, + { + "biomeName": "minecraft:forest", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/minecraft/cherry_trees.json b/minecraft/config/projectvibrantjourneys/minecraft/cherry_trees.json new file mode 100644 index 0000000..8a5102f --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/minecraft/cherry_trees.json @@ -0,0 +1,6 @@ +[ + { + "biomeName": "minecraft:cherry_grove", + "chance": 20 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/minecraft/dark_oak_trees.json b/minecraft/config/projectvibrantjourneys/minecraft/dark_oak_trees.json new file mode 100644 index 0000000..8dc8640 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/minecraft/dark_oak_trees.json @@ -0,0 +1,6 @@ +[ + { + "biomeName": "minecraft:dark_forest", + "chance": 20 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/minecraft/jungle_trees.json b/minecraft/config/projectvibrantjourneys/minecraft/jungle_trees.json new file mode 100644 index 0000000..eb252a1 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/minecraft/jungle_trees.json @@ -0,0 +1,14 @@ +[ + { + "biomeName": "minecraft:jungle", + "chance": 20 + }, + { + "biomeName": "minecraft:sparse_jungle", + "chance": 25 + }, + { + "biomeName": "minecraft:bamboo_jungle", + "chance": 20 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/minecraft/mangrove_trees.json b/minecraft/config/projectvibrantjourneys/minecraft/mangrove_trees.json new file mode 100644 index 0000000..5ec2662 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/minecraft/mangrove_trees.json @@ -0,0 +1,6 @@ +[ + { + "biomeName": "minecraft:mangrove_swamp", + "chance": 20 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/minecraft/oak_trees.json b/minecraft/config/projectvibrantjourneys/minecraft/oak_trees.json new file mode 100644 index 0000000..b00c13c --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/minecraft/oak_trees.json @@ -0,0 +1,34 @@ +[ + { + "biomeName": "minecraft:swamp", + "chance": 20 + }, + { + "biomeName": "minecraft:flower_forest", + "chance": 20 + }, + { + "biomeName": "minecraft:plains", + "chance": 5 + }, + { + "biomeName": "minecraft:dark_forest", + "chance": 2 + }, + { + "biomeName": "minecraft:forest", + "chance": 20 + }, + { + "biomeName": "minecraft:windswept_forest", + "chance": 5 + }, + { + "biomeName": "minecraft:sunflower_plains", + "chance": 5 + }, + { + "biomeName": "minecraft:meadow", + "chance": 5 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/minecraft/spruce_trees.json b/minecraft/config/projectvibrantjourneys/minecraft/spruce_trees.json new file mode 100644 index 0000000..74b9516 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/minecraft/spruce_trees.json @@ -0,0 +1,22 @@ +[ + { + "biomeName": "minecraft:windswept_forest", + "chance": 5 + }, + { + "biomeName": "minecraft:old_growth_pine_taiga", + "chance": 20 + }, + { + "biomeName": "minecraft:grove", + "chance": 5 + }, + { + "biomeName": "minecraft:old_growth_spruce_taiga", + "chance": 20 + }, + { + "biomeName": "minecraft:taiga", + "chance": 20 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/pioneer/acacia_trees.json b/minecraft/config/projectvibrantjourneys/pioneer/acacia_trees.json new file mode 100644 index 0000000..80f1485 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/pioneer/acacia_trees.json @@ -0,0 +1,10 @@ +[ + { + "biomeName": "pioneer:verdant_sands", + "chance": 15 + }, + { + "biomeName": "pioneer:baobab_fields", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/pioneer/birch_trees.json b/minecraft/config/projectvibrantjourneys/pioneer/birch_trees.json new file mode 100644 index 0000000..f7111ee --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/pioneer/birch_trees.json @@ -0,0 +1,6 @@ +[ + { + "biomeName": "pioneer:flooded_forest", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/pioneer/dark_oak_trees.json b/minecraft/config/projectvibrantjourneys/pioneer/dark_oak_trees.json new file mode 100644 index 0000000..894186e --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/pioneer/dark_oak_trees.json @@ -0,0 +1,6 @@ +[ + { + "biomeName": "pioneer:overgrown_spires", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/pioneer/jungle_trees.json b/minecraft/config/projectvibrantjourneys/pioneer/jungle_trees.json new file mode 100644 index 0000000..1ce9b93 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/pioneer/jungle_trees.json @@ -0,0 +1,10 @@ +[ + { + "biomeName": "pioneer:verdant_sands", + "chance": 15 + }, + { + "biomeName": "pioneer:overgrown_spires", + "chance": 15 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/pioneer/oak_trees.json b/minecraft/config/projectvibrantjourneys/pioneer/oak_trees.json new file mode 100644 index 0000000..7f8c364 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/pioneer/oak_trees.json @@ -0,0 +1,26 @@ +[ + { + "biomeName": "pioneer:pine_meadows", + "chance": 10 + }, + { + "biomeName": "pioneer:aspen_grove", + "chance": 10 + }, + { + "biomeName": "pioneer:windswept_cliffs", + "chance": 5 + }, + { + "biomeName": "pioneer:overgrown_spires", + "chance": 10 + }, + { + "biomeName": "pioneer:flooded_forest", + "chance": 20 + }, + { + "biomeName": "pioneer:verdant_sands", + "chance": 5 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/pioneer/spruce_trees.json b/minecraft/config/projectvibrantjourneys/pioneer/spruce_trees.json new file mode 100644 index 0000000..eebc834 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/pioneer/spruce_trees.json @@ -0,0 +1,10 @@ +[ + { + "biomeName": "pioneer:pine_meadows", + "chance": 3 + }, + { + "biomeName": "pioneer:autumnal_coniferous_forest", + "chance": 3 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/terralith/acacia_trees.json b/minecraft/config/projectvibrantjourneys/terralith/acacia_trees.json new file mode 100644 index 0000000..9d00dd5 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/terralith/acacia_trees.json @@ -0,0 +1,46 @@ +[ + { + "biomeName": "terralith:tropical_jungle", + "chance": 5 + }, + { + "biomeName": "terralith:amethyst_rainforest", + "chance": 20 + }, + { + "biomeName": "terralith:moonlight_valley", + "chance": 5 + }, + { + "biomeName": "terralith:skylands_summer", + "chance": 10 + }, + { + "biomeName": "terralith:lavender_forest", + "chance": 3 + }, + { + "biomeName": "terralith:amethyst_canyon", + "chance": 15 + }, + { + "biomeName": "terralith:arid_highlands", + "chance": 3 + }, + { + "biomeName": "terralith:hot_shrublands", + "chance": 3 + }, + { + "biomeName": "terralith:moonlight_grove", + "chance": 5 + }, + { + "biomeName": "terralith:lavender_valley", + "chance": 3 + }, + { + "biomeName": "terralith:savanna_badlands", + "chance": 5 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/terralith/birch_trees.json b/minecraft/config/projectvibrantjourneys/terralith/birch_trees.json new file mode 100644 index 0000000..a4bba53 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/terralith/birch_trees.json @@ -0,0 +1,66 @@ +[ + { + "biomeName": "terralith:white_cliffs", + "chance": 5 + }, + { + "biomeName": "terralith:blooming_valley", + "chance": 10 + }, + { + "biomeName": "terralith:lush_valley", + "chance": 10 + }, + { + "biomeName": "terralith:shield", + "chance": 3 + }, + { + "biomeName": "terralith:skylands_spring", + "chance": 3 + }, + { + "biomeName": "terralith:haze_mountain", + "chance": 5 + }, + { + "biomeName": "terralith:sakura_grove", + "chance": 5 + }, + { + "biomeName": "terralith:skylands_autumn", + "chance": 5 + }, + { + "biomeName": "terralith:orchid_swamp", + "chance": 10 + }, + { + "biomeName": "terralith:lavender_forest", + "chance": 10 + }, + { + "biomeName": "terralith:yellowstone", + "chance": 5 + }, + { + "biomeName": "terralith:lavender_valley", + "chance": 10 + }, + { + "biomeName": "terralith:temperate_highlands", + "chance": 10 + }, + { + "biomeName": "terralith:alpine_highlands", + "chance": 5 + }, + { + "biomeName": "terralith:sakura_valley", + "chance": 5 + }, + { + "biomeName": "terralith:birch_taiga", + "chance": 20 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/terralith/dark_oak_trees.json b/minecraft/config/projectvibrantjourneys/terralith/dark_oak_trees.json new file mode 100644 index 0000000..f799dd7 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/terralith/dark_oak_trees.json @@ -0,0 +1,46 @@ +[ + { + "biomeName": "terralith:skylands_winter", + "chance": 10 + }, + { + "biomeName": "terralith:siberian_taiga", + "chance": 10 + }, + { + "biomeName": "terralith:sakura_grove", + "chance": 15 + }, + { + "biomeName": "terralith:skylands_spring", + "chance": 10 + }, + { + "biomeName": "terralith:forested_highlands", + "chance": 10 + }, + { + "biomeName": "terralith:lavender_valley", + "chance": 15 + }, + { + "biomeName": "terralith:sakura_valley", + "chance": 10 + }, + { + "biomeName": "terralith:skylands_autumn", + "chance": 3 + }, + { + "biomeName": "terralith:snowy_maple_forest", + "chance": 5 + }, + { + "biomeName": "terralith:lavender_forest", + "chance": 15 + }, + { + "biomeName": "terralith:mirage_isles", + "chance": 3 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/terralith/jungle_trees.json b/minecraft/config/projectvibrantjourneys/terralith/jungle_trees.json new file mode 100644 index 0000000..6099313 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/terralith/jungle_trees.json @@ -0,0 +1,26 @@ +[ + { + "biomeName": "terralith:jungle_mountains", + "chance": 10 + }, + { + "biomeName": "terralith:red_oasis", + "chance": 10 + }, + { + "biomeName": "terralith:rocky_jungle", + "chance": 15 + }, + { + "biomeName": "terralith:skylands_summer", + "chance": 10 + }, + { + "biomeName": "terralith:tropical_jungle", + "chance": 15 + }, + { + "biomeName": "terralith:desert_oasis", + "chance": 5 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/terralith/oak_trees.json b/minecraft/config/projectvibrantjourneys/terralith/oak_trees.json new file mode 100644 index 0000000..c1d2536 --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/terralith/oak_trees.json @@ -0,0 +1,54 @@ +[ + { + "biomeName": "terralith:shrublands", + "chance": 5 + }, + { + "biomeName": "terralith:temperate_highlands", + "chance": 10 + }, + { + "biomeName": "terralith:blooming_valley", + "chance": 10 + }, + { + "biomeName": "terralith:lush_valley", + "chance": 10 + }, + { + "biomeName": "terralith:shield", + "chance": 5 + }, + { + "biomeName": "terralith:birch_taiga", + "chance": 5 + }, + { + "biomeName": "terralith:ice_marsh", + "chance": 10 + }, + { + "biomeName": "terralith:brushlands", + "chance": 5 + }, + { + "biomeName": "terralith:snowy_shield", + "chance": 5 + }, + { + "biomeName": "terralith:rocky_jungle", + "chance": 5 + }, + { + "biomeName": "terralith:snowy_maple_forest", + "chance": 5 + }, + { + "biomeName": "terralith:haze_mountain", + "chance": 10 + }, + { + "biomeName": "terralith:skylands_autumn", + "chance": 10 + } +] \ No newline at end of file diff --git a/minecraft/config/projectvibrantjourneys/terralith/spruce_trees.json b/minecraft/config/projectvibrantjourneys/terralith/spruce_trees.json new file mode 100644 index 0000000..8fd07af --- /dev/null +++ b/minecraft/config/projectvibrantjourneys/terralith/spruce_trees.json @@ -0,0 +1,70 @@ +[ + { + "biomeName": "terralith:skylands_winter", + "chance": 10 + }, + { + "biomeName": "terralith:snowy_shield", + "chance": 10 + }, + { + "biomeName": "terralith:moonlight_valley", + "chance": 5 + }, + { + "biomeName": "terralith:alpine_grove", + "chance": 5 + }, + { + "biomeName": "terralith:highlands", + "chance": 3 + }, + { + "biomeName": "terralith:wintry_lowlands", + "chance": 15 + }, + { + "biomeName": "terralith:moonlight_grove", + "chance": 5 + }, + { + "biomeName": "terralith:shield", + "chance": 10 + }, + { + "biomeName": "terralith:siberian_taiga", + "chance": 10 + }, + { + "biomeName": "terralith:forested_highlands", + "chance": 10 + }, + { + "biomeName": "terralith:yellowstone", + "chance": 10 + }, + { + "biomeName": "terralith:cold_shrublands", + "chance": 5 + }, + { + "biomeName": "terralith:alpine_highlands", + "chance": 5 + }, + { + "biomeName": "terralith:lush_valley", + "chance": 10 + }, + { + "biomeName": "terralith:bryce_canyon", + "chance": 5 + }, + { + "biomeName": "terralith:rocky_shrublands", + "chance": 5 + }, + { + "biomeName": "terralith:wintry_forest", + "chance": 15 + } +] \ No newline at end of file diff --git a/minecraft/config/puffish_skills/config.json b/minecraft/config/puffish_skills/config.json new file mode 100644 index 0000000..b44d923 --- /dev/null +++ b/minecraft/config/puffish_skills/config.json @@ -0,0 +1,5 @@ +{ + "version": 3, + + "show_warnings": true +} \ No newline at end of file diff --git a/minecraft/config/puzzlesapi-iteminteractions-client.toml b/minecraft/config/puzzlesapi-iteminteractions-client.toml new file mode 100644 index 0000000..f8e74b9 --- /dev/null +++ b/minecraft/config/puzzlesapi-iteminteractions-client.toml @@ -0,0 +1,36 @@ +#Color item inventories on tooltips according to the container item's color. +colorful_tooltips = true +#Show a tooltip for the item currently selected in a container item's tooltip next to the main tooltip. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Show a tooltip for the item currently selected in a container item's tooltip next to the main tooltip. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Allowed Values: KEY, ALWAYS, SHIFT, CONTROL, ALT +selected_item_tooltips = "ALWAYS" +#Invert scroll wheel direction for extracting / inserting items from a container item in precision mode. +invert_precision_mode_scrolling = false +#Expand container item tooltips to reveal their contents. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Expand container item tooltips to reveal their contents. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Allowed Values: KEY, ALWAYS, SHIFT, CONTROL, ALT +reveal_contents = "ALWAYS" +#Show an indicator on container items when the stack carried by the cursor can be added in your inventory. +container_item_indicator = true +#Select a modifier key required to be held to use precision mode. +#In precision mode left-clicking inserts an item, and right-clicking extracts a single item, overriding vanilla mouse interactions. The scroll wheel can also be used for quickly moving items. +#Select a modifier key required to be held to use precision mode. +#In precision mode left-clicking inserts an item, and right-clicking extracts a single item, overriding vanilla mouse interactions. The scroll wheel can also be used for quickly moving items. +#Allowed Values: SHIFT, CONTROL, ALT +precision_mode = "CONTROL" +#Always show item tooltips while interacting with container items, even when the cursor is currently carrying an item. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Always show item tooltips while interacting with container items, even when the cursor is currently carrying an item. +#Select a modifier key required to be held, otherwise selecting "KEY" serves as a toggle. The key is defined in vanilla's controls menu. +#Allowed Values: KEY, ALWAYS, SHIFT, CONTROL, ALT +carried_item_tooltips = "ALT" +#Disable sounds from inserting and extracting items from playing, as they trigger quite often with all the new interactions. +disable_interaction_sounds = true +#Render a white overlay or the hotbar selected item frame over the slot the next item will be taken out of when right-clicking the container item. +#Allowed Values: HOTBAR, HOVER +slot_overlay = "HOVER" + diff --git a/minecraft/config/puzzlesapi-iteminteractions-server.toml b/minecraft/config/puzzlesapi-iteminteractions-server.toml new file mode 100644 index 0000000..eddd1e6 --- /dev/null +++ b/minecraft/config/puzzlesapi-iteminteractions-server.toml @@ -0,0 +1,8 @@ +#Allow using the mouse wheel to scroll between slots in an item tooltip to choose the next item to extract. +allow_slot_cycling = true +#Allow dragging the mouse while holding a container item to insert hovered items, or to extract container contents to empty hovered slots. +allow_mouse_dragging = true +#Allow extracting / inserting only a single item from a container item instead of all items from the selected slot while a modifier key is held. +#In precision mode left-clicking inserts an item, and right-clicking extracts a single item, overriding vanilla mouse interactions. The scroll wheel can also be used for quickly moving items. +allow_precision_mode = true + diff --git a/minecraft/config/puzzlesapi-slotcycling-client.toml b/minecraft/config/puzzlesapi-slotcycling-client.toml new file mode 100644 index 0000000..b1112eb --- /dev/null +++ b/minecraft/config/puzzlesapi-slotcycling-client.toml @@ -0,0 +1,18 @@ +#Horizontal offset of cycle slots display from default position. +#Allows for compatibility with mods that also add their own displays next to the hotbar. +#Range: > -2147483648 +slots_x_offset = 0 +#Vertical offset of cycle slots display from screen bottom. +#Allows for compatibility with mods that move the hotbar upwards such as the Raised mod (Raised has built-in support on Fabric). +#Range: > -2147483648 +slots_y_offset = 0 +#Cycle slots by pressing a hotbar key when the corresponding slot is already selected. +double_press_hotbar_key = true +#Modifier key required to be held to allow for scrolling through cycle slots. +#Setting to "NONE" will overwrite vanilla hotbar scrolling, making the hotbar only usable with keys. +#Allowed Values: DISABLED, NONE, CONTROL, SHIFT, ALT +scrolling_modifier_key = "ALT" +#Choose when the cycle slots display is shown next to the hotbar: Always, never, or only when the modifier key for scrolling is held. Doesn't disable cycling itself though. +#Allowed Values: ALWAYS, KEY, NEVER +slots_display_state = "ALWAYS" + diff --git a/minecraft/config/quality_food-client.toml b/minecraft/config/quality_food-client.toml new file mode 100644 index 0000000..4d31742 --- /dev/null +++ b/minecraft/config/quality_food-client.toml @@ -0,0 +1,5 @@ +#Enable / disable particles to indicate the quality level of certain blocks (e.g. furnace) +particles = true +#Enable / disable effect tooltips for food items +food_effects = true + diff --git a/minecraft/config/quark-common.toml b/minecraft/config/quark-common.toml new file mode 100644 index 0000000..048fa74 --- /dev/null +++ b/minecraft/config/quark-common.toml @@ -0,0 +1,1954 @@ + +[tweaks] + "Double Door Opening" = false + "Armed Armor Stands" = true + "Automatic Recipe Unlock" = true + "Better Elytra Rocket" = true + "Campfires Boost Elytra" = true + "Compasses Work Everywhere" = true + "Coral On Cactus" = true + "Diamond Repair" = true + "Dragon Scales" = true + "Dyeable Item Frames" = true + Emotes = true + "Enhanced Ladders" = true + "Glass Shard" = true + "Gold Tools Have Fortune" = true + "Grab Chickens" = true + "Hoe Harvesting" = true + "Horses Swim" = true + "Improved Sponges" = true + "Lock Rotation" = true + "Magma Keeps Concrete Powder" = true + "Map Washing" = true + "More Banner Layers" = true + "More Note Block Sounds" = true + "More Villagers" = true + "No Durability On Cosmetics" = true + "Pat The Dogs" = true + "Petals On Water" = true + "Pig Litters" = true + "Poison Potato Usage" = true + "Reacharound Placing" = true + "Renewable Spore Blossoms" = true + "Replace Scaffolding" = true + "Safer Creatures" = true + "Shulker Packing" = true + "Simple Harvest" = true + "Slabs To Blocks" = true + "Slimes To Magma Cubes" = true + "Snow Golem Player Heads" = true + "Utility Recipes" = true + "Vexes Die With Their Masters" = true + "Villagers Follow Emeralds" = true + "Zombie Villagers On Normal" = true + + [tweaks.double_door_opening] + "Enable Doors" = false + "Enable Fence Gates" = false + #This feature disables itself if any of the following mods are loaded: + # - utilitix + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.automatic_recipe_unlock] + #A list of recipe names that should NOT be added in by default + "Ignored Recipes" = [] + "Force Limited Crafting" = false + "Disable Recipe Book" = false + #If enabled, advancements granting recipes will be stopped from loading, potentially reducing the lagspike on first world join. + "Filter Recipe Advancements" = true + #This feature disables itself if any of the following mods are loaded: + # - nerb + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.campfires_boost_elytra] + "Boost Strength" = 0.5 + "Max Speed" = 1.0 + + [tweaks.compasses_work_everywhere] + "Enable Compass Nerf" = true + "Enable Clock Nerf" = true + "Enable Nether" = true + "Enable End" = true + + [tweaks.diamond_repair] + #List of changes to apply to repair items, format is "=" as seen in the defualt. + #Multiple repair items can be applied for the same base item, and as long as at least one is provided, any vanilla option will be removed. + #To use multiple items, comma separate them (e.g. "minecraft:diamond_sword=minecraft:diamond,minecraft:emerald")If you want the vanilla option back, you must add it again manually. + "Repair Item Changes" = ["minecraft:netherite_sword=minecraft:diamond", "minecraft:netherite_pickaxe=minecraft:diamond", "minecraft:netherite_axe=minecraft:diamond", "minecraft:netherite_shovel=minecraft:diamond", "minecraft:netherite_hoe=minecraft:diamond", "minecraft:netherite_helmet=minecraft:diamond", "minecraft:netherite_chestplate=minecraft:diamond", "minecraft:netherite_leggings=minecraft:diamond", "minecraft:netherite_boots=minecraft:diamond"] + "Unrepairable Items" = [] + "Enable Jei Hints" = true + + [tweaks.emotes] + #The enabled default emotes. Remove from this list to disable them. You can also re-order them, if you feel like it. + "Enabled Emotes" = ["no", "yes", "wave", "salute", "cheer", "clap", "think", "point", "shrug", "headbang", "weep", "facepalm"] + #The list of Custom Emotes to be loaded. + #Watch the tutorial on Custom Emotes to learn how to make your own: https://youtu.be/ourHUkan6aQ + "Custom Emotes" = [] + #Enable this to make custom emotes read the file every time they're triggered so you can edit on the fly. + #DO NOT ship enabled this in a modpack, please. + "Custom Emote Debug" = false + "Button Shift X" = 0 + "Button Shift Y" = 0 + + [tweaks.enhanced_ladders] + #Allowed values: (,0] + "Fall Speed" = -0.2 + "Allow Freestanding" = true + "Allow Dropping Down" = true + "Allow Sliding" = true + "Allow Inventory Sneak" = true + + [tweaks.gold_tools_have_fortune] + #Allowed values: [0,) + "Fortune Level" = 2 + #Allowed values: [0,4] + "Harvest Level" = 2 + "Display Baked Enchantments In Tooltip" = true + "Italic Tooltip" = true + #Enchantments other than Gold's Fortune/Looting to bake into items. Format is "item+enchant@level", such as "minecraft:stick+sharpness@10". + "Baked Enchantments" = [] + + [tweaks.grab_chickens] + "Needs No Helmet" = true + #Set to 0 to disable + "Slowness Level" = 1 + + [tweaks.hoe_harvesting] + #Allowed values: [1,5] + "Regular Hoe Radius" = 2 + #Allowed values: [1,5] + "High Tier Hoe Radius" = 3 + + [tweaks.improved_sponges] + #The maximum number of water tiles that a sponge can soak up. Vanilla default is 64. + #Allowed values: [64,) + "Maximum Water Drain" = 256 + #The maximum number of water tiles that a sponge can 'crawl along' for draining. Vanilla default is 6. + #Allowed values: [6,) + "Maximum Crawl Distance" = 10 + "Enable Placing On Water" = true + + [tweaks.lock_rotation] + #When true, lock rotation indicator in the same style as crosshair + "Render Like Cross Hair" = true + + [tweaks.map_washing] + #This feature disables itself if any of the following mods are loaded: + # - supplementaries + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.more_banner_layers] + #Allowed values: [1,16] + "Layer Limit" = 16 + + [tweaks.more_note_block_sounds] + "Enable Amethyst Sound" = true + + [tweaks.more_villagers] + "Ocean Villager" = true + "Beach Villager" = true + + [tweaks.no_durability_on_cosmetics] + #Allow applying cosmetic items such as color runes with no anvil durability usage? Cosmetic items are defined in the quark:cosmetic_anvil_items tag + "Allow Cosmetic Items" = true + + [tweaks.pat_the_dogs] + #How many ticks it takes for a dog to want affection after being pet/tamed; leave -1 to disable + "Dogs Want Love" = -1 + #Whether you can pet all mobs + "Pet All Mobs" = false + #If `petAllMobs` is set, these mobs still can't be pet + "Pettable Denylist" = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:armor_stand"] + #Even if `petAllMobs` is not set, these mobs can be pet + "Pettable Allowlist" = [] + + [tweaks.pig_litters] + #Allowed values: [1,) + "Min Pig Litter Size" = 2 + #Allowed values: [1,) + "Max Pig Litter Size" = 3 + "Pigs Eat Golden Carrots" = true + #Allowed values: [0,) + "Min Golden Carrot Boost" = 0 + #Allowed values: [0,) + "Max Golden Carrot Boost" = 2 + + [tweaks.poison_potato_usage] + Chance = 0.1 + "Poison Effect" = true + + [tweaks.reacharound_placing] + #Allowed values: [0,1] + Leniency = 0.5 + Whitelist = [] + Blacklist = [] + + [tweaks.renewable_spore_blossoms] + "Bone Meal Chance" = 0.2 + + [tweaks.replace_scaffolding] + #How many times the algorithm for finding out where a block would be placed is allowed to turn. If you set this to large values (> 3) it may start producing weird effects. + "Max Bounces" = 1 + + [tweaks.safer_creatures] + #How many blocks should be subtracted from the rabbit fall height when calculating fall damage. 5 is the same value as vanilla frogs + "Height Reduction" = 5.0 + "Enable Slime Fall Damage Removal" = true + + [tweaks.simple_harvest] + #Can players harvest crops with empty hand clicks? + "Empty Hand Harvest" = true + #Does harvesting crops with a hoe cost durability? + "Harvesting Costs Durability" = false + #Should Quark look for(nonvanilla) crops, and handle them? + "Do Harvesting Search" = true + #Should villagers use simple harvest instead of breaking crops? + "Villagers Use Simple Harvest" = true + #Which crops can be harvested? + #Format is: "harvestState[,afterHarvest]", i.e. "minecraft:wheat[age=7]" or "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]" + "Harvestable Blocks" = ["minecraft:wheat[age=7]", "minecraft:carrots[age=7]", "minecraft:potatoes[age=7]", "minecraft:beetroots[age=3]", "minecraft:nether_wart[age=3]", "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]", "minecraft:cocoa[age=2,facing=south],minecraft:cocoa[age=0,facing=south]", "minecraft:cocoa[age=2,facing=east],minecraft:cocoa[age=0,facing=east]", "minecraft:cocoa[age=2,facing=west],minecraft:cocoa[age=0,facing=west]"] + #Which blocks should right click harvesting simulate a click on instead of breaking? + #This is for blocks like sweet berry bushes, which have right click harvesting built in. + "Right Clickable Blocks" = ["minecraft:sweet_berry_bush", "minecraft:cave_vines"] + + [tweaks.utility_recipes] + #Can any wool color be dyed? + "Dye Any Wool" = true + #Can other stone-like materials be used for crafting stone tools? + "Better Stone Tool Crafting" = true + #Can a dispenser be crafted by adding a bow to a dropper? + "Enable Dispenser" = true + #Can a repeater be crafted with the pattern for a redstone torch? + "Enable Repeater" = true + #Can you craft a minecart around blocks which can be placed inside? + "Enable Minecarts" = true + #Can you craft a boat around a chest to directly make a chest boat? + "Enable Chest Boats" = true + #Can you craft four chests at once using logs? + "Logs To Chests" = true + #Can Coral be crafted into dye? + "Coral To Dye" = true + #Can cookies, paper, and bread be crafted in a 2x2 crafting table? + "Bent Recipes" = true + #Can Rotten Flesh and Poisonous Potatoes be composted? + "Compostable Toxins" = true + #Does Dragon Breath return a bottle when used as a reagent or material? + "Effective Dragon Breath" = true + #Can torches can be used as fuel in furnaces? + "Torches Burn" = true + #Can bones be smelted down to bone meal? + "Bone Meal Utility" = true + #Can Charcoal be crafted into Black Dye? + "Charcoal To Black Dye" = true + #Can two Logs be used instead of a Chest to make a Hopper? + "Easy Hopper" = true + #Can two Logs be used to craft 16 sticks? + "Easy Sticks" = true + #Can raw ore blocks be smelted, taking 9x the time a normal item? + "Smelt Raw Ore Blocks" = true + +[general] + "Enable 'q' Button" = true + "'q' Button on the Right" = false + "Disable Q Menu Effects" = false + #How many advancements deep you can see in the advancement screen. Vanilla is 2. + #Allowed values: (0,) + "Advancement Visibility Depth" = 2 + #Blocks that Quark should treat as Shulker Boxes. + "Shulker Boxes" = ["minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box"] + #Should Quark treat anything with 'shulker_box' in its item identifier as a shulker box? + "Interpret Shulker Box Like Blocks" = true + #Set to true if you need to find the class name for a screen that's causing problems + "Print Screen Classnames" = false + #A list of screens that can accept quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add. + "Allowed Screens" = [] + #If set to true, the 'Allowed Screens' option will work as a Blacklist rather than a Whitelist. WARNING: Use at your own risk as some mods may not support this. + "Use Screen List Blacklist" = false + #If 'true' and TerraBlender is present, Quark will add a TerraBlender region. The region will contain vanilla biomes and the Glimmering Weald. + "Terrablender Add Region" = true + #Quark will set this weight for its TerraBlender region. + "Terrablender Region Weight" = 1 + #If 'true', Quark will modify the `minecraft:overworld` MultiNoiseBiomeSourceParameterList preset, even when Terrablender is installed. + #This will have various knock-on effects but might make the Weald more common, or appear closer to modded biomes. Who knows? + "Terrablender Modify Vanilla Anyway" = false + #Set to false to disable the popup message telling you that you can config quark in the q menu + "Enable Onboarding" = true + #The amount of slots the chest button system should seek when trying to figure out if a container should be eligible for them. + "Chest Button Slot Target" = 27 + #Set this to false to not generate the Quark Programmer Art resource pack + "Generate Programmer Art" = true + + [general.chest_button_offsets] + "Player X" = 0 + "Player Y" = 0 + "Top X" = 0 + "Top Y" = 0 + "Middle X" = 0 + "Middle Y" = 0 + +[categories] + automation = true + building = true + management = true + tools = true + tweaks = true + world = true + mobs = true + client = true + experimental = true + oddities = true + +[automation] + "Chains Connect Blocks" = true + Chute = true + Crafter = true + "Dispensers Place Blocks" = true + "Ender Watcher" = true + "Feeding Trough" = true + Gravisand = true + "Iron Rod" = true + "Metal Buttons" = true + "Obsidian Plate" = true + "Pistons Move Tile Entities" = true + "Redstone Randomizer" = true + + [automation.crafter] + #Setting this to true will change the Crafter to use Emi's original design instead of Mojang's. + #Emi's design allows only one item per slot, instead of continuing to fill it round robin. + #If this is enabled, Allow Items While Powered should also be set to false for the full design. + "Use Emi Logic" = false + #Set to false to allow items to be inserted into the Crafter even while it's powered. + "Allow Items While Powered" = true + + [automation.dispensers_place_blocks] + Blacklist = ["minecraft:water", "minecraft:lava", "minecraft:fire"] + #Set to false to refrain from registering any behaviors for blocks that have optional dispense behaviors already set. + #An optional behavior is one that will defer to the generic dispense item behavior if its condition fails. + #e.g. the Shulker Box behavior is optional, because it'll throw out the item if it fails, whereas TNT is not optional. + #If true, it'll attempt to use the previous behavior before trying to place the block in the world. + #Requires a game restart to re-apply. + "Wrap Existing Behaviors" = true + + [automation.feeding_trough] + #How long, in game ticks, between animals being able to eat from the trough + #Allowed values: [1,) + Cooldown = 30 + #The maximum amount of animals allowed around the trough's range for an animal to enter love mode + "Max Animals" = 32 + #The chance (between 0 and 1) for an animal to enter love mode when eating from the trough + #Allowed values: (0,1] + "Love Chance" = 0.333333333 + Range = 10.0 + #Chance that an animal decides to look for a through. Closer it is to 1 the more performance it will take. Decreasing will make animals take longer to find one + "Look Chance" = 0.015 + + [automation.iron_rod] + "Use Pre End Recipe" = false + + [automation.metal_buttons] + "Enable Iron" = true + "Enable Gold" = true + + [automation.pistons_move_tile_entities] + "Enable Chests Moving Together" = true + "Render Blacklist" = ["psi:programmer", "botania:starfield"] + "Movement Blacklist" = ["minecraft:spawner", "integrateddynamics:cable", "randomthings:blockbreaker", "minecraft:ender_chest", "minecraft:enchanting_table", "minecraft:trapped_chest", "quark:spruce_trapped_chest", "quark:birch_trapped_chest", "quark:jungle_trapped_chest", "quark:acacia_trapped_chest", "quark:dark_oak_trapped_chest", "endergetic:bolloom_bud"] + "Delayed Update List" = ["minecraft:dispenser", "minecraft:dropper"] + +[building] + "Celebratory Lamps" = true + "Compressed Blocks" = true + "Duskbound Blocks" = true + "Framed Glass" = true + "Glass Item Frame" = true + "Gold Bars" = true + Grate = true + Hedges = true + "Hollow Logs" = true + "Industrial Palette" = true + "Japanese Palette" = true + "Leaf Carpet" = true + Midori = true + "More Brick Types" = true + "More Mud Blocks" = true + "More Potted Plants" = true + "Nether Brick Fence Gate" = true + "Rainbow Lamps" = true + "Raw Metal Bricks" = true + Rope = true + "Shear Vines" = true + Shingles = true + "Soul Sandstone" = true + Stools = true + "Sturdy Stone" = true + Thatch = true + "Variant Bookshelves" = true + "Variant Chests" = true + "Variant Furnaces" = true + "Variant Ladders" = true + "Vertical Planks" = true + "Vertical Slabs" = true + "Wooden Posts" = true + "More Stone Variants" = true + + [building.celebratory_lamps] + "Light Level" = 15 + + [building.compressed_blocks] + "Charcoal Block and Blaze Lantern Stay On Fire Forever" = true + #Allowed values: [0,) + "Charcoal Block Fuel Time" = 16000 + #Allowed values: [0,) + "Blaze Lantern Fuel Time" = 24000 + #Allowed values: [0,) + "Stick Block Fuel Time" = 900 + "Enable Charcoal Block" = true + "Enable Sugar Cane Block" = true + "Enable Cactus Block" = true + "Enable Chorus Fruit Block" = true + "Enable Stick Block" = true + "Enable Apple Crate" = true + "Enable Golden Apple Crate" = true + "Enable Potato Crate" = true + "Enable Carrot Crate" = true + "Enable Golden Carrot Crate" = true + "Enable Beetroot Crate" = true + "Enable Cocoa Bean Sack" = true + "Enable Nether Wart Sack" = true + "Enable Gunpowder Sack" = true + "Enable Berry Sack" = true + "Enable Glow Berry Sack" = true + "Enable Blaze Lantern" = true + "Enable Bonded Leather" = true + "Enable Bonded Rabbit Hide" = true + + [building.glass_item_frame] + "Glass Item Frames Update Maps" = true + #Set to true for faster map updates. Default is every 3s + "Glass Item Frames Update Maps Every Tick" = false + #The scale at which items render in the Glass Item Frame. To match the vanilla Item Frame size, set to 1.0 + "Item Render Scale" = 1.5 + + [building.gold_bars] + "Generate In Nether Fortress" = true + + [building.hollow_logs] + "Enable Auto Crawl" = true + + [building.industrial_palette] + "Enable Iron Plates" = true + "Enable Iron Ladder" = true + + [building.japanese_palette] + "Enable Paper Blocks" = true + "Enable Bamboo Mats" = true + + [building.leaf_carpet] + #This feature disables itself if any of the following mods are loaded: + # - immersive_weathering + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.more_brick_types] + #This also comes with a utility recipe for Red Nether Bricks + "Enable Blue Nether Bricks" = true + #This also includes Red Sandstone Bricks and Soul Sandstone Bricks + "Enable Sandstone Bricks" = true + #This also includes Mossy Cobblestone Bricks + "Enable Cobblestone Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Blackstone Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Dirt Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Netherrack Bricks" = true + + [building.rainbow_lamps] + "Light Level" = 15 + #Whether Rainbow Lamps should be made from and themed on Corundum if that module is enabled. + "Use Corundum" = true + + [building.rope] + #Set to true to allow ropes to move Tile Entities even if Pistons Push TEs is disabled. + #Note that ropes will still use the same blacklist. + "Force Enable Move Tile Entities" = false + "Enable Dispenser Behavior" = true + #This feature disables itself if any of the following mods are loaded: + # - supplementaries + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.thatch] + #Allowed values: [0,1] + "Fall Damage Multiplier" = 0.5 + #This feature disables itself if any of the following mods are loaded: + # - environmental + # - goated + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_bookshelves] + "Change Names" = true + #This feature disables itself if any of the following mods are loaded: + # - woodster + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_chests] + "Enable Reverting Wooden Chests" = true + "Replace Worldgen Chests" = true + #Chests to put in structures. It's preferred to use worldgen tags for this. The format per entry is "structure=chest", where "structure" is a structure ID, and "chest" is a block ID, which must correspond to a standard chest block. + "Structure Chests" = [] + #This feature disables itself if any of the following mods are loaded: + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_ladders] + "Change Names" = true + #This feature disables itself if any of the following mods are loaded: + # - woodster + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.vertical_slabs] + #Should Walls and Panes attempt to connect to the side of Vertical Slabs? + "Allow Side Connections" = true + + [building.more_stone_variants] + "Enable Bricks" = true + "Enable Chiseled Bricks" = true + "Enable Pillar" = true + +[management] + "Automatic Tool Restock" = true + "Easy Transfering" = true + "Expanded Item Interactions" = true + "Hotbar Changer" = true + "Inventory Sorting" = true + "Item Sharing" = true + "Quick Armor Swapping" = true + + [management.automatic_tool_restock] + #Enchantments deemed important enough to have special priority when finding a replacement + "Important Enchantments" = ["minecraft:silk_touch", "minecraft:fortune", "minecraft:infinity", "minecraft:luck_of_the_sea", "minecraft:looting"] + #Enable replacing your tools with tools of the same type but not the same item + "Enable Loose Matching" = true + #Enable comparing enchantments to find a replacement + "Enable Enchant Matching" = true + #Allow pulling items from one hotbar slot to another + "Check Hotbar" = false + "Unstackables Only" = false + #Any items you place in this list will be ignored by the restock feature + "Ignored Items" = ["botania:exchange_rod", "botania:dirt_rod", "botania:skydirt_rod", "botania:cobble_rod"] + #This feature disables itself if any of the following mods are loaded: + # - inventorytweaks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [management.easy_transfering] + "Enable Shift Lock" = true + + [management.expanded_item_interactions] + "Enable Armor Interaction" = true + "Enable Shulker Box Interaction" = true + "Enable Lava Interaction" = true + "Allow Opening Shulker Boxes" = true + "Allow Rotating Bundles" = true + + [management.hotbar_changer] + "Animation Time" = 7.0 + + [management.inventory_sorting] + "Enable Player Inventory" = true + "Enable Player Inventory In Chests" = true + "Enable Chests" = true + #Play a click when sorting inventories using keybindings + "Satisfying Click" = true + + [management.item_sharing] + #In ticks. + #Allowed values: [0,) + Cooldown = 100 + "Render Items In Chat" = true + + [management.quick_armor_swapping] + "Swap Off Hand" = true + +[tools] + Abacus = true + "Ambient Discs" = true + "Ancient Tomes" = true + "Beacon Redirection" = true + "Bottled Cloud" = true + "Color Runes" = true + "Endermosh Music Disc" = true + "Parrot Eggs" = true + "Pathfinder Maps" = true + Pickarang = true + "Seed Pouch" = true + "Skull Pikes" = true + "Slime In A Bucket" = true + "Torch Arrow" = true + Trowel = true + + [tools.abacus] + + [tools.abacus.highlight_color] + A = 0.4 + R = 0.0 + G = 0.0 + B = 0.0 + + [tools.ambient_discs] + "Drop On Spider Kill" = true + Volume = 3.0 + + [tools.ancient_tomes] + #Format is lootTable,weight. i.e. "minecraft:chests/stronghold_library,30" + "Loot Tables" = ["minecraft:chests/stronghold_library,20", "minecraft:chests/simple_dungeon,20", "minecraft:chests/bastion_treasure,25", "minecraft:chests/woodland_mansion,15", "minecraft:chests/nether_bridge,0", "minecraft:chests/underwater_ruin_big,0", "minecraft:chests/underwater_ruin_small,0", "minecraft:chests/ancient_city,4", "quark:misc/monster_box,5"] + "Item Quality" = 2 + "Normal Upgrade Cost" = 10 + "Limit Break Upgrade Cost" = 30 + "Valid Enchantments" = ["minecraft:feather_falling", "minecraft:thorns", "minecraft:sharpness", "minecraft:smite", "minecraft:bane_of_arthropods", "minecraft:knockback", "minecraft:fire_aspect", "minecraft:looting", "minecraft:sweeping", "minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:power", "minecraft:punch", "minecraft:luck_of_the_sea", "minecraft:lure", "minecraft:loyalty", "minecraft:riptide", "minecraft:impaling", "minecraft:piercing"] + "Overleveled Books Glow Rainbow" = true + #When enabled, Efficiency VI Diamond and Netherite pickaxes can instamine Deepslate when under Haste 2 + "Deepslate Tweak" = true + "Deepslate Tweak Needs Haste2" = true + #Master Librarians will offer to exchange Ancient Tomes, provided you give them a max-level Enchanted Book of the Tome's enchantment too. + "Librarians Exchange Ancient Tomes" = true + #Applying a tome will also randomly curse your item + "Curse Gear" = false + #Allows combining tomes with normal books + "Combine With Books" = true + #Whether a sanity check is performed on the valid enchantments. If this is turned off, enchantments such as Silk Touch will be allowed to generate Ancient Tomes, if explicitly added to the Valid Enchantments. + "Sanity Check" = true + + [tools.beacon_redirection] + "Horizontal Move Limit" = 64 + "Allow Tinted Glass Transparency" = true + + [tools.bottled_cloud] + "Cloud Level Bottom" = 191 + "Cloud Level Top" = 196 + + [tools.color_runes] + "Dungeon Weight" = 10 + "Nether Fortress Weight" = 8 + "Jungle Temple Weight" = 8 + "Desert Temple Weight" = 8 + "Item Quality" = 0 + + [tools.endermosh_music_disc] + "Play Endermosh During Enderdragon Fight" = false + "Add To End City Loot" = true + "Loot Weight" = 5 + "Loot Quality" = 1 + + [tools.parrot_eggs] + #The chance feeding a parrot will produce an egg + Chance = 0.05 + #How long it takes to create an egg + "Egg Time" = 12000 + "Enable Special Awesome Parrot" = true + + [tools.pathfinder_maps] + #In this section you can add custom Pathfinder Maps. This works for both vanilla and modded biomes. + #Each custom map must be on its own line. + #The format for a custom map is as follows: + #,,,,, + #With the following descriptions: + # - being the biome's ID NAME. You can find vanilla names here - https://minecraft.wiki/w/Biome#Biome_IDs + # - being the Cartographer villager level required for the map to be unlockable + # - being the cheapest (in Emeralds) the map can be + # - being the most expensive (in Emeralds) the map can be + # - being a hex color (without the #) for the map to display. You can generate one here - https://htmlcolorcodes.com/ + #Here's an example of a map to locate Ice Mountains: + #minecraft:ice_mountains,2,8,14,7FE4FF + Customs = [] + #Set to false to make it so the default quark Pathfinder Map Built-In don't get added, and only the custom ones do + "Apply Default Trades" = true + #How many steps in the search should the Pathfinder's Quill do per tick? The higher this value, the faster it'll find a result, but the higher chance it'll lag the game while doing so + "Pathfinders Quill Speed" = 32 + #Experimental. Determines if quills should be multithreaded instead. Will ignore quill speed. This could drastically improve performance as it execute the logic off the main thread ideally causing no lag at all + "Multi Threaded" = true + #Allows retrying after a pathfinder quill fails to find a biome nearby. Turn off if you think its op + "Allow Retrying" = true + "Search Radius" = 6400 + "Xp From Trade" = 5 + "Add To Cartographer" = true + "Add To Wandering Trader Forced" = true + "Add To Wandering Trader Generic" = false + "Add To Wandering Trader Rare" = false + "Draw Hud" = true + "Hud On Top" = false + + [tools.pickarang] + "Enable Flamerang" = true + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + + [tools.pickarang.pickarang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 3 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 800 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 2 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.pickarang.flamerang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 4 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 1040 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 3 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.seed_pouch] + "Max Items" = 640 + "Show All Variants In Creative" = true + "Shift Range" = 3 + #Allow putting bone meal into the Seed Pouch (or anything else in the tag 'quark:seed_pouch_fertilizers') + "Allow Fertilizer" = true + "Fertilizer Shift Range" = 3 + + [tools.skull_pikes] + "Pike Range" = 5.0 + + [tools.torch_arrow] + "Extinguish On Miss" = false + + [tools.trowel] + #Amount of blocks placed is this value + 1. + #Set to 0 to make the Trowel unbreakable + #Allowed values: [0,) + "Trowel Max Durability" = 0 + +[world] + "Ancient Wood" = true + "Azalea Wood" = true + "Big Stone Clusters" = true + "Blossom Trees" = true + "Chorus Vegetation" = true + Corundum = true + "Fairy Rings" = true + "Fallen Logs" = true + "Glimmering Weald" = true + "Monster Box" = true + "Nether Obsidian Spikes" = true + "New Stone Types" = true + "No More Lava Pockets" = true + Permafrost = true + "Spiral Spires" = true + + [world.ancient_wood] + "Ancient Fruit Gives Exp" = true + #Allowed values: [1,) + "Ancient Fruit Exp Value" = 10 + #Set to a value other than 0 to enable Ancient City loot chest generation (8 recommended if you do) + #Allowed values: [0,) + "Ancient City Loot Weight" = 0 + #Allowed values: [0,) + "Ancient City Loot Quality" = 1 + #Set to 0 to disable sniffer sniffing. The vanilla loot table has every entry at weight 1, so without editing it, it's impossible to make the sapling more rare + #Allowed values: [0,) + "Sniffing Loot Weight" = 1 + #Allowed values: [0,) + "Sniffing Loot Quality" = 0 + + [world.azalea_wood] + #This feature disables itself if any of the following mods are loaded: + # - caverns_and_chasms + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [world.big_stone_clusters] + #Blocks that stone clusters can replace. If you want to make it so it only replaces in one dimension, + #do "block|dimension", as we do for netherrack and end stone by default. + "Blocks To Replace" = ["minecraft:stone", "minecraft:andesite", "minecraft:diorite", "minecraft:granite", "minecraft:netherrack|minecraft:the_nether", "minecraft:end_stone|minecraft:the_end", "quark:marble", "quark:limestone", "quark:jasper", "quark:slate"] + + [world.big_stone_clusters.calcite] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.calcite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.calcite.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.calcite.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.calcite.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.limestone] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.limestone.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.limestone.biomes.tags] + "Biome Tags" = ["forge:is_swamp", "minecraft:is_ocean"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.limestone.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.jasper] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.jasper.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.jasper.biomes.tags] + "Biome Tags" = ["minecraft:is_badlands", "forge:is_sandy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.jasper.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.shale] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.shale.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.shale.biomes.tags] + "Biome Tags" = ["forge:is_snowy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.shale.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.myalite] + "Generate In Air" = true + Enabled = true + #Allowed values: [0,) + Rarity = 100 + "Min Y Level" = 58 + "Max Y Level" = 62 + #Allowed values: [0,) + "Horizontal Size" = 20 + #Allowed values: [0,) + "Vertical Size" = 40 + #Allowed values: [0,) + "Horizontal Variation" = 6 + #Allowed values: [0,) + "Vertical Variation" = 10 + + [world.big_stone_clusters.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.big_stone_clusters.myalite.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.myalite.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.myalite.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + + [world.blossom_trees] + "Drop Leaf Particles" = true + + [world.blossom_trees.blue] + Rarity = 200 + + [world.blossom_trees.blue.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.blue.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.blue.biome_config.tags] + "Biome Tags" = ["forge:is_snowy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.blue.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.lavender] + Rarity = 100 + + [world.blossom_trees.lavender.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.lavender.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.lavender.biome_config.tags] + "Biome Tags" = ["forge:is_swamp"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.lavender.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.orange] + Rarity = 100 + + [world.blossom_trees.orange.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.orange.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.orange.biome_config.tags] + "Biome Tags" = ["minecraft:is_savanna"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.orange.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.yellow] + Rarity = 200 + + [world.blossom_trees.yellow.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.yellow.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.yellow.biome_config.tags] + "Biome Tags" = ["forge:is_plains"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.yellow.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.red] + Rarity = 30 + + [world.blossom_trees.red.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.red.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.red.biome_config.tags] + "Biome Tags" = ["minecraft:is_badlands"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.red.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.chorus_vegetation] + Rarity = 150 + Radius = 7 + "Chunk Attempts" = 120 + "Highlands Chance" = 1.0 + "Midlands Chance" = 0.2 + "Other End Biomes Chance" = 0.0 + "Passive Teleport Chance" = 0.2 + "Endermite Spawn Chance" = 0.01 + "Teleport Duplication Chance" = 0.01 + + [world.corundum] + #Allowed values: [0,1] + "Crystal Chance" = 0.16 + #Allowed values: [0,1] + "Crystal Cluster Chance" = 0.2 + #Allowed values: [0,1] + "Crystal Cluster On Sides Chance" = 0.6 + #Allowed values: [0,1] + "Double Crystal Chance" = 0.2 + #The chance that a crystal can grow, this is on average 1 in X world ticks, set to a higher value to make them grow slower. Minimum is 1, for every tick. Set to 0 to disable growth. + "Cave Crystal Growth Chance" = 5 + "Crystals Craft Runes" = true + "Enable Collateral Movement" = true + + [world.corundum.generation_settings] + #Allowed values: [0,) + Rarity = 400 + "Min Y Level" = 0 + "Max Y Level" = 64 + #Allowed values: [0,) + "Horizontal Size" = 36 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 8 + #Allowed values: [0,) + "Vertical Variation" = 6 + + [world.corundum.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.corundum.generation_settings.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.corundum.generation_settings.biomes.tags] + "Biome Tags" = ["minecraft:is_ocean"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.corundum.generation_settings.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.fairy_rings] + "Forest Chance" = 0.00625 + "Plains Chance" = 0.0025 + Ores = ["minecraft:emerald_ore", "minecraft:diamond_ore"] + + [world.fairy_rings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.fallen_logs] + #Percentage of fallen logs spawning as hollow. Requires Hollow Logs Module to be enabled + "Hollow Chance" = 0.7 + Rarity = 5 + #Chance for logs to spawn on water + "On Water Chance" = 0.1 + "Sparse Biome Rarity" = 12 + #Tags that define which biomes can have which wood types + "Biome Tags" = ["quark:has_fallen_acacia=minecraft:acacia_log", "quark:has_fallen_birch=minecraft:birch_log", "quark:has_fallen_cherry=minecraft:cherry_log", "quark:has_fallen_dark_oak=minecraft:dark_oak_log", "quark:has_fallen_jungle=minecraft:jungle_log", "quark:has_fallen_mangrove=minecraft:mangrove_log", "quark:has_fallen_oak=minecraft:oak_log", "quark:has_fallen_spruce=minecraft:spruce_log"] + + [world.fallen_logs.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.monster_box] + #The chance for the monster box generator to try and place one in a chunk. 0 is 0%, 1 is 100% + #This can be higher than 100% if you want multiple per chunk. + "Chance Per Chunk" = 0.2 + "Min Y" = -50 + "Max Y" = 0 + "Min Mob Count" = 5 + "Max Mob Count" = 8 + "Enable Extra Loot Table" = true + "Activation Range" = 2.5 + #How many blocks to search vertically from a position before trying to place a block. Higher means you'll get more boxes in open spaces. + "Search Range" = 15 + + [world.monster_box.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.nether_obsidian_spikes] + #The chance for a chunk to contain spikes (1 is 100%, 0 is 0%) + "Chance Per Chunk" = 0.1 + #The chance for a spike to be big (1 is 100%, 0 is 0%) + "Big Spike Chance" = 0.03 + #Should a chunk have spikes, how many would the generator try to place + "Tries Per Chunk" = 4 + "Big Spike Spawners" = true + + [world.nether_obsidian_spikes.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_nether"] + + [world.new_stone_types] + "Enable Limestone" = true + "Enable Jasper" = true + "Enable Shale" = true + "Enable Myalite" = true + "Add New Stones To Mason Trades" = true + + [world.new_stone_types.limestone] + + [world.new_stone_types.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.limestone.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.limestone.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.jasper] + + [world.new_stone_types.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.jasper.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.jasper.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.shale] + + [world.new_stone_types.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.shale.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.shale.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.myalite] + + [world.new_stone_types.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.new_stone_types.myalite.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.myalite.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.permafrost] + + [world.permafrost.generation_settings] + #Allowed values: [0,) + Rarity = 2 + "Min Y Level" = 105 + "Max Y Level" = 140 + #Allowed values: [0,) + "Horizontal Size" = 72 + #Allowed values: [0,) + "Vertical Size" = 15 + #Allowed values: [0,) + "Horizontal Variation" = 22 + #Allowed values: [0,) + "Vertical Variation" = 4 + + [world.permafrost.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.permafrost.generation_settings.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.permafrost.generation_settings.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.permafrost.generation_settings.biomes.biomes] + Biomes = ["minecraft:frozen_peaks"] + "Is Blacklist" = false + + [world.spiral_spires] + Rarity = 200 + Radius = 15 + "Enable Myalite Viaducts" = true + #Allowed values: [2,1,024] + "Myalite Conduit Distance" = 24 + "Renewable Myalite" = true + + [world.spiral_spires.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.spiral_spires.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.spiral_spires.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.spiral_spires.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + +[mobs] + Crabs = true + Forgotten = true + Foxhound = true + Shiba = true + Stonelings = true + Toretoise = true + Wraith = true + + [mobs.crabs] + "Enable Brewing" = true + #Whether Resilience should be required for 'How Did We Get Here?' and (if brewing is enabled) 'A Furious Cocktail'. + #Keep this on when brewing is disabled if your pack adds an alternative source for the effect. + "Resilience Required For All Effects" = true + "Add Crab Leg To Fisherman Trades" = true + + [mobs.crabs.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.crabs.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.crabs.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_beach"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.crabs.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.forgotten] + #This is the probability of a Skeleton that spawns under the height threshold being replaced with a Forgotten. + "Forgotten Spawn Rate" = 0.05 + "Max Height For Spawn" = 0 + + [mobs.foxhound] + #The chance coal will tame a foxhound + "Tame Chance" = 0.05 + "Foxhounds Speed Up Furnaces" = true + + [mobs.foxhound.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 30 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 2 + + [mobs.foxhound.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.spawn_config.biomes.biomes] + Biomes = ["minecraft:nether_wastes", "minecraft:basalt_deltas"] + "Is Blacklist" = false + + [mobs.foxhound.lesser_spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 2 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + [mobs.foxhound.lesser_spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + + [mobs.shiba] + "Ignore Areas With Skylight" = false + + [mobs.shiba.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 40 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.shiba.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.shiba.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.shiba.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.stonelings] + "Max Y Level" = 0 + "Enable Diamond Heart" = true + #When enabled, stonelings are much more aggressive in checking for players + "Cautious Stonelings" = false + "Tamable Stonelings" = true + #Disabled if if Pathfinder Maps are disabled. + "Weald Pathfinder Maps" = true + + [mobs.stonelings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.stonelings.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 80 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + [mobs.stonelings.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.stonelings.spawn_config.biomes.tags] + "Biome Tags" = ["forge:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.stonelings.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.toretoise] + "Max Y Level" = 0 + #The number of ticks from mining a tortoise until feeding it could cause it to regrow. + "Cooldown Ticks" = 1200 + #The items that can be fed to toretoises to make them regrow ores. + Foods = ["minecraft:glow_berries"] + "Allow Toretoise To Regrow" = true + #Feeding a toretoise after cooldown will regrow them with a one-in-this-number chance. Set to 1 to always regrow, higher = lower chance. + "Regrow Chance" = 3 + + [mobs.toretoise.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.toretoise.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 120 + #Allowed values: [1,) + "Min Group Size" = 2 + #Allowed values: [1,) + "Max Group Size" = 4 + + [mobs.toretoise.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.toretoise.spawn_config.biomes.tags] + "Biome Tags" = ["forge:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.toretoise.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.wraith] + #List of sound sets to use with wraiths. + #Three sounds must be provided per entry, separated by | (in the format idle|hurt|death). Leave blank for no sound (i.e. if a mob has no ambient noise) + "Wraith Sounds" = ["entity.sheep.ambient|entity.sheep.hurt|entity.sheep.death", "entity.cow.ambient|entity.cow.hurt|entity.cow.death", "entity.pig.ambient|entity.pig.hurt|entity.pig.death", "entity.chicken.ambient|entity.chicken.hurt|entity.chicken.death", "entity.horse.ambient|entity.horse.hurt|entity.horse.death", "entity.cat.ambient|entity.cat.hurt|entity.cat.death", "entity.wolf.ambient|entity.wolf.hurt|entity.wolf.death", "entity.villager.ambient|entity.villager.hurt|entity.villager.death", "entity.polar_bear.ambient|entity.polar_bear.hurt|entity.polar_bear.death", "entity.zombie.ambient|entity.zombie.hurt|entity.zombie.death", "entity.skeleton.ambient|entity.skeleton.hurt|entity.skeleton.death", "entity.spider.ambient|entity.spider.hurt|entity.spider.death", "|entity.creeper.hurt|entity.creeper.death", "entity.endermen.ambient|entity.endermen.hurt|entity.endermen.death", "entity.zombie_pig.ambient|entity.zombie_pig.hurt|entity.zombie_pig.death", "entity.witch.ambient|entity.witch.hurt|entity.witch.death", "entity.blaze.ambient|entity.blaze.hurt|entity.blaze.death", "entity.llama.ambient|entity.llama.hurt|entity.llama.death", "|quark:entity.stoneling.cry|quark:entity.stoneling.die", "quark:entity.frog.idle|quark:entity.frog.hurt|quark:entity.frog.die"] + + [mobs.wraith.spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.wraith.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.wraith.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.wraith.spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + +[client] + "Auto Walk Keybind" = true + "Back Button Keybind" = true + "Buckets Show Inhabitants" = true + Camera = true + "Chest Searching" = true + "Elytra Indicator" = true + "Greener Grass" = true + "Improved Tooltips" = true + "Long Range Pick Block" = true + "Microcrafting Helper" = true + "Soul Candles" = true + "Usage Ticker" = true + "Uses For Curses" = true + "Variant Animal Textures" = true + "Wool Shuts Up Minecarts" = true + + [client.auto_walk_keybind] + "Draw Hud" = true + "Hud Height" = 10 + + [client.buckets_show_inhabitants] + "Show Axolotls" = true + "Show Crabs" = true + "Show Tropical Fish" = true + "Show Shiny Slime" = true + + [client.camera] + #Date format that will be displayed in screenshots. Must be a valid one (i.e. MM/dd/yyyy) + "Date Format" = "MM/dd/yyyy" + + [client.chest_searching] + + [client.chest_searching.overlay_color] + A = 0.67 + R = 0.0 + G = 0.0 + B = 0.0 + + [client.greener_grass] + "Affect Leaves" = true + "Affect Water" = false + "Block List" = ["minecraft:large_fern", "minecraft:tall_grass", "minecraft:grass_block", "minecraft:fern", "minecraft:grass", "minecraft:potted_fern", "minecraft:sugar_cane", "environmental:giant_tall_grass", "grassslabs:grass_carpet", "grassslabs:grass_slab", "grassslabs:grass_stairs", "valhelsia_structures:grass_block"] + "Leaves List" = ["minecraft:spruce_leaves", "minecraft:birch_leaves", "minecraft:oak_leaves", "minecraft:jungle_leaves", "minecraft:acacia_leaves", "minecraft:dark_oak_leaves", "atmospheric:rosewood_leaves", "atmospheric:morado_leaves", "atmospheric:yucca_leaves", "autumnity:maple_leaves", "environmental:willow_leaves", "environmental:hanging_willow_leaves", "minecraft:vine"] + + [client.greener_grass.color_matrix] + R = [0.89, 0.0, 0.0] + G = [0.0, 1.11, 0.0] + B = [0.0, 0.0, 0.89] + + [client.greener_grass.water_matrix] + R = [0.86, 0.0, 0.0] + G = [0.0, 1.0, 0.22] + B = [0.0, 0.0, 1.22] + + [client.improved_tooltips] + "Attribute Tooltips" = true + "Food Tooltips" = true + "Shulker Tooltips" = true + "Map Tooltips" = true + "Enchanting Tooltips" = true + "Fuel Time Tooltips" = true + "Shulker Box Use Colors" = true + "Shulker Box Require Shift" = false + "Map Require Shift" = false + #The value of each shank of food. + #Tweak this when using mods like Hardcore Hunger which change that value. + "Food Divisor" = 2 + "Show Saturation" = true + "Food Compression Threshold" = 4 + "Fuel Time Divisor" = 200 + #Should item attributes be colored relative to your current equipped item? + #e.g. if wearing an Iron Helmet, the armor value in a Diamond Helmet will show as green, and vice versa would be red. + #If set to false, item attributes will show in white or red if they're negative values. + "Show Upgrade Status" = true + "Animate Up Down Arrows" = true + "Enchanting Stacks" = ["minecraft:diamond_sword", "minecraft:diamond_pickaxe", "minecraft:diamond_shovel", "minecraft:diamond_axe", "minecraft:diamond_hoe", "minecraft:diamond_helmet", "minecraft:diamond_chestplate", "minecraft:diamond_leggings", "minecraft:diamond_boots", "minecraft:shears", "minecraft:bow", "minecraft:fishing_rod", "minecraft:crossbow", "minecraft:trident", "minecraft:elytra", "minecraft:shield", "quark:pickarang", "supplementaries:slingshot", "supplementaries:bubble_blower", "farmersdelight:diamond_knife", "the_bumblezone:stinger_spear", "the_bumblezone:crystal_cannon", "the_bumblezone:honey_crystal_shield", "the_bumblezone:honey_bee_leggings_2"] + #A list of additional stacks to display on each enchantment + #The format is as follows: + #enchant_id=item1,item2,item3... + #So to display a carrot on a stick on a mending book, for example, you use: + #minecraft:mending=minecraft:carrot_on_a_stick + "Enchanting Additional Stacks" = [] + + [client.usage_ticker] + #Switch the armor display to the off hand side and the hand display to the main hand side + Invert = false + "Shift Left" = 0 + "Shift Right" = 0 + "Enable Main Hand" = true + "Enable Off Hand" = true + "Enable Armor" = true + + [client.uses_for_curses] + "Vanish Pumpkin Overlay" = true + "Bind Armor Stands With Player Heads" = true + + [client.variant_animal_textures] + "Enable Cow" = true + "Enable Pig" = true + "Enable Chicken" = true + "Enable Shiny Rabbit" = true + "Enable Shiny Llama" = true + "Enable Shiny Dolphin" = true + "Enable Shiny Slime" = true + "Enable L G B T Bees" = true + "Every Bee Is L G B T" = false + #The chance for an animal to have a special "Shiny" skin, like a shiny pokemon. This is 1 in X. Set to 0 to disable. + "Shiny Animal Chance" = 2048 + #If a shiny animal should emit occasional sparkles. + "Shiny Sparkles" = true + +[experimental] + "Adjustable Chat" = false + "Climate Control Remover" = false + #This feature generates Resource Pack Item Model predicates on the items defined in 'Items to Change' + #for the Enchantments defined in 'Enchantments to Register'. + #Example: if 'minecraft:silk_touch' is added to 'Enchantments to Register', and 'minecraft:netherite_pickaxe' + #is added to 'Items to Change', then a predicate named 'quark_has_enchant_minecraft_silk_touch' will be available + #to the netherite_pickaxe.json item model, whose value will be the enchantment level. + "Enchantment Predicates" = false + "Enchantments Begone" = false + "Game Nerfs" = false + "Narrator Readout" = false + "Overlay Shader" = false + "Spawner Replacer" = false + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + "Variant Selector" = false + "Villager Rerolling Rework" = false + + [experimental.adjustable_chat] + "Horizontal Shift" = 0 + "Vertical Shift" = 0 + + [experimental.climate_control_remover] + #Disables the temperature comparison when choosing biomes to generate. + "Disable Temperature" = false + #Disables the humidity comparison when choosing biomes to generate. + "Disable Humidity" = false + #Disables the 'continentalness' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make oceans act a lot more like rivers. + "Disable Continentalness" = false + #Disables the 'erosion' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably create very extreme height differences, and will make the End more chaotic. + "Disable Erosion" = false + #Disables the 'depth' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make cave biomes appear at unusual heights. + "Disable Depth" = false + #Disables the 'weirdness' comparison when choosing biomes to generate. + #WARNING: Enabling this will... well, probably make things weird. + "Disable Weirdness" = false + #Disables the 'offset' parameter when choosing biomes to generate. + #WARNING: Enabling this will make rarer nether biomes more common. + "Disable Offset" = false + + #This feature generates Resource Pack Item Model predicates on the items defined in 'Items to Change' + #for the Enchantments defined in 'Enchantments to Register'. + #Example: if 'minecraft:silk_touch' is added to 'Enchantments to Register', and 'minecraft:netherite_pickaxe' + #is added to 'Items to Change', then a predicate named 'quark_has_enchant_minecraft_silk_touch' will be available + #to the netherite_pickaxe.json item model, whose value will be the enchantment level. + [experimental.enchantment_predicates] + "Items To Change" = [] + "Enchantments To Register" = [] + + [experimental.enchantments_begone] + "Enchantments To Begone" = [] + + [experimental.game_nerfs] + #Makes Mending act like the Unmending mod + #https://www.curseforge.com/minecraft/mc-mods/unmending + "Nerf Mending" = true + #Makes Mending II still work even if mending is nerfed. + #If you want Mending II, disable the sanity check on Ancient Tomes and add minecraft:mending to the tomes. + "No Nerf for Mending II" = false + #Resets all villager discounts when zombified to prevent reducing prices to ridiculous levels + "Nerf Villager Discount" = true + #Makes Iron Golems not drop Iron Ingots + "Disable Iron Farms" = true + #Makes Boats not glide on ice + "Disable Ice Roads" = true + #Makes Sheep not drop Wool when killed + "Disable Wool Drops" = true + #Disables mob griefing for only specific entities + "Enable Selective Mob Griefing" = true + #Force Elytra to only work in specific dimensions + "Enable Dimension Locked Elytra" = true + #Makes falling blocks not able to be duped via dimension crossing + "Disable Falling Block Dupe" = true + #Fixes several piston physics exploits, most notably including TNT duping + "Disable Piston Physics Exploits" = true + #Fixes mushroom growth being able to replace blocks + "Disable Mushroom Block Removal" = true + #Makes tripwire hooks unable to be duplicated + "Disable Tripwire Hook Dupe" = true + #Makes villages spawn less often when close to spawn + "Village Spawn Nerf" = false + #Distance at which villages will spawn as normal. Effect scales linearly from world spawn + "Village Spawn Nerf Distance" = 7000 + "Non Griefing Entities" = ["minecraft:creeper", "minecraft:enderman"] + "Elytra Allowed Dimensions" = ["minecraft:the_end"] + + [experimental.overlay_shader] + #Sets the name of the shader to load on a regular basis. This can load any shader the Camera module can (and requires the Camera module enabled to apply said logic). + #Some useful shaders include 'desaturate', 'oversaturate', 'bumpy' + #Colorblind simulation shaders are available in the form of 'deuteranopia', 'protanopia', 'tritanopia', and 'achromatopsia' + Shader = "none" + + [experimental.spawner_replacer] + #Mobs to be replaced with other mobs. + #Format is: "mob1,mob2", i.e. "minecraft:spider,minecraft:skeleton" + "Replace Mobs" = [] + + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + [experimental.variant_selector] + #Set this to true to automatically convert any dropped variant items into their originals. Do this ONLY if you intend to take control of every recipe via a data pack or equivalent, as this will introduce dupes otherwise. + "Convert Variant Items" = false + #Enable the hammer, allowing variants to be swapped between eachother, including the original block. Do this ONLY under the same circumstances as Convert Variant Items. + "Enable Hammer" = false + "Show Tooltip" = true + "Align Hud To Hotbar" = false + "Show Simple Hud" = false + "Show Hud" = true + "Enable Green Tint" = true + "Override Held Item Render" = true + "Hud Offset X" = 0 + "Hud Offset Y" = 0 + #When true, selector arrow will render in same style as crosshair + "Render Like Cross Hair" = true + #Uses smaller arrow icon for variant selector overlay + "Smaller Arrow" = false + + [experimental.variant_selector.variants] + #The list of all variant types available for players to use. Values are treated as suffixes to block IDs for scanning. + #Prefix any variant type with ! to make it show up for Manual Variants but not be automatically scanned for. (e.g. '!polish') + "Variant Types" = ["slab", "stairs", "wall", "fence", "fence_gate", "vertical_slab"] + #By default, only a mod's namespace is scanned for variants for its items (e.g. if coolmod adds coolmod:fun_block, it'll search only for coolmod:fun_block_stairs). + # Mods in this list are also scanned for variants if none are found in itself (e.g. if quark is in the list and coolmod:fun_block_stairs doesn't exist, it'll try to look for quark:fun_block_stairs next) + "Tested Mods" = ["quark", "everycomp", "v_slab_compat"] + "Print Variant Map To Log" = false + #Format is 'alias=original' in each value (e.g. 'wall=fence' means that a failed search for, minecraft:cobblestone_fence will try cobblestone_wall next) + Aliases = ["carpet=slab", "pane=fence"] + #Ends of block IDs to try and remove when looking for variants. (e.g. minecraft:oak_planks goes into minecraft:oak_stairs, so we have to include '_planks' in this list for it to find them or else it'll only look for minecraft:oak_planks_stairs) + "Strip Candidates" = ["_planks", "_wool", "_block", "s"] + #Add manual variant overrides here, the format is 'type,block,output' (e.g. polish,minecraft:stone_bricks,minecraft:chiseled_stone_bricks). The type must be listed in Variant Types + "Manual Variants" = [] + # A list of block IDs and mappings to be excluded from variant selection. + #To exclude a block from being turned into other blocks, just include the block ID (e.g. minecraft:cobblestone). + #To exclude a block from having other blocks turned into it, suffix it with = (e.g. =minecraft:cobblestone_stairs) + #To exclude a specific block->variant combination, put = between the two (e.g. minecraft:cobblestone=minecraft:cobblestone_stairs) + Blacklist = ["minecraft:snow", "minecraft:bamboo", "minecraft:bamboo_block"] + + [experimental.villager_rerolling_rework] + #If enabled, the first two trades a villager generates for a profession will always be the same for a given villager. + #This prevents repeatedly placing down a job site block to reroll the villager's trades. + "Seed Initial Villager Trades" = true + #Set to 0 to disable the chance to reroll trades when restocking. + #It's possible for a trade to not restock even when the chance is 1. This happens when the rerolled trade is one the villager already has. + #This chance only guarantees a reroll will be attempted. + #Allowed values: [0,1] + "Chance To Reroll When Restocking" = 0.25 + #Set to 0 to disable the chance to reroll trades when restocking. Set to -1 to allow unlimited rerolling. + #Trades earlier in the list will restock first. + "Maximum Restocks Per Day" = 3 + #If enabled, villagers will reroll when they restock, rather than when they begin work for the day. + #If disabled, players can prevent rerolling by ensuring the villager isn't out of stock on their last restock of the day. + "Reroll On Any Restock" = false + #If enabled, villagers will be able to reroll any trade that has been used AT ALL since the last restock. + "Reroll Even If Not Out Of Stock" = false + +[oddities] + Backpack = true + Crate = true + Magnets = true + "Matrix Enchanting" = true + Pipes = true + "Tiny Potato" = true + "Totem Of Holding" = true + + [oddities.backpack] + #Set this to true to allow the backpacks to be unequipped even with items in them + "Super Op Mode" = false + "Enable Ravager Hide" = true + "Items In Backpack Tick" = true + "Base Ravager Hide Drop" = 1 + "Extra Chance Per Looting" = 0.5 + "Allow Armor Stand Unloading" = true + + [oddities.crate] + "Max Items" = 640 + + [oddities.magnets] + #Any items you place in this list will be derived so that any block made of it will become magnetizable + "Magnetic Derivation List" = ["minecraft:iron_ingot", "minecraft:copper_ingot", "minecraft:exposed_copper", "minecraft:weathered_copper", "minecraft:oxidized_copper", "minecraft:raw_iron", "minecraft:raw_copper", "minecraft:iron_ore", "minecraft:deepslate_iron_ore", "minecraft:copper_ore", "minecraft:deepslate_copper_ore", "quark:gravisand"] + #Block/Item IDs to force-allow magnetism on, regardless of their crafting recipe + "Magnetic Whitelist" = ["minecraft:chipped_anvil", "minecraft:damaged_anvil", "minecraft:iron_horse_armor", "minecraft:chainmail_helmet", "minecraft:chainmail_boots", "minecraft:chainmail_leggings", "minecraft:chainmail_chestplate", "#minecraft:cauldrons"] + #Block/Item IDs to force-disable magnetism on, regardless of their crafting recipe + "Magnetic Blacklist" = ["minecraft:tripwire_hook", "minecraft:map"] + "Use Pre End Recipe" = false + #When true magnets will never push something that pistons cant push. Disable to have further control. This allows iron rods to break obsidian for example + "Use Piston Logic" = true + #Allows magnets to push and pull entities in the 'affected_by_magnets' tag (edit it with datapack). Turning off can reduce lag + "Affect Entities" = false + #Allows magnets to push and pull entities having magnetic armor. Requires 'magnetic_entities' config ON + "Affects Armor" = true + #Determines how fast entities are pulled by magnets. Still follows the inverse square law + "Entities Pull Force" = 0.18000000715255737 + #Stonecutters pulled by magnets will silk touch the blocks they cut. + "Stone Cutter Silk Touch" = true + #The maximum hardness of a block that a stonecutter pushed by magnets can cut through. + "Stone Cutter Max Hardness" = 3.0 + + [oddities.matrix_enchanting] + #The maximum enchanting power the matrix enchanter can accept + "Max Bookshelves" = 15 + #Should this be X, the price of a piece increase by 1 every X pieces you generate + "Piece Price Scale" = 9 + #The higher this is, the better enchantments you'll get on books + "Book Enchantability" = 12 + #How many pieces you can generate without any bookshelves + "Base Max Piece Count" = 3 + #How many pieces you can generate without any bookshelves (for Books) + "Base Max Piece Count Book" = 1 + #At which piece count the calculation for the min level should default to increasing one per piece rather than using the scale factor + "Min Level Cutoff" = 8 + #How many pieces a single Lapis can generate + "Charge Per Lapis" = 4 + #How much the min level requirement for adding a new piece should increase for each piece added (up until the value of Min Level Cutoff) + "Min Level Scale Factor" = 1.2 + #How much the min level requirement for adding a new piece to a book should increase per each bookshelf being used + "Min Level Scale Factor Book" = 2.0 + #How much to multiply the frequency of pieces where at least one of the same type has been generated + "Dupe Multiplier" = 1.4 + #How much to multiply the frequency of pieces where incompatible pieces have been generated + "Incompatible Multiplier" = 0.0 + #Set to false to disable the ability to create Enchanted Books + "Allow Books" = true + #Set this to true to allow treasure enchantments to be rolled as pieces + "Allow Treasures" = false + #Set this to true to allow undiscoverable enchantments to be rolled as pieces + "Allow Undiscoverable Enchantments" = false + #Any treasure enchantment IDs here will be able to appear in books in matrix enchanting + "Treasure Whitelist" = [] + #Any undiscoverable enchantment IDs here will be able to appear in matrix enchanting + "Undiscoverable Whitelist" = [] + #Set to false to disable the tooltip for items with pending enchantments + "Show Tooltip" = true + #By default, enchantment rarities are fuzzed a bit to feel better with the new system. Set this to false to override this behaviour. + "Normalize Rarity" = true + #Matrix Enchanting can be done with water instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Underwater Enchanting" = true + #Matrix Enchanting can be done with short (<= 3px blocks) instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Short Block Enchanting" = true + #Candles with soul sand below them or below the bookshelves dampen enchantments instead of influence them. + "Soul Candles Invert" = true + #A list of enchantment IDs you don't want the enchantment table to be able to create + "Disallowed Enchantments" = [] + #An array of influences each candle should apply. This list must be 16 elements long, and is in order of wool colors. + #A minus sign before an enchantment will make the influence decrease the probability of that enchantment. + "Influences List" = ["minecraft:unbreaking", "minecraft:fire_protection", "minecraft:knockback,minecraft:punch", "minecraft:feather_falling", "minecraft:looting,minecraft:fortune,minecraft:luck_of_the_sea", "minecraft:blast_protection", "minecraft:silk_touch,minecraft:channeling", "minecraft:bane_of_arthropods", "minecraft:protection", "minecraft:respiration,minecraft:loyalty,minecraft:infinity", "minecraft:sweeping,minecraft:multishot", "minecraft:efficiency,minecraft:sharpness,minecraft:lure,minecraft:power,minecraft:impaling,minecraft:quick_charge", "minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide", "minecraft:thorns,minecraft:piercing", "minecraft:fire_aspect,minecraft:flame", "minecraft:smite,minecraft:projectile_protection"] + #An array of influences that other blocks should apply. + #Format is: "blockstate;strength;color;enchantments", i.e. "minecraft:sea_pickle[pickles=1,waterlogged=false];1;#008000;minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide" (etc) or "minecraft:anvil[facing=north];#808080;-minecraft:thorns,minecraft:unbreaking" (etc) + "States To Influences" = [] + #Set to false to disable the ability to influence enchantment outcomes with candles + "Allow Influencing" = true + #The max amount of candles that can influence a single enchantment + "Influence Max" = 4 + #How much each candle influences an enchantment. This works as a multiplier to its weight + "Influence Power" = 0.125 + #If you set this to false, the vanilla Enchanting Table will no longer automatically convert to the Matrix Enchanting table. You'll have to add a recipe for the Matrix Enchanting Table to make use of this. + "Automatically Convert" = true + + [oddities.pipes] + #How long it takes for an item to cross a pipe. Bigger = slower. + "Pipe Speed" = 5 + #Set to 0 if you don't want pipes to have a max amount of items + "Max Pipe Items" = 16 + #When items eject or are absorbed by pipes, should they make sounds? + "Do Pipes Whoosh" = true + "Enable Encased Pipes" = true + "Render Pipe Items" = false + "Emit Vibrations" = true + + [oddities.tiny_potato] + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + #This feature disables itself if any of the following mods are loaded: + # - botania + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [oddities.totem_of_holding] + #Set this to false to remove the behaviour where totems destroy themselves if the player dies again. + "Dark Souls Mode" = true + #Totem will always spawn if the player killer is themselves. + "Spawn Totem on PVP Kill" = false + #Set this to true to make it so that if a totem is destroyed, the items it holds are destroyed alongside it rather than dropped + "Destroy Lost Items" = false + #Set this to false to only allow the owner of a totem to collect its items rather than any player + "Allow Anyone To Collect" = true + diff --git a/minecraft/config/raccompat/relics/acid_walker.yaml b/minecraft/config/raccompat/relics/acid_walker.yaml new file mode 100644 index 0000000..ee0c1f9 --- /dev/null +++ b/minecraft/config/raccompat/relics/acid_walker.yaml @@ -0,0 +1,39 @@ +abilitiesData: + abilities: + walking: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + duration: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 15.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 7.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.1 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE +levelingData: + # Amount of experience required to level up to relic level 1 + initialCost: 100 + # Maximum level of the relic + maxLevel: 10 + # Increment in experience required for each subsequent level of the relic + step: 200 +lootData: + # List of key-value pairs where the key is a textual identifier for the loot table (supporting regular expressions) and the value represents the probability of generating the relic within the specified bounds + entries: + '[\w]+:chests\/[\w_\/]*toxic[\w_\/]*': 0.1 diff --git a/minecraft/config/raccompat/relics/desolate_pendant.yaml b/minecraft/config/raccompat/relics/desolate_pendant.yaml new file mode 100644 index 0000000..8615e9f --- /dev/null +++ b/minecraft/config/raccompat/relics/desolate_pendant.yaml @@ -0,0 +1,101 @@ +abilitiesData: + abilities: + desolate: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + damage: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 0.25 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.1 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.1 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + chance: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 0.15 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.05 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.1 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + devastate: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 5 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + count: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 3.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 1.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 1.0 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: ADD + cooldown: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 40.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 30.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: -0.025 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_TOTAL +levelingData: + # Amount of experience required to level up to relic level 1 + initialCost: 100 + # Maximum level of the relic + maxLevel: 10 + # Increment in experience required for each subsequent level of the relic + step: 200 +lootData: + # List of key-value pairs where the key is a textual identifier for the loot table (supporting regular expressions) and the value represents the probability of generating the relic within the specified bounds + entries: + '[\w]+:chests\/[\w_\/]*forlorn[\w_\/]*': 0.1 diff --git a/minecraft/config/raccompat/relics/polar_boot.yaml b/minecraft/config/raccompat/relics/polar_boot.yaml new file mode 100644 index 0000000..d0c2d2d --- /dev/null +++ b/minecraft/config/raccompat/relics/polar_boot.yaml @@ -0,0 +1,39 @@ +abilitiesData: + abilities: + polarity: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + speed: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 0.95 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.9 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.015 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE +levelingData: + # Amount of experience required to level up to relic level 1 + initialCost: 100 + # Maximum level of the relic + maxLevel: 10 + # Increment in experience required for each subsequent level of the relic + step: 200 +lootData: + # List of key-value pairs where the key is a textual identifier for the loot table (supporting regular expressions) and the value represents the probability of generating the relic within the specified bounds + entries: + '[\w]+:chests\/[\w_\/]*magnetic[\w_\/]*': 0.1 diff --git a/minecraft/config/raccompat/relics/vine_ring.yaml b/minecraft/config/raccompat/relics/vine_ring.yaml new file mode 100644 index 0000000..2a98edc --- /dev/null +++ b/minecraft/config/raccompat/relics/vine_ring.yaml @@ -0,0 +1,58 @@ +abilitiesData: + abilities: + vine: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + length: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 15.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 10.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.175 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_TOTAL + cooldown: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 30.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 20.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: -0.1 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_TOTAL +levelingData: + # Amount of experience required to level up to relic level 1 + initialCost: 100 + # Maximum level of the relic + maxLevel: 10 + # Increment in experience required for each subsequent level of the relic + step: 200 +lootData: + # List of key-value pairs where the key is a textual identifier for the loot table (supporting regular expressions) and the value represents the probability of generating the relic within the specified bounds + entries: + alexscaves:chests/caveman_house: 0.1 + '[\w]+:chests\/[\w_\/]*primordial[\w_\/]*': 0.1 diff --git a/minecraft/config/raided-common.toml b/minecraft/config/raided-common.toml new file mode 100644 index 0000000..5a75fbd --- /dev/null +++ b/minecraft/config/raided-common.toml @@ -0,0 +1,24 @@ + +#General settings +[General] + #Enable Inquisitor spawning during raids based on the 'inquisitorSpawnsPerWave' setup + spawnInquisitor = true + #The spawns per wave for the Inquisitor before bonus spawns are applied (Must always have 8 values!) + inquisitorSpawnsPerWave = [0, 0, 0, 3, 0, 0, 0, 0] + #Enable Incinerator spawning during raids based on the 'incineratorSpawnsPerWave' setup + spawnIncinerator = true + #The spawns per wave for the Incinerator before bonus spawns are applied (Must always have 8 values!) + incineratorSpawnsPerWave = [0, 0, 0, 0, 1, 0, 0, 1] + #Enable Savager spawning during raids based on the 'savagerSpawnsPerWave' setup + spawnSavager = true + #The spawns per wave for the Savager before bonus spawns are applied (Must always have 8 values!) + savagerSpawnsPerWave = [0, 0, 0, 2, 0, 0, 1, 0] + #Enable Necromancer spawning during raids based on the 'necromancerSpawnsPerWave' setup + spawnNecromancer = true + #The spawns per wave for the Necromancer before bonus spawns are applied (Must always have 8 values!) + necromancerSpawnsPerWave = [0, 0, 1, 0, 0, 1, 0, 0] + #Enable Electromancer spawning during raids based on the 'electromancerSpawnsPerWave' setup + spawnElectromancer = true + #The spawns per wave for the Electromancer before bonus spawns are applied (Must always have 8 values!) + electromancerSpawnsPerWave = [0, 1, 0, 2, 0, 1, 0, 0] + diff --git a/minecraft/config/railcraft-client.toml b/minecraft/config/railcraft-client.toml new file mode 100644 index 0000000..4f93e7e --- /dev/null +++ b/minecraft/config/railcraft-client.toml @@ -0,0 +1,11 @@ +#Change to false to disable Ghost Train rendering +ghostTrainEnabled = true +#Change to false to disable Polar Express (snow) rendering +polarExpressEnabled = true +#Change '14' to a number ranging from '0' to '15' to represent the dynamic lighting of the locomotive when Dynamic Lights mod is present. +#If it is '0' then locomotive lightning will be disabled. +#Range: 0 ~ 15 +locomotiveLightLevel = 14 +#Set to false to disable the message that informs you that you are using a beta version. +showMessageBeta = true + diff --git a/minecraft/config/railcraft-common.toml b/minecraft/config/railcraft-common.toml new file mode 100644 index 0000000..3ea0790 --- /dev/null +++ b/minecraft/config/railcraft-common.toml @@ -0,0 +1,15 @@ + +#General configuration settings +[common] + #Enable season-based item & train effects? + seasonsEnabled = true + #Controls whether Christmas mode is (0) enabled, (1) forced, or (2) disabled + #Range: 0 ~ 2 + christmas = 0 + #Controls whether Halloween mode is (0) enabled, (1) forced, or (2) disabled + #Range: 0 ~ 2 + halloween = 0 + #Controls whether Harvest mode is (0) enabled, (1) forced, or (2) disabled + #Range: 0 ~ 2 + harvest = 0 + diff --git a/minecraft/config/ramchunks-server.toml b/minecraft/config/ramchunks-server.toml new file mode 100644 index 0000000..3460301 --- /dev/null +++ b/minecraft/config/ramchunks-server.toml @@ -0,0 +1,31 @@ + +#RAM Chunk Storage Configuration +[storage] + #Enable RAM-based chunk storage (requires restart) + enableRamStorage = true + #Interval in minutes between auto-saves (min 1, max 120) + #Range: 1 ~ 120 + autoSaveInterval = 5 + #Maximum number of chunks to keep in RAM (0 for unlimited) + #Range: > 0 + maxChunksInRam = 2000 + #Enable NBT compression when saving chunks to disk + enableCompression = true + #Enable debug logging (spammy) + enableDebugLogging = false + #Custom directory to store chunk data (leave empty for default) + customStorageDir = "" + #Number of chunks to unload in a single tick (reduces lag spikes) + #Range: 1 ~ 100 + chunkUnloadBatchSize = 10 + #Automatically unload unused chunks when memory is low + enableAutoUnload = true + #Maximum memory usage in MB before forcing chunk unloads (0 to disable) + #Range: 0 ~ 16384 + maxMemoryUsageMB = 0 + #Enable asynchronous chunk saving (recommended) + enableAsyncSaving = true + #Number of threads to use for async saving (1-8) + #Range: 1 ~ 8 + asyncSaveThreads = 2 + diff --git a/minecraft/config/ramcompat/relics/frost_robe.yaml b/minecraft/config/ramcompat/relics/frost_robe.yaml new file mode 100644 index 0000000..e73266c --- /dev/null +++ b/minecraft/config/ramcompat/relics/frost_robe.yaml @@ -0,0 +1,130 @@ +abilitiesData: + abilities: + warming: + # Highest level to which the ability can be upgraded + maxLevel: 0 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: { + } + icicle: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + amount: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 7.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 3.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.5 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + chance: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 0.75 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.4 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: -0.035 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + cooldown: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 5.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 7.5 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: -0.05 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + freeze: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 5 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + duration: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 1.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.75 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.075 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + chance: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 0.15 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.05 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.1 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE +levelingData: + # Amount of experience required to level up to relic level 1 + initialCost: 100 + # Maximum level of the relic + maxLevel: 10 + # Increment in experience required for each subsequent level of the relic + step: 200 +lootData: + # List of key-value pairs where the key is a textual identifier for the loot table (supporting regular expressions) and the value represents the probability of generating the relic within the specified bounds + entries: + '[\w]+:chests\/[\w_\/]*(frosz?|taiga|cold|winter|snow|icey?|glac)[\w_\/]*': 0.025 + minecraft:chests/village/village_fletcher: 0.025 + minecraft:chests/igloo_chest: 0.025 diff --git a/minecraft/config/ramcompat/relics/stink_gland.yaml b/minecraft/config/ramcompat/relics/stink_gland.yaml new file mode 100644 index 0000000..976276d --- /dev/null +++ b/minecraft/config/ramcompat/relics/stink_gland.yaml @@ -0,0 +1,119 @@ +abilitiesData: + abilities: + defense: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + duration: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 5.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 2.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.1 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + cooldown: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 15.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 20.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: -0.05 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + radius: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 3.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 1.5 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.1 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + dash: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + cooldown: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 7.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 10.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: -0.075 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + power: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 1.75 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.75 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.075 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE +levelingData: + # Amount of experience required to level up to relic level 1 + initialCost: 100 + # Maximum level of the relic + maxLevel: 10 + # Increment in experience required for each subsequent level of the relic + step: 200 +lootData: + # List of key-value pairs where the key is a textual identifier for the loot table (supporting regular expressions) and the value represents the probability of generating the relic within the specified bounds + entries: + '[\w]+:chests\/[\w_\/]*(jungle|temple)[\w_\/]*': 0.025 diff --git a/minecraft/config/ramcompat/relics/tendon_lump.yaml b/minecraft/config/ramcompat/relics/tendon_lump.yaml new file mode 100644 index 0000000..a8676e9 --- /dev/null +++ b/minecraft/config/ramcompat/relics/tendon_lump.yaml @@ -0,0 +1,77 @@ +abilitiesData: + abilities: + tendon: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + damage: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 5.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 3.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.075 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + distance: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 5.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 3.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.25 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + cooldown: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 7.5 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 15.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: -0.075 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE +levelingData: + # Amount of experience required to level up to relic level 1 + initialCost: 100 + # Maximum level of the relic + maxLevel: 10 + # Increment in experience required for each subsequent level of the relic + step: 200 +lootData: + # List of key-value pairs where the key is a textual identifier for the loot table (supporting regular expressions) and the value represents the probability of generating the relic within the specified bounds + entries: + '[\w]+:chests\/[\w_\/]*(mineshaft|city|stronghold)[\w_\/]*': 0.025 + minecraft:chests/woodland_mansion: 0.025 + '[\w]+:chests\/[\w_\/]*(pillag|outpost)[\w_\/]*': 0.025 diff --git a/minecraft/config/rats-client.toml b/minecraft/config/rats-client.toml new file mode 100644 index 0000000..f4a7bff --- /dev/null +++ b/minecraft/config/rats-client.toml @@ -0,0 +1,17 @@ + +[general] + #True if player UI has plague hearts render when the effect is active. + "Plague Heart Overlay" = true + #If true, the plague heart overlay will render as a single row of hearts instead of multiple. Turn this on if you have a mod like Mantle or Armor Points ++ installed. + "Single Row Plague Heart Overlay" = false + #If true, being under the effect of Synesthesia will tint your screen yellow. + "Synesthesia Shader" = true + #True if rats flutes can occasionally play the flute sound at the end of the Spongebob intro. Might be smart to disable this while streaming. + "Rat Flutes play Spongebob flute sound" = true + #True if rats should rarely make a funny noise when creating rat nuggets. + "Rat Fart Noises" = true + #If true, rats that have the rat upgrade: god will display with an enchantment overlay. + "Rat God Upgrade Glint" = true + #If true, rats that have the rat upgrade: angel will display with a white overlay when respawning. + "Rat Angel Upgrade Glint" = true + diff --git a/minecraft/config/rats-common.toml b/minecraft/config/rats-common.toml new file mode 100644 index 0000000..9afbd42 --- /dev/null +++ b/minecraft/config/rats-common.toml @@ -0,0 +1,272 @@ + +[Ratlantis] + #If true, the ratlantis datapack will automatically be enabled when creating a new world. + "Ratlantis Datapack Enabled by Default" = false + +[Spawning] + #Percentage for every random tick to spawn a rat for a garbage pile. + #Range: 0.0 ~ 1.0 + "Garbage Pile Spawn Chance" = 0.15000000596046448 + #True if rats should spawn like monsters, meaning they will also despawn when get far away (this only applies to wild rats of course). False if they should only spawn once per world, like pigs and sheep. + "Rats Spawn Like Monsters" = true + #A separate random roll that only spawns rats if a one-out-of-X chance, x being this number. raise this number to make them more rare. + #Range: > 0 + "Rat Spawn Decrease" = 5 + #A separate random roll that only spawns pipers if a one-out-of-X chance, x being this number. raise this number to make them more rare. + #Range: > 0 + "Piper Spawn Decrease" = 2 + +[Villages] + #True if iron golems will attack wild rats + "Golems Target Rats" = true + #True if pet shops can spawn in villages + "Village Pet Shops" = true + #Defines how often Pet Shops should spawn in villages. A higher number means Pet Shops will spawn more often. + #Range: 0 ~ 100 + "Village Pet Shop Weight" = 15 + #Defines how often Pet Shops should spawn in zombie villages. A higher number means Pet Shops will spawn more often. + #Range: 0 ~ 100 + "Zombie Village Pet Shop Weight" = 10 + #True if garbage heaps can spawn in villages + "Village Garbage Heap" = true + #Defines how often Garbage Heaps should spawn in villages. A higher number means Garbage Heaps will spawn more often. + #Range: 0 ~ 100 + "Village Garbage Heap Weight" = 1 + #Defines how often Garbage Heaps should spawn in villages. A higher number means Garbage Heaps will spawn more often. + #Range: 0 ~ 100 + "Zombie Village Garbage Heap Weight" = 5 + +[Cheesemaking] + #True if cheese can be created in cauldrons + Cheesemaking = true + #The time in ticks(20 per second) it takes for milk to turn into cheese in a cauldron + #Range: 20 ~ 1000000 + "Milk Curdling Time" = 150 + #The how many chunks away can a rat here a rat flute + #Range: 1 ~ 100 + "Rat Flute Distance" = 2 + +["Black Death"] + #If true, a plague doctor will be converted into the Black Death when struck by lightning. + "Black Death Lightning Strike" = true + #If true, Black Death will respawn Plague Rats when it has less than the max defined Plague Rats at its command. + "Black Death Constantly Spawns Rats" = false + #Defines the amount of Plague Rats Black Death can have at its command at a time. + #Range: 0 ~ 100 + "Black Death Max Plague Rats" = 15 + #If true, Black Death will respawn Plague Clouds when it has less than the max defined Plague Clouds at its command. + "Black Death Constantly Spawns Plague Clouds" = true + #Defines the amount of Plague Clouds Black Death can have at its command at a time. + #Range: 0 ~ 100 + "Black Death Max Plague Clouds" = 4 + #If true, Black Death will respawn Plague Beasts when it has less than the max defined Plague Beasts at its command. + "Black Death Constantly Spawns Plague Beasts" = false + #Defines the amount of Plague Beasts Black Death can have at its command at a time. + #Range: 0 ~ 100 + "Black Death Plague Beasts" = 3 + +["Rat King"] + #If true, the Rat King will reabsorb rats that circle around it if it doesnt have an active target. + "Rat King Reabsorbs Rats" = true + #Defines the amount of health the Rat King heals when reabsorbing a rat + #Range: 0.0 ~ 3.4028234663852886E38 + "Rat King Absorption Heal Rate" = 0.0 + #If true, the Rat King will respawn Rats when it has less than the max defined Plague Rats at its command. + "Rat King Max Constantly Spawns Rats" = true + #Defines the amount of Rats the Rat King can have at its command at a time. + #Range: 0 ~ 100 + "Rat King Max Rats" = 10 + +["Ratlantean Automaton"] + #If true, the Ratlantean Automaton will only be summonable in Ratlantis. Building it in any other dimension will have no effect. + "Summon Ratlantean Automaton only in Ratlantis" = false + #How often the Ratlantean Automaton will shoot a laser. It will shoot a laser every 1 in X attacks, X being the number defined. + #Range: > 0 + "Ratlantean Automaton Shooting Chance" = 2 + #The distance the Ratlantean Automaton can hit you with its saw. + #Range: > 0 + "Ratlantean Automaton Melee Attack Distance" = 7 + #The distance the Ratlantean Automaton can hit you with its laser. + #Range: > 0 + "Ratlantean Automaton Ranged Attack Distance" = 10 + +[Neo-Ratlantean] + #If true, the Neo-Ratlantean will only be summonable in Ratlantis. Throwing the vial in any other dimension will have no effect. + "Summon Neo-Ratlantean only in Ratlantis" = false + #If true, the Neo-Ratlantean will utilize Laser Portals in its fight that shoot lasers at you. + "Neo-Ratlantean Laser Portals" = true + #The time it will take the Neo-Ratlantean to perform another attack after using the Laser Portal attack. Time is in ticks. + #Range: > 0 + "Neo-Ratlantean Attack Cooldown after Laser Portals" = 100 + #If true, the Neo-Ratlantean will occasionally summon lightning bolts nearby. The lightning is completely harmless. + "Neo-Ratlantean Fake Lightning" = true + #The time it will take the Neo-Ratlantean to perform another attack after using the Fake Lightning attack. Time is in ticks. + #Range: > 0 + "Neo-Ratlantean Attack Cooldown after Fake Lightning" = 40 + #If true, the Neo-Ratlantean will pick up blocks and throw them in your direction. + "Neo-Ratlantean Throws Blocks" = true + #The time it will take the Neo-Ratlantean to perform another attack after using the Block Throwing attack. Time is in ticks. + #Range: > 0 + "Neo-Ratlantean Attack Cooldown after Throwing Blocks" = 40 + #If true, the Neo-Ratlantean will randomly afflict the use with wither, glowing, and levitation for 10 seconds. + "Neo-Ratlantean Adds Harmful Effects" = true + #The time it will take the Neo-Ratlantean to perform another attack after using the Mob Effect attack. Time is in ticks. + #Range: > 0 + "Neo-Ratlantean Attack Cooldown after Effects" = 100 + +["Flying Dutchrat"] + #If true, the Flying Dutchrat will only be summonable in Ratlantis. Ringing the bell in any other dimension will have no effect. + "Summon Flying Dutchrat only in Ratlantis" = false + #How many blocks away the dutchrat can fly away from its home point, which is the spot where the bell was when summoned. + #Range: 0 ~ 64 + "Flying Dutchrat Restriction Radius" = 20 + #How often the Flying Dutchrat will throw a sword. It will throw a sword every 1 in X attacks, X being the number defined. + #Range: > 0 + "Flying Dutchrat Sword Throw Chance" = 5 + +["Rat Baron"] + #If true, the Rat Baron will only be summonable in Ratlantis. Activating the siren in any other dimension will have no effect. + "Summon Automaton only in Ratlantis" = false + #The height above the ground the rat baron plane will hover around. A random amount of blocks between 0 and 10 will be added to the number provided at random points to keep things interesting. + #Range: 0 ~ 100 + "Rat Baron Y Hover Height" = 20 + #How often the Rat Baron Plane will fire a bullet. It will fire a bullet every X ticks, X being the number defined. + #Range: > 1 + "Rat Baron Shot Frequency" = 2 + #The amount of damage each bullet fired from the Rat Baron plane does. Setting to 0 will make the bullets purely visual. + #Range: 0.0 ~ 1.7976931348623157E308 + "Rat Baron Bullet Damage" = 0.5 + +["Rat Griefing"] + #True if wild rats will destroy and eat crops + "Rats Raid Crops" = true + #True if wild rats will steal from chests + "Rats Steal From Chests" = true + #True if wild rats should be allowed to climb over tall blocks, such as fences and walls. + "Rats Climb over Fences and Walls" = true + #True if wild rats contaminate food when they steal from chests + "Rats Contaminate Food" = true + #True if rats can dig holes + "Rats Dig Holes" = true + #True if infected mobs with plague can spread it by interacting or attacking. + "Other Mobs can spread Plague" = true + #The max block hardness that rats are allowed to dig through. (Dirt = 0.5F, Cobblestone = 2.0F, Obsidian = 50.0F) + #Range: 0.0 ~ 1000000.0 + "Rat Dig Strength" = 6.0 + #True if tamed rats will destroy crops when they harvest them + "Rats Break Crops on Harvest" = true + +["Rat Upgrades"] + #Defines how much of a multiplier rats get when armor is put on them. For example, putting a diamond helmet on when this is set to 3 gives the rat 9 armor points. + #Range: 1 ~ 1000 + "Rats Armor Multiplier" = 3 + #If true, rats will recharge items held in their main hand when they have an energy upgrade. + "Rats Charge Held Items" = true + #How much RF a rat with a basic energy transfer upgrade can transport at a time. + #Range: > 1 + "Rat RF Transfer Rate Basic" = 1000 + #How much RF per tick a rat can charge their held item with a basic energy transfer upgrade. + #Range: > 1 + "Rat Item Charge Rate Basic" = 10 + #How much RF a rat with an advanced energy transfer upgrade can transport at a time. + #Range: > 1 + "Rat RF Transfer Rate Advanced" = 5000 + #How much RF per tick a rat can charge their held item with an advanced energy transfer upgrade. + #Range: > 1 + "Rat Item Charge Rate Advanced" = 50 + #How much RF a rat with an elite energy transfer upgrade can transport at a time. + #Range: > 1 + "Rat RF Transfer Rate Elite" = 10000 + #How much RF per tick a rat can charge their held item with an elite energy transfer upgrade. + #Range: > 1 + "Rat Item Charge Rate Elite" = 100 + #How much RF a rat with an extreme energy transfer upgrade can transport at a time. + #Range: > 1 + "Rat RF Transfer Rate Extreme" = 100000 + #How much RF per tick a rat can charge their held item with an extreme energy transfer upgrade. + #Range: > 1 + "Rat Item Charge Rate Extreme" = 500 + #How far away from players the Rat Upgrade: Voodoo Doll is effective. + #Range: 0.0 ~ 1.7976931348623157E308 + "Voodoo Doll Rat distance" = 32.0 + #Sets a Rat's max health to this value when they have the Warrior Upgrade. + #Range: 0.0 ~ 1024.0 + "Warrior Health Upgrade" = 40.0 + #Sets a Rat's Armor to this value when they have the Warrior Upgrade. + #Range: 0.0 ~ 30.0 + "Warrior Armor Upgrade" = 2.0 + #Sets a Rat's attack damage to this value when they have the Warrior Upgrade. + #Range: 0.0 ~ 2048.0 + "Warrior Damage Upgrade" = 5.0 + #Sets a Rat's max health to this value when they have the God Upgrade. + #Range: 0.0 ~ 1024.0 + "God Health Upgrade" = 150.0 + #Sets a Rat's Armor to this value when they have the God Upgrade. + #Range: 0.0 ~ 30.0 + "God Armor Upgrade" = 10.0 + #Sets a Rat's attack damage to this value when they have the God Upgrade. + #Range: 0.0 ~ 2048.0 + "God Damage Upgrade" = 15.0 + #Sets a Rat's max health to this value when they have the God Upgrade. + #Range: 0.0 ~ 1024.0 + "Dragon Health Upgrade" = 50.0 + #Sets a Rat's Armor to this value when they have the God Upgrade. + #Range: 0.0 ~ 30.0 + "Dragon Armor Upgrade" = 5.0 + #Sets a Rat's attack damage to this value when they have the God Upgrade. + #Range: 0.0 ~ 2048.0 + "Dragon Damage Upgrade" = 8.0 + #Sets a Rat's max health to this value when they have the Demon Upgrade. + #Range: 0.0 ~ 1024.0 + "Demon Health Upgrade" = 40.0 + #Sets a Rat's attack damage to this value when they have the Demon Upgrade. + #Range: 0.0 ~ 2048.0 + "Demon Damage Upgrade" = 4.0 + #Sets a Rat's max health to this value when they have the Voodoo Upgrade. + #Range: 0.0 ~ 1024.0 + "Voodoo Health Upgrade" = 100.0 + #Sets a Rat's Armor to this value when they have the Ratinator Upgrade. + #Range: 0.0 ~ 30.0 + "Ratinator Armor Upgrade" = 15.0 + #Sets a Rat's max health to this value when they have the Nonbeliever Upgrade. + #Range: 0.0 ~ 1024.0 + "Nonbeliever Health Upgrade" = 350.0 + #Sets a Rat's Armor to this value when they have the Nonbeliever Upgrade. + #Range: 0.0 ~ 30.0 + "Nonbeliever Armor Upgrade" = 20.0 + #Sets a Rat's attack damage to this value when they have the Nonbeliever Upgrade. + #Range: 0.0 ~ 2048.0 + "Nonbeliever Damage Upgrade" = 40.0 + #Rats that have an upgrade that regenerates health will regen half a heart every X ticks, X being the number defined here. Set to 0 to disable health regeneration. + #Range: > 0 + "Upgrade Regeneration Rate" = 30 + #If true, Rats that have the Psychic upgrade will pick up blocks and throw them towards enemies. + "Psychic Throws Blocks" = false + #How much damage a rat should take when eaten while having the Carrat Upgrade. + #Range: 0.0 ~ 1.7976931348623157E308 + "Damage per Carrat Upgrade bite" = 0.0 + +["Misc Rat Adjustments"] + #Defines how large the radius staff can get. Do note that the bigger the radius, the larger the performance impact as rats need to search a bigger area for tasks. Going above 16 is not recommended. + #Range: 1 ~ 64 + "Max Staff Radius" = 16 + #Defines the amount of rats you can store in a sack at one time. + #Range: 1 ~ 64 + "Rat Sack Capacity" = 16 + #Rats will continue to breed in cages until there are this many rats in one cage block + #Range: 1 ~ 10000 + "Rat Cage Max Occupancy" = 4 + #The max amount of Baby Rats will be produced when Rats breed. You will get anywhere between 1 and this number of baby rats. + #Range: 1 ~ 10 + "Rat Litter Size" = 1 + #The amount of time it takes after a rat successfully breeds for it to breed again. Time is in ticks. (24000 ticks = 1200 seconds = 20 minutes) + #Range: > 0 + "Rat Breeding Cooldown" = 24000 + #Rats will conduct expensive CPU operations like looking for crops or chests, once every this number of ticks(with added standard deviation for servers) + #Range: 1 ~ 10000 + "Rat Update Delay" = 100 + #If true, wild rats will rarely spawn wearing a santa hat. Rats will spawn with Santa hats during the Christmas season regardless, this will enable you to find them year round. + "Rats Spawn with Santa Hats" = false + #If true, wild rats will rarely spawn wearing a randomly colored party hat. Rats will spawn with Party hats during the New Year's Eve and special dates regardless, this will enable you to find them year round. + "Rats Spawn with Party Hats" = false + diff --git a/minecraft/config/rebornstorage-common.toml b/minecraft/config/rebornstorage-common.toml new file mode 100644 index 0000000..9aecb6f --- /dev/null +++ b/minecraft/config/rebornstorage-common.toml @@ -0,0 +1,43 @@ + +#General Settings +[general] + #Power requirement for Frame blocks + #Range: 0 ~ 1000 + multiblock_crafter_frame_cost = 0 + #Power requirement for Heat exchanger blocks + #Range: 0 ~ 1000 + multiblock_crafter_heat_cost = 0 + #Power requirement for Crafting Cpu blocks + #Range: 0 ~ 1000 + multiblock_crafter_cpu_cost = 5 + #Power requirement for Storage blocks + #Range: 0 ~ 1000 + multiblock_crafter_storage_cost = 10 + +#Multiblock Settings +[multiblock] + #Maximum X size + #Range: 3 ~ 64 + multiblock_crafter_max_x = 16 + #Maximum Y size + #Range: 3 ~ 64 + multiblock_crafter_max_y = 16 + #Maximum Z size + #Range: 3 ~ 64 + multiblock_crafter_max_z = 16 + #Maximum X size + #Range: 3 ~ 64 + multiblock_crafter_min_x = 3 + #Maximum Y size + #Range: 3 ~ 64 + multiblock_crafter_min_y = 3 + #Maximum Z size + #Range: 3 ~ 64 + multiblock_crafter_min_z = 3 + #Range: > 0 + advanced_wireless_transmitter_range = 1000 + #Range: 0 ~ 100000 + advanced_wireless_transmitter_cost = 100 + #Range: 0 ~ 100000 + advanced_wireless_transmitter_range_booster_range = 500 + diff --git a/minecraft/config/refinedstorage-client.toml b/minecraft/config/refinedstorage-client.toml new file mode 100644 index 0000000..20a3280 --- /dev/null +++ b/minecraft/config/refinedstorage-client.toml @@ -0,0 +1,23 @@ + +[grid] + #The maximum amount of rows that the Grid can show when stretched + #Range: > 3 + maxRowsStretch = 2147483647 + #Whether the Grid should display a detailed tooltip when hovering over an item or fluid + detailedTooltip = true + #Whether the Grid should use a large font for stack quantity display + largeFont = false + #Whether the Grid should prevent sorting while the shift key is held down + preventSortingWhileShiftIsDown = true + #Whether the Grid should remember the search query when closing and re-opening the Grid + rememberSearchQuery = false + +[crafterManager] + #The maximum amount of rows that the Crafter Manager can show when stretched + #Range: > 3 + maxRowsStretch = 2147483647 + +[cover] + #When true all the possible covers will be added to JEI (Game restart required) + showAllCoversInJEI = false + diff --git a/minecraft/config/refurbished_furniture.client.toml b/minecraft/config/refurbished_furniture.client.toml new file mode 100644 index 0000000..d1eb0ed --- /dev/null +++ b/minecraft/config/refurbished_furniture.client.toml @@ -0,0 +1,24 @@ +# The maximum speed the ceiling fan will spin when powered. This is visual only and does not affect damage. +# Valid range: 1 to 50 (inclusive) +ceilingFanMaxSpeed = 50.0 +# If enabled, shows an overlay on the HUD to help with cutting board slicing and combining recipes. +# Note: This is an experimental feature. +# Valid values: true, false +showCuttingBoardHelper = false +# The maximum distance that electricity nodes and connections can be seen by the camera. +# Valid range: 1 to 128 (inclusive) +electricityViewDistance = 48 +# If enabled, displays a toast notification when another player rings one of your doorbells. +# Valid values: true, false +doorbellNotification = true + +# Experimental options +[experimental] + # This config option is only if you have a shaders mod install, like Iris or Optifine. + # If enabled, this will fix an issue where if an entity with the glow effect is in view + # that it prevents electricity links and nodes from rendering. It may not fix 100% for + # every shader pack. + # WARNING: This will break the entity glow effect, this may or may not be a problem for you. + # Valid values: true, false + electricityShadersFix = false + diff --git a/minecraft/config/refurbished_furniture.server.toml b/minecraft/config/refurbished_furniture.server.toml new file mode 100644 index 0000000..edb07d1 --- /dev/null +++ b/minecraft/config/refurbished_furniture.server.toml @@ -0,0 +1,169 @@ + +# Recipe related properties +[recipes] + # If enabled, the Frying Pan and Grill will inherit all the cooking recipes from the + # vanilla Campfire. + # Valid values: true, false + inheritCampfireRecipes = true + +# Electricity related properties +[electricity] + # The maximum amount of links that can be connected to an Electricity Generator. + # Valid range: 1 to 64 (inclusive) + maximumLinksPerElectricityGenerator = 12 + # The maximum area radius determines the size of the area which electricity nodes must + # be inside of to be powered by a source node (like the Electricity Generator). The + # radius is represented as blocks. The center of the area is the source node providing + # the power, and area radius expands in each cardinal direction, including up and down. + # For example, if we have an area radius of 16 blocks, a source node can provide power + # to other electricity nodes from (x-16,y-16,z-16) to (x+16,y+16,z+16) with x,y,z being + # the block position of the source. Electricity nodes still must be connected with + # links to be powered, this config value just determines the acceptable area. + # Valid range: 1 to 256 (inclusive) + powerableAreaRadius = 80 + # The amount of power that is generated by the electricity generator per fuel tick. + # For example, coal has 1600 ticks of fuel, and at a ratio of 4, it would produce + # 6400 units of power. The default value of 8 means that the electricity generator + # would consume almost 2 coal per in-game day. + # Valid range: 1 to 128 (inclusive) + fuelToPowerRatio = 16 + # The maximum amount of nodes in a network that can be powered by an electricity + # source, like the electricity generator. + # Valid range: 1 to 512 (inclusive) + maximumNodesInNetwork = 64 + # The maximum amount of links that can be connected to a single electricity node. + # Valid range: 1 to 64 (inclusive) + maximumLinksPerElectricityNode = 6 + + # Cheats for electricity. Free power, etc. + [electricity.cheats] + # Makes all blocks that require electricity always be powered without them being + # connected to an Electricity Generator. Warning, some blocks may no longer work as + # expected. Use at your own risk of a downgraded experience. + # Valid values: true, false + everythingIsPowered = false + # Electricity Generators will now output free power, and stay on forever. + # Valid values: true, false + freeGeneratorPower = false + +# Mailing related properties +[mailing] + # Prevents items contained in this list from being sent through a Post Box. + # An example of how the list is defined: + # bannedItems = [ + # "minecraft:water_bucket", + # "minecraft:diamond", + # "refurbished_furniture:mailbox" + # ... + # ] + # ^ Note: This is just an example. Write your list below. + bannedItems = [] + # The maximum amount of mailboxes a player is allowed to register/own. + # Valid range: 1 to 2147483647 (inclusive) + maxMailboxesPerPlayer = 16 + # A list of dimensions you are allowed to place mailboxes. An empty list means that + # mailboxes can be placed in any dimension. + # An example of how the list is defined: + # allowedDimensions = [ + # "minecraft:overworld", + # "minecraft:the_nether", + # ... + # ] + # ^ Note: This is just an example. Write your list below. + allowedDimensions = [] + # The maximum amount of items that can be queued for delivery to a mailbox. Items become + # queued when the receiving mailbox's inventory is full. This is to prevent infinite storage. + # Valid range: 0 to 256 (inclusive) + deliveryQueueSize = 32 + # If enabled, this will ban items with an inventory (like a Shulker Box) being sent through + # a Post Box. This prevents players from creating massive NBT on a single item, which can + # cause issues for your server/world save. + # Valid values: true, false + banSendingItemsWithInventories = true + # The amount of inventory rows in a mailbox. If you change this value from a larger to + # a smaller value, items contained in the removed rows will be deleted. Use caution + # when changing this value to avoid inconvenience and backup your saves. + # Valid range: 1 to 6 (inclusive) + mailboxInventoryRows = 1 + +# Basin related properties +[basin] + # The storage capacity of the fluid tank contained in this block. If you're using Forge, + # 1000 units represents the capacity of a bucket, while it's 81000 on Fabric. So if you + # want 3 buckets worth of storage, it will be 3000 (Forge) or 243000 (Fabric) + # Valid range: 1 to 9223372036854775807 (inclusive) + fluidCapacity = 1000 + # If enabled, when interacting with this block it will dispense free water into + # it's fluid tank, assuming the tank is empty or contains water but has not reached it's + # capacity. + # Valid values: true, false + dispenseWater = true + +# Bath related properties +[bath] + # If enabled, when interacting with this block it will dispense free water into + # it's fluid tank, assuming the tank is empty or contains water but has not reached it's + # capacity. + # Valid values: true, false + dispenseWater = true + # The storage capacity of the fluid tank contained in this block. If you're using Forge, + # 1000 units represents the capacity of a bucket, while it's 81000 on Fabric. So if you + # want 3 buckets worth of storage, it will be 3000 (Forge) or 243000 (Fabric) + # Valid range: 1 to 9223372036854775807 (inclusive) + fluidCapacity = 10000 + +# Kitchen Sink related properties +[kitchenSink] + # If enabled, when interacting with this block it will dispense free water into + # it's fluid tank, assuming the tank is empty or contains water but has not reached it's + # capacity. + # Valid values: true, false + dispenseWater = true + # The storage capacity of the fluid tank contained in this block. If you're using Forge, + # 1000 units represents the capacity of a bucket, while it's 81000 on Fabric. So if you + # want 3 buckets worth of storage, it will be 3000 (Forge) or 243000 (Fabric) + # Valid range: 1 to 9223372036854775807 (inclusive) + fluidCapacity = 3000 + +# Recycle Bin related properties +[recycleBin] + # The maximum amount of experience levels that the recycling bin can hold. Recycling stops once it reaches that level. + # Valid range: 1 to 100 (inclusive) + maximumExperienceLevels = 5 + # The amount of time in ticks that it takes to perform one cycle of recycling + # Valid range: 1 to 2147483647 (inclusive) + processingTime = 10 + # The amount of experience to add when recycling an item. + # Valid range: 0 to 179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (inclusive) + experiencePerItem = 0.05 + +# Toilet related properties +[toilet] + # If enabled, when interacting with this block it will dispense free water into + # it's fluid tank, assuming the tank is empty or contains water but has not reached it's + # capacity. + # Valid values: true, false + dispenseWater = true + # The storage capacity of the fluid tank contained in this block. If you're using Forge, + # 1000 units represents the capacity of a bucket, while it's 81000 on Fabric. So if you + # want 3 buckets worth of storage, it will be 3000 (Forge) or 243000 (Fabric) + # Valid range: 1 to 9223372036854775807 (inclusive) + fluidCapacity = 1000 + +# Trampoline related properties +[trampoline] + # The maximum height that can be achieved from bouncing on the trampoline. The maximum + # height is affected the shape of the trampoline, the center trampoline in a 3x3 will + # be able to reach the maximum bounce height, while a single trampoline will only reach + # half. + # Valid range: 0 to 64 (inclusive) + maxBounceHeight = 8.0 + +# Television related properties +[television] + # If enabled, when the weather is thunder, the television will strangely loose signal. + # There should be no reason this should happen, none at all. It might be a good idea + # to turn your television off until it clears up. + # Valid values: true, false + looseSignalDuringThunderstorm = true + diff --git a/minecraft/config/relics.yaml b/minecraft/config/relics.yaml new file mode 100644 index 0000000..1a70b1f --- /dev/null +++ b/minecraft/config/relics.yaml @@ -0,0 +1,4 @@ +# Toggles advanced configuration files, allowing customization of most of the mod's functionality. May contain WIP content that may change in the future. +# +# Activating this feature may lead to unintended consequences, so use it only if you know what you're doing. If any part of the mod update involves changes to the configuration file values, these changes will not be applied automatically. You will need to manually update the necessary sections or reset them to their original state. +enabledExtendedConfigs: false diff --git a/minecraft/config/relics/relics/amphibian_boot.yaml b/minecraft/config/relics/relics/amphibian_boot.yaml new file mode 100644 index 0000000..02df9c4 --- /dev/null +++ b/minecraft/config/relics/relics/amphibian_boot.yaml @@ -0,0 +1,128 @@ +abilitiesData: + abilities: + swimming: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + duration: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 35.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 15.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.2 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + speed: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 0.01 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.005 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.25 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + slipping: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + duration: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 25.0 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 15.0 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.15 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + speed: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 0.01 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.005 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.15 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE + gills: + # Highest level to which the ability can be upgraded + maxLevel: 10 + # Relic level at which the ability becomes unlocked + requiredLevel: 0 + # Number of leveling points needed to increase the ability level + requiredPoints: 1 + stats: + chance: + # Maximum base value of the stat. A random value within this range is assigned when the relic is first created + maxInitialValue: 0.1 + # Maximum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + maxThresholdValue: 1.7976931348623157E308 + # Minimum base value of the stat. A random value within this range is assigned when the relic is first created + minInitialValue: 0.01 + # Minimum threshold value for the stat, representing hard limits that cannot be surpassed through ability level upgrades or other methods + minThresholdValue: 4.9E-324 + # Modifier applied to the base value of the stat, depending on the [upgradeOperation] parameter. + upgradeModifier: 0.35 + # Type of mathematical operation used to calculate the stat's value based on the ability level. Supported operations include: + # MULTIPLY_BASE: x + ((x * y) * z), + # MULTIPLY_TOTAL: x * (y + 1)^z, + # ADD: x + (y * z). + # + # ...where x - Base stat value, y - Value of [upgradeModifier], z - Current relic level + upgradeOperation: MULTIPLY_BASE +levelingData: + # Amount of experience required to level up to relic level 1 + initialCost: 100 + # Maximum level of the relic + maxLevel: 10 + # Increment in experience required for each subsequent level of the relic + step: 100 +lootData: + # List of key-value pairs where the key is a textual identifier for the loot table (supporting regular expressions) and the value represents the probability of generating the relic within the specified bounds + entries: + '[\w]+:chests\/[\w_\/]*(water|ocean|river|(? 0 + fluidLimit = 500000 + + #Infernal Claws settings + [items.infernalClaws] + #Percent hunger used to heal player per 1 damage that would be taken otherwise. + #Range: 0 ~ 30 + hungerCostPercent = 5 + + #Infernal Tear settings + [items.infernalTear] + #Whether the infernal tear starts absorbing immediately after it is set to item type + absorbWhenCreated = false + + #Kraken Shell settings + [items.krakenShell] + #Percent hunger used to heal player per 1 damage that would be taken otherwise. + #Range: 0 ~ 50 + hungerCostPercent = 25 + + #Lantern of Paranoia settings + [items.lanternOfParanoia] + #List of torches that are supported by the lantern + torches = ["minecraft:torch"] + #Minimum light level below which the lantern will place torches + #Range: 0 ~ 15 + minLightLevel = 1 + #Radius in which the lantern checks for light levels and places torches + #Range: 1 ~ 15 + placementScanRadius = 6 + + #Midas Touchstone settings + [items.midasTouchstone] + #Gold items that can be repaired by the touchstone + goldItems = [] + #Number of glowstone that the repair costs + #Range: 0 ~ 3 + glowstoneCost = 1 + #Number of glowstone that gets added to the touchstone per one in player's inventory + #Range: 1 ~ 12 + glowstoneWorth = 4 + #Number of glowstone the touchstone can hold + #Range: 0 ~ 9999 + glowstoneLimit = 250 + + #Mob Charm settings + [items.mobCharm] + #Total durability of Mob Charm + #Range: 20 ~ 1000 + durability = 80 + #Damage that Mob Charm takes when player kills mob it protects them from + #Range: 0 ~ 40 + damagePerKill = 1 + #Sets how much durability of Mob Charm gets repaired per special drop + #Range: 1 ~ 200 + dropDurabilityRepair = 20 + #Maximum charms that will get displayed in HUD + #Range: 1 ~ 20 + maxCharmsToDisplay = 6 + #Range in which mob charm or belt in pedestals will keep monsters from attacking players + #Range: 10 ~ 100 + pedestalRange = 21 + #Determines if almost destroyed charms stay displayed in the hud + keepAlmostDestroyedDisplayed = true + #List of hostile entities that are not supposed to have mob charms registered for them + entityBlockList = ["minecraft:ender_dragon", "minecraft:wither"] + + #Mob Charm Fragment Settings + [items.mobCharmFragment] + #Chance of fragment droping from mobs that don't have fragment that can be crafted + #Range: 0.0 ~ 1.0 + dropChance = 0.01666666753590107 + #Additional chance per level of looting + #Range: 0.0 ~ 1.0 + lootingMultiplier = 0.008333333767950535 + + #Phoenix Down settings + [items.PhoenixDown] + #Percent hunger used to heal player per 1 damage that would be taken otherwise + #Range: 0 ~ 50 + hungerCostPercent = 25 + #Potency of the leaping effect + #Range: 0 ~ 5 + leapingPotency = 1 + #Percent of life that gets healed when the player would die + #Range: 0 ~ 100 + healPercentageOfMaxLife = 100 + #Whether the player gets negative statuses removed when they were saved by Phoenix Down + removeNegativeStatus = true + #Whether to give temporary damage resistance when the player would die + giveTemporaryDamageResistance = true + #Whether to give temporary regeneration when the player would die + giveTemporaryRegeneration = true + #Whether to give temporary fire resistance when the player would die. Applies only when the player is being hurt by fire damage. + giveTemporaryFireResistanceIfFireDamageKilledYou = true + #Whether to give temporary damage resistance when the player would die. Applies only when the player is drowning. + giveTemporaryWaterBreathingIfDrowningKilledYou = true + + #Pyromancer Staff settings + [items.pyromancerStaff] + #Number of fire charges the staff can hold + #Range: 0 ~ 9999 + fireChargeLimit = 250 + #Number of fire charges used when the staff is fired + #Range: 0 ~ 3 + fireChargeCost = 1 + #Number of fire charges that get added to the staff per one that's consumed from player's inventory + #Range: 1 ~ 3 + fireChargeWorth = 1 + #Number of fire charges added to the staff per one that was shot by ghast and gets absorbed by the staff + #Range: 0 ~ 3 + ghastAbsorbWorth = 1 + #Number of blaze powder the staff can hold + #Range: 0 ~ 9999 + blazePowderLimit = 250 + #Number of blaze powder used when staff is fired + #Range: 0 ~ 3 + blazePowderCost = 1 + #Number of blaze powder that gets added to the staff per one that's consumed from player's inventory + #Range: 1 ~ 3 + blazePowderWorth = 1 + #Number of blaze powder added to the staff per one fireball that was shot by blaze and gets absorbed by the staff + #Range: 0 ~ 3 + blazeAbsorbWorth = 1 + + #Rending Gale settings + [items.rendingGale] + #Number of feathers the rending gale can hold + #Range: > 0 + chargeLimit = 30000 + #Number of feathers used when the rending gale is cast in flight mode + #Range: 0 ~ 3 + castChargeCost = 1 + #Number of feathers used to cast a lightning bolt + #Range: 0 ~ 250 + boltChargeCost = 100 + #Number of feathers that get added to the rending gale per one that's consumed from player's inventory + #Range: 1 ~ 250 + chargeFeatherWorth = 100 + #How far a lightning block can be cast + #Range: 5 ~ 15 + blockTargetRange = 12 + #Radius in which entities can be pushed/pulled + #Range: 1 ~ 20 + pushPullRadius = 10 + #Whether the rending gale can push projectiles + canPushProjectiles = true + #Range from pedestals at which players will get buffed with flight + #Range: 10 ~ 100 + pedestalFlightRange = 30 + #Cost per second of buffing players with flight + #Range: 1 ~ 20 + pedestalCostPerSecond = 5 + #List of entities that are banned from being pushed by the Rending Gale + pushableEntitiesBlacklist = [] + #List of projectiles that are banned from being pushed by the Rending Gale + pushableProjectilesBlacklist = [] + + #Rod of Lyssa settings + [items.rodOfLyssa] + #Whether level influences stealing failure rate of the rod + useLeveledFailureRate = true + #The experience level cap after which the failure rate is at a minimum and doesn't get better + #Range: 1 ~ 900 + levelCapForLeveledFormula = 100 + #The flat failure rate in case failure rate isn't influenced by player's level + #Range: 0 ~ 100 + flatStealFailurePercentRate = 10 + #If set to false it goes through additional 4 accessible slots and looks for items in case the one selected randomly was empty + stealFromVacantSlots = true + #Whether stealing from an empty slot triggers failure even if otherwise it would be successful + failStealFromVacantSlots = false + #Whether entities get angry at player if stealing fails + angerOnStealFailure = true + #Allows switching stealing from player on and off + stealFromPlayers = true + #List of entities on which lyssa rod doesn't work - full registry name is required here + entityBlockList = [] + + #Seeker Shot settings + [items.seekerShot] + #Entities that are banned from being tracked by seeker shot + huntableEntitiesBlacklist = [] + + #Sojourner Staff settings + [items.sojournerStaff] + #List of torches that are supported by the staff + torches = ["minecraft:torch", "minecraft:soul_torch", "minecraft:lantern", "minecraft:jack_o_lantern", "minecraft:sea_lantern", "minecraft:soul_lantern", "minecraft:shroomlight", "minecraft:glowstone", "minecraft:end_rod"] + #Number of items the staff can store per item type + #Range: 1 ~ 9999 + maxCapacityPerItemType = 1500 + #Maximum range at which torches can be placed + #Range: 1 ~ 30 + maxRange = 30 + #Distance after which there is an additional cost for torch placement. The additional cost is the number of times this distance fits in the distance at which the torch is being placed. + #Range: 6 ~ 30 + tilePerCostMultiplier = 6 + + #Twilight Cloak settings + [items.twilightCloak] + #Maximum light level at which the player is still invisible to the mobs + #Range: 0 ~ 15 + maxLightLevel = 4 + + #Void Tear settings + [items.voidTear] + #Number of items the tear can hold of the item type it is set to + #Range: > 0 + itemLimit = 2000000000 + #Whether the void tear starts absorbing immediately after it is set to item type + absorbWhenCreated = true + +[blocks] + + #Altar of Light settings + [blocks.altar] + #Number of redstone it costs to activate altar + #Range: 0 ~ 10 + redstoneCost = 3 + #Time in minutes it takes for the altar to create glowstone block + #Range: 0 ~ 60 + timeInMinutes = 20 + #Maximum time variance in minutes. A random part of it gets added to the Time in minutes. + #Range: 0 ~ 15 + maximumTimeVarianceInMinutes = 5 + #Light level that the altar outputs while active + #Range: 0 ~ 16 + outputLightLevelWhileActive = 16 + + #Apothecary Cauldron settings + [blocks.apothecaryCauldron] + #Limit of redstone that can be used in cauldron to make POTION last longer + #Range: 0 ~ 5 + redstoneLimit = 3 + #Time it takes to cook POTION + #Range: 20 ~ 32000 + cookTime = 160 + #List of acceptable heat sources + heatSources = [] + #Limit of glowstone that can be used in cauldron to make POTION more potent + #Range: 0 ~ 4 + glowstoneLimit = 2 + + #Lilypad of Fertility settings + [blocks.fertileLilypad] + #Interval in seconds at which the lilypad causes growth tick updates + #Range: 1 ~ 150 + secondsBetweenGrowthTicks = 10 + #Radius in which lilypad causes growh ticks + #Range: 1 ~ 15 + tileRange = 4 + #Radius around lilypad where the growth ticks occur the most often + #Range: 1 ~ 15 + fullPotencyRange = 1 + + #Interdiction Torch settings + [blocks.interdictionTorch] + #Radius in which the torch can push out mobs + #Range: 1 ~ 15 + pushRadius = 5 + #Whether the torch can push projectiles + canPushProjectiles = false + #List of entities that are banned from being pushed by the torch + pushableEntitiesBlacklist = [] + #List of projectiles that are banned from being pushed by the torch + pushableProjectilesBlacklist = [] + + #Pedestal related settings + [blocks.pedestal] + #Range of the melee weapons in which these will attack when in pedestals + #Range: 1 ~ 10 + meleeWrapperRange = 5 + #How long it takes after a melee weapon swing before it can swing again (in ticks) + #Range: 1 ~ 200 + meleeWrapperCooldown = 5 + #Range at which bucket will pickup liquid blocks or milk cows + #Range: 1 ~ 10 + bucketWrapperRange = 4 + #How long it takes in between bucket actions (in ticks) + #Range: 1 ~ 200 + bucketWrapperCooldown = 40 + #How long it takes between shearing actions (in ticks) + #Range: 1 ~ 10 + shearsWrapperRange = 4 + #Range at which shears will shear sheep or shearable blocks + #Range: 1 ~ 200 + shearsWrapperCooldown = 10 + #Range at which pedestals will get turned on if either redstone block gets put in or redstone dust and transmitting pedestals is powered + #Range: 1 ~ 200 + redstoneWrapperRange = 10 + #Success rate of fishing in percent. When unsuccessful it will pull the hook too late to catch a fish. + #Range: 0 ~ 100 + fishingWrapperSuccessRate = 80 + #Delay in seconds before it would start fishing again after retracting the hook. + #Range: 1 ~ 20 + fishingWrapperRetractDelay = 2 + diff --git a/minecraft/config/repurposed_structures-forge/modded_loot.toml b/minecraft/config/repurposed_structures-forge/modded_loot.toml new file mode 100644 index 0000000..37caa23 --- /dev/null +++ b/minecraft/config/repurposed_structures-forge/modded_loot.toml @@ -0,0 +1,8 @@ +#Adds modded loot from vanilla structure's loot tables and injects them into Repurposed Structure's loot tables. +#Example: Snowy Pyramid gets all modded items that vanilla Desert Temple can have. +importModdedItems = true +#Add the identifiers for Repurposed Structures's loottable you want to turn off the automatic modded item importing code for. +#Separate multiple entries with a comma. +#Example: "repurposed_structures:chests/mansions/birch, repurposed_structures:chests/mineshafts/jungle" +blacklistedRSLoottablesFromImportingModdedItems = "" + diff --git a/minecraft/config/resourcepackoverrides.json b/minecraft/config/resourcepackoverrides.json new file mode 100644 index 0000000..19cbfdf --- /dev/null +++ b/minecraft/config/resourcepackoverrides.json @@ -0,0 +1,3 @@ +{ + "schema_version": "2" +} \ No newline at end of file diff --git a/minecraft/config/rftoolsbuilder-client.toml b/minecraft/config/rftoolsbuilder-client.toml new file mode 100644 index 0000000..5eb5071 --- /dev/null +++ b/minecraft/config/rftoolsbuilder-client.toml @@ -0,0 +1,21 @@ + +#Settings for the builder +[builder] + #If true a holo hud with current progress is shown above the builder + showProgressHud = true + +#Settings for the scanner, composer, and projector +[scanner] + #Height of the beacon in case beacons are used + #Range: > 0 + locatorBeaconHeight = 30 + #The amount of milliseconds before the client will remove shape render data that hasn't been used. Decreasing this will free memory faster at the cost of having to update shape renders more often + #Range: 100 ~ 1000000 + clientRenderDataTimeout = 10000 + #The amount of milliseconds that a scanline 'flash' will exist on the client + #Range: 10 ~ 1000000 + projectorFlashTimeout = 400 + #The volume for the projector sound (0.0 is off) + #Range: 0.0 ~ 1.0 + baseProjectorVolume = 0.4 + diff --git a/minecraft/config/rftoolsstorage-client.toml b/minecraft/config/rftoolsstorage-client.toml new file mode 100644 index 0000000..f17f748 --- /dev/null +++ b/minecraft/config/rftoolsstorage-client.toml @@ -0,0 +1,22 @@ + +#Settings for the modular storage system +[storage] + #Background color for group lines + #Range: > 0 + groupBackground = 0 + #Foreground color for group lines + #Range: > 0 + groupForeground = 0 + #If true we automatically set the focus on the search field when opening the GUI for the modular storage. Set to false if you don't want that + autofocusSearch = false + #If true we clear the search field when opening the GUI for the modular storage. Set to false if you don't want that + clearSearchOnOpen = true + +#Settings for the storage scanner machine +[storagescanner] + #Time (in seconds) to hilight a block in the world + #Range: > 0 + hilightTime = 5 + #If this is true then opening the storage scanner GUI will automatically select the starred inventory view + hilightStarredOnGuiOpen = true + diff --git a/minecraft/config/rftoolsutility-client.toml b/minecraft/config/rftoolsutility-client.toml new file mode 100644 index 0000000..42e21e5 --- /dev/null +++ b/minecraft/config/rftoolsutility-client.toml @@ -0,0 +1,15 @@ + +#Settings for the screen system +[screen] + #Set to true for TrueType font, set to false for vanilla font + useTruetype = false + #Set to true for force TrueType to be disabled in all cases. Use this in case the truetype font is causing issues + forceNoTruetype = false + #The default truetype font to use + fontName = "rftoolsutility:ubuntu" + #The size of the font + #Range: 0.0 ~ 1000000.0 + fontSize = 40.0 + #Additional characters that should be supported by the truetype system + additionalCharacters = "" + diff --git a/minecraft/config/rightclickharvest.json5 b/minecraft/config/rightclickharvest.json5 new file mode 100644 index 0000000..487c3c8 --- /dev/null +++ b/minecraft/config/rightclickharvest.json5 @@ -0,0 +1,20 @@ +{ + // - default: false + "requireHoe": false, + // - default: true + "harvestInRadius": true, + /* - default: NONE + - must be one of: NONE, LOW, NORMAL, HIGH + */ + "hungerLevel": "NONE", + /* - default: NONE + - must be one of: NONE, COST, REWARD + */ + "experienceType": "NONE", + // - default: true + "showServerWarning": true, + /* Modpack developers, set this to true to stop RCH telling users that they probably need to equip a hoe to harvest crops (if requireHoe is set to true). This message will only be displayed once. + - default: false + */ + "hasUserBeenWarnedForNotUsingHoe": false +} \ No newline at end of file diff --git a/minecraft/config/roughlyenoughitems/collapsible.json5 b/minecraft/config/roughlyenoughitems/collapsible.json5 new file mode 100644 index 0000000..505f0a8 --- /dev/null +++ b/minecraft/config/roughlyenoughitems/collapsible.json5 @@ -0,0 +1,4 @@ +{ + "disabledGroups": [], + "customGroups": [] +} \ No newline at end of file diff --git a/minecraft/config/roughlyenoughitems/config.json5 b/minecraft/config/roughlyenoughitems/config.json5 new file mode 100644 index 0000000..e708c87 --- /dev/null +++ b/minecraft/config/roughlyenoughitems/config.json5 @@ -0,0 +1,178 @@ +{ + "basics": { + "favorites": [], + "hiddenFavorites": [], + "displayHistory": [], + "cheating": false, + "favoritesEnabled": true, + "reduceMotion": false, + "keyBindings": { + "useNativeKeybinds": false, + "recipeKeybind": { + "keyCode": "key.keyboard.r", + "modifier": 0 + }, + "usageKeybind": { + "keyCode": "key.keyboard.u", + "modifier": 0 + }, + "hideKeybind": { + "keyCode": "key.keyboard.o", + "modifier": 2 + }, + "previousPageKeybind": { + "keyCode": "key.keyboard.unknown", + "modifier": 0 + }, + "nextPageKeybind": { + "keyCode": "key.keyboard.unknown", + "modifier": 0 + }, + "focusSearchFieldKeybind": { + "keyCode": "key.keyboard.unknown", + "modifier": 0 + }, + "copyRecipeIdentifierKeybind": { + "keyCode": "key.mouse.middle", + "modifier": 0 + }, + "favoriteKeybind": { + "keyCode": "key.keyboard.a", + "modifier": 0 + }, + "exportImageKeybind": { + "keyCode": "key.keyboard.f8", + "modifier": 0 + }, + "previousScreenKeybind": { + "keyCode": "key.keyboard.backspace", + "modifier": 0 + } + }, + // Declares whether REI is visible. + "overlayVisible": true, + "cheatingStyle": "GRAB" + }, + "appearance": { + "recipeScreenType": "UNSET", + // Declares the appearance of REI windows. + "theme": "LIGHT", + "layout": { + // Declares the position of the search field. + "searchFieldLocation": "CENTER", + // Declares the position of the config button. + "configButtonLocation": "LOWER", + // Declares whether the craftable filter button is enabled. + "showCraftableOnlyButton": true + }, + // Declares the appearance of recipe's border. + "recipeBorder": "DEFAULT", + // Declares whether entry panel is scrolled. + "scrollingEntryListWidget": false, + // Declares whether entry panel should be invisible when not searching + "hideEntryPanelIfIdle": false, + "rainbow": false, + "horizontalEntriesBoundaries": 1.0, + "verticalEntriesBoundaries": 1.0, + "horizontalEntriesBoundariesColumns": 50, + "verticalEntriesBoundariesRows": 1000, + "horizontalEntriesBoundariesAlignment": 1.0, + "verticalEntriesBoundariesAlignment": 0.5, + "favoritesHorizontalEntriesBoundaries": 1.0, + "favoritesHorizontalEntriesBoundariesColumns": 50, + "syntaxHighlightingMode": "COLORFUL", + "isFocusModeZoomed": false + }, + "functionality": { + "inputMethod": null, + // Declares whether REI should remove the recipe book. + "disableRecipeBook": false, + // Declares whether mob effects should be on the left side instead of the right side. + "leftSideMobEffects": false, + // Declares whether subsets is enabled. + "isSubsetsEnabled": false, + "allowInventoryHighlighting": true, + "inventoryHighlightingDarkenOpacity": 0.85, + "inventoryHighlightingOpacity": 1.0, + "itemCheatingMode": "REI_LIKE" + }, + "advanced": { + "tooltips": { + // Declares whether REI should append mod names to entries. + "appendModNames": true, + // Declares whether favorites tooltip should be displayed. + "displayFavoritesTooltip": false, + "displayIMEHints": true + }, + "layout": { + // The ordering of the items on the entry panel. + "entryPanelOrdering": "REGISTRY_ASCENDING", + // Declares the maximum amount of recipes displayed in a page if possible. + "maxRecipesPerPage": 8, + // Declares the maximum amount of recipes displayed in a page if possible. + "maxRecipesPageHeight": 300, + // Declares whether entry rendering time should be debugged. + "debugRenderTimeRequired": false, + // Merges displays with equal contents under 1 display. + "mergeDisplayUnderOne": true, + "favoriteAddWidgetMode": "ALWAYS_VISIBLE" + }, + "accessibility": { + "entrySize": 1.0, + // Declares the position of the entry panel. + "displayPanelLocation": "RIGHT", + // Declares how the scrollbar in composite screen should act. + "compositeScrollBarPermanent": false, + "toastDisplayedOnCopyIdentifier": true, + // Declares whether REI should use compact tabs for categories. + "useCompactTabs": true, + // Declares whether REI should use compact tab buttons for categories. + "useCompactTabButtons": false + }, + "search": { + // Declares whether search time should be debugged. + "debugSearchTimeRequired": false, + // Declares whether REI should search async. + "asyncSearch": true, + // Declares how many entries should be grouped one async search. + "asyncSearchPartitionSize": 100, + "patchAsyncThreadCrash": true, + "tooltipSearch": "ALWAYS", + "tagSearch": "PREFIX", + "identifierSearch": "ALWAYS", + "modSearch": "PREFIX" + }, + "commands": { + // Declares the command used to change gamemode. + "gamemodeCommand": "/gamemode {gamemode}", + // Declares the command used in servers to cheat items. + "giveCommand": "/give {player_name} {item_identifier}{nbt} {count}", + // Declares the command used to change weather. + "weatherCommand": "/weather {weather}", + // Declares the command used to change time. + "timeCommand": "/time set {time}" + }, + "miscellaneous": { + // Declares whether arrows in containers should be clickable. + "clickableRecipeArrows": true, + "registerRecipesInAnotherThread": true, + "newFastEntryRendering": true, + "cachingFastEntryRendering": false, + "cachingDisplayLookup": true, + "categorySettings": { + "filteringQuickCraftCategories": { }, + "categoryOrdering": [], + "hiddenCategories": [] + } + }, + "filtering": { + "filteredStacks": [], + "shouldFilterDisplays": true, + "filteringRules": [ + "{id:\"roughlyenoughitems:manual\",rule:{}}", + "{id:\"roughlyenoughitems:basic\",rule:{}}", + "{id:\"roughlyenoughitems:hidden_from_recipe_viewers\",rule:{}}" + ] + } + } +} \ No newline at end of file diff --git a/minecraft/config/roughlyenoughitems/favorites.json5 b/minecraft/config/roughlyenoughitems/favorites.json5 new file mode 100644 index 0000000..a0dd990 --- /dev/null +++ b/minecraft/config/roughlyenoughitems/favorites.json5 @@ -0,0 +1,5 @@ +{ + "favorites": [], + "hiddenFavorites": [], + "displays": [] +} \ No newline at end of file diff --git a/minecraft/config/roughlyenoughitems/hints.json b/minecraft/config/roughlyenoughitems/hints.json new file mode 100644 index 0000000..f4dcef8 --- /dev/null +++ b/minecraft/config/roughlyenoughitems/hints.json @@ -0,0 +1 @@ +{"UUID":"0c73d1e12c7447ddad8b96dd6ccb880c","shownHints":[]} \ No newline at end of file diff --git a/minecraft/config/roughlyenoughitems/pinyin.properties b/minecraft/config/roughlyenoughitems/pinyin.properties new file mode 100644 index 0000000..4fea5ca --- /dev/null +++ b/minecraft/config/roughlyenoughitems/pinyin.properties @@ -0,0 +1,2 @@ +#Pinyin Options +#Tue Apr 07 23:21:04 EDT 2026 diff --git a/minecraft/config/roughlyenoughitems/pinyin_double.properties b/minecraft/config/roughlyenoughitems/pinyin_double.properties new file mode 100644 index 0000000..5d0a732 --- /dev/null +++ b/minecraft/config/roughlyenoughitems/pinyin_double.properties @@ -0,0 +1,3 @@ +#Double Pinyin Options +#Tue Apr 07 23:21:04 EDT 2026 +Converter=sougou diff --git a/minecraft/config/rrls.toml b/minecraft/config/rrls.toml new file mode 100644 index 0000000..afb590f --- /dev/null +++ b/minecraft/config/rrls.toml @@ -0,0 +1,26 @@ +#text.autoconfig.rrls.option.rgbProgress.@Tooltip +rgbProgress = false +#Allowed Values: PROGRESS, TEXT +type = "PROGRESS" +reloadText = "" +resetResources = false +#text.autoconfig.rrls.option.reInitScreen.@Tooltip +reInitScreen = true +#Allowed Values: ALL, LOADING, RELOADING, NONE +hideType = "RELOADING" +#text.autoconfig.rrls.option.forceClose.@Tooltip +forceClose = false +#text.autoconfig.rrls.option.blockOverlay.@Tooltip +blockOverlay = false +miniRender = true +#text.autoconfig.rrls.option.removeOverlayAtEnd.@Tooltip +removeOverlayAtEnd = true +#text.autoconfig.rrls.option.earlyPackStatusSend.@Tooltip[0] +#text.autoconfig.rrls.option.earlyPackStatusSend.@Tooltip[1] +earlyPackStatusSend = false +#Allowed Values: FORCE_LOAD, LOAD, NONE +doubleLoad = "FORCE_LOAD" +#text.autoconfig.rrls.option.animationSpeed.@Tooltip +animationSpeed = 1000.0 +skipForgeOverlay = false + diff --git a/minecraft/config/rsmixin-common.toml b/minecraft/config/rsmixin-common.toml new file mode 100644 index 0000000..0364844 --- /dev/null +++ b/minecraft/config/rsmixin-common.toml @@ -0,0 +1,89 @@ + +[rsmixin] + #Enables extra debug logging (throttle ticks, active node counts, importer activation/sleep, unloaded skips, etc.). Useful for diagnosing issues but spammy in logs. + enableDebugLogging = false + #Master switch for network update throttling. + #When enabled, full RS network updates run only every throttleInterval ticks instead of every tick. + #This reduces server load in large networks but slows down some operations if not bypassed. + enableThrottle = true + #How often (in ticks) full network updates occur when throttling is enabled. + #1 = no throttling (every tick), 20 = every second (default, ~1 operation/sec for non-bypassed nodes). + #Only matters if enableThrottle is true. + #Range: 1 ~ 1000 + throttleInterval = 20 + #Allows specific nodes (importers, exporters, interfaces, etc.) to bypass throttling and update more frequently. + # + #- ENABLED (default): Listed nodes can update every tick (full speed when active; speed upgrades respected). + # Higher performance cost when nodes are busy, but fast transfer rates. + # + #- DISABLED: All nodes strictly follow throttleInterval (~1 operation/sec at interval=20). + # Speed upgrades are ignored (forced to 1) for consistent rate. + # + #Interacts with fastNodeClasses (defines which nodes can bypass) and enableDynamicNodeSleep (controls node sleep behaviour when bypassing). + enableBypassFastNodes = true + #List of node class names that are allowed to bypass throttling when enableBypassFastNodes is true. + #Defaults cover core RS nodes (importers, exporters, interfaces, crafters, etc.) and popular addons. + #Adding extra classes is safe—even if the mod isn't installed (string matching only). + #Only relevant when enableBypassFastNodes is enabled. + fastNodeClasses = ["com.refinedmods.refinedstorage.apiimpl.network.node.ImporterNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.ExporterNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.InterfaceNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.FluidInterfaceNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.CrafterNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.ConstructorNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.DestructorNetworkNode", "com.refinedmods.refinedstorage.apiimpl.network.node.diskmanipulator.DiskManipulatorNetworkNode", "com.ultramega.cabletiers.node.TieredConstructorNetworkNode", "com.ultramega.cabletiers.node.TieredDestructorNetworkNode", "com.ultramega.cabletiers.node.TieredExporterNetworkNode", "com.ultramega.cabletiers.node.TieredImporterNetworkNode", "com.ultramega.cabletiers.node.TieredInterfaceNetworkNode", "com.ultramega.cabletiers.node.TieredRequesterNetworkNode", "com.ultramega.cabletiers.node.diskmanipulatorz.TieredDiskManipulatorNetworkNode", "edivad.extrastorage.nodes.AdvancedExporterNetworkNode", "edivad.extrastorage.nodes.AdvancedImporterNetworkNode", "edivad.extrastorage.nodes.AdvancedCrafterNetworkNode", "com.buuz135.refinedstoragerequestify.proxy.block.network.NetworkNodeRequester", "net.gigabit101.rebornstorage.nodes.CraftingNode", "dev.stevendoesstuffs.refinedcrafterproxy.CrafterProxyNetworkNode"] + #On controller load/reload (world load, relog, chunk load), delay then force a full network rescan. + #Fixes connection issues with capability-based cables (e.g., EnderIO conduits) that aren't detected immediately on load. + #Safe and recommended for most setups. + enableLoadRescan = true + #Ticks to wait after detecting controller load before rescanning. + #Gives time for block entities and capabilities to initialize. Default 20 (~1 second). + #Only matters if enableLoadRescan is true. + #Range: 0 ~ 400 + loadRescanDelay = 20 + #When placing EnderIO conduits next to RS blocks, delay then force a network rescan. + #Fixes runtime detection failures where immediate rescan is too early. + #Safe even without EnderIO installed. + enableConduitPlacementFix = true + #Ticks to wait after conduit placement before rescanning. + #Default 10 (~0.5 seconds). Increase if connections still fail occasionally. + #Only matters if enableConduitPlacementFix is true. + #Range: 0 ~ 200 + conduitPlacementRescanDelay = 10 + #Recalculate network energy usage only when the graph changes instead of every tick. Minor performance improvement. + enableLazyEnergy = true + #Replace ConcurrentHashMap/ConcurrentHashSet with regular HashMap/HashSet in single-threaded contexts. Small performance gain. + enableHashSetOptimize = true + #Skip processing unloaded positions during network graph updates. Improves performance and prevents rare deadlocks on chunk unload. + enableSkipUnloaded = true + #Makes fast nodes sleep when idle (only relevant when enableBypassFastNodes is true and node is in fastNodeClasses). + # + #- ENABLED (default): Nodes update every tick only when work is available. + # When idle for a few cycles, they fall back to throttled updates → lower overhead. + # + #- DISABLED: Nodes always update every tick when bypassing is allowed (full speed even when idle). + enableDynamicNodeSleep = true + #Enables dynamic throttling bypass for the crafting manager. + # + #- ENABLED (default): When there are active crafting tasks, the crafting manager updates every tick → fast crafting while active. + # Falls back to throttled updates when idle → lower overhead. + # + #- DISABLED: Crafting manager strictly follows throttleInterval. + # + #Only relevant when enableThrottle is true, throttleInterval > 1, and enableBypassFastNodes is true. + #Fully respects crafter speed upgrades. + enableDynamicCraftingBypass = true + #Optimizes ticking by only updating nodes that are connected to a network. Disconnected nodes are skipped, reducing unnecessary overhead. + enableConnectedNodeTickOptimize = true + #Registers a passthrough factory for EnderIO's RS conduits to suppress warnings and enable compatibility. + #Disable if EnderIO adds their own registration in a future update. + #Only applies if EnderIO is loaded. + enableEnderioRsFix = true + #Enables saving and applying a type-keyed NBT backup for EnderIO conduit data (filters, upgrades, autocrafting rows, etc.). + #Prevents loss/corruption on world reload when the global graph restore or positional fallback fails. + #Safe to disable if not needed, conflicting, or EnderIO fixes this upstream. + #Default: true (recommended for RS + EnderIO setups). + enableEnderioConduitTypedBackup = true + #Fixes RebornStorage multiblock crafter (v5.0.7): + #- Immediate assembly/GUI access. + #- Requires CPU or storage (no all-air). + #- Allows air during construction. + #- Clean validation messages. + #- No pattern pages with CPU-only (clear message). + #Safe to disable if newer versions fix these. + enableRebornstorageCrafterFix = true + diff --git a/minecraft/config/rsrequestify-common.toml b/minecraft/config/rsrequestify-common.toml new file mode 100644 index 0000000..27bbbeb --- /dev/null +++ b/minecraft/config/rsrequestify-common.toml @@ -0,0 +1,6 @@ + +[COMMON] + #Max amount of items per request + #Range: > 1 + MAX_CRAFT_AMOUNT = 1000 + diff --git a/minecraft/config/runiclib.json b/minecraft/config/runiclib.json new file mode 100644 index 0000000..244c699 --- /dev/null +++ b/minecraft/config/runiclib.json @@ -0,0 +1,3 @@ +{ + "rlCommandsEnabled": true +} \ No newline at end of file diff --git a/minecraft/config/sanguine_networks-common.toml b/minecraft/config/sanguine_networks-common.toml new file mode 100644 index 0000000..5b0131f --- /dev/null +++ b/minecraft/config/sanguine_networks-common.toml @@ -0,0 +1,13 @@ +#How much time in ticks should the virtual sacrificer wait before producing blood [100] +#Range: > 1 +sacrificer_speed = 100 +#The energy capacity of the virtual sacrificer [1000000] +#Range: > 1 +sacrificer_energy = 1000000 +#How much data to give to the model each iteration [1] +#Set to 0 to disable +#Range: > 0 +sacrificer_data = 1 +#Should data be given to faulty models? [true] +faulty_data = true + diff --git a/minecraft/config/saturn-optimizations.toml b/minecraft/config/saturn-optimizations.toml new file mode 100644 index 0000000..47afa04 --- /dev/null +++ b/minecraft/config/saturn-optimizations.toml @@ -0,0 +1,9 @@ +#(default = true) Optimizes memory allocation by caching objects to static final references. +optimizeMemoryAllocations = true +#(default = true) Reduces garbage collection (GC) heap by avoid creating unnecessary objects. +reduceGCHeap = true +#(default = true) Fixes memory leaks which takes the memory continuously. +fixMemoryLeaks = true +#(default = true) Removes duplicated threading detector locks. +removeThreadingDetectorLocks = true + diff --git a/minecraft/config/seasonhud-client.toml b/minecraft/config/seasonhud-client.toml new file mode 100644 index 0000000..c7e82cf --- /dev/null +++ b/minecraft/config/seasonhud-client.toml @@ -0,0 +1,102 @@ + +[SeasonHUD] + #Enable the mod? + #(true/false) + #Default is true. + enable_mod = true + + [SeasonHUD.HUD] + #Where to display the Hud when no minimap is installed. + #Default is TOP_LEFT. + #Allowed Values: TOP_LEFT, TOP_CENTER, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT, CUSTOM + hud_location = "BOTTOM_RIGHT" + #The horizontal offset of the HUD when no minimap is installed (in pixels) + #'hudLocation' must be set to 'CUSTOM' to take effect + #Default is 2. + hud_x_position = 2 + #The vertical offset of the HUD when no minimap is installed (in pixels) + #'hudLocation' must be set to 'CUSTOM' to take effect + #Default is 2. + hud_y_position = 2 + #The scale of the HUD when no minimap is installed. + #Default is 1.0. + #Range: 0.5 ~ 10.0 + hud_scale = 1.0 + + [SeasonHUD.HUD.Colors] + #Display the season name in a color? + #(true/false) + #Default is true. + season_name_color = true + #The RGB color (decimal) for spring. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 16753595. + #Range: 0 ~ 16777215 + spring_color = 16753595 + #The RGB color (decimal) for summer. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 16705834. + #Range: 0 ~ 16777215 + summer_color = 16705834 + #The RGB color (decimal) for autumn. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 12344871. + #Range: 0 ~ 16777215 + autumn_color = 12344871 + #The RGB color (decimal) for winter. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 14679292. + #Range: 0 ~ 16777215 + winter_color = 14679292 + #The RGB color (decimal) for dry tropical season. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 16745216. + #Range: 0 ~ 16777215 + dry_color = 16745216 + #The RGB color (decimal) for wet tropical season. + #(256 * 256 * r) + (256 * g) + (b) is the formula. + #Default is 2068975. + #Range: 0 ~ 16777215 + wet_color = 2068975 + + [SeasonHUD.Season] + #Show the Tropical season (Wet/Dry) while in Tropical Biomes. + #This will not change the season behavior in the biomes, just + #what is displayed on the Hud + #(true/false) + #Default is true. + enable_show_tropical_season = true + #Show sub-season instead of the basic season? + #i.e. Early Winter, Mid Autumn, Late Spring + #(true/false) + # + #If using Fabric Seasons: + #You will want to change the 'seasonLength' options in the + #Fabric Seasons config (seasons.json) to be divisible by 3 + #It defaults to 672000 ticks (28 days) + # + #Default is false. + enable_show_sub_season = true + #Show the current day of the season/sub-season? + #Default is SHOW_DAY. + #Allowed Values: NONE, SHOW_DAY, SHOW_WITH_TOTAL_DAYS + enable_show_day = "SHOW_DAY" + #Show the current fertility of the biome? + #Only shows if not the default fertility of the season + #Default is false. + enable_show_fertility = false + #If the season name should be replaced with the fertility + #value when it differs from the default of the biome + #Default is false. + enable_fertility_replaces_season = false + + [SeasonHUD.Minimap] + #Enable integration with minimap mods? + #(true/false) + #Default is true. + enable_minimap_integration = true + #Show the default SeasonHUD when the minimap is hidden? + #(true/false) + #Default is false. + enable_show_minimap_hidden = true + diff --git a/minecraft/config/sebastrnlib-client.toml b/minecraft/config/sebastrnlib-client.toml new file mode 100644 index 0000000..8401570 --- /dev/null +++ b/minecraft/config/sebastrnlib-client.toml @@ -0,0 +1,3 @@ +#Display a thank you message at spawn? +sayThanksMessage = true + diff --git a/minecraft/config/securitycraft-client.toml b/minecraft/config/securitycraft-client.toml new file mode 100644 index 0000000..794dbb4 --- /dev/null +++ b/minecraft/config/securitycraft-client.toml @@ -0,0 +1,23 @@ +#Send a welcome message containing tips when joining the world +sayThanksMessage = false +#Set the color that reinforced blocks' textures are tinted with. This will be applied the same to all blocks that satisfy the condition set by "reinforced_block_tint_mode". Grayscale values look best. +#Format: 0xRRGGBB +#Range: 0 ~ 16777215 +reinforced_block_tint_color = 10066329 +#Set the radius in which chunks viewed in a frame camera feed should be requested from the server and rendered. If this config has a higher value than the vanilla "Render Distance" option or the "view-distance" server property, the smaller value is used instead. +#Range: 2 ~ 32 +frame_feed_render_distance = 16 +#Set the resolution of the Frame camera feed. This is always a square resolution. Smaller values will be less detailed, higher values may lead to diminishing returns. +#Range: 1 ~ 16384 +frame_feed_resolution = 512 +#The maximum amount of frames per second the Frame camera feed renders at. Higher values will lead to worse performance. +#Range: 10 ~ 260 +frame_feed_fps_limit = 30 +#If this debug feature is enabled, SecurityCraft will attempt to find and report mods that prevent the feature of viewing security cameras from working when they immediately reset the player's camera entity. +debug_camera_reset_tracing = false +#Should Secure Redstone Interfaces in "Receiver" mode be rendered without the spinning disk? This may lead to slight clientside performance gains. +more_performant_sri_rendering = false +#Controls what condition placed reinforced blocks must satisfy in order to be colored compared to their vanilla counterparts. The color of this tint can be defined through the "reinforced_block_tint_color" configuration option. The tint may apply to all reinforced blocks, no reinforced blocks, or only the reinforced blocks that belong or don't belong to the player. +#Allowed Values: ALL, NONE, OWNED, UNOWNED +reinforced_block_tint_mode = "ALL" + diff --git a/minecraft/config/serializationisbad-remotecache.json b/minecraft/config/serializationisbad-remotecache.json new file mode 100644 index 0000000..eaaf930 --- /dev/null +++ b/minecraft/config/serializationisbad-remotecache.json @@ -0,0 +1,388 @@ +{ + "executeBlocking": true, + "patchModules": [ + { + "classesToPatch": [ + "net.bdew.lib.network.SerializedMessageCodec", + "net.bdew.lib.network.NetChannel" + ], + "classAllowlist": [], + "packageAllowlist": [ + "net.bdew" + ] + }, + { + "classesToPatch": [ + "com.enderio.core.common.config.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "crazypants", + "com.enderio" + ] + }, + { + "classesToPatch": [ + "p455w0rd.danknull.network.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.danknull" + ] + }, + { + "classesToPatch": [ + "reborncore.common.network.ExtendedPacketBuffer" + ], + "classAllowlist": [ + "java.math.BigInteger" + ], + "packageAllowlist": [] + }, + { + "classesToPatch": [ + "makeo.gadomancy.common.network.packets.PacketUpdateGolemTypeOrder", + "makeo.gadomancy.common.network.packets.PacketSyncConfigs" + ], + "classAllowlist": [], + "packageAllowlist": [ + "makeo.gadomancy" + ] + }, + { + "classesToPatch": [ + "org.wyldmods.simpleachievements.common.networking.MessageSendAchievements" + ], + "classAllowlist": [], + "packageAllowlist": [ + "org.wyldmods.simpleachievements" + ] + }, + { + "classesToPatch": [ + "immersive_armors.cobalt.network.Message" + ], + "classAllowlist": [], + "packageAllowlist": [ + "immersive_armors" + ] + }, + { + "classesToPatch": [ + "immersive_aircraft.cobalt.network.Message" + ], + "classAllowlist": [], + "packageAllowlist": [ + "immersive_aircraft" + ] + }, + { + "classesToPatch": [ + "immersive_paintings.cobalt.network.Message" + ], + "classAllowlist": [], + "packageAllowlist": [ + "immersive_paintings" + ] + }, + { + "classesToPatch": [ + "gcewing.projectblue.BaseNBTChannel$NBTCodec" + ], + "classAllowlist": [], + "packageAllowlist": [ + "gcewing.projectblue" + ] + }, + { + "classesToPatch": [ + "com.github.technus.tectech.mechanics.spark.RendererMessage" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.github.technus" + ] + }, + { + "classesToPatch": [ + "com.n247s.N2ConfigApi.api.networking.N2ConfigApiMessageHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.n247s.N2ConfigApi" + ] + }, + { + "classesToPatch": [ + "p455w0rd.endermanevo.network.PacketFriendermanRegistrySync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.endermanevo" + ] + }, + { + "classesToPatch": [ + "com.mattdahepic.mdecore.config.sync.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.mattdahepic" + ] + }, + { + "classesToPatch": [ + "com.iconmaster.aec.network.TransferConfigsPacket" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.iconmaster.aec" + ] + }, + { + "classesToPatch": [ + "net.tslat.aoa3.common.packet.leaderboard.PacketLeaderboardStats", + "net.tslat.aoa3.common.packet.leaderboard.PacketIndividualLeaderboardStats" + ], + "classAllowlist": [], + "packageAllowlist": [ + "net.tslat.aoa3" + ] + }, + { + "classesToPatch": [ + "pl.asie.lib.util.Base64" + ], + "classAllowlist": [], + "packageAllowlist": [ + "pl.asie" + ] + }, + { + "classesToPatch": [ + "arrowsplus.core.forge.PacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "arrowsplus" + ] + }, + { + "classesToPatch": [ + "hellfirepvp.astralsorcery.common.network.packet.server.PktSyncConfig" + ], + "classAllowlist": [], + "packageAllowlist": [ + "hellfirepvp.astralsorcery" + ] + }, + { + "classesToPatch": [ + "mal.carbonization.network.MultiblockFurnaceMessageServer" + ], + "classAllowlist": [], + "packageAllowlist": [ + "mal.carbonization" + ] + }, + { + "classesToPatch": [ + "p455w0rd.capes.packet.PacketClientAddFriend", + "p455w0rd.capes.packet.PacketClientRemoveFriend", + "p455w0rd.capes.packet.PacketClientUpdateFriend", + "p455w0rd.capes.packet.PacketServerFriendSync", + "p455w0rd.capes.packet.PacketServerPlayerSync", + "p455w0rd.capes.packet.PacketServerTextureURLSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.capes" + ] + }, + { + "classesToPatch": [ + "gcewing.sg.base.ForgeNBTNetworking$BasePacketHandler", + "gcewing.sg.BaseNBTChannel$NBTCodec", + "gcewing.sg.BaseNBTChannel$BasePacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "gcewing.sg" + ] + }, + { + "classesToPatch": [ + "com.zerren.extrafirma.core.network.PacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.zerren.extrafirma" + ] + }, + { + "classesToPatch": [ + "journeymap.common.network.impl.Message" + ], + "classAllowlist": [], + "packageAllowlist": [ + "journeymap" + ] + }, + { + "classesToPatch": [ + "com.polipo.bookshelf.net.MyMessage" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.polipo.bookshelf" + ] + }, + { + "classesToPatch": [ + "mca.PacketHandler", + "mca.core.forge.PacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "mca" + ] + }, + { + "classesToPatch": [ + "logisticspipes.network.abstractpackets.GenericPacket", + "logisticspipes.network.packets.debuggui.DebugInfoUpdate", + "logisticspipes.network.packets.debuggui.DebugTargetResponse", + "logisticspipes.network.packets.debuggui.DebugTypePacket", + "logisticspipes.network.packets.routingdebug.RoutingUpdateTargetResponse" + ], + "classAllowlist": [], + "packageAllowlist": [ + "logisticspipes" + ] + }, + { + "classesToPatch": [ + "aeronicamc.mods.mxtune.network.NetworkSerializedHelper" + ], + "classAllowlist": [], + "packageAllowlist": [ + "aeronicamc.mods.mxtune" + ] + }, + { + "classesToPatch": [ + "p455w0rd.p455w0rdsthings.network.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.p455w0rdsthings" + ] + }, + { + "classesToPatch": [ + "radixcore.modules.RadixNettyIO" + ], + "classAllowlist": [], + "packageAllowlist": [ + "radixcore" + ] + }, + { + "classesToPatch": [ + "radixcore.network.ByteBufIO" + ], + "classAllowlist": [], + "packageAllowlist": [ + "radixcore", + "mca" + ] + }, + { + "classesToPatch": [ + "net.smart.moving.SmartMovingPacketStream" + ], + "classAllowlist": [], + "packageAllowlist": [ + "net.smart.moving" + ] + }, + { + "classesToPatch": [ + "svenhjol.strange.scrolls.message.ClientQuestList" + ], + "classAllowlist": [], + "packageAllowlist": [ + "svenhjol.strange" + ] + }, + { + "classesToPatch": [ + "com.supermartijn642.configlib.ConfigSyncPacket" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.supermartijn642" + ] + }, + { + "classesToPatch": [ + "vazkii.tinkerer.common.network.PacketManager" + ], + "classAllowlist": [], + "packageAllowlist": [ + "vazkii.tinkerer" + ] + }, + { + "classesToPatch": [ + "p455w0rd.tanaddons.network.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "p455w0rd.tanaddons" + ] + }, + { + "classesToPatch": [ + "tterrag.core.common.config.PacketConfigSync" + ], + "classAllowlist": [], + "packageAllowlist": [ + "tterrag" + ] + }, + { + "classesToPatch": [ + "mods.gra.energymanipulator.client.ClientPacketHandler" + ], + "classAllowlist": [], + "packageAllowlist": [ + "mods.gra.energymanipulator" + ] + }, + { + "classesToPatch": [ + "com.possible_triangle.brazier.network.ByteConfigSerializer" + ], + "classAllowlist": [], + "packageAllowlist": [ + "com.possible_triangle.brazier" + ] + } + ], + "classAllowlist": [ + "boolean", + "byte", + "char", + "short", + "int", + "long", + "float", + "double", + "void" + ], + "packageAllowlist": [ + "java.util", + "java.lang" + ] +} diff --git a/minecraft/config/serializationisbad.json b/minecraft/config/serializationisbad.json new file mode 100644 index 0000000..828a442 --- /dev/null +++ b/minecraft/config/serializationisbad.json @@ -0,0 +1,8 @@ +{ + "useRemoteConfig": true, + "remoteConfigUrl": "https://raw.githubusercontent.com/dogboy21/serializationisbad/master/serializationisbad.json", + "executeBlocking": true, + "patchModules": [], + "classAllowlist": [], + "packageAllowlist": [] +} \ No newline at end of file diff --git a/minecraft/config/serverconfigcleaner-common.toml b/minecraft/config/serverconfigcleaner-common.toml new file mode 100644 index 0000000..0941dbf --- /dev/null +++ b/minecraft/config/serverconfigcleaner-common.toml @@ -0,0 +1,12 @@ +#Patterns used to determine suspicious config keys. Capitalization is ignored. +badConfigPatterns = ["host", "username", "password", "secret", "token", "apikey", "webhook", "jdbc", "sql", "redis", "mongodb", "database"] +#Options to exclude from config syncing +#Format: modid:category.configKey +doNotSync = [] +#Options that are detected by the badConfigPatterns, but should still be synced +#Format: modid:category.configKey; * allowed at the end of an entry +falsePositives = ["rftoolsbuilder:scanner.locatorUsePerTickHostile", "tombstone:player_death.ghostly_shape_duration", "mahoutsukai:secret.*", "create:logistics.seatHostileMobs", "tombstone:general.ghostly_shape_duration", "skinnedlanterns:lanterns.ghost_soul_lantern", "skinnedlanterns:lanterns.ghost_lantern", "goblinsanddungeons:general.Super Secret Settings", "moblassos:hostile_damage_rate", "moblassos:hostile_mob_health", "moblassos:hostile_lasso_time", "notenoughwands:general.wandsettings.capturing_wand.allowHostile", "notenoughwands:general.wandsettings.freezing_wand.freezeAllowHostile", "notenoughwands:general.wandsettings.potion_wand.potionAllowHostile", "sophisticatedbackpacks:server.mobCatcherUpgrade.hostileOverrides", "sophisticatedbackpacks:server.mobCatcherUpgrade.hostileMultiplier"] +#A somewhat obfuscated list of known options containing secrets. +#Ignore unless you know what you are doing. +doNotSyncHashes = [] + diff --git a/minecraft/config/serverconfigupdater-common.toml b/minecraft/config/serverconfigupdater-common.toml new file mode 100644 index 0000000..f24652e --- /dev/null +++ b/minecraft/config/serverconfigupdater-common.toml @@ -0,0 +1,12 @@ + +["Version Configuration"] + # Define a version here. On world load the mod will look up the serverconfig version and reset all files that specified up to the newest version. + # Example: ["1=minecraft","2=forge"] will reset minecraft and forge config on first load, but will only reset forge if the world has been loaded before with only version 1 defined + versions = [""] + +["File Deleter"] + # This is intended for deleting files for pack updates. This is a last resort! Replace with empty files instead when possible. The file will be deleted every launch if it exists! Specify the path to the file. Comma Separated List. Example: scripts/badscript.zs + files = [""] + # By default Folders are only deleted if they are empty. Set to true to change that. + deleteFoldersWithContent = false + diff --git a/minecraft/config/servercore/config.yml b/minecraft/config/servercore/config.yml new file mode 100644 index 0000000..d42d99b --- /dev/null +++ b/minecraft/config/servercore/config.yml @@ -0,0 +1,288 @@ +# The main configuration file for ServerCore. +# Most of these settings can be reloaded without restarting using /servercore reload. + +# Most miscellaneous feature toggles. +features: + # Stops the server from loading spawn chunks. + disable-spawn-chunks: false + # Prevents lagspikes caused by players moving into unloaded chunks. + prevent-moving-into-unloaded-chunks: false + # The amount of ticks between auto-saves when /save-on is active. + autosave-interval: 6000 + # The fraction that decides the chance of experience orbs being able to merge with each other. (1 = 100%, 40 = 2.5%) + # Note that just like in vanilla, experience orbs will still need to be of the same size to actually merge. + xp-merge-fraction: 40 + # The radius in blocks that experience orbs will merge at. + xp-merge-radius: 0.5 + # The radius in blocks that items will merge at. + item-merge-radius: 0.5 + lobotomize-villagers: + # Makes villagers tick less often if they are stuck in a 1x1 space. + enabled: true + # Decides the interval in between villager ticks when lobotomized. + tick-interval: 20 + + +# Automatically modifies dynamic settings based on the server performance. +dynamic: + # Enables dynamic performance checks. + enabled: true + # The average MSPT to target. + target-mspt: 40 + # The settings that will be decreased when the server is overloaded, in the specified order. + # Removing a setting from the list will disable it. + # ► max = The maximum value the server will increase the setting to. + # ► min = The minimum value the server will decrease the setting to. + # ► increment = The amount the setting will be increased or decreased by. + # ► interval = The amount of seconds between each check to increase or decrease. + dynamic-settings: + - setting: 'CHUNK_TICK_DISTANCE' + max: 10 + min: 2 + increment: 1 + interval: 15 + + - setting: 'MOBCAP_PERCENTAGE' + max: 100 + min: 40 + increment: 10 + interval: 15 + + - setting: 'SIMULATION_DISTANCE' + max: 8 + min: 4 + increment: 1 + interval: 15 + + - setting: 'VIEW_DISTANCE' + max: 10 + min: 6 + increment: 1 + interval: 150 + + +# A special mobcap that only affects the breeding of animals and villagers. +breeding-cap: + # Enables breeding caps. + enabled: true + # The breeding cap for villagers. + # ► limit = The limit of mobs of the same type within range. Setting this to negative will disable the breeding cap. + # ► range = The range it will check for entities of the same type. + villagers: + limit: 24 + range: 64 + + # The breeding cap for animals. + # Note that this cap only checks for animals of the same type. + # If the limit is 32 you can still breed 32 cows and 32 pigs next to each other. + animals: + limit: 24 + range: 48 + + +# Gives more control over mob spawning. +mob-spawning: + # Mobcap settings for zombie reinforcements. + # ► enforce-mobcaps = Whether to enforce mobcaps for this type of mobspawning. + # ► additional-capacity = Additional capacity for this specific mobcap. Decides how much it can spawn over the regular mobcap. + # It is recommended to allow them to spawn a bit over the regular mobcap as they would otherwise never get a chance to spawn. + zombie-reinforcements: + enforce-mobcap: false + additional-capacity: 32 + + # Mobcap settings for zombified piglin spawning from nether portal random ticks. + nether-portal-randomticks: + enforce-mobcap: false + additional-capacity: 32 + + # Mobcap settings for mobs spawned from monster spawners. + monster-spawners: + enforce-mobcap: false + additional-capacity: 32 + + # A list of mob categories with their respective mobcap and spawn interval. + # ► category = The vanilla spawn category. + # ► mobcap = The maximum amount of entities in the same category that can spawn near a player. + # ► spawn-interval = The interval between spawn attempts in ticks. Higher values mean less frequent spawn attempts. + categories: + - category: 'MONSTER' + mobcap: 70 + spawn-interval: 1 + + - category: 'CREATURE' + mobcap: 10 + spawn-interval: 400 + + - category: 'AMBIENT' + mobcap: 15 + spawn-interval: 1 + + - category: 'AXOLOTLS' + mobcap: 5 + spawn-interval: 1 + + - category: 'UNDERGROUND_WATER_CREATURE' + mobcap: 5 + spawn-interval: 1 + + - category: 'WATER_CREATURE' + mobcap: 5 + spawn-interval: 1 + + - category: 'WATER_AMBIENT' + mobcap: 20 + spawn-interval: 1 + + +# Settings for commands and their formatting. +commands: + # Enables the /servercore status command. + status-enabled: true + # Enables the /mobcaps command. + mobcaps-enabled: true + colors: + # The colors used in command feedback. You can use hex codes or minecraft legacy color names. + # The primary color is the most used color in command feedback. + primary: 'dark_aqua' + # The secondary color is used for highlighting important information, like values. + secondary: 'green' + # The tertiary color is mostly used for text in titles. + tertiary: 'aqua' + + +# Activation range can drastically reduce the amount of lag caused by ticking entities. +# It does this by cleverly skipping certain entity ticks based on the distance to players and other factors, like immunity checks. +# Immunity checks determine whether an entity should be ticked even when it's outside the activation range, like for example when it is falling or takes damage. +# Note: while this is a very powerful feature, it can still slow down mobfarms and break very specific technical contraptions. +activation-range: + # Enables activation range. + enabled: true + # Briefly ticks entities newly added to the world for 10 seconds (includes both spawning and loading). + # This gives them a chance to properly immunize when they are spawned if they should be. Can be helpful for mobfarms. + tick-new-entities: true + # Enables vertical range checks. By default, activation ranges only work horizontally. + # This can greatly improve performance on taller worlds, but might break a few very specific ai-based mobfarms. + use-vertical-range: true + # Skips 1/4th of entity ticks whilst not immune. + # This affects entities that are within the activation range, but not immune (for example by falling or being in water). + skip-non-immune: true + # Allows villagers to tick regardless of the activation range when panicking. + villager-tick-panic: true + # The time in seconds that a villager needs to be inactive for before obtaining work immunity (if it has work tasks). + villager-work-immunity-after: 30 + # The amount of ticks an inactive villager will wake up for when it has work immunity. + villager-work-immunity-for: 20 + # A list of entity types that should be excluded from activation range checks. + excluded-entity-types: + - 'minecraft:warden' + - 'minecraft:hopper_minecart' + - 'minecraft:ghast' + # The activation type that will get assigned to any entity that doesn't have a custom activation type. + # ► activation-range = The range an entity is required to be in from a player to be activated. + # ► tick-interval = The interval between 'active' ticks whilst the entity is inactive. Negative values will disable these active ticks. + # ► wakeup-interval = The interval between inactive entity wakeups in seconds. + # ► extra-height-up = Allows entities to be ticked when far above the player when vertical range is in use. + # ► extra-height-down = Allows entities to be ticked when far below the player when vertical range is in use. + default-activation-type: + activation-range: 16 + tick-interval: 20 + wakeup-interval: -1 + extra-height-up: false + extra-height-down: false + + # A list of custom activation types. + # ► name = The name of the activation type. + # ► entity-matcher = A list of conditions to filter entities. Only one of these conditions needs to be met for an entity to match. + # ► If an entity matches multiple activation types, the one highest in the list will be used. The conditions accept the following formats: + # - Entity type matching | Uses the entity type's identifier. | 'minecraft:zombie' matches zombies, but for example not husks or drowned. + # - Typeof class matching | Uses the 'typeof:' prefix. | 'typeof:monster' matches all monsters. + # ► Available typeof classes: mob, monster, raider, neutral, ambient, animal, water_animal, flying_animal, flying_monster, villager, projectile. + custom-activation-types: + - name: 'raider' + activation-range: 48 + tick-interval: 20 + wakeup-interval: 20 + extra-height-up: true + extra-height-down: false + entity-matcher: + - 'typeof:raider' + + - name: 'water' + activation-range: 16 + tick-interval: 20 + wakeup-interval: 60 + extra-height-up: false + extra-height-down: false + entity-matcher: + - 'typeof:water_animal' + + - name: 'villager' + activation-range: 16 + tick-interval: 20 + wakeup-interval: 30 + extra-height-up: false + extra-height-down: false + entity-matcher: + - 'typeof:villager' + + - name: 'zombie' + activation-range: 16 + tick-interval: 20 + wakeup-interval: 20 + extra-height-up: true + extra-height-down: false + entity-matcher: + - 'minecraft:zombie' + - 'minecraft:husk' + + - name: 'monster-below' + activation-range: 32 + tick-interval: 20 + wakeup-interval: 20 + extra-height-up: true + extra-height-down: true + entity-matcher: + - 'minecraft:creeper' + - 'minecraft:slime' + - 'minecraft:magma_cube' + - 'minecraft:hoglin' + + - name: 'flying-monster' + activation-range: 48 + tick-interval: 20 + wakeup-interval: 20 + extra-height-up: true + extra-height-down: false + entity-matcher: + - 'minecraft:ghast' + - 'minecraft:phantom' + + - name: 'monster' + activation-range: 32 + tick-interval: 20 + wakeup-interval: 20 + extra-height-up: true + extra-height-down: false + entity-matcher: + - 'typeof:monster' + + - name: 'animal' + activation-range: 16 + tick-interval: 20 + wakeup-interval: 60 + extra-height-up: false + extra-height-down: false + entity-matcher: + - 'typeof:animal' + - 'typeof:ambient' + + - name: 'creature' + activation-range: 24 + tick-interval: 20 + wakeup-interval: 30 + extra-height-up: false + extra-height-down: false + entity-matcher: + - 'typeof:mob' + + diff --git a/minecraft/config/servercore/optimizations.yml b/minecraft/config/servercore/optimizations.yml new file mode 100644 index 0000000..4417aa8 --- /dev/null +++ b/minecraft/config/servercore/optimizations.yml @@ -0,0 +1,16 @@ +# Allows you to toggle specific optimizations that don't have full vanilla parity. +# These settings will only take effect after server restarts. + +# Prevents many different lagspikes caused by loading chunks synchronously. +# This for example causes maps to only update loaded chunks, which depending on the viewdistance can be a smaller radius than vanilla. +reduce-sync-loads: true +# Can significantly reduce the time spent on chunk iteration by caching ticking chunks every second. +# This is especially useful for servers with a high playercount and / or viewdistance. +# Note: The list of ticking chunks is only updated every second, rather than every tick (but that is very unlikely to matter). +cache-ticking-chunks: true +# Can significantly reduce time spent on mobspawning, but isn't as accurate as vanilla on biome borders. +# This may cause mobs from another biome to spawn a few blocks across a biome border (this does not affect structure spawning!). +fast-biome-lookups: false +# Fluid random ticks, like lava spreading fire, are run twice each game tick. +# Enabling this will cancel the 'duplicate' second fluid tick, but this may cause slight behavior changes. +cancel-duplicate-fluid-ticks: false diff --git a/minecraft/config/servertabinfo-client.toml b/minecraft/config/servertabinfo-client.toml index 3ce1d5c..e08b1bf 100644 --- a/minecraft/config/servertabinfo-client.toml +++ b/minecraft/config/servertabinfo-client.toml @@ -1,6 +1,6 @@ - -#Client settings -[client] - #Replace the vanilla player list - replacePlayerList = true - + +#Client settings +[client] + #Replace the vanilla player list + replacePlayerList = true + diff --git a/minecraft/config/servertabinfo-server.toml b/minecraft/config/servertabinfo-server.toml index a5835ba..d229f31 100644 --- a/minecraft/config/servertabinfo-server.toml +++ b/minecraft/config/servertabinfo-server.toml @@ -1,17 +1,17 @@ - -#General settings -[general] - #List of dimensions not shown on the TPS list - #In the following forms "mod:dimension" or "mod:*" to block all dimension for that mod - #Examples include - # - "minecraft:overworld" - # - "minecraft:the_nether" - # - "minecraft:the_end" - dimensionBlockList = ["servertabinfo:example"] - #How often should the server send tps updates to clients - #Default is 100 ticks - #Range: 1 ~ 6000 - refreshTicks = 100 - #Only ops can see tps information, this is to stop tps hunters - opOnlyMode = false - + +#General settings +[general] + #How often should the server send tps updates to clients + #Default is 100 ticks + #Range: 1 ~ 6000 + refreshTicks = 100 + #Only ops can see tps information, this is to stop tps hunters + opOnlyMode = false + #List of dimensions not shown on the TPS list + #In the following forms "mod:dimension" or "mod:*" to block all dimension for that mod + #Examples include + # - "minecraft:overworld" + # - "minecraft:the_nether" + # - "minecraft:the_end" + dimensionBlockList = ["servertabinfo:example"] + diff --git a/minecraft/config/sfm-client-program-editor.toml b/minecraft/config/sfm-client-program-editor.toml new file mode 100644 index 0000000..03e8989 --- /dev/null +++ b/minecraft/config/sfm-client-program-editor.toml @@ -0,0 +1,5 @@ +showLineNumbers = false +#Allowed Values: OFF, BASIC, ADVANCED +intellisenseLevel = "OFF" +preferredEditor = "sfm:v1" + diff --git a/minecraft/config/sfm-client.toml b/minecraft/config/sfm-client.toml new file mode 100644 index 0000000..25a5432 --- /dev/null +++ b/minecraft/config/sfm-client.toml @@ -0,0 +1,3 @@ +showLabelGunReminderOverlay = true +showNetworkToolReminderOverlay = true + diff --git a/minecraft/config/shetiphiancore-client.toml b/minecraft/config/shetiphiancore-client.toml new file mode 100644 index 0000000..e7147ed --- /dev/null +++ b/minecraft/config/shetiphiancore-client.toml @@ -0,0 +1,15 @@ +#Adjust the default way RGB16 handles dyes +#RYB = blending is used to mix the colors +# > Like mixing paint, the dye will be added to the existing color +# > Sneak-Click to set to dye color +# +#RGB = Direct value manipulation +# > Click to increase, Sneak-Click to decrease +# +#RYB is easier to use but RGB is more precise +#Allowed Values: RGB, RYB +color_blend_mode = "RYB" +#Tool Modes can be changed via Sneak+Scroll and/or Keybinding (default PageUp/Down) +#Allowed Values: KEYBINDING, SNEAK_SCROLL, BOTH +tool_mode_change = "BOTH" + diff --git a/minecraft/config/shetiphiancore.toml b/minecraft/config/shetiphiancore.toml new file mode 100644 index 0000000..9dd89ff --- /dev/null +++ b/minecraft/config/shetiphiancore.toml @@ -0,0 +1,18 @@ + +#Core Edits +[core_edits] + #Modifies entity collision checks to work with thinner blocks + #Unmodified ignores blocks bellow 1/5 (slightly thicker then a lower trap door) + #Modified processes blocks down to 3/32 (slightly thicker then carpets) + # + #If you need to disable this to solve a compatibility issue, please report it to me + #Non-living entities and thinner blocks are already exempt to avoid compatibility issues + enable_thin_block_handler = true + #When enabled carpets on top of scaffolding can be passed through just like snow + enable_carpet_passthrough = true + #When enabled using bonemeal on a stripped log restores the bark + bonemeal_restores_bark = true + #When enabled using bonemeal on grass blocks also generates flowers from mods + #By default Minecraft only picks flowers from its own FlowerFeature list, but when mods add flowers they get added to there own list + bonemeal_flowerfix = true + diff --git a/minecraft/config/shrink-common.toml b/minecraft/config/shrink-common.toml new file mode 100644 index 0000000..14ce9a9 --- /dev/null +++ b/minecraft/config/shrink-common.toml @@ -0,0 +1,17 @@ +#Set to false to disable power requirements for personal shrinking device +enablePowerRequirements = true +#Set the amount of power required to use use the personal shrinking device +setPowerUsage = 5000 +#Set the amount of power the personal shrinking device can store +setShrinkingDeviceCapacity = 100000 +#Set to false to disable mobs being put in bottles +enableMobBottles = true +#Set the max size a player can grow too +#Range: 0.0 ~ 100.0 +maxSize = 10.0 +#Set the min size a player can shrink too +#Range: 0.21 ~ 100.0 +minSize = 0.21 +#Set to false to allow shrinking while in spectator mode +enableShrinkInSpectator = false + diff --git a/minecraft/config/shut_up_gl_error.json5 b/minecraft/config/shut_up_gl_error.json5 new file mode 100644 index 0000000..6f81073 --- /dev/null +++ b/minecraft/config/shut_up_gl_error.json5 @@ -0,0 +1,6 @@ +{ + /* - default: SILENT + - must be one of: SILENT, LOG_ONCE, LOG_ALWAYS + */ + "mode": "SILENT" +} \ No newline at end of file diff --git a/minecraft/config/simple-rpc/server-entries.toml b/minecraft/config/simple-rpc/server-entries.toml new file mode 100644 index 0000000..22a7fc4 --- /dev/null +++ b/minecraft/config/simple-rpc/server-entries.toml @@ -0,0 +1,7 @@ +#Enable/Disable Server Entries overrides +enabled = false +#Internal Version Number. NO TOUCHY! +version = 3 +#Server override entries +entry = [] + diff --git a/minecraft/config/simple-rpc/simple-rpc.bak b/minecraft/config/simple-rpc/simple-rpc.bak new file mode 100644 index 0000000..dae5a72 --- /dev/null +++ b/minecraft/config/simple-rpc/simple-rpc.bak @@ -0,0 +1,360 @@ + +#General Config Section. See https://srpc.fdd-docs.com/introduction/ +[general] + #The Application ID of the Discord App to use + applicationID = "762726289341677668" + #Enable/Disable the mod + enabled = true + #Enable/Disable debugging mode. WARNING: MAY CAUSE LOG SPAM! + debugging = false + #Display the Icon and Pack Name in place of LargeImage from compatible launchers. DOES NOT WORK WITH CUSTOM APPS! ONLY THE DEFAULT ONE! + launcherIntegration = false + #Internal Version Number. NO TOUCHY! + version = 25 + +#The Game Loading event +[init] + #Enable/Disable the Game Loading Event + enabled = true + + #List of RPCs that will be displayed at random + [[init.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Minecraft is loading" + #The second line of text under the app name + state = "Game Starting..." + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Main Menu event +[main_menu] + #Enable/Disable the Main Menu Event + enabled = true + + #List of RPCs that will be displayed at random + [[main_menu.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is currently lazy" + #The second line of text under the app name + state = "Chilling in the menu" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Server List event +[server_list] + #Enable/Disable the Server List Event + enabled = true + + #List of RPCs that will be displayed at random + [[server_list.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is looking for a server" + #The second line of text under the app name + state = "Searching for friends" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Realms Screen event +[realms_list] + #Enable/Disable the Realms Screen Event + enabled = true + + #List of RPCs that will be displayed at random + [[realms_list.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is looking for a Realm" + #The second line of text under the app name + state = "Browsing Realms" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Join Game Event +[join_game] + #Enable/Disable the Join Game Event + enabled = true + + #List of RPCs that will be displayed at random + [[join_game.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is joining a game" + #The second line of text under the app name + state = "Joining Game" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Single Player Event +[single_player] + #Enable/Disable the Single Player Event + enabled = true + + #List of RPCs that will be displayed at random + [[single_player.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Currently In {{world.name}}" + #The second line of text under the app name + state = "Playing lonely mode" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Multi Player Event +[multi_player] + #Enable/Disable the Multi Player Event + enabled = true + + #List of RPCs that will be displayed at random + [[multi_player.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Playing on {{server.name}} with {{server.players.count}} players" + #The second line of text under the app name + state = "Playing online" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Realms Game Event +[realms] + #Enable/Disable the Realms Game Event + enabled = true + + #List of RPCs that will be displayed at random + [[realms.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Playing on {{realm.name}}" + #The second line of text under the app name + state = "Playing on a Realm" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Paused Event +[paused] + #Enable/Disable the Pause Event + enabled = true + + #List of RPCs that will be displayed at random + [[paused.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "In the Pause Menu" + #The second line of text under the app name + state = "Game Paused" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#Fallback event for disabled events +[generic] + + #List of RPCs that will be displayed at random + [[generic.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Playing Minecraft" + #The second line of text under the app name + state = "" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#Custom Config Variables that you can use +[custom] + #Must these variables be parsed along with other variables + enabled = true + #Your custom variables to add + variables = [] + +#Dimension Information Overrides +[dimension_overrides] + #Allows you to override the displayed values for dimensions + enabled = false + + #The Dimensions to override + [[dimension_overrides.dimensions]] + #The name of the Dimension/Biome to override. FORMAT: modid:dimension or modid:biome + name = "overworld" + + #List of RPCs that will be displayed at random + [[dimension_overrides.dimensions.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is in The Overworld" + #The second line of text under the app name + state = "" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["overworld"] + #The text to show when someone hovers over the largeImage + largeImageText = "In the Overworld" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + + [[dimension_overrides.dimensions]] + #The name of the Dimension/Biome to override. FORMAT: modid:dimension or modid:biome + name = "the_nether" + + #List of RPCs that will be displayed at random + [[dimension_overrides.dimensions.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is in The Nether" + #The second line of text under the app name + state = "" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["nether"] + #The text to show when someone hovers over the largeImage + largeImageText = "In the Nether" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + + [[dimension_overrides.dimensions]] + #The name of the Dimension/Biome to override. FORMAT: modid:dimension or modid:biome + name = "the_end" + + #List of RPCs that will be displayed at random + [[dimension_overrides.dimensions.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is in The End" + #The second line of text under the app name + state = "" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["end"] + #The text to show when someone hovers over the largeImage + largeImageText = "In the End" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + diff --git a/minecraft/config/simple-rpc/simple-rpc.toml b/minecraft/config/simple-rpc/simple-rpc.toml new file mode 100644 index 0000000..5c064f7 --- /dev/null +++ b/minecraft/config/simple-rpc/simple-rpc.toml @@ -0,0 +1,364 @@ + +#General Config Section. See https://srpc.fdd-docs.com/introduction/ +[general] + #The Application ID of the Discord App to use + applicationID = "762726289341677668" + #Enable/Disable the mod + enabled = true + #Enable/Disable debugging mode. WARNING: MAY CAUSE LOG SPAM! + debugging = false + #Display the Icon and Pack Name in place of LargeImage from compatible launchers. DOES NOT WORK WITH CUSTOM APPS! ONLY THE DEFAULT ONE! + launcherIntegration = false + #Allow using local image files, as RPC icons + rpcImageServer = false + #The URL of the RPC image server that will be used for local images. Restart required when changed + rpcImageServerUrl = "https://rpcavatar.firstdark.dev" + #Internal Version Number. NO TOUCHY! + version = 26 + +#The Game Loading event +[init] + #Enable/Disable the Game Loading Event + enabled = true + + #List of RPCs that will be displayed at random + [[init.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Minecraft is loading" + #The second line of text under the app name + state = "Game Starting..." + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Main Menu event +[main_menu] + #Enable/Disable the Main Menu Event + enabled = true + + #List of RPCs that will be displayed at random + [[main_menu.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is currently lazy" + #The second line of text under the app name + state = "Chilling in the menu" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Server List event +[server_list] + #Enable/Disable the Server List Event + enabled = true + + #List of RPCs that will be displayed at random + [[server_list.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is looking for a server" + #The second line of text under the app name + state = "Searching for friends" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Realms Screen event +[realms_list] + #Enable/Disable the Realms Screen Event + enabled = true + + #List of RPCs that will be displayed at random + [[realms_list.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is looking for a Realm" + #The second line of text under the app name + state = "Browsing Realms" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Join Game Event +[join_game] + #Enable/Disable the Join Game Event + enabled = true + + #List of RPCs that will be displayed at random + [[join_game.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is joining a game" + #The second line of text under the app name + state = "Joining Game" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Single Player Event +[single_player] + #Enable/Disable the Single Player Event + enabled = true + + #List of RPCs that will be displayed at random + [[single_player.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Currently In {{world.name}}" + #The second line of text under the app name + state = "Playing lonely mode" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Multi Player Event +[multi_player] + #Enable/Disable the Multi Player Event + enabled = true + + #List of RPCs that will be displayed at random + [[multi_player.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Playing on {{server.name}} with {{server.players.count}} players" + #The second line of text under the app name + state = "Playing online" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Realms Game Event +[realms] + #Enable/Disable the Realms Game Event + enabled = true + + #List of RPCs that will be displayed at random + [[realms.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Playing on {{realm.name}}" + #The second line of text under the app name + state = "Playing on a Realm" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#The Paused Event +[paused] + #Enable/Disable the Pause Event + enabled = true + + #List of RPCs that will be displayed at random + [[paused.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "In the Pause Menu" + #The second line of text under the app name + state = "Game Paused" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["{{images.player}}"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{player.name}}" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#Fallback event for disabled events +[generic] + + #List of RPCs that will be displayed at random + [[generic.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "Playing Minecraft" + #The second line of text under the app name + state = "" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["mclogonew"] + #The text to show when someone hovers over the largeImage + largeImageText = "It's Minecraft {{game.version}}, but modded" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + +#Custom Config Variables that you can use +[custom] + #Must these variables be parsed along with other variables + enabled = true + #Your custom variables to add + variables = [] + +#Dimension Information Overrides +[dimension_overrides] + #Allows you to override the displayed values for dimensions + enabled = false + + #The Dimensions to override + [[dimension_overrides.dimensions]] + #The name of the Dimension/Biome to override. FORMAT: modid:dimension or modid:biome + name = "overworld" + + #List of RPCs that will be displayed at random + [[dimension_overrides.dimensions.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is in The Overworld" + #The second line of text under the app name + state = "" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["overworld"] + #The text to show when someone hovers over the largeImage + largeImageText = "In the Overworld" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + + [[dimension_overrides.dimensions]] + #The name of the Dimension/Biome to override. FORMAT: modid:dimension or modid:biome + name = "the_nether" + + #List of RPCs that will be displayed at random + [[dimension_overrides.dimensions.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is in The Nether" + #The second line of text under the app name + state = "" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["nether"] + #The text to show when someone hovers over the largeImage + largeImageText = "In the Nether" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + + [[dimension_overrides.dimensions]] + #The name of the Dimension/Biome to override. FORMAT: modid:dimension or modid:biome + name = "the_end" + + #List of RPCs that will be displayed at random + [[dimension_overrides.dimensions.presence]] + #The Activity type to use for this RPC. Valid types are: PLAYING, STREAMING, LISTENING, WATCHING, CUSTOM, COMPETING + type = "PLAYING" + #The first line of text under the app name + description = "{{player.name}} is in The End" + #The second line of text under the app name + state = "" + #The Asset ID or URLs of images to randomly use for the large image + largeImageKey = ["end"] + #The text to show when someone hovers over the largeImage + largeImageText = "In the End" + #The Asset ID or URLs of images to randomly use for the small image + smallImageKey = ["mclogo"] + #The text to show when someone hovers over the smallImage + smallImageText = "{{game.mods}} mods installed" + #The Twitch or Youtube URL to use when type is set to STREAMING + streamingActivityUrl = "https://twitch.tv/twitch" + #List of buttons (max 2) to show on the RPC + buttons = [] + diff --git a/minecraft/config/simplymore/loot.json5 b/minecraft/config/simplymore/loot.json5 new file mode 100644 index 0000000..9460975 --- /dev/null +++ b/minecraft/config/simplymore/loot.json5 @@ -0,0 +1,45 @@ +{ + "enableLootInVillages": true, + "goldLootWeight": 0.004500000189989805, + "ironLootWeight": 0.004500000189989805, + "diamondLootWeight": 0.003000000189989805, + "netheriteLootWeight": 0.0, + "runicLootWeight": 0.0, + "uniqueLootWeight": 0.0010000000474974513, + "witherUniqueWeight": 0.05, + "enderDragonUniqueWeight": 0.5, + "enableJokeUniqueBossDrops": false, + "enableJokeUniqueChestLoot": true, + "enableGreatSlither": true, + "enableMoltenFlare": true, + "enableGrandfrost": true, + "enableMimicry": true, + "enableGlimmerstep": true, + "enableTheBloodHarvester": true, + "enableMyrmedge": true, + "enableJesterPenetrate": true, + "enableBlackPearl": true, + "enableThePan": true, + "enableTheVesselBreach": true, + "enableBladeOfTheGrotesque": true, + "enableVipersCall": true, + "enableTimekeeper": true, + "enableMatterbane": true, + "enableSmoulderingRuin": true, + "enableStasis": true, + "enableTidebreaker": true, + "enableRuyiJinguBang": true, + "enableRupturedIdol": true, + "enableBoasFang": true, + "enableEarthshatter": true, + "enableSoulForeseer": true, + "enableSerpentineValour": true, + "enableLustrousMoxie": true, + "enableBrassturn": true, + "enableCindergorge": true, + "enableDeathsEyrie": true, + "enablePerforiscus": true, + "enableRevvengine": true, + "enableExedrill": true, + "enableCulterex": true +} \ No newline at end of file diff --git a/minecraft/config/simplymore/mimicry_attributes.json5 b/minecraft/config/simplymore/mimicry_attributes.json5 new file mode 100644 index 0000000..f84c042 --- /dev/null +++ b/minecraft/config/simplymore/mimicry_attributes.json5 @@ -0,0 +1,164 @@ +{ + /* For Generic Options, please look in the unique_effects.json5 + + Damage + */ + "greatKatanaDamageModifier": 1, + "grandswordDamageModifier": 6, + "backhandBladeDamageModifier": -2, + "lanceDamageModifier": 0, + "khopeshDamageModifier": -1, + "daggerDamageModifier": -2, + "quarterstaffDamageModifier": -2, + "pernachDamageModifier": 1, + "greatSpearDamageModifier": 3, + "deerHornsDamageModifier": -1, + "longswordDamageModifier": 0, + "twinbladeDamageModifier": 0, + "rapierDamageModifier": -1, + "katanaDamageModifier": 0, + "saiDamageModifier": -3, + "spearDamageModifier": 0, + "glaiveDamageModifier": 0, + "warglaiveDamageModifier": 0, + "cutlassDamageModifier": 0, + "claymoreDamageModifier": 2, + "greathammerDamageModifier": 4, + "greataxeDamageModifier": 3, + "chakramDamageModifier": -1, + "scytheDamageModifier": 1, + "halberdDamageModifier": 3, + // Swing Speeds + "greatKatanaSwingSpeed": 1.4, + "grandswordSwingSpeed": 0.6, + "backhandBladeSwingSpeed": 2.3, + "lanceSwingSpeed": 1.0, + "khopeshSwingSpeed": 1.9, + "daggerSwingSpeed": 2.2, + "quarterstaffSwingSpeed": 2.0, + "pernachSwingSpeed": 1.3, + "greatSpearSwingSpeed": 1.0, + "deerHornsSwingSpeed": 2.1, + "longswordSwingSpeed": 1.6, + "twinbladeSwingSpeed": 2.0, + "rapierSwingSpeed": 2.2, + "katanaSwingSpeed": 2.0, + "saiSwingSpeed": 2.5, + "spearSwingSpeed": 1.3, + "glaiveSwingSpeed": 1.4, + "warglaiveSwingSpeed": 1.8, + "cutlassSwingSpeed": 2.0, + "claymoreSwingSpeed": 1.2, + "greathammerSwingSpeed": 0.8, + "greataxeSwingSpeed": 0.9, + "chakramSwingSpeed": 1.0, + "scytheSwingSpeed": 1.3, + "halberdSwingSpeed": 1.2, + // Longsword + "disableLongswordVariant": false, + "longswordBaseDamage": 6.0, + "longswordExtraDamagePerTarget": 2.0, + "longswordKnockback": 1.2000000476837158, + // Twinblade + "disableTwinbladeVariant": false, + "twinbladeFirstDamage": 5.0, + "twinbladeSecondDamage": 8.0, + "twinbladeEffectTime": 80, + "twinbladeKnockback": 1.5, + // Rapier + "disableRapierVariant": false, + "rapierDamage": 3.0, + "rapierEffectTime": 60, + // Sai + "disableSaiVariant": false, + "saiDamage": 5.5, + "saiEffectTime": 80, + // Cutlass + "disableCutlassVariant": false, + "cutlassDamage": 6.0, + "cutlassPull": 0.800000011920929, + // Chakram + "disableChakramVariant": false, + "chakramDuration": 60, + // Warglaive + "disableWarglaiveVariant": false, + "warglaiveFirstDamage": 5.0, + "warglaiveSecondDamage": 6.75, + "warglaiveEffectTime": 80, + // Spear + "disableSpearVariant": false, + "spearDamage": 8.0, + "spearFinalStabDamage": 10.0, + "spearEffectTime": 80, + // Glaive + "disableGlaiveVariant": false, + "glaiveDamage": 6.0, + // Claymore + "disableClaymoreVariant": false, + "claymoreDamage": 8.0, + "claymoreEffectTime": 120, + "claymoreKnockback": 1.600000023841858, + // Scythe + "disableScytheVariant": false, + "scytheDamage": 10.0, + "scytheEffectTime": 150, + // Greataxe + "disableGreataxeVariant": false, + "greataxeDamage": 9.0, + "greataxeKnockback": 2.0, + // Greathammer + "disableGreathammerVariant": false, + "greathammerDamage": 7.5, + "greathammerEffectTime": 100, + // Dagger + "disableDaggerVariant": false, + "daggerDamage": 6.0, + "daggerEffectTime": 120, + // Khopesh + "disableKhopeshVariant": false, + "khopeshDamage": 8.0, + "khopeshEffectTime": 80, + // Katana + "disableKatanaVariant": false, + "katanaDamage": 12.0, + // Grandsword + "disableGrandswordVariant": false, + "grandswordDamage": 15.0, + "grandswordEffectTime": 120, + "grandswordKnockback": 2.5, + // Pernach + "disablePernachVariant": false, + "pernachDamage": 5.5, + "pernachEffectTime": 100, + // Lance + "disableLanceVariant": false, + "lanceFirstDamage": 7.0, + "lanceSecondDamage": 9.0, + "lanceEffectTime": 80, + "lanceKnockback": 1.5, + // Great Spear + "disableGreatSpearVariant": false, + "greatSpearSlamDamage": 6.0, + "greatSpearStabDamage": 10.0, + "greatSpearStabKnockback": 1.2999999523162842, + "greatSpearEffectTime": 20, + // Quarterstaff + "disableQuarterstaffVariant": false, + "quarterstaffDamage": 6.0, + // Halberd + "disableHalberdVariant": false, + "halberdDamage": 4.0, + "halberdEffectTime": 180, + // Backhand Blade + "disableBackhandBladeVariant": false, + "backhandBladeDamage": 8.0, + "backhandBladeEffectTime": 100, + // Deer Horns + "disableDeerHornsVariant": false, + "deerHornsDamage": 1.7999999523162842, + "deerHornsEffectTime": 80, + // Great Katana + "disableGreatKatanaVariant": false, + "greatKatanaDamage": 14.0, + "greatKatanaAdditionalDamage": 4.0 +} \ No newline at end of file diff --git a/minecraft/config/simplymore/unique_effects.json5 b/minecraft/config/simplymore/unique_effects.json5 new file mode 100644 index 0000000..40fe76b --- /dev/null +++ b/minecraft/config/simplymore/unique_effects.json5 @@ -0,0 +1,215 @@ +{ + // Black Pearl + "blackPearlCannonballCooldown": 180, + "blackPearlPlunderChance": 10, + // Blade of the Grotesque + "grotesqueSolidifySelfStunTime": 50, + "grotesqueSolidifyAuraStunTime": 50, + "grotesqueAuraRange": 4, + "grotesqueSolidifySelfStunnedArmorBuff": 10, + "grotesqueSolidifyAttackerStunnedArmorBuff": 10, + "grotesqueSolidifyCooldown": 500, + "grotesqueSelfSlow": -0.019999999552965164, + "grotesqueMaxAuraWard": 5.0, + // Boa's Fang + "boasFangSuffocationChance": 50, + "boasFangSuffocationTime": 50, + "boasFangSpitSpeedTime": 80, + "boasFangSpitCooldown": 600, + "boasFangSpitPoisonTime": 80, + "boasFangSpitDamage": 5.0, + "boasFangSpitSelfKnockback": 2.0, + // Earthshatter + "earthshatterArmorCrunchChance": 15, + "earthshatterSlamCooldown": 600, + "earthshatterSlamEffectTime": 160, + // Glimmerstep + "glimmerstepMaxStarlight": 10, + "glimmerstepStarlightChance": 25, + "glimmerstepStarlightMountedChance": 40, + "glimmerstepExplosionDamagePerStarlight": 3.200000047683716, + "glimmerstepBlindTime": 40, + "glimmerstepBaseSpeedFrequency": 200, + "glimmerstepSpeedFrequencyPerStack": 10, + "glimmerstepSpeedTime": 40, + "glimmerstepExplosionRange": 5, + "glimmerstepExplosionCharge": 60, + "glimmerstepExplosionCooldown": 800, + "glimmerstepSelfAndAllyDamagePercentage": 80, + "glimmerstepStarlightTime": 800, + // Grandfrost + "grandfrostChillingChance": 25, + "grandfrostChillingTime": 140, + "grandfrostBlizzardRange": 5, + "grandfrostBlizzardStrength": 3.5, + "grandfrostBlizzardEffectTime": 200, + "grandfrostBlizzardCooldown": 500, + // Great Slither + "slitherPoisonTime": 90, + "slitherVenomTime": 40, + "slitherPoisonChance": 25, + "slitherFangsRange": 7, + "slitherFangsDamage": 4.0, + "slitherFangsVenomTime": 90, + "slitherFangsSlowTime": 35, + "slitherFangsCooldown": 300, + // Lustrous Moxie + "lustrousRadiantMarkChance": 20, + "lustrousRadiantTeleportCooldown": 400, + "lustrousRadiantTeleportStunTime": 30, + "lustrousRadiantTeleportRange": 20, + "lustrousRadiantTeleportAOERange": 5, + "lustrousRadiantTeleportAOEKnockback": 2.0, + "lustrousRadiantTeleportTargetDamage": 15.0, + "lustrousRadiantTeleportAOEDamage": 10.0, + // Matterbane + "matterbaneBeamChance": 20, + "matterbaneBeamRange": 8, + "matterbaneBeamDamage": 6, + "matterbaneRiftCooldown": 1200, + // Mimi-cry + "mimicryTypeCooldown": 400, + "mimicryCooldownBetweenTypes": 60, + "mimicryWindup": 10, + "mimicryDamageModifierFromRunic": 1, + // Molten Flare + "moltenFlareEruptionChance": 20, + "moltenFlareEruptionRadius": 4, + "moltenFlareEruptionRadiusEmpowered": 7, + "moltenFlareExecutingSliceSwingSpeedBonus": 0.6000000238418579, + "moltenFlareExecutingSliceCooldown": 300, + // Ruyi Jingu Bang + "ruyiJinguBangCooldown": 700, + // Myrmedge + "myrmedgeMaxDamagePercentageBuff": 40, + "myrmedgeMaxGrabTime": 100, + "myrmedgeCooldown": 300, + "myrmedgeThrowStrength": 1.600000023841858, + // Serpentine Valor + "serpentinePoisonBoltCooldown": 700, + "serpentinePoisonBoltLifespan": 10, + "serpentinePoisonBoltDamage": 2.0, + "serpentinePoisonVenomTime": 160, + "serpentinePoisonedTargetDamageBuff": 4.0, + // The Pan + "panBonkChance": 30, + "panBonkStrength": 20.0, + // Idols + "idolSpreadAuraChance": 15, + "idolCurseDamageMultiplier": 1.5, + "idolCurseNegativeAdditionsTime": 100, + "idolBlessingHeal": 4.0, + "darksentCooldown": 800, + "holylightCooldown": 800, + // Smoldering Ruin + "smoulderingCooldown": 800, + "smoulderingWitherChance": 25, + "smoulderingWitherTime": 100, + // Soul Foreseer + "foreseerForseenTime": 160, + "foreseerForeseenChance": 30, + "foreseerJudgeTeleportRange": 20, + "foreseerJudgeTeleportNegativeEffectTime": 80, + // Stasis + "stasisLightningCooldown": 700, + "stasisStagnationTime": 80, + "stasisStagnationChance": 20, + "stasisLightningDamage": 16.0, + "stasisLightningWindup": 60, + "stasisLightningRange": 4, + // The Blood Harvester + "harvesterCooldown": 1800, + "harvesterHarvestTime": 300, + "harvesterBleedTime": 150, + "harvesterLifesteal": 0.10000000149011612, + "harvesterHarvestLifesteal": 0.20000000298023224, + // The Vessel Breach + "vesselRageCooldown": 1800, + "vesselRageBleedTime": 100, + "vesselLifesteal": 0.10000000149011612, + "vesselRageLifesteal": 0.1599999964237213, + "vesselRageTime": 200, + "vesselRageStartupDamagePercentage": 0.30000001192092896, + // Tidebreaker + "tidebreakerInsanityTeleportCooldown": 400, + "tidebreakerInsanityCloudChance": 25, + "tidebreakerInsanityCloudDuration": 300, + "tidebreakerInsanityTeleportMaxDistance": 15, + "tidebreakerInsanityTeleportMaxTime": 200, + // Timekeeper + "timekeeperBaseCooldown": 400, + "timekeeperNightActiveSlownessTime": 100, + "timekeeperDayActiveBlindnessTime": 100, + "timekeeperNightPassiveEffectTime": 70, + "timekeeperDayPassiveEffectTime": 70, + "timekeeperNightActiveDamage": 2.0, + "timekeeperDayActiveDamage": 6.0, + "timekeeperOnHitChance": 20, + // Viper's Call + "vipersCallCooldown": 1200, + // Brassturn + "brassturnJetChance": 15, + "brassturnSparkStunDuration": 15, + "brassturnScrapeTime": 5, + "brassturnSparkChance": 25, + // Cindergorge + "cindergorgeThornsChance": 40, + "cindergorgeThornsDamage": 3.0, + "cindergorgeThornsFireDamage": 6.0, + "cindergorgeMaxDuration": 200, + "cindergorgeFireRange": 5, + "cindergorgeFireDamage": 5.0, + "cindergorgeMaxCooldown": 600, + // Death's Eyrie + "deathsEyrieBleedChance": 25, + "deathsEyrieBaseBleedTime": 80, + "deathsEyrieCrowAdditionalBleedTime": 20, + "deathsEyrieCooldown": 550, + "deathsEyrieCrowAttackBleedTime": 120, + "deathsEyrieCrowAttackBlindTime": 20, + "deathsEyrieCrowAttackTimePerCrow": 30, + "deathsEyrieCrowAttackDamage": 2.299999952316284, + "deathsEyrieCrowAttackHeal": 0.30000001192092896, + // Perforiscus + "perforiscusBloomTime": 500, + "perforiscusCooldown": 800, + // Revvengine + "revvenginePhase1Cooldown": 240, + "revvenginePhase2Cooldown": 360, + "revvenginePhase3Cooldown": 440, + "revvenginePhase1MinimumCharge": 10, + "revvenginePhase2MinimumCharge": 40, + "revvenginePhase3MinimumCharge": 80, + "revvengineBleedChance": 20, + "revvengineBleedTime": 80, + "revvenginePhase1Damage": 7, + "revvenginePhase2Damage": 12, + "revvenginePhase2EffectTime": 120, + "revvenginePhase3Damage": 15, + "revvenginePhase3EffectTime": 100, + "revvenginePhase3ExplosionWaitTime": 80, + "revvenginePhase3ExplosionDamage": 10, + "revvengineMaxDamagePercentageBuff": 60, + "revvengineMaxRangePercentageBuff": 50, + // Exedrill + "exedrillCooldown": 250, + "exedrillTrembleChance": 15, + "exedrillTrembleEffectTime": 80, + "exedrillTrembleMountedChance": 30, + "exedrillTrembleHeatAmount": 6, + "exedrillHitHeatAmount": 1, + "exedrillMaxHeat": 25, + "exedrillExplosionDamage": 12.0, + "exedrillRockDamage": 6.0, + "exedrillRockSpeed": 0.4000000059604645, + "exedrillRockStunTime": 14, + "exedrillRocksAmount": 5, + "exedrillEarthquakePushStrength": 1.7999999523162842, + // Culterex + "culterexCooldown": 400, + "culterexBaseDuration": 180, + "culterexExtraDuration": 60, + "culterexExtraDurationChance": 35, + "culterexDurationPerEffectLevel": 60, + "culterexRightClickRange": 30 +} \ No newline at end of file diff --git a/minecraft/config/simplymore/weapon_attributes.json5 b/minecraft/config/simplymore/weapon_attributes.json5 new file mode 100644 index 0000000..fdd7d5f --- /dev/null +++ b/minecraft/config/simplymore/weapon_attributes.json5 @@ -0,0 +1,131 @@ +{ + "ironWeaponDamageModifier": 0, + "goldWeaponDamageModifier": 0, + "diamondWeaponDamageModifier": 0, + "netheriteWeaponDamageModifier": 0, + "runicWeaponDamageModifier": 0, + // Stick N Stone Compat + "woodenWeaponDamageModifier": 0, + "stoneWeaponDamageModifier": 0, + // Gobber Compat + "gobberWeaponDamageModifier": 0, + "gobberNetherWeaponDamageModifier": 0, + "gobberEndWeaponDamageModifier": 0, + "gobberEndWeaponUnbreakable": true, + // Mythic Metals Compat + "adamantiteWeaponDamageModifier": 0, + "aquariumWeaponDamageModifier": 0, + "banglumWeaponDamageModifier": 0, + "carmotWeaponDamageModifier": 0, + "kyberWeaponDamageModifier": 0, + "mythrilWeaponDamageModifier": 0, + "orichalcumWeaponDamageModifier": 0, + "osmiumWeaponDamageModifier": 0, + "prometheumWeaponDamageModifier": 0, + "quadrillumWeaponDamageModifier": 0, + "runiteWeaponDamageModifier": 0, + "starPlatinumWeaponDamageModifier": 0, + "bronzeWeaponDamageModifier": 0, + "steelWeaponDamageModifier": 0, + "palladiumWeaponDamageModifier": 0, + "metallurgiumWeaponDamageModifier": 0, + "celestiumWeaponDamageModifier": 0, + "copperWeaponDamageModifier": 0, + "durasteelWeaponDamageModifier": 0, + "hallowedWeaponDamageModifier": 0, + "legendaryBanglumWeaponDamageModifier": 0, + "stormyxWeaponDamageModifier": 0, + "tidesingerWeaponDamageModifier": 0, + // Weapon Stats + "greatKatanaDamageModifier": 1, + "grandswordDamageModifier": 6, + "backhandBladeDamageModifier": -2, + "lanceDamageModifier": 0, + "lanceFriendshipDamageModifier": 6, + "khopeshDamageModifier": -1, + "daggerDamageModifier": -2, + "quarterstaffDamageModifier": -2, + "pernachDamageModifier": 1, + "greatSpearDamageModifier": 3, + "deerHornsDamageModifier": -1, + "greatKatanaSwingSpeed": 1.4, + "grandswordSwingSpeed": 0.6, + "backhandBladeSwingSpeed": 2.3, + "lanceSwingSpeed": 1.0, + "khopeshSwingSpeed": 1.9, + "daggerSwingSpeed": 2.2, + "quarterstaffSwingSpeed": 2.0, + "pernachSwingSpeed": 1.3, + "greatSpearSwingSpeed": 1.0, + "deerHornsSwingSpeed": 2.1, + "greatSlitherDamage": 11, + "greatSlitherSwingSpeed": 1.4, + "moltenFlareDamage": 13, + "moltenFlareSwingSpeed": 0.6, + "grandfrostDamage": 14, + "grandfrostSwingSpeed": 0.6, + "glimmerstepDamage": 9, + "glimmerstepSwingSpeed": 1.0, + "theBloodHarvesterDamage": 8, + "theBloodHarvesterSwingSpeed": 1.6, + "jesterPenetrateDamage": 6, + "jesterPenetrateSwingSpeed": 1.0, + "myrmedgeDamage": 8, + "myrmedgeSwingSpeed": 1.9, + "blackPearlDamage": 9, + "blackPearlSwingSpeed": 2.0, + "thePanDamage": 4, + "thePanSwingSpeed": 1.5, + "theVesselBreachDamage": 6, + "theVesselBreachSwingSpeed": 2.2, + "bladeOfTheGrotesqueDamage": 12, + "bladeOfTheGrotesqueSwingSpeed": 1.2, + "vipersCallDamage": 6, + "vipersCallSwingSpeed": 1.0, + "timekeeperDamage": 8, + "timekeeperSwingSpeed": 2.0, + "matterbaneDamage": 9, + "matterbaneSwingSpeed": 1.6, + "smoulderingRuinDamage": 7, + "smoulderingRuinSwingSpeed": 2.3, + "stasisDamage": 8, + "stasisSwingSpeed": 2.0, + "tidebreakerDamage": 9, + "tidebreakerSwingSpeed": 2.1, + "ruyiJinguBangDamage": 9, + "ruyiJinguBangSwingSpeed": 2.0, + "rupturedIdolDamage": 10, + "rupturedIdolSwingSpeed": 1.3, + "ascendedIdolDamage": 10, + "ascendedIdolSwingSpeed": 1.3, + "tarnishedIdolDamage": 10, + "tarnishedIdolSwingSpeed": 1.3, + "holylightDamage": 10, + "holylightSwingSpeed": 1.3, + "darksentDamage": 10, + "darksentSwingSpeed": 1.3, + "boasFangDamage": 7, + "boasFangSwingSpeed": 1.8, + "earthshatterDamage": 12, + "earthshatterSwingSpeed": 0.6, + "soulForeseerDamage": 9, + "soulForeseerSwingSpeed": 1.4, + "serpentineValourDamage": 11, + "serpentineValourSwingSpeed": 0.7, + "lustrousMoxieDamage": 10, + "lustrousMoxieSwingspeed": 1.4, + "brassturnDamage": 8, + "brassturnMaxSwingSpeed": 3.8, + "cindergorgeDamage": 11, + "cindergorgeSwingSpeed": 1.3, + "deathsEyrieDamage": 12, + "deathsEyrieSwingSpeed": 0.8, + "perforiscusDamage": 10, + "perforiscusSwingSpeed": 0.7, + "revvengineDamage": 8, + "revvengineSwingSpeed": 2.0, + "exedrillDamage": 9, + "exedrillSwingSpeed": 1.0, + "culterexDamage": 8, + "culterexSwingSpeed": 2.2 +} \ No newline at end of file diff --git a/minecraft/config/simplyswords_extra/backupconfig.json b/minecraft/config/simplyswords_extra/backupconfig.json new file mode 100644 index 0000000..5bfab3a --- /dev/null +++ b/minecraft/config/simplyswords_extra/backupconfig.json @@ -0,0 +1,4 @@ +{ + "regen_simplyswords_config_file": false, + "config_version": 1.56 +} \ No newline at end of file diff --git a/minecraft/config/simplyswords_extra/loot_config.json5 b/minecraft/config/simplyswords_extra/loot_config.json5 new file mode 100644 index 0000000..57736ba --- /dev/null +++ b/minecraft/config/simplyswords_extra/loot_config.json5 @@ -0,0 +1,37 @@ +{ +// --------------------------------------------- LOOT CONFIGURATION ----------------------------------------------------------------- +// This config allows for the tweaking of loot injection for UNIQUE weapons. +// Standard iron > diamond gear, and Runic Tablets, are controlled by the loot modifiers in the general_config, not here. +// ---------------------------------------------------------------------------------------------------------------------------------- +// --------------------------------------------- How does it work? ------------------------------------------------------------------ +// If 'add_weapons_to_loot_tables' is enabled in the simplyswords_main config, Simply Swords will attempt to inject its loot into +// any loot table that contains 'chests' in its filepath. This includes loot tables from other mods. +// Any values provided in this config will override the aforementioned process, acting as both a whitelist, and a blacklist. + +// Each line must be made up of a string containing the namespace, path, and filename, in addition to a float value. +// The float value provided will determine the chance of the loot appearing in the loot table. Where 0.0 is %0, and 1.0 is %100. +// If the float value provided is 0.0 the items will be blacklisted from this loot table and skipped entirely by the loot injection. + +// Items can also be injected into entity loot tables, as seen in the Wither example below. +// ---------------------------------------------------------------------------------------------------------------------------------- + + "minecraft:entities/wither": 0.05, + "minecraft:entities/ender_dragon": 0.5, + "minecraft:chests/ruined_portal": 0.0, + "minecraft:chests/village/village_armorer": 0.0, + "minecraft:chests/village/village_butcher": 0.0, + "minecraft:chests/village/village_cartographer": 0.0, + "minecraft:chests/village/village_desert_house": 0.0, + "minecraft:chests/village/village_fisher": 0.0, + "minecraft:chests/village/village_fletcher": 0.0, + "minecraft:chests/village/village_mason": 0.0, + "minecraft:chests/village/village_plains_house": 0.0, + "minecraft:chests/village/village_savanna_house": 0.0, + "minecraft:chests/village/village_shepard": 0.0, + "minecraft:chests/village/village_snowy_house": 0.0, + "minecraft:chests/village/village_taiga_house": 0.0, + "minecraft:chests/village/village_tannery": 0.0, + "minecraft:chests/village/village_temple": 0.0, + "minecraft:chests/village/village_toolsmith": 0.0, + "minecraft:chests/village/village_weaponsmith": 0.0 +} \ No newline at end of file diff --git a/minecraft/config/simplyswords_main/gem_effects.json5 b/minecraft/config/simplyswords_main/gem_effects.json5 new file mode 100644 index 0000000..79d9f74 --- /dev/null +++ b/minecraft/config/simplyswords_main/gem_effects.json5 @@ -0,0 +1,25 @@ +{ + "enableEcho": true, + "enableBerserk": true, + "enableRadiance": true, + "enableOnslaught": true, + "enableNullification": true, + "enablePrecise": true, + "preciseChance": 30, + "enableMighty": true, + "mightyChance": 30, + "enableStealthy": true, + "stealthyChance": 30, + "enableRenewed": true, + "renewedChance": 30, + "enableAccelerant": true, + "enableLeaping": true, + "leapingChance": 65, + "enableSpellshield": true, + "spellshieldChance": 15, + "enableSpellforged": true, + "enableSoulshock": true, + "enableSpellStandard": true, + "enableWarStandard": true, + "enableDeception": true +} \ No newline at end of file diff --git a/minecraft/config/simplyswords_main/general.json5 b/minecraft/config/simplyswords_main/general.json5 new file mode 100644 index 0000000..ec4bcd5 --- /dev/null +++ b/minecraft/config/simplyswords_main/general.json5 @@ -0,0 +1,9 @@ +{ + "enableWeaponImpactSounds": true, + "weaponImpactSoundsVolume": 0.30000001192092896, + "enableWeaponFootfalls": true, + "enablePassiveParticles": true, + "enableUniqueGemSockets": true, + "compatGobberEndWeaponsUnbreakable": true, + "compatEnableSpellPowerScaling": true +} \ No newline at end of file diff --git a/minecraft/config/simplyswords_main/loot.json5 b/minecraft/config/simplyswords_main/loot.json5 new file mode 100644 index 0000000..f913c54 --- /dev/null +++ b/minecraft/config/simplyswords_main/loot.json5 @@ -0,0 +1,44 @@ +{ + "enableLootDrops": true, + "enableLootInVillages": false, + "enableTheWatcher": true, + "standardLootTableWeight": 0.009999999776482582, + "rareLootTableWeight": 0.004000000189989805, + "runicLootTableWeight": 0.007000000216066837, + "uniqueLootTableWeight": 0.0010000000474974513, + "enableContainedRemnants": true, + "enableWatchingWarglaive": true, + "enableLongswordOfThePlague": true, + "enableSwordOnAStick": true, + "enableBramblethorn": true, + "enableStormsEdge": true, + "enableStormbringer": true, + "enableMjolnir": true, + "enableEmberblade": true, + "enableHearthflame": true, + "enableTwistedBlade": true, + "enableSoulrender": true, + "enableSoulpyre": true, + "enableSoulkeeper": true, + "enableSoulstealer": true, + "enableFrostfall": true, + "enableMoltenEdge": true, + "enableLivyatan": true, + "enableIcewhisper": true, + "enableArcanethyst": true, + "enableThunderbrand": true, + "enableBrimstone": true, + "enableSlumberingLichblade": true, + "enableShadowsting": true, + "enableDormantRelic": true, + "enableWhisperwind": true, + "enableEmberlash": true, + "enableWaxweaver": true, + "enableHiveheart": true, + "enableStarsEdge": true, + "enableWickpiercer": true, + "enableTempest": true, + "enableFlamewind": true, + "enableRibboncleaver": true, + "enableCaelestis": true +} \ No newline at end of file diff --git a/minecraft/config/simplyswords_main/runic_effects.json5 b/minecraft/config/simplyswords_main/runic_effects.json5 new file mode 100644 index 0000000..0e7d9da --- /dev/null +++ b/minecraft/config/simplyswords_main/runic_effects.json5 @@ -0,0 +1,63 @@ +{ + "enableActiveDefence": true, + "enableFloat": true, + "enableGreaterFloat": true, + "enableFreeze": true, + "enableShielding": true, + "enableGreaterShielding": true, + "enableSlow": true, + "enableGreaterSlow": true, + "enableStoneskin": true, + "enableGreaterStoneskin": true, + "enableSwiftness": true, + "enableGreaterSwiftness": true, + "enableTrailblaze": true, + "enableGreaterTrailblaze": true, + "enableWeaken": true, + "enableGreaterWeaken": true, + "enableZephyr": true, + "enableGreaterZephyr": true, + "enableFrostWard": true, + "enableWildfire": true, + "enableUnstable": true, + "enableMomentum": true, + "enableGreaterMomentum": true, + "enableImbued": true, + "enableGreaterImbued": true, + "enablePincushion": true, + "enableGreaterPincushion": true, + "enableWard": true, + "enableImmolate": true, + "swiftnessChance": 15.0, + "swiftnessDuration": 300.0, + "slowChance": 50.0, + "slowDuration": 50.0, + "poisonChance": 15.0, + "poisonDuration": 150.0, + "freezeChance": 15.0, + "freezeDuration": 120.0, + "wildfireChance": 10.0, + "wildfireDuration": 180.0, + "wildfireRadius": 10.0, + "floatChance": 15.0, + "floatDuration": 50.0, + "zephyrChance": 15.0, + "zephyrDuration": 180.0, + "shieldingChance": 15.0, + "shieldingDuration": 120.0, + "stoneskinChance": 15.0, + "stoneskinDuration": 60.0, + "trailblazeChance": 15.0, + "trailblazeDuration": 120.0, + "weakenChance": 15.0, + "weakenDuration": 120.0, + "unstableFrequency": 140.0, + "unstableDuration": 140.0, + "activeDefenceFrequency": 20.0, + "activeDefenceRadius": 5.0, + "frostWardFrequency": 20.0, + "frostWardRadius": 5.0, + "frostWardDuration": 60.0, + "momentumCooldown": 140.0, + "imbuedChance": 15.0 +} \ No newline at end of file diff --git a/minecraft/config/simplyswords_main/status_effects.json5 b/minecraft/config/simplyswords_main/status_effects.json5 new file mode 100644 index 0000000..aa1a9dc --- /dev/null +++ b/minecraft/config/simplyswords_main/status_effects.json5 @@ -0,0 +1,3 @@ +{ + "echoDamage": 2 +} \ No newline at end of file diff --git a/minecraft/config/simplyswords_main/unique_effects.json5 b/minecraft/config/simplyswords_main/unique_effects.json5 new file mode 100644 index 0000000..56bb778 --- /dev/null +++ b/minecraft/config/simplyswords_main/unique_effects.json5 @@ -0,0 +1,176 @@ +{ + "abilityAbsorptionCap": 20.0, + "watcherChance": 5.0, + "watcherRestoreAmount": 0.5, + "watcherRadius": 8.0, + "omenChance": 5.0, + "omenAbsorptionCap": 20.0, + "omenInstantKillThreshold": 0.25, + "stealChance": 25.0, + "stealDuration": 400.0, + "stealInvisDuration": 120.0, + "stealBlindDuration": 200.0, + "stealRadius": 30.0, + "stealSpellScaling": 2.5999999046325684, + "soulMeldChance": 75.0, + "soulMeldDuration": 250.0, + "soulMeldRadius": 5.0, + "soulrendChance": 85.0, + "soulrendDuration": 500.0, + "soulrendDamageMulti": 3.0, + "soulrendHealMulti": 0.5, + "soulrendRadius": 10.0, + "soulrendMaxStacks": 8.0, + "soulrendDamageSpellScaling": 0.4000000059604645, + "ferocityChance": 75.0, + "ferocityDuration": 100.0, + "ferocityMaxStacks": 15.0, + "ferocityStrengthTier": 2.0, + "emberIreChance": 30.0, + "emberIreDuration": 150.0, + "volcanicFuryChance": 25.0, + "volcanicFuryRadius": 3.0, + "volcanicFuryCooldown": 300.0, + "volcanicFuryDamage": 3.0, + "volcanicFurySpellScaling": 1.399999976158142, + "stormChance": 15.0, + "stormRadius": 10.0, + "stormCooldown": 700.0, + "stormFrequency": 10.0, + "stormDuration": 200.0, + "plagueChance": 55.0, + "brimstoneChance": 15.0, + "brambleChance": 45.0, + "soultetherRange": 32.0, + "soultetherRadius": 8.0, + "soultetherDuration": 120.0, + "soultetherIgniteDuration": 120.0, + "soultetherResistanceDuration": 60.0, + "frostFuryCooldown": 380.0, + "frostFuryRadius": 3.0, + "frostFuryDamage": 18.0, + "frostFuryChance": 15.0, + "frostFuryDuration": 80.0, + "frostFurySpellScaling": 1.399999976158142, + "moltenRoarCooldown": 320.0, + "moltenRoarRadius": 5.0, + "moltenRoarKnockbackStrength": 5.0, + "moltenRoarChance": 15.0, + "moltenRoarDuration": 100.0, + "frostShatterRadius": 3.0, + "frostShatterDamage": 18.0, + "frostShatterChance": 15.0, + "frostShatterDuration": 80.0, + "frostShatterSpellScaling": 1.7000000476837158, + "permafrostRadius": 4.0, + "permafrostDamage": 1.0, + "permafrostCooldown": 600.0, + "permafrostDuration": 200.0, + "permafrostSpellScaling": 0.8999999761581421, + "arcaneAssaultRadius": 6.0, + "arcaneAssaultDamage": 1.0, + "arcaneAssaultCooldown": 220.0, + "arcaneAssaultChance": 25.0, + "arcaneAssaultDuration": 120.0, + "arcaneAssaultSpellScaling": 1.399999976158142, + "thunderBlitzRadius": 2.0, + "thunderBlitzDamage": 3.0, + "thunderBlitzCooldown": 250.0, + "thunderBlitzChance": 15.0, + "thunderBlitzSpellScaling": 1.7000000476837158, + "stormJoltCooldown": 100.0, + "stormJoltChance": 15.0, + "soulAnguishRadius": 3.0, + "soulAnguishAbsorptionCap": 8.0, + "soulAnguishDamage": 4.0, + "soulAnguishCooldown": 700.0, + "soulAnguishDuration": 200.0, + "soulAnguishHeal": 0.5, + "soulAnguishRange": 22.0, + "soulAnguishSpellScaling": 1.600000023841858, + "shockDeflectBlockDuration": 35.0, + "shockDeflectDamage": 12.0, + "shockDeflectCooldown": 90.0, + "shockDeflectParryDuration": 10.0, + "shockDeflectSpellScaling": 2.299999952316284, + "shadowmistCooldown": 200.0, + "shadowmistChance": 25.0, + "shadowmistDamageMulti": 0.800000011920929, + "shadowmistBlindDuration": 60.0, + "shadowmistRadius": 4.0, + "abyssalStandardCooldown": 700.0, + "abyssalStandardChance": 15.0, + "abyssalStandardDamage": 3.0, + "abyssalStandardSpellScaling": 1.2000000476837158, + "righteousStandardCooldown": 700.0, + "righteousStandardChance": 15.0, + "righteousStandardDamage": 3.0, + "righteousStandardSpellScaling": 1.100000023841858, + "righteousStandardSpellScalingHeal": 1.2999999523162842, + "fatalFlickerCooldown": 175.0, + "fatalFlickerChance": 15.0, + "fatalFlickerRadius": 3.0, + "fatalFlickerMaxStacks": 99.0, + "fatalFlickerDashVelocity": 3.0, + "smoulderCooldown": 80.0, + "smoulderMaxStacks": 5.0, + "smoulderHeal": 15.0, + "smoulderSpellScaling": 0.4000000059604645, + "waxweaveCooldown": 1200.0, + "waxweaveMaxStacks": 3.0, + "hivemindCooldown": 60.0, + "hivemindDuration": 450.0, + "hivemindDamage": 1.100000023841858, + "celestialSurgeCooldown": 120.0, + "celestialSurgeDuration": 120.0, + "celestialSurgeStacks": 6.0, + "celestialSurgeDamageModifier": 0.4000000059604645, + "celestialSurgeLifestealModifier": 0.10000000149011612, + "flickerFuryCooldown": 220.0, + "flickerFuryDuration": 40.0, + "flickerFuryDamage": 1.0, + "vortexDuration": 1200.0, + "vortexMaxSize": 30.0, + "vortexMaxStacks": 10.0, + "vortexSpellScaling": 0.30000001192092896, + "voidcallerDuration": 250.0, + "voidcallerStartingTickFrequency": 12.0, + "voidcallerDamageModifier": 1.0, + "voidcallerCorruptionFrequency": 60.0, + "voidcallerCorruptionPerTick": 1.0, + "voidcallerCorruptionDuration": 1200.0, + "voidcallerCorruptionMax": 100.0, + "emberstormSpreadCap": 6.0, + "emberstormDamage": 5.0, + "emberstormDetonationDamage": 15.0, + "emberstormCooldown": 980.0, + "emberstormMaxHaste": 10.0, + "emberstormSpellScaling": 0.4000000059604645, + "ribbonwrathCooldown": 40.0, + "ribbonwrathResilienceAmplifier": 1.0, + "ribbonwrathDamageBonusPercent": 0.949999988079071, + "magistormCooldown": 980.0, + "magistormDuration": 400.0, + "magistormRadius": 4.0, + "magistormDamage": 3.0, + "magistormRepairChance": 0.25, + "magistormSpellScaling": 0.5, + "enigmaCooldown": 800.0, + "enigmaDecayRate": 2.0, + "enigmaChaseRadius": 16.0, + "magibladeCooldown": 35.0, + "magibladeSonicDistance": 16.0, + "magibladeDamageModifier": 0.699999988079071, + "magibladeRepelChance": 55.0, + "magibladeRepelRadius": 4.0, + "magislamCooldown": 140.0, + "magislamRadius": 4.0, + "magislamDamageModifier": 2.0, + "magislamMagicChance": 35.0, + "magislamMagicModifier": 0.5, + "astralShiftCooldown": 420.0, + "astralShiftDuration": 100.0, + "astralShiftDamageModifier": 1.0, + "astralShiftDamageMax": 300.0, + "astralShiftChance": 5.0 +} \ No newline at end of file diff --git a/minecraft/config/simplyswords_main/weapon_attributes.json5 b/minecraft/config/simplyswords_main/weapon_attributes.json5 new file mode 100644 index 0000000..db49bb6 --- /dev/null +++ b/minecraft/config/simplyswords_main/weapon_attributes.json5 @@ -0,0 +1,157 @@ +{ + "longsword_positiveDamageModifier": 0.0, + "twinblade_positiveDamageModifier": 0.0, + "rapier_positiveDamageModifier": 0.0, + "katana_positiveDamageModifier": 0.0, + "sai_positiveDamageModifier": 0.0, + "spear_positiveDamageModifier": 0.0, + "glaive_positiveDamageModifier": 0.0, + "warglaive_positiveDamageModifier": 0.0, + "cutlass_positiveDamageModifier": 0.0, + "claymore_positiveDamageModifier": 2.0, + "greataxe_positiveDamageModifier": 3.0, + "greathammer_positiveDamageModifier": 4.0, + "chakram_positiveDamageModifier": 0.0, + "scythe_positiveDamageModifier": 1.0, + "halberd_positiveDamageModifier": 3.0, + "longsword_negativeDamageModifier": 0.0, + "twinblade_negativeDamageModifier": 0.0, + "rapier_negativeDamageModifier": 1.0, + "katana_negativeDamageModifier": 0.0, + "sai_negativeDamageModifier": 3.0, + "spear_negativeDamageModifier": 0.0, + "glaive_negativeDamageModifier": 0.0, + "warglaive_negativeDamageModifier": 0.0, + "cutlass_negativeDamageModifier": 0.0, + "claymore_negativeDamageModifier": 0.0, + "greataxe_negativeDamageModifier": 0.0, + "greathammer_negativeDamageModifier": 0.0, + "chakram_negativeDamageModifier": 1.0, + "scythe_negativeDamageModifier": 0.0, + "halberd_negativeDamageModifier": 0.0, + "iron_damageModifier": 3.0, + "gold_damageModifier": 3.0, + "diamond_damageModifier": 3.0, + "netherite_damageModifier": 3.0, + "runic_damageModifier": 3.0, + "adamantite_damageModifier": 3.0, + "aquarium_damageModifier": 3.0, + "banglum_damageModifier": 3.0, + "carmot_damageModifier": 3.0, + "kyber_damageModifier": 3.0, + "mythril_damageModifier": 3.0, + "orichalcum_damageModifier": 3.0, + "durasteel_damageModifier": 3.0, + "osmium_damageModifier": 3.0, + "prometheum_damageModifier": 3.0, + "quadrillum_damageModifier": 3.0, + "runite_damageModifier": 3.0, + "starPlatinum_damageModifier": 3.0, + "bronze_damageModifier": 3.0, + "copper_damageModifier": 3.0, + "steel_damageModifier": 3.0, + "palladium_damageModifier": 3.0, + "stormyx_damageModifier": 3.0, + "celestium_damageModifier": 3.0, + "metallurgium_damageModifier": 3.0, + "gobber_damageModifier": 1.0, + "gobberNether_damageModifier": 3.0, + "gobberEnd_damageModifier": 6.0, + "longsword_attackSpeed": -2.4000000953674316, + "twinblade_attackSpeed": -2.0, + "rapier_attackSpeed": -1.7999999523162842, + "katana_attackSpeed": -2.0, + "sai_attackSpeed": -1.5, + "spear_attackSpeed": -2.700000047683716, + "glaive_attackSpeed": -2.5999999046325684, + "warglaive_attackSpeed": -2.200000047683716, + "cutlass_attackSpeed": -2.0, + "claymore_attackSpeed": -2.799999952316284, + "greataxe_attackSpeed": -3.0999999046325684, + "greathammer_attackSpeed": -3.200000047683716, + "chakram_attackSpeed": -3.0, + "scythe_attackSpeed": -2.700000047683716, + "halberd_attackSpeed": -2.799999952316284, + "brimstone_damageModifier": 6.0, + "thewatcher_damageModifier": 6.0, + "stormsedge_damageModifier": 3.0, + "stormbringer_damageModifier": 3.0, + "swordonastick_damageModifier": 5.0, + "bramblethorn_damageModifier": 3.0, + "watchingwarglaive_damageModifier": 3.0, + "longswordofplague_damageModifier": 3.0, + "emberblade_damageModifier": 3.0, + "hearthflame_damageModifier": 8.0, + "soulkeeper_damageModifier": 8.0, + "twistedblade_damageModifier": 4.0, + "soulstealer_damageModifier": 0.0, + "soulrender_damageModifier": 4.0, + "mjolnir_damageModifier": 3.0, + "soulpyre_damageModifier": 7.0, + "frostfall_damageModifier": 5.0, + "moltenedge_damageModifier": 4.0, + "livyatan_damageModifier": 4.0, + "icewhisper_damageModifier": 7.0, + "arcanethyst_damageModifier": 7.0, + "thunderbrand_damageModifier": 7.0, + "lichblade_damageModifier": 7.0, + "shadowsting_damageModifier": -2.0, + "sunfire_damageModifier": 3.0, + "harbinger_damageModifier": 3.0, + "whisperwind_damageModifier": 3.0, + "emberlash_damageModifier": 0.0, + "waxweaver_damageModifier": 6.0, + "hiveheart_damageModifier": 7.0, + "starsedge_damageModifier": 3.0, + "wickpiercer_damageModifier": 4.0, + "dreadtide_damageModifier": 3.0, + "tempest_damageModifier": 0.0, + "flamewind_damageModifier": 3.0, + "ribboncleaver_damageModifier": 7.0, + "magiscythe_damageModifier": 4.0, + "enigma_damageModifier": 7.0, + "magispear_damageModifier": 4.0, + "magiblade_damageModifier": 3.0, + "caelestis_damageModifier": 6.0, + "brimstone_attackSpeed": -2.799999952316284, + "thewatcher_attackSpeed": -2.799999952316284, + "stormsedge_attackSpeed": -2.0, + "stormbringer_attackSpeed": -2.4000000953674316, + "swordonastick_attackSpeed": -2.5999999046325684, + "bramblethorn_attackSpeed": -1.7999999523162842, + "watchingwarglaive_attackSpeed": -2.200000047683716, + "longswordofplague_attackSpeed": -2.4000000953674316, + "emberblade_attackSpeed": -2.4000000953674316, + "hearthflame_attackSpeed": -3.200000047683716, + "soulkeeper_attackSpeed": -2.9000000953674316, + "twistedblade_attackSpeed": -2.5999999046325684, + "soulstealer_attackSpeed": -1.5, + "soulrender_attackSpeed": -2.4000000953674316, + "mjolnir_attackSpeed": -3.0, + "soulpyre_attackSpeed": -3.0, + "frostfall_attackSpeed": -2.5, + "moltenedge_attackSpeed": -2.0999999046325684, + "livyatan_attackSpeed": -2.0999999046325684, + "icewhisper_attackSpeed": -2.700000047683716, + "arcanethyst_attackSpeed": -2.700000047683716, + "thunderbrand_attackSpeed": -2.700000047683716, + "lichblade_attackSpeed": -3.0999999046325684, + "shadowsting_attackSpeed": -1.7000000476837158, + "sunfire_attackSpeed": -2.4000000953674316, + "harbinger_attackSpeed": -2.4000000953674316, + "whisperwind_attackSpeed": -2.0, + "emberlash_attackSpeed": -1.5, + "waxweaver_attackSpeed": -2.9000000953674316, + "hiveheart_attackSpeed": -3.0, + "starsedge_attackSpeed": -2.0, + "wickpiercer_attackSpeed": -2.0999999046325684, + "dreadtide_attackSpeed": -2.0, + "tempest_attackSpeed": -2.5, + "flamewind_attackSpeed": -2.5999999046325684, + "ribboncleaver_attackSpeed": -3.200000047683716, + "magiscythe_attackSpeed": -2.4000000953674316, + "enigma_attackSpeed": -3.200000047683716, + "magispear_attackSpeed": -2.5, + "magiblade_attackSpeed": -2.0, + "caelestis_attackSpeed": -2.9000000953674316 +} \ No newline at end of file diff --git a/minecraft/config/skilltree-client.toml b/minecraft/config/skilltree-client.toml new file mode 100644 index 0000000..3410f6a --- /dev/null +++ b/minecraft/config/skilltree-client.toml @@ -0,0 +1,4 @@ +favorite_skills = [] +favorite_color_hex = "#42B0FF" +skill_tree_background_parallax = true + diff --git a/minecraft/config/skilltree-common.toml b/minecraft/config/skilltree-common.toml new file mode 100644 index 0000000..4334561 --- /dev/null +++ b/minecraft/config/skilltree-common.toml @@ -0,0 +1,61 @@ + +["Skill Points"] + #Range: 1 ~ 1000 + "Maximum skill points" = 85 + #Range: > 0 + "First skill point cost" = 15 + #Range: > 0 + "Last skill point cost" = 1400 + #You can set cost for each skill point instead + "Use skill points costs array" = false + #This list's size must be equal to maximum skill points. + "Levelup costs" = [15, 19, 24, 30, 37, 45, 54, 64, 75, 87, 100, 114, 129, 145, 162, 180, 199, 219, 240, 262, 285, 309, 334, 360, 387, 415, 444, 474, 505, 537, 570, 604, 639, 675, 712, 750, 789, 829, 870, 912, 955, 999, 1044, 1090, 1137, 1185, 1234, 1284, 1335, 1387, 1440, 1494, 1549, 1605, 1662, 1720, 1779, 1839, 1900, 1962, 2025, 2089, 2154, 2220, 2287, 2355, 2424, 2494, 2565, 2637, 2710, 2784, 2859, 2935, 3012, 3090, 3169, 3249, 3330, 3412, 3495, 3579, 3664, 3750, 3837] + #Disabling this will remove chat messages when you gain a skill point. + "Show chat messages" = true + #Warning: If you disable this make sure you make alternative way of getting skill points. + "Enable exprerience exchange for skill points" = true + +[Gems] + #Range: 0.0 ~ 1.0 + "Base drop chance" = 0.15 + +[Equipment] + #Range: 0 ~ 4 + "Default Helmets Sockets" = 1 + #Range: 0 ~ 4 + "Default Chestplates Sockets" = 1 + #Range: 0 ~ 4 + "Default Leggings Sockets" = 0 + #Range: 0 ~ 4 + "Default Boots Sockets" = 1 + #Range: 0 ~ 4 + "Default Weapons Sockets" = 1 + #Range: 0 ~ 4 + "Default Shields Sockets" = 1 + #Range: 0 ~ 4 + "Default Rings Sockets" = 1 + #Range: 0 ~ 4 + "Default Necklaces Sockets" = 1 + #You can remove sockets from items here + #Example: Blacklisting specific items: ["minecraft:diamond_hoe", "minecraft:golden_hoe"] + #Example: Blacklisting whole mod: [":*"] + #Example: Blacklisting all items: ["*:*"] + "IDs of items that shouldn't have sockets" = [] + +#You can force items from other mods into equipmentType categories here +["Amnesia Scroll"] + #How much levels (percentage) player lose using amnesia scroll + #Range: 0.0 ~ 1.0 + "Amnesia scroll penalty" = 0.2 + "Drop amnesia scrolls from the Ender Dragon" = true + +[Experience] + #Range: 0.0 ~ 1.0 + "Grindstone experience multiplier" = 0.1 + +[Mixtures] + #Range: 0.0 ~ 2.0 + "Effects duration multiplier" = 1.0 + #Range: 0.0 ~ 2.0 + "Effects strength multiplier" = 1.0 + diff --git a/minecraft/config/skinlayers.json b/minecraft/config/skinlayers.json new file mode 100644 index 0000000..ff84d7a --- /dev/null +++ b/minecraft/config/skinlayers.json @@ -0,0 +1,18 @@ +{ + "enableHat": true, + "enableJacket": true, + "enableLeftSleeve": true, + "enableRightSleeve": true, + "enableLeftPants": true, + "enableRightPants": true, + "baseVoxelSize": 1.15, + "bodyVoxelWidthSize": 1.05, + "headVoxelSize": 1.18, + "renderDistanceLOD": 14, + "enableSkulls": true, + "enableSkullsItems": true, + "skullVoxelSize": 1.1, + "fastRender": true, + "compatibilityMode": false, + "firstPersonPixelScaling": 1.1 +} \ No newline at end of file diff --git a/minecraft/config/smallships-client.toml b/minecraft/config/smallships-client.toml new file mode 100644 index 0000000..b3cbdac --- /dev/null +++ b/minecraft/config/smallships-client.toml @@ -0,0 +1,32 @@ +# This holds the schematic version for internal purposes. DO NOT TOUCH! +schematicVersion = 2 + +# This category holds configs that define ship behaviour. +[Ship] + #Set the speed indication: 0 = km/h, 1 = m/s, 2 = knots, 3 = mph + shipModSpeedUnit = 0 + + #This category holds configs that define general ship behaviour. + [Ship.General] + + #General camera settings for ships. + [Ship.General.Camera] + #Automatically enable third person camera when entering a ship. + shipGeneralCameraAutoThirdPerson = true + + #Zoom camera settings for third person view in ships. + [Ship.General.Camera.Zoom] + #Generally enable the zooming feature. + shipGeneralCameraZoomEnable = true + #Set maximum distance of zoom (value must be smaller than or equal to 50.0). + #Range: 1.0 ~ 50.0 + shipGeneralCameraZoomMax = 20.0 + #Set minimum distance of zoom (value must be bigger than or equal to 1.0). + #Range: 1.0 ~ 50.0 + shipGeneralCameraZoomMin = 5.0 + +# This category holds configs that define general mod settings. +[General] + #Enable smallships creative tab in the creative inventory (only takes effect after restart). + smallshipsItemGroupEnable = false + diff --git a/minecraft/config/smallships-common.toml b/minecraft/config/smallships-common.toml new file mode 100644 index 0000000..973673c --- /dev/null +++ b/minecraft/config/smallships-common.toml @@ -0,0 +1,169 @@ +# This holds the schematic version for internal purposes. DO NOT TOUCH! +schematicVersion = 5 + +# This category holds configs that define ship behaviour. +[Ship] + + #This category holds configs that define general ship behaviour. + [Ship.General] + #The cool-down for sails when increasing or decreasing sail state. + #Range: 0 ~ 1000 + shipGeneralSailCooldown = 30 + #The damage that is delivered to entities on collision with a cruising ship. Set 0 to disable feature. + #Range: 0.0 ~ 100.0 + shipGeneralCollisionDamage = 7.5 + #Should entities be pushed on collision with a cruising ship? + shipGeneralCollisionKnockBack = true + #Should the ship item be dropped when the ship is fully damaged? + shipGeneralDoItemDrop = true + + #General speed modifiers for ships. + [Ship.General.Modifier] + #Maximum speed penalty for a filled container in percent. + #Range: -500.0 ~ 500.0 + shipGeneralContainerModifier = 10.0 + #Speed penalty per cannon in percent. + #Range: -500.0 ~ 500.0 + shipGeneralCannonModifier = 2.5 + #Speed bonus for a paddle ship while paddling in percent. + #Range: -500.0 ~ 500.0 + shipGeneralPaddlingModifier = 35.0 + #Maximum speed bonus and penalty depending on the ship biome type in percent. + #Range: 0.0 ~ 500.0 + shipGeneralBiomeModifier = 20.0 + #Damage reduction per shield in percent. + #Range: -500.0 ~ 500.0 + shipGeneralShieldDamageReduction = 3.0 + #Time in minutes in which sunken ships will despawn. + #Range: 0.0 ~ 600.0 + shipGeneralDespawnTimeSunken = 15.0 + #Entities in this list won't be able to mount a ship, for example: ["minecraft:creeper", "minecraft:sheep", ...] + mountBlackList = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:wither", "minecraft:ghast", "minecraft:warden", "minecraft:ravager", "alexmobs:cachalot_whale"] + #Amount of damage a cannonball does on hit. + #Range: 0.0 ~ 100.0 + shipGeneralCannonDamage = 25.0 + #Amount of destruction a cannonball does when hit the ground. + #Range: 0.0 ~ 100.0 + shipGeneralCannonDestruction = 1.0 + + #This category holds configs that define behaviour of fleeing water animals. + [Ship.General."Fleeing Water Animals"] + #Range: 0.0 ~ 100.0 + waterAnimalFleeRadius = 15.0 + #Range: 0.0 ~ 100.0 + waterAnimalFleeSpeed = 1.5 + #Range: 0.0 ~ 100.0 + waterAnimalFleeDistance = 10.0 + + [Ship.Cog] + + #Default attributes for the Cog. Speed in km/h, Health in default mc health points + [Ship.Cog.Attributes] + #Range: 1.0 ~ 10000.0 + shipAttributeCogMaxHealth = 300.0 + #Range: 0.0 ~ 100.0 + shipAttributeCogMaxSpeed = 30.0 + #Range: 0.0 ~ 100.0 + shipAttributeCogMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeCogMaxRotationSpeed = 4.5 + #Range: 0.0 ~ 100.0 + shipAttributeCogAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeCogRotationAcceleration = 0.7 + + #Default configs for the container of the Cog. + [Ship.Cog.Container] + #Set container size for the Cog (value must be divisible by 9 and bigger than 0). + shipContainerCogContainerSize = 108 + + #Cog specific speed modifiers. + [Ship.Cog.Modifier] + #Specify biome type for the Cog. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierCogBiome = "COLD" + + [Ship.Brigg] + + #Default attributes for the Brigg. Speed in km/h, Health in default mc health points + [Ship.Brigg.Attributes] + #Range: 0.0 ~ 10000.0 + shipAttributeBriggMaxHealth = 450.0 + #Range: 0.0 ~ 100.0 + shipAttributeBriggMaxSpeed = 35.0 + #Range: 0.0 ~ 100.0 + shipAttributeBriggMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeBriggMaxRotationSpeed = 4.0 + #Range: 0.0 ~ 100.0 + shipAttributeBriggAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeBriggRotationAcceleration = 0.55 + + #Default configs for the container of the Brigg. + [Ship.Brigg.Container] + #Set container size for the Brigg (value must be divisible by 9 and bigger than 0). + shipContainerBriggContainerSize = 162 + + #Brigg specific speed modifiers. + [Ship.Brigg.Modifier] + #Specify biome type for the Brigg. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierBriggBiome = "COLD" + + [Ship.Galley] + + #Default attributes for the Galley. Speed in km/h, Health in default mc health points + [Ship.Galley.Attributes] + #Range: 0.0 ~ 10000.0 + shipAttributeGalleyMaxHealth = 200.0 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyMaxSpeed = 30.0 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyMaxRotationSpeed = 5.0 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyRotationAcceleration = 1.0 + + #Default configs for the container of the Galley. + [Ship.Galley.Container] + #Set container size for the Galley (value must be divisible by 9 and bigger than 0). + shipContainerGalleyContainerSize = 54 + + #Galley specific speed modifiers. + [Ship.Galley.Modifier] + #Specify biome type for the Galley. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierGalleyBiome = "WARM" + + [Ship.Drakkar] + + #Default attributes for the Drakkar. Speed in km/h, Health in default mc health points + [Ship.Drakkar.Attributes] + #Range: 0.0 ~ 10000.0 + shipAttributeDrakkarMaxHealth = 200.0 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarMaxSpeed = 30.0 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarMaxRotationSpeed = 5.0 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarRotationAcceleration = 1.0 + + #Default configs for the container of the Drakkar. + [Ship.Drakkar.Container] + #Set container size for the Drakkar (value must be divisible by 9 and bigger than 0). + shipContainerDrakkarContainerSize = 54 + + #Drakkar specific speed modifiers. + [Ship.Drakkar.Modifier] + #Specify biome type for the Drakkar. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierDrakkarBiome = "COLD" + diff --git a/minecraft/config/smarterfarmers-common.toml b/minecraft/config/smarterfarmers-common.toml new file mode 100644 index 0000000..416d0ab --- /dev/null +++ b/minecraft/config/smarterfarmers-common.toml @@ -0,0 +1,12 @@ + +[general] + #If true, villagers will pick up food items from the regardless of mob griefing gamerule. Needed since with mob griefing on they wont be able to breed. + pickup_food_override = true + #If true, villagers will eat food items they pick up. Eating food will heal them + eat_food = true + #Time for a farmer to harvest a crop once it reached its destination + #Range: 1 ~ 1000 + time_to_harvest = 40 + #If true, will render debug info for farmers. Only works in single player + debug_renderer = false + diff --git a/minecraft/config/smoothboot.json b/minecraft/config/smoothboot.json new file mode 100644 index 0000000..ee32868 --- /dev/null +++ b/minecraft/config/smoothboot.json @@ -0,0 +1,14 @@ +{ + "threadCount": { + "bootstrap": 2, + "main": 1 + }, + "threadPriority": { + "game": 8, + "bootstrap": 3, + "main": 5, + "io": 3, + "integratedServer": 8, + "modLoading": 5 + } +} \ No newline at end of file diff --git a/minecraft/config/smoothchunk.json b/minecraft/config/smoothchunk.json new file mode 100644 index 0000000..d39a14a --- /dev/null +++ b/minecraft/config/smoothchunk.json @@ -0,0 +1,18 @@ +{ + "chunkSaveDelay": { + "desc:": "Delay before a chunk is saved to disk, default: 300 seconds", + "chunkSaveDelay": 180 + }, + "chunkUnloadLimit": { + "desc:": "Maximum amount of chunks unloaded per tick, default: 20, vanilla:200", + "chunkUnloadLimit": 25 + }, + "disableProtoSave": { + "desc:": "Disables saving of protochunks(not fully generated chunks) to reduce saving lag. Default: true", + "disableProtoSave": true + }, + "debugLogging": { + "desc:": "Enables debug logging of how many chunks got saved in a tick. default: false", + "debugLogging": false + } +} \ No newline at end of file diff --git a/minecraft/config/snowrealmagic-client.yaml b/minecraft/config/snowrealmagic-client.yaml new file mode 100644 index 0000000..1c62924 --- /dev/null +++ b/minecraft/config/snowrealmagic-client.yaml @@ -0,0 +1,4 @@ +# Use Cloth Config mod for the descriptions. +--- +particleThroughLeaves: true +snowVariants: true diff --git a/minecraft/config/snowrealmagic-common.yaml b/minecraft/config/snowrealmagic-common.yaml new file mode 100644 index 0000000..189706d --- /dev/null +++ b/minecraft/config/snowrealmagic-common.yaml @@ -0,0 +1,32 @@ +# Use Cloth Config mod for the descriptions. +--- +snowGravity: true +snowMakingIce: true +snowAlwaysReplaceable: true +thinnerBoundingBox: true +snowNeverMelt: false +snowSpawnMaxLightLevel: 9 +snowPersistMaxLightLevel: 11 +snowReduceFallDamage: true +sustainGrassIfLayerMoreThanOne: true +sneakSnowball: true +fancySnowOnUpperSlab: true +mobSpawningMaxLayers: 8 +snow-cover: + replaceWorldgenFeature: true + placeSnowOnBlock: true + retainOriginalBlocks: false + placeNaturally: true +accumulation: + naturalMelting: true + snowAndIceMeltInWarmBiomes: false + maxLayers: 8 + accumulatesDuringSnowstorm: true + accumulatesDuringSnowfall: false +integration: + accumulationWinterOnly: false +debug: + weatherTickSlowness: 16 + preventWorldgenLogSpam: true + mobSpawningCommand: false + skipSnowLoggingMushroom: true diff --git a/minecraft/config/snowundertrees-common.toml b/minecraft/config/snowundertrees-common.toml new file mode 100644 index 0000000..ae4bf90 --- /dev/null +++ b/minecraft/config/snowundertrees-common.toml @@ -0,0 +1,8 @@ +#Set this to false to disable snow under trees when first generating chunks. +enable_biome_feature = true +#Set this to false to disable snow under trees when it's snowing. +enable_when_snowing = true +#Add biome IDs here to exempt biomes from being affected by the mod (surrounded by ""). You can find the biome ID of the biome you're currently in on the F3 screen. +#For example, the biome ID of the plains biome looks like this: minecraft:plains +filtered_biomes = [] + diff --git a/minecraft/config/sodiumdynamiclights-client.toml b/minecraft/config/sodiumdynamiclights-client.toml new file mode 100644 index 0000000..f152212 --- /dev/null +++ b/minecraft/config/sodiumdynamiclights-client.toml @@ -0,0 +1,20 @@ + +[sodiumdynamiclights] + #Lighting mode + #Allowed Values: OFF, SLOW, FAST, REALTIME + mode = "FAST" + #Enable entities light source. + entities = false + #Enable first-person player light source. + self = true + #Enable block entities light source. + block_entities = false + #Enables water-sensitive light sources check. This means that water-sensitive items will not light up when submerged in water. + water_sensitive_check = true + #TNT lighting mode. May be off, simple or fancy. + #Allowed Values: OFF, SIMPLE, FANCY + tnt = "OFF" + #Creeper lighting mode. May be off, simple or fancy. + #Allowed Values: OFF, SIMPLE, FANCY + creeper = "OFF" + diff --git a/minecraft/config/sodiumextras-client.toml b/minecraft/config/sodiumextras-client.toml new file mode 100644 index 0000000..b93c54f --- /dev/null +++ b/minecraft/config/sodiumextras-client.toml @@ -0,0 +1,131 @@ + +[embeddiumextras] + + [embeddiumextras.general] + #Set Fullscreen mode + #Borderless let you change between screens more faster and move your mouse across monitors + #Allowed Values: WINDOWED, BORDERLESS, FULLSCREEN + fullscreen = "FULLSCREEN" + #Configure FPS Display mode + #Complete mode gives you min FPS count and average count + #Allowed Values: OFF, SIMPLE, ADVANCED + fpsDisplay = "SIMPLE" + #Configure FPS Display gravity + #Places counter on specified corner of your screen + #Allowed Values: LEFT, CENTER, RIGHT + fpsDisplayGravity = "LEFT" + #Shows GPU and memory usage onto FPS display + #Allowed Values: OFF, ON, GPU, RAM + fpsDisplaySystem = "OFF" + #Configure FPS Display margin + #Give some space between corner and text + #Range: 0 ~ 48 + fpsDisplayMargin = 12 + #Toggle FPS Display shadow + #In case sometimes you can't see the text + fpsDisplayShadow = false + + [embeddiumextras.quality] + #Toggle fog feature + #Fog was a vanilla feature, toggling off may increases performance + fog = true + #Raise clouds + #Modify clouds height perfect for a adaptative world experience + #Range: 0 ~ 512 + cloudsHeight = 192 + #Chunks fade in speed + #This option doesn't affect performance, just changes speed + #Allowed Values: OFF, FAST, SLOW + chunkFadeSpeed = "SLOW" + + [embeddiumextras.quality.darkness] + #Configure Darkness Mode + #Each config changes what is considered 'true darkness' + #Allowed Values: PITCH_BLACK, TOTAL_DARKNESS, DARK, DIM, OFF + mode = "OFF" + #Toggle Darkness on Overworld dimension + enableOnOverworld = true + #Toggle Darkness on Nether dimension + enableOnNether = false + #Configure fog brightness on nether when darkness is enabled + #Range: 0.0 ~ 1.0 + netherFogBright = 0.5 + #Toggle Darkness on End dimension + enableOnEnd = false + #Configure fog brightness on nether when darkness is enabled + #Range: 0.0 ~ 1.0 + endFogBright = 0.5 + #Toggle Darkness default mode for modded dimensions + valueByDefault = false + #List of all dimensions to use True Darkness + #This option overrides 'valueByDefault' state + dimensionWhitelist = [] + #Toggle darkness when dimension has no SkyLight + enableOnNoSkyLight = false + #Disables all bright sources of darkness like moon or fog + #Only affects darkness effect + enableBlockLightOnly = false + #Toggles if moon phases affects darkness in the overworld + affectedByMoonPhase = true + #Configure max moon brightness level with darkness + #Range: 0.0 ~ 1.0 + fullMoonBright = 0.25 + #Configure min moon brightness level with darkness + #Range: 0.0 ~ 1.0 + newMoonBright = 0.0 + + [embeddiumextras.performance] + #Toggles JREI item rendering until searching + #Increases performance a little bit and cleans your screen when you don't want to use it + hideJREI = false + #Toggles Minecraft Fonts shadows + #Depending of the case may increase performance + #Gives a flat style text + fontShadows = true + + [embeddiumextras.performance.distanceCulling] + + [embeddiumextras.performance.distanceCulling.tileEntities] + #Toggles distance culling for Block Entities + #Maybe you use another mod for that :( + enable = true + #Configure horizontal max distance before cull Block entities + #Value is squared, default was 64^2 (or 64x64) + #Range: > 0 + cullingMaxDistanceX = 2304 + #Configure vertical max distance before cull Block entities + #Value is raw + #Range: 0 ~ 512 + cullingMaxDistanceY = 24 + #List of all Block Entities to be ignored by distance culling + #Uses ResourceLocation to identify it + #Example 1: "minecraft:chest" - Ignores chests only + #Example 2: "ae2:*" - ignores all Block entities from Applied Energetics 2 + whitelist = ["waterframes:*"] + + [embeddiumextras.performance.distanceCulling.entities] + #Toggles distance culling for entities + #Maybe you use another mod for that :( + enable = true + #Configure horizontal max distance before cull entities + #Value is squared, default was 64^2 (or 64x64) + #Range: > 0 + cullingMaxDistanceX = 2304 + #Configure vertical max distance before cull entities + #Value is raw + #Range: 0 ~ 512 + cullingMaxDistanceY = 24 + #List of all Entities to be ignored by distance culling + #Uses ResourceLocation to identify it + #Example 1: "minecraft:bat" - Ignores bats only + #Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod + whitelist = ["minecraft:ghast", "minecraft:ender_dragon", "iceandfire:*", "create:*"] + + [embeddiumextras.others] + #Configure if borderless fullscreen option should be attached to F11 or replace vanilla fullscreen + #Allowed Values: ATTACH, REPLACE, OFF + borderlessAttachModeOnF11 = "OFF" + #Toggles fast language reload + #Embeddedt points it maybe cause troubles to JEI, so ¿why not add it as a toggleable option? + fastLanguageReload = true + diff --git a/minecraft/config/solcarrot-client.toml b/minecraft/config/solcarrot-client.toml new file mode 100644 index 0000000..b953c9a --- /dev/null +++ b/minecraft/config/solcarrot-client.toml @@ -0,0 +1,17 @@ + +["milestone celebration"] + #If true, reaching a new milestone plays a ding sound. + shouldPlayMilestoneSounds = true + #If true, trying a new food spawns particles. + shouldSpawnIntermediateParticles = false + #If true, reaching a new milestone spawns particles. + shouldSpawnMilestoneParticles = false + +[miscellaneous] + #If true, foods indicate in their tooltips whether or not they have been eaten. + isFoodTooltipEnabled = true + #Whether the messages notifying you of reaching new milestones should be displayed above the hotbar or in chat. + shouldShowProgressAboveHotbar = true + #If true, the food book also lists foods that you haven't eaten, in addition to the ones you have. + shouldShowUneatenFoods = true + diff --git a/minecraft/config/solonion-client.json b/minecraft/config/solonion-client.json new file mode 100644 index 0000000..d748d3a --- /dev/null +++ b/minecraft/config/solonion-client.json @@ -0,0 +1,6 @@ +{ + "isFoodTooltipEnabled": true, + "showDiversityChangeInTooltip": true, + "showDisabledTooltip": true, + "shouldShowInactiveBenefits": true +} \ No newline at end of file diff --git a/minecraft/config/solonion.json b/minecraft/config/solonion.json new file mode 100644 index 0000000..8ff679f --- /dev/null +++ b/minecraft/config/solonion.json @@ -0,0 +1,64 @@ +{ + "foodItems": { + "entries": [], + "isWhitelist": false + }, + "trackCount": 32, + "resetOnDeath": true, + "limitProgressionToSurvival": false, + "minFoodsToActivate": 0, + "benefits": [ + { + "threshold": 3, + "benefit": "{key:\"minecraft:generic.max_health\",op:0,type:\"att\",val:2.0d}" + }, + { + "threshold": 5, + "benefit": "{key:\"minecraft:strength\",type:\"eff\",val:0.0d}" + }, + { + "threshold": 7, + "benefit": "{key:\"minecraft:regeneration\",type:\"eff\",val:0.0d}" + }, + { + "threshold": 10, + "benefit": "{key:\"minecraft:speed\",type:\"eff\",val:0.0d}" + }, + { + "threshold": 13, + "benefit": "{key:\"minecraft:generic.armor_toughness\",op:0,type:\"att\",val:2.0d}" + }, + { + "threshold": 18, + "benefit": "{key:\"minecraft:strength\",type:\"eff\",val:1.0d}" + }, + { + "threshold": 25, + "benefit": "{key:\"minecraft:generic.max_health\",op:0,type:\"att\",val:4.0d}" + }, + { + "threshold": 31, + "benefit": "{key:\"minecraft:generic.max_health\",op:0,type:\"att\",val:6.0d}" + } + ], + "shouldExcludedCount": true, + "complexityStandardNutrition": 5, + "complexityStandardSaturation": 0.6, + "complexityBenefitEffectModifier": 0.2, + "complexityNeutralEffectModifier": 0, + "complexityHarmEffectModifier": -0.2, + "foodDiversity": [ + { + "ingredient": "{id:\"item\",item:\"minecraft:golden_carrot\"}", + "diversity": 2 + }, + { + "ingredient": "{id:\"item\",item:\"minecraft:golden_apple\"}", + "diversity": 2 + }, + { + "ingredient": "{id:\"item\",item:\"minecraft:enchanted_golden_apple\"}", + "diversity": 5 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/sophisticateditemactions-client.toml b/minecraft/config/sophisticateditemactions-client.toml new file mode 100644 index 0000000..2c40944 --- /dev/null +++ b/minecraft/config/sophisticateditemactions-client.toml @@ -0,0 +1,41 @@ + +#Client-side Settings +[client] + + #Client-only discoverability nudges for highlight, restock and deposit keybind actions + [client.discoveryNudges] + #Master toggle for discovery nudges + enabled = true + #Global cooldown between any two nudges in ticks (default: 2 hours) + #Range: > 0 + globalCooldownTicks = 6000 + #Maximum total number of nudges shown during one world connection session + #Range: > 0 + maxNudgesPerSession = 3 + #Number of storage opens without transfers before showing highlight hint (-1 disables) + #Range: > -1 + highlightActionThreshold = 4 + #Number of storage sessions with transfer from storage to inventory before showing restock hint (-1 disables) + #Range: > -1 + restockActionThreshold = 3 + #Number of storage sessions with transfer from inventory to storage before showing deposit hint (-1 disables) + #Range: > -1 + depositActionThreshold = 3 + #Whether highlight hint can be shown + highlightEnabled = true + #Whether restock hint can be shown + restockEnabled = true + #Whether deposit hint can be shown + depositEnabled = true + #How often to evaluate nudge state in ticks + #Range: > 1 + checkIntervalTicks = 40 + #Logs nudge state transitions to debug log + debugLogging = false + #Cooldown between repeated nudges or successful uses of the same action in ticks (default: 4 hours) + #Range: > 0 + actionCooldownTicks = 288000 + #Maximum successful uses of one action before its nudge stops appearing + #Range: > 0 + maxSuccessfulUsesBeforeSuppressing = 5 + diff --git a/minecraft/config/sophisticatedstorage-client.toml b/minecraft/config/sophisticatedstorage-client.toml new file mode 100644 index 0000000..b6a7b4b --- /dev/null +++ b/minecraft/config/sophisticatedstorage-client.toml @@ -0,0 +1,8 @@ + +#Client-side Settings +[client] + #Determines whether JEI and creative tab will show tinted storage items for iron and higher tiers. Can help with easily removing many of these items from there. + showHigherTierTintedVariants = true + #Determines whether JEI and creative tab will show only one wood variant of each storage item tier. Makes creative tab and JEI lists smaller. + showSingleWoodVariantOnly = false + diff --git a/minecraft/config/sophisticatedstorage-common.toml b/minecraft/config/sophisticatedstorage-common.toml new file mode 100644 index 0000000..2f190cc --- /dev/null +++ b/minecraft/config/sophisticatedstorage-common.toml @@ -0,0 +1,6 @@ + +#Common Settings +[common] + #Determines whether chests / barrels are always dropped as packed with their contents when broken without the need to use packing tape + dropPacked = false + diff --git a/minecraft/config/sosorgans-common.toml b/minecraft/config/sosorgans-common.toml new file mode 100644 index 0000000..c81818f --- /dev/null +++ b/minecraft/config/sosorgans-common.toml @@ -0,0 +1,10 @@ +#Whether to log the dirt block on common setup +logDirtBlock = true +#A magic number +#Range: > 0 +magicNumber = 42 +#What you want the introduction message to be for the magic number +magicNumberIntroduction = "The magic number is... " +#A list of items to log on common setup. +items = ["minecraft:iron_ingot"] + diff --git a/minecraft/config/soulsweapons/soulsweapons.json b/minecraft/config/soulsweapons/soulsweapons.json new file mode 100644 index 0000000..de7f7bc --- /dev/null +++ b/minecraft/config/soulsweapons/soulsweapons.json @@ -0,0 +1,1235 @@ +{ + "inform_player_about_disabled_use": true, + "inform_player_about_no_bound_freyr_sword": true, + "inform_player_about_no_soulbound_thrown_weapon": true, + "inform_player_about_cooldown_effect": true, + "inform_player_about_no_souls_to_collect": true, + "inform_player_about_collected_souls": true, + "inform_player_about_out_of_range": true, + "inform_player_about_disabled_boss_respawning": true, + "disable_weapon_recipes": false, + "disable_gun_recipes": false, + "disable_armor_recipes": false, + "disable_all_enchantments": false, + "disable_enchantment_fast_hands": false, + "disable_enchantment_posture_breaker": false, + "disable_enchantment_stagger": false, + "disable_enchantment_ethereal_ammunition": false, + "disable_enchantment_explosive_rounds": false, + "disable_enchantment_chain_lightning": false, + "disable_enchantment_misfire_curse": false, + "disable_enchantment_blight_carrier": false, + "disable_enchantment_frostsilver": false, + "disable_enchantment_phantom_trace": false, + "disable_enchantment_tether": false, + "disable_enchantment_ricochet": false, + "disable_recipe_bloodthirster": false, + "disable_recipe_bluemoon_greatsword": false, + "disable_recipe_bluemoon_shortsword": false, + "disable_recipe_comet_spear": false, + "disable_recipe_darkin_blade": false, + "disable_recipe_dawnbreaker": false, + "disable_recipe_heap_of_raw_iron": false, + "disable_recipe_dragonslayer_swordspear": false, + "disable_recipe_dragon_staff": false, + "disable_recipe_draugr": false, + "disable_recipe_galeforce": false, + "disable_recipe_rageblade": false, + "disable_recipe_lich_bane": false, + "disable_recipe_moonlight_greatsword": false, + "disable_recipe_moonlight_shortsword": false, + "disable_recipe_nightfall": false, + "disable_recipe_soul_reaper": false, + "disable_recipe_forlorn_scythe": true, + "disable_recipe_whirligig_sawblade": false, + "disable_recipe_withered_wabbajack": false, + "disable_recipe_leviathan_axe": false, + "disable_recipe_skofnung": false, + "disable_recipe_pure_moonlight_greatsword": false, + "disable_recipe_mjolnir": false, + "disable_recipe_sword_of_freyr": false, + "disable_recipe_sting": false, + "disable_recipe_featherlight": false, + "disable_recipe_crucible_sword": false, + "disable_recipe_darkin_scythe": false, + "disable_recipe_kirkhammer": false, + "disable_recipe_ludwigs_holy_blade": false, + "disable_recipe_draupnir_spear": false, + "disable_recipe_holy_moonlight_sword": false, + "disable_recipe_master_sword": false, + "disable_recipe_frostmourne": false, + "disable_recipe_nights_edge": false, + "disable_recipe_empowered_dawnbreaker": false, + "disable_recipe_kraken_slayer_bow": true, + "disable_recipe_kraken_slayer_crossbow": false, + "disable_recipe_darkmoon_longbow": false, + "disable_recipe_translucent_sword": false, + "disable_recipe_translucent_glaive": false, + "disable_recipe_translucent_double_edged_greatsword": false, + "disable_recipe_chungus_staff": true, + "disable_recipe_dark_moon_greatsword": false, + "disable_recipe_glaive_of_hodir": false, + "disable_recipe_excalibur": false, + "disable_recipe_moonveil": false, + "disable_recipe_simons_bowblade": false, + "disable_recipe_dragonbane": false, + "disable_recipe_supernova": false, + "disable_recipe_mehrunes_razor": false, + "disable_recipe_tonitrus": false, + "disable_recipe_bloodlust": false, + "disable_recipe_arkenplate": false, + "disable_recipe_chaos_helmet": false, + "disable_recipe_soul_ingot_helmet": false, + "disable_recipe_soul_ingot_chestplate": false, + "disable_recipe_soul_ingot_leggings": false, + "disable_recipe_soul_ingot_boots": false, + "disable_recipe_soul_robes_helmet": false, + "disable_recipe_soul_robes_chestplate": false, + "disable_recipe_soul_robes_leggings": false, + "disable_recipe_soul_robes_boots": false, + "disable_recipe_forlorn_helmet": false, + "disable_recipe_forlorn_chestplate": false, + "disable_recipe_forlorn_leggings": false, + "disable_recipe_forlorn_boots": false, + "disable_recipe_withered_chest": false, + "disable_recipe_enhanced_arkenplate": false, + "disable_recipe_enhanced_withered_chest": false, + "disable_use_bluemoon_shortsword": false, + "disable_use_bluemoon_greatsword": false, + "disable_use_moonlight_shortsword": false, + "disable_use_moonlight_greatsword": false, + "disable_use_pure_moonlight_greatsword": false, + "disable_use_bloodthirster": false, + "disable_use_darkin_blade": false, + "disable_use_dragon_staff": false, + "disable_use_withered_wabbajack": false, + "disable_use_whirligig_sawblade": false, + "disable_use_dragonslayer_swordspear": false, + "disable_use_rageblade": false, + "disable_use_heap_of_raw_iron": false, + "disable_use_nightfall": false, + "disable_use_comet_spear": false, + "disable_use_lich_bane": false, + "disable_use_galeforce": false, + "disable_use_draugr": false, + "disable_use_dawnbreaker": false, + "disable_use_soul_reaper": false, + "disable_use_forlorn_scythe": false, + "disable_use_leviathan_axe": false, + "disable_use_skofnung": false, + "disable_use_skofnung_stone": false, + "disable_use_mjolnir": false, + "disable_use_sword_of_freyr": false, + "disable_use_featherlight": false, + "disable_use_crucible_sword": false, + "disable_use_darkin_scythe": false, + "disable_use_darkin_scythe_prime": false, + "disable_use_shadow_assassin_scythe": false, + "disable_use_draupnir_spear": false, + "disable_use_holy_moonlight_greatsword": false, + "disable_use_holy_moonlight_sword": false, + "disable_use_frostmourne": false, + "disable_use_master_sword": false, + "disable_use_nights_edge": false, + "disable_use_empowered_dawnbreaker": false, + "disable_use_kraken_slayer_bow": false, + "disable_use_kraken_slayer_crossbow": false, + "disable_use_darkmoon_longbow": false, + "disable_use_hunter_pistol": false, + "disable_use_hunter_blunderbuss": false, + "disable_use_gatling_gun": false, + "disable_use_hunter_cannon": false, + "disable_use_kirkhammer": false, + "disable_use_silver_sword": false, + "disable_use_ludwigs_holy_greatsword": false, + "disable_use_moonstone_ring": false, + "disable_use_chaos_orb": false, + "disable_use_translucent_weapons": false, + "disable_use_chungus_staff": false, + "disable_use_dark_moon_greatsword": false, + "disable_use_glaive_of_hodir": false, + "disable_use_excalibur": false, + "disable_use_moonveil": false, + "disable_use_simons_bowblade": false, + "disable_use_simons_blade": false, + "disable_use_dragonbane": false, + "disable_use_supernova": false, + "disable_use_mehrunes_razor": false, + "disable_use_tonitrus": false, + "disable_use_bloodlust": false, + "disable_use_arkenplate": false, + "disable_use_chaos_crown": false, + "disable_use_chaos_robes": false, + "disable_use_hallowheart": false, + "disable_use_soul_ingot_armor": false, + "disable_use_soul_robes_armor": false, + "disable_use_forlorn_armor": false, + "is_fireproof_bloodthirster": true, + "is_fireproof_bluemoon_greatsword": false, + "is_fireproof_bluemoon_shortsword": false, + "is_fireproof_comet_spear": true, + "is_fireproof_darkin_blade": true, + "is_fireproof_dawnbreaker": true, + "is_fireproof_heap_of_raw_iron": false, + "is_fireproof_dragonslayer_swordspear": true, + "is_fireproof_dragon_staff": true, + "is_fireproof_draugr": true, + "is_fireproof_galeforce": true, + "is_fireproof_rageblade": true, + "is_fireproof_lich_bane": true, + "is_fireproof_moonlight_greatsword": true, + "is_fireproof_moonlight_shortsword": true, + "is_fireproof_moonlight_ring": true, + "is_fireproof_nightfall": true, + "is_fireproof_soul_reaper": true, + "is_fireproof_forlorn_scythe": true, + "is_fireproof_whirligig_sawblade": true, + "is_fireproof_withered_wabbajack": true, + "is_fireproof_leviathan_axe": true, + "is_fireproof_skofnung": true, + "is_fireproof_pure_moonlight_greatsword": true, + "is_fireproof_mjolnir": true, + "is_fireproof_sword_of_freyr": true, + "is_fireproof_sting": false, + "is_fireproof_featherlight": true, + "is_fireproof_crucible_sword": true, + "is_fireproof_darkin_scythe": true, + "is_fireproof_darkin_scythe_prime": true, + "is_fireproof_shadow_assassin_scythe": true, + "is_fireproof_kirkhammer": false, + "is_fireproof_ludwigs_holy_blade": false, + "is_fireproof_silver_sword": false, + "is_fireproof_draupnir_spear": true, + "is_fireproof_holy_moonlight_sword": true, + "is_fireproof_holy_moonlight_greatsword": true, + "is_fireproof_master_sword": true, + "is_fireproof_frostmourne": true, + "is_fireproof_nights_edge": true, + "is_fireproof_empowered_dawnbreaker": true, + "is_fireproof_kraken_slayer_bow": true, + "is_fireproof_kraken_slayer_crossbow": true, + "is_fireproof_darkmoon_longbow": true, + "is_fireproof_translucent_weapons": false, + "is_fireproof_chungus_staff": false, + "is_fireproof_dark_moon_greatsword": true, + "is_fireproof_glaive_of_hodir": true, + "is_fireproof_excalibur": true, + "is_fireproof_moonveil": true, + "is_fireproof_simons_bowblade": false, + "is_fireproof_simons_blade": false, + "is_fireproof_dragonbane": true, + "is_fireproof_supernova": true, + "is_fireproof_mehrunes_razor": true, + "is_fireproof_tonitrus": false, + "is_fireproof_bloodlust": false, + "is_fireproof_blunderbuss": false, + "is_fireproof_gatling_gun": false, + "is_fireproof_hunter_cannon": false, + "is_fireproof_hunter_pistol": false, + "is_fireproof_arkenplate": true, + "is_fireproof_chaos_crown": true, + "is_fireproof_chaos_helmet": true, + "is_fireproof_chaos_robes": false, + "is_fireproof_hallowheart": true, + "is_fireproof_soul_ingot_set": false, + "is_fireproof_soul_robes_set": false, + "is_fireproof_forlorn_set": true, + "chungus_monolith_radius": 32.0, + "can_withered_demon_spawn": true, + "can_moderatly_sized_chungus_spawn": true, + "can_evil_forlorn_spawn": true, + "can_bosses_break_blocks": true, + "chaos_armor_armor_points": [ + 4.0, + 7.0, + 10.0, + 5.0 + ], + "chaos_armor_base_posture_increase": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "chaos_armor_posture_buildup_resistances": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "chaos_armor_bleed_buildup_resistances": [ + 40.0, + 70.0, + 100.0, + 60.0 + ], + "chaos_armor_bleed_damage_resistances": [ + 30.0, + 50.0, + 60.0, + 40.0 + ], + "chaos_set_armor_points": [ + 2.0, + 3.0, + 4.0, + 1.0 + ], + "chaos_set_base_posture_increase": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "chaos_set_posture_buildup_resistances": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "chaos_set_bleed_buildup_resistances": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "chaos_set_bleed_damage_resistances": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "soul_ingot_armor_points": [ + 3.0, + 5.0, + 7.0, + 3.0 + ], + "soul_ingot_base_posture_increase": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "soul_ingot_posture_buildup_resistances": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "soul_ingot_bleed_buildup_resistances": [ + 2.5, + 7.5, + 10.0, + 5.0 + ], + "soul_ingot_bleed_damage_resistances": [ + 2.0, + 4.0, + 6.0, + 3.0 + ], + "soul_robes_armor_points": [ + 2.0, + 3.0, + 4.0, + 3.0 + ], + "soul_robes_base_posture_increase": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "soul_robes_posture_buildup_resistances": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "soul_robes_bleed_buildup_resistances": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "soul_robes_bleed_damage_resistances": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "forlorn_armor_armor_points": [ + 3.0, + 6.0, + 8.0, + 3.0 + ], + "forlorn_armor_base_posture_increase": [ + 10.0, + 20.0, + 35.0, + 15.0 + ], + "forlorn_armor_posture_buildup_resistances": [ + 20.0, + 40.0, + 50.0, + 30.0 + ], + "forlorn_armor_bleed_buildup_resistances": [ + 35.0, + 50.0, + 75.0, + 40.0 + ], + "forlorn_armor_bleed_damage_resistances": [ + 10.0, + 30.0, + 40.0, + 20.0 + ], + "withered_armor_armor_points": [ + 4.0, + 7.0, + 10.0, + 5.0 + ], + "withered_armor_base_posture_increase": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "withered_armor_posture_buildup_resistances": [ + 10.0, + 20.0, + 25.0, + 15.0 + ], + "withered_armor_bleed_buildup_resistances": [ + 15.0, + 30.0, + 40.0, + 25.0 + ], + "withered_armor_bleed_damage_resistances": [ + 0.0, + 0.0, + 0.0, + 0.0 + ], + "chaos_cape_wither_ground": true, + "chaos_crown_luck_given": 1.0, + "chaos_crown_flip_effect_cooldown": 300.0, + "chaos_crown_flip_effect_min_cooldown": 100.0, + "chaos_crown_flip_effect_enchant_reduces_cooldown": false, + "chaos_crown_flip_effect_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "arkenplate_shockwave_cooldown": 200.0, + "arkenplate_shockwave_min_cooldown": 80.0, + "arkenplate_shockwave_enchant_reduces_cooldown": false, + "arkenplate_shockwave_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "arkenplate_shockwave_knockback": 2.0, + "arkenplate_shockwave_damage": 6.0, + "arkenplate_mirror_trigger_percent": 0.5, + "forlorn_set_bonus_range": 6.0, + "forlorn_set_bonus_heal": 2.0, + "withered_chest_strength_trigger_percent_1": 0.5, + "withered_chest_strength_trigger_percent_2": 0.25, + "withered_chest_ability_cooldown": 500.0, + "withered_chest_ability_min_cooldown": 100.0, + "withered_chest_ability_enchant_reduces_cooldown": false, + "withered_chest_ability_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "withered_chest_apply_wither_duration": 100.0, + "withered_chest_apply_wither_amplifier": 0.0, + "withered_chest_apply_fire_seconds": 6.0, + "withered_chest_life_leach_duration": 400.0, + "withered_chest_life_leach_amplifier": 0.0, + "bloodlust_damage": 7.0, + "bloodlust_attack_speed": 1.6, + "bloodlust_bleed_post_hit": 40.0, + "bloodlust_ability_self_damage": 4.0, + "bloodlust_ability_self_bleed": 100.0, + "bloodlust_ability_strength_amp": 1.0, + "bloodlust_ability_bloodthirsty_amp": 0.0, + "bloodlust_bloodloss_in_vicinity_gives_strength_amp": 0.0, + "bloodthirster_damage": 8.0, + "bloodthirster_attack_speed": 1.6, + "bloodthirster_overshields": true, + "lifesteal_item_base_healing": 2.0, + "lifesteal_item_heal_scales": true, + "lifesteal_item_cooldown": 60.0, + "lifesteal_item_min_cooldown": 10.0, + "lifesteal_item_enchant_reduces_cooldown": false, + "lifesteal_item_enchant_reduces_cooldown_ids": [ + "damage" + ], + "bluemoon_greatsword_damage": 8.0, + "bluemoon_greatsword_attack_speed": 1.2, + "bluemoon_greatsword_charge_needed": 8.0, + "bluemoon_greatsword_charge_added_post_hit": 1.0, + "bluemoon_greatsword_projectile_damage": 8.0, + "bluemoon_greatsword_projectile_velocity": 1.5, + "bluemoon_shortsword_damage": 7.0, + "bluemoon_shortsword_attack_speed": 1.6, + "bluemoon_shortsword_projectile_damage": 3.0, + "bluemoon_shortsword_projectile_velocity": 1.5, + "bluemoon_shortsword_projectile_cooldown": 120.0, + "bluemoon_shortsword_projectile_min_cooldown": 10.0, + "bluemoon_shortsword_enchant_reduces_cooldown": false, + "bluemoon_shortsword_enchant_reduces_cooldown_ids": [ + "damage" + ], + "chungus_staff_damage": 9.0, + "chungus_staff_attack_speed": 1.1, + "chungus_staff_ticks_before_explosion": 15.0, + "chungus_staff_use_cooldown": 5.0, + "chungus_staff_ability_cooldown": 2400.0, + "chungus_staff_enchant_reduces_cooldown": true, + "chungus_staff_enchant_reduces_cooldown_ids": [ + "damage" + ], + "comet_spear_damage": 8.0, + "comet_spear_attack_speed": 1.4, + "comet_spear_projectile_damage": 8.0, + "comet_spear_ability_damage": 10.0, + "comet_spear_enchant_reduces_cooldown": true, + "comet_spear_enchant_reduces_cooldown_ids": [ + "damage" + ], + "comet_spear_skyfall_ability_cooldown": 400.0, + "comet_spear_skyfall_ability_min_cooldown": 200.0, + "comet_spear_throw_ability_cooldown": 25.0, + "comet_spear_throw_ability_min_cooldown": 0.0, + "comet_spear_calculated_fall_base_radius": 0.0, + "comet_spear_calculated_fall_height_increase_radius_modifier": 2.0, + "comet_spear_calculated_fall_max_radius": 100.0, + "comet_spear_calculated_fall_max_damage": 100.0, + "comet_spear_calculated_fall_height_increase_damage_modifier": 0.2, + "comet_spear_calculated_fall_target_launch_modifier": 0.0125, + "comet_spear_calculated_fall_target_max_launch_power": 1.1, + "comet_spear_calculated_fall_heal_from_damage_modifier": 0.0, + "crucible_sword_normal_damage": 9.0, + "crucible_sword_attack_speed": 1.6, + "crucible_sword_empowered_damage": 30.0, + "crucible_sword_empowered_cooldown": 300.0, + "crucible_sword_empowered_min_cooldown": 100.0, + "crucible_sword_empowered_cooldown_modifier_in_nether": 0.4, + "crucible_sword_enchant_reduces_cooldown": true, + "crucible_sword_enchant_reduces_cooldown_ids": [ + "damage" + ], + "darkin_blade_damage": 11.0, + "darkin_blade_attack_speed": 1.0, + "darkin_blade_posture_loss": 30.0, + "darkin_blade_ability_damage": 12.0, + "darkin_blade_ability_cooldown": 150.0, + "darkin_blade_ability_min_cooldown": 40.0, + "darkin_blade_ability_enchant_reduces_cooldown": false, + "darkin_blade_ability_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "darkin_blade_calculated_fall_base_radius": 3.0, + "darkin_blade_calculated_fall_height_increase_radius_modifier": 1.75, + "darkin_blade_calculated_fall_target_launch_modifier": 0.04, + "darkin_blade_calculated_fall_target_max_launch_power": 1.25, + "darkin_blade_calculated_fall_max_radius": 100.0, + "darkin_blade_calculated_fall_max_damage": 100.0, + "darkin_blade_calculated_fall_height_increase_damage_modifier": 0.2, + "darkin_blade_calculated_fall_heal_from_damage_modifier": 0.1, + "darkin_scythe_damage": 9.0, + "darkin_scythe_attack_speed": 1.0, + "darkin_scythe_bonus_damage": 3.0, + "darkin_scythe_max_souls": 100.0, + "darkin_scythe_prime_ability_damage": 20.0, + "darkin_scythe_prime_attack_speed": 1.0, + "darkin_scythe_prime_ability_percent_health_damage": 10.0, + "darkin_scythe_prime_ability_cooldown": 400.0, + "darkin_scythe_prime_ability_min_cooldown": 100.0, + "darkin_scythe_prime_ability_enchant_reduces_cooldown": false, + "darkin_scythe_prime_ability_enchant_reduces_cooldown_ids": [ + "damage" + ], + "darkin_scythe_prime_heal_modifier": 0.25, + "darkin_scythe_prime_ticks_before_dismount": 80.0, + "darkmoon_longbow_damage": 9.0, + "darkmoon_longbow_max_velocity": 3.0, + "darkmoon_longbow_pull_time_ticks": 25.0, + "darkmoon_longbow_ability_damage": 13.0, + "darkmoon_longbow_ability_cooldown_ticks": 150.0, + "darkmoon_longbow_ability_min_cooldown_ticks": 60.0, + "darkmoon_longbow_enchant_reduces_cooldown": true, + "darkmoon_longbow_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "darkmoon_longbow_can_apply_arrow_effects": true, + "dark_moon_greatsword_damage": 10.0, + "dark_moon_greatsword_attack_speed": 1.2, + "dark_moon_greatsword_post_hit_permafrost_base_amplifier": 0.0, + "dark_moon_greatsword_post_hit_permafrost_base_duration": 80.0, + "dark_moon_greatsword_frost_moon_base_duration": 400.0, + "dark_moon_greatsword_frost_moon_base_amplifier": 0.0, + "dark_moon_greatsword_frost_moon_cooldown": 700.0, + "dark_moon_greatsword_frost_moon_min_cooldown": 300.0, + "dark_moon_greatsword_projectile_damage": 7.0, + "dark_moon_greatsword_projectile_permafrost_base_amplifier": 0.0, + "dark_moon_greatsword_projectile_permafrost_base_duration": 200.0, + "dark_moon_greatsword_enchant_reduces_cooldown": true, + "dark_moon_greatsword_enchant_reduces_cooldown_ids": [ + "damage" + ], + "dawnbreaker_damage": 8.0, + "dawnbreaker_attack_speed": 1.6, + "dawnbreaker_ability_damage": 10.0, + "dawnbreaker_ability_percent_chance_addition": 0.0, + "dawnbreaker_affect_all_entities": false, + "empowered_dawnbreaker_damage": 10.0, + "empowered_dawnbreaker_attack_speed": 1.2, + "empowered_dawnbreaker_ability_damage": 15.0, + "empowered_dawnbreaker_ability_cooldown": 180.0, + "empowered_dawnbreaker_ability_min_cooldown": 100.0, + "empowered_dawnbreaker_ability_enchant_reduces_cooldown": false, + "empowered_dawnbreaker_ability_enchant_reduces_cooldown_ids": [ + "fire_aspect" + ], + "heap_of_raw_iron_damage": 10.0, + "heap_of_raw_iron_attack_speed": 1.0, + "heap_of_raw_iron_posture_loss": 30.0, + "heap_of_raw_iron_dragons_scourge_bonus": 3.0, + "heap_of_raw_iron_cooldown": 200.0, + "heap_of_raw_iron_min_cooldown": 40.0, + "heap_of_raw_iron_enchant_reduces_cooldown": false, + "heap_of_raw_iron_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "heap_of_raw_iron_calculated_fall_base_radius": 2.5, + "heap_of_raw_iron_calculated_fall_height_increase_radius_modifier": 1.6, + "heap_of_raw_iron_calculated_fall_target_launch_modifier": 0.03, + "heap_of_raw_iron_calculated_fall_target_max_launch_power": 1.1, + "heap_of_raw_iron_calculated_fall_max_radius": 100.0, + "heap_of_raw_iron_calculated_fall_max_damage": 100.0, + "heap_of_raw_iron_calculated_fall_height_increase_damage_modifier": 0.2, + "heap_of_raw_iron_calculated_fall_heal_from_damage_modifier": 0.0, + "dragonbane_damage": 9.0, + "dragonbane_attack_speed": 1.6, + "dragonbane_dragons_scourge_bonus": 20.0, + "dragonbane_chain_lightning_damage_per_level": 6.0, + "dragonbane_chain_lightning_range_per_enchant_level": 2.25, + "dragonbane_chain_lightning_enchant_can_boost": true, + "dragonbane_chain_lightning_boost_enchant": [ + "sweeping" + ], + "dragonslayer_swordspear_damage": 8.0, + "dragonslayer_swordspear_attack_speed": 1.4, + "dragonslayer_swordspear_dragons_scourge_bonus": 2.0, + "dragonslayer_swordspear_rain_bonus_damage": 1.0, + "dragonslayer_swordspear_rain_total_attack_speed": 1.8, + "dragonslayer_swordspear_projectile_damage": 7.0, + "dragonslayer_swordspear_ability_damage": 6.0, + "dragonslayer_swordspear_lightning_amount": 1.0, + "dragonslayer_swordspear_throw_cooldown": 100.0, + "dragonslayer_swordspear_throw_min_cooldown": 20.0, + "dragonslayer_swordspear_ability_cooldown": 300.0, + "dragonslayer_swordspear_ability_min_cooldown": 80.0, + "dragonslayer_swordspear_enchant_reduces_cooldown": true, + "dragonslayer_swordspear_enchant_reduces_cooldown_ids": [ + "damage" + ], + "dragon_staff_damage": 8.0, + "dragon_staff_attack_speed": 1.2, + "dragon_staff_aura_strength": 1.0, + "dragon_staff_vigorous_fog_damage_and_heal": 2.0, + "dragon_staff_vigorous_fog_heal_tamed_entities_owned_by_others": true, + "dragon_staff_cooldown": 100.0, + "dragon_staff_min_cooldown": 10.0, + "dragon_staff_enchant_reduces_cooldown": true, + "dragon_staff_enchant_reduces_cooldown_ids": [ + "damage" + ], + "dragon_staff_use_time": 100.0, + "draugr_damage_at_night": 11.0, + "draugr_attack_speed": 1.6, + "draupnir_spear_damage": 8.0, + "draupnir_spear_attack_speed": 1.4, + "draupnir_spear_projectile_damage": 10.0, + "draupnir_spear_detonate_power": 1.0, + "draupnir_spear_throw_cooldown": 40.0, + "draupnir_spear_throw_min_cooldown": 10.0, + "draupnir_spear_detonate_cooldown": 100.0, + "draupnir_spear_detonate_min_cooldown": 40.0, + "draupnir_spear_summon_spears_cooldown": 300.0, + "draupnir_spear_summon_spears_min_cooldown": 80.0, + "draupnir_spear_enchant_reduces_throw_cooldown": true, + "draupnir_spear_enchant_reduces_throw_cooldown_ids": [ + "damage" + ], + "draupnir_spear_enchant_reduces_ability_cooldown": false, + "draupnir_spear_enchant_reduces_ability_cooldown_ids": [ + "damage" + ], + "draupnir_spear_max_age": 400.0, + "excalibur_damage": 8.0, + "excalibur_attack_speed": 1.6, + "excalibur_life_guard_percent": 0.3, + "excalibur_life_save_chance_percent": 0.3, + "excalibur_life_save_explosion_damage": 10.0, + "excalibur_life_save_explosion_knockback": 1.0, + "excalibur_life_save_stack_damage": 20.0, + "excalibur_sonic_boom_damage": 10.0, + "excalibur_sonic_boom_knockback_power": 0.5, + "excalibur_sonic_boom_cooldown": 100.0, + "excalibur_sonic_boom_min_cooldown": 40.0, + "excalibur_sonic_boom_max_range": 40.0, + "excalibur_sonic_boom_target_search_range": 16.0, + "excalibur_lightbringer_effects_duration": 300.0, + "excalibur_lightbringer_effects_amplifier": 0.0, + "excalibur_enchant_reduces_ability_cooldown": true, + "excalibur_enchant_reduces_ability_cooldown_ids": [ + "damage" + ], + "forlorn_scythe_damage": 11.0, + "forlorn_scythe_attack_speed": 1.0, + "featherlight_damage": 8.0, + "featherlight_attack_speed": 1.6, + "featherlight_posture_loss": 20.0, + "featherlight_calculated_fall_base_radius": 2.5, + "featherlight_calculated_fall_height_increase_radius_modifier": 1.6, + "featherlight_calculated_fall_target_launch_modifier": 0.025, + "featherlight_calculated_fall_target_max_launch_power": 1.05, + "featherlight_calculated_fall_max_radius": 100.0, + "featherlight_calculated_fall_max_damage": 100.0, + "featherlight_calculated_fall_height_increase_damage_modifier": 0.2, + "featherlight_calculated_fall_heal_from_damage_modifier": 0.0, + "frostmourne_damage": 11.0, + "frostmourne_attack_speed": 1.6, + "frostmourne_summoned_allies_cap": 50.0, + "galeforce_damage": 10.0, + "galeforce_max_velocity": 3.0, + "galeforce_pull_time_ticks": 20.0, + "galeforce_speed_effect_duration_ticks": 50.0, + "galeforce_speed_effect_amplifier": 4.0, + "galeforce_dash_cooldown": 80.0, + "galeforce_dash_min_cooldown": 20.0, + "galeforce_dash_enchant_reduces_cooldown": false, + "galeforce_dash_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "galeforce_can_apply_arrow_effects": true, + "glaive_of_hodir_damage": 8.0, + "glaive_of_hodir_attack_speed": 1.3, + "glaive_of_hodir_bonus_damage_per_stack": 0.8, + "glaive_of_hodir_bonus_attack_speed_per_stack": 0.1, + "glaive_of_hodir_max_stacks": 5.0, + "glaive_of_hodir_add_effects_cooldown": 200.0, + "glaive_of_hodir_effects_duration": 220.0, + "glaive_of_hodir_resistance_amplifier": 2.0, + "glaive_of_hodir_absorption_amplifier": 3.0, + "glaive_of_hodir_enchant_reduces_cooldown": true, + "glaive_of_hodir_enchant_reduces_cooldown_ids": [ + "damage" + ], + "glaive_of_hodir_projectile_damage": 7.0, + "glaive_of_hodir_projectile_cooldown": 160.0, + "glaive_of_hodir_projectile_min_cooldown": 80.0, + "glaive_of_hodir_projectile_posture_loss": 125.0, + "rageblade_damage": 7.0, + "rageblade_attack_speed": 1.6, + "rageblade_haste_cap": true, + "holy_moonlight_greatsword_damage": 10.0, + "holy_moonlight_greatsword_attack_speed": 1.2, + "holy_moonlight_greatsword_righteous_undead_bonus_damage": 2.0, + "holy_moonlight_ability_charge_needed": 50.0, + "holy_moonlight_greatsword_charge_added_post_hit": 3.0, + "holy_moonlight_ability_damage": 20.0, + "holy_moonlight_ability_knockup": 0.3, + "holy_moonlight_ability_cooldown": 150.0, + "holy_moonlight_ability_min_cooldown": 60.0, + "holy_moonlight_ability_enchant_reduces_cooldown": true, + "holy_moonlight_ability_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "holy_moonlight_ruptures_amount": 8.0, + "holy_moonlight_sword_damage": 7.0, + "holy_moonlight_sword_attack_speed": 1.6, + "holy_moonlight_sword_righteous_undead_bonus_damage": 2.0, + "holy_moonlight_sword_max_bonus_damage": 2.0, + "holy_moonlight_sword_charge_added_post_hit": 1.0, + "kirkhammer_damage": 9.0, + "kirkhammer_attack_speed": 1.0, + "kirkhammer_posture_loss": 40.0, + "kirkhammer_calculated_fall_base_radius": 2.5, + "kirkhammer_calculated_fall_height_increase_radius_modifier": 1.4, + "kirkhammer_calculated_fall_target_launch_modifier": 0.035, + "kirkhammer_calculated_fall_target_max_launch_power": 1.0, + "kirkhammer_calculated_fall_max_radius": 100.0, + "kirkhammer_calculated_fall_max_damage": 100.0, + "kirkhammer_calculated_fall_height_increase_damage_modifier": 0.15, + "kirkhammer_calculated_fall_heal_from_damage_modifier": 0.0, + "kirkhammer_calculated_fall_base_posture_loss": 25.0, + "kirkhammer_calculated_fall_height_increase_posture_loss_modifier": 3.5, + "kirkhammer_silver_sword_damage": 6.0, + "kirkhammer_silver_sword_attack_speed": 1.6, + "kirkhammer_silver_sword_righteous_undead_bonus_damage": 2.0, + "kraken_slayer_damage": 7.0, + "kraken_slayer_bow_use_animation": "SPEAR", + "kraken_slayer_max_velocity": 3.0, + "kraken_slayer_pull_time_ticks": 10.0, + "kraken_slayer_crossbow_damage": 9.0, + "kraken_slayer_crossbow_max_velocity": 3.15, + "kraken_slayer_crossbow_pull_time_ticks": 15.0, + "kraken_slayer_bonus_true_damage": 4.0, + "kraken_slayer_player_true_damage_taken_modifier": 0.4, + "kraken_slayer_can_apply_arrow_effects": true, + "leviathan_axe_damage": 10.0, + "leviathan_axe_attack_speed": 1.2, + "leviathan_axe_projectile_damage": 7.0, + "leviathan_axe_return_speed": 4.0, + "lich_bane_damage": 7.0, + "lich_bane_attack_speed": 1.6, + "lich_bane_bonus_magic_damage": 2.0, + "ludwigs_holy_greatsword_damage": 8.0, + "ludwigs_holy_greatsword_attack_speed": 1.2, + "ludwigs_holy_greatsword_righteous_undead_bonus_damage": 2.0, + "master_sword_damage": 8.0, + "master_sword_attack_speed": 1.6, + "master_sword_righteous_undead_bonus_damage": 2.0, + "master_sword_projectile_damage": 11.0, + "mehrunes_razor_damage": 6.0, + "mehrunes_razor_attack_speed": 2.0, + "mehrunes_razor_missing_health_modifier": 0.75, + "mehrunes_razor_missing_health_modifier_against_players": 0.5, + "mehrunes_razor_missing_health_max_bonus_damage": 30.0, + "mehrunes_razor_missing_health_trigger_cap": 50.0, + "mehrunes_razor_kill_trigger_cap": 50.0, + "mehrunes_razor_missing_health_chance_under_health_cap": 0.5, + "mehrunes_razor_missing_health_chance_over_health_cap": 0.15, + "mehrunes_razor_kill_chance_under_health_cap": 0.0198, + "mehrunes_razor_kill_chance_over_health_cap": 0.005, + "mehrunes_razor_no_instakill_entity_blacklist": [ + "minecraft:chicken" + ], + "mjolnir_damage": 9.0, + "mjolnir_attack_speed": 1.2, + "mjolnir_rain_bonus_damage": 2.0, + "mjolnir_rain_total_attack_speed": 1.2, + "mjolnir_smash_damage": 8.0, + "mjolnir_projectile_damage": 7.0, + "mjolnir_lightning_smash_cooldown": 200.0, + "mjolnir_lightning_circle_amount": 3.0, + "mjolnir_riptide_cooldown": 300.0, + "mjolnir_ability_min_cooldown": 60.0, + "mjolnir_ability_enchant_reduces_cooldown": false, + "mjolnir_ability_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "mjolnir_return_speed": 4.0, + "moonlight_greatsword_damage": 9.0, + "moonlight_greatsword_attack_speed": 1.2, + "moonlight_greatsword_projectile_damage": 8.0, + "moonlight_greatsword_projectile_velocity": 1.5, + "pure_moonlight_greatsword_damage": 11.0, + "pure_moonlight_greatsword_attack_speed": 1.2, + "pure_moonlight_greatsword_projectile_damage": 9.0, + "moonlight_shortsword_damage": 8.0, + "moonlight_shortsword_attack_speed": 1.6, + "moonlight_shortsword_projectile_damage": 3.0, + "moonlight_shortsword_projectile_velocity": 1.5, + "moonlight_shortsword_projectile_cooldown": 13.0, + "moonstone_ring_projectile_cooldown": 5.0, + "moonstone_ring_lunar_herald_base_amplifier": 0.0, + "moonstone_ring_lunar_herald_duration": 600.0, + "moonveil_damage": 9.0, + "moonveil_attack_speed": 1.6, + "moonveil_wave_damage": 8.0, + "moonveil_vertical_damage": 12.0, + "moonveil_ability_cooldown": 30.0, + "moonveil_bleed_post_hit": 25.0, + "nightfall_damage": 11.0, + "nightfall_attack_speed": 1.0, + "nightfall_posture_loss": 40.0, + "nightfall_ability_damage": 18.0, + "nightfall_ability_shield_power": 2.0, + "nightfall_shield_cooldown": 500.0, + "nightfall_shield_min_cooldown": 60.0, + "nightfall_smash_cooldown": 300.0, + "nightfall_smash_min_cooldown": 80.0, + "nightfall_enchant_reduces_cooldown": true, + "nightfall_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "nightfall_summoned_allies_cap": 50.0, + "nightfall_summon_chance": 0.3, + "nightfall_calculated_fall_base_radius": 3.0, + "nightfall_calculated_fall_height_increase_radius_modifier": 1.5, + "nightfall_calculated_fall_target_launch_modifier": 0.045, + "nightfall_calculated_fall_target_max_launch_power": 1.35, + "nightfall_calculated_fall_max_radius": 100.0, + "nightfall_calculated_fall_max_damage": 100.0, + "nightfall_calculated_fall_height_increase_damage_modifier": 0.2, + "nightfall_calculated_fall_heal_from_damage_modifier": 0.0, + "nights_edge_weapon_damage": 10.0, + "nights_edge_weapon_attack_speed": 1.2, + "nights_edge_ability_cooldown": 120.0, + "nights_edge_ability_min_cooldown": 40.0, + "nights_edge_enchant_reduces_cooldown": false, + "nights_edge_enchant_reduces_cooldown_ids": [ + "damage" + ], + "nights_edge_ability_damage": 10.0, + "shadow_assassin_scythe_shadow_step_bonus_damage": 2.0, + "shadow_assassin_scythe_attack_speed": 1.0, + "shadow_assassin_scythe_shadow_step_ticks": 60.0, + "shadow_assassin_scythe_shadow_step_cooldown": 160.0, + "shadow_assassin_scythe_ability_damage": 40.0, + "shadow_assassin_scythe_ability_cooldown": 300.0, + "shadow_assassin_scythe_ability_min_cooldown": 100.0, + "shadow_assassin_scythe_ability_enchant_reduces_cooldown": false, + "shadow_assassin_scythe_ability_enchant_reduces_cooldown_ids": [ + "damage" + ], + "shadow_assassin_scythe_ticks_before_dismount": 120.0, + "simons_blade_damage": 6.0, + "simons_blade_attack_speed": 1.6, + "simons_blade_righteous_undead_bonus_damage": 3.0, + "simons_bowblade_projectile_damage": 6.0, + "simons_bowblade_max_velocity": 3.0, + "simons_bowblade_pull_time_ticks": 25.0, + "simons_bowblade_projectile_righteous_undead_bonus_damage": 4.0, + "simons_bowblade_projectile_posture_loss": 30.0, + "simons_bowblade_projectile_can_apply_arrow_effects": true, + "skofnung_damage": 8.0, + "skofnung_attack_speed": 1.6, + "skofnung_bonus_damage": 2.0, + "skofnung_disable_heal_duration": 100.0, + "skofnung_stone_additional_empowered_strikes": 8.0, + "skofnung_empowered_bleed_effect_duration": 200.0, + "skofnung_empowered_bleed_effect_amp": 0.0, + "skofnung_empowered_bleed_post_hit": 60.0, + "soul_reaper_damage": 11.0, + "soul_reaper_attack_speed": 1.0, + "soul_reaper_summoned_allies_cap": 50.0, + "sting_damage": 6.0, + "sting_attack_speed": 1.6, + "sting_bonus_arthropod_damage": 4.0, + "supernova_damage": 11.0, + "supernova_attack_speed": 1.0, + "supernova_posture_loss": 35.0, + "supernova_firehit_chance": 0.5, + "supernova_firehit_duration_seconds": 5.0, + "supernova_firethorns_damage": 4.0, + "supernova_firethorns_fire_seconds": 2.0, + "supernova_firethorns_chance": 0.4, + "supernova_armor_breaker_bonus_stack_damage": 4.0, + "supernova_flame_pillar_damage": 10.0, + "supernova_ability_flame_pillar_amount": 5.0, + "supernova_molten_metal_shield_damage": 100.0, + "supernova_molten_metal_fire_seconds": 4.0, + "supernova_molten_metal_max_age_ticks": 160.0, + "supernova_molten_metal_damage": 6.0, + "supernova_molten_metal_radius": 3.0, + "supernova_ability_cooldown": 180.0, + "supernova_ability_min_cooldown": 40.0, + "supernova_ability_enchant_reduces_cooldown": false, + "supernova_ability_enchant_reduces_cooldown_ids": [ + "unbreaking" + ], + "supernova_calculated_fall_base_radius": 1.0, + "supernova_calculated_fall_height_increase_radius_modifier": 1.25, + "supernova_calculated_fall_target_launch_modifier": 0.03, + "supernova_calculated_fall_target_max_launch_power": 1.25, + "supernova_calculated_fall_max_radius": 100.0, + "supernova_calculated_fall_max_damage": 100.0, + "supernova_calculated_fall_height_increase_damage_modifier": 0.1, + "supernova_calculated_fall_heal_from_damage_modifier": 0.0, + "supernova_calculated_fall_max_flame_pillar_ripples": 10.0, + "supernova_calculated_fall_height_increase_ripples_modifier": 0.16, + "sword_of_freyr_damage": 7.0, + "sword_of_freyr_attack_speed": 1.6, + "sword_of_freyr_friendly_fire": true, + "sword_of_freyr_health": 50.0, + "sword_of_freyr_armor": 10.0, + "tonitrus_damage": 6.0, + "tonitrus_attack_speed": 1.4, + "tonitrus_stormveil_effect_lightning_damage_heal": 2.0, + "tonitrus_stormveil_effect_duration": 400.0, + "tonitrus_stormveil_effect_base_amp": 0.0, + "tonitrus_stormveil_effect_amp_per_sharpness_enchant_ceiled": 0.8, + "tonitrus_stormveil_chain_lightning_damage_per_amp": 3.0, + "tonitrus_stormveil_chain_lightning_range_per_amp": 2.0, + "tonitrus_stormveil_effect_thorns_chance": 0.5, + "tonitrus_stormveil_effect_thorns_base_damage": 2.0, + "tonitrus_stormveil_effect_thorns_damage_per_amp_level": 3.0, + "tonitrus_ability_cooldown": 80.0, + "tonitrus_ability_max_cooldown": 10.0, + "tonitrus_ability_enchant_reduces_cooldown": false, + "tonitrus_ability_enchant_reduces_cooldown_ids": [], + "translucent_sword_damage": 6.0, + "translucent_sword_attack_speed": 1.6, + "translucent_glaive_damage": 7.0, + "translucent_glaive_attack_speed": 1.4, + "translucent_double_edged_greatsword_damage": 8.0, + "translucent_double_edged_greatsword_attack_speed": 1.2, + "whirligig_sawblade_damage": 8.0, + "whirligig_sawblade_attack_speed": 1.6, + "whirligig_sawblade_ability_damage": 5.0, + "whirligig_sawblade_bleed_added": 25.0, + "whirligig_sawblade_bleed_effect_duration": 160.0, + "whirligig_sawblade_bleed_effect_amp": 0.0, + "whirligig_sawblade_cooldown": 100.0, + "whirligig_sawblade_min_cooldown": 10.0, + "whirligig_sawblade_enchant_reduces_cooldown": true, + "whirligig_sawblade_enchant_reduces_cooldown_ids": [ + "damage" + ], + "whirligig_sawblade_use_time": 100.0, + "withered_wabbajack_damage": 8.0, + "withered_wabbajack_attack_speed": 1.2, + "calculated_fall_hits_immune_entities": false, + "ultra_heavy_haste_when_strength": true, + "ultra_heavy_disable_offhand_when_held": false, + "ultra_heavy_disables_shields": true, + "ultra_heavy_posture_loss_modifier_when_stagger_enchant": 0.9, + "prioritize_off_hand_shield_over_weapon": false, + "disable_posture_mechanic_for_all_mobs": false, + "base_posture_unit": 120.0, + "base_posture_buildup_resistance_unless_overridden": 0.0, + "posture_loss_reduction_amount": 1.0, + "posture_loss_reduction_interval": 8.0, + "posture_break_damage_per_amp": 6.0, + "posture_break_player_damage_per_amp": 2.0, + "posture_break_percent_health_damage": 0.05, + "disable_bleed_mechanic_for_all_mobs": false, + "max_bleed": 200.0, + "base_bleed_buildup_resistance_unless_overridden": 0.0, + "base_bleed_damage_resistance_unless_overridden": 0.0, + "bleed_reduction_amount": 1.0, + "bleed_reduction_interval": 10.0, + "bleed_base_damage": 6.0, + "bleed_percent_health_damage": 0.1, + "bleed_effect_increase_per_amp": 6.0, + "bleed_effect_base_increase": 4.0, + "bleed_post_hit_bloodthirsty_effect_increase_mod": 0.75, + "blight_carrier_enchant_max_level": 2.0, + "blight_carrier_enchant_blight_duration": 160.0, + "blight_carrier_enchant_blight_per_level": 2.0, + "chain_lightning_enchant_max_level": 3.0, + "chain_lightning_enchant_damage_mod_per_level": 0.7, + "chain_lightning_enchant_range_per_level": 2.25, + "explosive_rounds_enchant_max_level": 3.0, + "explosive_rounds_enchant_destroys_blocks": false, + "fast_hands_enchant_max_level": 3.0, + "frostsilver_enchant_max_level": 2.0, + "frostsilver_enchant_permafrost_per_level": 4.0, + "frostsilver_enchant_permafrost_duration": 100.0, + "misfire_curse_enchant_trigger_chance": 0.3, + "phantom_trace_enchant_max_level": 3.0, + "phantom_trace_enchant_phantom_projectile_damage_mod": 0.5, + "posture_breaker_enchant_max_level": 3.0, + "ricochet_enchant_max_level": 3.0, + "ricochet_enchant_bounce_per_level": 1.0, + "stagger_enchant_max_level": 3.0, + "stagger_enchant_posture_loss_applied_per_level": 5.0, + "stagger_enchant_posture_loss_on_player_modifier": 1.0, + "tether_enchant_max_level": 2.0, + "tether_enchant_drag_mod": 1.0, + "tether_enchant_min_activation_range_per_level": 3.0, + "enable_shield_parry": true, + "shield_parry_cooldown": 40.0, + "shield_parry_max_animation_frames": 10.0, + "shield_parry_frames": 3.0, + "chungus_tonic_can_use": true, + "chungus_tonic_ticks_until_chungified": 300.0, + "can_chungus_barter": true, + "blood_vial_heal": 5.0, + "blood_vial_regen_amp": 0.0, + "blood_vial_regen_duration_ticks": 40.0, + "can_projectiles_apply_posture_loss": true, + "silver_bullet_undead_bonus_damage": 4.0, + "silver_bullet_posture_loss_on_player_modifier": 0.75, + "blunderbuss_damage": 13.0, + "blunderbuss_velocity": 3.0, + "blunderbuss_divergence": 10.0, + "blunderbuss_projectile_amount": 3.0, + "blunderbuss_posture_loss": 30.0, + "blunderbuss_posture_loss_per_enchant_level": 3.0, + "blunderbuss_cooldown": 80.0, + "blunderbuss_bullets_needed": 2.0, + "blunderbuss_bullets_needed_with_infinity": 2.0, + "gatling_gun_damage": 3.0, + "gatling_gun_velocity": 3.0, + "gatling_gun_divergence": 3.0, + "gatling_gun_posture_loss": 10.0, + "gatling_gun_posture_loss_per_enchant_level": 3.0, + "gatling_gun_max_time": 100.0, + "gatling_gun_cooldown": 120.0, + "gatling_gun_bullets_needed": 1.0, + "gatling_gun_bullets_needed_with_infinity": 1.0, + "hunter_cannon_damage": 30.0, + "hunter_cannon_velocity": 3.0, + "hunter_cannon_divergence": 1.0, + "hunter_cannon_posture_loss": 120.0, + "hunter_cannon_posture_loss_per_enchant_level": 50.0, + "hunter_cannon_cooldown": 300.0, + "hunter_cannon_bullets_needed": 10.0, + "hunter_cannon_bullets_needed_with_infinity": 10.0, + "hunter_pistol_damage": 6.0, + "hunter_pistol_velocity": 3.0, + "hunter_pistol_divergence": 1.0, + "hunter_pistol_posture_loss": 50.0, + "hunter_pistol_posture_loss_per_enchant_level": 10.0, + "hunter_pistol_cooldown": 50.0, + "hunter_pistol_bullets_needed": 1.0, + "hunter_pistol_bullets_needed_with_infinity": 1.0, + "dark_sorcerer_health": 10.0, + "dark_sorcerer_bonus_armor": 0.0, + "evil_forlorn_health": 30.0, + "evil_forlorn_bonus_armor": 0.0, + "forlorn_health": 30.0, + "forlorn_bonus_armor": 0.0, + "frost_giant_health": 50.0, + "frost_giant_armor": 8.0, + "moderatly_sized_chungus_heath": 14.0, + "moderatly_sized_chungus_armor": 0.0, + "remnant_health": 20.0, + "remnant_bonus_armor": 0.0, + "rime_spectre_health": 10.0, + "rime_spectre_armor": 0.0, + "soulmass_health": 75.0, + "soulmass_armor": 10.0, + "familiar_ghost_health": 10.0, + "familiar_ghost_armor": 0.0, + "warmth_health": 20.0, + "warmth_armor": 0.0, + "withered_demon_health": 80.0, + "withered_demon_armor": 2.0, + "decaying_king_disable_respawn": false, + "decaying_king_health": 600.0, + "decaying_king_armor": 10.0, + "decaying_king_attack_cooldown_ticks": 20.0, + "decaying_king_special_cooldown_ticks": 60.0, + "decaying_king_damage_modifier": 1.0, + "decaying_king_xp": 500.0, + "decaying_king_disables_shields": true, + "decaying_king_is_fire_immune": true, + "decaying_king_is_undead": true, + "decaying_king_group_type": "UNDEAD", + "decaying_king_status_effect_blacklist": [], + "returning_knight_disable_respawn": false, + "returning_knight_health": 500.0, + "returning_knight_armor": 15.0, + "returning_knight_attack_cooldown_ticks": 40.0, + "returning_knight_special_cooldown_ticks": 80.0, + "returning_knight_summon_cooldown_ticks": 200.0, + "returning_knight_damage_modifier": 1.0, + "returning_knight_xp": 500.0, + "returning_knight_projectile_immunity_whitelist": [], + "returning_knight_disables_shields": true, + "returning_knight_is_fire_immune": true, + "returning_knight_is_undead": true, + "returning_knight_group_type": "UNDEAD", + "returning_knight_status_effect_blacklist": [ + "minecraft:poison" + ], + "old_champions_remains_disable_respawn": false, + "old_champions_remains_health": 300.0, + "old_champions_remains_armor": 10.0, + "old_champions_remains_attack_cooldown_ticks": 10.0, + "old_champions_remains_special_cooldown_ticks": 300.0, + "old_champions_remains_damage_modifier": 1.0, + "old_champions_remains_hits_before_growing_resistant": 3.0, + "old_champions_remains_max_projectile_hits_before_immune": 3.0, + "old_champions_remains_bleed_applied": 100.0, + "old_champions_remains_xp": 200.0, + "old_champions_remains_disables_shields": true, + "old_champions_remains_disables_shields_all_attacks": false, + "old_champions_remains_is_fire_immune": true, + "old_champions_remains_is_undead": true, + "old_champions_remains_group_type": "UNDEAD", + "old_champions_remains_status_effect_blacklist": [ + "soulsweapons:bleed" + ], + "frenzied_shade_health": 150.0, + "frenzied_shade_armor": 2.0, + "frenzied_shade_damage_modifier": 1.0, + "frenzied_shade_cooldown": 10.0, + "frenzied_shade_xp": 400.0, + "frenzied_shade_disables_shields": false, + "frenzied_shade_is_fire_immune": true, + "frenzied_shade_is_undead": true, + "frenzied_shade_group_type": "UNDEAD", + "frenzied_shade_status_effect_blacklist": [], + "chaos_monarch_disable_respawn": false, + "chaos_monarch_health": 450.0, + "chaos_monarch_armor": 4.0, + "chaos_monarch_attack_cooldown_ticks": 20.0, + "chaos_monarch_damage_modifier": 1.0, + "chaos_monarch_xp": 500.0, + "chaos_monarch_wither_ground": true, + "chaos_monarch_disables_shields": true, + "chaos_monarch_is_fire_immune": true, + "chaos_monarch_is_undead": true, + "chaos_monarch_group_type": "UNDEAD", + "chaos_monarch_status_effect_blacklist": [ + "soulsweapons:bleed", + "minecraft:levitation", + "minecraft:wither" + ], + "fallen_icon_disable_respawn": false, + "fallen_icon_health": 550.0, + "fallen_icon_armor": 20.0, + "fallen_icon_attack_cooldown_ticks_phase_1": 30.0, + "fallen_icon_attack_cooldown_ticks_phase_2": 0.0, + "fallen_icon_special_cooldown_ticks": 50.0, + "fallen_icon_damage_modifier": 1.0, + "fallen_icon_xp": 600.0, + "fallen_icon_projectile_immunity_whitelist": [], + "fallen_icon_disables_shields": true, + "fallen_icon_is_fire_immune": true, + "fallen_icon_is_undead": false, + "fallen_icon_group_type": "DEFAULT", + "fallen_icon_status_effect_blacklist": [ + "minecraft:poison" + ], + "day_stalker_health": 600.0, + "day_stalker_armor": 15.0, + "day_stalker_damage_modifier": 1.0, + "day_stalker_empowered_projectile_damage_taken_modifier_phase_1": 0.8, + "day_stalker_empowered_projectile_damage_taken_modifier_phase_2": 0.6, + "day_stalker_xp": 500.0, + "day_stalker_disables_shields": true, + "day_stalker_is_fire_immune": true, + "day_stalker_is_undead": false, + "day_stalker_group_type": "DEFAULT", + "day_stalker_projectile_cause_air_combustion_below_percent_health": 0.5, + "day_stalker_status_effect_blacklist": [], + "day_stalker_cooldown_modifier_phase_1": 1.0, + "day_stalker_cooldown_modifier_phase_2": 1.0, + "day_stalker_special_cooldown_modifier_phase_1": 1.0, + "day_stalker_special_cooldown_modifier_phase_2": 1.0, + "duo_fight_time_before_switch": 400.0, + "night_prowler_health": 500.0, + "night_prowler_armor": 10.0, + "night_prowler_damage_modifier": 1.0, + "night_prowler_eclipse_healing": 3.0, + "night_prowler_eclipse_skulls_glow": false, + "night_prowler_projectile_heal_below_percent_health": 0.5, + "night_prowler_projectile_immunity_whitelist": [], + "night_prowler_projectile_heal_amount": 5.0, + "night_prowler_teleport_chance": 0.3, + "night_prowler_xp": 500.0, + "night_prowler_disables_shields": true, + "night_prowler_is_fire_immune": true, + "night_prowler_is_undead": false, + "night_prowler_group_type": "DEFAULT", + "night_prowler_status_effect_blacklist": [], + "night_prowler_cooldown_modifier_phase_1": 1.0, + "night_prowler_cooldown_modifier_phase_2": 1.0, + "night_prowler_special_cooldown_modifier_phase_1": 1.0, + "night_prowler_special_cooldown_modifier_phase_2": 1.0 +} \ No newline at end of file diff --git a/minecraft/config/soulsweapons/soulsweapons_boss_config.json b/minecraft/config/soulsweapons/soulsweapons_boss_config.json new file mode 100644 index 0000000..004e176 --- /dev/null +++ b/minecraft/config/soulsweapons/soulsweapons_boss_config.json @@ -0,0 +1,146 @@ +{ + "dark_sorcerer_health": 10.0, + "dark_sorcerer_bonus_armor": 0.0, + "evil_forlorn_health": 30.0, + "evil_forlorn_bonus_armor": 0.0, + "forlorn_health": 30.0, + "forlorn_bonus_armor": 0.0, + "frost_giant_health": 50.0, + "frost_giant_armor": 8.0, + "moderatly_sized_chungus_heath": 14.0, + "moderatly_sized_chungus_armor": 0.0, + "remnant_health": 20.0, + "remnant_bonus_armor": 0.0, + "rime_spectre_health": 10.0, + "rime_spectre_armor": 0.0, + "soulmass_health": 75.0, + "soulmass_armor": 10.0, + "familiar_ghost_health": 10.0, + "familiar_ghost_armor": 0.0, + "warmth_health": 20.0, + "warmth_armor": 0.0, + "withered_demon_health": 80.0, + "withered_demon_armor": 2.0, + "decaying_king_disable_respawn": false, + "decaying_king_consume_item_on_summoning": true, + "decaying_king_health": 600.0, + "decaying_king_armor": 10.0, + "decaying_king_attack_cooldown_ticks": 20.0, + "decaying_king_special_cooldown_ticks": 60.0, + "decaying_king_damage_modifier": 1.0, + "decaying_king_xp": 500.0, + "decaying_king_disables_shields": true, + "decaying_king_is_fire_immune": true, + "decaying_king_has_inverted_heal_and_harm": true, + "decaying_king_status_effect_blacklist": [], + "returning_knight_disable_respawn": false, + "returning_knight_consume_item_on_summoning": true, + "returning_knight_health": 500.0, + "returning_knight_armor": 15.0, + "returning_knight_attack_cooldown_ticks": 40.0, + "returning_knight_special_cooldown_ticks": 80.0, + "returning_knight_summon_cooldown_ticks": 200.0, + "returning_knight_damage_modifier": 1.0, + "returning_knight_xp": 500.0, + "returning_knight_projectile_immunity_whitelist": [], + "returning_knight_disables_shields": true, + "returning_knight_is_fire_immune": true, + "returning_knight_has_inverted_heal_and_harm": true, + "returning_knight_status_effect_blacklist": [ + "minecraft:poison" + ], + "old_champions_remains_disable_respawn": false, + "old_champions_remains_consume_item_on_summoning": false, + "old_champions_remains_health": 300.0, + "old_champions_remains_armor": 10.0, + "old_champions_remains_attack_cooldown_ticks": 10.0, + "old_champions_remains_special_cooldown_ticks": 300.0, + "old_champions_remains_damage_modifier": 1.0, + "old_champions_remains_hits_before_growing_resistant": 3.0, + "old_champions_remains_max_projectile_hits_before_immune": 3.0, + "old_champions_remains_bleed_applied": 100.0, + "old_champions_remains_xp": 200.0, + "old_champions_remains_disables_shields": true, + "old_champions_remains_disables_shields_all_attacks": false, + "old_champions_remains_is_fire_immune": true, + "old_champions_remains_has_inverted_heal_and_harm": true, + "old_champions_remains_status_effect_blacklist": [ + "soulsweapons:bleed" + ], + "frenzied_shade_health": 150.0, + "frenzied_shade_armor": 2.0, + "frenzied_shade_damage_modifier": 1.0, + "frenzied_shade_cooldown": 10.0, + "frenzied_shade_xp": 400.0, + "frenzied_shade_disables_shields": false, + "frenzied_shade_is_fire_immune": true, + "frenzied_shade_has_inverted_heal_and_harm": true, + "frenzied_shade_status_effect_blacklist": [], + "chaos_monarch_disable_respawn": false, + "chaos_monarch_consume_item_on_summoning": true, + "chaos_monarch_health": 450.0, + "chaos_monarch_armor": 4.0, + "chaos_monarch_attack_cooldown_ticks": 20.0, + "chaos_monarch_damage_modifier": 1.0, + "chaos_monarch_xp": 500.0, + "chaos_monarch_wither_ground": true, + "chaos_monarch_wither_ground_range": 6.0, + "chaos_monarch_disables_shields": true, + "chaos_monarch_is_fire_immune": true, + "chaos_monarch_has_inverted_heal_and_harm": true, + "chaos_monarch_status_effect_blacklist": [ + "soulsweapons:bleed", + "minecraft:levitation", + "minecraft:wither" + ], + "fallen_icon_disable_respawn": false, + "fallen_icon_consume_item_on_summoning": true, + "fallen_icon_health": 550.0, + "fallen_icon_armor": 20.0, + "fallen_icon_attack_cooldown_ticks_phase_1": 30.0, + "fallen_icon_attack_cooldown_ticks_phase_2": 0.0, + "fallen_icon_special_cooldown_ticks": 50.0, + "fallen_icon_damage_modifier": 1.0, + "fallen_icon_xp": 600.0, + "fallen_icon_projectile_immunity_whitelist": [], + "fallen_icon_disables_shields": true, + "fallen_icon_is_fire_immune": true, + "fallen_icon_has_inverted_heal_and_harm": false, + "fallen_icon_status_effect_blacklist": [ + "minecraft:poison" + ], + "day_stalker_health": 600.0, + "day_stalker_armor": 15.0, + "day_stalker_damage_modifier": 1.0, + "day_stalker_empowered_projectile_damage_taken_modifier_phase_1": 0.8, + "day_stalker_empowered_projectile_damage_taken_modifier_phase_2": 0.6, + "day_stalker_xp": 500.0, + "day_stalker_disables_shields": true, + "day_stalker_is_fire_immune": true, + "day_stalker_has_inverted_heal_and_harm": false, + "day_stalker_projectile_cause_air_combustion_below_percent_health": 0.5, + "day_stalker_status_effect_blacklist": [], + "day_stalker_cooldown_modifier_phase_1": 1.0, + "day_stalker_cooldown_modifier_phase_2": 1.0, + "day_stalker_special_cooldown_modifier_phase_1": 1.0, + "day_stalker_special_cooldown_modifier_phase_2": 1.0, + "duo_fight_time_before_switch": 400.0, + "night_prowler_health": 500.0, + "night_prowler_armor": 10.0, + "night_prowler_damage_modifier": 1.0, + "night_prowler_eclipse_healing": 3.0, + "night_prowler_eclipse_skulls_glow": false, + "night_prowler_projectile_heal_below_percent_health": 0.5, + "night_prowler_projectile_immunity_whitelist": [], + "night_prowler_projectile_heal_amount": 5.0, + "night_prowler_teleport_chance": 0.3, + "night_prowler_xp": 500.0, + "night_prowler_disables_shields": true, + "night_prowler_is_fire_immune": true, + "night_prowler_has_inverted_heal_and_harm": false, + "night_prowler_status_effect_blacklist": [], + "night_prowler_cooldown_modifier_phase_1": 1.0, + "night_prowler_cooldown_modifier_phase_2": 1.0, + "night_prowler_special_cooldown_modifier_phase_1": 1.0, + "night_prowler_special_cooldown_modifier_phase_2": 1.0 +} \ No newline at end of file diff --git a/minecraft/config/soulsweapons/soulsweapons_chungus_tonic_whitelist.json b/minecraft/config/soulsweapons/soulsweapons_chungus_tonic_whitelist.json new file mode 100644 index 0000000..96d0056 --- /dev/null +++ b/minecraft/config/soulsweapons/soulsweapons_chungus_tonic_whitelist.json @@ -0,0 +1,173 @@ +{ + "chungus_tonic_whitelist": [ + "minecraft:illusioner", + "minecraft:giant", + "minecraft:tadpole", + "minecraft:endermite", + "soulsweapons:chaos_orb_entity", + "soulsweapons:moonlight_projectile", + "soulsweapons:chaos_skull", + "minecraft:egg", + "minecraft:iron_golem", + "soulsweapons:forlorn", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:trident", + "minecraft:sniffer", + "soulsweapons:moonknight", + "minecraft:armor_stand", + "minecraft:magma_cube", + "soulsweapons:silver_bullet_entity", + "minecraft:axolotl", + "minecraft:ender_pearl", + "minecraft:fireball", + "minecraft:tropical_fish", + "soulsweapons:kraken_slayer_projectile", + "soulsweapons:area_effect_sphere", + "minecraft:piglin_brute", + "minecraft:mooshroom", + "soulsweapons:horizontal_moonlight_projectile", + "soulsweapons:rime_spectre", + "minecraft:villager", + "soulsweapons:moonlight_arrow", + "minecraft:silverfish", + "soulsweapons:leviathan_axe_entity", + "soulsweapons:dark_sorcerer", + "soulsweapons:swordspear_entity", + "minecraft:hoglin", + "soulsweapons:night_shade", + "minecraft:shulker", + "minecraft:spider", + "soulsweapons:soul_reaper_ghost", + "minecraft:rabbit", + "soulsweapons:day_stalker", + "soulsweapons:fog_entity", + "soulsweapons:returning_knight", + "minecraft:goat", + "soulsweapons:draupnir_spear_entity", + "minecraft:skeleton", + "soulsweapons:evil_forlorn", + "minecraft:dolphin", + "minecraft:furnace_minecart", + "soulsweapons:accursed_lord_boss", + "minecraft:chicken", + "minecraft:allay", + "soulsweapons:holy_moonlight_pillar", + "minecraft:zombie_villager", + "minecraft:zombie_horse", + "minecraft:creeper", + "minecraft:snowball", + "minecraft:tnt_minecart", + "soulsweapons:flame_pillar", + "minecraft:warden", + "minecraft:llama", + "soulsweapons:warmth_entity", + "minecraft:wither_skull", + "minecraft:painting", + "soulsweapons:big_moonlight_projectile", + "minecraft:slime", + "minecraft:minecart", + "soulsweapons:night_wave", + "minecraft:cave_spider", + "minecraft:glow_squid", + "minecraft:snow_golem", + "soulsweapons:soulmass", + "minecraft:bee", + "minecraft:vindicator", + "minecraft:piglin", + "soulsweapons:charged_arrow_entity", + "minecraft:turtle", + "minecraft:llama_spit", + "minecraft:end_crystal", + "minecraft:fox", + "soulsweapons:sunlight_projectile_big", + "minecraft:stray", + "minecraft:zoglin", + "soulsweapons:cannonball_entity_type", + "minecraft:phantom", + "minecraft:wither_skeleton", + "soulsweapons:frost_giant", + "soulsweapons:comet_spear_entity", + "soulsweapons:chaos_monarch", + "minecraft:skeleton_horse", + "soulsweapons:night_skull", + "soulsweapons:withered_wabbajack_projectile", + "minecraft:firework_rocket", + "soulsweapons:no_drag_wither_skull", + "minecraft:salmon", + "minecraft:spectral_arrow", + "soulsweapons:silver_arrow", + "minecraft:donkey", + "minecraft:experience_orb", + "minecraft:bat", + "minecraft:camel", + "minecraft:sheep", + "minecraft:squid", + "minecraft:dragon_fireball", + "minecraft:vex", + "minecraft:zombie", + "minecraft:blaze", + "minecraft:mule", + "soulsweapons:growing_fireball", + "minecraft:cod", + "minecraft:ender_dragon", + "minecraft:item_frame", + "minecraft:husk", + "minecraft:small_fireball", + "soulsweapons:absorbed_projectiles_orb_entity", + "minecraft:wither", + "minecraft:pig", + "soulsweapons:dragon_staff_projectile", + "soulsweapons:night_prowler", + "minecraft:wolf", + "minecraft:evoker_fangs", + "minecraft:chest_boat", + "soulsweapons:vertical_sunlight_projectile", + "minecraft:area_effect_cloud", + "minecraft:enderman", + "soulsweapons:big_chungus", + "soulsweapons:blackflame_explosion_entity", + "soulsweapons:mjolnir_entity", + "minecraft:witch", + "minecraft:pillager", + "minecraft:cat", + "minecraft:ocelot", + "minecraft:panda", + "minecraft:strider", + "minecraft:ravager", + "minecraft:zombified_piglin", + "minecraft:wandering_trader", + "soulsweapons:ghost_glaive", + "minecraft:evoker", + "soulsweapons:arrow_storm_entity", + "soulsweapons:nights_edge", + "minecraft:polar_bear", + "minecraft:frog", + "minecraft:tnt", + "soulsweapons:moonveil_vertical", + "soulsweapons:warmup_lightning", + "soulsweapons:vertical_moonlight_projectile", + "minecraft:lightning_bolt", + "minecraft:boat", + "minecraft:parrot", + "minecraft:hopper_minecart", + "minecraft:glow_item_frame", + "minecraft:ghast", + "minecraft:trader_llama", + "minecraft:horse", + "minecraft:cow", + "soulsweapons:dark_moon_projectile", + "soulsweapons:moonveil_horizontal", + "soulsweapons:withered_demon", + "minecraft:shulker_bullet", + "soulsweapons:frozen_lightning", + "soulsweapons:draugr_boss", + "minecraft:chest_minecart", + "minecraft:drowned", + "minecraft:pufferfish", + "soulsweapons:shadow_orb_entity", + "soulsweapons:blackflame_snake_entity", + "minecraft:arrow", + "soulsweapons:remnant" + ] +} \ No newline at end of file diff --git a/minecraft/config/soulsweapons/soulsweapons_client.json b/minecraft/config/soulsweapons/soulsweapons_client.json new file mode 100644 index 0000000..fec39f9 --- /dev/null +++ b/minecraft/config/soulsweapons/soulsweapons_client.json @@ -0,0 +1,7 @@ +{ + "always_show_item_tooltip": false, + "always_show_item_lore": false, + "disable_target_posture_hud": false, + "disable_player_posture_hud": false, + "disable_player_bleed_hud": false +} \ No newline at end of file diff --git a/minecraft/config/splendid_slimes.cfg b/minecraft/config/splendid_slimes.cfg new file mode 100644 index 0000000..f15855d --- /dev/null +++ b/minecraft/config/splendid_slimes.cfg @@ -0,0 +1,59 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# ꒷꒦꒷꒦꒷꒦꒷꒦꒷꒦꒷꒦ Splendid Slimes Config! ꒦꒷꒦꒷꒦꒷꒦꒷꒦꒷꒦꒷ + +# All entries in this config file are synced from server to client. + + +slimes { + I:"Slime Starving time"=24000 + + # Maximum happiness value for a Splendid Slime. + # Default: 1000; Range: [3 ~ 2147483147] + I:"Slime Max Happiness"=1000 + + # Minimum amount of happiness a Splendid Slime can have before being considered 'Happy'. + # Default: 600; Range: [0 ~ 2147483647] + I:"Slime Happy Threshold"=600 + + # Maximum amount of happiness a Splendid Slime can have before being considered 'Unhappy'. + # Default: 400; Range: [0 ~ 2147483647] + I:"Slime Unhappy Threshold"=400 + + # Maximum amount of happiness a Splendid Slime can have before being considered 'Furious'. + # Default: 200; Range: [0 ~ 2147483647] + I:"Slime Furious Threshold"=200 + + # How many ticks it takes for a Splendid Slime to try and perform Negative/Positive effects/commands. Setting this value too low may cause performance issues. + # Default: 800; Range: [20 ~ 2147483647] + I:"Slime Effect Cooldown"=800 + + # When true, Slimes will not get hungry or perform effects when their owner is offline. This can help prevent disasters on Multiplayer servers and has no effect in single player. + # Default: true + B:"Slime Owner Offline Check"=true + + # If true, Largo Slimes will turn into Tarrs after eating a 3rd Plort instead of just dying. + # Default: true + B:"Enable Tarrs"=true + + # How much a full slime's hunger will equate to + # Default: 24000; Range: [20 ~ 2147483647] + I:"Slime Hunger Amount"=24000 + + # If true, Tarrs will be persistent and turn back into previous slime when killed + # Default: false + B:"Enable Forgiving Tarrs"=false +} + + +machines { + # Time it takes for Splendid Slimes to incubate in Slime Incubator + # Default: 6000; Range: [1 ~ 2147483647] + I:"Slime Incubation Time"=6000 + + # Time it takes to craft items in a Plort Press + # Default: 1200; Range: [20 ~ 2147483637] + I:"Plort Pressing Time"=1200 +} + + diff --git a/minecraft/config/stardew_fishing-client.toml b/minecraft/config/stardew_fishing-client.toml index 8737627..77612e1 100644 --- a/minecraft/config/stardew_fishing-client.toml +++ b/minecraft/config/stardew_fishing-client.toml @@ -1,5 +1,5 @@ -#When this setting is enabled, audio cues in the minigame will be louder and other sounds will be muted. -isolateAudioCues = false -#When this setting is enabled, the fishing minigame will pause the world in singleplayer. -pauseDuringMinigame = true - +#When this setting is enabled, audio cues in the minigame will be louder and other sounds will be muted. +isolateAudioCues = false +#When this setting is enabled, the fishing minigame will pause the world in singleplayer. +pauseDuringMinigame = true + diff --git a/minecraft/config/storagedrawers-client.toml b/minecraft/config/storagedrawers-client.toml new file mode 100644 index 0000000..203ee86 --- /dev/null +++ b/minecraft/config/storagedrawers-client.toml @@ -0,0 +1,30 @@ + +[General] + # Invert the behavior of the shift key for extracting items + invertShift = false + # Invert left and right click action on drawers + invertClick = false + +[Integration] + # Enable extended data display in WAILA if present + enableWaila = true + # Enable extended data display in The One Probe if present + enableTheOneProbe = true + +[Render] + # Distance in blocks before item labels stop rendering + labelRenderDistance = 20.0 + # + # Distance in blocks before quantity numbers stop rendering + quantityRenderDistance = 10.0 + # + # Distance in blocks before quantity numbers begin to fade out + quantityFadeDistance = 20.0 + + # Render settings specific to framed drawers. + [Render.FramedDrawers] + # + # Attempts to render 'non-opaque' materials on the translucent render pass. + # This may cause artifacting, particularly if using non-opaque materials on the 'front' face. + renderTranslucentMaterials = true + diff --git a/minecraft/config/storagedrawers-common.toml b/minecraft/config/storagedrawers-common.toml new file mode 100644 index 0000000..51055a5 --- /dev/null +++ b/minecraft/config/storagedrawers-common.toml @@ -0,0 +1,93 @@ + +[General] + #The number of item stacks held in a basic unit of storage. + #1x1 drawers hold 8 units, 1x2 drawers hold 4 units, 2x2 drawers hold 2 units. + #Half-depth drawers hold half those amounts. + baseStackStorage = 4 + #Controller range defines how far away a drawer can be connected + #on X, Y, or Z planes. The default value of 50 gives the controller a very + #large range, but not beyond the chunk load distance. + #Range: 1 ~ 75 + controllerRange = 50 + #Whether redstone upgrades should emit an analog redstone signal, requiring + #the use of a comparator to read it. This will default to true starting with MC 1.21. + enableAnalogRedstone = false + enableUI = true + enableSidedInput = true + enableSidedOutput = true + enableExtraCompactingRules = true + #Allows drawers to be pulled from their block and inserted into another block. + enableDetachedDrawers = true + #Drawers track the capacity upgrades from the block they were taken from. + #Drawers can only be placed back into a block with the same or lower max capacity. + #Drawers can still only be inserted into a block with enough capacity for the items held. + forceDetachedDrawersMaxCapacityCheck = false + debugTrace = false + #List of rules in format "domain:item1, domain:item2, n". + #Creates a compacting drawer rule to convert 1 of item1 into n of item2. + compactingRules = ["minecraft:clay, minecraft:clay_ball, 4"] + #If enabled, carrying filled drawers in your inventory gives slowness debuff, unless a Portability Upgrade is used. + heavyDrawers = false + #If enabled, players can lock drawer interactions to just themselves. + enablePersonalKey = true + +[StorageUpgrades] + #Storage upgrades multiply storage capacity by the given amount. + #When multiple storage upgrades are used together, their multipliers are added before being applied. + #Storage upgrades start at the level 2 multiplier. The resistance upgrade uses level 1. + level1Mult = 2 + level2Mult = 4 + level3Mult = 8 + level4Mult = 16 + level5Mult = 32 + #Storage upgrades increase capacity of drawers. + enableStorageUpgrade = true + #Fill level upgrades add fill bars to the faces of drawers. + enableFillLevelUpgrade = true + #Adds redstone output to drawers based on fill levels. + enableRedstoneUpgrade = true + #Renders drawer labels brighter than the surrounding environment would allow. + enableIlluminationUpgrade = true + #Causes drawers to accept but void compatible items when they are filled to capacity. + enableVoidUpgrade = true + #Balance upgrades allow same-item slots to balance out their amounts when items are + #added or removed from a lot. Works across networks when acting through a controller. + enableBalanceUpgrade = true + #Allows drawers with contents to be freely carried when heavy drawers is enabled. + enablePortabilityUpgrade = true + #Allows a single drawer to connect to a controller remotely. + enableRemoteUpgrade = true + #Allows a drawer and all drawers connected to it to connect to a controller remotely. + enableRemoteGroupUpgrade = true + +[Conversion] + # + #Each type will be combined with each material to create a set of whitelist entries. + #This is mainly a convenience for common ore-based materials. + oreTypeWhitelist = ["forge:storage_blocks", "forge:ingots", "forge:nuggets"] + # + #Each type will be combined with each material to create a set of whitelist entries. + #This is mainly a convenience for common ore-based materials. + oreMaterialWhitelist = ["aluminum", "constantan", "steel", "uranium", "invar", "tin", "lead", "silver", "platinum", "nickel", "osmium", "bronze", "electrum"] + # + #Each whitelist entry should be a fully namespaced tag, e.g. c:ingots/copper + tagWhitelist = [] + # + #Each blacklist entry should be a fully namespaced tag, e.g. c:ingots/copper. + #All items not on the whitelist are blacklisted implicitly. This can be used to exclude + #specific entries created from the ore whitelist set. + tagBlacklist = [] + # + #Each entry is a semicolon-separated list of fully-namespaced items. All items within the + #same entry are considered equivalent and convertible/interchangeable. + #Example: ["thermal:nickel_ore;immersiveengineering:ore_nickel"] + itemEquivalenceGroups = [] + +[Integration] + #When true, shows quantity as NxS + R (by stack size) rather than count + wailaStackRemainder = true + #When true, does not show current quantities unless quantify key was used + wailaRespectQuantifyKey = false + #Add CoFH Core specific features if the mod is loaded + enableCoFHIntegration = true + diff --git a/minecraft/config/storagedrawers-common.v2.toml b/minecraft/config/storagedrawers-common.v2.toml new file mode 100644 index 0000000..739ef0d --- /dev/null +++ b/minecraft/config/storagedrawers-common.v2.toml @@ -0,0 +1,387 @@ + +# General mod configuration +[General] + # Enables excessive logging around certain parts of the mod. + # Can be ignored unless asked by the developer to enable. + debugTrace = false + # + # Whether blocks with UI components are allowed to open them. + # Disabling UI will restrict some mod functionality. + enableUI = true + # + # Whether to log actions such as adding rules or deny list entries. + # You may wish to disable this if you've added many such entries. + logStartupActivity = true + # + # Internal use to record what version the config file was first written with. + configVersion = 2 + +# Configuration around drawer storage blocks +[Drawers] + # A base value multiplied against the storage size of all drawer slots. + # Change this to uniformly increase all storage amounts + baseStackStorage = 1 + + # Configuration for individual drawer configurations. + # Units are the number of stacks a slot holds before the base stack storage value is multiplied. + [Drawers.Blocks] + + [Drawers.Blocks.FullStorage1x1] + unitsPerSlot = 32 + + [Drawers.Blocks.FullStorage1x2] + unitsPerSlot = 16 + + [Drawers.Blocks.FullStorage2x2] + unitsPerSlot = 8 + + [Drawers.Blocks.FullCompacting] + unitsPerSlot = 32 + + [Drawers.Blocks.HalfStorage1x1] + unitsPerSlot = 16 + + [Drawers.Blocks.HalfStorage1x2] + unitsPerSlot = 8 + + [Drawers.Blocks.HalfStorage2x2] + unitsPerSlot = 4 + + [Drawers.Blocks.HalfCompacting] + unitsPerSlot = 16 + + # Configuration around the auto compacting feature + [Drawers.Compacting] + # Whether compacting function is supported. Disabling does not remove the block. + enabled = true + # + # Enables additional rules for some Minecraft items, like quartz, brick, and clay. + # See logs for full set of rules that get added. + enableExtraCompactingRules = true + # + # Compacting drawers require 2-way 2x2 or 3x3 recipes to associate items. + # Add additional rules here in the form: , , + compactingRules = ["minecraft:clay, minecraft:clay_ball, 4"] + + # Configuration around detached drawers, which are individual drawer slots pulled from a drawer block. + [Drawers.Detached] + # Allows individual drawer slots to be pulled out from a drawer block. + enable = true + # + # If enabled, carrying filled drawers in your inventory gives slowness debuff. + # Debuff can be mitigated with portability upgrade, if it's enabled. + heavyDrawers = false + # + # Drawers track the capacity upgrades from the block they were taken from. + # When enabled, drawers can only be placed back into a block with the same or lower max capacity. + # Drawers can still only be inserted into a block with enough capacity for the items held. + forceMaxCapacityCheck = false + # + # Allows detached drawers to be stored in containers like bundles and shulker boxes. + # Due to current limitation, this rule will also apply to storing empty drawers in those containers. + canStoreInContainers = false + + # Configuration around dropped drawer blocks that still have items inside them. + [Drawers.Filled] + # If enabled, carrying filled drawers in your inventory gives slowness debuff. + # Debuff can be mitigated with portability upgrade, if it's enabled. + heavyDrawers = false + # + # Allows filled drawers to be stored in other drawer blocks. + canStoreInDrawers = false + # + # Allows filled drawers to be stored in containers like bundles and shulker boxes. + # Due to current limitation, this rule will also apply to storing empty drawers in those containers. + canStoreInContainers = false + + # Configuration around framed drawers, which take their appearance from other blocks used as materials. + [Drawers.Framed] + # Allows crafting framed drawers. Disabling does not remove existing framed drawers. + enable = true + # + # Attempts to only allow solid, full-cube blocks to be used as materials. + # This check may still allow non-solid blocks if the blocks' properties indicate they should be solid but are not. + # Some non-solid blocks are also counted as non-opaque, and may be restricted by that setting as well. + enforceSolidMaterials = true + # + # Attempts to only allow fully opaque blocks to be used as materials. + # This check may still allow non-opaque blocks if the blocks' properties indicate they should be opaque but are not. + enforceOpaqueMaterials = false + # + # Each entry should be a namespace or fully namespaced block, e.g. minecraft:cobblestone + # Any items on the deny list are prevented from being used as any drawer material. + materialDenyList = [] + + # Configuration around storage of items. + [Drawers.Storage] + # + # Each entry should be a namespace or fully namespaced item, e.g. minecraft:cobblestone + # Any items on the deny list are prevented from being stored in drawers + storeDenyList = ["storagedrawers:creative_vending_upgrade"] + # + # What a drawer should do with its items when broken. Acceptable values are: + # KEEP: Drawer retains all items in the dropped item, like shulker boxes. This is the default behavior. + # DROP: Drawer drops items into the world, up to the dropStackLimit value. Stored items over that limit are voided. + # VOID: Drawer voids all items when dropped. + #Allowed Values: KEEP, DROP, VOID + dropMode = "KEEP" + # + # If dropMode is set to DROP, this is the maximum number of stacks that can be spilled into the world + # from the entire block. By default, this is set to the amount a vanilla chest could drop. + dropStackLimit = 32 + +# Configuration around the controller and drawer networks. +[Controller] + # Controller range defines how far away a drawer can be connected on X, Y, or Z planes. + # The largest recommended range is around 75, or the expected chunk load distance. + # If setting this value higher, drawers will be unavailable if their chunks become unloaded. + controllerRange = 50 + +# Configuration around upgrade items that can be inserted into drawer blocks. +[Upgrades] + + # Storage upgrades multiply storage capacity by the given amount. + # When multiple storage upgrades are used together, their multipliers are added before being applied. + [Upgrades.StorageTiers] + + [Upgrades.StorageTiers.Obsidian] + enableUpgrade = true + storageMultiplier = 2 + + [Upgrades.StorageTiers.Copper] + enableUpgrade = true + storageMultiplier = 4 + + [Upgrades.StorageTiers.Iron] + enableUpgrade = true + storageMultiplier = 8 + + [Upgrades.StorageTiers.Gold] + enableUpgrade = true + storageMultiplier = 16 + + [Upgrades.StorageTiers.Emerald] + enableUpgrade = true + storageMultiplier = 64 + + [Upgrades.StorageTiers.Diamond] + enableUpgrade = true + storageMultiplier = 256 + + [Upgrades.StorageTiers.Netherite] + enableUpgrade = true + storageMultiplier = 2048 + + # Allows same-item slots to balance out their amounts when items are added or removed from a slot. + # Works across networks when acting through a controller. + [Upgrades.Balance] + enableUpgrade = true + + # Allows the automatic conversion of same-type items based on configuration. + [Upgrades.Conversion] + enableUpgrade = true + # + # Each type will be combined with each material to create a set of allow list entries. + # This is mainly a convenience for common ore-based materials. + oreTypeAllowList = ["forge:storage_blocks", "forge:ingots", "forge:nuggets"] + # + # Each type will be combined with each material to create a set of allow list entries. + # This is mainly a convenience for common ore-based materials. + oreMaterialAllowList = ["aluminum", "constantan", "steel", "uranium", "invar", "tin", "lead", "silver", "platinum", "nickel", "osmium", "bronze", "electrum"] + # + # Each allow list entry should be a fully namespaced tag, e.g. c:ingots/copper + tagAllowList = [] + # + # Each deny list entry should be a fully namespaced tag, e.g. c:ingots/copper. + # All items not on the allow list are denied implicitly. This can be used to exclude + # specific entries created from the ore allow list set. + tagDenyList = [] + # + # Each entry is a semicolon-separated list of fully-namespaced items. All items within the + # same entry are considered equivalent and convertible/interchangeable. + # Example: ["thermal:nickel_ore;immersiveengineering:ore_nickel"] + itemEquivalenceGroups = [] + + # Allows storing ~2.1 billion (MAX_INT) items in each drawer slot. + [Upgrades.CreativeStorage] + enableUpgrade = true + + # Allows vending infinite amounts of the items in each drawer slot. + [Upgrades.CreativeVending] + enableUpgrade = true + + # Adds fill bars to the face of drawers. + [Upgrades.FillLevel] + enableUpgrade = true + + # Renders drawer labels brighter than surrounding environment would allow. + [Upgrades.Illumination] + enableUpgrade = true + # + # Renders labels at minimum light level between 0 - 15 + #Range: 0 ~ 15 + illuminationLevel = 13 + # + # Renders labels without upgrade at minimum light level between 0 - 15 + #Range: 0 ~ 15 + minIlluminationLevel = 1 + + # Collects matching items through its top like a vanilla hopper. + [Upgrades.Hopper] + enableUpgrade = true + + # Collects nearby matching items by teleporting them instantly to the drawer + [Upgrades.Magnet] + # + # When multiple magnet upgrades are used, their ranges are added together. + additiveRange = true + # + # Range is blocks out from drawer as: [horizontal, up, down] + # If ranges from multiple upgrades are added, they are not allowed to exceed these values. + maxRange = [24, 8, 0] + + [Upgrades.Magnet.Level1] + enableUpgrade = true + # + # Range is blocks out from drawer as: [horizontal, up, down] + range = [1, 1, 0] + # + # Ticks between active collection when this is the highest upgrade tier. + activeSpeed = 20 + # + # Ticks between collection checks when this is the highest upgrade tier. + # Collection is idle when items have not been collected within the last idleSpeed interval. + idleSpeed = 20 + + [Upgrades.Magnet.Level2] + enableUpgrade = true + # + # Range is blocks out from drawer as: [horizontal, up, down] + range = [4, 2, 0] + # + # Ticks between active collection when this is the highest upgrade tier. + activeSpeed = 10 + # + # Ticks between collection checks when this is the highest upgrade tier. + # Collection is idle when items have not been collected within the last idleSpeed interval. + idleSpeed = 20 + + [Upgrades.Magnet.Level3] + enableUpgrade = true + # + # Range is blocks out from drawer as: [horizontal, up, down] + range = [8, 3, 0] + # + # Ticks between active collection when this is the highest upgrade tier. + activeSpeed = 5 + # + # Ticks between collection checks when this is the highest upgrade tier. + # Collection is idle when items have not been collected within the last idleSpeed interval. + idleSpeed = 20 + + # Restricts capacity of drawer to one stack. + [Upgrades.OneStack] + enableUpgrade = true + + # Allows drawers with contents to be freely carried when heavy drawers is enabled. + [Upgrades.Portability] + enableUpgrade = true + + # Lets drawers emit redstone signals based on their fill level. + [Upgrades.Redstone] + enableUpgrade = true + # + # Min redstone upgrades output the minimum signal of all drawers in block. + enableMinUpgrade = true + # + # Max redstone upgrades output the maximum signal of all drawers in block. + enableMaxUpgrade = true + # + # Whether redstone upgrades should emit an analog redstone signal, + # requiring the use of a comparator to read it. + analogOutput = true + + # Lets drawers connect to a controller wirelessly. + [Upgrades.Remote] + enableUpgrade = true + # + # Group variant connects all drawers connected to the upgraded block. + enableGroupUpgrade = true + # + # Sets the max range of the single-variant remote upgrade. + # The range is capped by the controller range. Set to 0 to match controller range. + maxRange = 0 + # + # Sets the max range of the group-variant remote upgrade. + # The range is capped by the controller range. Set to 0 to match controller range. + maxGroupRange = 0 + + # Causes drawers to accept but void compatible items when they are filled to capacity. + [Upgrades.Void] + enableUpgrade = true + +# Configuration around tools, namely the various 'keys' that can be used on drawers. +[Tools] + + # Drawer keys are used to lock drawers to the items they already hold. + [Tools.DrawerKey] + enable = true + + # Quantify keys are used to show or hide the count of items on the face of drawers. + [Tools.QuantifyKey] + enable = true + # + # Show labels by default on newly placed drawers. + showDefault = false + + # Concealment keys are used to show or hide the item labels on the face of drawers. + # The primary use of this key is for performance by disabling the more expensive dynamic rendering. + [Tools.ConcealmentKey] + enable = true + + # Personal keys allow drawers to be locked to their owners, so only they can place or take items. + [Tools.PersonalKey] + enable = true + + # Priority keys change the priority of drawers when finding a compatible slot to insert items into. + [Tools.PriorityKey] + enable = true + + # Suspend keys stop external interaction, e.g. from hopper or magnet upgrades. + [Tools.PauseKey] + enable = true + +# Configuration around integration with third party mods. +[Integration] + + # Configuration around the CoFH Core mod. + # Adds support for a CoFH groups personal key. + [Integration.CoFHCore] + # Enables CoFH Core integration if mod is present. + enable = true + + # Configuration around the FTB Chunks mod. + # Improves support for claimed chunks. + [Integration.FTBChunks] + # Enables FTB Chunks integration if mod is present. + enable = true + + # Configuration around the FTB Teams mod. + # Adds support for a teams personal key. + [Integration.FTBTeams] + # Enables FTB Teams integration if mod is present. + enable = true + # + # Enables recipe to obtain key from another supported personal key in crafting grid. + enableCycleRecipe = true + + # Configuration around the WAILA/HWYLA/Jade family of block inspection mods. + [Integration.WAILA] + # Enables Jade integration if mod is present. + enable = true + # When true, shows quantity as NxS + R (by stack size) rather than count + stackRemainder = true + # + # When true, does not show current quantities unless quantify key was used + respectQuantifyKey = false + diff --git a/minecraft/config/strainers.toml b/minecraft/config/strainers.toml new file mode 100644 index 0000000..b70870e --- /dev/null +++ b/minecraft/config/strainers.toml @@ -0,0 +1,7 @@ + +["Strainers Config File"] + #Show the strainer meshes in the world, default = true + "Show Meshes" = true + #Show items in / on the strainer in the world, default = true + "Show Items " = true + diff --git a/minecraft/config/strongfarmland.toml b/minecraft/config/strongfarmland.toml new file mode 100644 index 0000000..1743e16 --- /dev/null +++ b/minecraft/config/strongfarmland.toml @@ -0,0 +1,12 @@ + +#If a farmland has moisture, the following entity types will be blocked from trampling it into dirt when the setting is false +[strongfarmland] + #Do players trample farmland + player = false + #Do tamed animals (cats, dogs, etc) trample farmland + tameable = false + #Do tamed horses trample farmland + horse = false + #Do iron golems trample farmland + golem = false + diff --git a/minecraft/config/structure_gel-client.toml b/minecraft/config/structure_gel-client.toml new file mode 100644 index 0000000..9f8f512 --- /dev/null +++ b/minecraft/config/structure_gel-client.toml @@ -0,0 +1,11 @@ + +[rendering] + # + # Displays info on top of Structure Blocks and Jigsaws in world. + # Default: true + show_structure_block_info = true + # + # Makes the render used by the Building Tool operate in a threaded context. + # Default: true + thread_building_tool = true + diff --git a/minecraft/config/structure_gel-common.toml b/minecraft/config/structure_gel-common.toml new file mode 100644 index 0000000..ddb7d78 --- /dev/null +++ b/minecraft/config/structure_gel-common.toml @@ -0,0 +1,31 @@ + +[building_tool] + # + # The amount of undo operations saved by the Building Tool. + # Default: 64 + #Range: 8 ~ 256 + max_undos = 64 + # + # The amount of copied block regions that can be stored at a time with the Clone tool. + # Default: 9 + #Range: 1 ~ 32 + clipboard_size = 9 + # + # The amount hours that a player's actions should stay in memory for. Use -1 to save forever. + # Default: 24 + #Range: -1 ~ 240 + expiration_time = 24 + +[debug] + # + # When true, allows extra debug logging to be printed to the console. + # Default: false + console_debug = false + # + # When true: + # - Gel blocks can be clicked through like air when holding items that don't interact with them. + # - Gel blocks can be replaced like air when not holding gel or crouching. + # - Gel blocks automatically replace destroyed neighboring blocks. + # Default: true + advanced_gel_behavior = true + diff --git a/minecraft/config/structure_layout_optimizer.jsonc b/minecraft/config/structure_layout_optimizer.jsonc new file mode 100644 index 0000000..d44d542 --- /dev/null +++ b/minecraft/config/structure_layout_optimizer.jsonc @@ -0,0 +1,15 @@ +{ + /* + * Whether to use an alternative strategy to make structure layouts generate slightly even faster than + * the default optimization this mod has for template pool weights. This alternative strategy works by + * changing the list of pieces that structures collect from the template pool to not have duplicate entries. + * + * This will not break the structure generation, but it will make the structure layout different than + * if this config was off (breaking vanilla seed parity). The cost of speed may be worth it in large + * modpacks where many structure mods are using very high weight values in their template pools. + * + * Pros: Get a bit more performance from high weight Template Pool Structures. + * Cons: Loses parity with vanilla seeds on the layout of the structure. (Structure layout is not broken, just different) + */ + "deduplicateShuffledTemplatePoolElementList": false +} \ No newline at end of file diff --git a/minecraft/config/structurecompass-common.toml b/minecraft/config/structurecompass-common.toml new file mode 100644 index 0000000..75112bc --- /dev/null +++ b/minecraft/config/structurecompass-common.toml @@ -0,0 +1,14 @@ + +#General settings +[general] + #Sets the range in blocks in which the structure compasses can locate structures [default: 10000] + #Range: > 0 + compassRange = 10000 + #Defines if the structure compass should only locate unexplored structures. A structure is tagged as explored when the compass is used to find it. [default: false]] + locateUnexplored = false + #Defines if the structure compass should locate structures asynchronously [default: false] + locateAsync = false + #Defines which structures can't be searched with the Structure Compass + #(Supports wildcard *, Example: 'minecraft:*' will blacklist anything in the minecraft domain) + structureBlacklist = [""] + diff --git a/minecraft/config/structureessentials.json b/minecraft/config/structureessentials.json new file mode 100644 index 0000000..15e50b5 --- /dev/null +++ b/minecraft/config/structureessentials.json @@ -0,0 +1,65 @@ +{ + "structurePlacementLogging": { + "desc:": "Enables debug logging of structure placement. Warning: This will spam the logs and is only recommended for debugging purposes. Default: false", + "structurePlacementLogging": false + }, + "structureSearchTimeout": { + "desc:": "The maximum time (in seconds) a structure search is allowed to take. Default: 50", + "structureSearchTimeout": 50 + }, + "useFastStructureLookup": { + "desc:": "Enables faster structure search. Default: true", + "useFastStructureLookup": true + }, + "mapSearchRadius": { + "desc:": "Specifies the maximum radius map items can search for structures. Lowering this value reduces the time structure searches stall the server but decreases the range in which structures are found. Vanilla: 50, Default: 40", + "mapSearchRadius": 40 + }, + "locateSearchRadius": { + "desc:": "Sets the search radius for the locate structure command. Vanilla: 100, Default: 110", + "locateSearchRadius": 110 + }, + "globalSearchRadius": { + "desc:": "Sets the global maximum structure search radius. The vanilla locate command uses 100. Lowering this value reduces the time structure searches stall the server but decreases the range in which structures are found. Default: 70", + "globalSearchRadius": 70 + }, + "spacingSeparationModifier": { + "desc:": "Adjusts the structure spacing (average spawn distance) and separation (minimum spawn distance). Increasing the value makes structures spawn farther apart, while decreasing it makes them spawn closer together. Vanilla Default: 1.0", + "spacingSeparationModifier": 1.0 + }, + "logDuplicatedSalt": { + "desc:": "Structure sets use a salt value to determine the randomness of their placement. Duplicated use of the same salt value can cause structures to spawn on the same place, this config enables logging duplicated salt values. Default: true", + "logDuplicatedSalt": true + }, + "minimumStructureDistance": { + "desc:": "Set a minimum distance in blocks between structures generated which prevents structure overlaps(not 100% but close). Not recommended to use higher values, as that may strain the worldgen due to repeated structure retries and can prevent surfaces structures when there is some in a cave below. If you want structures more spaced out than this use the spacing/seperation modifier. Default: 32 blocks, range 16-512", + "minimumStructureDistance": 32, + "enabled": false, + "logOverlaps": false + }, + "autoBiomeCompat": { + "desc:": "Automatically analyzes present biomes and adjust structure spawning to include fitting ones, Note that this may also spawn structures in undesired biomes, check the logging and adjust the strictness up/down to achieve a good result. Default: false", + "enableBiomeCompat": false, + "enableLogging": true, + "strictness": { + "desc:": "Sets a modifier for how strict the autoBiomeCompat is, lower allows adding less similar biomes to be added. E.g. 0.5 decreases the similarity requirements by 50% . Default: 1.2", + "autoBiomeCompatStrictness": 1.2 + }, + "dimensionWhitelist": { + "desc:": "List of allowed dimensions for automatic structure compat, by default only vanilla dimensions", + "dimensions": [ + "minecraft:overworld", + "minecraft:the_nether", + "minecraft:the_end" + ] + } + }, + "warnMissingRegistryEntry": { + "desc:": "Prevents crashes due to missing registry entries (e.g., changes in mod structure IDs) by converting them into log error messages instead. Default: true", + "warnMissingRegistryEntry": true + }, + "disableLegacyRandomCrashes": { + "desc:": "Prevents crashes caused by multithreaded access to thread-specific random number generators. Default: true", + "disableLegacyRandomCrashes": true + } +} \ No newline at end of file diff --git a/minecraft/config/structurize-client.toml b/minecraft/config/structurize-client.toml new file mode 100644 index 0000000..09d465c --- /dev/null +++ b/minecraft/config/structurize-client.toml @@ -0,0 +1,23 @@ + +[blueprint] + + #Affects all previews + [blueprint.renderer] + #If disabled show placeholders as normal blocks, if enabled render: any (light) -> nothing, fluid (blue) -> dimension default fluid, solid (brown) -> worldgen block, tag (transparent) -> content block. Fluid and solid only work in singleplayer/for LAN owner, else it's just best guess. Currently without auto-updating [Default: false] + render_placeholders_nice = false + #Enabling this will send most of your active previews to nearby players [Default: false] + share_previews = false + #Once enabled you will see previews from other players within sensible distance [Default: false] + see_shared_previews = false + #-1 for same as current vanilla world, 0 to 15 (min to max) for static light level [Default: 15, min: -1, max: 15] + #Range: -1 ~ 15 + light_level = 15 + #From 0 (transparent) to 1 (opaque). ALPHA FEATURE, reported bugs may not receive fix. (Minus values also mean disabled) [Default: -1.0, min: -1.0, max: 1.0] + #Range: -1.0 ~ 1.0 + transparency = -1.0 + +#All configuration items related to the core gameplay +[gameplay] + #Sneak+scroll on the hotbar switches scan tool slots [Default: false] + scan_tool_scrolling = false + diff --git a/minecraft/config/stylisheffects-client.toml b/minecraft/config/stylisheffects-client.toml new file mode 100644 index 0000000..57c9336 --- /dev/null +++ b/minecraft/config/stylisheffects-client.toml @@ -0,0 +1,185 @@ + +[renderers] + + [renderers.inventory_renderer] + #Show a tooltip when hovering over an effect widget. + hovering_tooltip = true + #Minimum screen border distance for effect widgets. + #Range: > 0 + screen_border_distance = 3 + #Show remaining status effect duration on tooltip. + tooltip_duration = true + #Maximum amount of status effects rendered in a single row. + #Range: 1 ~ 255 + max_columns = 2 + #Space between individual effect widgets on y-axis. + #Range: > 0 + widget_space_y = 1 + #Alpha value for effect widgets. + #Range: 0.0 ~ 1.0 + widget_alpha = 0.7 + #Space between individual effect widgets on x-axis. + #Range: > 0 + widget_space_x = 1 + #Respect vanilla's "hideParticles" flag which prevents a status effect from showing when set via commands. + respect_hide_particles = false + #Exclude certain menus from showing active status effects. Useful when effect icons overlap with other screen elements. + menu_blacklist = ["curios:curios_container", "minecraft:creative_mode", "blue_skies:arc_inventory", "tconstruct:*"] + #Maximum amount of status effects rendered in a single column. + #Range: 1 ~ 255 + max_rows = 255 + #Print menu type to game chat whenever a new menu screen is opened. Only intended to find menu types to be added to "menu_blacklist". + debug_container_types = false + #Render active status effects in every menu screen, not just in the player inventory. + effects_everywhere = false + #Allow effect renderer to fall back to a more compact version (when available) if not enough screen space exists. Otherwise effect widgets might run off-screen. + allow_fallback = true + #Screen side to render status effects on. + #Allowed Values: LEFT, RIGHT + screen_side = "RIGHT" + #Effect renderer to be used. + #This setting might not be respected when not enough screen space is available. To force this setting disable "allow_fallback". + #Allowed Values: NONE, GUI_SMALL, GUI_COMPACT, INVENTORY_COMPACT, INVENTORY_FULL_SIZE + renderer_type = "GUI_COMPACT" + #Custom scale for effect renderer. + #Range: 1.0 ~ 12.0 + scale = 1.75 + #Prevent status effects with infinite duration from showing. + hide_infinite_effects = false + + [renderers.gui_renderer] + #Respect vanilla's "hideParticles" flag which prevents a status effect from showing when set via commands. + respect_hide_particles = true + #Maximum amount of status effects rendered in a single column. + #Range: 1 ~ 255 + max_rows = 255 + #Allow effect renderer to fall back to a more compact version (when available) if not enough screen space exists. Otherwise effect widgets might run off-screen. + allow_fallback = false + #Maximum amount of status effects rendered in a single row. + #Range: 1 ~ 255 + max_columns = 4 + #Screen side to render status effects on. + #Allowed Values: LEFT, RIGHT + screen_side = "LEFT" + #Offset on x-axis. + #Range: > 0 + offset_x = 3 + #Space between individual effect widgets on y-axis. + #Range: > 0 + widget_space_y = 1 + #Alpha value for effect widgets. + #Range: 0.0 ~ 1.0 + widget_alpha = 0.65 + #Space between individual effect widgets on x-axis. + #Range: > 0 + widget_space_x = 1 + #Effect renderer to be used. + #This setting might not be respected when not enough screen space is available. To force this setting disable "allow_fallback". + #Allowed Values: NONE, GUI_SMALL, GUI_COMPACT, INVENTORY_COMPACT, INVENTORY_FULL_SIZE + renderer_type = "GUI_COMPACT" + #Offset on y-axis. + #Range: > 0 + offset_y = 3 + #Custom scale for effect renderer. + #Range: 1.0 ~ 12.0 + scale = 1.8 + #Prevent status effects with infinite duration from showing. + hide_infinite_effects = false + +[widgets] + + [widgets.inventory_compact] + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + amplifier_color = "WHITE" + #Should the effect icon start to blink when the effect is running out. + blinking_alpha = true + #Should effect widgets have a blue or red border depening on if they are beneficial or not. + quality_border = false + #Show duration for ambient effects. + ambient_duration = false + #Display effect duration more compact, allows for always showing duration, even when it is very long. + compact_duration = false + #Top corner to draw effect amplifier in, or none. + #Allowed Values: NONE, TOP_LEFT, TOP_RIGHT + effect_amplifier = "TOP_RIGHT" + #Should ambient effect widgets have a cyan colored border. + ambient_border = true + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + duration_color = "GRAY" + #Hide infinite symbol shown for an effect duration that is too long to fit. + hide_infinite_duration = false + + [widgets.inventory_full_size] + #Effect name color. Setting this to "EFFECT" will use potion color. + #Effect name color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + name_color = "WHITE" + #Should the effect icon start to blink when the effect is running out. + blinking_alpha = true + #Should effect widgets have a blue or red border depening on if they are beneficial or not. + quality_border = false + #Show duration for ambient effects. + ambient_duration = true + #Should ambient effect widgets have a cyan colored border. + ambient_border = true + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + duration_color = "GRAY" + + [widgets.gui_small] + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + amplifier_color = "WHITE" + #Should the effect icon start to blink when the effect is running out. + blinking_alpha = true + #Should effect widgets have a blue or red border depening on if they are beneficial or not. + quality_border = false + #Show duration for ambient effects. + ambient_duration = false + #Top corner to draw effect amplifier in, or none. + #Allowed Values: NONE, TOP_LEFT, TOP_RIGHT + effect_amplifier = "TOP_RIGHT" + #Should ambient effect widgets have a cyan colored border. + ambient_border = true + #Draw harmful effects on a separate line from beneficial ones. This is turned on in vanilla. + separate_effects = false + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + duration_color = "GRAY" + #Hide infinite symbol shown for an effect duration that is too long to fit. + hide_infinite_duration = false + + [widgets.gui_compact] + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Effect amplifier color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + amplifier_color = "WHITE" + #Should the effect icon start to blink when the effect is running out. + blinking_alpha = true + #Display effect duration more compact, allows for always showing duration, even when it is very long. + compact_duration = false + #Should effect widgets have a blue or red border depening on if they are beneficial or not. + quality_border = false + #Show duration for ambient effects. + ambient_duration = false + #Top corner to draw effect amplifier in, or none. + #Allowed Values: NONE, TOP_LEFT, TOP_RIGHT + effect_amplifier = "TOP_RIGHT" + #Should ambient effect widgets have a cyan colored border. + ambient_border = true + #Draw harmful effects on a separate line from beneficial ones. This is turned on in vanilla. + separate_effects = false + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Effect duration color. Setting this to "EFFECT" will use potion color. + #Allowed Values: EFFECT, BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE + duration_color = "GRAY" + #Hide infinite symbol shown for an effect duration that is too long to fit. + hide_infinite_duration = false + diff --git a/minecraft/config/supplementaries-client.toml b/minecraft/config/supplementaries-client.toml index 0b08f16..30b0174 100644 --- a/minecraft/config/supplementaries-client.toml +++ b/minecraft/config/supplementaries-client.toml @@ -1,260 +1,260 @@ - -#Tweak and change the various block animations. -#Only cosmetic stuff in here so to leave default if not interested. -#Remember to delete this and server configs and let it refresh every once in a while since I might have tweaked it -[blocks] - - [blocks.globe] - #Enable a random globe texture for each world - random_world = true - #Displays current coordinates when using a globe - show_coordinates = true - - [blocks.notice_board] - #Allows notice board displayed text to be centered instead of being left aligned - centered_text = true - - [blocks.bunting] - #Makes buntings use normal block models with no animation for faster performance. When off this is only active when viewed from a distance - fast_buntings = false - - [blocks.clock_block] - #Display 24h time format. False for 12h format - 24h_format = true - - [blocks.pedestal] - #Enable displayed item spin - spin = true - #Spin speed - #Range: 0.0 ~ 100.0 - speed = 2.0 - #Enable special display types for items like swords, tridents or end crystals - fancy_renderers = true - - [blocks.bubble_block] - #Wobbling intensity. set to 0 to disable - #Range: 0.0 ~ 1.0 - wobble = 0.2 - #How fast it grows when created. 1 to be instant - #Range: 0.0 ~ 1.0 - grow_speed = 0.4 - - [blocks.item_shelf] - #Translate down displayed 3d blocks so that they are touching the shelf. - #Note that they will not be centered vertically this way - supported_blocks = true - - [blocks.wind_vane] - #Wind vane animation swings according to this equation: - #pitch(time) = max_angle_1*sin(2pi*time*pow/period_1) + *sin(2pi*time*pow/) - #where: - # - pow = max(1,redstone_power*) - # - time = time in ticks - # - redstone_power = block redstone power - # = how much frequency changes depending on power. 2 means it spins twice as fast each power level (2* for rain, 4* for thunder) - #increase to have more distinct indication when weather changes - #Range: 1.0 ~ 100.0 - power_scaling = 3.0 - #Amplitude (maximum pitch) of first sine wave - #Range: 0.0 ~ 360.0 - max_angle_1 = 30.0 - #Range: 0.0 ~ 360.0 - max_angle_2 = 10.0 - #Base period in ticks at 0 power of first sine wave - #Range: 0.0 ~ 2000.0 - period_1 = 450.0 - #This should be kept period_1/3 for a symmetric animation - #Range: 0.0 ~ 2000.0 - period_2 = 150.0 - - [blocks.flag] - #How slow a flag will oscillate. (Period of oscillation) - #Lower value = faster oscillation - #Range: 0 ~ 10000 - slowness = 100 - #How wavy the animation will be in pixels. (Wavelength) - #Range: 0.001 ~ 100.0 - wavyness = 4.0 - #How tall the wave lobes will be. (Wave amplitude) - #Range: 0.0 ~ 100.0 - intensity = 1.0 - #How much the wave amplitude increases each pixel. (Amplitude increment per pixel) - #Range: 0.0 ~ 10.0 - intensity_increment = 0.3 - #At which graphic settings flags will have a fancy renderer: 0=fast, 1=fancy, 2=fabulous - #Allowed Values: FAST, FANCY, FABULOUS - fanciness = "FABULOUS" - #Makes flags render as sideways banner. Ignores many of the previously defined configs - render_as_banner = false - - [blocks.captured_mobs] - #THIS IS ONLY FOR VISUALS! To allow more entities in cages you need to edit the respective tags! - #A list of mobs that can be ticked on client side when inside jars. Mainly used for stuff that has particles. Can cause issues and side effects so use with care - tickable_inside_jars = ["iceandfire:pixie", "druidcraft:dreadfish", "druidcraft:lunar_moth", "alexsmobs:hummingbird"] - - [blocks.hat_stand] - - [blocks.hat_stand.swing_physics] - min_angle = 0.0 - collision_force = 15.0 - damping = 1.625 - collision_inertia = 1.5 - collision_considers_entity_hitbox = true - frequency = 1.5 - max_angle = 54.999996 - - [blocks.turn_table] - #Display visual particles when a block is rotated - turn_particles = true - - [blocks.speaker_block] - #Mute speaker block incoming narrator messages and displays them in chat instead - mute_narrator = false - - [blocks.rope] - #Amplitude of rope wobbling effect - #Range: 0.0 ~ 20.0 - wobbling_amplitude = 1.2 - #Period of rope wobbling effect - #Range: 0.01 ~ 200.0 - wobbling_period = 12.0 - -#Particle parameters -[particles] - - #Rotation particle - [particles.turn_particle] - #An RGBA color - initial_color = "#002A77EA" - #An RGBA color - fade_color = "#0032BEFA" - -#General settings -[general] - #Disables Optifine warn screen - no_optifine_warn_screen = false - #Disables Amendments suggestion screen - no_amendments_screen = true - #Disable incompatible mods warning screen - no_incompatible_mods_screen = false - #Enable Quark style config button on main menu. Needs Configured installed to work - config_button = false - #Config button Y offset - #Range: -10000 ~ 10000 - config_button_y_offset = 0 - #Show some tooltip hints to guide players through the mod - tooltip_hints = true - #Show tooltips items that have been made placeable - placeable_tooltips = true - #Enables custom Configured config screen - custom_configured_screen = true - #I am very boring - unfunny = false - #ignore this - #Range: -10.0 ~ 10.0 - test1 = 0.0 - #ignore this - #Range: -10.0 ~ 10.0 - test2 = 0.0 - #ignore this - #Range: -10.0 ~ 10.0 - test3 = 0.0 - -#Game tweaks -[tweaks] - #Show a slime overlay when you hit an entity with a slimeball - overlay = true - #Allow to right click with a clock to display current time in numerical form - clock_right_click = true - #Adds an overlay to projectile weapons in gui displaying currently selected ammo - projectile_weapon_overlay = true - #Allow to right click with a compass to display current coordinates in numerical form - compass_right_click = false - #Renders an enchantment glint on placeable enchanted booksNote that turning this on will make book piles use tile renderer instead of baked models making them slower to render - placeable_books_glint = false - #Placeable books random colors - placeable_books_random_colors = ["brown", "orange", "yellow", "red", "green", "lime", "cyan", "blue", "purple"] - #Enables banner pattern tooltip image preview - banner_pattern_tooltip = true - #Enables paintings tooltip image preview - paintings_tooltip = true - #Enables sherds tooltip image preview - sherds_tooltip = true - #Size of the tooltip image used for Sherds, Blackboards, Banner patterns and Paintings - #Range: 1 ~ 255 - tooltip_image_size = 80 - #Wearing mob heads will apply post processing - mob_head_shaders = true - #Sends your current chat when you die while typing - send_chat_on_death = true - #Makes enderman heads use vanilla texture. Enable for texture pack support - enderman_head_texture_pack_support = true - - [tweaks.colored_maps] - #Needs the server config with same name on. If on here it will ignore the server one and keep vanilla colors - tinted_blocks_on_maps = true - #Colors tall grass same color as grass - tall_grass_color = true - #Makes colored maps a bit more accurate. Might affect performance - accurate_colors = false - -[items] - - [items.slingshot] - #Adds an overlay to slingshots in gui displaying currently selected ammo - overlay = true - #Render the block outline for distant blocks that are reachable with a slingshot enchanted with Stasis - stasis_block_outline = true - #An RGBA color for the block outline in hex format, for example 0x00000066 for vanilla outline colors - block_outline_color = "#FFFFFFFF" - #How big should a slingshot projectile look - #Range: 0.0 ~ 1.0 - projectile_scale = 0.5 - - [items.lunch_basket] - #Adds an overlay to lunch boxes in gui displaying currently selected food - overlay = true - - [items.altimeter] - #Click action for depth meter which displays current depth - click_action = true - #Allows depth meter to have unique textures per each dimension. Add more dimensions IDs and a matching texture in the correct path replacing ':' with '_' - #This is a list. Add more entries with syntax [[...]] - extra_dimension_textures = ["minecraft:the_nether", "minecraft:the_end"] - #Increasing this to be more than 1 will result in delth meter display image to be shown in float amounts instead of pixel perfect ones - #Range: 1 ~ 10 - texture_precision_multiplier = 1 - - [items.cannonball] - #Render cannonballs as 3D models - 3d_model = true - - [items.quiver] - #Z offset for quiver render when wearing armor. Useful for when you have custom armor bigger than vanilla to void clipping. Leave at -1 for automatic offset - #Range: -1.0 ~ 1.0 - armor_render_offset = -1.0 - #How quivers should render onto players - #Allowed Values: HIDDEN, BACK, HIP, THIGH - render_mode = "THIGH" - #How skeleton with quivers should render it - #Allowed Values: HIDDEN, BACK, HIP, THIGH - skeleton_render_mode = "THIGH" - #Adds an overlay to quivers in gui displaying currently selected arrow - overlay = true - #Allows using your mouse to select an arrow in the quiver GUI - mouse_movement_in_gui = true - #Quiver GUI X offset from default position - #Range: -1000 ~ 1000 - gui_x_offset = 0 - #Quiver GUI Y offset from default position - #Range: -1000 ~ 1000 - gui_y_offset = 0 - - [items.wrench] - #Display visual particles when a block is rotated - turn_particles = true - - [items.flute] - #Display visual particles when a playing a flute - note_particles = true - + +#Tweak and change the various block animations. +#Only cosmetic stuff in here so to leave default if not interested. +#Remember to delete this and server configs and let it refresh every once in a while since I might have tweaked it +[blocks] + + [blocks.globe] + #Enable a random globe texture for each world + random_world = true + #Displays current coordinates when using a globe + show_coordinates = true + + [blocks.notice_board] + #Allows notice board displayed text to be centered instead of being left aligned + centered_text = true + + [blocks.bunting] + #Makes buntings use normal block models with no animation for faster performance. When off this is only active when viewed from a distance + fast_buntings = true + + [blocks.clock_block] + #Display 24h time format. False for 12h format + 24h_format = true + + [blocks.pedestal] + #Enable displayed item spin + spin = true + #Spin speed + #Range: 0.0 ~ 100.0 + speed = 2.0 + #Enable special display types for items like swords, tridents or end crystals + fancy_renderers = false + + [blocks.bubble_block] + #Wobbling intensity. set to 0 to disable + #Range: 0.0 ~ 1.0 + wobble = 0.2 + #How fast it grows when created. 1 to be instant + #Range: 0.0 ~ 1.0 + grow_speed = 0.4 + + [blocks.item_shelf] + #Translate down displayed 3d blocks so that they are touching the shelf. + #Note that they will not be centered vertically this way + supported_blocks = true + + [blocks.wind_vane] + #Wind vane animation swings according to this equation: + #pitch(time) = max_angle_1*sin(2pi*time*pow/period_1) + *sin(2pi*time*pow/) + #where: + # - pow = max(1,redstone_power*) + # - time = time in ticks + # - redstone_power = block redstone power + # = how much frequency changes depending on power. 2 means it spins twice as fast each power level (2* for rain, 4* for thunder) + #increase to have more distinct indication when weather changes + #Range: 1.0 ~ 100.0 + power_scaling = 3.0 + #Amplitude (maximum pitch) of first sine wave + #Range: 0.0 ~ 360.0 + max_angle_1 = 30.0 + #Range: 0.0 ~ 360.0 + max_angle_2 = 10.0 + #Base period in ticks at 0 power of first sine wave + #Range: 0.0 ~ 2000.0 + period_1 = 450.0 + #This should be kept period_1/3 for a symmetric animation + #Range: 0.0 ~ 2000.0 + period_2 = 150.0 + + [blocks.flag] + #How slow a flag will oscillate. (Period of oscillation) + #Lower value = faster oscillation + #Range: 0 ~ 10000 + slowness = 100 + #How wavy the animation will be in pixels. (Wavelength) + #Range: 0.001 ~ 100.0 + wavyness = 4.0 + #How tall the wave lobes will be. (Wave amplitude) + #Range: 0.0 ~ 100.0 + intensity = 1.0 + #How much the wave amplitude increases each pixel. (Amplitude increment per pixel) + #Range: 0.0 ~ 10.0 + intensity_increment = 0.3 + #At which graphic settings flags will have a fancy renderer: 0=fast, 1=fancy, 2=fabulous + #Allowed Values: FAST, FANCY, FABULOUS + fanciness = "FANCY" + #Makes flags render as sideways banner. Ignores many of the previously defined configs + render_as_banner = false + + [blocks.captured_mobs] + #THIS IS ONLY FOR VISUALS! To allow more entities in cages you need to edit the respective tags! + #A list of mobs that can be ticked on client side when inside jars. Mainly used for stuff that has particles. Can cause issues and side effects so use with care + tickable_inside_jars = ["iceandfire:pixie", "druidcraft:dreadfish", "druidcraft:lunar_moth", "alexsmobs:hummingbird"] + + [blocks.hat_stand] + + [blocks.hat_stand.swing_physics] + frequency = 1.5 + collision_considers_entity_hitbox = true + collision_inertia = 1.5 + collision_force = 15.0 + min_angle = 0.0 + max_angle = 54.999996 + damping = 1.625 + + [blocks.turn_table] + #Display visual particles when a block is rotated + turn_particles = true + + [blocks.speaker_block] + #Mute speaker block incoming narrator messages and displays them in chat instead + mute_narrator = false + + [blocks.rope] + #Amplitude of rope wobbling effect + #Range: 0.0 ~ 20.0 + wobbling_amplitude = 1.2 + #Period of rope wobbling effect + #Range: 0.01 ~ 200.0 + wobbling_period = 12.0 + +#Particle parameters +[particles] + + #Rotation particle + [particles.turn_particle] + #An RGBA color + initial_color = "#002A77EA" + #An RGBA color + fade_color = "#0032BEFA" + +#General settings +[general] + #Disables Optifine warn screen + no_optifine_warn_screen = false + #Disables Amendments suggestion screen + no_amendments_screen = false + #Disable incompatible mods warning screen + no_incompatible_mods_screen = false + #Enable Quark style config button on main menu. Needs Configured installed to work + config_button = false + #Config button Y offset + #Range: -10000 ~ 10000 + config_button_y_offset = 0 + #Show some tooltip hints to guide players through the mod + tooltip_hints = true + #Show tooltips items that have been made placeable + placeable_tooltips = true + #Enables custom Configured config screen + custom_configured_screen = true + #I am very boring + unfunny = false + #ignore this + #Range: -10.0 ~ 10.0 + test1 = 0.0 + #ignore this + #Range: -10.0 ~ 10.0 + test2 = 0.0 + #ignore this + #Range: -10.0 ~ 10.0 + test3 = 0.0 + +#Game tweaks +[tweaks] + #Show a slime overlay when you hit an entity with a slimeball + overlay = true + #Allow to right click with a clock to display current time in numerical form + clock_right_click = true + #Adds an overlay to projectile weapons in gui displaying currently selected ammo + projectile_weapon_overlay = true + #Allow to right click with a compass to display current coordinates in numerical form + compass_right_click = false + #Renders an enchantment glint on placeable enchanted booksNote that turning this on will make book piles use tile renderer instead of baked models making them slower to render + placeable_books_glint = false + #Placeable books random colors + placeable_books_random_colors = ["brown", "orange", "yellow", "red", "green", "lime", "cyan", "blue", "purple"] + #Enables banner pattern tooltip image preview + banner_pattern_tooltip = true + #Enables paintings tooltip image preview + paintings_tooltip = true + #Enables sherds tooltip image preview + sherds_tooltip = true + #Size of the tooltip image used for Sherds, Blackboards, Banner patterns and Paintings + #Range: 1 ~ 255 + tooltip_image_size = 80 + #Wearing mob heads will apply post processing + mob_head_shaders = true + #Sends your current chat when you die while typing + send_chat_on_death = true + #Makes enderman heads use vanilla texture. Enable for texture pack support + enderman_head_texture_pack_support = true + + [tweaks.colored_maps] + #Needs the server config with same name on. If on here it will ignore the server one and keep vanilla colors + tinted_blocks_on_maps = true + #Colors tall grass same color as grass + tall_grass_color = true + #Makes colored maps a bit more accurate. Might affect performance + accurate_colors = false + +[items] + + [items.slingshot] + #Adds an overlay to slingshots in gui displaying currently selected ammo + overlay = true + #Render the block outline for distant blocks that are reachable with a slingshot enchanted with Stasis + stasis_block_outline = true + #An RGBA color for the block outline in hex format, for example 0x00000066 for vanilla outline colors + block_outline_color = "#FFFFFFFF" + #How big should a slingshot projectile look + #Range: 0.0 ~ 1.0 + projectile_scale = 0.5 + + [items.lunch_basket] + #Adds an overlay to lunch boxes in gui displaying currently selected food + overlay = true + + [items.altimeter] + #Click action for depth meter which displays current depth + click_action = true + #Allows depth meter to have unique textures per each dimension. Add more dimensions IDs and a matching texture in the correct path replacing ':' with '_' + #This is a list. Add more entries with syntax [[...]] + extra_dimension_textures = ["minecraft:the_nether", "minecraft:the_end"] + #Increasing this to be more than 1 will result in delth meter display image to be shown in float amounts instead of pixel perfect ones + #Range: 1 ~ 10 + texture_precision_multiplier = 1 + + [items.cannonball] + #Render cannonballs as 3D models + 3d_model = true + + [items.quiver] + #Z offset for quiver render when wearing armor. Useful for when you have custom armor bigger than vanilla to void clipping. Leave at -1 for automatic offset + #Range: -1.0 ~ 1.0 + armor_render_offset = -1.0 + #How quivers should render onto players + #Allowed Values: HIDDEN, BACK, HIP, THIGH + render_mode = "THIGH" + #How skeleton with quivers should render it + #Allowed Values: HIDDEN, BACK, HIP, THIGH + skeleton_render_mode = "THIGH" + #Adds an overlay to quivers in gui displaying currently selected arrow + overlay = true + #Allows using your mouse to select an arrow in the quiver GUI + mouse_movement_in_gui = true + #Quiver GUI X offset from default position + #Range: -1000 ~ 1000 + gui_x_offset = 0 + #Quiver GUI Y offset from default position + #Range: -1000 ~ 1000 + gui_y_offset = 0 + + [items.wrench] + #Display visual particles when a block is rotated + turn_particles = true + + [items.flute] + #Display visual particles when a playing a flute + note_particles = true + diff --git a/minecraft/config/supplementaries-common.toml b/minecraft/config/supplementaries-common.toml index de5a61c..5c2f19e 100644 --- a/minecraft/config/supplementaries-common.toml +++ b/minecraft/config/supplementaries-common.toml @@ -1,683 +1,683 @@ - -[redstone] - wind_vane = true - clock_block = true - redstone_illuminator = true - crank = true - cog_block = true - gold_door = true - gold_trapdoor = true - lock_block = true - relayer = true - - [redstone.speaker_block] - enabled = true - #Enable/disable speaker block narrator mode - narrator_enabled = true - #Max text - #Range: 0 ~ 10000 - max_text = 32 - #Maximum block range - #Range: 0 ~ 100000000 - range = 64 - - [redstone.bellows] - enabled = true - #bellows pushes air following this equation: - #air=(sin(2PI*ticks/period)<0), with period = base_period-(redstone_power-1)*power_scaling - #represents base period at 1 power - #Range: 1 ~ 512 - base_period = 78 - #entities with velocity greater than this won't be pushed - #Range: 0.0 ~ 16.0 - power_scaling = 2.0 - #velocity increase uses this equation: - #vel = base_vel*((range-entity_distance)/range) with base_vel = base_velocity_scaling/period - #note that the block will push further the faster it's pulsing - #Range: 0.0 ~ 64.0 - base_velocity_scaling = 5.0 - #maximum range - #note that it will still only keep alive the two fire blocks closer to it - #Range: 0 ~ 16 - range = 5 - - [redstone.spring_launcher] - enabled = true - #spring launcher launch speed - #Range: 0.0 ~ 16.0 - velocity = 1.5 - #fall distance needed to trigger the automatic spring launch - #Range: 0 ~ 512 - fall_height_required = 5 - - [redstone.enderman_head] - enabled = true - drop_head = true - #Time to increase 1 power level when being looked at - #Range: 0 ~ 10000 - ticks_to_increase_power = 15 - #do enderman heads work when looked from any side? - work_from_any_side = false - - [redstone.turn_table] - enabled = true - #can rotate entities standing on it? - rotate_entities = true - #Allows turn table to shuffle containers content when rotated over horizontal axis - shuffle_containers = true - - [redstone.pulley_block] - enabled = true - #Chance for a new mineshaft elevator piece to spawn - #Range: 0.0 ~ 1.0 - mineshaft_elevator = 0.035 - - [redstone.dispenser_minecart] - enabled = true - #Makes projectiles shot from dispenser minecart retain the minecart velocity and be shot at an angle when the minecart is on a rail slope - adjust_projectile_angle = true - - [redstone.faucet] - enabled = true - #Turn off to prevent faucets from dropping items - spill_items = true - #Allows faucets to fill entities inventories - fill_entities_below = false - - [redstone.crystal_display] - enabled = true - #Allows chaining 2 crystal displays, letting one power the other to its left IF its own power exceeds 10. Given power will be its own divided by 10. Note that to work the decimal display must NOT have power directly behind it. Doing so will override the behavior to non chaining mode - chaining = true - -[functional] - fodder = true - hourglass = true - - [functional.rope] - #Allows ropes to be supported & attached to solid block sides - block_side_attachment = true - #Makes sliding down ropes as fast as free falling, still negating fall damage - slide_on_fall = true - #In case you want to disable supplementaries ropes you can specify here another mod rope and they will be used for rope arrows and in mineshafts instead - rope_override = "supplementaries:rope" - #Enables horizontal placement of ropes. Disabling will make ropes always non solid - horizontal_ropes = true - #Use this config to turn allow supplementaries to replace all items tagged as #supplementaies:ropes with supplementaries own rope or turn them to air instead. This is applied to all loot tables (chests and drops) - #Allowed Values: REPLACE, NONE, REMOVE - replace_in_loot_tables = "NONE" - - [functional.jar] - enabled = true - #Jar liquid capacity: leave at 12 for pixel accuracy - #Range: 0 ~ 1024 - capacity = 12 - #Allow right click to instantly eat or drink food or potions inside a placed jar. - #Disable if you think this ability is op (honey for example). Cookies are excluded - drink_from_jar = false - #Allows the player to directly drink from jar items - drink_from_jar_item = false - #Dynamically allows all small mobs inside jars depending on their hitbox size - jar_auto_detect = false - #Allow Jars to capture small mobs - jar_capture = true - #Allow Jars to hold cookies - jar_cookies = true - #Allow Jars to hold liquids from bottles, buckets and bowls - jar_liquids = true - - [functional.cage] - enabled = true - #Allows all entities to be captured by cages and jars. Not meant for survival - allow_all_mobs = false - #Allows all baby mobs to be captured by cages - cage_allow_all_babies = false - #Dynamically allows all small mobs inside cages depending on their hitbox size - cage_auto_detect = false - #Makes it so all (hostile) mobs captured by cages and jars will be set to persistent so they won't despawn when released - persistent_mobs = false - #Health percentage under which mobs will be allowed to be captured by cages and jars. Leave at 100 to accept any health level - #Range: 1 ~ 100 - health_threshold = 100 - #When on, if a mob is tameable, it will only be capturable when tamed. - require_taming = true - - [functional.safe] - enabled = true - #Makes safes only breakable by their owner or by a player in creative - prevent_breaking = false - #Make safes simpler so they do not require keys: - #they will be bound to the first person that opens one and only that person will be able to interact with them - simple_safes = false - - [functional.sack] - enabled = true - #Penalize the player with slowness effect when carrying too many sacks - sack_penalty = true - #Maximum number of sacks after which the overencumbered effect will be applied. Each multiple of this number will increase the effect strength by one - #Range: 0 ~ 50 - sack_increment = 2 - #How many slots should a sack have - #Range: 1 ~ 27 - slots = 9 - - [functional.bamboo_spikes] - enabled = true - tipped_spikes = true - #Allows entities killed by spikes to drop loot as if they were killed by a player - player_loot = false - #Alternative mode for bamboo spikes. Allows only harmful effects to be applied on them and they obtain infinite durability - only_allow_harmful_effects = true - #Populate the creative inventory with all tipped spikes variations - populate_creative_tab = true - - [functional.urn] - enabled = true - #Chance for an urn to spawn a critter from the urn_spawn tag - #Range: 0.0 ~ 1.0 - critter_spawn_chance = 0.01 - cave_urns = true - - [functional.soap] - enabled = true - #Allows soap to clean blocks in-world. Disable to prevent in-world block cleaning while keeping soap item and recipes functional - block_cleaning_enabled = true - #Dyed Bock types that cannot be cleaned with soap - clean_blacklist = ["minecraft:glazed_terracotta", "botania:mystical_flower", "mna:chimerite_crystal", "botania:floating_flower", ",minecraft:mushroom", "botania:mushroom", "botania:tall_mystical_flower", "botania:petal_block", "morered:network_cable", "xycraft_world:glowing_shiny_aurey_block", "xycraft_world:shiny_aurey_block", "xycraft_world:rgb_lamp", "xycraft_world:glowing_rgb_viewer", "xycraft_world:glowing_matte_rgb_block", "xycraft_world:rgb_lamp_pole"] - - #This is a map of special blocks that can be cleaned with soap - [functional.soap.special_blocks] - "quark:dirty_glass_pane" = "minecraft:glass_pane" - "quark:dirty_glass" = "minecraft:glass" - "#alexscaves:cave_paintings" = "alexscaves:smooth_limestone" - - [functional.cannon] - enabled = true - #Makes TNT-like block shot from a cannon explode on impact - #Allowed Values: IGNITE, IGNITE_ON_IMPACT, NONE - explode_tnt = "IGNITE" - #Cannon fire power multiplier - #Range: 0.0 ~ 5.0 - fire_power = 0.6 - #Time for a cannon to fire a projectile after it has been lit up - #Range: 0 ~ 500 - fuse_time = 40 - #Time for a cannon to be able to fire again after it has been fired - #Range: 0 ~ 500 - cooldown = 60 - music_disc_heave_ho = true - - [functional.cannon.cannonball] - enabled = true - #Cannonball power scaling. Higher values will make cannonballs have more energy. Reminder that the damage and breaking power of a cannonball is proportional to its energy (speed squared) times this constant - #Range: 0.0 ~ 100.0 - power_scaling = 3.5 - #Radius of the 'explosion' when a cannonball hits a block. Set to 0 to disable - #Range: 0.0 ~ 10.0 - break_radius = 1.1 - - [functional.present] - enabled = true - trapped_present = true - - [functional.flax] - enabled = true - wild_flax = true - - [functional.lumisene] - enabled = true - #Gives the flammable effext also when merely stepping on lumisene. Turning this off if you think effects are not something that should be applied like that and just by drinking it. - #Range: 0 ~ 10000 - flammable_from_lumisene_block_duration = 50 - - [functional.lumisene.lumisene_bottle] - #Enables lumisene bottles and the flammable effect and lumisene bottles. Turn off if you think its over the top and doesnt match with existing effects - enabled = true - #Duration of the flammable effect when you drink a lumisene bottle - #Range: 0 ~ 10000 - flammable_duration = 300 - #Duration of the glowing effect when you drink a lumisene bottle - #Range: 0 ~ 10000 - glowing_duration = 200 - -[building] - lapis_bricks = true - deepslate_lamp = true - end_stone_lamp = true - blackstone_lamp = true - stone_lamp = true - stone_tile = true - blackstone_tile = true - bunting = true - sconce = true - sconce_lever = true - pancake = true - checker_block = true - raked_gravel = true - feather_block = true - statue = true - doormat = true - flint_block = true - fine_wood = true - candle_holder = true - fire_pit = true - wicker_fence = true - - [building.blackboard] - enabled = true - #Enable to draw directly on a blackboard using any dye. Gui still only works in black and white - colored_blackboard = false - #Interaction mode for blackboards - #Allowed Values: BOTH, GUI, MANUAL - interaction_mode = "BOTH" - - [building.gravel_bricks] - enabled = true - - [building.slidy_block] - enabled = true - #Slidy block speed - #Range: 0.0 ~ 1.0 - speed = 0.125 - - [building.timber_frame] - enabled = true - #Allow placing a timber frame directly on a block by holding shift - swap_on_shift = false - #Allows axes to remove a framed block leaving the contained block intact - axes_strip = true - #Replace a timber frame with wattle and daub block when daub is placed in it - replace_daub = true - - [building.iron_gate] - enabled = true - #Allows two iron gates to be opened simultaneously when on top of the other - double_opening = true - #Makes iron (ang gold) gates behave like their door counterpart so for example iron gates will only be openable by redstone - door-like_gates = false - - [building.item_shelf] - enabled = true - #Makes item shelves climbable - climbable_shelves = false - - [building.sugar_cube] - enabled = true - #Makes sugar cubes dissolve in rain - dissolve_in_rain = true - #Duration in seconts of speed effect garanted to horses that eat a sugar cube - #Range: 0 ~ 1000 - horse_speed_duration = 10 - - [building.planter] - enabled = true - #Makes so saplings that grow in a planter will break it turning into rooted dirt - broken_by_sapling = false - #When Farmers Delight is on planter will also act like rich soil and use it in its recipe - rich_soil_planter = true - - [building.notice_board] - enabled = true - #Allows notice boards to accept and display any item, not just maps and books - allow_any_item = false - #Enables a GUI for the block. Not needed as the block just holds one item which you can place by clicking on it - gui = true - - [building.pedestal] - enabled = true - #If enabled end crystals placed on a pedestals will provide an enchantment power bonus equivalent to 3 bookshelves - #Range: 0.0 ~ 100.0 - crystal_enchanting = 3.0 - - [building.ash] - enabled = true - #Burnable blocks will have a chance to create ash layers when burned. Greater this number the greater the chance will be - #Range: 0.0 ~ 1.0 - ash_from_fire_chance = 1.0 - #Burning mobs will drop ash when they die - ash_from_burning_mobs = true - #Allows rain to wash away ash layers overtime - rain_wash_ash = true - #Use a datapack to tweak rarity - basalt_ash = true - - [building.flag] - enabled = true - #Allows right/left clicking on a stick to lower/raise a flag attached to it - stick_pole = true - #Maximum allowed pole length - #Range: 0 ~ 256 - pole_length = 16 - - [building.goblet] - enabled = true - #Allows drinking from goblets - allow_drinking = true - - [building.globe] - enabled = true - sepia_globe = true - - [building.sign_post] - enabled = true - - [building.sign_post.way_sign] - #Entirely disables them from spawning - enabled = true - #With this option road signs will display the distance to the structure that they are pointing to - show_distance_text = true - - [building.daub] - enabled = true - wattle_and_daub = true - - [building.ash_bricks] - enabled = true - - [building.hat_stand] - enabled = true - #Allow all items to go on hat stand - unrestricted = false - - [building.awning] - enabled = true - #Allows having slanted awnings. Disabled if you feel its cursed. - slant = true - #Allows entities to fall through awnings, when shifting. - shift_through = true - #Bouncing angle of slanted awnings - #Range: 0.0 ~ 90.0 - angle = 69.44395478041653 - - [building.flower_box] - enabled = true - #Makes so flower boxes can only contain one tall flower item per block - simple_mode = true - - [building.netherite_doors] - door = true - trapdoor = true - -[tools] - candy = true - stasis = true - altimeter = true - confetti_popper = true - - [tools.quiver] - enabled = true - #Allows using a quiver without being slowed down - use_without_slow = true - #Arrow stacks that can fit inside a quiver. Requires reboot - #Range: 1 ~ 9 - slots = 6 - #Increase this number to alter the probability for a Skeleton with quiver to spawn. - #Range: 0.0 ~ 1.0 - quiver_skeleton_spawn_chance = 0.025 - #If the chance for a skeleton to spawn with a quiver will be affected by local difficulty. If true, you wont ever see them on easy and very rarely on normal. Similar logic to equipment - quiver_skeleton_spawn_affected_by_local_difficulty = true - #Allows quiver to only be used when in offhand or in curio slot - only_works_in_curio = false - #Arrows you pickup will try to go in a quiver if available provided it has some arrow of the same type - quiver_pickup = true - - [tools.lunch_basket] - enabled = true - #Allows lunch baskets to be placed on the ground - placeable = true - #Arrow stacks that can fit inside a lunch basket. Requires reboot - #Range: 1 ~ 9 - slots = 6 - - [tools.slice_map] - enabled = true - #Multiplier that will be applied by slice maps to lower their range compared to normal maps - #Range: 0.0 ~ 1.0 - range_multiplier = 0.25 - - [tools.bubble_blower] - enabled = true - #Amount of soap consumed per bubble block placed - #Range: 1 ~ 25 - stasis_cost = 5 - - [tools.bubble_blower.bubble_block] - #Max lifetime of bubble blocks. Set to 10000 to have it infinite - #Range: 1 ~ 10000 - lifetime = 1200 - #Can bubble break when touched on? - break_when_touched = true - #If true feather falling prevents breaking bubbles when stepping on them - feather_falling_prevents_breaking = true - - [tools.wrench] - enabled = true - #Allows wrenches to bypass a block interaction action prioritizing their own when on said hand - #Allowed Values: MAIN_HAND, OFF_HAND, BOTH, NONE - bypass_when_on = "MAIN_HAND" - - [tools.rope_arrow] - enabled = true - #Max number of rope items allowed to be stored inside a rope arrow - #Range: 1 ~ 256 - capacity = 32 - #Makes rope arrows exclusive to crossbows - exclusive_to_crossbows = false - - [tools.flute] - enabled = true - #Radius in which an unbound flute will search pets - #Range: 0 ~ 500 - unbound_radius = 64 - #Max distance at which a bound flute will allow a pet to teleport - #Range: 0 ~ 500 - bound_distance = 64 - - [tools.bomb] - enabled = true - #Bomb explosion radius (damage depends on this) - #Range: 0.1 ~ 10.0 - explosion_radius = 2.0 - #Do bombs break blocks like tnt? - #Allowed Values: ALL, WEAK, NONE - break_blocks = "WEAK" - #Put here any number other than 0 to have your bombs explode after a certain amount of ticks instead than on contact - #Range: 0 ~ 100000 - bomb_fuse = 0 - #Enable bomb item cooldown - cooldown = true - - [tools.bomb.blue_bomb] - #Bomb explosion radius (damage depends on this) - #Range: 0.1 ~ 10.0 - explosion_radius = 5.15 - #Do bombs break blocks like tnt? - #Allowed Values: ALL, WEAK, NONE - break_blocks = "WEAK" - - [tools.slingshot] - enabled = true - #Slingshot range multiplier. Affect the initial projectile speed - #Range: 0.0 ~ 5.0 - range_multiplier = 1.0 - #Time in ticks to fully charge a slingshot - #Range: 0 ~ 100 - charge_time = 20 - #Deceleration for the stasis projectile - #Range: 0.1 ~ 1.0 - stasis_deceleration = 0.9625 - #Allow enderman to intercept any slingshot projectile - unrestricted_enderman_intercept = true - #Allows buckets to be thrown by slingshots. Thrown buckets will place their content when they land - allow_buckets = true - #Damage that items in the 'supplementaries:slingshot_damageable' tag will deal. Scales with thrown speed. Tag is empty by default. - #Range: 0.0 ~ 100.0 - damageable_damage = 0.5 - #Allows splash potions to be thrown by slingshots - allow_splash_potions = false - #Allows bombs to be thrown by slingshots - allow_bombs = false - #Allows fire charges to be thrown by slingshots - allow_fire_charges = false - #Allows snowballs to be thrown by slingshots - allow_snowballs = false - #Allows enderpearls to be thrown by slingshots - allow_enderpearls = false - - [tools.antique_ink] - enabled = true - -#General settings -[general] - #Enable Creative Tab - creative_tab = false - #Set to false to disable custom dispenser behaviors (i.e: filling jars) if for some reason they are causing trouble - dispensers = true - #Creates a creative tab full of filled jars - jar_tab = false - #Save generated resources to disk in a 'debug' folder in your game directory. Mainly for debug purposes but can be used to generate assets in all wood types for your mods :0 - debug_save_dynamic_pack = false - #Turn this on to disable any interaction on blocks placed by other players. This affects item shelves, signs, flower pots, and boards. Useful for protected servers. Note that it will affect only blocks placed after this is turned on and such blocks will keep being protected after this option is disabled - server_protection = false - #Disable startup messages and sanity check that the mod performs to inform of possible detected crashes that might occur due to issues - sanity_checks_messages = true - #slightly increase this or decrease this number to tweak the red merchant spawn chance. Won't spawn at 0 and will spawn twice as often on 2 - #Range: 0.0 ~ 10.0 - red_merchant_spawn_multiplier = 1.0 - -#Vanilla tweaks -[tweaks] - - [tweaks.dragon_banner_pattern] - #Adds dragon banner pattern made from dragon head - enabled = true - - [tweaks.shulker_helmet] - #Allows wearing shulker shells - enabled = true - - [tweaks.golden_apple_disenchant] - enabled = true - - [tweaks.traders_open_doors] - #Allows traders to open doors (because they couldn't apparently) - enabled = true - - [tweaks.dispenser_tweaks] - #Allows dispensers to use axes on blocks to strip logs and scrape off copper oxidation and wax - axe_strip = true - #Enables shooting ender pearls with dispensers - shoot_ender_pearls = true - #Enables extracting bundles items with dispensers - extract_from_bundles = true - - [tweaks.throwable_bricks] - #Throw bricks at your foes! Might break glass blocks - enabled = true - - [tweaks.placeable_sticks] - #Allow placeable sticks - sticks = true - #Allow placeable blaze rods - blaze_rods = true - - [tweaks.placeable_gunpowder] - #Allow placeable gunpowder - enabled = true - #Number of ticks it takes for gunpowder to burn 1 stage (out of 8). Increase to slow it down - #Range: 0 ~ 20 - speed = 2 - #Age at which it spread to the next gunpowder block. Also affects speed - #Range: 0 ~ 8 - spread_age = 2 - - [tweaks.raked_gravel] - #allow gravel to be raked with a hoe - enabled = true - - [tweaks.bottle_xp] - #Allow bottling up xp by using a bottle on an enchanting table - enabled = false - #bottling health cost - #Range: 0 ~ 20 - cost = 2 - #Block that should be clicked on for bottling to work. Leave blank for enchanting table. You can put another block here from another mod if you find it more fitting - target_block = "" - - [tweaks.map_tweaks] - #Cartographers will sell 'adventurer maps' that will lead to a random vanilla structure (choosen from a thought out preset list). - #Best kept disabled if you are adding custom adventurer maps with datapack (check the wiki for more) - random_adventurer_maps = true - #Select a random structure to look for instead of iterating through all of the ones in the tag returning the closest. Turning on will make ones that have diff structures (aka all different ruined portals) show up more. On could take much more time to compute - random_adventurer_maps_select_random_structure = true - #Enables beacons, lodestones, respawn anchors, beds, conduits, portals to be displayed on maps by clicking one of them with a map - block_map_markers = true - #Shows a death marker on your map when you die. Requires a recovery compass in player inventory or similar - #Allowed Values: OFF, WITH_COMPASS, ALWAYS - death_marker = "WITH_COMPASS" - #If Quark is installed adventurer maps will be replaced by adventurer quills. These will not lag the server when generating - quill_adventurer_maps = true - #If Quark is installed replaces buried treasure and mansion maps with their equivalent quill form. This removes the lag spike they create when generating - quill_vanilla_maps = true - #Miminum search radius for quill. Used to incrase the radius of vanilla searches. For reference buried treasures are at 50 and locate is at 100 chunks - #Range: 10 ~ 600 - min_search_radius = 75 - #Makes blocks tagged as 'tinted_on_map' use their tint color. This allows for accurate biome colors for water and grass as well as other custom block that use any tint - tinted_blocks_on_maps = true - - [tweaks.placeable_books] - #Allows written books to be placed down. Requires shift clicking - written_books = true - #Allow books and enchanted books to be placed on the ground - enabled = true - #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 - #Range: 0.0 ~ 5.0 - book_power = 1.0 - #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 - #Range: 0.0 ~ 5.0 - enchanted_book_power = 1.334 - #Allow all books to be placed both vertically and horizontally - mixed_books = false - - [tweaks.zombie_horse] - #Feed a stack of rotten flesh to a skeleton horse to buff him up to a zombie horse - zombie_horse_conversion = true - #Amount of rotten flesh needed - #Range: 1 ~ 1000 - rotten_flesh = 64 - #Allows zombie horses to be ridden underwater - rideable_underwater = true - #Convert a zombie horse back by feeding it a golden carrot - zombie_horse_inverse_conversion = true - - [tweaks.noteblocks_scare] - #Noteblocks with a zombie head will scare off villagers - enabled = true - - [tweaks.bad_luck_tweaks] - #Hit a void cat, get the unluck - cat_unluck = true - #If you have unluck you are more likely to get hit by a lighting - lightning_unluck = true - - [tweaks.item_lore] - #Adds a recipe to add 'lore' strings to an item by combining it with a named nametag - enabled = true - - [tweaks.sus_recipes] - #Adds recipes to craft suspicious gravel and suspicious sand - enabled = true - - [tweaks.slimed_effect] - enabled = true - #Allow slimeballs to be thrown - throwable_slimeballs = true - #Thrown slimeballs will shortly nerf the player jump height. Disable if you don't want this effect as it can be quite powerful - #Allowed Values: NEVER, ALWAYS, NORMAL_DIFFICULTY, HARD_DIFFICULTY - hinders_jump = "NORMAL_DIFFICULTY" - #Duration of the slimed effect in ticks - #Range: 0 ~ 1000 - duration = 300 - #Chance that a slime mob will apply slimed effect on successful attack. Multiplied by the slime size - #Range: 0.0 ~ 1.0 - chance_per_slime_size = 0.15 - + +[redstone] + wind_vane = true + clock_block = true + redstone_illuminator = true + crank = true + cog_block = true + gold_door = true + gold_trapdoor = true + lock_block = true + relayer = true + + [redstone.speaker_block] + enabled = true + #Enable/disable speaker block narrator mode + narrator_enabled = true + #Max text + #Range: 0 ~ 10000 + max_text = 32 + #Maximum block range + #Range: 0 ~ 100000000 + range = 64 + + [redstone.bellows] + enabled = true + #bellows pushes air following this equation: + #air=(sin(2PI*ticks/period)<0), with period = base_period-(redstone_power-1)*power_scaling + #represents base period at 1 power + #Range: 1 ~ 512 + base_period = 78 + #entities with velocity greater than this won't be pushed + #Range: 0.0 ~ 16.0 + power_scaling = 2.0 + #velocity increase uses this equation: + #vel = base_vel*((range-entity_distance)/range) with base_vel = base_velocity_scaling/period + #note that the block will push further the faster it's pulsing + #Range: 0.0 ~ 64.0 + base_velocity_scaling = 5.0 + #maximum range + #note that it will still only keep alive the two fire blocks closer to it + #Range: 0 ~ 16 + range = 5 + + [redstone.spring_launcher] + enabled = true + #spring launcher launch speed + #Range: 0.0 ~ 16.0 + velocity = 1.5 + #fall distance needed to trigger the automatic spring launch + #Range: 0 ~ 512 + fall_height_required = 5 + + [redstone.enderman_head] + enabled = true + drop_head = true + #Time to increase 1 power level when being looked at + #Range: 0 ~ 10000 + ticks_to_increase_power = 15 + #do enderman heads work when looked from any side? + work_from_any_side = false + + [redstone.turn_table] + enabled = true + #can rotate entities standing on it? + rotate_entities = true + #Allows turn table to shuffle containers content when rotated over horizontal axis + shuffle_containers = true + + [redstone.pulley_block] + enabled = true + #Chance for a new mineshaft elevator piece to spawn + #Range: 0.0 ~ 1.0 + mineshaft_elevator = 0.035 + + [redstone.dispenser_minecart] + enabled = true + #Makes projectiles shot from dispenser minecart retain the minecart velocity and be shot at an angle when the minecart is on a rail slope + adjust_projectile_angle = true + + [redstone.faucet] + enabled = true + #Turn off to prevent faucets from dropping items + spill_items = true + #Allows faucets to fill entities inventories + fill_entities_below = false + + [redstone.crystal_display] + enabled = true + #Allows chaining 2 crystal displays, letting one power the other to its left IF its own power exceeds 10. Given power will be its own divided by 10. Note that to work the decimal display must NOT have power directly behind it. Doing so will override the behavior to non chaining mode + chaining = true + +[functional] + fodder = true + hourglass = true + + [functional.rope] + #Allows ropes to be supported & attached to solid block sides + block_side_attachment = true + #Makes sliding down ropes as fast as free falling, still negating fall damage + slide_on_fall = true + #In case you want to disable supplementaries ropes you can specify here another mod rope and they will be used for rope arrows and in mineshafts instead + rope_override = "supplementaries:rope" + #Enables horizontal placement of ropes. Disabling will make ropes always non solid + horizontal_ropes = true + #Use this config to turn allow supplementaries to replace all items tagged as #supplementaies:ropes with supplementaries own rope or turn them to air instead. This is applied to all loot tables (chests and drops) + #Allowed Values: REPLACE, NONE, REMOVE + replace_in_loot_tables = "NONE" + + [functional.jar] + enabled = true + #Jar liquid capacity: leave at 12 for pixel accuracy + #Range: 0 ~ 1024 + capacity = 12 + #Allow right click to instantly eat or drink food or potions inside a placed jar. + #Disable if you think this ability is op (honey for example). Cookies are excluded + drink_from_jar = false + #Allows the player to directly drink from jar items + drink_from_jar_item = false + #Dynamically allows all small mobs inside jars depending on their hitbox size + jar_auto_detect = false + #Allow Jars to capture small mobs + jar_capture = true + #Allow Jars to hold cookies + jar_cookies = true + #Allow Jars to hold liquids from bottles, buckets and bowls + jar_liquids = true + + [functional.cage] + enabled = true + #Allows all entities to be captured by cages and jars. Not meant for survival + allow_all_mobs = false + #Allows all baby mobs to be captured by cages + cage_allow_all_babies = false + #Dynamically allows all small mobs inside cages depending on their hitbox size + cage_auto_detect = false + #Makes it so all (hostile) mobs captured by cages and jars will be set to persistent so they won't despawn when released + persistent_mobs = false + #Health percentage under which mobs will be allowed to be captured by cages and jars. Leave at 100 to accept any health level + #Range: 1 ~ 100 + health_threshold = 100 + #When on, if a mob is tameable, it will only be capturable when tamed. + require_taming = true + + [functional.safe] + enabled = true + #Makes safes only breakable by their owner or by a player in creative + prevent_breaking = false + #Make safes simpler so they do not require keys: + #they will be bound to the first person that opens one and only that person will be able to interact with them + simple_safes = false + + [functional.sack] + enabled = true + #Penalize the player with slowness effect when carrying too many sacks + sack_penalty = true + #Maximum number of sacks after which the overencumbered effect will be applied. Each multiple of this number will increase the effect strength by one + #Range: 0 ~ 50 + sack_increment = 2 + #How many slots should a sack have + #Range: 1 ~ 27 + slots = 9 + + [functional.bamboo_spikes] + enabled = true + tipped_spikes = true + #Allows entities killed by spikes to drop loot as if they were killed by a player + player_loot = false + #Alternative mode for bamboo spikes. Allows only harmful effects to be applied on them and they obtain infinite durability + only_allow_harmful_effects = true + #Populate the creative inventory with all tipped spikes variations + populate_creative_tab = true + + [functional.urn] + enabled = true + #Chance for an urn to spawn a critter from the urn_spawn tag + #Range: 0.0 ~ 1.0 + critter_spawn_chance = 0.01 + cave_urns = true + + [functional.soap] + enabled = true + #Dyed Bock types that cannot be cleaned with soap + clean_blacklist = ["minecraft:glazed_terracotta", "botania:mystical_flower", "mna:chimerite_crystal", "botania:floating_flower", ",minecraft:mushroom", "botania:mushroom", "botania:tall_mystical_flower", "botania:petal_block", "morered:network_cable", "xycraft_world:glowing_shiny_aurey_block", "xycraft_world:shiny_aurey_block", "xycraft_world:rgb_lamp", "xycraft_world:glowing_rgb_viewer", "xycraft_world:glowing_matte_rgb_block", "xycraft_world:rgb_lamp_pole"] + #Allows soap to clean blocks in-world. Disable to prevent in-world block cleaning while keeping soap item and recipes functional + block_cleaning_enabled = true + + #This is a map of special blocks that can be cleaned with soap + [functional.soap.special_blocks] + "quark:dirty_glass_pane" = "minecraft:glass_pane" + "#alexscaves:cave_paintings" = "alexscaves:smooth_limestone" + "quark:dirty_glass" = "minecraft:glass" + + [functional.cannon] + enabled = true + #Makes TNT-like block shot from a cannon explode on impact + #Allowed Values: IGNITE, IGNITE_ON_IMPACT, NONE + explode_tnt = "IGNITE" + #Cannon fire power multiplier + #Range: 0.0 ~ 5.0 + fire_power = 0.6 + #Time for a cannon to fire a projectile after it has been lit up + #Range: 0 ~ 500 + fuse_time = 40 + #Time for a cannon to be able to fire again after it has been fired + #Range: 0 ~ 500 + cooldown = 60 + music_disc_heave_ho = true + + [functional.cannon.cannonball] + enabled = true + #Cannonball power scaling. Higher values will make cannonballs have more energy. Reminder that the damage and breaking power of a cannonball is proportional to its energy (speed squared) times this constant + #Range: 0.0 ~ 100.0 + power_scaling = 3.5 + #Radius of the 'explosion' when a cannonball hits a block. Set to 0 to disable + #Range: 0.0 ~ 10.0 + break_radius = 1.1 + + [functional.present] + enabled = true + trapped_present = true + + [functional.flax] + enabled = true + wild_flax = true + + [functional.lumisene] + enabled = true + #Gives the flammable effext also when merely stepping on lumisene. Turning this off if you think effects are not something that should be applied like that and just by drinking it. + #Range: 0 ~ 10000 + flammable_from_lumisene_block_duration = 50 + + [functional.lumisene.lumisene_bottle] + #Enables lumisene bottles and the flammable effect and lumisene bottles. Turn off if you think its over the top and doesnt match with existing effects + enabled = true + #Duration of the flammable effect when you drink a lumisene bottle + #Range: 0 ~ 10000 + flammable_duration = 300 + #Duration of the glowing effect when you drink a lumisene bottle + #Range: 0 ~ 10000 + glowing_duration = 200 + +[building] + lapis_bricks = true + deepslate_lamp = true + end_stone_lamp = true + blackstone_lamp = true + stone_lamp = true + stone_tile = true + blackstone_tile = true + bunting = true + sconce = true + sconce_lever = true + pancake = true + checker_block = true + raked_gravel = true + feather_block = true + statue = true + doormat = true + flint_block = true + fine_wood = true + candle_holder = true + fire_pit = true + wicker_fence = true + + [building.blackboard] + enabled = true + #Enable to draw directly on a blackboard using any dye. Gui still only works in black and white + colored_blackboard = false + #Interaction mode for blackboards + #Allowed Values: BOTH, GUI, MANUAL + interaction_mode = "BOTH" + + [building.gravel_bricks] + enabled = true + + [building.slidy_block] + enabled = true + #Slidy block speed + #Range: 0.0 ~ 1.0 + speed = 0.125 + + [building.timber_frame] + enabled = true + #Allow placing a timber frame directly on a block by holding shift + swap_on_shift = false + #Allows axes to remove a framed block leaving the contained block intact + axes_strip = true + #Replace a timber frame with wattle and daub block when daub is placed in it + replace_daub = true + + [building.iron_gate] + enabled = true + #Allows two iron gates to be opened simultaneously when on top of the other + double_opening = true + #Makes iron (ang gold) gates behave like their door counterpart so for example iron gates will only be openable by redstone + door-like_gates = false + + [building.item_shelf] + enabled = true + #Makes item shelves climbable + climbable_shelves = false + + [building.sugar_cube] + enabled = true + #Makes sugar cubes dissolve in rain + dissolve_in_rain = true + #Duration in seconts of speed effect garanted to horses that eat a sugar cube + #Range: 0 ~ 1000 + horse_speed_duration = 10 + + [building.planter] + enabled = true + #Makes so saplings that grow in a planter will break it turning into rooted dirt + broken_by_sapling = false + #When Farmers Delight is on planter will also act like rich soil and use it in its recipe + rich_soil_planter = true + + [building.notice_board] + enabled = true + #Allows notice boards to accept and display any item, not just maps and books + allow_any_item = false + #Enables a GUI for the block. Not needed as the block just holds one item which you can place by clicking on it + gui = true + + [building.pedestal] + enabled = true + #If enabled end crystals placed on a pedestals will provide an enchantment power bonus equivalent to 3 bookshelves + #Range: 0.0 ~ 100.0 + crystal_enchanting = 3.0 + + [building.ash] + enabled = true + #Burnable blocks will have a chance to create ash layers when burned. Greater this number the greater the chance will be + #Range: 0.0 ~ 1.0 + ash_from_fire_chance = 1.0 + #Burning mobs will drop ash when they die + ash_from_burning_mobs = true + #Allows rain to wash away ash layers overtime + rain_wash_ash = true + #Use a datapack to tweak rarity + basalt_ash = true + + [building.flag] + enabled = true + #Allows right/left clicking on a stick to lower/raise a flag attached to it + stick_pole = true + #Maximum allowed pole length + #Range: 0 ~ 256 + pole_length = 16 + + [building.goblet] + enabled = true + #Allows drinking from goblets + allow_drinking = true + + [building.globe] + enabled = true + sepia_globe = true + + [building.sign_post] + enabled = true + + [building.sign_post.way_sign] + #Entirely disables them from spawning + enabled = true + #With this option road signs will display the distance to the structure that they are pointing to + show_distance_text = true + + [building.daub] + enabled = true + wattle_and_daub = true + + [building.ash_bricks] + enabled = true + + [building.hat_stand] + enabled = true + #Allow all items to go on hat stand + unrestricted = false + + [building.awning] + enabled = true + #Allows having slanted awnings. Disabled if you feel its cursed. + slant = true + #Allows entities to fall through awnings, when shifting. + shift_through = true + #Bouncing angle of slanted awnings + #Range: 0.0 ~ 90.0 + angle = 69.44395478041653 + + [building.flower_box] + enabled = true + #Makes so flower boxes can only contain one tall flower item per block + simple_mode = true + + [building.netherite_doors] + door = true + trapdoor = true + +[tools] + candy = true + stasis = true + altimeter = true + confetti_popper = true + + [tools.quiver] + enabled = true + #Allows using a quiver without being slowed down + use_without_slow = true + #Arrow stacks that can fit inside a quiver. Requires reboot + #Range: 1 ~ 9 + slots = 6 + #Increase this number to alter the probability for a Skeleton with quiver to spawn. + #Range: 0.0 ~ 1.0 + quiver_skeleton_spawn_chance = 0.025 + #If the chance for a skeleton to spawn with a quiver will be affected by local difficulty. If true, you wont ever see them on easy and very rarely on normal. Similar logic to equipment + quiver_skeleton_spawn_affected_by_local_difficulty = true + #Allows quiver to only be used when in offhand or in curio slot + only_works_in_curio = false + #Arrows you pickup will try to go in a quiver if available provided it has some arrow of the same type + quiver_pickup = true + + [tools.lunch_basket] + enabled = true + #Allows lunch baskets to be placed on the ground + placeable = true + #Arrow stacks that can fit inside a lunch basket. Requires reboot + #Range: 1 ~ 9 + slots = 6 + + [tools.slice_map] + enabled = true + #Multiplier that will be applied by slice maps to lower their range compared to normal maps + #Range: 0.0 ~ 1.0 + range_multiplier = 0.25 + + [tools.bubble_blower] + enabled = true + #Amount of soap consumed per bubble block placed + #Range: 1 ~ 25 + stasis_cost = 5 + + [tools.bubble_blower.bubble_block] + #Max lifetime of bubble blocks. Set to 10000 to have it infinite + #Range: 1 ~ 10000 + lifetime = 1200 + #Can bubble break when touched on? + break_when_touched = true + #If true feather falling prevents breaking bubbles when stepping on them + feather_falling_prevents_breaking = true + + [tools.wrench] + enabled = true + #Allows wrenches to bypass a block interaction action prioritizing their own when on said hand + #Allowed Values: MAIN_HAND, OFF_HAND, BOTH, NONE + bypass_when_on = "MAIN_HAND" + + [tools.rope_arrow] + enabled = true + #Max number of rope items allowed to be stored inside a rope arrow + #Range: 1 ~ 256 + capacity = 32 + #Makes rope arrows exclusive to crossbows + exclusive_to_crossbows = false + + [tools.flute] + enabled = true + #Radius in which an unbound flute will search pets + #Range: 0 ~ 500 + unbound_radius = 64 + #Max distance at which a bound flute will allow a pet to teleport + #Range: 0 ~ 500 + bound_distance = 64 + + [tools.bomb] + enabled = true + #Bomb explosion radius (damage depends on this) + #Range: 0.1 ~ 10.0 + explosion_radius = 2.0 + #Do bombs break blocks like tnt? + #Allowed Values: ALL, WEAK, NONE + break_blocks = "WEAK" + #Put here any number other than 0 to have your bombs explode after a certain amount of ticks instead than on contact + #Range: 0 ~ 100000 + bomb_fuse = 0 + #Enable bomb item cooldown + cooldown = true + + [tools.bomb.blue_bomb] + #Bomb explosion radius (damage depends on this) + #Range: 0.1 ~ 10.0 + explosion_radius = 5.15 + #Do bombs break blocks like tnt? + #Allowed Values: ALL, WEAK, NONE + break_blocks = "WEAK" + + [tools.slingshot] + enabled = true + #Slingshot range multiplier. Affect the initial projectile speed + #Range: 0.0 ~ 5.0 + range_multiplier = 1.0 + #Time in ticks to fully charge a slingshot + #Range: 0 ~ 100 + charge_time = 20 + #Deceleration for the stasis projectile + #Range: 0.1 ~ 1.0 + stasis_deceleration = 0.9625 + #Allow enderman to intercept any slingshot projectile + unrestricted_enderman_intercept = true + #Allows buckets to be thrown by slingshots. Thrown buckets will place their content when they land + allow_buckets = true + #Damage that items in the 'supplementaries:slingshot_damageable' tag will deal. Scales with thrown speed. Tag is empty by default. + #Range: 0.0 ~ 100.0 + damageable_damage = 0.5 + #Allows splash potions to be thrown by slingshots + allow_splash_potions = false + #Allows bombs to be thrown by slingshots + allow_bombs = false + #Allows fire charges to be thrown by slingshots + allow_fire_charges = false + #Allows snowballs to be thrown by slingshots + allow_snowballs = false + #Allows enderpearls to be thrown by slingshots + allow_enderpearls = false + + [tools.antique_ink] + enabled = true + +#General settings +[general] + #Enable Creative Tab + creative_tab = false + #Set to false to disable custom dispenser behaviors (i.e: filling jars) if for some reason they are causing trouble + dispensers = true + #Creates a creative tab full of filled jars + jar_tab = false + #Save generated resources to disk in a 'debug' folder in your game directory. Mainly for debug purposes but can be used to generate assets in all wood types for your mods :0 + debug_save_dynamic_pack = false + #Turn this on to disable any interaction on blocks placed by other players. This affects item shelves, signs, flower pots, and boards. Useful for protected servers. Note that it will affect only blocks placed after this is turned on and such blocks will keep being protected after this option is disabled + server_protection = false + #Disable startup messages and sanity check that the mod performs to inform of possible detected crashes that might occur due to issues + sanity_checks_messages = true + #slightly increase this or decrease this number to tweak the red merchant spawn chance. Won't spawn at 0 and will spawn twice as often on 2 + #Range: 0.0 ~ 10.0 + red_merchant_spawn_multiplier = 1.0 + +#Vanilla tweaks +[tweaks] + + [tweaks.dragon_banner_pattern] + #Adds dragon banner pattern made from dragon head + enabled = true + + [tweaks.shulker_helmet] + #Allows wearing shulker shells + enabled = true + + [tweaks.golden_apple_disenchant] + enabled = true + + [tweaks.traders_open_doors] + #Allows traders to open doors (because they couldn't apparently) + enabled = true + + [tweaks.dispenser_tweaks] + #Allows dispensers to use axes on blocks to strip logs and scrape off copper oxidation and wax + axe_strip = true + #Enables shooting ender pearls with dispensers + shoot_ender_pearls = true + #Enables extracting bundles items with dispensers + extract_from_bundles = true + + [tweaks.throwable_bricks] + #Throw bricks at your foes! Might break glass blocks + enabled = true + + [tweaks.placeable_sticks] + #Allow placeable sticks + sticks = true + #Allow placeable blaze rods + blaze_rods = true + + [tweaks.placeable_gunpowder] + #Allow placeable gunpowder + enabled = true + #Number of ticks it takes for gunpowder to burn 1 stage (out of 8). Increase to slow it down + #Range: 0 ~ 20 + speed = 2 + #Age at which it spread to the next gunpowder block. Also affects speed + #Range: 0 ~ 8 + spread_age = 2 + + [tweaks.raked_gravel] + #allow gravel to be raked with a hoe + enabled = true + + [tweaks.bottle_xp] + #Allow bottling up xp by using a bottle on an enchanting table + enabled = false + #bottling health cost + #Range: 0 ~ 20 + cost = 2 + #Block that should be clicked on for bottling to work. Leave blank for enchanting table. You can put another block here from another mod if you find it more fitting + target_block = "" + + [tweaks.map_tweaks] + #Cartographers will sell 'adventurer maps' that will lead to a random vanilla structure (choosen from a thought out preset list). + #Best kept disabled if you are adding custom adventurer maps with datapack (check the wiki for more) + random_adventurer_maps = true + #Select a random structure to look for instead of iterating through all of the ones in the tag returning the closest. Turning on will make ones that have diff structures (aka all different ruined portals) show up more. On could take much more time to compute + random_adventurer_maps_select_random_structure = true + #Enables beacons, lodestones, respawn anchors, beds, conduits, portals to be displayed on maps by clicking one of them with a map + block_map_markers = true + #Shows a death marker on your map when you die. Requires a recovery compass in player inventory or similar + #Allowed Values: OFF, WITH_COMPASS, ALWAYS + death_marker = "WITH_COMPASS" + #If Quark is installed adventurer maps will be replaced by adventurer quills. These will not lag the server when generating + quill_adventurer_maps = true + #If Quark is installed replaces buried treasure and mansion maps with their equivalent quill form. This removes the lag spike they create when generating + quill_vanilla_maps = true + #Miminum search radius for quill. Used to incrase the radius of vanilla searches. For reference buried treasures are at 50 and locate is at 100 chunks + #Range: 10 ~ 600 + min_search_radius = 75 + #Makes blocks tagged as 'tinted_on_map' use their tint color. This allows for accurate biome colors for water and grass as well as other custom block that use any tint + tinted_blocks_on_maps = true + + [tweaks.placeable_books] + #Allows written books to be placed down. Requires shift clicking + written_books = true + #Allow books and enchanted books to be placed on the ground + enabled = true + #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 + #Range: 0.0 ~ 5.0 + book_power = 1.0 + #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 + #Range: 0.0 ~ 5.0 + enchanted_book_power = 1.334 + #Allow all books to be placed both vertically and horizontally + mixed_books = false + + [tweaks.zombie_horse] + #Feed a stack of rotten flesh to a skeleton horse to buff him up to a zombie horse + zombie_horse_conversion = true + #Amount of rotten flesh needed + #Range: 1 ~ 1000 + rotten_flesh = 64 + #Allows zombie horses to be ridden underwater + rideable_underwater = true + #Convert a zombie horse back by feeding it a golden carrot + zombie_horse_inverse_conversion = true + + [tweaks.noteblocks_scare] + #Noteblocks with a zombie head will scare off villagers + enabled = true + + [tweaks.bad_luck_tweaks] + #Hit a void cat, get the unluck + cat_unluck = true + #If you have unluck you are more likely to get hit by a lighting + lightning_unluck = true + + [tweaks.item_lore] + #Adds a recipe to add 'lore' strings to an item by combining it with a named nametag + enabled = true + + [tweaks.sus_recipes] + #Adds recipes to craft suspicious gravel and suspicious sand + enabled = true + + [tweaks.slimed_effect] + enabled = true + #Allow slimeballs to be thrown + throwable_slimeballs = true + #Thrown slimeballs will shortly nerf the player jump height. Disable if you don't want this effect as it can be quite powerful + #Allowed Values: NEVER, ALWAYS, NORMAL_DIFFICULTY, HARD_DIFFICULTY + hinders_jump = "NORMAL_DIFFICULTY" + #Duration of the slimed effect in ticks + #Range: 0 ~ 1000 + duration = 300 + #Chance that a slime mob will apply slimed effect on successful attack. Multiplied by the slime size + #Range: 0.0 ~ 1.0 + chance_per_slime_size = 0.15 + diff --git a/minecraft/config/suppsquared-common.toml b/minecraft/config/suppsquared-common.toml new file mode 100644 index 0000000..9e69298 --- /dev/null +++ b/minecraft/config/suppsquared-common.toml @@ -0,0 +1,7 @@ + +[features] + #Enable plaques + plaques = true + #Enable lanterns + lanterns = true + diff --git a/minecraft/config/swplanets.jsonc b/minecraft/config/swplanets.jsonc new file mode 100644 index 0000000..d1ce13c --- /dev/null +++ b/minecraft/config/swplanets.jsonc @@ -0,0 +1,26 @@ +{ + /* + * What should be the radius of the explosion for the laser when the blaster have the Explosion Upgrade. + * Type: Float + */ + "explosionUpgradeRadius": 2.0, + // Should the explosion upgrade for the blaster set the world on fire? + "explosionUpgradeFire": false, + /* + * What is the max energy a blaster can have ? + * Type: Long + */ + "maxBlasterEnergy": 10000, + /* + * What should be the attack modifier for the light sabers? + * Type: Integer + */ + "lightSabersAttackModifier": 13, + // Should jawa's be able to trade ? + "jawaTrade": true, + /* + * What should be the maximum amount of trades a Jawa can do. + * Type: Integer + */ + "jawaMaxTrade": 7 +} \ No newline at end of file diff --git a/minecraft/config/tconjei-client.toml b/minecraft/config/tconjei-client.toml new file mode 100644 index 0000000..d699a3e --- /dev/null +++ b/minecraft/config/tconjei-client.toml @@ -0,0 +1,3 @@ +#Enable tooltip under Tinker's materials +enable_tooltip = true + diff --git a/minecraft/config/tempad-client.jsonc b/minecraft/config/tempad-client.jsonc new file mode 100644 index 0000000..073497d --- /dev/null +++ b/minecraft/config/tempad-client.jsonc @@ -0,0 +1,9 @@ +{ + /* + * The color of the Tempad's gui text and the portals. + * Type: Integer + */ + "color": -37120, + // Whether or not to render the blur on summoned Timedoors. This feature is experimental, having it enabled may make it incompatible with certain mods. + "renderBlur": false +} \ No newline at end of file diff --git a/minecraft/config/tempad.jsonc b/minecraft/config/tempad.jsonc new file mode 100644 index 0000000..c82a101 --- /dev/null +++ b/minecraft/config/tempad.jsonc @@ -0,0 +1,51 @@ +{ + /* + * The distance from the player that the Tempad is summoned. + * Range: 1 - 10 + */ + "distanceFromPlayer": 3, + /* + * The amount of time in ticks that the timedoor will wait before closing itself after the owner walked through it. + * Type: Integer + */ + "timedoorWaitTime": 60, + /* + * The amount of time in ticks that the Tempad will add to the wait time when the player is in the Tempad. + * Type: Integer + */ + "timedoorAddWaitTime": 40, + // Whether or not the Tempad should allow interdimensional travel. + "allowInterdimensionalTravel": true, + // Whether or not the Tempad should allow exporting of locations onto Location Cards. + "allowExporting": true, + // Whether or not the Tempad should consume a cooldown when exporting a location. + "consumeCooldown": true, + // Whether or not the Tempad should allow teleporting to waystones. + "waystonesCompat": true, + // Whether or not the Tempad should allow teleporting to waystones from the Fabric version of Waystones by LordDeatHunter (fwaystones) (ignore on forge). + "fabricWaystonesCompat": true, + /* + * The amount of fuel that the timedoor will consume on opening of the timedoor. + * Type: Integer + */ + "timedoorFuelAmount": 180, + /* + * The amount of fuel that the timedoor can hold. + * Type: Integer + */ + "timedoorFuelCapacity": 1000, + /* + * The amount of fuel that the advanced timedoor will consume on opening of the timedoor. + * Type: Integer + */ + "advancedTimedoorFuelAmount": 1, + /* + * The amount of fuel that the advanced timedoor can hold. + * Type: Integer + */ + "advancedTimedoorFuelCapacity": 1000, + // The type of fuel that the timedoor will consume. + "timedoorFuelType": "tempad:timer", + // The type of fuel that the advanced timedoor will consume. + "advancedTimedoorFuelType": "tempad:unlimited" +} \ No newline at end of file diff --git a/minecraft/config/tgears-client.toml b/minecraft/config/tgears-client.toml new file mode 100644 index 0000000..55d2c12 --- /dev/null +++ b/minecraft/config/tgears-client.toml @@ -0,0 +1,5 @@ + +["The Client Settings"] + #Enable the goggles when looking at TConstruct blocks + is_goggles_enabled = true + diff --git a/minecraft/config/tgears-common.toml b/minecraft/config/tgears-common.toml new file mode 100644 index 0000000..946b315 --- /dev/null +++ b/minecraft/config/tgears-common.toml @@ -0,0 +1,29 @@ + +["The Blaze Burner Factors(temperature = 800 * factor, rate = 10 * factor)"] + #Factor when the burner is extinguished + extinguished_factor = 0.5 + #Factor when the burner is kindled + kindled_factor = 1.0 + #Factor when the burner is seething + seething_factor = 2.0 + +["The Polishing Percentages"] + #The damage to item when polishing + polishing_damage = 0.1 + #The shield provided when polishing + polishing_shield = 0.1 + +["The Crushing"] + #The damage to tool with crushing modifier + crushing_damage = 5 + +["The Tinker's Machines"] + #The ratio of the range to the normal fan + fan_range = 1.5 + #The ratio of the speed to the normal drill + drill_speed = 2.0 + #The damage to entity from the silk touch drill + silk_touch_drill_damage = 1.0 + #The fortune level of the fortune drill + fortune_drill_level = 3 + diff --git a/minecraft/config/the_bumblezone/bee_aggression.toml b/minecraft/config/the_bumblezone/bee_aggression.toml new file mode 100644 index 0000000..323fd8d --- /dev/null +++ b/minecraft/config/the_bumblezone/bee_aggression.toml @@ -0,0 +1,100 @@ + +["Wrath of the Hive Options"] + + ["Wrath of the Hive Options"."Bees Aggression Options"] + # + #----------------------------------------------------- + # + # If set to true, any entity that harms a beehemoth and is not owner of it, + # that entity will get Wrath of the Hive effect. + beehemothTriggersWrath = false + # + #----------------------------------------------------- + # + # Determines if Wrath of the Hive can be applied to players outside + # the Bumblezone dimension when they pick up Honey blocks, take honey + # from Filled Porous Honey blocks, or drink Honey Bottles. + # + allowWrathOfTheHiveOutsideBumblezone = false + # + #----------------------------------------------------- + # + # Show the orangish particles when you get Wrath of the Hive + # after you angered the bees in the Bumblezone dimension. + # + showWrathOfTheHiveParticles = true + # + #----------------------------------------------------- + # + # Turn off or on the ability to get Wrath of the Hive effect. + # + # The bees can see you through walls and will have + # speed, absorption, and strength effects applied to them. + # + # Will also affect the bee's aggression toward other mobs in the dimension. + # Note: Peaceful mode will always override the bee aggressive setting. + # + aggressiveBees = true + # + #----------------------------------------------------- + # + # How far away the bee can be to become angry and hunt you down if + # you get Wrath of the Hive effect in the Bumblezone dimension. + # + # Will also affect the bee's aggression range toward other mobs in the dimension. + # + #Range: 1 ~ 200 + aggressionTriggerRadius = 64 + # + #----------------------------------------------------- + # + # How long bees will keep their effects for (speed, absorption, strength). + # Note: This is in ticks. 20 ticks = 1 second. And bee's normal anger will remain. + # + #Range: > 1 + howLongWrathOfTheHiveLasts = 1680 + # + #----------------------------------------------------- + # + # How long entities will keep Protection of the Hive effect after feeding bees + # or Brood Blocks. Bees will attack anyone that damages someone with the effect. + # + #Range: > 1 + howLongProtectionOfTheHiveLasts = 6000 + + ["Wrath of the Hive Options"."Bees Effects Options"] + # + #----------------------------------------------------- + # + # How fast bees move along the ground (Not while flying). + # You will see this a lot when bees are about to attack + # you, they tend to touch the floor and the speed boost + # makes them dash forward at you. Set this to higher for + # faster dash attacks from bees. + # + #Range: > 1 + speedBoostLevel = 2 + # + #----------------------------------------------------- + # + # How much extra health bees get that always instantly regenerates. + # This means you need to deal more damage than the extra health gives + # order to actually damage the bee's real health bar. + # + # For example, Absorption 1 here makes bees get 4 extra padding of health (2 full hearts). + # Your attacks need to deal 4 1/2 or more damage to actually be able to + # kill the bee. This means using Bane of Arthropod 5 is needed to kill bees + # if you set the absorption to a higher value like 2 or 3. + # If you set this to like 5 or something, bees may be invicible! Game over. + # + #Range: > 1 + absorptionBoostLevel = 1 + # + #----------------------------------------------------- + # + # How strong the bees attacks become. + # (5 or higher will instant kill you without armor). + # + #Range: > 1 + strengthBoostLevel = 1 + diff --git a/minecraft/config/the_bumblezone/client.toml b/minecraft/config/the_bumblezone/client.toml new file mode 100644 index 0000000..ddcb132 --- /dev/null +++ b/minecraft/config/the_bumblezone/client.toml @@ -0,0 +1,189 @@ +# +#----------------------------------------------------- +# +# If on, Flight of the Bumblebee by Rimsky Korsakov will play when you have Wrath of the Hive effect on. +# +playWrathOfHiveEffectMusic = true +# +#----------------------------------------------------- +# +# Display Bee Queen's speech bubble that shows possible trades you can do. +# +showBeeQueenSpeechBubble = true +# +#----------------------------------------------------- +# +# If on, Bee-ware of the Temple by LudoCrypt will play when you are in Sempiternal Sanctum. +# +playSempiternalSanctumMusic = true +# +#----------------------------------------------------- +# Whether to not render the shader for Essence Blocks. +# Will default to normal block textures instead. +# +disableEssenceBlockShaders = false + +["The Bumblezone Client Dimension Options"] + # + #----------------------------------------------------- + # + # How bright the fog is in the Bumblezone dimension. + # + # The brightness is represented as a percentage + # so 0 will be pitch black, 50 will be half + # as bright, 100 will be normal orange brightness, + # and 100000 will be white. + # + #Range: 0.0 ~ 100000.0 + fogBrightnessPercentage = 100.0 + # + #----------------------------------------------------- + # + # How thick the fog in Bumblezone is. + # 2 is a little bit of fog and 50 is super thick fog. Decimal values are allowed. + # + #Range: 0.0 ~ 100.0 + fogThickness = 4.0 + # + #----------------------------------------------------- + # + # Whether Bumblezone dimension has thick fog or not. + # + enableDimensionFog = true + +["Essence Item HUD Rendering Configs"] + # + #----------------------------------------------------- + # + # How many of the rotating texture layers to show on HUD when Essence item is in offhand slot. + # 0 to turn the rendering off. + # + #Range: 0 ~ 3 + essenceItemHUDVisualEffectLayers = 3 + # + #----------------------------------------------------- + # + # How fast to spin the rotating texture layers on HUD when Essence item is in offhand slot. + # 0.5 for half speed. 0 to turn the spinning off. + # + #Range: 0.0 ~ 100.0 + essenceItemHUDVisualEffectSpeed = 1.0 + +["Knowing Essence Highlighting Configs (see block and entity tags for even more options)"] + # + #----------------------------------------------------- + # + # Whether Knowing Essence will highlight bosses in purple. (Does not override the forced highlighting entity tag) + # + knowingEssenceHighlightBosses = true + # + #----------------------------------------------------- + # + # Whether Knowing Essence will highlight monsters in red. (Does not override the forced highlighting entity tag) + # + knowingEssenceHighlightMonsters = true + # + #----------------------------------------------------- + # + # Whether Knowing Essence will highlight mobs you tamed in green. (Does not override the forced highlighting entity tag) + # + knowingEssenceHighlightTamed = true + # + #----------------------------------------------------- + # + # Whether Knowing Essence will highlight any other mobs in orange. (Does not override the forced highlighting entity tag) + # + knowingEssenceHighlightLivingEntities = true + # + #----------------------------------------------------- + # + # Whether Knowing Essence will highlight common items in world in white color. + # + knowingEssenceHighlightCommonItems = true + # + #----------------------------------------------------- + # + # Whether Knowing Essence will highlight uncommon items in world in yellow color. + # + knowingEssenceHighlightUncommonItems = true + # + #----------------------------------------------------- + # + # Whether Knowing Essence will highlight rare items in world in cyan color. + # + knowingEssenceHighlightRareItems = true + # + #----------------------------------------------------- + # + # Whether Knowing Essence will highlight epic items in world in purple color. + # + knowingEssenceHighlightEpicItems = true + # + #----------------------------------------------------- + # + # Whether Knowing Essence will tell you the name of structures you are in. + # + knowingEssenceStructureNameClient = true + # + #----------------------------------------------------- + # + # X coordinate for where to render the structure name on screen. (Based on bottom left corner) + # + #Range: 0 ~ 10000 + knowingEssenceStructureNameXCoord = 4 + # + #----------------------------------------------------- + # + # Y coordinate for where to render the structure name on screen. (Based on bottom left corner) + # + #Range: 0 ~ 10000 + knowingEssenceStructureNameYCoord = 16 + +["Radiance Essence configs"] + # + #----------------------------------------------------- + # + # Whether Radiance Essence will show the durability of your armor. + # + radianceEssenceArmorDurability = true + # + #----------------------------------------------------- + # + # X coordinate for where to render the armor durability on screen. (Based on bottom left corner) + # + #Range: 0 ~ 10000 + radianceEssenceArmorDurabilityXCoord = 4 + # + #----------------------------------------------------- + # + # Y coordinate for where to render the armor durability on screen. (Based on bottom left corner) + # + #Range: 0 ~ 10000 + radianceEssenceArmorDurabilityYCoord = 16 + +["Entity Model/Renderer configs"] + # + #----------------------------------------------------- + # + # Turn this on if Variant Bee's model is messed up by another mod or resourcepack. Requires restart. + # + useBackupModelForVariantBee = false + +["Silly Stuff configs"] + #---------------------------- + # + # For when you want the joy of bees always! + showBeesOnGuiAllYearRound = false + #---------------------------- + # + # Gui Bees On April Fools! + showBeesOnGuiOnAprilFools = true + #---------------------------- + # + # Show the Gui Bees only when player is in Bumblezone Dimension + restrictBeesOnGuiToBzDimension = false + #---------------------------- + # + # 10000 bees for your GUIs! + maximumBeesOnGui = false + diff --git a/minecraft/config/the_bumblezone/dimension.toml b/minecraft/config/the_bumblezone/dimension.toml new file mode 100644 index 0000000..5e20600 --- /dev/null +++ b/minecraft/config/the_bumblezone/dimension.toml @@ -0,0 +1,74 @@ + +["The Bumblezone Welcome Options"] + # + #----------------------------------------------------- + # + # Whether to show message saying to check out Bumblezone's advancements when you get enar beehive for first time. + # + enableInitialWelcomeMessage = true + +["The Bumblezone Teleportation Options"] + # + #----------------------------------------------------- + # + # Allow Bumblezone mod to handle teleporting into the Bumblezone dimension. + # + enableEntranceTeleportation = true + # + #----------------------------------------------------- + # + # Allow Bumblezone mod to handle teleporting out of the Bumblezone dimension. + # + enableExitTeleportation = true + # + #----------------------------------------------------- + # + # If this is enabled, mobs that originally spawned in Bumblezone will be teleported + # to 0, 0 center of the Overworld when exiting Bumblezone dimension. + # + forceBumblezoneOriginMobToOverworldCenter = true + # + #----------------------------------------------------- + # + # Makes leaving The Bumblezone dimension always places you back + # at the Overworld regardless of which dimension you originally + # came from. Use this option if this dimension becomes locked in + # with another dimension so you are stuck teleporting between the + # two and cannot get back to the Overworld. + # + forceExitToOverworld = false + # + #----------------------------------------------------- + # + # Makes throwing Enderpearls at Bee Nests or Hives only + # work in the Overworld. What this means setting this to true makes it + # only possible to enter The Bumblezone dimension from the Overworld + onlyOverworldHivesTeleports = false + # + #----------------------------------------------------- + # + # If the block tag the_bumblezone:dimension_teleportation/required_blocks_under_beehive_to_teleport + # has blocks specified and this config is set to true, then player will get a warning if they + # throw an Enderpearl at a Bee Nest/Beehive but the block under it is + # not the correct required block. It will also tell the player what + # block is needed under the Bee Nest/Beehive to teleport to the dimension. + # + warnPlayersOfWrongBlockUnderHive = true + # + #----------------------------------------------------- + # + # Should teleporting to and from The Bumblezone work + # with modded Bee Nests and modded Beehives as well. + # + allowTeleportationWithModdedBeehives = true + # + #----------------------------------------------------- + # + # Changes the default dimension that teleporting exiting will take mobs to + # if there is no previously saved dimension on the mob. + # Use this option ONLY if your modpack's default dimension is not the Overworld. + # This will affect forceExitToOverworld, forceBumblezoneOriginMobToOverworldCenter, and onlyOverworldHivesTeleports + # config options so that they use this new default dimension instead of Overworld. + # + defaultDimension = "minecraft:overworld" + diff --git a/minecraft/config/the_bumblezone/general.toml b/minecraft/config/the_bumblezone/general.toml new file mode 100644 index 0000000..3e64f0b --- /dev/null +++ b/minecraft/config/the_bumblezone/general.toml @@ -0,0 +1,459 @@ + +["Variant Bee Options"] + # + #----------------------------------------------------- + # + # Rates for Variant Bees to spawn when doing normal mob spawning over time. + # Will not affect spawnrates of this mob from worldgen generating chunks. + # For the worldgen spawning rates, overriding the biome json with a datapack is required. + # + #Range: 0.0 ~ 1.0 + variantBeeAfterWorldgenSpawnRate = 0.05 + # + #----------------------------------------------------- + # + # What skin variations of Variant Bees can spawn! Add more bee textures to this folder assets\the_bumblezone\textures\entity\bee_variants and define the bee in this config! + # + variantBeeTypes = ["redtail_bee", "green_bee", "blue_bee", "white_bee", "ukraine_bee", "trans_bee", "asexual_bee", "agender_bee", "aroace_bee", "aromantic_bee", "bisexual_bee", "pan_bee", "enby_bee", "reverse_bee", "neapolitan_bee", "rainbow_bee"] + +["Beehemoth Options"] + # + #----------------------------------------------------- + # + # Base speed for the Beehemoth when being rode by a player. + # + #Range: 0.0 ~ 100.0 + beehemothSpeed = 0.95 + # + #----------------------------------------------------- + # + # Allows tamed Beehemoths to take damage from owner. + # + beehemothFriendlyFire = true + +["Special Bee Spawning Options"] + # + #----------------------------------------------------- + # + # Whether Bumblezone will handle spawning vanilla bees near players in the Bumblezone to make it feel full of Bees. + # Bees too far will be despawned in Bumblezone unless the bee has a hive, is name tagged, or is set to persistent. + # Note: Modded bees will not be spawned through this system. Those will be spawned by normal biome spawning. + # + specialBeeSpawning = true + # + #----------------------------------------------------- + # + # If specialBeeSpawning is set to true, this config controls how many vanilla bees should be + # near each player in Bumblezone dimension. Higher numbers like 100 is insane lol. 25 is nice. + # + #Range: 0 ~ 1000 + nearbyBeesPerPlayerInBz = 25 + +["Bee Loot Injection Options"] + # + #----------------------------------------------------- + # + # Whether Bee Stingers should drop from adult Bees that die while still having their stinger. + # This pulls from this loot table for the drops: `the_bumblezone:entities/bee_stinger_drops` + # + beeLootInjection = true + # + #----------------------------------------------------- + # + # Whether Bee Stingers should drop from adult modded Bees that die while still having their stinger. + # This pulls from this loot table for the drops: `the_bumblezone:entities/bee_stinger_drops` + # + moddedBeeLootInjection = true + +["Brewing Recipe Options"] + # + #----------------------------------------------------- + # + # Whether Glistering Honey Crystals can be used to make Potions of Luck + glisteringHoneyBrewingRecipe = true + # + #----------------------------------------------------- + # + # Whether Bee Stingers can be used to make Potions of Long Poison + beeStingerBrewingRecipe = true + # + #----------------------------------------------------- + # + # Whether Bee Soup can be used to make Potions of Neurotoxin + beeSoupBrewingRecipe = true + +["Enchantments Options"] + # + #----------------------------------------------------- + # + # Maximum level that Neurotoxin enchantment can be. Will not retroactively fixed existing enchanted items. + # + #Range: 1 ~ 255 + neurotoxinMaxLevel = 2 + # + #----------------------------------------------------- + # + # Sets maximum tick duration the Paralyzed effect can be on an entity. Actions that reapply Paralyzed can still reset the timer and keep entity stunned. + # + #Range: 1 ~ 1000000 + paralyzedMaxTickDuration = 600 + +["General Mechanics Options"] + # + #----------------------------------------------------- + # + # Should Dispensers always drop the Glass Bottle when using specific + # bottle items on certain The Bumblezone blocks? + # + # Example: Using Honey Bottle to feed Honeycomb Brood Blocks will grow the larva and + # drop the Glass Bottle instead of putting it back into Dispenser if this is set to true. + # + dispensersDropGlassBottles = false + # + #----------------------------------------------------- + # + # Brood Blocks will automatically spawn bees until the number of active bees is the value below. + # Set this higher to allow Brood Blocks to spawn more bees in a smaller area or set it to 0 to turn + # off automatic Brood Block bee spawning. + # + #Range: 0 ~ 1000 + broodBlocksBeeSpawnCapacity = 40 + # + #----------------------------------------------------- + # + # Whether Pile of Pollen should spread fire super quickly to burn away huge swathes of pollen. + # + pileOfPollenHyperFireSpread = false + # + #----------------------------------------------------- + # + # Allows lit Super Candles/Potion Candle to burn mobs in its flame. + # + superCandlesBurnsMobs = true + # + #----------------------------------------------------- + # + # Whether to allow special trades to activate during certain days of the year. + # + beeQueenSpecialDayTrades = true + # + #----------------------------------------------------- + # + # Allow Bee Queen to respawn in Throne Pillar when located with fresh Throne Honey Compass. + # + beeQueenRespawning = true + # + #----------------------------------------------------- + # + # Allow Bee Queen to pick up items off ground to do trading. + # + beeQueenGroundPickup = true + # + #----------------------------------------------------- + # + # Whether the Crystalline Flower block will eat any item entity that touches the block's collision box in the world + # + crystallineFlowerConsumeItemEntities = true + # + #----------------------------------------------------- + # + # Whether the Crystalline Flower block will pull in and eat any experience orb that touches it in the world + # + crystallineFlowerConsumeExperienceOrbEntities = true + # + #----------------------------------------------------- + # + # Whether the Crystalline Flower's GUI allows players to feed it items directly + # + crystallineFlowerConsumeItemUI = true + # + #----------------------------------------------------- + # + # Whether the Crystalline Flower's GUI allows players to feed it the player's experience + # + crystallineFlowerConsumeExperienceUI = true + # + #----------------------------------------------------- + # + # Controls how much "enchanting power" is used per tier to determine what enchantment shows up. + # Enchantments of higher levels or rarity requires more "enchanting power" before they show up in the UI. + # Think of this like how Enchanting Tables only shows stronger or rarer enchantments when you have more bookshelves. + # Except here, the flower's tier times this config value is used as the threshold to know what enchantment and level to show. + # + #Range: 0 ~ 1000 + crystallineFlowerEnchantingPowerAllowedPerTier = 8 + # + #----------------------------------------------------- + # + # How much extra experience is required to reach the next tier for the Crystalline Flower. + # Remember, item consuming is also affected as items are converted to experience when the flower consumes it. + # + #Range: -1000000 ~ 1000000 + crystallineFlowerExtraXpNeededForTiers = 0 + # + #----------------------------------------------------- + # + # Increases or decreases the tier cost of all enchantments available by whatever value you set. + # The enchantment's tier cost will be capped between 1 and 6. + # + #Range: -5 ~ 5 + crystallineFlowerExtraTierCost = 0 + +["Music Disc Options"] + # + #----------------------------------------------------- + # + # Whether Wandering Traders can have rare trade for Bumblezone Music Discs + # + allowWanderingTraderMusicDiscsTrades = true + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeLengthFlightOfTheBumblebee = 84 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeLengthHoneyBee = 216 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeLengthRiversOfHoney = 224 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeLengthBeeLaxingWithTheHomBees = 300 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeLengthLaBeeDaLoca = 176 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeLengthBeeWareOfTheTemple = 371 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeLengthKnowing = 251 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeLengthRadiance = 106 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeLengthLife = 86 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscTimeAFirstALast = 652 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscDrowningInDespair = 570 + # + #----------------------------------------------------- + # + # How long in seconds this music disc will be playing music. + # This is used for the server to know when to make Allays stop dancing when Jukebox stops playing this music disc. + # + #Range: 0 ~ 1000000 + musicDiscBeennaBox = 251 + +["Essence Options"] + # + #----------------------------------------------------- + # + # Whether Essence of the Bees's effect should stay on the player if they die and then respawn. + # + keepEssenceOfTheBeesOnRespawning = true + # + #----------------------------------------------------- + # + # Whether the Essence events in Sempiternal Sanctums can be repeated after beating it once. + # + repeatableEssenceEvents = true + # + #----------------------------------------------------- + # + # Whether the Blue Arena in Sempiternal Sanctum has the moving bubble block mechanic. + # + blueArenaBubblesMechanic = true + #---------------------------- + # + # How long in ticks the Blue Arena in Sempiternal Sanctum will last. + # + #Range: 1 ~ 1000000 + blueArenaTimeFrameInTicks = 10800 + #---------------------------- + # + # How long in ticks the Green Arena in Sempiternal Sanctum will last. + # + #Range: 1 ~ 1000000 + greenArenaTimeFrameInTicks = 6000 + #---------------------------- + # + # How long in ticks the Purple Arena in Sempiternal Sanctum will last. + # + #Range: 1 ~ 1000000 + purpleArenaTimeFrameInTicks = 5020 + #---------------------------- + # + # How long in ticks the Red Arena in Sempiternal Sanctum will last. + # + #Range: 1 ~ 1000000 + redArenaTimeFrameInTicks = 10800 + #---------------------------- + # + # How long in ticks the Yellow Arena in Sempiternal Sanctum will last. + # + #Range: 1 ~ 1000000 + yellowArenaTimeFrameInTicks = 6000 + #---------------------------- + # + # How long in ticks the White Arena in Sempiternal Sanctum will last. + # + #Range: 1 ~ 1000000 + whiteArenaTimeFrameInTicks = 10000 + # + #----------------------------------------------------- + # + # How much max health Cosmic Crystal entity has. (For Continuity Essence event) + # + #Range: 1 ~ 1000000 + cosmicCrystalHealth = 60 + # + #----------------------------------------------------- + # + # How much ability use this item has before depleted. + # + #Range: 0 ~ 1000000 + ragingEssenceAbilityUse = 28 + # + #----------------------------------------------------- + # + # How long the cooldown is in ticks before recharged for this item. + # + #Range: 0 ~ 1000000 + ragingEssenceCooldown = 36000 + # + #----------------------------------------------------- + # + # How many rage levels there are and what level Strength effect each rage level gives. + # The list is in order of the effect levels that the player will get as they make highlighted kills. + # Adding or removing numbers will change the maximum number of rage tiers too. + # + ragingEssenceStrengthLevels = [1, 2, 3, 5, 8, 14, 20] + # + #----------------------------------------------------- + # + # How much ability use (per second) this item has before depleted. + # + #Range: 0 ~ 1000000 + knowingEssenceAbilityUse = 1200 + # + #----------------------------------------------------- + # + # How long the cooldown is in ticks before recharged for this item. + # + #Range: 0 ~ 1000000 + knowingEssenceCooldown = 18000 + # + #----------------------------------------------------- + # + # Whether clients should be allowed to see names of structures they are in with this item. + # + knowingEssenceStructureNameServer = true + # + #----------------------------------------------------- + # + # How much ability use (per second) this item has before depleted. + # + #Range: 0 ~ 1000000 + calmingEssenceAbilityUse = 600 + # + #----------------------------------------------------- + # + # How long the cooldown is in ticks before recharged for this item. + # + #Range: 0 ~ 1000000 + calmingEssenceCooldown = 12000 + # + #----------------------------------------------------- + # + # How much ability use this item has before depleted. + # + #Range: 0 ~ 1000000 + lifeEssenceAbilityUse = 1000 + # + #----------------------------------------------------- + # + # How long the cooldown is in ticks before recharged for this item. + # + #Range: 0 ~ 1000000 + lifeEssenceCooldown = 12000 + # + #----------------------------------------------------- + # + # How much ability use (per 25 ticks) this item has before depleted. + # + #Range: 0 ~ 1000000 + radianceEssenceAbilityUse = 4800 + # + #----------------------------------------------------- + # + # How long the cooldown is in ticks before recharged for this item. + # + #Range: 0 ~ 1000000 + radianceEssenceCooldown = 12000 + # + #----------------------------------------------------- + # + # How long the cooldown is in ticks before recharged for this item. + # + #Range: 0 ~ 1000000 + continuityEssenceCooldown = 48000 + diff --git a/minecraft/config/the_bumblezone/mod_compatibility.toml b/minecraft/config/the_bumblezone/mod_compatibility.toml new file mode 100644 index 0000000..7787e56 --- /dev/null +++ b/minecraft/config/the_bumblezone/mod_compatibility.toml @@ -0,0 +1,276 @@ + +["Mod Compatibility Options"] + + ["Mod Compatibility Options"."General Compat Options"] + # + #----------------------------------------------------- + # + # The fluid to replace Bumblezone's Honey Fluid in the dimension. Requires restart. + # Note, this will not replace already placed Bumblezone Honey Fluid. + # + alternativeFluidToReplaceHoneyFluid = "" + # + #----------------------------------------------------- + # + # Will let you feed any item that has a Forge fluid capability attached and has + # any fluid that is tagged forge:fluid/honey inside. This works alongside the bee_feeding item tag. + # An item can still be fed even if bee_feeding tag doesn't have the item as long as the + # item fit the above conditions with the fluid capability and this config is set to true. + # + allowHoneyFluidTanksFeedingCompat = true + + ["Mod Compatibility Options"."Pokecube Options"] + # + #----------------------------------------------------- + # + # Spawn Pokecube's bee-like pokemon in The Bumblezone and from Honey Brood Blocks. + # + spawnPokecubeBeePokemon = true + # + #----------------------------------------------------- + # + # Pokecube's bee-like pokemon that spawn in The Bumblezone will get + # Protection of the Hive effect. Attacking these pokemon in bumblezone will + # give you Wrath of the Hive effect and swarmed of angry bees. + # + beePokemonGetsProtectionEffect = true + # + #----------------------------------------------------- + # + # Chance of a Bee spawning from Honeycomb Brood Blocks being replaced by Pokecube's bee pokemon. + # 0 is no PC's mobs and 1 is max PC's mobs. + # + #Range: 0.0 ~ 1.0 + spawnrateOfPokecubeBeePokemon = 0.05 + + ["Mod Compatibility Options"."Tropicraft Options"] + # + #----------------------------------------------------- + # + # Spawn Tropicraft's Tropibee in The Bumblezone and from Honey Brood Blocks alongside + # regular bees at a spawnrateOfTropicraftBeesMobs chance when spawning regular bees. + # + spawnTropicraftBeesMob = true + # + #----------------------------------------------------- + # + # Chance of a Bee spawning from Honeycomb Brood Blocks in Bumblezone dimension being replaced by Tropicraft's Tropibee. + # 0 is no Tropicraft's mobs and 1 is max Tropicraft's mobs. + # + #Range: 0.0 ~ 1.0 + spawnrateOfTropicraftBeesMobs = 0.025 + # + #----------------------------------------------------- + # + # Allow Honeycomb Brood blocks fed by Dispenser to be able to have chance of spawning Tropicraft's Tropibee. + # + allowTropicraftSpawnFromDispenserFedBroodBlock = true + + ["Mod Compatibility Options"."Resourceful Bees Options"] + # + #----------------------------------------------------- + # + # Spawn Resourceful Bees in The Bumblezone and from Honey Brood Blocks alongside + # regular bees at a spawnrateOfResourcefulBeesMobs chance when spawning regular bees. + # You can datapack the_bumblezone:resourcefulbees/spawnable_from_brood_block entity tag + # and/or datapack the_bumblezone:resourcefulbees/spawnable_from_chunk_creation entity tag + # for more control of what kinds of bees spawns. + # + spawnResourcefulBeesBeesMob = true + # + #----------------------------------------------------- + # + # Chance of a Bee spawning from Honeycomb Brood Blocks in Bumblezone dimension being replaced by Resourceful Bee's mob. + # 0 is no RB's mobs and 1 is max RB's mobs. + # + #Range: 0.0 ~ 1.0 + spawnrateOfResourcefulBeesMobsBrood = 0.03 + # + #----------------------------------------------------- + # + # Chance of a regular Bee spawning in Bumblezone being replaced by Resourceful Bee's mob. + # 0 is no RB's mobs and 1 is max RB's mobs. + # + #Range: 0.0 ~ 1.0 + spawnrateOfResourcefulBeesMobsOther = 0.008 + # + #----------------------------------------------------- + # + # How much of Bee Dungeons is made of honeycombs from the_bumblezone:resourcefulbees/spawns_in_bee_dungeons block tag. + # 0 is no RB's honeycombs and 1 is max RB's honeycombs. + # + #Range: 0.0 ~ 1.0 + RBOreHoneycombSpawnRateBeeDungeon = 0.06 + # + #----------------------------------------------------- + # + # How much of Spider Infested Bee Dungeons is made of honeycombs from the_bumblezone:resourcefulbees/spawns_in_spider_infested_bee_dungeons block tag. + # 0 is no RB's honeycombs and 1 is max RB's honeycombs. + # + #Range: 0.0 ~ 1.0 + RBOreHoneycombSpawnRateSpiderBeeDungeon = 0.12 + # + #----------------------------------------------------- + # + # Spawn Resourceful Bees's various honeycomb variants in The Bumblezone at all + # kinds of heights and height bands. Start exploring to find where they spawn! + # + # NOTE: Will require a restart of the world to take effect. + # + spawnResourcefulBeesHoneycombVeins = true + # + #----------------------------------------------------- + # + # Allow Bee Jars with bees inside to turn Empty Honeycomb Brood blocks into + # a regular Honeycomb Brood Block with a larva inside! + # + allowResourcefulBeesBeeJarRevivingEmptyBroodBlock = true + # + #----------------------------------------------------- + # + # Allow Honeycomb Brood blocks fed by Dispenser to be able to have chance of spawning Resourceful Bees's bees. + # + allowResourcefulBeesSpawnFromDispenserFedBroodBlock = true + + ["Mod Compatibility Options"."Productive Bees Options"] + # + #----------------------------------------------------- + # + # Spawn Productive Bees in The Bumblezone and from Honey Brood Blocks alongside + # regular bees at a spawnrateOfProductiveBeesMobs chance when spawning regular bees. + # + spawnProductiveBeesBeesMob = true + # + #----------------------------------------------------- + # + # Chance of a Bee spawning in Bumblezone or from Honeycomb Brood Blocks being replaced by Productive Bee's mob. + # 0 is no PB's mobs and 1 is max PB's mobs. + # + #Range: 0.0 ~ 1.0 + spawnrateOfProductiveBeesMobs = 0.03 + # + #----------------------------------------------------- + # + # Spawn Productive Bees's various honeycomb variants in The Bumblezone at all + # kinds of heights and height bands. Start exploring to find where they spawn! + # Disabling this config will make all Productive Bees comb blocks not spawn in Bumblezone dimension. + # + # To add or remove specific combs from spawning, datapack replace this placed feature tag file: + #`data/the_bumblezone/tags/worldgen/placed_feature/productive_bees_combs.json` + # + # NOTE: This config will require a restart of the world to take effect. + # + spawnProductiveBeesHoneycombVariants = true + # + #----------------------------------------------------- + # + # Allow what Productive Bees combs should be able to spawn in Bumblezone dungeons. + allowedCombsForDungeons = ["productivebees:diamond", "productivebees:iron", "productivebees:coal", "productivebees:redstone", "productivebees:copper", "productivebees:lapis", "productivebees:gold", "productivebees:emerald", "productivebees:obsidian", "productivebees:experience", "productivebees:magmatic", "productivebees:amethyst", "productivebees:prismarine", "productivebees:crystalline", "productivebees:sugarbag", "productivebees:glowing", "productivebees:frosty", "productivebees:slimy", "productivebees:silky", "productivebees:blazing", "productivebees:ender", "productivebees:skeletal", "productivebees:ghostly", "productivebees:zombie"] + # + #----------------------------------------------------- + # + # Allow what Productive Bees bees should be able to spawn in Bumblezone. + allowedBees = ["productivebees:iron", "productivebees:coal", "productivebees:redstone", "productivebees:copper", "productivebees:lapis", "productivebees:gold", "productivebees:emerald", "productivebees:obsidian", "productivebees:experience", "productivebees:magmatic", "productivebees:amethyst", "productivebees:prismarine", "productivebees:crystalline", "productivebees:sugarbag", "productivebees:glowing", "productivebees:frosty", "productivebees:slimy", "productivebees:silky", "productivebees:blazing", "productivebees:ender", "productivebees:skeletal", "productivebees:ghostly", "productivebees:zombie"] + # + #----------------------------------------------------- + # + # Allow Bee Cages with bees inside to turn Empty Honeycomb Brood blocks into + # a regular Honeycomb Brood Block with a larva inside! + # + allowProductiveBeesBeeCageRevivingEmptyBroodBlock = true + # + #----------------------------------------------------- + # + # Allow Honeycomb Brood blocks fed by Dispenser to be able to have chance of spawning Productive Bees's bees. + # + allowProductiveBeesSpawnFromDispenserFedBroodBlock = true + # + #----------------------------------------------------- + # + # How much of Bee Dungeons is made of ore-based honeycombs. + # 0 is no PB's honeycombs and 1 is max PB's honeycombs. + # + #Range: 0.0 ~ 1.0 + PBOreHoneycombSpawnRateBeeDungeon = 0.125 + # + #----------------------------------------------------- + # + # How much of Spider Infested Bee Dungeons is made of ore-based honeycombs. + # 0 is no PB's honeycombs and 1 is max PB's honeycombs. + # + #Range: 0.0 ~ 1.0 + PBOreHoneycombSpawnRateSpiderBeeDungeon = 0.25 + + ["Mod Compatibility Options"."Friends and Foes Options"] + # + #----------------------------------------------------- + # + # Adds Bumblezone items to Friends and Foes's Beekeeper trades! + # + allowFriendsAndFoesBeekeeperTradesCompat = true + + ["Mod Compatibility Options"."Quark Options"] + # + #----------------------------------------------------- + # + # Adds Bumblezone items symbols to Quark's enchantment tooltips! + # + injectBzItemsIntoQuarkEnchantmentTooltipsCompat = true + + ["Mod Compatibility Options"."Buzzier Bees Options"] + # + #----------------------------------------------------- + # + # Allow Bee Bottle to turn Empty Honeycomb Brood blocks into a regular Honeycomb Brood Block with a larva inside! + # + allowBeeBottleRevivingEmptyBroodBlock = true + + ["Mod Compatibility Options"."Forbidden Arcanus Options"] + # + #----------------------------------------------------- + # + # Allow Bee Bucket to turn Empty Honeycomb Brood blocks into a regular Honeycomb Brood Block with a larva inside! + # + allowBeeBucketRevivingEmptyBroodBlock = true + + ["Mod Compatibility Options"."Potion of Bees Options"] + # + #----------------------------------------------------- + # + # Allow Potion of Bees to turn Empty Honeycomb Brood blocks into + # a regular Honeycomb Brood Block with a larva inside! + # + allowPotionOfBeesRevivingEmptyBroodBlock = true + + ["Mod Compatibility Options"."Goodall Options"] + # + #----------------------------------------------------- + # + # Allow Bottled Bees to turn Empty Honeycomb Brood blocks into + # a regular Honeycomb Brood Block with a larva inside! + # + allowGoodallBottledBeesRevivingEmptyBroodBlock = true + + ["Mod Compatibility Options"."Beekeeper Options"] + # + #----------------------------------------------------- + # + # Adds Bumblezone items to Beekeeper mod's Beekeeper trades! + # + allowBeekeeperTradesCompat = true + + ["Mod Compatibility Options"."Lootr Options"] + # + #----------------------------------------------------- + # + # Allow loot Cocoons to have compat with Lootr + # + allowLootrCompat = true + + ["Mod Compatibility Options"."Create Compat"] + #---------------------------- + # + # Allow Honey and Royal Jelly fluids to spawn Create's Limestone when they touch Lava. + # + allowCreateLimestoneForHoneyLavaCompat = true + diff --git a/minecraft/config/the_bumblezone/worldgen.toml b/minecraft/config/the_bumblezone/worldgen.toml new file mode 100644 index 0000000..07b2c4d --- /dev/null +++ b/minecraft/config/the_bumblezone/worldgen.toml @@ -0,0 +1,35 @@ + +["Dungeon Options"] + # + #----------------------------------------------------- + # + # How rare Bee Dungeons are. Higher numbers means more rare. + # Default rate is 1. Setting to 1001 will disable Bee Dungeons. + # + #Range: 1 ~ 1001 + beeDungeonRarity = 1 + # + #----------------------------------------------------- + # + # How rare Tree Dungeons are. Higher numbers means more rare. + # Default rate is 1. Setting to 1001 will disable Tree Dungeons. + # + #Range: 1 ~ 1001 + treeDungeonRarity = 2 + # + #----------------------------------------------------- + # + # How rare Spider Infested Bee Dungeons are. Higher numbers means more rare. + # Default rate is 5. Setting to 1001 will disable Bee Dungeons. + # + #Range: 1 ~ 1001 + spiderInfestedBeeDungeonRarity = 5 + # + #----------------------------------------------------- + # + # How rare are Spider/Cave Spider Spawners in Spider Infested Bee Dungeons. + # 0 is no spawners, 1 is maximum spawners, and default is 0.2D + # + #Range: 0.0 ~ 1.0 + spawnerRateSpiderBeeDungeon = 0.2 + diff --git a/minecraft/config/theurgy-client.toml b/minecraft/config/theurgy-client.toml new file mode 100644 index 0000000..ea91131 --- /dev/null +++ b/minecraft/config/theurgy-client.toml @@ -0,0 +1,7 @@ + +#Rendering Settings +[rendering] + #True to show the icon of the source item on top of the sulfur jar icon, false to hide it (source item will still be shown on hover in item name). + #Disabling this setting may improve performance in inventories with lots of sulfur item stacks. + renderSulfurSourceItem = true + diff --git a/minecraft/config/tinkerslevellingaddon-client.toml b/minecraft/config/tinkerslevellingaddon-client.toml new file mode 100644 index 0000000..e1bc150 --- /dev/null +++ b/minecraft/config/tinkerslevellingaddon-client.toml @@ -0,0 +1,12 @@ + +#Client only settings +[client] + #If true, shows chat message on tool level ups. + message = true + #If true, uses alternative level name suffix for high level tools. + #Instead of appending '+' signs for each consecutive level appearance, +1, +2, +3, etc. notation will be used. + squashPluses = false + # + #Allowed Values: NONE, CHIME, SNARE_DRUM, YAY, BONK + sound = "SNARE_DRUM" + diff --git a/minecraft/config/titanium/titanium-tags.toml b/minecraft/config/titanium/titanium-tags.toml new file mode 100644 index 0000000..219236f --- /dev/null +++ b/minecraft/config/titanium/titanium-tags.toml @@ -0,0 +1,5 @@ + +[TagConfig] + #A list of mod ids sorted by preference when getting an Item for a tag + ITEM_PREFERENCE = ["minecraft", "emendatusenigmatica", "immersiveengineering", "thermal", "create", "mekanism", "jaopca", "kubejs", "appliedenergistics2", "pneumaticcraft", "occultism", "tmechworks", "industrialforegoing", "botania", "quark", "pedestals"] + diff --git a/minecraft/config/titanium/titanium.toml b/minecraft/config/titanium/titanium.toml new file mode 100644 index 0000000..ced21f5 --- /dev/null +++ b/minecraft/config/titanium/titanium.toml @@ -0,0 +1,14 @@ + +[TitaniumConfig] + #A Boolean that is true by default + thisIsABoolean = true + #A Boolean that is false by default + NOT_BOOLEAN = false + intAngery = 7 + + [TitaniumConfig.Dabber] + dabby = "lil dab" + + [TitaniumConfig.TestBlock] + DUMB_VALUE = 135 + diff --git a/minecraft/config/toastcontrol-common.toml b/minecraft/config/toastcontrol-common.toml new file mode 100644 index 0000000..c340ac8 --- /dev/null +++ b/minecraft/config/toastcontrol-common.toml @@ -0,0 +1,50 @@ + +#Client Configuration +[client] + + [client.blocked_toasts] + #If advancement toasts are blocked. + advancements = true + #If recipe toasts are blocked. + recipes = true + #If system toasts are blocked. + system = false + #If tutorial toasts are blocked. + tutorial = true + #If all vanilla toasts are blocked. + global_vanilla = false + #If all non-vanilla toasts are blocked. + global_modded = false + #If all toasts are blocked. + global = false + #Toast Classes that are blocked from being shown. + blocked_classes = [] + + [client.visual_options] + #How long a toast must be on the screen for, in ticks. Use 0 to use the default time. + #Range: 0 ~ 4000 + force_time = 0 + #If toasts are translucent. + translucent = true + #If toasts are transparent. Overrides translucency. + transparent = false + #How many toasts will be displayed on screen at once. + #Range: 1 ~ 7 + toast_count = 3 + #The X offset for toasts to be drawn at. + #Range: -8192 ~ 8192 + x_offset = 0 + #The Y offset for toasts to be drawn at. + #Range: -8192 ~ 8192 + y_offset = 0 + #If toasts automatically pop into the screen without animations. + no_slide = false + #If toasts show on the left of the screen. + start_left = false + #If toasts will come in from the top of the screen, rather than the side. + top_down = false + + [client.debug] + #If toast classes are printed when they are shown. + print_classes = false + diff --git a/minecraft/config/tombstone-client.toml b/minecraft/config/tombstone-client.toml new file mode 100644 index 0000000..da6dffa --- /dev/null +++ b/minecraft/config/tombstone-client.toml @@ -0,0 +1,80 @@ + +#Personal Options that can be edited even on server +[client] + #Shows the magic circles when using some items [false/true|default:true] + show_magic_circle = true + #Shows all the infos in the tooltip of items [false/true|default:true] + show_enhanced_tooltips = true + #Highlights the tomb from far when holding the key [false/true|default:true] + highlight = true + #Skips the Respawn Screen [false/true|default:false] + skip_respawn_screen = false + #Shows shield particles on villager [false/true|default:true] + show_shield_particle = true + #Allows the ghost to appear around you during Halloween [false/true|default:true] + allow_halloween_ghost = true + #Shows only the elapsed minecraft days since the death on graves [false/true|default:false] + date_in_mc_time = false + #Display or not the messages of gain of points in knowledge of death [false/true|default:true] + display_knowledge_message = true + #Display or not the messages of earned of points in Alignment [false/true|default:true] + display_alignment_message = true + #Equips elytra in priority when recovering your lost items [false/true|default:false] + equip_elytra_in_priority = false + #Equips shield in priority when recovering your lost items [false/true|default:false] + equip_shield_in_priority = false + #Sorts the inventory by filling the last slots first [false/true|default:false] + reverse_inventory_sorting = false + #Automatically equip magic books in Curios slot [false/true|default:false] + equip_curio_slot_magic_book = false + #Shows the use of the Tombstone's enchantments in tooltip [false/true|default:true] + show_info_on_enchantment = true + #Favor the tools on the hotbar when recovering a grave [false/true|default:false] + priorize_tool_on_hotbar = false + #Allows to activate a grave by sneaking [false/true|default:true] + activate_grave_by_sneaking = true + #Allows your grave to appear in water [false/true|default:true] + allow_grave_in_water = true + #Decimal value for the color of the particles when using magic items [0..16777215|default:125656] + #Range: 0 ~ 16777215 + particle_casting_color = 14937088 + #Decimal value for the color of the grave text [0..16777215|default:2962496] + #Range: 0 ~ 16777215 + text_color_death_date = 2962496 + #Decimal value for the color of the grave text [0..16777215|default:2962496] + #Range: 0 ~ 16777215 + text_color_rip = 2962496 + #Decimal value for the color of the grave text [0..16777215|default:5991302] + #Range: 0 ~ 16777215 + text_color_owner = 5991302 + #Decimal value of the fog color [0..16777215|default:125656] + #Range: 0 ~ 16777215 + fog_color = 16777215 + #Fog density around the graves [NONE/LOW/NORMAL/HIGH|default:NORMAL] + #Allowed Values: NONE, LOW, NORMAL, HIGH + fog_density = "NORMAL" + #Favorite grave + #Allowed Values: GRAVE_SIMPLE, GRAVE_NORMAL, GRAVE_CROSS, TOMBSTONE, SUBARAKI_GRAVE, GRAVE_ORIGINAL + favorite_grave = "GRAVE_SIMPLE" + #Favorite grave marble + #Allowed Values: DARK, WHITE, BLUE, GREEN, CARMIN + favorite_grave_marble = "DARK" + #Defines the rule to use for grave's skin [DEFAULT/FORCE_NORMAL/FORCE_HALLOWEEN|default:DEFAULT] + #Allowed Values: DEFAULT, FORCE_NORMAL, FORCE_HALLOWEEN, FORCE_CHRISTMAS, FORCE_SPRING_BLOOM + grave_skin_rule = "DEFAULT" + #Defines when to automatically equip your items [NEVER/GRAVE_RECOVERY/DEATH_RESPAWN/ALWAYS|default:ALWAYS] + #Allowed Values: NEVER, GRAVE_RECOVERY, DEATH_RESPAWN, ALWAYS + auto_equip_rule = "ALWAYS" + #Defines the type of marker when holding in hand some items like the Grave's Key [WING/SPARK/NOTE/BOX|default:WING] + #Allowed Values: WING, SPARK, NOTE, BOX + marker_type = "WING" + #Defines the font to use in Tombstone's screens (only for english, french and spanish languages) [FANTASY/VANILLA|default:FANTASY] + #Allowed Values: FANTASY, VANILLA + font_rule = "FANTASY" + #Display the combinations in item tooltip [false/true|default:true] + show_tooltip_combine = true + #Prevent night vision from flashing when less than 5 seconds left [false/true|default:true] + no_blinking_nightvision = true + #Scales Tombstone guiscreens to be larger as possible [false/true|default:true] + scale_guiscreens = true + diff --git a/minecraft/config/tombstone-common.toml b/minecraft/config/tombstone-common.toml new file mode 100644 index 0000000..22bc6d8 --- /dev/null +++ b/minecraft/config/tombstone-common.toml @@ -0,0 +1,205 @@ + +#Options related to player's death +[player_death] + #Whether to unlock access to a grave if the player has been killed by another player [false/true|default:true] + pvp_unlock_grave = true + #Whether to restore beneficial effects after a player dies [false/true|default:true] + restore_effects_on_death = false + #Only abandoned graves can have losses of items (based on the decay_time) [false/true|default:true] + loss_on_death_only_for_abandoned_grave = true + #Only stackable items can be lost on death [false/true|default:true] + loss_on_death_only_for_stackable_items = true + #Prevents death outside the borders of the world [false/true|default:true] + prevent_death_outside_world_border = true + #Prevents death outside the build height [false/true|default:false] + prevent_death_outside_build_height = false + #Allows to fill an existing grave instead of creating a new one [false/true|default:true] + allow_to_fill_existing_grave = true + #Caps the duration of Ghostly Shape effect to 10 seconds when teleporting with a Grave's Key [false/true|default:true] + nerf_ghostly_shape_teleport_with_key = true + #The radius in which items should be collected when a grave is spawned [1..10|default:5] + #Range: 1 ~ 10 + sniffer_range = 5 + #The chance that creatures appear after the contents of a grave are retrieved [0..100|default:0] + #Range: 0 ~ 100 + chance_mob_on_grave_recovery = 0 + #Percent of stolen experience by killing a player when PvP mode is enabled [0..100|default:30] + #Range: 0 ~ 100 + pvp_stolen_xp = 30 + #The chance that some items are lost on death [0..100|default:0] + #Range: 0 ~ 100 + chance_loss_on_death = 0 + #The percentage of items that are lost on death [0..100|default:0] + #Range: 0 ~ 100 + percent_loss_on_death = 0 + #Graveless Dimensions + no_grave_dimension = [] + +#Options related to player's alignment +[alignment] + #Points for freeing a soul in a receptacle [0..500|default:50] + #Range: 0 ~ 500 + points_free_soul_receptacle = 50 + #Points for plundering a player's grave [-500..0|default:-10] + #Range: -500 ~ 0 + points_plunder_player_grave = -10 + #Points for zombie villager exorcism [0..500|default:20] + #Range: 0 ~ 500 + points_exorcism_zombie_villager = 20 + #Points for zombifying a villager [-500..0|default:-20] + #Range: -500 ~ 0 + points_zombify_villager = -20 + #Points for killing some entities decreasing alignment [-500..0|default:-10] + #Range: -500 ~ 0 + points_kill_decreasing_alignment = -10 + #Points for killing some entities increasing alignment [0..500|default:10] + #Range: 0 ~ 500 + points_kill_increasing_alignment = 10 + #Points for tablet of cupidity [-500..0|default:-10] + #Range: -500 ~ 0 + points_tablet_of_cupidity = -10 + #Points for Pray of Protection [0..500|default:20] + #Range: 0 ~ 500 + points_pray_of_protection = 20 + #Points for using a Potion of Earthly Garden [0..500|default:10] + #Range: 0 ~ 500 + points_earthly_garden = 10 + #Points for killing one of your tamed creatures [-500..0|default:-10] + #Range: -500 ~ 0 + points_kill_tamed_creature = -10 + +#Miscellaneous options +[general] + #Allows teleportation to other dimensions [false/true|default:true] + teleport_dim = true + #Increases the minimum time without sleeping for phantom spawn around player based on their level in Knowledge of Death [false/true|default:true] + knowledge_reduce_phantom_spawn = true + #Minimum time without sleeping for phantom to spawn around players [1200..MAX|default:72000] + #Range: > 1200 + time_for_phantom_spawn = 72000 + #Cooldown in minutes to use the command tbrequestteleport [-1..1440|default:-1] + #Range: -1 ~ 1440 + cooldown_request_teleport = -1 + #Cooldown in minutes to use the command tbteleportdeath [-1..1440|default:-1] + #Range: -1 ~ 1440 + cooldown_teleport_death = -1 + #Beneficial effects that can't used by certain features such as ankh of prayer, lollipop, scroll of preservation, alchemy perk and magic siphon enchantment + unhandled_beneficial_effects = ["astralsorcery:potiontimefreeze"] + #Harmful effects that can't used by certain features such as tablet of cupidity and the enchantment plague bringer + unhandled_harmful_effects = ["minecraft:nausea"] + #Allows to limit the damages done by Decrepitude + #Range: > 1 + decrepitude_max_damage = 2147483647 + +#Allows to define the conditions for a village siege to begin +[village_siege] + #Allows to handle village sieges [false/true|default:true] + handle_village_siege = true + #Logs the different states of a village siege while searching for an adequate place [false/true|default:false] + log_siege_state = false + #The creatures of the siege have a glowing effect (only uses this for test purposes) [false/true|default:false] + glowing_creature_test = false + #Allows to use the positions of creative players to define the siege location [false/true|default:true] + allow_creative_players_for_siege = true + #Undeads always wear a helm when sieging [false/true|default:false] + undead_wear_helm_in_siege = false + #Mobs in siege are persistent [false/true|default:false] + persistent_mob_in_siege = false + #Shuffles the list of players before testing the siege location [false/true|default:true] + shuffle_players_for_siege = true + #Chance for a siege to occur [0..100|default:10] + #Range: 0 ~ 100 + siege_chance = 10 + #Maximum of creatures appearing in a siege [0..100|default:20] + #Range: 0 ~ 100 + siege_max_creature = 20 + #Delay in seconds for a second test of siege when the first failed [0..1200|default:200] + #Range: 0 ~ 1200 + delay_siege_test = 200 + +#For settings related to magic items +[magic_item] + #Damaged items can be recycled with the Book of Recycling + can_recycle_damaged_item = true + #The items that can't be recycled by the Book of Recycling + denied_item_to_recycle = [] + #Allows to disenchant enchanted books with the Book of Disenchantment + can_disenchant_enchanted_book = false + #Allows lost tablets to find locations outside the current world [false/true|default:true] + lost_tablet_search_outside_world = true + #Allows lost tablets to find modded structures [false/true|default:true] + lost_tablet_modded_structure = true + #The structures that can't be discovered by lost tablets + lost_tablet_denied_structures = [] + #The worlds that can't be discovered by lost tablets + lost_tablet_denied_worlds = [] + +#For settings related to decorative tombs and magic items +[decorative_grave] + #Allows to replace a grave plate already set on a grave [false/true|default:true] + can_replace_grave_plate = true + #Allows the merchant grave gardian [false/true|default:true] + allow_grave_gardian = true + #Minimum distance between Grave Gardians to spawn [10..200|default:100] + #Range: 10 ~ 200 + distance_between_grave_guardian = 100 + #Time in minutes for a Grave Guardian to restock its offers [1..1000|default:60] + #Range: 1 ~ 1000 + restock_time_grave_guardian = 60 + #Time in minutes to check if a soul appears on a grave [1..10000|default:10] + #Range: 1 ~ 10000 + soul_time = 10 + #Chance on 100 that a soul appears on a grave [0..100|default:25] + #Range: 0 ~ 100 + soul_chance = 25 + +#Options related to the command recovery and auto-save of players +[recovery] + #Enables to backup automatically players [false/true|default:true] + recovery_player_enable = true + #Backup players on death [false/true|default:false] + backup_on_death = true + #Time in minutes between players' backups [10..1000|default:40] + #Range: 5 ~ 1000 + recovery_player_timer = 19 + #Maximum number of backups per player [5..100|default:15] + #Range: 5 ~ 100 + recovery_player_max_saves = 15 + #Log when players are automatically back up [false/true|default:false] + log_auto_backup = false + +#Options related to looted items +[loot] + #Maximum xp rewarded with a Lost Page of Erdös [100..200000|default:2000] + #Range: 100 ~ 200000 + max_xp_lost_page = 2000 + #Denied mods for equipment drops + denied_modid_for_equipment = ["tombstone"] + #Only vanilla drops for equipment [false/true|default:false] + only_vanilla_for_equipment = false + +#Allows to enable some features related to others mods +[compatibility] + #Allows to auto-equip the slots from Curio mod [false/true|default:true] + curio_auto_equip = true + #Allows to provide a default support for bundle in Curio mod [false/true|default:true] + curio_bundle_support = true + #Allows to provide a magic book slot in Curio mod used to enchant with a soul [false/true|default:true] + curio_magic_book_support = true + #Keeps the cosmetic armor when you die [false/true|default:true] + keep_cosmetic_armor = true + #Ensure the potion effects to stay on the player after returning from end conquered [false/true|default:true] + preserve_effects_on_return_end_conquered = true + +#Allows to enable special events +[special_events] + #Allows Halloween [false/true|default:true] + allow_halloween = true + #Allows Christmas [false/true|default:true] + allow_christmas = true + #Allows Spring Bloom [false/true|default:true] + allow_spring_bloom = true + #Allows you to set a Special Event as permanent [NONE/HALLOWEEN/CHRISTMAS/SPRING_BLOOM|default:NONE] + #Allowed Values: NONE, HALLOWEEN, CHRISTMAS, SPRING_BLOOM + force_special_event = "NONE" + diff --git a/minecraft/config/tombstone-server.toml b/minecraft/config/tombstone-server.toml new file mode 100644 index 0000000..4f63d9a --- /dev/null +++ b/minecraft/config/tombstone-server.toml @@ -0,0 +1,191 @@ + +#Options related to player's death +[player_death] + #The time in minutes before a grave is unlocked to anyone [-1..MAX|default:-1|disabled:-1] + #Range: > -1 + decay_time = -1 + #Experience lost on death [0..100|default:95] + #Range: 0 ~ 100 + xp_loss_on_death = 95 + #The duration of the Ghostly Shape effect in seconds [0..MAX|default:120] + #Range: > 0 + ghostly_shape_duration = 120 + +#Allows to customize or disable the enchantments +[enchantments] + #Enables the enchantment Spectral Bite [false/true|default:true] + enable_enchantment_spectral_bite = true + #Enables the enchantment Soulbound [false/true|default:true] + enable_enchantment_soulbound = true + #Enables the enchantment Magic Siphon [false/true|default:true] + enable_enchantment_magic_siphon = true + #Enables the enchantment Plague Bringer [false/true|default:true] + enable_enchantment_plague_bringer = true + #Enables the enchantment Curse of Bones [false/true|default:true] + enable_enchantment_curse_of_bones = true + #Enables the enchantment Blessing [false/true|default:true] + enable_enchantment_blessing = true + #Enables the enchantment Frostbite [false/true|default:true] + enable_enchantment_frostbite = true + #Enables the enchantment Spectral Conjurer [false/true|default:true] + enable_enchantment_spectral_conjurer = true + #Enables the enchantment Incurable Wounds [false/true|default:true] + enable_enchantment_incurable_wounds = true + #Enables the enchantment Decrepitude [false/true|default:true] + enable_enchantment_decrepitude = true + #Enables the enchantment Sanctified [false/true|default:true] + enable_enchantment_sanctified = true + #Enables the enchantment Ruthless Strike [false/true|default:true] + enable_enchantment_ruthless_strike = true + #Allows Soulbound at enchanting table [false/true|default:false] + soulbound_enchanting_table = true + #Allows Spectral Bite at enchanting table [false/true|default:false] + spectral_bite_enchanting_table = true + #Allows Magic Siphon at enchanting table [false/true|default:false] + magic_siphon_enchanting_table = true + #Allows Plague Bringer at enchanting table [false/true|default:false] + plague_bringer_enchanting_table = true + #Allows Curse of Bones at enchanting table [false/true|default:false] + curse_of_bones_enchanting_table = true + #Allows Blessing at enchanting table [false/true|default:false] + blessing_enchanting_table = true + #Allows Frostbite at enchanting table [false/true|default:false] + frostbite_enchanting_table = true + #Allows Spectral Conjurer at enchanting table [false/true|default:false] + spectral_conjurer_enchanting_table = true + #Allows Incurable Wounds at enchanting table [false/true|default:false] + incurable_wounds_enchanting_table = true + #Allows Decrepitude at enchanting table [false/true|default:false] + decrepitude_enchanting_table = true + #Allows Sanctified at enchanting table [false/true|default:false] + sanctified_enchanting_table = true + #Allows Ruthless Strike at enchanting table [false/true|default:false] + ruthless_strike_enchanting_table = true + +#Allows to customize or disable the potions +[potions] + #Allows Earthly Garden [false/true|default:true] + allow_earthly_garden = true + #Allows Bait [false/true|default:true] + allow_bait = true + #Allows Frostbite [false/true|default:true] + allow_frostbite = true + #Allows Darkness [false/true|default:true] + allow_darkness = true + #Allows Discretion [false/true|default:true] + allow_discretion = true + #Allows Restoration [false/true|default:true] + allow_restoration = true + +#For settings related to magic items +[magic_item] + #Chance for players to obtain an enchanted Grave's Key on death (-1 disables the Perk Jailer) [-1..100|default:0] + #Range: -1 ~ 100 + chance_enchanted_grave_key = 0 + #Prevents to craft Enchanted Grave Key [false/true|default:false] + disable_enchanted_grave_key_recipe = false + #Scroll duration [1200..120000|default:12000] + #Range: 1200 ~ 120000 + scroll_duration = 12000 + #Defines experience lost when storing experience in a Scroll of Knowledge + #Range: 0 ~ 90 + scroll_of_knowledge_loss = 0 + #Cooldown in second after using a tablet [60..1200|default:300] + #Range: 60 ~ 1200 + tablet_cooldown = 300 + #The cooldown in minutes to reset the perks with the Book of Oblivion [20..1440|default:120] + #Range: 20 ~ 1440 + cooldown_reset_perk = 120 + +#For settings related to decorative tombs and magic items +[decorative_grave] + #The cooldown in minutes to pray with the Ankh [1..60|default:60] + #Range: 1 ~ 60 + prayer_cooldown = 60 + +#Allows to disable some magic items +[allowedMagicItems] + #Voodoo Poppet [false/true|default:true] + allow_voodoo_poppet = true + #Receptacle of Familiar [false/true|default:true] + allow_receptacle_of_familiar = true + #Book of Disenchantment [false/true|default:true] + allow_book_of_disenchantment = true + #Scroll of Preservation [false/true|default:true] + allow_scroll_of_preservation = true + #Grave's Key [false/true|default:true] + allow_grave_key = true + #Scroll of Knowledge [false/true|default:true] + allow_scroll_of_knowledge = true + #Tablet of Recall [false/true|default:true] + allow_tablet_of_recall = true + #Tablet of Home [false/true|default:true] + allow_tablet_of_home = true + #Tablet of Assistance [false/true|default:true] + allow_tablet_of_assistance = true + #Tablet of Guard [false/true|default:true] + allow_tablet_of_guard = true + #Tablet of Cupidity [false/true|default:true] + allow_tablet_of_cupidity = true + #Scroll of Unstable Intangibility [false/true|default:true] + allow_scroll_of_unstable_intangibility = true + #Scroll of Feather Fall [false/true|default:true] + allow_scroll_of_feather_fall = true + #Scroll of Purification [false/true|default:true] + allow_scroll_of_purification = true + #Scroll of True Sight [false/true|default:true] + allow_scroll_of_true_sight = true + #Lost Tablet [false/true|default:true] + allow_lost_tablet = true + #Scroll of Reach [false/true|default:true] + allow_scroll_of_reach = true + #Scroll of Lightning Resistance [false/true|default:true] + allow_scroll_of_lightning_resistance = true + #Scroll of Frost Resistance [false/true|default:true] + allow_scroll_of_frost_resistance = true + #Scroll of Aquatic Life [false/true|default:true] + allow_scroll_of_aquatic_life = true + #Scroll of Mercy [false/true|default:true] + allow_scroll_of_mercy = true + #Dust of Vanishing [false/true|default:true] + allow_dust_of_vanishing = true + #Dust of Frost [false/true|default:true] + allow_dust_of_frost = true + #Enchanted Bundle [false/true|default:true] + allow_enchanted_bundle = true + #Book of Recycling [false/true|default:true] + allow_book_of_recycling = true + #Book of Repairing [false/true|default:true] + allow_book_of_repairing = true + #Book of Magic Impregnation [false/true|default:true] + allow_book_of_magic_impregnation = true + #Book of Scribe [false/true|default:true] + allow_book_of_scribe = true + #Book of Soulbound [false/true|default:true] + allow_book_of_soulbound = true + #Book of Oblivion [false/true|default:true] + allow_book_of_oblivion = true + #Smoke Ball [false/true|default:true] + allow_smoke_ball = true + #Seeker Rod [false/true|default:true] + allow_seeker_rod = true + #Christmas Hat [false/true|default:true] + allow_christmas_hat = true + #Bag of Seeds [false/true|default:true] + allow_bag_of_seeds = true + #Magic Scroll [false/true|default:true] + allow_magic_scroll = true + #Gemstone of Familiar [false/true|default:true] + allow_gemstone_of_familiar = true + #Gemstone of Merchant [false/true|default:true] + allow_gemstone_of_merchant = true + #Gemstone of Prayer [false/true|default:true] + allow_gemstone_of_prayer = true + #Gemstone of Guardian [false/true|default:true] + allow_gemstone_of_guardian = true + +#Allows to enable some features related to others mods +[compatibility] + #fix the RepairCost:0 added by the anvil & grindstone in nbt preventing theses items to stack [false/true|default:true] + fix_repair_cost_zero = true + diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-abandoned_grave.json b/minecraft/config/tombstone/loottables/tombstone-pool-abandoned_grave.json new file mode 100644 index 0000000..3e726e9 --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-abandoned_grave.json @@ -0,0 +1,114 @@ +{ + "name": "tombstone:abandoned_grave", + "rolls": { + "type": "minecraft:uniform", + "min": 3.0, + "max": 5.0 + }, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 200, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + }, + { + "function": "minecraft:set_nbt", + "tag": "{ancient:1b}" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 200, + "functions": [ + { + "function": "minecraft:enchant_randomly" + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:enchanted_equipment", + "type": 0, + "enchantedChance": 50, + "randomEnchantability": 60 + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:enchanted_equipment", + "type": 2, + "enchantedChance": 50, + "randomEnchantability": 60 + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 400, + "functions": [ + { + "function": "tombstone:enchanted_equipment", + "type": 1, + "enchantedChance": 50, + "randomEnchantability": 60 + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 300, + "functions": [ + { + "function": "tombstone:random_potion" + } + ], + "name": "minecraft:potion" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-archaeology.json b/minecraft/config/tombstone/loottables/tombstone-pool-archaeology.json new file mode 100644 index 0000000..9f8bcb5 --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-archaeology.json @@ -0,0 +1,88 @@ +{ + "name": "tombstone:archeology_treasure", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:ritual_flute" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:receptacle_of_soul" + }, + { + "type": "minecraft:item", + "weight": 300, + "functions": [ + { + "function": "tombstone:random_magic_tablet", + "ancient": false + } + ], + "name": "tombstone:strange_tablet" + }, + { + "type": "minecraft:item", + "weight": 150, + "functions": [ + { + "function": "tombstone:random_magic_tablet", + "ancient": true + } + ], + "name": "tombstone:strange_tablet" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:empty", + "weight": 5800 + } + ], + "conditions": [ + { + "condition": "tombstone:check_player" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-cat_morning.json b/minecraft/config/tombstone/loottables/tombstone-pool-cat_morning.json new file mode 100644 index 0000000..b36a24f --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-cat_morning.json @@ -0,0 +1,67 @@ +{ + "name": "tombstone:cat_morning", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:check_enabled" + }, + { + "function": "tombstone:trigger_cat_morning" + }, + { + "function": "minecraft:set_count", + "count": { + "type": "minecraft:uniform", + "min": 1.0, + "max": 3.0 + }, + "add": false + } + ], + "name": "tombstone:grave_dust" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 20, + "name": "minecraft:bundle" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:bag_of_seeds" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:empty", + "weight": 483 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-chest_treasure.bak b/minecraft/config/tombstone/loottables/tombstone-pool-chest_treasure.bak new file mode 100644 index 0000000..8d4e52d --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-chest_treasure.bak @@ -0,0 +1,98 @@ +{ + "name": "tombstone:chest_treasure", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 20, + "name": "minecraft:bundle" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:bag_of_seeds" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:random_scroll_buff", + "ancient": false + } + ], + "name": "tombstone:strange_scroll" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:scroll_of_knowledge" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:random_magic_tablet", + "ancient": false + } + ], + "name": "tombstone:strange_tablet" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:voodoo_poppet" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:empty", + "weight": 710 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-chest_treasure.json b/minecraft/config/tombstone/loottables/tombstone-pool-chest_treasure.json new file mode 100644 index 0000000..89eebc7 --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-chest_treasure.json @@ -0,0 +1,107 @@ +{ + "name": "tombstone:chest_treasure", + "rolls": { + "type": "minecraft:uniform", + "min": 1.0, + "max": 3.0 + }, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 20, + "name": "minecraft:bundle" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:bag_of_seeds" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:random_scroll_buff", + "ancient": false + } + ], + "name": "tombstone:strange_scroll" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:scroll_of_knowledge" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:random_magic_tablet", + "ancient": false + } + ], + "name": "tombstone:strange_tablet" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:voodoo_poppet" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:empty", + "weight": 870 + } + ], + "conditions": [ + { + "condition": "tombstone:check_player" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-lost_treasure.json b/minecraft/config/tombstone/loottables/tombstone-pool-lost_treasure.json new file mode 100644 index 0000000..42f0690 --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-lost_treasure.json @@ -0,0 +1,153 @@ +{ + "name": "tombstone:lost_treasure", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:ritual_flute" + }, + { + "type": "minecraft:item", + "weight": 40, + "functions": [ + { + "function": "tombstone:random_in_tag", + "rl": "minecraft:decorated_pot_sherds" + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 20, + "name": "minecraft:bundle" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:bag_of_seeds" + }, + { + "type": "minecraft:item", + "weight": 15, + "functions": [ + { + "function": "tombstone:random_magic_tablet", + "ancient": true + } + ], + "name": "tombstone:strange_tablet" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:scroll_of_knowledge" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:voodoo_poppet" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:fishing_rod_of_misadventure" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:lost_tablet" + }, + { + "type": "minecraft:empty", + "weight": 3350 + } + ], + "conditions": [ + { + "condition": "tombstone:check_player" + }, + { + "condition": "minecraft:entity_properties", + "predicate": { + "type_specific": { + "in_open_water": true, + "type": "fishing_hook" + } + }, + "entity": "this" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-seeker_rod.json b/minecraft/config/tombstone/loottables/tombstone-pool-seeker_rod.json new file mode 100644 index 0000000..ae9a00f --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-seeker_rod.json @@ -0,0 +1,69 @@ +{ + "name": "tombstone:seeker_rod", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 5, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 15, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:receptacle_of_soul" + }, + { + "type": "minecraft:item", + "weight": 25, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 25, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_potion", + "id": "tombstone:restoration" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:random_scroll_buff", + "ancient": true + } + ], + "name": "tombstone:strange_scroll" + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-sniffer_digging.json b/minecraft/config/tombstone/loottables/tombstone-pool-sniffer_digging.json new file mode 100644 index 0000000..13e2ded --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-sniffer_digging.json @@ -0,0 +1,21 @@ +{ + "name": "tombstone:sniffer_digging", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 5, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:grave_dust" + }, + { + "type": "minecraft:empty", + "weight": 95 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-undead_boss.json b/minecraft/config/tombstone/loottables/tombstone-pool-undead_boss.json new file mode 100644 index 0000000..9ad8303 --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-undead_boss.json @@ -0,0 +1,96 @@ +{ + "name": "tombstone:undead_boss", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:ritual_flute" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:gemstone_of_familiar" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:receptacle_of_soul" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:random_scroll_buff", + "ancient": true + } + ], + "name": "tombstone:strange_scroll" + }, + { + "type": "minecraft:item", + "weight": 50, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + }, + { + "function": "minecraft:set_nbt", + "tag": "{ancient:1b}" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:receptacle_of_familiar" + }, + { + "type": "minecraft:empty", + "weight": 2550 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-pool-undead_mob.json b/minecraft/config/tombstone/loottables/tombstone-pool-undead_mob.json new file mode 100644 index 0000000..ec9c3b7 --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-pool-undead_mob.json @@ -0,0 +1,75 @@ +{ + "name": "tombstone:undead_mob", + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "weight": 100, + "functions": [ + { + "function": "tombstone:check_enabled" + }, + { + "function": "minecraft:set_count", + "count": { + "type": "minecraft:uniform", + "min": 1.0, + "max": 2.0 + }, + "add": false + } + ], + "name": "tombstone:grave_dust" + }, + { + "type": "minecraft:item", + "weight": 20, + "name": "minecraft:bundle" + }, + { + "type": "minecraft:item", + "weight": 10, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:bag_of_seeds" + }, + { + "type": "minecraft:item", + "weight": 20, + "functions": [ + { + "function": "tombstone:delayed_nbt_loot" + } + ], + "name": "tombstone:magic_scroll" + }, + { + "type": "minecraft:item", + "weight": 5, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:essence_of_undeath" + }, + { + "type": "minecraft:item", + "weight": 5, + "functions": [ + { + "function": "tombstone:check_enabled" + } + ], + "name": "tombstone:ritual_flute" + }, + { + "type": "minecraft:empty", + "weight": 800 + } + ] +} \ No newline at end of file diff --git a/minecraft/config/tombstone/loottables/tombstone-table-chest_treasure.json b/minecraft/config/tombstone/loottables/tombstone-table-chest_treasure.json new file mode 100644 index 0000000..7da75c3 --- /dev/null +++ b/minecraft/config/tombstone/loottables/tombstone-table-chest_treasure.json @@ -0,0 +1 @@ +{"loottables":["minecraft:chests/bastion_treasure","minecraft:chests/ruined_portal","minecraft:chests/shipwreck_supply","minecraft:chests/stronghold_corridor","minecraft:chests/bastion_other","minecraft:chests/ancient_city_ice_box","minecraft:chests/simple_dungeon","minecraft:chests/nether_bridge","minecraft:chests/underwater_ruin_small","minecraft:chests/igloo_chest","minecraft:chests/buried_treasure","minecraft:chests/abandoned_mineshaft","minecraft:chests/bastion_hoglin_stable","minecraft:chests/ancient_city","minecraft:chests/stronghold_crossing","minecraft:chests/shipwreck_treasure","minecraft:chests/jungle_temple","minecraft:chests/desert_pyramid","minecraft:chests/pillager_outpost","minecraft:chests/stronghold_library","minecraft:chests/underwater_ruin_big","minecraft:chests/shipwreck_map","minecraft:chests/jungle_temple_dispenser","minecraft:chests/woodland_mansion","minecraft:chests/end_city_treasure","minecraft:chests/bastion_bridge"]} \ No newline at end of file diff --git a/minecraft/config/tombstone/version.info b/minecraft/config/tombstone/version.info new file mode 100644 index 0000000..b9d5d09 --- /dev/null +++ b/minecraft/config/tombstone/version.info @@ -0,0 +1 @@ +9.0.10 \ No newline at end of file diff --git a/minecraft/config/tomeofblood/base-common.toml b/minecraft/config/tomeofblood/base-common.toml new file mode 100644 index 0000000..600ab38 --- /dev/null +++ b/minecraft/config/tomeofblood/base-common.toml @@ -0,0 +1,5 @@ +#Conversion rate of LP into player mana +conversionRate = 10 +#Scale at which Living Mage Armor gains experience compared to normal Living Armor +livingExpScale = 0.8 + diff --git a/minecraft/config/tomeofblood/glyph_sentient_harm.toml b/minecraft/config/tomeofblood/glyph_sentient_harm.toml new file mode 100644 index 0000000..7549059 --- /dev/null +++ b/minecraft/config/tomeofblood/glyph_sentient_harm.toml @@ -0,0 +1,36 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 25 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 4.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 2.0 + #Potion duration, in seconds + #Range: > 0 + potion_time = 5 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 5 + diff --git a/minecraft/config/tomeofblood/glyph_sentient_wrath.toml b/minecraft/config/tomeofblood/glyph_sentient_wrath.toml new file mode 100644 index 0000000..259fc5b --- /dev/null +++ b/minecraft/config/tomeofblood/glyph_sentient_wrath.toml @@ -0,0 +1,36 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 40 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = ["ars_nouveau:glyph_amplify=2"] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Range: 0.0 ~ 2.147483647E9 + damage = 3.0 + #Range: 0.0 ~ 2.147483647E9 + amplify = 2.0 + #Potion duration, in seconds + #Range: > 0 + potion_time = 20 + #Extend time duration, in seconds + #Range: > 0 + extend_time = 5 + diff --git a/minecraft/config/toms_storage-common.toml b/minecraft/config/toms_storage-common.toml new file mode 100644 index 0000000..f207293 --- /dev/null +++ b/minecraft/config/toms_storage-common.toml @@ -0,0 +1,14 @@ +#IMPORTANT NOTICE: +#THIS IS ONLY THE COMMON CONFIG. It does not contain all the values adjustable for Tom's Simple Storage +#The settings have been moved to toms_storage-server.toml +#That file is PER WORLD, meaning you have to go into 'saves//serverconfig' to adjust it. Those changes will then only apply for THAT WORLD. +#You can then take that config file and put it in the 'defaultconfigs' folder to make it apply automatically to all NEW worlds you generate FROM THERE ON. +#This may appear confusing to many of you, but it is a new sensible way to handle configuration, because the server configuration is synced when playing multiplayer. +importantInfo = true +#List of multiblock inventory blocks +multiblockInv = [""] +#List of mod ids whose blocks is ignored by the inventory connector +blockedMods = [""] +#List of block ids ignored by the inventory connector +blockedBlocks = [""] + diff --git a/minecraft/config/toolbelt-client.toml b/minecraft/config/toolbelt-client.toml new file mode 100644 index 0000000..a335174 --- /dev/null +++ b/minecraft/config/toolbelt-client.toml @@ -0,0 +1,20 @@ + +#Options for customizing the display of tools on the player +[display] + #If set to FALSE, the belts and tools will NOT draw on players. + showBeltOnPlayers = true + #Changes the scale of items on the belt. + #Range: 0.1 ~ 2.0 + beltItemScale = 0.5 + +#Options for customizing the radial menu +[menu] + #If set to TRUE, releasing the menu key (R) will activate the swap. Requires a click otherwise (default). + releaseToSwap = false + #If set to TRUE, the radial menu will try to prevent the mouse from leaving the outer circle. + clipMouseToCircle = false + #If set to TRUE, the radial menu will allow clicking outside the outer circle to activate the items. + allowClickOutsideBounds = false + #If set to TRUE, the radial menu will always display all the slots, even when empty, and will allow choosing which empty slot to insert into. + displayEmptySlots = false + diff --git a/minecraft/config/toolbelt-common.toml b/minecraft/config/toolbelt-common.toml new file mode 100644 index 0000000..a7c07ad --- /dev/null +++ b/minecraft/config/toolbelt-common.toml @@ -0,0 +1,14 @@ + +[general] + #If set to FALSE, support for sewing recipes will not be enabled regardless of the mod's presence. + enableSewingKitSupport = true + #If AUTO, the crafting and upgrade recipes will use the Sewing mechanics if the Sewing Kit mod is present. Off disables anvil upgrading regardless. + #Allowed Values: OFF, AUTO, ON + anvilUpgrading = "AUTO" + #If AUTO, the belt and pouch crafting recipes will be disabled if the Sewing Kit mod is present, sewing recipes will be used instead. + #Allowed Values: OFF, AUTO, ON + enableGridCraftingRecipes = "AUTO" + #If AUTO, the belt slot will be disabled if Curios is present. If OFF, the belt slot will be disabled permanently. + #Allowed Values: OFF, AUTO, ON + customBeltSlotMode = "ON" + diff --git a/minecraft/config/toolstats.json b/minecraft/config/toolstats.json new file mode 100644 index 0000000..f44dafa --- /dev/null +++ b/minecraft/config/toolstats.json @@ -0,0 +1,12 @@ +{ + "showEnchantability": true, + "alwaysShowEnchantability": false, + "showRepairCost": true, + "alwaysShowRepairCost": false, + "showHarvestLevel": true, + "showEfficiency": true, + "showSwordEfficiency": false, + "showDurability": true, + "alwaysShowDurability": false, + "showHorseArmorProtection": true +} \ No newline at end of file diff --git a/minecraft/config/toomanyglyphs/glyph_amplify_three.toml b/minecraft/config/toomanyglyphs/glyph_amplify_three.toml new file mode 100644 index 0000000..10c7c22 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_amplify_three.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 1280 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 3 + diff --git a/minecraft/config/toomanyglyphs/glyph_amplify_two.toml b/minecraft/config/toomanyglyphs/glyph_amplify_two.toml new file mode 100644 index 0000000..98e09a8 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_amplify_two.toml @@ -0,0 +1,17 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 320 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + diff --git a/minecraft/config/toomanyglyphs/glyph_chaining.toml b/minecraft/config/toomanyglyphs/glyph_chaining.toml new file mode 100644 index 0000000..783d613 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_chaining.toml @@ -0,0 +1,50 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 300 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 1 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + #Base maximum number of blocks struck when targeting blocks + #Range: > 1 + base_max_blocks = 16 + #Bonus to maximum blocks per augment + #Range: > 1 + bonus_blocks = 16 + #Base search distance around each target block + #Range: 1.0 ~ 2.147483647E9 + base_block_search_distance_euclidean = 1.75 + #Bonus search distance around each target block per augment + #Range: 1.0 ~ 2.147483647E9 + bonus_block_distance_euclidean = 1.0 + #Base maximum number of entities struck when targeting entities + #Range: > 1 + base_max_entities = 8 + #Bonus to maximum entities per augment + #Range: > 1 + bonus_entities = 16 + #Base search distance around each target entity + #Range: 0.0 ~ 1.7976931348623157E308 + base_entity_distance = 8.0 + #Bonus search distance around each target entity per augment + #Range: 0.0 ~ 1.7976931348623157E308 + bonus_entity_distance = 4.0 + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_animal.toml b/minecraft/config/toomanyglyphs/glyph_filter_animal.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_animal.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_block.toml b/minecraft/config/toomanyglyphs/glyph_filter_block.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_block.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_entity.toml b/minecraft/config/toomanyglyphs/glyph_filter_entity.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_entity.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_is_baby.toml b/minecraft/config/toomanyglyphs/glyph_filter_is_baby.toml new file mode 100644 index 0000000..9062dd8 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_is_baby.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_is_mature.toml b/minecraft/config/toomanyglyphs/glyph_filter_is_mature.toml new file mode 100644 index 0000000..9062dd8 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_is_mature.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 2 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_item.toml b/minecraft/config/toomanyglyphs/glyph_filter_item.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_item.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_living.toml b/minecraft/config/toomanyglyphs/glyph_filter_living.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_living.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_living_not_monster.toml b/minecraft/config/toomanyglyphs/glyph_filter_living_not_monster.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_living_not_monster.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_living_not_player.toml b/minecraft/config/toomanyglyphs/glyph_filter_living_not_player.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_living_not_player.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_monster.toml b/minecraft/config/toomanyglyphs/glyph_filter_monster.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_monster.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_filter_player.toml b/minecraft/config/toomanyglyphs/glyph_filter_player.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_filter_player.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_lay_on_hands.toml b/minecraft/config/toomanyglyphs/glyph_lay_on_hands.toml new file mode 100644 index 0000000..62c376f --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_lay_on_hands.toml @@ -0,0 +1,23 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + diff --git a/minecraft/config/toomanyglyphs/glyph_ray.toml b/minecraft/config/toomanyglyphs/glyph_ray.toml new file mode 100644 index 0000000..30f2aa9 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_ray.toml @@ -0,0 +1,29 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 10 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Base range in blocks + #Range: 0.0 ~ 1.7976931348623157E308 + base_range = 16.0 + #Bonus range per augment + #Range: 0.0 ~ 1.7976931348623157E308 + bonus_range_per_augment = 16.0 + diff --git a/minecraft/config/toomanyglyphs/glyph_reverse_direction.toml b/minecraft/config/toomanyglyphs/glyph_reverse_direction.toml new file mode 100644 index 0000000..837d732 --- /dev/null +++ b/minecraft/config/toomanyglyphs/glyph_reverse_direction.toml @@ -0,0 +1,26 @@ + +#General settings +[general] + #Is Enabled? + enabled = true + #Cost + #Range: > -2147483648 + cost = 0 + #Is Starter Glyph? + starter = false + #The maximum number of times this glyph may appear in a single spell + #Range: > 1 + per_spell_limit = 2147483647 + #The tier of the glyph + #Range: 1 ~ 99 + glyph_tier = 1 + #Limits the number of times a given augment may be applied to a given effect + #Example entry: "glyph_amplify=5" + augment_limits = [] + #How much an augment should cost when used on this effect or form. This overrides the default cost in the augment config. + #Example entry: "glyph_amplify=50" + augment_cost_overrides = [] + #Prevents the given glyph from being used in the same spell as the given glyph + #Example entry: "glyph_burst" + invalid_combos = [] + diff --git a/minecraft/config/torchmaster.toml b/minecraft/config/torchmaster.toml new file mode 100644 index 0000000..e0b98aa --- /dev/null +++ b/minecraft/config/torchmaster.toml @@ -0,0 +1,50 @@ + +[General] + #Show additional information in the tooltip of certain items and blocks + beginnerTooltips = true + #By default, mega torches only block natural spawns (i.e. from low light levels). Setting this to false will also block spawns from spawners + blockOnlyNaturalSpawns = true + #If this setting is enabled, the mega torch will block all natural spawn attempts from Lycanites Mobs in its radius + lycanitesMobsBlockAll = true + #If this setting is enabled, the mega torch will block village sieges from zombies + blockVillageSieges = true + #The radius of the mega torch in each direction (cube) with the torch at its center + #Range: > 0 + megaTorchRadius = 64 + #The radius of the dread lamp in each direction (cube) with the torch at its center + #Range: > 0 + dreadLampRadius = 64 + #Use this setting to override the internal lists for entity blocking + #You can use this to block more entities or even allow certain entities to still spawn + #The + prefix will add the entity to the list, effectivly denying its spawns + #The - prefix will remove the entity from the list (if necessary), effectivly allowing its spawns + #Note: Each entry needs to be put in quotes! Multiple Entries should be separated by comma. + #Block zombies: "+minecraft:zombie" + #Allow creepers: "-minecraft:creeper" + megaTorchEntityBlockListOverrides = [] + #Same as the mega torch block list override, just for the dread lamp + #Block squid: +minecraft:squid + #Allow pigs: -minecraft:pig + dreadLampEntityBlockListOverrides = [] + #The radius in which the feral flare should try to place lights + #Range: 1 ~ 127 + feralFlareRadius = 16 + #Controls how often the flare should try to place lights. 1 means every tick, 10 every 10th tick, etc + #Range: > 1 + feralFlareTickRate = 5 + #The target minimum light level to place lights for + #Range: 0 ~ 15 + feralFlareMinLightLevel = 10 + #The maximum amount of invisble lights a feral flare lantern can place. Set to 0 to disable light placement. + #Warning: Setting this value too high in conjunction with the feralFlareMinLightLevel and Radius can lead to world corruption! + #(Badly compressed packet error) + #Range: 0 ~ 32767 + feralFlareLanternLightCountHardcap = 255 + #Durability of the frozen pearl. Each removed light will remove one charge from the pearl. Set to 0 to disable durability + #Range: 0 ~ 32767 + frozenPearlDurability = 1024 + #Print entity spawn checks to the debug log + logSpawnChecks = false + #Configures the spawn check to be more aggressive, effectivly overriding the CheckSpawn results of other mods + aggressiveSpawnChecks = false + diff --git a/minecraft/config/towns_and_towers/structure_enable_or_disable_new.json5 b/minecraft/config/towns_and_towers/structure_enable_or_disable_new.json5 new file mode 100644 index 0000000..df278cb --- /dev/null +++ b/minecraft/config/towns_and_towers/structure_enable_or_disable_new.json5 @@ -0,0 +1,88 @@ +/* +This config file makes it possible to switch off any structure from Towns and Towers. Big thanks to Cristelknight for making this all possible. +To disable a structure, simply set the value of that structure to "false". +o change the rarity of a structure category, use the other file in the config. + +LINKS +===== +Curseforge link: https://www.curseforge.com/minecraft/mc-mods/towns-and-towers +Modrinth link: https://modrinth.com/mod/towns-and-towers +PMC link: https://www.planetminecraft.com/data-pack/towns-amp-towers-structure-overhaul/ +GitHub Repository: [NEED TO MAKE ONE] +*/ +{ + // Here you can find all pillager outposts. + "towers": { + "pillager_outpost_badlands": true, + "pillager_outpost_beach": true, + "pillager_outpost_birch_forest": true, + "pillager_outpost_desert": true, + "pillager_outpost_flower_forest": true, + "pillager_outpost_forest": true, + "pillager_outpost_grove": true, + "pillager_outpost_jungle": true, + "pillager_outpost_meadow": true, + "pillager_outpost_mushroom_fields": true, + "pillager_outpost_ocean": true, + "pillager_outpost_old_growth_taiga": true, + "pillager_outpost_savanna": true, + "pillager_outpost_savanna_plateau": true, + "pillager_outpost_snowy_beach": true, + "pillager_outpost_snowy_plains": true, + "pillager_outpost_snowy_slopes": true, + "pillager_outpost_sparse_jungle": true, + "pillager_outpost_sunflower_plains": true, + "pillager_outpost_swamp": true, + "pillager_outpost_taiga": true, + "pillager_outpost_snowy_taiga": true, + "pillager_outpost_wooded_badlands": true, + // Here you can find all pillager outposts which are exclusive to other worldgen mods (ex.: WWOO, Terralith, BoP, BYG, etc.). + "exclusives": { + "pillager_outpost_mediterranean": true, + "pillager_outpost_tudor": true, + "pillager_outpost_classic": true, + "pillager_outpost_oriental": true, + "pillager_outpost_swedish": true, + "pillager_outpost_iberian": true, + "pillager_outpost_rustic": true + } + }, + // Here you can find all structures that aren't villages or outposts. + "other": { + "mimic_desert": true, + "wreckage_ocean": true + }, + // Here you can find all villages. + "towns": { + "village_badlands": true, + "village_beach": true, + "village_birch_forest": true, + "village_flower_forest": true, + "village_forest": true, + "village_snowy_slopes": true, + "village_jungle": true, + "village_meadow": true, + "village_mushroom_fields": true, + "village_ocean": true, + "village_old_growth_taiga": true, + "village_grove": true, + "village_savanna_plateau": true, + "village_sunflower_plains": true, + "village_snowy_taiga": true, + "village_sparse_jungle": true, + "village_swamp": true, + "village_wooded_badlands": true, + // Here you can find all villages which are exclusive to other worldgen mods (ex.: WWOO, Terralith, BoP, BYG, etc.). + "exclusives": { + "village_mediterranean": true, + "village_swedish": true, + "village_tudor": true, + "village_wandering_trader_camp": true, + "village_classic": true, + "village_rustic": true, + "village_iberian": true, + "village_nilotic": true, + "village_piglin": true + } + } +} \ No newline at end of file diff --git a/minecraft/config/towns_and_towers/structure_rarity_new.json5 b/minecraft/config/towns_and_towers/structure_rarity_new.json5 new file mode 100644 index 0000000..48dbffc --- /dev/null +++ b/minecraft/config/towns_and_towers/structure_rarity_new.json5 @@ -0,0 +1,43 @@ +/* +This config file makes it possible to change the spacing, separation, salt (and frequency) of Towns and Towers' structure sets. Big thanks to Cristelknight for making this all possible. + SPACING --- controls how far a structure can be from others of its kind + SEPARATION --- controls how close to each other two structures of the same type can be. +By default, the values should be 48/24 for villages and outposts (spacing/separation respectively) - a hypothetical village is going to appear not further than 48 chunks away (ca. 760 blocks), but not closer than 24 chunks (ca. 380 blocks). + * If you want a structure to spawn more frequently, decrease those values. + * If you want a structure to spawn less frequently, increase those values. +KEEP IN MIND THAT SPACING ALWAYS NEEDS TO BE HIGHER THAN SEPARATION. + +LINKS +===== +Curseforge link: https://www.curseforge.com/minecraft/mc-mods/towns-and-towers +Modrinth link: https://modrinth.com/mod/towns-and-towers +PMC link: https://www.planetminecraft.com/data-pack/towns-amp-towers-structure-overhaul/ +GitHub Repository: [NEED TO MAKE ONE] +*/ +{ + // Here you can find all pillager outposts. + "towers": { + // DEFAULT 48 + "spacing": 48, + // DEFAULT 24 + "separation": 24, + "frequency": 0.2, + "salt": 205745294 + }, + // Here you can find all structures that aren't villages or outposts. + "other": { + // DEFAULT 32 + "spacing": 32, + // DEFAULT 16 + "separation": 16, + "salt": 30084234 + }, + // Here you can find all villages. + "towns": { + // DEFAULT 48 + "spacing": 48, + // DEFAULT 24 + "separation": 24, + "salt": 10587309 + } +} \ No newline at end of file diff --git a/minecraft/config/tradingpost-server.toml b/minecraft/config/tradingpost-server.toml new file mode 100644 index 0000000..9e9523d --- /dev/null +++ b/minecraft/config/tradingpost-server.toml @@ -0,0 +1,17 @@ +#Range on xz plane trading post should search for merchants. +#Range: 1 ~ 96 +horizontal_range = 24 +#Disable traders on the trading screen when they wander out of range. +enforce_range = false +#Teleport xp from trading from villagers on top of the trading post. +teleport_xp = true +#Range on y axis trading post should search for merchants. +#Range: 1 ~ 96 +vertical_range = 16 +#Trader entities disabled from being found by the trading post. +#Modders may add their own incompatible trader entities via the "tradingpost:blacklisted_traders" entity tag. +#Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. +trader_blacklist = [] +#Close trading post interface when all traders have become unavailable. +close_empty_screen = true + diff --git a/minecraft/config/transmog.json b/minecraft/config/transmog.json new file mode 100644 index 0000000..762c30b --- /dev/null +++ b/minecraft/config/transmog.json @@ -0,0 +1,5 @@ +{ + "renderOption": "IN_WORLD", + "tooltipDetailLevel": "FULL", + "pvpDisableDuration": 0 +} \ No newline at end of file diff --git a/minecraft/config/trashslot-common.toml b/minecraft/config/trashslot-common.toml new file mode 100644 index 0000000..dacc058 --- /dev/null +++ b/minecraft/config/trashslot-common.toml @@ -0,0 +1,11 @@ +#TrashSlot will show a hint the first time the trash slot is toggled off or can be enabled on a supported screen. Set to false to disable. +enableHints = true +#Not recommended, but this will allow you to use the keybinds for deleting items even if the trash slot itself is hidden. +allowDeletionWhileTrashSlotIsInvisible = false +#List of items that cannot be deleted, in comma-separated format of "modid:name". +deletionDenyList = [] +#This causes the deletion slot to delete items instantly, similar to Creative Mode. +instantDeletion = false +#Set to true if you want the delete keybindings to work in creative as well. Note: Items will be deleted permanently in creative, regardless of instantDeletion setting! +enableDeleteKeysInCreative = true + diff --git a/minecraft/config/traveloptics/traveloptics-armors.toml b/minecraft/config/traveloptics/traveloptics-armors.toml new file mode 100644 index 0000000..deb525e --- /dev/null +++ b/minecraft/config/traveloptics/traveloptics-armors.toml @@ -0,0 +1,144 @@ + +#This config houses all the armor configuration options || This is currently WIP and doesn't have all the values +[armors] + + [armors.general] + #Should End-game armors be breakable || Default: false + breakable_end_game_armors = false + + [armors.abyssal_hide] + #Armor value of Abyssal Hide armor helmet || Default 6 + #Range: > 1 + helmet_armor_value = 6 + #Armor value of Abyssal Hide armor chestplate || Default 11 + #Range: > 1 + chestplate_armor_value = 11 + #Armor value of Abyssal Hide armor leggings || Default 9 + #Range: > 1 + leggings_armor_value = 9 + #Armor value of Abyssal Hide armor boots || Default 6 + #Range: > 1 + boots_armor_value = 6 + #Toughness || Default 4.0 + #Range: 0.0 ~ 20.0 + armor_toughness = 4.0 + + [armors.primordial_crest] + #Armor value of Primordial Crest armor helmet || Default 4 + #Range: > 1 + helmet_armor_value = 4 + #Armor value of Primordial Crest armor chestplate || Default 8 + #Range: > 1 + chestplate_armor_value = 8 + #Armor value of Primordial Crest armor leggings || Default 6 + #Range: > 1 + leggings_armor_value = 6 + #Armor value of Primordial Crest armor boots || Default 4 + #Range: > 1 + boots_armor_value = 4 + #Toughness || Default 1.5 + #Range: 0.0 ~ 20.0 + armor_toughness = 1.5 + + [armors.tectonic_crest] + #Armor value of Tectonic Crest armor helmet || Default 6 + #Range: > 1 + helmet_armor_value = 6 + #Armor value of Tectonic Crest armor chestplate || Default 11 + #Range: > 1 + chestplate_armor_value = 11 + #Armor value of Tectonic Crest armor leggings || Default 9 + #Range: > 1 + leggings_armor_value = 9 + #Armor value of Tectonic Crest armor boots || Default 6 + #Range: > 1 + boots_armor_value = 6 + #Toughness || Default 4.0 + #Range: 0.0 ~ 20.0 + armor_toughness = 4.0 + + [armors.cursed_wraithguard] + #Armor value of Cursed Wraithguard armor helmet || Default 6 + #Range: > 1 + helmet_armor_value = 6 + #Armor value of Cursed Wraithguard armor chestplate || Default 11 + #Range: > 1 + chestplate_armor_value = 11 + #Armor value of Cursed Wraithguard armor leggings || Default 9 + #Range: > 1 + leggings_armor_value = 9 + #Armor value of Cursed Wraithguard armor boots || Default 6 + #Range: > 1 + boots_armor_value = 6 + #Toughness || Default 4.0 + #Range: 0.0 ~ 20.0 + armor_toughness = 4.0 + + [armors.mechanized_exoskeleton] + #Armor value of Mechanized Exoskeleton armor helmet || Default 6 + #Range: > 1 + helmet_armor_value = 6 + #Armor value of Mechanized Exoskeleton armor chestplate || Default 11 + #Range: > 1 + chestplate_armor_value = 11 + #Armor value of Mechanized Exoskeleton armor leggings || Default 9 + #Range: > 1 + leggings_armor_value = 9 + #Armor value of Mechanized Exoskeleton armor boots || Default 6 + #Range: > 1 + boots_armor_value = 6 + #Toughness || Default 4.0 + #Range: 0.0 ~ 20.0 + armor_toughness = 4.0 + + [armors.deepling_mage] + #Armor value of Deepling Mage armor helmet || Default 3 + #Range: > 1 + helmet_armor_value = 3 + #Armor value of Deepling Mage armor chestplate || Default 8 + #Range: > 1 + chestplate_armor_value = 8 + #Armor value of Deepling Mage armor leggings || Default 6 + #Range: > 1 + leggings_armor_value = 6 + #Armor value of Deepling Mage armor boots || Default 3 + #Range: > 1 + boots_armor_value = 3 + #Toughness || Default 1.5 + #Range: 0.0 ~ 20.0 + armor_toughness = 1.5 + + [armors.forlorn_harbinger] + #Armor value of helmet || Default 6 + #Range: > 1 + helmet_armor_value = 6 + #Armor value of chestplate || Default 11 + #Range: > 1 + chestplate_armor_value = 11 + #Armor value of leggings || Default 9 + #Range: > 1 + leggings_armor_value = 9 + #Armor value of boots || Default 6 + #Range: > 1 + boots_armor_value = 6 + #Toughness || Default 4.0 + #Range: 0.0 ~ 20.0 + armor_toughness = 4.0 + + [armors.riptideSovereign] + #Armor value of helmet || Default 6 + #Range: > 1 + helmet_armor_value = 6 + #Armor value of chestplate || Default 11 + #Range: > 1 + chestplate_armor_value = 11 + #Armor value of leggings || Default 9 + #Range: > 1 + leggings_armor_value = 9 + #Armor value of boots || Default 6 + #Range: > 1 + boots_armor_value = 6 + #Toughness || Default 4.0 + #Range: 0.0 ~ 20.0 + armor_toughness = 4.0 + diff --git a/minecraft/config/traveloptics/traveloptics-client.toml b/minecraft/config/traveloptics/traveloptics-client.toml new file mode 100644 index 0000000..804a87c --- /dev/null +++ b/minecraft/config/traveloptics/traveloptics-client.toml @@ -0,0 +1,63 @@ + +[client] + + [client.general] + #Activates this mod's screen shake implementation || Default: true + #NOTE: This mod also uses screen shake from other dependencies and I haven't ported all of them to use my new method. So disabling this only disable the screen shake happens cause of this mod. Other mod screen shake that T.O uses will still be active. + activateScreenShake = true + #Activates this mod's screen flashing implementation || Default: true + #NOTE: This mod also uses screen flash from other dependencies. So disabling this only disable the screen flash happens cause of this mod. Other mod screen flash that T.O uses will still be active, such as Annihilation flash effect. + activateScreenFlash = true + #Whether the armor info overlay should replace XP bars || Default: false + armor_overlay_replace_xp_bars = false + #Controls if the Boss Info Panels should auto scale GUI to 2x when they are opened || GUI revert back to original user settings when Boss Info is closed || Default: true + letBossScreenAutoAdjustUIScale = true + + [client.plasma_fuel] + #X Offset || Default 0 + #Range: > -2147483648 + x_offset = 0 + #Y Offset || Default 0 + #Range: > -2147483648 + y_offset = 0 + + [client.cursed_wraithguard] + #X Offset || Default 0 + #Range: > -2147483648 + x_offset = 0 + #Y Offset || Default 0 + #Range: > -2147483648 + y_offset = 0 + + [client.abyssal_hide] + #X Offset || Default 0 + #Range: > -2147483648 + x_offset = 0 + #Y Offset || Default 0 + #Range: > -2147483648 + y_offset = 0 + + [client.tectonic_crest] + #X Offset || Default 0 + #Range: > -2147483648 + x_offset = 0 + #Y Offset || Default 0 + #Range: > -2147483648 + y_offset = 0 + + [client.primordial_crest] + #X Offset || Default 0 + #Range: > -2147483648 + x_offset = 0 + #Y Offset || Default 0 + #Range: > -2147483648 + y_offset = 0 + + [client.darkness] + #X Offset || Default 0 + #Range: > -2147483648 + x_offset = 0 + #Y Offset || Default 0 + #Range: > -2147483648 + y_offset = 0 + diff --git a/minecraft/config/traveloptics/traveloptics-common.toml b/minecraft/config/traveloptics/traveloptics-common.toml new file mode 100644 index 0000000..a462984 --- /dev/null +++ b/minecraft/config/traveloptics/traveloptics-common.toml @@ -0,0 +1,15 @@ + +#Common Configs || This config file offer controls to many different things on the mod. +#Changing something you don't know about, might break your game. +[common] + + [common.general] + #Show welcome message || Default: true + welcome_message = true + + [common.effect] + #List of effect IDs that are immune to Rainfall cleanse || Example: ["minecraft:blindness", "minecraft:darkness"] + rainfall_immune_effects = [] + #List of effect IDs that are immune to Acid Rain cleanse || Example: ["minecraft:absorption", "minecraft:health_boost"] + acid_rain_immune_effects = [] + diff --git a/minecraft/config/traveloptics/traveloptics-dependency_items_attribute.toml b/minecraft/config/traveloptics/traveloptics-dependency_items_attribute.toml new file mode 100644 index 0000000..b2d93b5 --- /dev/null +++ b/minecraft/config/traveloptics/traveloptics-dependency_items_attribute.toml @@ -0,0 +1,19 @@ + +#W.I.P +#This file is for the magic attributes that T.O Tweaks provided to its dependency mods' equipments! +#If you're already overriding the same attributes with mods like KubeJS or CIA (Custom Item Attributes), things might not work as intended. +#Make sure to disable one either KubeJS & CIA or T.O Tweaks default attribute provider +[attribute_provider] + + [attribute_provider.general] + #If Attribute Provider system should be enabled or not || Disabling this will entirely disable Attribute Provider to items below || Default: false + attribute_provider_active = false + + [attribute_provider.ignitium_set] + #Ignitium items Fire Spell Power || Default 0.05 + #Range: 0.0 ~ 1.0 + fire_spell_power = 0.05 + #Ignitium items Max Mana || Default 75 + #Range: 0.0 ~ 1000.0 + max_mana = 75.0 + diff --git a/minecraft/config/traveloptics/traveloptics-entity.toml b/minecraft/config/traveloptics/traveloptics-entity.toml new file mode 100644 index 0000000..15ebb27 --- /dev/null +++ b/minecraft/config/traveloptics/traveloptics-entity.toml @@ -0,0 +1,43 @@ + +#This config houses entity related extra config +#If you want to change attributes like attack or hp. Use In-Control mod +[entity] + + [entity.nightwarden] + #Dynamic damage cap auto calculate required values in all phases, the value here is the highest || Default 40.0 + #Range: 10.0 ~ 100.0 + nightwardenDynamicDamageCap = 40.0 + #Default 0.5556 + #Range: 0.1 ~ 3.0 + cloneSlashesMultiplierFromBase = 0.5556 + #Default 0.05 + #Range: 0.0 ~ 3.0 + cloneSlashesHpDamage = 0.05 + #Default 0.6667 + #Range: 0.1 ~ 3.0 + dimensionalSpikeDamageMultiplierFromBase = 0.6667 + #Default 0.4444 + #Range: 0.1 ~ 3.0 + spinCloneDamageMultiplierFromBase = 0.4444 + #Default 0.03 + #Range: 0.0 ~ 3.0 + spinClonesHpDamage = 0.03 + #Default 0.4444 + #Range: 0.1 ~ 3.0 + dropClonesDamageMultiplierFromBase = 0.4444 + #Default 0.05 + #Range: 0.0 ~ 3.0 + dropClonesHpDamage = 0.05 + #Default 0.2778 + #Range: 0.1 ~ 3.0 + endEruptionDamageMultiplierFromBase = 0.2778 + #Default 0.3611 + #Range: 0.1 ~ 3.0 + explodeSpinCloneTrailDamageMultiplierFromBase = 0.3611 + #Default 0.05 + #Range: 0.0 ~ 3.0 + explodeSpinCloneTrailHpDamage = 0.05 + #Default 0.1 + #Range: 0.0 ~ 3.0 + dragonSpiritHpDamage = 0.1 + diff --git a/minecraft/config/traveloptics/traveloptics-spells.toml b/minecraft/config/traveloptics/traveloptics-spells.toml new file mode 100644 index 0000000..b017097 --- /dev/null +++ b/minecraft/config/traveloptics/traveloptics-spells.toml @@ -0,0 +1,166 @@ + +#This config houses all the extra spell and spell mechanics +#If you're looking to change the spell stats instead or disable/enable spells... Go to iron's spellbooks server config file +[spells] + + [spells.annihilation] + #If Annihilation spell can cause blocks to break/create explosion || Default: true + cause_explosion = true + #If Annihilation spell can cause fire || Automatically disabled if cause_explosion is disabled || Default: true + cause_fire = true + + [spells.aerial_collapse] + #Should bosses take less percent-based damage from Aerial Collapse? || less than 1.0 will make them take less damage || Default 1.0 + #Range: 0.1 ~ 1.0 + bosses_take_less_damage = 1.0 + + [spells.death_laser] + #Should DeathLaser break blocks || Default: true + should_break_blocks = true + #Should DeathLaser spell deal magic damage (default boss behavior/Ignore armor/less integration with spell power & resist attributes) || Default: false + should_deal_magic_damage = false + + [spells.abyssal_blast] + #Should Abyssal Blast break blocks || Default: true + should_break_blocks = true + #Should Abyssal Blast spell deal magic damage (default boss behavior/Ignore armor/less integration with spell power & resist attributes) || Default: false + should_deal_magic_damage = false + + [spells.summon] + #Limit the number of active 'Group' summon spells to one at a time || Default: true + limit_group_summon = true + #Limit the number of active 'Kaiju' summon spells to one at a time || Default: true + limit_kaiju_summon = true + #Limit the number of active 'Miniboss' summon spells to one at a time || Default: true + limit_miniboss_summon = true + +#Staff, Spellbooks and other this kind of thing +[staff_spellbooks] + + [staff_spellbooks.titanlord_scepter] + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Variant Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + variant_spell_power_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + #Mana Regen Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + mana_regen_multiplier = 1.0 + #If Titanlord Scepter should grant a recast to Annihilation spell || Default: true + grant_annihilation_recast = true + + [staff_spellbooks.wand_of_final_light] + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Ender Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + ender_spell_power_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + #Cast Time Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cast_time_reduction_multiplier = 1.0 + + [staff_spellbooks.stormEmpressStaff] + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Aqua Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + aqua_spell_power_multiplier = 1.0 + #Lightning Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + lightning_spell_power_multiplier = 1.0 + #Mana Regen Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + mana_regen_multiplier = 1.0 + + [staff_spellbooks.archive_of_abyssal_secrets] + #Max Mana Multiplier || ADDITION || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + #Ender Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + ender_spell_power_multiplier = 1.0 + #Eldritch Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + eldritch_spell_power_multiplier = 1.0 + + [staff_spellbooks.chronicles_of_the_firelord] + #Max Mana Multiplier || ADDITION || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + #Fire Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + fire_spell_power_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + + [staff_spellbooks.shellbound] + #Max Mana Multiplier || ADDITION || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + #Nature Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + nature_spell_power_multiplier = 1.0 + + [staff_spellbooks.the_accused_codex] + #Max Mana Multiplier || ADDITION || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + #Ice Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + ice_spell_power_multiplier = 1.0 + + [staff_spellbooks.codec_of_crushing_depths] + #Max Mana Multiplier || ADDITION || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + #Aqua Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + aqua_spell_power_multiplier = 1.0 + + [staff_spellbooks.guide_to_watery_whispers] + #Max Mana Multiplier || ADDITION || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + #Mana Regen Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + mana_regen_multiplier = 1.0 + #Aqua Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + aqua_spell_power_multiplier = 1.0 + + [staff_spellbooks.diamanticArchive] + #Max Mana Multiplier || ADDITION || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + #Lightning Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + lightning_spell_power_multiplier = 1.0 + diff --git a/minecraft/config/traveloptics/traveloptics-weapons.toml b/minecraft/config/traveloptics/traveloptics-weapons.toml new file mode 100644 index 0000000..b1686af --- /dev/null +++ b/minecraft/config/traveloptics/traveloptics-weapons.toml @@ -0,0 +1,305 @@ + +#Configs for weapons that currently mod has to offer and can be found in survival +[current_weapons] + + [current_weapons.general] + #Should End-game weapons be breakable || Default: false + breakable_end_game_weapons = false + + [current_weapons.abyssal_tidecaller] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Base: 21.0 || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Base: -3.0 || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Eldritch Spell Power Multiplier || MULTIPLY_BASE || Base: 0.10 || Default 1.0 + #Range: 0.0 ~ 10.0 + eldritch_spell_power_multiplier = 1.0 + #Ender Spell Power Multiplier || MULTIPLY_BASE || Base: 0.10 || Default 1.0 + #Range: 0.0 ~ 10.0 + ender_spell_power_multiplier = 1.0 + #Cast Time Reduction Multiplier || MULTIPLY_BASE || Base: 0.10 || Default 1.0 + #Range: 0.0 ~ 10.0 + cast_time_reduction_multiplier = 1.0 + + [current_weapons.flames_of_eldritch] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Eldritch Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + eldritch_spell_power_multiplier = 1.0 + #Fire Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + fire_spell_power_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + + [current_weapons.harbingers_wrath] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Lightning Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + lightning_spell_power_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + + [current_weapons.scourge_of_the_sands] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Evocation Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + evocation_spell_power_multiplier = 1.0 + #Nature Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + nature_spell_power_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + + [current_weapons.thorns_of_oblivion] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Nature Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + nature_spell_power_multiplier = 1.0 + #Ender Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + ender_spell_power_multiplier = 1.0 + #Max Mana Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + + [current_weapons.voidstrike_reaper] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Ender Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + ender_spell_power_multiplier = 1.0 + #Max Mana Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + + [current_weapons.cursed_wraithblade] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Base: 19.0 || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Base: -2.8 || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Ice Spell Power Multiplier || MULTIPLY_BASE || Base: 0.15 || Default 1.0 + #Range: 0.0 ~ 10.0 + ice_spell_power_multiplier = 1.0 + #Eldritch Spell Power Multiplier || MULTIPLY_BASE || Base: 0.05 || Default 1.0 + #Range: 0.0 ~ 10.0 + eldritch_spell_power_multiplier = 1.0 + #Max Mana Multiplier || MULTIPLY_BASE || Base: 0.20 || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + + [current_weapons.infernal_devastator] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Fire Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + fire_spell_power_multiplier = 1.0 + #Max Mana Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + #Blazing Salvo damage multiplier || Default 1.0 + #Range: 1.0 ~ 5.0 + blazing_salvo_multiplier = 1.0 + + [current_weapons.gauntlet_of_extinction] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Fire Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + fire_spell_power_multiplier = 1.0 + #Cast Time Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cast_time_reduction_multiplier = 1.0 + #Primeval Devour damage multiplier || Default 1 || WARNING: Use Integer Values! values that are not integer like 1.2 will be converted into integer anyways! + #Range: 1.0 ~ 5.0 + primeval_devour_multiplier = 1.0 + + [current_weapons.mechanized_wraithblade] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Lightning Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + lightning_spell_power_multiplier = 1.0 + #Cast Time Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cast_time_reduction_multiplier = 1.0 + #Plasma Overdrive damage multiplier || Default 1.0 + #Range: 1.0 ~ 5.0 + plasma_overdrive_multiplier = 1.0 + + [current_weapons.the_obliterator] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Eldritch Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + eldritch_spell_power_multiplier = 1.0 + #Ender Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + ender_spell_power_multiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cooldown_reduction_multiplier = 1.0 + #Oblivion Ray damage multiplier || Default 1.0 + #Range: 1.0 ~ 5.0 + oblivion_ray_multiplier = 1.0 + + [current_weapons.trident_of_the_eternal_maelstrom] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Aqua Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + aqua_spell_power_multiplier = 1.0 + #Mana Regen Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + mana_regen_multiplier = 1.0 + #Boltstrike damage multiplier || Default 1.0 + #Range: 1.0 ~ 5.0 + boltstrike_multiplier = 1.0 + + [current_weapons.stellothorn] + #Durability || Default 3000 + #Range: > 1 + durability = 3000 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Eldritch Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + eldritch_spell_power_multiplier = 1.0 + #Ender Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + ender_spell_power_multiplier = 1.0 + #Cast Time Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + cast_time_reduction_multiplier = 1.0 + #Spectral Guillotine damage multiplier || Default 1.0 + #Range: 1.0 ~ 5.0 + spectral_guillotine_multiplier = 1.0 + + [current_weapons.galenicPolarizer] + #Durability || Default 2250 + #Range: > 1 + galenicPolarizerDurability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + galenicPolarizerDamageMultiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + galenicPolarizerAttackSpeedMultiplier = 1.0 + #Lightning Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + galenicPolarizerLightningSpellPowerMultiplier = 1.0 + #Cooldown Reduction Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + galenicPolarizerCooldownReductionMultiplier = 1.0 + + [current_weapons.charged_sands] + #Durability || Default 2250 + #Range: > 1 + durability = 2250 + #Damage Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + damage_multiplier = 1.0 + #Attack Speed Multiplier || Default 1.0 + #Range: 0.0 ~ 10.0 + attack_speed_multiplier = 1.0 + #Lightning Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + lightning_spell_power_multiplier = 1.0 + #Holy Spell Power Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + holy_spell_power_multiplier = 1.0 + #Max Mana Multiplier || MULTIPLY_BASE || Default 1.0 + #Range: 0.0 ~ 10.0 + max_mana_multiplier = 1.0 + #Arc-Storm damage multiplier || Default 1.0 + #Range: 1.0 ~ 5.0 + ArcStormDamageMultiplier = 1.0 + diff --git a/minecraft/config/trimseffects-config2.json b/minecraft/config/trimseffects-config2.json new file mode 100644 index 0000000..a370e64 --- /dev/null +++ b/minecraft/config/trimseffects-config2.json @@ -0,0 +1,105 @@ +// TrimsEffects v2.1.X configuration JSON file +// Make sure that your config file version matches the mod version! + +// CurseForge: https://www.curseforge.com/minecraft/mc-mods/trimseffects +// Modrinth: https://modrinth.com/mod/trimseffects + +// === JSON EDITING TIPS === +// - Always use quotes around both keys and values: "key": "value" +// - Don't put commas after the last item in a list or object: +// CORRECT: WRONG: +// { { +// "a": "1", "a": "1", +// "b": "2" "b": "2", <- Extra comma! +// } } +// - Use square brackets [] for lists and curly braces {} for objects +// - Keep all the original punctuation (colons, commas, brackets) when editing +// ======================= + +{ + + // Maps armor trim patterns to their associated potion effects + // Note: The "minecraft:" prefix is omitted from all pattern and effect names + // For patterns/effects from other mods, include the full name (e.g., "othermod:custom_pattern") + "effects": { + // Format: "pattern": ["effect1", "effect2", ...] + // You can specify multiple effects per pattern! + + // Example with multiple effects: + // "wild": ["hero_of_the_village", "strength", "resistance"], + + // Example with a modded armor trim pattern and potion effect: + // "othermod:fancy_pattern": ["othermod:fancy_effect"], + + // Default values: + "sentry": ["resistance"], + "dune": ["speed"], + "coast": ["water_breathing"], + "wild": ["hero_of_the_village"], + "ward": ["absorption"], + "eye": ["regeneration"], + "vex": ["invisibility"], + "tide": ["conduit_power"], + "snout": ["fire_resistance"], + "rib": ["haste"], + "spire": ["strength"], + "wayfinder": ["slow_falling"], + "shaper": ["luck"], + "silence": ["health_boost"], + "raiser": ["saturation"], + "host": ["glowing"], + "flow": ["jump_boost"], + "bolt": ["dolphins_grace"] + }, + + // Controls potion effect level based on number of matching armor pieces + // Format: [1 piece, 2 pieces, 3 pieces, 4 pieces] + // Default: No effect for 1-2 pieces, level 1 for 3 pieces, level 2 for 4 pieces + "matchingEffectLevels": [0, 0, 1, 2], + + // Legacy v1 feature: Override potion effect levels based on trim material + // Note: The "minecraft:" prefix is omitted from material names + // When enabled, gives effects even with just one armor piece! + "materialEffectLevels": { + // Format: "material": level + // Uncomment to enable: + /* + "copper": 0, + "iron": 0, + "redstone": 0, + "lapis": 0, + "quartz": 0, + "gold": 0, + "emerald": 0, + "amethyst": 0, + "resin": 1, + "diamond": 1, + "netherite": 2 + */ + }, + + // Legacy v1 feature: Minimum number of matching armor pieces required before an + // effect is applied when using "materialEffectLevels" + "materialEffectLevelsMinimumMatching": 4, + + // Override potion effects based on trim material instead of pattern + // Note: The "minecraft:" prefix is omitted from material and effect names + "materialEffectOverrides": { + // Format: "material": ["effect1", "effect2", ...] + + // Example with multiple effects: + // "gold": ["haste", "luck"], + + // Default values: + "resin": ["night_vision"] + }, + + // If true, mobs wearing trimmed armor will get the effects + // Disable this if your modpack already has powerful mobs + "applyToMobs": true, + + // Prevents absorption effect from making players invincible + // Waits this many seconds after damage before refreshing absorption hearts + "absorptionStunSeconds": 12.0 + +} diff --git a/minecraft/config/trofers/general.json5 b/minecraft/config/trofers/general.json5 new file mode 100644 index 0000000..9f50ec8 --- /dev/null +++ b/minecraft/config/trofers/general.json5 @@ -0,0 +1,8 @@ +{ + // The chance an entity from a supported mod drops a trophy when killed + "trophyChance": 0.001, + // Whether trophies can drop loot when right-clicked + "enableTrophyLoot": true, + // Whether trophies can apply potion effects when right-clicked + "enableTrophyEffects": true +} \ No newline at end of file diff --git a/minecraft/config/twilighttweaks-common.toml b/minecraft/config/twilighttweaks-common.toml new file mode 100644 index 0000000..3459362 --- /dev/null +++ b/minecraft/config/twilighttweaks-common.toml @@ -0,0 +1,15 @@ + +#Here you can set what command gets executed when the final boss spawner is activated. +#Type in the command you want to happen the exact same way as you would in game. +#For example, typing "summon minecraft:skeleton ~ ~ ~" will summon a normal skeleton and typing "summon zombie ~ ~ ~ {Invulnerable:1,HandItems:[{Count:1,id:wooden_sword},{}]}" will summon an invincible zombie that is holding a wooden sword. +#By default, the spawner runs "function twilighttweaks:final_boss_example", which is a mcfunction made for the mod that runs several commands in a row. Mcfunctions are a vanilla feature and you can google how to make one of your own. +#Any command can be ran once, after which the spawner will break itself. +["FINAL BOSS SPAWNER"] + "The command that the spawner should run: " = "function twilighttweaks:final_boss_example" + +#With this mod installed, boss spawners now leave remnants behind (usually, after the actual boss has been killed). +#Additionally, killed hostile mobs in the Twilight Forest dimension have a chance (0.5%) to drop Time powder. +#Using Time powder on boss spawner remnants brings the spawner back, allowing the boss to be fought again. +["BOSS SPAWNER REMNANTS"] + "The boss spawner feature is enabled: " = true + diff --git a/minecraft/config/underground_villages-common.toml b/minecraft/config/underground_villages-common.toml new file mode 100644 index 0000000..cb4b373 --- /dev/null +++ b/minecraft/config/underground_villages-common.toml @@ -0,0 +1,7 @@ + +#Generation settings +[Generation] + #The Y level it'll try to generate villages at [default: -20] + #Range: > -2147483648 + yLevel = -20 + diff --git a/minecraft/config/unusualend-common.toml b/minecraft/config/unusualend-common.toml new file mode 100644 index 0000000..c1a9f9d --- /dev/null +++ b/minecraft/config/unusualend-common.toml @@ -0,0 +1,82 @@ + +["Main Config"] + #Probability in % for Chorus to summon an Endermite when broken. Includes all blocks in the 'unusualend:endermites_infested' tag + "Endermite Infestation Probability" = 8.0 + #Probability in % for Gloopy Urns to summon an Endermite when broken. Includes all blocks in the 'unusualend:more_endermites_infested' tag + "Frequent Endermite Infestation Probability" = 20.0 + #Probability in % for the Chorus Helmet ability to trigger + "Chorus Helmet Trigger Probability" = 20.0 + #Maximal amount of damages the Chorus Helmet will negate when dodging an attack. Attacks superior to this value won't be affected or reduced + "Chorus Helmet Dodged Damages" = 8.0 + #Probability in % for an Endermite or Enderblob to infect you when hurt + "Blob Infection Probability" = 10.0 + #Maximal amount of Warped Infusions a player can drink in a row with the Warped Tenacity effect stacking + "Max Warped Infusions" = 5.0 + #Number of attempts the Citrine Totem will do to try and find a plant to fertilize (every 2 seconds) + "Citrine Totem Accuracy" = 3.0 + #Probability in % for Draglings to inflict Disruption + "Dragling Disruption" = 20.0 + #Whether 'Le Fishe au Chocolat' should play each time a Chocolate Bluk is eaten + "Fishe Music" = false + #Whether players will be affected by the Endblob Shield knockback (Multiplayer PvP) + "Blob Shields PvP" = true + #Whether Endblob bouncing properties should apply to all mobs. Standing on an Endblob block will make entities bounce infinitely, which could be abused + "Universal Bounce" = true + #Whether players can bonemeal End Stone + "Endstone Bonemeal" = true + #Whether players can bonemeal Raw Purpur + "Purpur Bonemeal" = true + #Whether players can bonemeal Gloopstone and Gloopslate + "Gloopy Bonemeal" = true + #Whether a Warped Balloon that missed or is unable to capture its target will drop the Warped Ballon back at the target's localisation. + "Get Warped Ballons Back" = true + #Probability in % for an Undead Enderling to spawn with an Enderling Mask + "Enderling Mask Probability" = 22.0 + #Whether the Crystal Flower should inflict Nausea to entities interacting with it + "Crystal Flower Nausea" = true + #The Y altitude under which the Void Totem will be triggered + "Void Totem Altitude" = -1.0 + #The scale the Ancient Podium will display items as + "Podium Item Size" = 0.55 + #The scale the Ancient Podium will display blocks at + "Podium Block Size" = 0.4 + #Whether the player will be able to obtain Everlasting (makes items never despawn) + "Can Everlasting be obtained" = true + #Probability in % for Orbs to trigger + "Orb Activation" = 5.0 + +["Cooldowns (in tick)"] + "Prismatic Mirror" = 6000.0 + "Totem of the Void" = 120.0 + "Floating Pouch" = 100.0 + "Shiny Charge" = 100.0 + "Warped Balloon" = 100.0 + +["Teleportation Anchor"] + #Can players link the Teleportation Anchor to a Prismatic Mirror + "Mirror Link" = true + #Can players link the Teleportation Anchor to a Totem of the Void + "Void Totem Link" = true + #Can players link the Teleportation Anchor to a Totem of Undying + "Undying Totem Link" = true + #Whether a Teleportation Anchor is needed to teleport with a Linked Prismatic Mirror to it. If false, teleporting to a broken Anchor will instead randomly teleport the player in a 1000 block radius around the dimension's center + "Mirror requiere Anchor" = true + #Whether a Teleportation Anchor is needed to teleport with a Totem of the Void or Totem of Undying. If false, teleporting to a broken Anchor will instead randomly teleport the player in a 1000 block radius around the dimension's center + "Totems requiere Anchor" = false + +[Biomes] + "Fog inside of the Gloopstone Biomes" = false + "Fog inside of the Warped Reef" = false + +[Generation] + "End Highlands Vegetation" = true + "End Highlands Raw Purpur" = true + "Infested Endstone" = true + "Overgrown Small End Islands" = true + +["Potion Effect Durations (in seconds)"] + "Wandering Stew" = 600.0 + "Bolok Fin" = 600.0 + "Cooked Bolok Fin" = 1200.0 + "Warped Infusion" = 60.0 + diff --git a/minecraft/config/unusualprehistory-common.toml b/minecraft/config/unusualprehistory-common.toml new file mode 100644 index 0000000..8cb9371 --- /dev/null +++ b/minecraft/config/unusualprehistory-common.toml @@ -0,0 +1,30 @@ +#unusualprehistory Config +#All screen shakes +screen_shake = true +#Screen shake brachi +screen_shake_brachi = true +#Screen shake brachi range +screen_shake_brachi_range = 10.0 +#Screen shake brachi teen range +screen_shake_brachi_teen_range = 5.0 +#Screen shake brachi amplifier +screen_shake_brachi_amplifier = 1 +#Screen shake brachi teen amplifier +screen_shake_brachi_teen_amplifier = 0 +#Brachi sound volume +brachi_sound_volume = 3.0 +#Brachi teen sound volume +brachi_teen_sound_volume = 1.5 +#Brachi footprints +brachi_experimental_footprints = false +#Screen shake rex +screen_shake_rex = true +#Screen shake rex range +screen_shake_rex_range = 10.0 +#Screen shake rex amplifier +screen_shake_rex_amplifier = 1 +#Rex sound volume +rex_sound_volume = 0.5 +#Turn natural dino spawning on or off +dino_natural_spawn = false + diff --git a/minecraft/config/upgrade_aquatic-client.toml b/minecraft/config/upgrade_aquatic-client.toml new file mode 100644 index 0000000..1851916 --- /dev/null +++ b/minecraft/config/upgrade_aquatic-client.toml @@ -0,0 +1,11 @@ + +[misc] + #If unimplemented items should show that they are unobtainable in their item description + "Show unobtainable description" = true + #The amount of days till the insomnia overlay is rendered + #Setting to 3 will make the overlay indicate phantom spawns + #Setting to 0 will disable the overlay + "Days until insomnia overlay" = 0 + #If Glow Squids should use our Glow Squid Renderer. + "Replace Glow Squid Renderer" = true + diff --git a/minecraft/config/upgrade_aquatic-common.toml b/minecraft/config/upgrade_aquatic-common.toml new file mode 100644 index 0000000..a414be9 --- /dev/null +++ b/minecraft/config/upgrade_aquatic-common.toml @@ -0,0 +1,47 @@ + +[items] + #Turtle Shells now give unlimited Water Breathing as long as they are on, but run out of durability as they do so + "Turtle Shell rework" = true + + [items.trades] + "Clerics buy thrasher teeth" = true + "Leatherworkers sell bedrolls" = true + +[generation] + + [generation.structures] + #If Mossy Cobblestone and Stone Bricks are replaced with Kelpy Cobblestone and Stone Bricks in Ocean Ruins + "Kelpy Ocean Ruins" = true + +[mobs] + #The max height that Nautilus can spawn at + #Range: -64 ~ 320 + "Nautilus max spawn height" = 30 + + [mobs.thrasher] + #The max height that Thrashers can spawn at + #Range: -64 ~ 320 + "Thrasher max spawn height" = 30 + #The chance of a Thrasher spawning during the daytime + #Range: 0.0 ~ 1.0 + "Thrasher daytime spawn chance" = 0.75 + #The chance a Thrasher has of spawning as a Great Thrasher in Deep Frozen Oceans + #Range: 0.0 ~ 1.0 + "Great Thrasher spawn chance" = 0.25 + + [mobs.squid] + #If Squids give nearby entities Blindness when releasing ink + "Squids give Blindness" = true + #If Glow Squids give nearby entities Night Vision when releasing ink + "Glow Squids give Night Vision" = true + +[misc] + + [misc.renewable_sand] + #If Sand variants should be renewable by placing their respective Sandstone above a Bubble Column + "Renewable Sand" = true + #If 'drag' Bubble Columns from Magma Blocks should be required to renew Sand and Gravel + "Renewable Sand requires Magma Blocks" = true + #If Gravel should be renewable by placing Cobblestone above a Bubble Column + "Renewable Gravel" = true + diff --git a/minecraft/config/valhelsia_structures-client.toml b/minecraft/config/valhelsia_structures-client.toml new file mode 100644 index 0000000..01a050e --- /dev/null +++ b/minecraft/config/valhelsia_structures-client.toml @@ -0,0 +1,3 @@ +#Show a warning if Valhelsia Furniture is not installed before world creation. +furniture_warning = true + diff --git a/minecraft/config/valhelsia_structures-common.toml b/minecraft/config/valhelsia_structures-common.toml new file mode 100644 index 0000000..47d82f6 --- /dev/null +++ b/minecraft/config/valhelsia_structures-common.toml @@ -0,0 +1,20 @@ + +[structures] + + [structures.global] + #How flat does terrain need to be for surface structures to spawn? (in blocks) [default: 4] + #Range: 0 ~ 64 + flatness_delta = 4 + #How many chunks need to be at least between two structures? (in chunks) [default: 5] + #Range: 0 ~ 64 + min_structure_distance = 5 + #The default margin around a valhelsia structure if not otherwise specified in the structure json file. [default: 12] + default_margin = 12 + +[blocks] + + [blocks.doused_torch] + #Enable/Disable the Doused Torch Feature. If disabled Water will no longer transform normal Torches into Doused Torches. + # Doused Torches will however still generate in structures. [default: false] + disable = false + diff --git a/minecraft/config/vanillabackport-client.toml b/minecraft/config/vanillabackport-client.toml new file mode 100644 index 0000000..fe47f68 --- /dev/null +++ b/minecraft/config/vanillabackport-client.toml @@ -0,0 +1,16 @@ + +["Bats and Pots"] + #Use the updated bat model for bats + updated_bat_model = true + +["Spring to Life"] + #allow falling leaves particles to generate + falling_leaves = true + #how often should falling leaves particles generate + #Range: 0.0 ~ 1.0 + falling_leaves_frequency = 0.01 + #use the legacy spawn egg textures + use_legacy_spawn_eggs = false + #toggle the colored sheep wool undercoat + use_sheep_wool_undercoat = true + diff --git a/minecraft/config/vanillabackport-common.toml b/minecraft/config/vanillabackport-common.toml new file mode 100644 index 0000000..5cb0126 --- /dev/null +++ b/minecraft/config/vanillabackport-common.toml @@ -0,0 +1,95 @@ + +["Armored Paws"] + #allow armadillos to generate in the overworld + armadillo = true + #allow variants for wolves to generate + wolf_variants = true + #adds wolves to more biomes for natural spawning + updated_wolf_spawns = true + +["Bundles of Bravery"] + #toggle the updated controls and UI for bundles + has_updated_bundles = true + #allow bundles to appear on chests at villages + bundle_loot = false + #toggle the modern rendering for bundles + has_modern_bundle_graphics = true + #toggle whether bundles should be dyeable + has_dyeable_bundle_recipe = true + +["The Garden Awakens"] + #allow resin to be obtainable from creaking hearts + resin = true + #allow resin to appear on chests at woodland mansions + resin_loot = true + #allow creakings to spawn from creaking hearts + creaking = true + #allow the pale garden to generate in the overworld + pale_garden = true + #allow features from 'The Garden Awakens' to be obtainable through wandering traders + pale_trades = true + #creaking heart trail particle color (gray by default) + creaking_particle_color = 6250335 + #creaking heart trail particle reverse color (orange by default) + creaking_particle_reverse_color = 16545810 + #allow Creaking Hearts to generate Creakings even during the day + do_creaking_hearts_work_on_day = false + +["Spring to Life"] + #allow bushes to generate in the overworld + bushes = true + #allow firefly bushes to generate in the overworld + firefly_bushes = true + #allow wildflowers to generate in the overworld + wildflowers = true + #allow dry grass to generate in the overworld + dry_grass = true + #allow fallen trees to generate in the overworld + fallen_trees = true + #allow leaf litter to generate in the overworld + leaf_litter = true + #allow cactus flowers to generate + cactus_flowers = true + #allow variants for pigs, cows and chickens to generate + farm_animal_variants = true + #allow wolfs to have variants for their sounds + wolf_sound_variants = true + #allow features from 'Spring to Life' to be obtainable through wandering traders + spring_trades = true + #allow camels to spawn outside of villages + camel_spawns = true + #allow lodestones to appear on chests at ruined portals + lodestone_loot = true + +["Chase the Skies"] + #allow dried ghasts to be obtainable through nether fossils and piglin bartering + dried_ghasts = true + #toggle whether leashes drop their connections when boosting with a firework rocket + leash_drop_connections = true + #allows ghasts drop the tears music disc + tears_music_disc = true + #apply a modifier to the speed of happy ghasts when ridden, 1.0 is default speed + happy_ghast_speed_modifier = 1.0 + +["Hot as Lava"] + #allows chicken jockeys to drop the lava chicken music disc + lava_chicken_music_disc = true + +["Chaos Cubed"] + #allow the generation of Sulfur Cave biomes + has_sulfur_caves = true + #allow the generation of Sulfur Springs on top of Sulfur Caves + has_sulfur_springs = true + #allow Potent Sulfur Blocks to generate Geysers + do_geysers_erupt = true + #allow Sulfur Cubes to spawn on Sulfur Caves + has_sulfur_cubes = true + #allow Sulfur Cubes with exploding archetypes to explode + do_sulfur_cubes_explode = true + #allow Sulfur Cubes with damaging archetypes to deal damage + do_sulfur_cubes_damage = true + #allow Wanderer traders to sell contents from Chaos Cubed + do_merchant_trade_chaos_cubed_contents = true + #allows the bounce music disc to generate on abandoned mineshafts + has_bounce_music_disc = true + diff --git a/minecraft/config/villagernames.json5 b/minecraft/config/villagernames.json5 new file mode 100644 index 0000000..ae95e0f --- /dev/null +++ b/minecraft/config/villagernames.json5 @@ -0,0 +1,20 @@ +{ + // Use the custom name list, editable in ./mods/villagernames/customnames.txt, seperated by a comma. If custom names are found, the default name list is ignored. + "useCustomNames": true, + // Use the list of pre-defined female names when naming villagers. + "useDefaultFemaleNames": true, + // Use the list of pre-defined male names when naming villagers. + "useDefaultMaleNames": true, + // Disabled by default. Whether both custom and default names should be used to name villagers. Custom names will probably not be chosen often due to the amount of default names. + "useBothCustomAndDefaultNames": false, + // If enabled, also gives modded villagers a name. If you've found a 'villager'-entity that isn't named let me know by opening an issue so I can add it in. + "nameModdedVillagers": true, + // Whether the profession should be added to the villager's trade screen next to their name. + "showProfessionOnTradeScreen": true, + // If enabled, switches the name and profession on the villager trading screen. Result: - . + "switchNameAndProfessionTradeScreen": false, + // Whether the merchant level (novice, apprentice etc.) should be hidden on the trade screen. + "hideMerchantLevelTradeScreen": false, + // If enabled, the mod capitalizes each word in the custom name list. + "shouldCapitalizeNames": true +} \ No newline at end of file diff --git a/minecraft/config/villagernames/customnames.txt b/minecraft/config/villagernames/customnames.txt new file mode 100644 index 0000000..dc83562 --- /dev/null +++ b/minecraft/config/villagernames/customnames.txt @@ -0,0 +1,17 @@ +Rick, +Bob, +Eve, +Modern, +Julo, +Buzz, +Woody, +Spongebob, +Sandy, +Squidward, +Grotts, +Legion, +KnightDexx, +Kryely, +Pwyd, +CardKaiser, +Greyjester \ No newline at end of file diff --git a/minecraft/config/villagersplus/villagersplus-3.0-config.json5 b/minecraft/config/villagersplus/villagersplus-3.0-config.json5 new file mode 100644 index 0000000..dabe587 --- /dev/null +++ b/minecraft/config/villagersplus/villagersplus-3.0-config.json5 @@ -0,0 +1,60 @@ +{ + //Amount of new trades per level a villager can have at max. (Default: 2) + "trade_offers_per_level": 2, + //Amount of trades the wandering trader can have at max. (Default: 5) + "trade_offers_wandering_trader": 5, + //Max amount of experience storable in the enchanted basin. (Default: 500) + "max_exp_amount": 500, + //Amount of experience taken or given to the enchanted basin per interaction. (Default: 50) + "exp_amount": 50, + //Enable explosion potential of the alchemist workstation. (Default: true) + "can_explode": true, + //Chance of the alchemist workstation NOT exploding (1 in ?). Must be greater than 0! (Default: 3) + "explosion_chance": 3, + //Weight of the house in the village structure pool. Higher values increase the chance of generating. + "plains_alchemist_weight": 10, + "plains_occultist_weight": 10, + "plains_horticulturist_weight": 7, + "plains_oceanographer_weight": 15, + //Weight of the house in a village. Higher values increase the chance of generating. + "taiga_alchemist_weight": 10, + "taiga_occultist_weight": 10, + "taiga_horticulturist_weight": 7, + "taiga_oceanographer_weight": 15, + //Weight of the house in a village. Higher values increase the chance of generating. + "savanna_alchemist_weight": 10, + "savanna_occultist_weight": 10, + "savanna_horticulturist_weight": 7, + "savanna_oceanographer_weight": 15, + //Weight of the house in a village. Higher values increase the chance of generating. + "snowy_alchemist_weight": 10, + "snowy_occultist_weight": 10, + "snowy_horticulturist_weight": 7, + "snowy_oceanographer_weight": 15, + //Weight of the house in a village. Higher values increase the chance of generating. + "desert_alchemist_weight": 10, + "desert_occultist_weight": 10, + "desert_horticulturist_weight": 7, + "desert_oceanographer_weight": 15, + //Two flower offsets in flower tub for small flowers. Each offset is added to the following offsets. + "first_flower_in_two_X_offset": 0.15, + "first_flower_in_two_Z_offset": 0.15, + "second_flower_in_two_X_offset": -0.3, + "second_flower_in_two_Z_offset": -0.35, + //Three flower offsets in flower tub for small flowers. Each offset is added to the following offsets. + "first_flower_in_three_X_offset": 0.15, + "first_flower_in_three_Z_offset": 0.0, + "second_flower_in_three_X_offset": -0.3, + "second_flower_in_three_Z_offset": -0.15, + "third_flower_in_three_X_offset": -0.05, + "third_flower_in_three_Z_offset": 0.3, + //Four flower offsets in flower tub for small flowers. Each offset is added to the following offsets. + "first_flower_in_four_X_offset": 0.15, + "first_flower_in_four_Z_offset": 0.15, + "second_flower_in_four_X_offset": 0.0, + "second_flower_in_four_Z_offset": -0.35, + "third_flower_in_four_X_offset": -0.3, + "third_flower_in_four_Z_offset": 0.0, + "forth_flower_in_four_X_offset": -0.05, + "forth_flower_in_four_Z_offset": 0.37 +} diff --git a/minecraft/config/visual_workbench.json b/minecraft/config/visual_workbench.json new file mode 100644 index 0000000..a8ff2ed --- /dev/null +++ b/minecraft/config/visual_workbench.json @@ -0,0 +1,276 @@ +{ + "__comment": "Crafting table blocks to enable Visual Workbench support for.", + "values": [ + "minecraft:crafting_table", + "blue_skies:bluebright_crafting_table", + "blue_skies:starlit_crafting_table", + "blue_skies:frostbright_crafting_table", + "blue_skies:lunar_crafting_table", + "blue_skies:dusk_crafting_table", + "blue_skies:maple_crafting_table", + "blue_skies:cherry_crafting_table", + "blocksplus:spruce_crafting_table", + "blocksplus:birch_crafting_table", + "blocksplus:jungle_crafting_table", + "blocksplus:acacia_crafting_table", + "blocksplus:dark_oak_crafting_table", + "blocksplus:crimson_crafting_table", + "blocksplus:warped_crafting_table", + "blocksplus:bamboo_crafting_table", + "blocksplus:mushroom_crafting_table", + "mctb:spruce_crafting_table", + "mctb:birch_crafting_table", + "mctb:acacia_crafting_table", + "mctb:jungle_crafting_table", + "mctb:dark_oak_crafting_table", + "mctb:warped_crafting_table", + "mctb:crimson_crafting_table", + "mctb:cherry_crafting_table", + "mctb:dead_crafting_table", + "mctb:fir_crafting_table", + "mctb:hellbark_crafting_table", + "mctb:jacaranda_crafting_table", + "mctb:magic_crafting_table", + "mctb:mahogany_crafting_table", + "mctb:palm_crafting_table", + "mctb:redwood_crafting_table", + "mctb:umbran_crafting_table", + "mctb:willow_crafting_table", + "mctb:azalea_crafting_table", + "mctb:blossom_crafting_table", + "betternether:rubeus_crafting_table", + "betternether:nether_sakura_crafting_table", + "betternether:crafting_table_crimson", + "betternether:wart_crafting_table", + "betternether:crafting_table_warped", + "betternether:anchor_tree_crafting_table", + "betternether:willow_crafting_table", + "betternether:nether_mushroom_crafting_table", + "betternether:stalagnate_crafting_table", + "betternether:mushroom_fir_crafting_table", + "betternether:nether_reed_crafting_table", + "betterend:helix_tree_crafting_table", + "betterend:mossy_glowshroom_crafting_table", + "betterend:end_lotus_crafting_table", + "betterend:pythadendron_crafting_table", + "betterend:jellyshroom_crafting_table", + "betterend:tenanea_crafting_table", + "betterend:dragon_tree_crafting_table", + "betterend:lucernia_crafting_table", + "betterend:lacugrove_crafting_table", + "betterend:umbrella_tree_crafting_table", + "betterendforge:helix_tree_crafting_table", + "betterendforge:mossy_glowshroom_crafting_table", + "betterendforge:end_lotus_crafting_table", + "betterendforge:pythadendron_crafting_table", + "betterendforge:jellyshroom_crafting_table", + "betterendforge:tenanea_crafting_table", + "betterendforge:dragon_tree_crafting_table", + "betterendforge:lucernia_crafting_table", + "betterendforge:lacugrove_crafting_table", + "betterendforge:umbrella_tree_crafting_table", + "crumbs:spruce_crafting_table", + "crumbs:birch_crafting_table", + "crumbs:jungle_crafting_table", + "crumbs:acacia_crafting_table", + "crumbs:dark_oak_crafting_table", + "crumbs:crimson_crafting_table", + "crumbs:warped_crafting_table", + "biomeswevegone:aspen_crafting_table", + "biomeswevegone:baobab_crafting_table", + "biomeswevegone:blue_enchanted_crafting_table", + "biomeswevegone:cherry_crafting_table", + "biomeswevegone:cika_crafting_table", + "biomeswevegone:cypress_crafting_table", + "biomeswevegone:ebony_crafting_table", + "biomeswevegone:fir_crafting_table", + "biomeswevegone:green_enchanted_crafting_table", + "biomeswevegone:holly_crafting_table", + "biomeswevegone:jacaranda_crafting_table", + "biomeswevegone:mahogany_crafting_table", + "biomeswevegone:mangrove_crafting_table", + "biomeswevegone:maple_crafting_table", + "biomeswevegone:pine_crafting_table", + "biomeswevegone:rainbow_eucalyptus_crafting_table", + "biomeswevegone:redwood_crafting_table", + "biomeswevegone:skyris_crafting_table", + "biomeswevegone:willow_crafting_table", + "biomeswevegone:witch_hazel_crafting_table", + "biomeswevegone:zelkova_crafting_table", + "biomeswevegone:sythian_crafting_table", + "biomeswevegone:embur_crafting_table", + "biomeswevegone:palm_crafting_table", + "biomeswevegone:lament_crafting_table", + "biomeswevegone:bulbis_crafting_table", + "biomeswevegone:nightshade_crafting_table", + "biomeswevegone:ether_crafting_table", + "biomeswevegone:imparius_crafting_table", + "vct:spruce_crafting_table", + "vct:birch_crafting_table", + "vct:jungle_crafting_table", + "vct:acacia_crafting_table", + "vct:dark_oak_crafting_table", + "vct:mangrove_crafting_table", + "vct:crimson_crafting_table", + "vct:warped_crafting_table", + "vct:bop_cherry_crafting_table", + "vct:bop_dead_crafting_table", + "vct:bop_fir_crafting_table", + "vct:bop_hellbark_crafting_table", + "vct:bop_jacaranda_crafting_table", + "vct:bop_magic_crafting_table", + "vct:bop_mahogany_crafting_table", + "vct:bop_palm_crafting_table", + "vct:bop_redwood_crafting_table", + "vct:bop_umbran_crafting_table", + "vct:bop_willow_crafting_table", + "vct:canopy_crafting_table", + "vct:darkwood_crafting_table", + "vct:twilight_mangrove_crafting_table", + "vct:minewood_crafting_table", + "vct:sortingwood_crafting_table", + "vct:timewood_crafting_table", + "vct:transwood_crafting_table", + "vct:twilight_oak_crafting_table", + "vct:aspen_crafting_table", + "vct:grimwood_crafting_table", + "vct:kousa_crafting_table", + "vct:morado_crafting_table", + "vct:rosewood_crafting_table", + "vct:yucca_crafting_table", + "vct:maple_crafting_table", + "vct:bamboo_crafting_table", + "vct:azalea_crafting_table", + "vct:poise_crafting_table", + "vct:cherry_crafting_table", + "vct:willow_crafting_table", + "vct:wisteria_crafting_table", + "vct:driftwood_crafting_table", + "vct:river_crafting_table", + "vct:jacaranda_crafting_table", + "vct:redbud_crafting_table", + "vct:cypress_crafting_table", + "vct:brown_mushroom_crafting_table", + "vct:red_mushroom_crafting_table", + "vct:glowshroom_crafting_table", + "vct:twisted_crafting_table", + "vct:petrified_crafting_table", + "vct:eco_azalea_crafting_table", + "vct:eco_flowering_azalea_crafting_table", + "vct:eco_coconut_crafting_table", + "vct:eco_walnut_crafting_table", + "vct:fairy_ring_mushroom_crafting_table", + "vct:azure_crafting_table", + "vct:araucaria_crafting_table", + "vct:heidiphyllum_crafting_table", + "vct:liriodendrites_crafting_table", + "vct:metasequoia_crafting_table", + "vct:protojuniperoxylon_crafting_table", + "vct:protopiceoxylon_crafting_table", + "vct:zamites_crafting_table", + "vct:quark_azalea_crafting_table", + "vct:quark_blossom_crafting_table", + "vct:grongle_crafting_table", + "vct:smogstem_crafting_table", + "vct:wigglewood_crafting_table", + "vct:congealed_crafting_table", + "vct:echo_crafting_table", + "vct:ebony_crafting_table", + "vct:pream_crafting_table", + "vct:verdant_crafting_table", + "vct:jaboticaba_crafting_table", + "vct:ramboutan_crafting_table", + "vct:bm_ancient_oak_crafting_table", + "vct:bm_blighted_balsa_crafting_table", + "vct:bm_swamp_cypress_crafting_table", + "vct:bm_willow_crafting_table", + "vct:rue_baobab_crafting_table", + "vct:rue_blackwood_crafting_table", + "vct:rue_cherry_crafting_table", + "vct:rue_cypress_crafting_table", + "vct:rue_dead_crafting_table", + "vct:rue_eucalyptus_crafting_table", + "vct:rue_joshua_crafting_table", + "vct:rue_larch_crafting_table", + "vct:rue_maple_crafting_table", + "vct:rue_mauve_crafting_table", + "vct:rue_palm_crafting_table", + "vct:rue_pine_crafting_table", + "vct:rue_redwood_crafting_table", + "vct:rue_willow_crafting_table", + "variantcraftingtables:acacia_crafting_table", + "variantcraftingtables:birch_crafting_table", + "variantcraftingtables:dark_oak_crafting_table", + "variantcraftingtables:jungle_crafting_table", + "variantcraftingtables:spruce_crafting_table", + "variantcraftingtables:mangrove_crafting_table", + "variantcraftingtables:crimson_crafting_table", + "variantcraftingtables:warped_crafting_table", + "variantcraftingtables:rubber_crafting_table", + "variantcraftingtables:bamboo_crafting_table", + "variantcraftingtables:charred_crafting_table", + "variantcraftingtables:legacy_crafting_table", + "variantcraftingtables:white_oak_crafting_table", + "variantcraftingtables:herringbone_acacia_crafting_table", + "variantcraftingtables:herringbone_birch_crafting_table", + "variantcraftingtables:herringbone_dark_oak_crafting_table", + "variantcraftingtables:herringbone_jungle_crafting_table", + "variantcraftingtables:herringbone_oak_crafting_table", + "variantcraftingtables:herringbone_spruce_crafting_table", + "variantcraftingtables:herringbone_white_oak_crafting_table", + "variantcraftingtables:herringbone_bamboo_crafting_table", + "variantcraftingtables:herringbone_charred_crafting_table", + "variantcraftingtables:herringbone_crimson_crafting_table", + "variantcraftingtables:herringbone_warped_crafting_table", + "variantcraftingtables:cherry_oak_crafting_table", + "variantcraftingtables:dark_amaranth_crafting_table", + "variantcraftingtables:palm_crafting_table", + "variantcraftingtables:cypress_crafting_table", + "variantcraftingtables:dragons_blood_crafting_table", + "variantcraftingtables:elder_crafting_table", + "variantcraftingtables:juniper_crafting_table", + "variantcraftingtables:dreamwood_crafting_table", + "variantcraftingtables:livingwood_crafting_table", + "variantcraftingtables:mossy_dreamwood_crafting_table", + "variantcraftingtables:mossy_livingwood_crafting_table", + "variantcraftingtables:shimmerwood_crafting_table", + "variantcraftingtables:black_crafting_table", + "variantcraftingtables:blue_crafting_table", + "variantcraftingtables:brown_crafting_table", + "variantcraftingtables:cyan_crafting_table", + "variantcraftingtables:gray_crafting_table", + "variantcraftingtables:green_crafting_table", + "variantcraftingtables:light_blue_crafting_table", + "variantcraftingtables:light_gray_crafting_table", + "variantcraftingtables:lime_crafting_table", + "variantcraftingtables:magenta_crafting_table", + "variantcraftingtables:orange_crafting_table", + "variantcraftingtables:pink_crafting_table", + "variantcraftingtables:purple_crafting_table", + "variantcraftingtables:red_crafting_table", + "variantcraftingtables:white_crafting_table", + "variantcraftingtables:yellow_crafting_table", + "variantcraftingtables:ancient_oak_crafting_table", + "variantcraftingtables:blighted_balsa_crafting_table", + "variantcraftingtables:swamp_cypress_crafting_table", + "variantcraftingtables:willow_crafting_table", + "variantcraftingtables:mango_crafting_table", + "variantcraftingtables:wisteria_crafting_table", + "variantcraftingtables:bamboo_crafting_table_ve", + "variantcraftingtables:redwood_crafting_table", + "variantcraftingtables:azalea_crafting_table", + "variantcraftingtables:coconut_crafting_table", + "variantcraftingtables:flowering_azalea_crafting_table", + "variantcraftingtables:walnut_crafting_table", + "variantcraftingtables:stripped_bamboo_crafting_table", + "variantcraftingtables:crystal_crafting_table", + "variantcraftingtables:golden_oak_crafting_table", + "variantcraftingtables:orange_crafting_table_pl", + "variantcraftingtables:skyroot_crafting_table", + "variantcraftingtables:wisteria_crafting_table_pl", + "variantcraftingtables:cinnamon_crafting_table", + "variantcraftingtables:jade_crafting_table", + "variantcraftingtables:moon_crafting_table", + "variantcraftingtables:shadow_crafting_table" + ] +} \ No newline at end of file diff --git a/minecraft/config/visualworkbench-client.toml b/minecraft/config/visualworkbench-client.toml new file mode 100644 index 0000000..7cacbe5 --- /dev/null +++ b/minecraft/config/visualworkbench-client.toml @@ -0,0 +1,7 @@ +#Rotate crafting table contents so they always face the closest player. +rotate_ingredients = true +#Makes crafting table contents lay flat on the table instead of floating above. +flat_rendering = false +#Render the result of the crafting operation in addition to crafting table contents. +render_result = true + diff --git a/minecraft/config/voidtotem-client.toml b/minecraft/config/voidtotem-client.toml new file mode 100644 index 0000000..e769c59 --- /dev/null +++ b/minecraft/config/voidtotem-client.toml @@ -0,0 +1,6 @@ +#Void Totem Client Config +#Whether the void totem is displayed on the chest when worn in the curios charm slot (curios mod must be installed). +display_totem_on_chest = true +#This sets whether a tooltip is shown on the totem. +show_totem_tooltip = true + diff --git a/minecraft/config/voidtotem-common.toml b/minecraft/config/voidtotem-common.toml new file mode 100644 index 0000000..0c201d3 --- /dev/null +++ b/minecraft/config/voidtotem-common.toml @@ -0,0 +1,17 @@ +#Void Totem Common Config +#Whether the void totem should be added to the end city treasure. +add_end_city_treasure = true +#Dimensions in this blacklist will prevent the functionality of the void totem. Example: "minecraft:overworld" +blacklisted_dimensions = [] +#Whether you get the regeneration and absorption effect on the void totem execution. This also removes all previous effects. +give_totem_effects = true +#Whether the blacklist is inverted, meaning the void totem only works in whitelisted dimensions. +is_inverted_blacklist = false +#Whether you need a totem to prevent death when falling into the void. +needs_totem = true +#The height offset from the world height you will be teleported if you can't be placed on a block. +#Range: 0 ~ 1024 +teleport_height_offset = 64 +#Whether you can use the void totem from anywhere in your inventory. +use_totem_from_inventory = false + diff --git a/minecraft/config/watut-client.toml b/minecraft/config/watut-client.toml new file mode 100644 index 0000000..df0e3ff --- /dev/null +++ b/minecraft/config/watut-client.toml @@ -0,0 +1,61 @@ + +#General mod settings +[general] + #SETTING THESE CLIENT SIDE SETTINGS TO FALSE WILL OVERRIDE ANY OF THE SAME SERVER SETTINGS THAT ARE SET TO TRUE (for your client only) + dummySetting = true + #Sends relative mouse position and clicking + sendMouseInfo = true + #Sends a calculated rate of typing. If off, uses a default value on server + sendTypingSpeed = true + #Sends when you open a Gui, and what Gui + sendActiveGui = true + #Sends when you go idle / return + sendIdleState = true + #Enables or disables idle visual in the server player list tab screen + showIdleStatesInPlayerList = true + #Enables or disables idle visual above player head + showIdleStatesInPlayerAboveHead = true + #Setting false disables all animations + showPlayerAnimations = true + #Enables or disables typing animation + showPlayerAnimation_Typing = true + #Enables or disables idle animation + showPlayerAnimation_Idle = true + #Enables or disables the non typing animations used when showing the open Gui, such as head looking, arms moving up, arms pointing and clicking + showPlayerAnimation_Gui = true + #Show any Gui they're using that isn't chat typing related in world + showPlayerActiveNonChatGui = true + #Show the chat typing Gui in world + showPlayerActiveChatGui = true + #This is for the older non dynamic GUI only. If there isnt an exact Gui available for what the player is using, it will show the Chest Gui. If this is false, it will show nothing, lots of modded Guis will use this for now + showPlayerActiveGuiIfNotExactMatch = true + #Show 'Player is typing...' on the chat screen + screenTypingVisible = true + #Adjust the X position where the 'Player is typing...' text shows in the chat Gui + #Range: > -2147483648 + screenTypingRelativePosition_X = 0 + #Adjust the Y position where the 'Player is typing...' text shows in the chat Gui + #Range: > -2147483648 + screenTypingRelativePosition_Y = 0 + #Max characters allowed before it switches to using string set in screenTypingMultiplePlayersText + #Range: > -2147483648 + screenTypingCharacterLimit = 50 + #String to use when too many people are typing determined by screenTypingCharacterLimit + screenTypingMultiplePlayersText = "Several people are typing" + #String to use next to the typing player(s) name + screenTypingText = " is typing" + #Plays a sound when a player opens some Guis + playScreenOpenSounds = true + #Plays a sutble sound when a player clicks their mouse in a Gui + playMouseClickSounds = true + #Adjusts the size of the gui visual that appears infront of a player, 2 = twice the size + #Range: 0.1 ~ 1.7976931348623157E308 + particleSizeScale = 1.0 + #Delay between ticks your client will accept and update new image of another players gui, you can only increase the delay from what the server/other client is set to, 10 = twice a second + #Range: > -2147483648 + tickReceiveAndRenderRateOfGUIUpdates = 10 + #Privacy setting, if you dont want to send very detailed info of your screen for everyone to see and instead use the old basic gui visual, set this to true + dontSendDetailedGUIInfo = false + #Privacy setting, if you dont want to show the items you are transferring to and from yourself and containers, set this to true + dontSendItemInfo = false + diff --git a/minecraft/config/watut-common.toml b/minecraft/config/watut-common.toml new file mode 100644 index 0000000..2f99ace --- /dev/null +++ b/minecraft/config/watut-common.toml @@ -0,0 +1,9 @@ + +#General mod settings +[general] + #- + announceIdleStatesInChat = false + #Default 5 minutes + #Range: > -2147483648 + ticksToMarkPlayerIdle = 6000 + diff --git a/minecraft/config/watut-item-arm-adjustments.json b/minecraft/config/watut-item-arm-adjustments.json new file mode 100644 index 0000000..12f8e21 --- /dev/null +++ b/minecraft/config/watut-item-arm-adjustments.json @@ -0,0 +1,94 @@ +{ + "comment1": "These client side filters and adjustments affect all watut animations in the same way", + "comment2": "filters support @ for mod id, and * at the start or end of the match for partial matches", + "comment3": "in adjustments section, you can specify 'DISABLED' to outright disable any animation on that hand and axis, or use degrees to adjust by a certain amount", + "comment4": "matchingHandX and matchingHandY are probably all you need, for watuts animations, X is the main up/down, and Y is left/right, Z is available but usually not needed", + "comment5": "matchingHand is for adjusting the hand that actually has the item, otherHand is for adjusting the other hand if matchingHand matched something", + "comment6": "using otherHand along with matchingHand is useful for disabling or adjusting movement when using items that change both hands, like gun mods or 2 handed weapons", + "comment7": "you can make a rule only active if a specfic mod is installed by using 'only_if_mod_installed' with a mod id, see its use below for an example", + "comment8": "matching priority order is first to last, so in this file, highest to lowest, higher overrides lower if both match", + "comment9": "use '/watut reloadJSON' (forge builds only) to reload this config in game to see your changes instantly", + "held_item_arm_adjustments": [ + { + "comment1": "example1", + "filters": [ + "themodid:someitem" + ], + "adjustment": { + "matchingHandX": "-90", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED" + } + }, + { + "comment1": "example2", + "filters": [ + "themodid:ingot_*" + ], + "adjustment": { + "matchingHandX": "45" + } + }, + { + "comment1": "example3", + "filters": [ + "*_wacky_tornado_item_*" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED", + "otherHandX": "DISABLED", + "otherHandY": "DISABLED", + "otherHandZ": "DISABLED" + } + }, + { + "filters": [ + "artifacts:umbrella" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED" + } + }, + { + "filters": [ + "tacz:modern_kinetic_gun" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED", + "otherHandX": "-90", + "otherHandY": "60" + } + }, + { + "only_if_mod_installed": "notenoughanimations", + "filters": [ + "minecraft:compass", "minecraft:recovery_compass", "minecraft:torch", "minecraft:soul_torch" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED" + } + }, + { + "only_if_mod_installed": "notenoughanimations", + "filters": [ + "minecraft:filled_map" + ], + "adjustment": { + "matchingHandX": "DISABLED", + "matchingHandY": "DISABLED", + "matchingHandZ": "DISABLED", + "otherHandX": "DISABLED", + "otherHandY": "DISABLED", + "otherHandZ": "DISABLED" + } + } + ] +} \ No newline at end of file diff --git a/minecraft/config/watut-server.toml b/minecraft/config/watut-server.toml new file mode 100644 index 0000000..542c9df --- /dev/null +++ b/minecraft/config/watut-server.toml @@ -0,0 +1,50 @@ + +#General mod settings +[general] + #SETTING THESE SERVER SIDE SETTINGS TO FALSE WILL OVERRIDE ANY OF THE SAME CLIENT SETTINGS THAT ARE SET TO TRUE (for all clients) + dummySetting = true + #Disable new dynamic gui system and use old simple visual. + dynamicGuiUseOldSimpleGUIVisual = false + #Delay in ticks before sending a new image of a gui to other clients, 10 = twice a second, 0 = no delay, 20 = once a second, more frequent might affect performance and network load + #Range: > 5 + dynamicGuiTickSendRateOfGUIUpdates = 10 + #If enabled, only sends the initial image of a players gui, does not constantly update after it's been opened. + dynamicGuiDontSendConstantGUIUpdates = false + #Blur is used to prevent nasty aliasing/flicker artifacts at the cost of clarity + #Range: 0 ~ 2 + dynamicGuiBlurLevel = 1 + #Adjust the size of the circle used to cut off extra info beyond their main area of their gui, visual issues may occur of too big. Set to -1 to disable + #Range: 4.9E-324 ~ 1.7976931348623157E308 + dynamicGuiSizeRadiusInPixelsToShow = 112.0 + #Show a clients entire screen instead of using dynamicGuiSizeRadiusInPixelsToShow for a circle fade in a 512x512 area, WARNING: experimental, has cpu and network performance impact. Tweak dynamicGuiSizeRadiusInPixelsToShow to -1 or something large if you use this setting. + dynamicGuiShowClientsEntireScreen = false + #Disables the background rendering for most guis, might hide things like JEI or other things count as background rendering + dynamicGuiDisableBackgroundRendering = true + #Show items being transferred between player and container + showItemsBeingTransferredBetweenPlayerAndContainer = true + #How close another player has to be to another player to see what they're doing in GUI, item transferring, mouse movement, etc + #Range: > 0 + distanceRequiredToShowGUIInfo = 10 + #Enables or disables idle visual in the server player list tab screen + showIdleStatesInPlayerList = true + #Enables or disables idle visual above player head + showIdleStatesInPlayerAboveHead = true + #Setting false disables all animations + showPlayerAnimations = true + #Enables or disables typing animation + showPlayerAnimation_Typing = true + #Enables or disables idle animation + showPlayerAnimation_Idle = true + #Enables or disables the non typing animations used when showing the open Gui, such as head looking, arms moving up, arms pointing and clicking + showPlayerAnimation_Gui = true + #Show any Gui they're using that isn't chat typing related in world + showPlayerActiveNonChatGui = true + #Show the chat typing Gui in world + showPlayerActiveChatGui = true + #Show 'Player is typing...' on the chat screen + screenTypingVisible = true + #Plays a sound when a player opens some Guis + playScreenOpenSounds = true + #Plays a sutble sound when a player clicks their mouse in a Gui + playMouseClickSounds = true + diff --git a/minecraft/config/weather2_additions-common.toml b/minecraft/config/weather2_additions-common.toml new file mode 100644 index 0000000..adb534e --- /dev/null +++ b/minecraft/config/weather2_additions-common.toml @@ -0,0 +1,27 @@ +#These configs will persist across saves on Singleplayer. +# +#Resolution of mapped blocks (1 = 1 block, 16 = 1 chunk, will reduce radius) +#Range: > 1 +mapResolution = 16 +#How often the radar should query random chunks (1 = 1 tick, 20 = 1 second) (Small values will cause lag!) +#Range: > 1 +radarMaxTimer = 20 +#The odds of the radar mapping a chunk (1.0 / (Math.abs(x) + Math.abs(z)) * loadChance > Math.random; basically pseudo-increases distance) (Small values will cause lag on non-pregenerated worlds) +#Range: 1.401298464324817E-45 ~ 3.4028234663852886E38 +radarLoadChance = 120.0 +#The radius of the blocks that will be loaded around the player passively in blocks (Limited by server render distance!) +#Range: > 1 +loadRadius = 6 +#How often the tablet should query random chunks (1 = 1 tick, 20 = 1 second) (Small values will cause lag or become buggy!) +#Range: > 5 +tabletLoadChance = 20 +#The radius of the tablet map (low values tend to be buggy, large values tend to be laggy) +#Range: > 1 +tabletRadius = 50 +#Rate at which pixels will be plotted around the player +#Range: > 5 +loadRate = 13 +#What Operator level is required to run config commands +#Range: 0 ~ 4 +opLevel = 0 + diff --git a/minecraft/config/wesleys-roguelike-dungeons-config.toml b/minecraft/config/wesleys-roguelike-dungeons-config.toml new file mode 100644 index 0000000..4c549d9 --- /dev/null +++ b/minecraft/config/wesleys-roguelike-dungeons-config.toml @@ -0,0 +1,30 @@ + +#Wesley's Roguelike Dungeons Configurations +[common] + #Size of the dungeons, 0 = small | 1 = medium | 2 = large + #Range: 0 ~ 2 + CFDungeonSize = 1 + #Difficulty of the dungeons, 0 = easy | 1 = normal | 2 = hard + #Range: 0 ~ 2 + CFDungeonDifficulty = 1 + #Chance of mobs spawning with modifiers + #Range: 0 ~ 100 + CFModifierChance = 1 + #Allow for mobs to spawn with modifiers + CFAllowModifiers = true + #If the dungeon dimension timer is too fast, you can slow it down here + #Range: 0 ~ 200 + CFSlowerDungeonCounter = 100 + #Allow for players to generate dungeons using Vessels of Vision + CFAllowVesselofVision = true + #Allow for dungeons to randomly generate into the world + CFAllowNaturalDungeons = false + #Allow mobs with modifiers to always show their name + CFShowModifierNames = true + #Changes the rarity of naturally generated dungeons if enabled (amount of structures per 1.000.000 chunks) + #Range: 0 ~ 10000 + CFDungeonRarity = 250 + #Changes the rarity of naturally generated nether dungeons if enabled (amount of structures per 1.000.000 chunks) + #Range: 0 ~ 10000 + CFNetherDungeonRarity = 300 + diff --git a/minecraft/config/wirelesschargers-common.toml b/minecraft/config/wirelesschargers-common.toml new file mode 100644 index 0000000..c6b6843 --- /dev/null +++ b/minecraft/config/wirelesschargers-common.toml @@ -0,0 +1,53 @@ +[General] + [General."Basic Wireless Block Charger"] + # In what range should the Basic Wireless Block Charger power blocks? For example, a range of 1 means a 3x3x3 area. + # Allowed range: 1 ~ 5 - Default: 2 + basicBlockChargerRange = 2 + + # How much energy should the Basic Wireless Block Charger be able to store? + # Allowed range: 1000 ~ 10000000 - Default: 25000 + basicBlockChargerCapacity = 25000 + + # How much energy per tick per block should the Basic Wireless Block Charger transfer? 1 second = 20 ticks. + # Allowed range: 10 ~ 10000 - Default: 50 + basicBlockChargerTransferRate = 50 + + [General."Advanced Wireless Block Charger"] + # In what range should the Advanced Wireless Block Charger power blocks? For example, a range of 1 means a 3x3x3 area. + # Allowed range: 1 ~ 5 - Default: 3 + advancedBlockChargerRange = 3 + + # How much energy should the Advanced Wireless Block Charger be able to store? + # Allowed range: 1000 ~ 10000000 - Default: 100000 + advancedBlockChargerCapacity = 100000 + + # How much energy per tick per block should the Advanced Wireless Block Charger transfer? 1 second = 20 ticks. + # Allowed range: 10 ~ 10000 - Default: 200 + advancedBlockChargerTransferRate = 200 + + [General."Basic Wireless Player Charger"] + # In what range should the Basic Wireless Player Charger power players' items? For example, a range of 1 means a 3x3x3 area. + # Allowed range: 1 ~ 10 - Default: 4 + basicPlayerChargerRange = 4 + + # How much energy should the Basic Wireless Player Charger be able to store? + # Allowed range: 1000 ~ 10000000 - Default: 25000 + basicPlayerChargerCapacity = 25000 + + # How much energy per tick per block should the Basic Wireless Player Charger transfer? 1 second = 20 ticks. + # Allowed range: 10 ~ 10000 - Default: 50 + basicPlayerChargerTransferRate = 50 + + [General."Advanced Wireless Player Charger"] + # In what range should the Advanced Wireless Player Charger power players' items? For example, a range of 1 means a 3x3x3 area. + # Allowed range: 1 ~ 10 - Default: 6 + advancedPlayerChargerRange = 6 + + # How much energy should the Advanced Wireless Player Charger be able to store? + # Allowed range: 1000 ~ 10000000 - Default: 100000 + advancedPlayerChargerCapacity = 100000 + + # How much energy per tick per block should the Advanced Wireless Player Charger transfer? 1 second = 20 ticks. + # Allowed range: 10 ~ 10000 - Default: 200 + advancedPlayerChargerTransferRate = 200 + diff --git a/minecraft/config/woot_revived-common.toml b/minecraft/config/woot_revived-common.toml new file mode 100644 index 0000000..1f79b20 --- /dev/null +++ b/minecraft/config/woot_revived-common.toml @@ -0,0 +1,114 @@ + +#Cell +[cell] + #The tank capacity of the Copper Vitality Cell [Default: 30000] + copperCapacity = 30000 + #The tank capacity of the Iron Vitality Cell [Default: 100000] + ironCapacity = 100000 + #The tank capacity of the Gold Vitality Cell [Default: 250000] + goldCapacity = 250000 + #The tank capacity of the Diamond Vitality Cell [Default: 500000] + diamondCapacity = 500000 + #The tank capacity of the Netherite Vitality Cell [Default: 1000000] + netheriteCapacity = 1000000 + +#Dye Liquifier +[dye_liquifier] + #The energy capacity of the Dye Liquifier [Default: 25000] + energyCapacity = 25000 + #The max energy in/out transfer rate of the Dye Liquifier [Default: 1000] + energyMaxTransfer = 1000 + #The energy transfer rate of the Dye Liquifier [Default: 50] + energyProcessTransfer = 50 + #The fluid transfer rate of the Dye Liquifier [Default: 500] + fluidTransfer = 500 + #The output tank capacity of the Dye Liquifier [Default: 25000] + outputTankCapacity = 25000 + #The reference amount of color produce per dye [Default: 125] + colorProduceAmount = 125 + #Amount of pure dye produced after conversion conditions are met [Default: 500] + pureDyeProduceAmount = 500 + #The internal red tank capacity of the Dye Liquifier [Default: 12500] + redTankCapacity = 12500 + #The internal yellow tank capacity of the Dye Liquifier [Default: 12500] + yellowTankCapacity = 12500 + #The internal blue tank capacity of the Dye Liquifier [Default: 12500] + blueTankCapacity = 12500 + #The internal white tank capacity of the Dye Liquifier [Default: 12500] + whiteTankCapacity = 12500 + +#Enchanted Liquifier +[enchanted_liquifier] + #The energy capacity of the Enchanted Liquifier [Default: 100000] + energyCapacity = 100000 + #The max energy in/out transfer rate of the Enchanted Liquifier [Default: 1000] + energyMaxTransfer = 1000 + #The energy transfer rate of the Enchanted Liquifier [Default: 100] + energyProcessTransfer = 100 + #The fluid transfer rate of the Enchanted Liquifier [Default: 500] + fluidTransfer = 500 + #The output tank capacity of the Enchanted Liquifier [Default: 50000] + outputTankCapacity = 50000 + #The enchanted fluid produced per enchant level [Default: 2500] + perEnchantFluid = 2500 + #The energy used per enchant level [Default: 5000] + perEnchantEnergy = 5000 + #The max level of enchantment that can be converted [Default: 10] + maxEnchantLevel = 10 + +#Fluid Infuser +[fluid_infuser] + #The energy capacity of the Fluid Infuser [Default: 50000] + energyCapacity = 50000 + #The max energy in/out transfer rate of the Fluid Infuser [Default: 1000] + energyMaxTransfer = 1000 + #The energy transfer rate of the Fluid Infuser [Default: 250] + energyProcessTransfer = 250 + #The fluid transfer rate of the Fluid Infuser [Default: 50000] + fluidTransfer = 50000 + #The input tank capacity of the Fluid Infuser [Default: 50000] + inputTankCapacity = 50000 + #The output tank capacity of the Fluid Infuser [Default: 50000] + outputTankCapacity = 50000 + +#Item Infuser +[item_infuser] + #The energy capacity of the Item Infuser [Default: 50000] + energyCapacity = 50000 + #The max energy in/out transfer rate of the Item Infuser [Default: 1000] + energyMaxTransfer = 1000 + #The energy transfer rate of the Item Infuser [Default: 250] + energyProcessTransfer = 250 + #The fluid transfer rate of the Item Infuser [Default: 500] + fluidTransfer = 500 + #The input tank capacity of the Item Infuser [Default: 25000] + inputTankCapacity = 25000 + +#Mob Shard +[mob_shard] + #Number of kills to program the shard [Default: 5] + numOfKills = 5 + +#Guide +[guide] + #Should give the woot guide book on player first connection [Default: true] + shouldGiveOnSpawn = false + +#Magmator +[magmator] + #The tick rate for the Copper Magmator [Default: 50] + copperTickRate = 50 + #The tick rate for the Iron Magmator [Default: 20] + ironTickRate = 20 + #The tick rate for the Gold Magmator [Default: 10] + goldTickRate = 10 + #The tick rate for the Diamond Magmator [Default: 5] + diamondTickRate = 5 + #The tick rate for the Netherite Magmator [Default: 1] + netheriteTickRate = 1 + +#Upgrades +[upgrades] + #Should the mass upgrade reroll the loot table or otherwise duplicate the already rolled items [Default: true] + massRerollLoot = true + diff --git a/minecraft/config/world-gen.json b/minecraft/config/world-gen.json new file mode 100644 index 0000000..45f00b2 --- /dev/null +++ b/minecraft/config/world-gen.json @@ -0,0 +1,2966 @@ +[ + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00000038937344250623;30,0.0000016687433250267001;31,0.0000030593627625489495;32,0.00000400498398006408;33,0.00000361561053755785;34,0.00000322623709505162;35,0.00000706434674261303;36,0.00001090245639017444;37,0.000010902456390174439;38,0.00001012370950516198;39,0.0000105687077251691;40,0.00001251557493770025;41,0.00001707680669277323;42,0.0000177999288002848;43,0.000019246173015307944;44,0.000018078052687789246;45,0.000021304289782840872;46,0.000029926130295478824;47,0.00003860359558561766;48,0.0000422748309006764;49,0.00004689168743325027;50,0.00005657039871840514;51,0.000058851014595941625;52,0.00006419099323602706;53,0.00007186721253114989;54,0.00007943218227127093;55,0.00008466091135635458;56,0.0000823246707013172;57,0.00008961151655393379;58,0.00010312833748665006;59,0.00011447579209683162;60,0.00011547703809184766;61,0.00012037201851192595;62,0.00017749866500533997;63,0.00030393378426486295;64,0.00045400943396226425;65,0.0005157529369882521;66,0.0005467359380562478;67,0.0005571933962264151;68,0.0005090223389106444;69,0.0004361538803844784;70,0.0003300218049127803;71,0.00017204743681025275;72,0.00000105687077251691;73,0.00000189124243503026;74,0.0000021137415450338204;75,0.00000194686721253115;76,0.00000266998932004272;77,0.00000272561409754361;78,0.0000026699893200427198;79,0.00000266998932004272;80,0.0000030593627625489495;81,0.00000233624065503738;82,0.0000011124955500178;83,0.00000205811676753293;84,0.0000025031149875400496;85,0.0000014462442150231399;86,0.00000161311854752581;87,0.0000025031149875400496;88,0.0000021137415450338204;89,0.0000021137415450338195;90,0.0000018356176575293698;91,0.00000283686365254539;92,0.00000361561053755785;93,0.0000030037379850480596;94,0.0000016687433250267;95,0.00000272561409754361;96,0.00000317061231755073;97,0.00000394935920256319;98,0.00000456123175507298;99,0.000003448736205055179;100,0.00000233624065503738;101,0.00000378248487006052;102,0.00000545122819508722;103,0.00000461685653257387;104,0.000004116233535065861;105,0.00000489498042007832;106,0.00000550685297258811;107,0.00000467248131007476;108,0.0000044499822000712;109,0.00000433873264506942;110,0.000004616856532573869;111,0.00000472810608757565;112,0.0000035043609825560708;113,0.0000025031149875400505;114,0.00000233624065503738;115,0.0000015574937700249199;116,0.0000021693663225347094;117,0.0000030593627625489495;118,0.00000383810964756141;119,0.000004116233535065859;120,0.000004338732645069419;121,0.00000283686365254539;122,0.00000211374154503382;123,0.0000010012459950160199;124,0.00000205811676753293;125,0.00000183561765752937;126,0.0000010012459950160199;127,0.00000216936632253471;128,0.00000127936988252047;129,0.0000022249911000355997;130,0.0000026143645425418303;131,0.0000021693663225347102;132,0.0000012237451050195799;133,0.0000017243681025275898;134,0.0000025587397650409404;135,0.00000255873976504094;136,0.00000116812032751869;137,0.0000003893734425062299;138,0.00000022249911000355996;139,0.00000027812388750444997;140,0.00000038937344250622997;141,0;142,0.00000027812388750445;143,0.0000003337486650053401;144,0.00000005562477750089002;145,0.000000055624777500889984;146,0;147,0;148,0.00000016687433250266998;149,0.000000055624777500889984;150,0;151,0;152,0;153,0.00000022249911000355996;154,0.00000016687433250266998;155,0.000000055624777500889984;156,0.000000055624777500889984;157,0;158,0;159,0;160,0.00000022249911000355996;161,0.00000011124955500177998;162,0.00000027812388750444997;163,0.0000004449982200071199;164,0.00000016687433250266998;165,0.0000006674973300106799;166,0.0000006118725525097898;167,0;168,0;169,0;170,0.00000011124955500177997;171,0.00000005562477750088999;172,0.00000027812388750444997;173,0.00000033374866500533997;174,0.00000027812388750444997;175,0.00000022249911000355996;176,0;177,0;178,0;179,0.00000011124955500177998;180,0.00000050062299750801;181,0.00000033374866500533997;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0.00000022249911000355996;191,0.00000022249911000355996;192,0.00000027812388750444997;193,0.00000022249911000355996;194,0.00000022249911000355996;195,0.0000003893734425062299;196,0.0000004449982200071199;197,0.00000027812388750444997;198,0;199,0;200,0;201,0;202,0;203,0.00000005562477750088999;204,0.00000005562477750088999;205,0.00000005562477750088999;206,0;207,0.00000005562477750088999;208,0.00000016687433250267;209,0.00000011124955500177998;210,0.00000011124955500177998;211,0;212,0;213,0;214,0.00000016687433250267;215,0.00000011124955500177998;216,0;217,0;218,0.00000005562477750088999;219,0;220,0;221,0.00000011124955500177998;222,0;223,0;224,0.0000004449982200071199;225,0.00000016687433250267;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.000039660466358134574;2,0.000058795389818440726;3,0.00007793031327874688;4,0.00009712086151655394;5,0.0001162557849768601;6,0.00014184318262726948;7,0.00015647249911000357;8,0.00015663937344250622;9,0.0001647049661801353;10,0.0001757742969028124;11,0.000199247953008188;12,0.00023990966536133857;13,0.00026900142399430407;14,0.00028491011035955855;15,0.0003027656639373442;16,0.0003386992702029192;17,0.00037285288358846565;18,0.00038776032395870417;19,0.0003905415628337487;20,0.0003793609825560698;21,0.0003937121751512994;22,0.0004157952118191527;23,0.00044549884300462803;24,0.00046847187611249563;25,0.00047837308650765405;26,0.0005096898362406551;27,0.0005405615877536491;28,0.0005535221609113564;29,0.0005736027055891777;30,0.0006000244749021005;31,0.0006028613385546458;32,0.0005929601281594874;33,0.0006046969562121752;34,0.0006207168921324314;35,0.0006114275542897828;36,0.0006256118725525097;37,0.0006504761480954076;38,0.0006602661089355643;39,0.0006550373798504806;40,0.0006594317372730509;41,0.0006712241901032396;42,0.0006990365788536845;43,0.0007275164649341403;44,0.0007694019223923104;45,0.0008050574047703809;46,0.0008368191527233891;47,0.0008344272872908509;48,0.0008214110893556425;49,0.0008367079031683874;50,0.000877369615521538;51,0.0009059607511569955;52,0.0009190325738697045;53,0.0009287112851548594;54,0.0009305469028123888;55,0.0009382787468850125;56,0.0009494593271626914;57,0.0009788292096831615;58,0.001013817194731221;59,0.0010284465112139552;60,0.001052309540761837;61,0.00107811943752225;62,0.0010848500355998575;63,0.0010654926130295478;64,0.0010805113029547881;65,0.0009606399074403704;66,0.0008317016731933073;67,0.0006869103773584906;68,0.000516754182983268;69,0.0003996640263438946;70,0.00028285199359202564;71,0.00014490254538981846;72,0.000004616856532573869;73,0.00000428310786756853;74,0.0000050062299750801;75,0.000004116233535065859;76,0.00000456123175507298;77,0.0000032262370950516196;78,0.0000026699893200427198;79,0.00000239186543253827;80,0.0000036156105375578493;81,0.0000033931114275542897;82,0.0000016687433250267;83,0.0000028924884300462798;84,0.000006063100747597009;85,0.000005339978640085439;86,0.0000025587397650409395;87,0.0000025031149875400496;88,0.0000015018689925240298;89,0.0000007787468850124599;90,0.0000012793698825204698;91,0.0000011124955500177999;92,0.0000010012459950160199;93,0.00000116812032751869;94,0.0000029481132075471697;95,0.00000495060519757921;96,0.000005006229975080099;97,0.0000013906194375222498;98,0.0000012237451050195799;99,0.00000211374154503382;100,0.00000205811676753293;101,0.0000025587397650409404;102,0.0000032262370950516204;103,0.000004505606977572089;104,0.0000027812388750444995;105,0.00000311498754004984;106,0.00000495060519757921;107,0.0000043943574225703095;108,0.00000367123531505874;109,0.0000036712353150587396;110,0.0000018912424350302597;111,0.0000021693663225347102;112,0.0000008343716625133501;113,0.0000015574937700249197;114,0.0000022249911000356;115,0.00000378248487006052;116,0.0000012793698825204698;117,0.00000194686721253115;118,0.00000272561409754361;119,0.00000116812032751869;120,0.0000015574937700249197;121,0.00000461685653257387;122,0.0000033931114275542893;123,0.00000478373086507654;124,0.00000194686721253115;125,0.00000305936276254895;126,0.00000478373086507654;127,0.00000378248487006052;128,0.0000032818618725525095;129,0.00000211374154503382;130,0.0000018912424350302595;131,0.0000018356176575293696;132,0.00000194686721253115;133,0.0000020581167675329296;134,0.0000022806158775364896;135,0.0000010568707725169098;136,0.00000011124955500177998;137,0.00000016687433250266998;138,0.00000022249911000356;139,0.00000038937344250622997;140,0.0000009456212175151297;141,0.0000005006229975080099;142,0.00000033374866500533997;143,0.0000006118725525097898;144,0.00000005562477750088999;145,0.00000050062299750801;146,0.00000022249911000355996;147,0.0000005562477750089;148,0.0000010012459950160199;149,0.0000014462442150231395;150,0.0000008343716625133498;151,0.0000010012459950160199;152,0.0000009456212175151299;153,0.0000013349946600213599;154,0.00000100124599501602;155,0.00000022249911000355996;156,0.00000027812388750444997;157,0.00000027812388750444997;158,0.00000016687433250266998;159,0.00000066749733001068;160,0.0000009456212175151297;161,0.00000044499822000712003;162,0.00000050062299750801;163,0.00000038937344250623013;164,0;165,0;166,0;167,0;168,0;169,0.00000005562477750089;170,0.0000005006229975080098;171,0.0000006118725525097899;172,0.00000033374866500533997;173,0;174,0;175,0;176,0;177,0.00000072312210751157;178,0.0000008343716625133498;179,0.0000006118725525097898;180,0;181,0;182,0.00000011124955500178;183,0.00000094562121751513;184,0.0000010012459950160199;185,0.0000006118725525097899;186,0.0000007231221075115697;187,0.0000008899964400142396;188,0.00000016687433250266998;189,0.00000172436810252759;190,0.00000200249199003204;191,0.0000016687433250266997;192,0.00000083437166251335;193,0.0000005562477750088999;194,0.0000017243681025275898;195,0.0000025031149875400496;196,0.0000024474902100391597;197,0.00000194686721253115;198,0.0000018356176575293696;199,0.0000010012459950160199;200,0.0000007787468850124598;201,0.0000009456212175151297;202,0.0000005562477750088999;203,0.00000016687433250266998;204,0;205,0.00000011124955500177998;206,0.00000027812388750444997;207,0.00000011124955500178;208,0.00000005562477750089;209,0.00000016687433250266996;210,0.00000033374866500534;211,0.00000022249911000355996;212,0;213,0.00000005562477750088999;214,0.0000011124955500178;215,0.0000014462442150231397;216,0.00000066749733001068;217,0.0000008899964400142402;218,0.00000133499466002136;219,0.00000116812032751869;220,0.00000005562477750089;221,0;222,0.00000005562477750088999;223,0;224,0;225,0;226,0;227,0;228,0.00000005562477750088999;229,0.00000011124955500177998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0.00044978195087219653;2,0.0005733802064791741;3,0.0007006496974012105;4,0.0008197979708081168;5,0.0009464555891776432;6,0.0010495283018867926;7,0.0011627803488786046;8,0.0012650743147027414;9,0.0013965712887148453;10,0.0014991433784264864;11,0.0016877669989320042;12,0.001949425952296191;13,0.002240788536845853;14,0.0024563345496618014;15,0.002577763438946244;16,0.0027227772338910645;17,0.002880028479886081;18,0.0029618525275898902;19,0.00308061142755429;20,0.00320749154503382;21,0.003374254627981488;22,0.003501190370238519;23,0.0035797325560697753;24,0.0037090601637593448;25,0.0038326584193663226;26,0.003993970274118904;27,0.004048538180847276;28,0.004200449448202208;29,0.004302409665361338;30,0.004474846475614098;31,0.00458565103239587;32,0.004685275008899965;33,0.004832235671057316;34,0.0049511058205767185;35,0.005076261569953721;36,0.0051793342826628695;37,0.005343983624065504;38,0.0054309251512993945;39,0.005533886614453543;40,0.00568312789248843;41,0.005687689124243504;42,0.005512248576005697;43,0.005364842915628339;44,0.005179834905660378;45,0.005083993414026345;46,0.004978417586329656;47,0.00481310074759701;48,0.004656350124599503;49,0.004568796724813101;50,0.004388794944820221;51,0.0042671435564257745;52,0.004166017710929156;53,0.004032740744037025;54,0.0038807182271270915;55,0.003705277678889284;56,0.003582958793164827;57,0.003486783552865788;58,0.0033515040939836246;59,0.0031832391420434317;60,0.0030432315770736913;61,0.0029398251156995377;62,0.0027656639373442506;63,0.0025904458882164473;64,0.002429801530793877;65,0.0020230175329298684;66,0.001639429067283731;67,0.0012698580455678178;68,0.0009609736561053757;69,0.0006515330188679245;70,0.00040995461018155933;71,0.0001983579565681737;72,0.00000328186187255251;73,0.00000383810964756141;74,0.0000027812388750445;75,0.0000025031149875400496;76,0.0000027812388750445;77,0.0000024474902100391597;78,0.0000034487362050551796;79,0.00000205811676753293;80,0.0000014462442150231399;81,0.00000061187255250979;82,0.0000005562477750088999;83,0.00000016687433250266998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0.00000022249911000356;22,0;23,0;24,0.0000005006229975080099;25,0.0000008899964400142398;26,0.0000010012459950160196;27,0.0000005562477750088999;28,0.0000012237451050195799;29,0.0000030037379850480596;30,0.0000038937344250623;31,0.0000020581167675329296;32,0.0000005562477750088998;33,0.00000155749377002492;34,0.00000367123531505874;35,0.00000383810964756141;36,0.000004283107867568531;37,0.000004561231755072981;38,0.00000550685297258811;39,0.000005117479530081881;40,0.00000372686009255963;41,0.0000012793698825204698;42,0.0000018356176575293698;43,0.00000239186543253827;44,0.00000261436454254183;45,0.00000183561765752937;46,0.00000205811676753293;47,0.00000189124243503026;48,0.00000239186543253827;49,0.0000027256140975436092;50,0.0000018356176575293698;51,0.0000017799928800284797;52,0.0000037268600925596304;53,0.0000052843538625845505;54,0.0000072312210751157;55,0.000006841847632609469;56,0.000005562477750088999;57,0.0000058406016375934494;58,0.000006674973300106797;59,0.000006786222855108578;60,0.000007008721965112137;61,0.000004116233535065859;62,0.00000517310430758277;63,0.000005451228195087219;64,0.0000043387326450694205;65,0.00007705422303310786;66,0.0001381997597009612;67,0.00019885857956568174;68,0.00024794744571021715;69,0.00027272133098967606;70,0.00027787357600569604;71,0.00029609069063723755;72,0.00029970630117479534;73,0.00026049083303666785;74,0.00021799350302598787;75,0.00019101548593805623;76,0.0001523562655749377;77,0.00010323958704165184;78,0.0000633009967960128;79,0.000027756763972944114;80,0.0000105687077251691;81,0.00000050062299750801;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0.0000014942713072992693;111,0.000001120703480474452;112,0.0000006238793255788223;113,0.000000250311498754005;114,0;115,0.00000005562477750089;116,0.0000006205639239943041;117,0.0000019173404418200396;118,0.0000008849077608889984;119,0.0000016341039828541107;120,0.000002013047779578924;121,0.0000017252270991922775;122,0.0000018397077146985531;123,0.000001987655157595302;124,0.00000167198110322736;125,0.00000099398614354072;126,0.0000012159739963981322;127,0.0000015109222066422234;128,0.0000016310186340355828;129,0.000002085214613557687;130,0.0000025874179498976963;131,0.000001077242699269833;132,0.0000006744504271982912;133,0.000001095112807048772;134,0.000001836357309870214;135,0.0000021482002766841877;136,0.000001610125905342432;137,0.0000005813469251279354;138,0.0000004852852831235733;139,0.0000009967207986731178;140,0.0000018076958658360438;141,0.0000008401999939794359;142,0.0000015364299756036272;143,0.0000017775590449490386;144,0.000002783154301464141;145,0.0000009511452292513658;146,0.000000958402646168827;147,0.000001072821995476724;148,0.0000017504422169811323;149,0.000001059018052530731;150,0.0000010073810807697944;151,0;152,0.00000038556278888901536;153,0.00000006257787468850125;154,0.000000795209365118422;155,0.000001795944102988294;156,0.0000009166567123074392;157,0.0000006837553072581827;158,0.0000003528423315355506;159,0.00000043600009423491713;160,0.0000007210770789269783;161,0.000000055624777500890004;162,0.0000003424400364898541;163,0.0000005180057404770382;164,0.0000002955066304734781;165,0.00000023988185297258816;166,0.00000011994092648629408;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0.00000005562477750088999;20,0.00000005562477750088999;21,0;22,0;23,0;24,0;25,0.0000005562477750088999;26,0.0000012793698825204702;27,0.0000013349946600213603;28,0.00000305936276254895;29,0.0000026143645425418294;30,0.00000211374154503382;31,0.0000016131185475258102;32,0.000002558739765040941;33,0.00000294811320754717;34,0.0000037268600925596304;35,0.0000052287290850836606;36,0.0000043943574225703095;37,0.000004505606977572089;38,0.0000050062299750801;39,0.000004616856532573869;40,0.000004616856532573869;41,0.0000057849768600925595;42,0.000005562477750089;43,0.0000037824848700605202;44,0.00000550685297258811;45,0.0000067862228551085785;46,0.0000066193485226059105;47,0.00000622997508009968;48,0.000009233713065147738;49,0.000011347454610181558;50,0.00000912246351014596;51,0.00000784309362762549;52,0.000009567461730153078;53,0.00001201495194019224;54,0.000010179334282662869;55,0.00000940058739765041;56,0.00001201495194019224;57,0.000011236205055179781;58,0.00000734247063011748;59,0.0000077874688501246;60,0.00001145870416518334;61,0.000015630562477750088;62,0.000019301797792808833;63,0.00001818930224279103;64,0.00001635368458526166;65,0.0002456390174439302;66,0.00046663625845496623;67,0.0006797347810608759;68,0.0008875489498042008;69,0.0010839044143823424;70,0.0012483312566749735;71,0.0013868925774296902;72,0.001489186543253827;73,0.0014276655393378429;74,0.0013932894268422927;75,0.0013586351904592382;76,0.0012920523317906728;77,0.001197935208259167;78,0.0011292942328230689;79,0.0011160555357778569;80,0.0011148317906728373;81,0.0010307827518689925;82,0.0009525186899252403;83,0.000893556425774297;84,0.0008209104663581346;85,0.0007486538803844786;86,0.0007127202741189036;87,0.0006605442328230687;88,0.0006044188323246708;89,0.0005642577429690282;90,0.0005047948558205768;91,0.00043470763616945533;92,0.0003834215913136348;93,0.00033480553577785684;94,0.00027873576005695987;95,0.00022394535421858312;96,0.00018161489854040584;97,0.00012543387326450697;98,0.00006903034887860448;99,0.00003198424706301175;100,0.000009233713065147738;101,0.0000008343716625133497;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0.00000005562477750089;41,0;42,0;43,0;44,0;45,0;46,0;47,0.00000011994092648629405;48,0.0000005736305179779282;49,0;50,0;51,0.0000004762871573513706;52,0.00000035982277945888214;53,0.00000197822565613394;54,0.0000012650464961356566;55,0.0000005475564035243858;56,0.0000001825188011747953;57,0.0000006796652500889996;58,0.0000012498192194731221;59,0.0000006292552954788181;60,0.0000010533942239231046;61,0.0000032167113395479242;62,0.0000006987862673549308;63,0.0000018981955322178715;64,0.0000013993108090067642;65,0.0000016457285671573727;66,0.0000008569692283730865;67,0.0000011124955500177999;68,0.00000904090378516696;69,0.00000028681525898896404;70,0.00000061187255250979;71,0.0000005701539693841225;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0.00000011994092648629405;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0.0000008995917017764752;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0.0000008995917017764752;200,0.0000008995917017764752;201,0;202,0.0000004497958508882376;203,0.000002698775105329425;204,0.0000004497958508882376;205,0;206,0.0000004497958508882376;207,0.0000004497958508882376;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0.0000003893734425062298;33,0.0000008343716625133498;34,0.0000004449982200071199;35,0.0000007231221075115697;36,0.00000016687433250266998;37,0;38,0;39,0;40,0.00000005562477750089;41,0.00000016687433250267;42,0.00000027812388750445;43,0.00000022249911000356004;44,0.00000033374866500533997;45,0.00000016687433250266998;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0.00000016687433250267;61,0.00000005562477750089;62,0;63,0;64,0.00000061187255250979;65,0.0001457369170523318;66,0.00029058383766464936;67,0.00042653079387682446;68,0.0005549127803488786;69,0.0006661623353506586;70,0.0007648963154147383;71,0.0008554534531861873;72,0.0009376668743325028;73,0.0009451762192951229;74,0.0008786489854040585;75,0.0008650209149163402;76,0.0008207435920256318;77,0.0008083392666429336;78,0.000800496173015308;79,0.0007813056247775008;80,0.0007643400676397295;81,0.0007561076005695979;82,0.0007232889818440726;83,0.0006813478996084016;84,0.0006527011391954433;85,0.0006532017621929512;86,0.0006229418832324671;87,0.0005743814524741902;88,0.0005628671235315059;89,0.0005487384300462798;90,0.0005227060341758634;91,0.00048777367390530444;92,0.0004790405838376647;93,0.00044750133499466005;94,0.00042018956924172305;95,0.0003810297258810965;96,0.0003696266464934141;97,0.0003645091669633322;98,0.0003719628871484514;99,0.00037902723389106444;100,0.00038230909576361693;101,0.0003629516731933072;102,0.0003553310786756853;103,0.0003557760768956924;104,0.0003487117301530794;105,0.00034559674261302954;106,0.00035360671057315773;107,0.00035188234247063017;108,0.00034631986472054115;109,0.00034793298326806697;110,0.0003197868458526166;111,0.0002913625845496618;112,0.0002799038803844785;113,0.0002557627269490922;114,0.00024118903524385907;115,0.0002487540049839801;116,0.00022188723745105024;117,0.00021938412246351018;118,0.00021654725881096475;119,0.00021120728017087932;120,0.00021810475258098966;121,0.00021015040939836242;122,0.0002121529013883945;123,0.00020647917408330368;124,0.00019930357778568885;125,0.00018773362406550374;126,0.00016331434674261304;127,0.0000871640263438946;128,0.000013906194375222502;129,0.00000016687433250266998;130,0;131,0.0000005562477750089;132,0.00000033374866500534;133,0.0000004449982200071199;134,0.00000038937344250622997;135,0.00000022249911000356;136,0.0000002781238875044499;137,0.00000033374866500533997;138,0.00000011124955500177998;139,0.00000011124955500178002;140,0.00000033374866500533997;141,0.00000022249911000355996;142,0.00000016687433250266996;143,0;144,0.00000005562477750088999;145,0;146,0.00000022249911000355996;147,0.00000011124955500177998;148,0.00000022249911000355996;149,0.00000033374866500533997;150,0.00000022249911000355996;151,0.00000011124955500177997;152,0.00000011124955500177997;153,0;154,0;155,0;156,0.00000011124955500177998;157,0.00000005562477750088999;158,0.00000011124955500177998;159,0;160,0;161,0;162,0.00000016687433250266998;163,0.00000005562477750088999;164,0.00000016687433250266998;165,0;166,0.00000005562477750088998;167,0.0000004449982200071199;168,0.00000033374866500533997;169,0.00000016687433250266998;170,0;171,0.00000005562477750088999;172,0.00000005562477750088999;173,0;174,0.00000016687433250266998;175,0.00000016687433250266998;176,0.00000016687433250266998;177,0.00000022249911000356;178,0.00000005562477750089;179,0;180,0;181,0.00000033374866500533997;182,0.00000016687433250266998;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0;223,0;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0;232,0;233,0;234,0;235,0;236,0;237,0;238,0;239,0;240,0;241,0;242,0;243,0;244,0;245,0;246,0;247,0;248,0;249,0;250,0;251,0;252,0;253,0;254,0;255,0;256,0;257,0;258,0;259,0;260,0;261,0;262,0;263,0;264,0;265,0;266,0;267,0;268,0;269,0;270,0;271,0;272,0;273,0;274,0;275,0.000000055624777500890004;276,0.000000055624777500890004;277,0;278,0;279,0;280,0;281,0;282,0;283,0.00000011124955500178001;284,0;285,0.000000055624777500890004;286,0;287,0;288,0;289,0.000000055624777500890004;290,0;291,0;292,0;293,0;294,0;295,0.00000005562477750088999;296,0.00000005562477750088999;297,0;298,0;299,0;300,0;301,0;302,0;303,0.000000055624777500889984;304,0;305,0.00000005562477750088999;306,0.00000005562477750088999;307,0.00000011124955500177998;308,0.00000005562477750088999;309,0.00000005562477750088999;310,0.00000011124955500177998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.00000011124955500178;45,0.00000934496262014952;46,0.00006441349234603063;47,0.00015942061231755074;48,0.00026343894624421504;49,0.0003543298326806693;50,0.0004579587931648273;51,0.0005590846386614454;52,0.0006673304556781773;53,0.0007854774830900677;54,0.0009130250978996085;55,0.0009942372730509079;56,0.0011037624599501603;57,0.0012135657707369172;58,0.001315303488786045;59,0.0014085862406550374;60,0.001514551441794233;61,0.0016322534709861162;62,0.001722810608757565;63,0.0018223789604841583;64,0.001913992969028124;65,0.0017255362228551087;66,0.0015249532751868992;67,0.0013270403168387326;68,0.0011234536311854754;69,0.0008729196333214668;70,0.000616489409042364;71,0.00032401432894268425;72,0.000005562477750088999;73,0.0000035599857600569594;74,0.000007008721965112139;75,0.00000800996796012816;76,0.000008399341402634389;77,0.000008121217515129939;78,0.00000923371306514774;79,0.00001123620505517978;80,0.00001106933072267711;81,0.00000806559273762905;82,0.00000884433962264151;83,0.000010457458170167321;84,0.00000856621573513706;85,0.00001012370950516198;86,0.00001040183339266643;87,0.000009011213955144179;88,0.000009066838732645071;89,0.0000061187255250979;90,0.0000083437166251335;91,0.00000912246351014596;92,0.00000856621573513706;93,0.0000088999644001424;94,0.00001045745817016732;95,0.00000845496618013528;96,0.000010012459950160202;97,0.0000094562121751513;98,0.000012571199715201139;99,0.000012960573157707369;100,0.00001351682093271627;101,0.0000116812032751869;102,0.00000856621573513706;103,0.00001090245639017444;104,0.00001346119615521538;105,0.00001290494838020648;106,0.000012181826272694909;107,0.000011124955500178;108,0.00001184807760768957;109,0.000011792452830188679;110,0.00001329432182271271;111,0.0000105687077251691;112,0.000009678711285154861;113,0.00000990121039515842;114,0.00000789871840512638;115,0.00000806559273762905;116,0.000008621840512637949;117,0.000009845585617657531;118,0.000007731844072623708;119,0.000006786222855108579;120,0.000005951851192595229;121,0.0000057293520825916705;122,0.0000052287290850836606;123,0.0000067305980776076895;124,0.000006396849412602349;125,0.0000062855998576005695;126,0.000004616856532573869;127,0.0000040606087575649685;128,0.0000030037379850480596;129,0.000004283107867568531;130,0.0000037824848700605202;131,0.00000433873264506942;132,0.0000036156105375578493;133,0.0000013906194375222498;134,0.0000011124955500178;135,0.0000010012459950160199;136,0.0000020581167675329296;137,0.00000305936276254895;138,0.00000261436454254183;139,0.0000015018689925240296;140,0.0000012237451050195799;141,0.00000127936988252047;142,0.0000005562477750088998;143,0.00000116812032751869;144,0.0000012793698825204698;145,0.0000012237451050195799;146,0.0000010012459950160199;147,0.00000116812032751869;148,0.00000044499822000712003;149,0.0000005006229975080099;150,0.0000003893734425062299;151,0.0000007231221075115698;152,0.00000088999644001424;153,0.0000012793698825204696;154,0.0000005006229975080099;155,0.0000009456212175151299;156,0.00000094562121751513;157,0.0000005562477750088999;158,0.00000016687433250266998;159,0.0000005562477750088999;160,0.00000027812388750444997;161,0.00000016687433250266998;162,0.0000004449982200071199;163,0.00000005562477750088999;164,0.00000022249911000355996;165,0.00000016687433250266996;166,0.00000022249911000355996;167,0.00000005562477750089;168,0.00000005562477750089;169,0.00000022249911000356;170,0.00000016687433250266998;171,0;172,0;173,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.00036962664649341405;2,0.0004854930580277679;3,0.0006350680847276611;4,0.0007752425240299039;5,0.0008660777856888572;6,0.0009935697757208972;7,0.0011069886970452119;8,0.0011931514773940903;9,0.0012661311854752582;10,0.0013280415628337486;11,0.0014965846386614454;12,0.0017402767888928445;13,0.0020823135457458167;14,0.0022987495550017803;15,0.002402879138483446;16,0.0025023362406550375;17,0.0026320532217871126;18,0.0027960350658597366;19,0.002932427020291919;20,0.0030256541473834106;21,0.00312188501245995;22,0.003209549661801353;23,0.0032859781060875755;24,0.003425985671057316;25,0.0036186699003203987;26,0.003790939836240655;27,0.0039032462620149522;28,0.003959872285510858;29,0.0040621662513349935;30,0.0040973211107155575;31,0.004141987807048772;32,0.004239331167675329;33,0.004417330455678178;34,0.00454943930224279;35,0.004691226860092561;36,0.004784732111071556;37,0.004881463599145604;38,0.004935252758988965;39,0.005017855553577786;40,0.00515880873976504;41,0.005376079120683518;42,0.0055298260056959765;43,0.005642577429690281;44,0.005704320932716269;45,0.005832591669633323;46,0.006056425774296903;47,0.006288325471698114;48,0.006352015841936633;49,0.00637993948024208;50,0.006433951139195444;51,0.006530126379494482;52,0.00668871262014952;53,0.006898418031327874;54,0.007075026699893201;55,0.007185275008899964;56,0.007176375044499821;57,0.007257086596653615;58,0.007353818084727662;59,0.007360715557137772;60,0.007145447668209327;61,0.0069834683161267355;62,0.006838565770736918;63,0.006718527500889998;64,0.0065749599501602;65,0.005616600658597366;66,0.00464872953008188;67,0.003763850569597722;68,0.0029168520825916698;69,0.0021455032929868284;70,0.0013929556781772873;71,0.0007151121395514419;72,0.000015519312922748313;73,0.0000116812032751869;74,0.000012237451050195798;75,0.00001351682093271627;76,0.000011569953720185119;77,0.00001346119615521538;78,0.000014073068707725169;79,0.00001401744393022428;80,0.00001329432182271271;81,0.000010234959060163758;82,0.00000906683873264507;83,0.000008621840512637952;84,0.000008899964400142399;85,0.00001145870416518334;86,0.00001162557849768601;87,0.00000873309006763973;88,0.000008009967960128159;89,0.000006341224635101459;90,0.000004728106087575651;91,0.00000428310786756853;92,0.00000584060163759345;93,0.000005173104307582771;94,0.0000052287290850836606;95,0.00000517310430758277;96,0.00000428310786756853;97,0.00000367123531505874;98,0.0000033931114275542897;99,0.00000328186187255251;100,0.00000367123531505874;101,0.0000033374866500533994;102,0.0000027256140975436097;103,0.0000030593627625489495;104,0.00000161311854752581;105,0.00000266998932004272;106,0.00000228061587753649;107,0.00000150186899252403;108,0.00000200249199003204;109,0.00000133499466002136;110,0.00000094562121751513;111,0.00000083437166251335;112,0.00000150186899252403;113,0.00000100124599501602;114,0.00000027812388750445;115,0.0000003893734425062301;116,0.0000003893734425062301;117,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00000022249911000355994;30,0.00000161311854752581;31,0.00000294811320754717;32,0.0000043943574225703095;33,0.00000528435386258455;34,0.000005951851192595229;35,0.0000047837308650765405;36,0.000005061854752580989;37,0.000006841847632609469;38,0.000007286845852616591;39,0.000006174350302598789;40,0.000007453720185119261;41,0.0000057849768600925595;42,0.000005506852972588111;43,0.000005673727305090781;44,0.000004728106087575651;45,0.00000522872908508366;46,0.00000756496974012104;47,0.000007509344962620149;48,0.000005562477750088999;49,0.000008399341402634389;50,0.000008955589177643291;51,0.000009289337842648629;52,0.0000100124599501602;53,0.000011347454610181558;54,0.000012904948380206478;55,0.000014239943040227841;56,0.000013461196155215382;57,0.000012348700605197583;58,0.000014295567817728728;59,0.00001685430758276967;60,0.00001629805980776077;61,0.00001763305446778213;62,0.00001590868636525454;63,0.00001479619081523674;64,0.00001907929868280527;65,0.0003370861516553934;66,0.0006706123175507299;67,0.001003804734781061;68,0.0013171947312210753;69,0.0016512215201139196;70,0.0019439747241011037;71,0.002241177910288359;72,0.002554957280170879;73,0.002598678355286579;74,0.002552954788180847;75,0.00255935163759345;76,0.0025244749021003914;77,0.0025498954254182986;78,0.002564691616233535;79,0.0025532885368458524;80,0.0025381029725881094;81,0.002600402723389107;82,0.002566304734781061;83,0.0025695865966536132;84,0.002578486561053756;85,0.0025700872196511215;86,0.0025763171947312214;87,0.0025395492168031326;88,0.002536434229263083;89,0.0025185230509077966;90,0.002490043164827341;91,0.002489653791384834;92,0.0024866500533997863;93,0.0024922681559273767;94,0.0025259211463154146;95,0.00245499955500178;96,0.0024512170701317193;97,0.0024486027055891776;98,0.00242562967248131;99,0.0023643311676753297;100,0.0023285644357422574;101,0.002366611783552866;102,0.002341691883232467;103,0.002278669010323959;104,0.0022936320754716986;105,0.002313656995372019;106,0.00229185208259167;107,0.0022446822712709155;108,0.0022188167497330016;109,0.0021717581879672487;110,0.002030860626557494;111,0.001854808205767177;112,0.0018004627981488075;113,0.001741667408330367;114,0.0016665739587041653;115,0.001570565592737629;116,0.0014875177999288005;117,0.001470329743681025;118,0.0014412936098255607;119,0.0013946800462798148;120,0.001373876379494482;121,0.0013781594873620508;122,0.0013527389640441438;123,0.0013371640263438946;124,0.0012861561053755784;125,0.001274308027767889;126,0.001106432449270203;127,0.0005860070309718761;128,0.00010457458170167318;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:iridium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0000014062639061943753;66,0.0000008639223255606978;67,0.00000023814357867568525;68,0.0000007717937878248486;69,0.00000240403335261659;70,0.0000009577891375934498;71,0.0000021502453052687793;72,0.0000035252202741189046;73,0.0000005249588376646492;74,0.00000023988185297258816;75,0.000002023351281594874;76,0.000004403048794054824;77,0.000005614625978996083;78,0.0000035165289026343897;79,0.00000029376835617657533;80,0.0000008691371484514061;81,0.0000021346008365966537;82,0.0000013123970941616234;83,0.0000005997046324314703;84,0.00000066749733001068;85,0.000001251557493770025;86,0.000000750934496262015;87,0.000002140032943774475;88,0.00001112430364731666;89,0.000003075224515508188;90,0.000000815250645247419;91,0.0000004797637059451762;92,0.0000004797637059451762;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0.0000003337486650053399;11,0.0000006674973300106798;12,0.0000006674973300106798;13,0.00000027812388750444997;14,0.00000022249911000355996;15,0;16,0;17,0;18,0;19,0;20,0.00000005562477750089;21,0.00000044499822000712;22,0.00000011124955500178;23,0;24,0.00000044499822000712;25,0.00000088999644001424;26,0.00000066749733001068;27,0.00000044499822000712;28,0.00000005562477750088999;29,0.0000005006229975080099;30,0.0000017243681025275902;31,0.0000020581167675329296;32,0.0000015018689925240298;33,0.0000016687433250266997;34,0.0000027256140975436097;35,0.00000255873976504094;36,0.0000020581167675329296;37,0.00000433873264506942;38,0.000004616856532573869;39,0.00000589622641509434;40,0.00000656372374510502;41,0.00000695309718761125;42,0.00000506185475258099;43,0.0000035599857600569607;44,0.00000367123531505874;45,0.000005506852972588109;46,0.00000661934852260591;47,0.000007787468850124601;48,0.00000784309362762549;49,0.00000823246707013172;50,0.00000906683873264507;51,0.0000105687077251691;52,0.00001212620149519402;53,0.00000812121751512994;54,0.000008510590957636169;55,0.000010179334282662869;56,0.000014907440370238521;57,0.000017521804912780346;58,0.00001885679957280171;59,0.00001741055535777857;60,0.000019246173015307937;61,0.00001735493058027768;62,0.0000155749377002492;63,0.000014851815592737629;64,0.00001702118191527234;65,0.0004042252580989676;66,0.0007916518333926665;67,0.0012069464222143112;68,0.0016320865966536133;69,0.0020926597543609827;70,0.0025403835884656467;71,0.002967748754004984;72,0.0034021782662869353;73,0.0034130807226771093;74,0.003395725792096832;75,0.003500189124243503;76,0.003558483891064436;77,0.003576728818084728;78,0.0036012593449626204;79,0.0036386948202207195;80,0.0036976014595941614;81,0.0037464956390174447;82,0.003803232912068352;83,0.0038316571733713065;84,0.003878270736917052;85,0.0038947912958348166;86,0.0039255517977928095;87,0.003999254627981488;88,0.004039805090779638;89,0.004082079921680313;90,0.00409064613741545;91,0.004044866945532218;92,0.004064947490210039;93,0.004156617123531506;94,0.00418682137771449;95,0.00413002847988608;96,0.004094428622285512;97,0.003974779725881097;98,0.0039201005695977224;99,0.0038146916162335354;100,0.0036856421324314706;101,0.0036260123709505165;102,0.0035552576539693848;103,0.0034892866678533294;104,0.0034261525453898184;105,0.003376368369526522;106,0.003285755606977572;107,0.003228907084371663;108,0.003209104663581346;109,0.0031366255784976865;110,0.0029191326984692066;111,0.0025458348166607337;112,0.002387304200783197;113,0.002264929690281239;114,0.002188556870772517;115,0.002098945354218583;116,0.001975124599501602;117,0.0018519157173371307;118,0.001740109914560342;119,0.0017300418298326807;120,0.0017467848878604487;121,0.0017056781772872907;122,0.0016540027589889645;123,0.0015760724457102174;124,0.00150186899252403;125,0.0014223255606977572;126,0.0013806626023495907;127,0.0013222009611961554;128,0.0012403212887148452;129,0.0011632809718761126;130,0.0010807894268422926;131,0.0010175440548237807;132,0.000952129316482734;133,0.0009301019045923817;134,0.0009056826272694909;135,0.0008531172125311499;136,0.0007683450516197935;137,0.0007131096475614097;138,0.0006771760412958348;139,0.0006554823780704878;140,0.0006253337486650053;141,0.0006049750800996796;142,0.0005313834994660022;143,0.0004795412068351727;144,0.00048721742613029546;145,0.0005011792452830189;146,0.00047570309718761127;147,0.0004200226949092204;148,0.00038358846564613745;149,0.0003540517087931648;150,0.0003288536845852616;151,0.0003066037735849057;152,0.0002648851904592382;153,0.00024647338910644355;154,0.00022700471698113207;155,0.0002060898006407974;156,0.00017877803488786047;157,0.00016403746885012462;158,0.00015814124243503026;159,0.00015730687077251693;160,0.00014273317906728374;161,0.00012699136703453185;162,0.00012493325026699894;163,0.00012804823780704876;164,0.0001090245639017444;165,0.00009628648985404058;166,0.00009940147739409045;167,0.00009439524741901034;168,0.00007325783196867213;169,0.00005812789248843004;170,0.00005623665005339979;171,0.000053511035955856175;172,0.00004644668921324315;173,0.00003954921680313279;174,0.000032039871840512635;175,0.000025754271982912068;176,0.000024363652545389818;177,0.00002208303666785333;178,0.000020859291562833746;179,0.00001974679601281595;180,0.00001507431470274119;181,0.00000856621573513706;182,0.00000673059807760769;183,0.00000645247419010324;184,0.00000700872196511214;185,0.000009178088287646851;186,0.000009122463510145958;187,0.00000645247419010324;188,0.00000311498754004984;189,0.0000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0.00000016687433250266998;21,0.00000005562477750088998;22,0.00000016687433250266998;23,0.00000027812388750444997;24,0.0000006674973300106799;25,0.0000005562477750088999;26,0.0000007231221075115699;27,0.00000033374866500533997;28,0.00000033374866500534;29,0.0000003893734425062299;30,0.00000011124955500178002;31,0;32,0;33,0.00000016687433250267;34,0.00000005562477750089;35,0;36,0;37,0.00000011124955500178002;38,0;39,0;40,0.00000011124955500178;41,0;42,0.00000016687433250267;43,0.00000005562477750089001;44,0;45,0;46,0;47,0;48,0.00000016687433250267;49,0.00000005562477750089;50,0;51,0;52,0.00000016687433250267;53,0.00000050062299750801;54,0.0000006118725525097899;55,0.00000061187255250979;56,0.00000044499822000712003;57,0.00000016687433250267;58,0.00000016687433250267;59,0.00000016687433250267;60,0.0000008343716625133498;61,0.00000066749733001068;62,0.0000005562477750089;63,0.0000006118725525097899;64,0.0000007231221075115699;65,0.00011442016731933073;66,0.00022216536133855467;67,0.0003249599501601994;68,0.0004132364720541118;69,0.0004992880028479886;70,0.0005821132965468138;71,0.0006328430936276255;72,0.0006848522605909577;73,0.0006548705055179778;74,0.0006257231221075115;75,0.0005990232289070844;76,0.0005709883410466358;77,0.0005482378070487718;78,0.0005260991456034177;79,0.0004856043075827697;80,0.00045156194375222503;81,0.0004068952474190103;82,0.00039276655393378427;83,0.00036528791384834455;84,0.0003266286934852261;85,0.0003063256496974012;86,0.0002770670167319331;87,0.00024847588109647563;88,0.00022617034531861874;89,0.00020280793876824494;90,0.00015636124955500182;91,0.0001223188857244571;92,0.00009650898896404415;93,0.00007053221787112852;94,0.000043721075115699546;95,0.000016298059807760773;96,0.0000035599857600569594;97,0.0000011681203275186898;98,0.0000022249911000355997;99,0.0000018356176575293698;100,0.0000012793698825204698;101,0.0000012237451050195797;102,0.00000094562121751513;103,0.0000006674973300106798;104,0.00000033374866500533997;105,0.0000008899964400142396;106,0.0000008899964400142396;107,0.00000016687433250267;108,0.0000012237451050195797;109,0.00000194686721253115;110,0.0000015574937700249199;111,0.0000008899964400142397;112,0.0000014462442150231397;113,0.0000017243681025275896;114,0.0000011124955500177996;115,0.0000016131185475258094;116,0.0000016131185475258098;117,0.00000083437166251335;118,0.0000010012459950160196;119,0.0000013349946600213599;120,0.0000009456212175151301;121,0.0000007231221075115697;122,0.00000038937344250622987;123,0.0000008899964400142398;124,0.0000006118725525097899;125,0.0000004449982200071199;126,0.0000005562477750088999;127,0.0000013349946600213595;128,0.0000009456212175151297;129,0.0000006674973300106798;130,0.000000055624777500889984;131,0.00000044499822000711987;132,0.0000009456212175151299;133,0.0000006674973300106798;134,0.0000003893734425062299;135,0.0000002781238875044499;136,0.0000005006229975080098;137,0.0000005006229975080098;138,0.0000002781238875044499;139,0.00000033374866500533997;140,0.0000006674973300106798;141,0.00000022249911000355996;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0.0000004449982200071201;153,0.00000038937344250623;154,0.00000016687433250267;155,0.00000005562477750088999;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0.00000005562477750089002;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0.00022416785332858672;2,0.0011841402634389462;3,0.002113797169811321;4,0.0022931314524741904;5,0.0023033664115343537;6,0.002306425774296903;7,0.002267210306158775;8,0.0022706034175863296;9,0.0022884589711641154;10,0.0022403991634033465;11,0.0023189969740121043;12,0.002514573691705234;13,0.002660699982200071;14,0.002735737807048772;15,0.002752258365966536;16,0.0026970785866856535;17,0.0027047548059807762;18,0.002711207280170879;19,0.0026728818084727664;20,0.0026370038269846923;21,0.0026309407262370956;22,0.0025874421502313995;23,0.0025666384834460666;24,0.0025354329832680675;25,0.0025295923816304735;26,0.002550451673193307;27,0.0025523429156283375;28,0.0025436654503381987;29,0.0024942150231399077;30,0.0024610626557493775;31,0.0024819775720897118;32,0.0024471008365966537;33,0.002451105820576718;34,0.0024609514061943753;35,0.002424572801708794;36,0.002423849679601282;37,0.0024375889996440013;38,0.002437978373086508;39,0.0024233490566037737;40,0.002433584015663938;41,0.002451105820576718;42,0.0024430958526165903;43,0.002419622196511214;44,0.0024249065503737987;45,0.002404714756140976;46,0.002351426219295123;47,0.0023843004627981485;48,0.0023756786222855104;49,0.0023648317906728375;50,0.0023667786578853685;51,0.0023474768600925595;52,0.002352649964400143;53,0.0023609380562477755;54,0.0023305669277322886;55,0.002353929334282663;56,0.0023271181915272337;57,0.002332625044499822;58,0.002347866233535066;59,0.002327229441082236;60,0.002317050106799573;61,0.0023153813634745465;62,0.002315881986472054;63,0.0022731621573513707;64,0.002216647383410466;65,0.0019414159843360625;66,0.0016831501423994306;67,0.0013727082591669633;68,0.001111494304022784;69,0.0008225792096831614;70,0.0005475146849412602;71,0.00027534264862940543;72,0.0000053399786400854395;73,0.000006007475970096121;74,0.0000048949804200783195;75,0.0000049506051975792085;76,0.000006229975080099679;77,0.00000472810608757565;78,0.000005562477750089;79,0.000005506852972588111;80,0.000004004983980064079;81,0.0000050062299750801;82,0.0000057293520825916705;83,0.000005395603417586329;84,0.00000461685653257387;85,0.00000495060519757921;86,0.0000036712353150587396;87,0.0000021693663225347102;88,0.00000016687433250267004;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000022249911000356;50,0.00000027812388750444997;51,0.00000027812388750444997;52,0.00000005562477750089;53,0.00000033374866500534;54,0.00000011124955500177998;55,0.00000027812388750444997;56,0.0000012793698825204698;57,0.0000013906194375222498;58,0.00000116812032751869;59,0.00000194686721253115;60,0.00000094562121751513;61,0.0000007787468850124602;62,0.00000211374154503382;63,0.0000029481132075471697;64,0.00000272561409754361;65,0.00004177420790316839;66,0.00008460528657885369;67,0.00013400008899964403;68,0.00018968049127803492;69,0.0002424127803488786;70,0.000303377536489854;71,0.0003700160199359203;72,0.0004318707725169099;73,0.00044739008543965826;74,0.0004680825026699894;75,0.0004831568173727306;76,0.0005052954788180848;77,0.0005165873086507654;78,0.000509189213243147;79,0.000525932271270915;80,0.0005540227839088644;81,0.0005662046101815592;82,0.0005803889284442863;83,0.0005957413670345319;84,0.0006150431648273406;85,0.0006378493236027056;86,0.0006397961908152368;87,0.000642188056247775;88,0.0006247218761124957;89,0.0006015819686721253;90,0.000594183873264507;91,0.0005767176931292274;92,0.0005467915628337486;93,0.0005397828408686366;94,0.0005184785510857957;95,0.0005098010857956569;96,0.0004975080099679602;97,0.00047297748309006765;98,0.00045061632253470986;99,0.0004269201673193307;100,0.0004198001957992168;101,0.0003812522249911001;102,0.0003611160555357779;103,0.0003386436454254183;104,0.0003287424350302599;105,0.0003149474902100392;106,0.00029887192951228196;107,0.00028446511213955146;108,0.00026744393022427914;109,0.00025298148807404775;110,0.00021721475614097543;111,0.00018817862228551088;112,0.00017560742257030973;113,0.0001602549839800641;114,0.00013895069419722324;115,0.00012204076183695267;116,0.00010663269846920612;117,0.00009383899964400141;118,0.0000945064969740121;119,0.00007943218227127092;120,0.0000644691171235315;121,0.000052120416518333925;122,0.000040884211463154154;123,0.00003999421502313991;124,0.00002964800640797437;125,0.000020469918120327523;126,0.00000990121039515842;127,0.00000328186187255251;128,0.00000033374866500533997;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "actuallyadditions:black_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.000006452474190103239;37,0.000049561676753292995;38,0.0001240988786044856;39,0.00020152856888572447;40,0.0002741745283018868;41,0.00033981176575293706;42,0.0004241945532217872;43,0.0005146404414382343;44,0.0005878982734069064;45,0.000666551708793165;46,0.0007655081879672481;47,0.0008322022961908152;48,0.0008960595407618369;49,0.0009821110715557137;50,0.001074615076539694;51,0.0011617234781060876;52,0.001225691972232111;53,0.001305680402278391;54,0.0014019112673549308;55,0.0014474679601281597;56,0.0015208370416518336;57,0.0016231866322534711;58,0.0017181381274474902;59,0.0017746529013883943;60,0.001844740121039516;61,0.001921557938768245;62,0.001981632698469206;63,0.002014896315414738;64,0.002058450516197935;65,0.002136102705589178;66,0.002200293698825205;67,0.0022828964934140266;68,0.0023243925774296906;69,0.002392254805980776;70,0.002446767087931649;71,0.0025024474902100398;72,0.0025900008899964397;73,0.0025992346030615883;74,0.0024691838732645074;75,0.002370449893200427;76,0.002305480153079387;77,0.0022681559273762903;78,0.002213365521537914;79,0.002104785955856177;80,0.002019179423282307;81,0.0019890307938768247;82,0.0018958036667853328;83,0.0018139239943040229;84,0.0017252580989676044;85,0.001686487629049484;86,0.0016246328764684941;87,0.0015234514061943753;88,0.0014387904948380205;89,0.001368369526521894;90,0.001287991723033108;91,0.0011941527233891064;92,0.0011182805268778926;93,0.0010499733001067997;94,0.0009669811320754718;95,0.0009105219829120684;96,0.0008298660555357779;97,0.0007806937522249913;98,0.0006951984692061231;99,0.0006187700249199004;100,0.0005544677821288715;101,0.0004750355998576006;102,0.00040867524029903886;103,0.00035138171947312214;104,0.0002849101103595586;105,0.00022566972232111073;106,0.00015458125667497328;107,0.00009039026343894624;108,0.00003381986472054112;109,0.00000467248131007476;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.001900364898540406;2,0.0018794499822000713;3,0.0018686587753648986;4,0.0017975146849412602;5,0.0017816059985760059;6,0.0017495661267354931;7,0.0017269268422926308;8,0.0017242012281950873;9,0.0016597321110715557;10,0.001595318618725525;11,0.001540361338554646;12,0.0015499288002847988;13,0.0015289582591669632;14,0.0015210595407618372;15,0.0015066527233891067;16,0.001462319775720897;17,0.001427554289782841;18,0.0014155949626201494;19,0.001371985137059452;20,0.0013620283018867924;21,0.0013304334282662868;22,0.001312633499466002;23,0.001283374866500534;24,0.0012581768422926308;25,0.0012598455856176576;26,0.00122374510501958;27,0.0011983245817016731;28,0.001182805268778925;29,0.0011793565325738699;30,0.0011508210217159131;31,0.0011313523495906017;32,0.0010995906016375936;33,0.0010811788002847988;34,0.0010508076717693129;35,0.0010537001601993593;36,0.0010483601815592738;37,0.0009970741367034534;38,0.0009952941438234248;39,0.0009649786400854397;40,0.0009408931114275544;41,0.0009529080633677465;42,0.0009159175863296546;43,0.0009023451406194377;44,0.000879872730509078;45,0.0008846564613741545;46,0.0008523384656461373;47,0.0008330922926308296;48,0.0008176842292630831;49,0.0008185186009255964;50,0.0008011636703453187;51,0.0007597232111071555;52,0.0007456501423994304;53,0.0007146671413314347;54,0.0006989809540761837;55,0.0006733935564257744;56,0.0006446355464578142;57,0.0006538692595229618;58,0.0006194375222499111;59,0.0004887192951228195;60,0.00036189480242079027;61,0.00031661623353506583;62,0.0003027656639373443;63,0.00028613385546457813;64,0.0002565970986116056;65,0.00020881541473834105;66,0.00017149118903524388;67,0.00013366634033463868;68,0.00009278212887148452;69,0.00006335662157351371;70,0.00003999421502313991;71,0.00001624243503025988;72,0.00000050062299750801;73,0.0000003337486650053399;74,0.00000033374866500533997;75,0.00000016687433250266998;76,0.00000011124955500177997;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:nether_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0.0000011507375845496617;40,0.0000014053404479741455;41,0.0000023014751690993234;42,0.000002556078032523807;43,0.000006904425507297971;44,0.000006008290786172793;45,0.0000034522127536489854;46,0.00000025460286342448376;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0.000000955816183137505;97,0.000000955816183137505;98,0.00000191163236627501;99,0.000000955816183137505;100,0.000004779080915687525;101,0.00000382326473255002;102,0;103,0;104,0.0000018886698153287637;105,0.0000009443349076643818;106,0.0000037773396306575273;107,0.0000037773396306575273;108,0.000002833004722993146;109,0.0000009443349076643818;110,0.0000009443349076643818;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0.0000005092057268489676;140,0.0000005092057268489676;141,0.0000010184114536979352;142,0.0000020368229073958705;143,0.0000010184114536979352;144,0.0000005092057268489676;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0.00000033374866500534;22,0.00000100124599501602;23,0.00000066749733001068;24,0.0000005006229975080099;25,0.0000020024919900320397;26,0.00000250311498754005;27,0.0000014462442150231399;28,0.0000027812388750444995;29,0.000005228729085083659;30,0.000005562477750088997;31,0.0000040606087575649685;32,0.0000071755962976148095;33,0.000009511836952652192;34,0.000010068084727661093;35,0.000010290583837664652;36,0.0000116812032751869;37,0.00001079120683517266;38,0.000010401833392666429;39,0.00000967871128515486;40,0.00001101370594517622;41,0.000010346208615165538;42,0.00001195932716269135;43,0.00001218182627269491;44,0.00001240432538269847;45,0.00001346119615521538;46,0.000016687433250266996;47,0.000019134923460306162;48,0.000019635546457814167;49,0.00002486427554289783;50,0.000024641776432894266;51,0.00002419677821288715;52,0.000029759255962976147;53,0.00003248487006051976;54,0.000030816126735493056;55,0.000029870505517977925;56,0.000030093004627981488;57,0.00003715735137059452;58,0.00004199670701317195;59,0.00004477794588821645;60,0.000043832324670701324;61,0.000039215468138127455;62,0.000042330455678177296;63,0.00004594606621573515;64,0.000045890441438234256;65,0.0008630740477038094;66,0.0016324759700961197;67,0.00235253871484514;68,0.0030368903524385905;69,0.0036928177287290855;70,0.0042912290850836594;71,0.004946600213599146;72,0.005619548771804914;73,0.00548810742257031;74,0.0052108179067283725;75,0.005072757208971164;76,0.0049428733535065855;77,0.004811320754716981;78,0.004701962442150232;79,0.004622808383766466;80,0.004537313100747597;81,0.004373442506229975;82,0.004226036845852616;83,0.004162791473834105;84,0.004092148006407975;85,0.004013438946244215;86,0.0038651989142043435;87,0.0037258032217871136;88,0.003551642043431827;89,0.0034363875044499826;90,0.003324915450338199;91,0.0031929178533285866;92,0.0030755495728017087;93,0.0029795412068351727;94,0.0028385323958704167;95,0.002712097276610894;96,0.002656027500889996;97,0.0025595185119259524;98,0.0023795723567105733;99,0.0022219317372730507;100,0.0020780304378782482;101,0.0019812989498042013;102,0.0018565325738697047;103,0.0016987250800996798;104,0.0015227282840868637;105,0.001392677554289783;106,0.0013165272338910646;107,0.0012136213955144179;108,0.001098311231755073;109,0.0010034153613385547;110,0.0008664671591313636;111,0.0006861316304734781;112,0.0005591402634389463;113,0.00047987495550017804;114,0.00040494838020647923;115,0.0003142243681025276;116,0.0002339021893912424;117,0.00017271493414026343;118,0.00010446333214667142;119,0.00003988296546813813;120,0.00000973433606265575;121,0.00000072312210751157;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0004099546101815593;2,0.0005202029191883233;3,0.0006201606443574227;4,0.0007517132431470275;5,0.0008668565325738698;6,0.0009455655927376292;7,0.0010543120327518689;8,0.0011746284264862942;9,0.001284542986828053;10,0.0013586351904592382;11,0.0015398050907796368;12,0.0017862228551085795;13,0.002065570487718049;14,0.002231777322890709;15,0.0023703386436454256;16,0.002564691616233535;17,0.002692239231043076;18,0.0027815169989320048;19,0.0028041562833748665;20,0.002922803933784265;21,0.0030433428266286935;22,0.0031913047347810605;23,0.003281472499110004;24,0.003367134656461374;25,0.003512537824848701;26,0.0037450493948024207;27,0.003928499911000357;28,0.003977950338198648;29,0.0040389150943396235;30,0.004124021003915984;31,0.0042792141331434675;32,0.0043890730687077256;33,0.004513005072979708;34,0.004614687166251335;35,0.004777222766108936;36,0.004867501779992879;37,0.005007064346742612;38,0.005042664204343183;39,0.005076317194731221;40,0.005132831968672125;41,0.005311498754004984;42,0.005454398807404771;43,0.005561921502313991;44,0.005711663403346386;45,0.0058246929512281945;46,0.005993681025275898;47,0.006163169722321111;48,0.006220463243147029;49,0.00630312166251335;50,0.006471164115343538;51,0.006684985760056959;52,0.0067606910822356715;53,0.006772094161623353;54,0.006825104574581703;55,0.006954654681381275;56,0.007062622374510502;57,0.007227382965468138;58,0.0073698936454254195;59,0.0073947579209683156;60,0.007240287913848344;61,0.00704181870772517;62,0.006832725169099324;63,0.00661500978996084;64,0.006344450872196511;65,0.005395825916696333;66,0.004468338376646493;67,0.003678911534353863;68,0.0029332057671769317;69,0.002137827073691705;70,0.0014093093627625488;71,0.0007071577963688146;72,0.00001346119615521538;73,0.00001368369526521894;74,0.000014907440370238518;75,0.00001440681737273051;76,0.000014184318262726952;77,0.000015018689925240301;78,0.00001207057671769313;79,0.000013850569597721609;80,0.000014239943040227841;81,0.00001418431826272695;82,0.00001362807048771805;83,0.00001129182983268067;84,0.000013238697045211821;85,0.000011514328942684228;86,0.00001129182983268067;87,0.00000956746173015308;88,0.000006563723745105021;89,0.00000684184763260947;90,0.0000062855998576005695;91,0.00000634122463510146;92,0.00000817684229263083;93,0.000011625578497686008;94,0.000010624332502669988;95,0.00000561810252758989;96,0.00000695309718761125;97,0.000005896226415094339;98,0.00000617435030259879;99,0.000006897472410110361;100,0.000007119971520113919;101,0.00000522872908508366;102,0.000004060608757564969;103,0.00000183561765752937;104,0.0000024474902100391597;105,0.00000233624065503738;106,0.00000133499466002136;107,0.00000161311854752581;108,0.0000020581167675329296;109,0.0000020581167675329296;110,0.0000012793698825204698;111,0.0000018356176575293698;112,0.0000008343716625133501;113,0.00000022249911000356;114,0.00000022249911000355996;115,0.0000006118725525097899;116,0.00000033374866500533997;117,0.00000027812388750445007;118,0;119,0.00000016687433250266996;120,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.000616433784264863;2,0.0008057249021003916;3,0.0009878404236383057;4,0.0011133299216803134;5,0.00124499377002492;6,0.0013853350836596653;7,0.0015406950872196511;8,0.0016790339088643648;9,0.001877002491990032;10,0.0020427087041651835;11,0.00220997241011036;12,0.002531928622285511;13,0.002948224457102172;14,0.003250545122819509;15,0.0033790383588465644;16,0.0035404058383766467;17,0.0037055558027767896;18,0.003934173638305448;19,0.004115510412958349;20,0.004292063456746173;21,0.004428677910288359;22,0.004570799216803133;23,0.004708637415450338;24,0.004899819775720897;25,0.005049839800640797;26,0.005199804200783197;27,0.005389373442506231;28,0.005616656283374866;29,0.005870861516553935;30,0.006019602171591314;31,0.006123509255962977;32,0.006226415094339622;33,0.006377325115699536;34,0.0065546569063723754;35,0.006693273851904593;36,0.006872997508009968;37,0.007071856087575651;38,0.007265930936276256;39,0.00737873798504806;40,0.007459393912424351;41,0.007554734781060876;42,0.00772183161267355;43,0.007910232734069064;44,0.008128337486650053;45,0.008316460484158064;46,0.008526444019223924;47,0.008686699003203985;48,0.00876435119259523;49,0.00872252135991456;50,0.008625734247063012;51,0.008523329031683874;52,0.008232912068351727;53,0.007897216536133855;54,0.007609247063011748;55,0.007480197579209683;56,0.0074208459416162335;57,0.007277445265218939;58,0.007133933339266643;59,0.006918387326450694;60,0.0067536823602705595;61,0.0065620550017799935;62,0.006328987184051263;63,0.0061487629049483804;64,0.005928544410822357;65,0.005076428444286223;66,0.0042301530793876834;67,0.0033318129227483087;68,0.002517188056247775;69,0.001819430847276611;70,0.0011662847098611606;71,0.0005770514417942328;72,0.0000100124599501602;73,0.000011848077607689571;74,0.00000934496262014952;75,0.00001045745817016732;76,0.00000928933784264863;77,0.000010457458170167318;78,0.000012571199715201139;79,0.000011403079387682449;80,0.000011069330722677109;81,0.000012014951940192238;82,0.000012237451050195798;83,0.000009789960840156639;84,0.000007286845852616589;85,0.00000884433962264151;86,0.0000057849768600925595;87,0.000005673727305090781;88,0.000004672481310074761;89,0.00000422748309006764;90,0.0000031706123175507297;91,0.0000019468672125311502;92,0.0000011124955500177999;93,0.0000006118725525097899;94,0.00000016687433250266998;95,0.0000012793698825204698;96,0.0000011681203275186898;97,0.00000061187255250979;98,0.00000027812388750445007;99,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.00047887370950516197;2,0.0004742012281950872;3,0.00047192061231755074;4,0.0006980353328586686;5,0.0007279058383766465;6,0.0007414226593093628;7,0.0007492657529369884;8,0.0007466513883944464;9,0.0007630606977572091;10,0.0007632831968672125;11,0.0007810831256674975;12,0.0007741856532573871;13,0.0007888149697401211;14,0.0007941549483802064;15,0.0007983824314702742;16,0.000805558027767889;17,0.0008160154859380563;18,0.0008204654681381276;19,0.0008345385368458526;20,0.0008319241723033109;21,0.0008658552865788538;22,0.0008790383588465646;23,0.000894001423994304;24,0.0009126357244571021;25,0.000938501245995016;26,0.0009403924884300464;27,0.0009377224991100038;28,0.0009356087575649698;29,0.0009384456212175151;30,0.0009579699181203275;31,0.0009324937700249199;32,0.0009356087575649696;33,0.0009625311498754003;34,0.000965256763972944;35,0.0009953497686009255;36,0.0009863941794232825;37,0.0009947378960484157;38,0.0010288358846564614;39,0.0010995349768600927;40,0.0011778546635813456;41,0.00126373932004272;42,0.0013512927198291208;43,0.0014104218583125669;44,0.0014944152723389108;45,0.001588866144535422;46,0.0016722476860092559;47,0.0017500111249555005;48,0.0018441838732645073;49,0.0019687833748665007;50,0.0020723010857956565;51,0.0021533463866144544;52,0.0022708815414738343;53,0.0023795723567105733;54,0.0024823669455322182;55,0.00257186721253115;56,0.002747808383766465;57,0.0027592114631541475;58,0.0028486561053755787;59,0.002893155927376291;60,0.0030004004983980063;61,0.0031126512993948025;62,0.0032536601103595585;63,0.0033863808294766823;64,0.003523440281238875;65,0.0032344695621217517;66,0.0028473211107155573;67,0.0024492702029191883;68,0.0020198469206123178;69,0.0015635012459950162;70,0.0010849056603773584;71,0.0005579721431114276;72,0.000004227483090067641;73,0.0000032818618725525095;74,0.000004338732645069419;75,0.0000030593627625489495;76,0.00000322623709505162;77,0.0000036712353150587396;78,0.00000372686009255963;79,0.00000328186187255251;80,0.00000328186187255251;81,0.0000043943574225703095;82,0.0000033374866500534;83,0.0000026699893200427198;84,0.0000029481132075471697;85,0.0000025031149875400496;86,0.0000037268600925596304;87,0.00000328186187255251;88,0.00000311498754004984;89,0.00000228061587753649;90,0.0000016687433250267;91,0.00000189124243503026;92,0.00000266998932004272;93,0.00000127936988252047;94,0.00000233624065503738;95,0.00000211374154503382;96,0.0000015018689925240298;97,0.0000012237451050195799;98,0.0000017799928800284801;99,0.00000211374154503382;100,0.0000017799928800284797;101,0.00000155749377002492;102,0.0000021693663225347102;103,0.00000150186899252403;104,0.00000116812032751869;105,0.0000012237451050195799;106,0.0000010012459950160199;107,0.00000083437166251335;108,0.0000010568707725169098;109,0.00000105687077251691;110,0.00000100124599501602;111,0.0000007231221075115698;112,0.0000006118725525097899;113,0.00000050062299750801;114,0.0000007787468850124598;115,0.00000033374866500533997;116,0.0000005006229975080101;117,0.00000005562477750089;118,0.0000003893734425062301;119,0.00000022249911000356001;120,0.00000016687433250267004;121,0.00000011124955500178;122,0.0000005006229975080099;123,0;124,0;125,0;126,0.0000004449982200071201;127,0.00000022249911000355996;128,0.00000011124955500178;129,0.00000016687433250266998;130,0.00000005562477750088999;131,0.00000005562477750088999;132,0.00000011124955500178;133,0;134,0.00000005562477750089;135,0.00000005562477750089;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0.00000011124955500177997;185,0.000000055624777500889984;186,0;187,0;188,0;189,0;190,0;191,0.00000005562477750088999;192,0;193,0;194,0;195,0;196,0.00000005562477750088999;197,0;198,0;199,0;200,0.00000033374866500534;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0.00000005562477750088999;211,0.00000016687433250267;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0.00000005562477750088999;220,0;221,0;222,0;223,0.00000033374866500534;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00027100391598433604;2,0.00034771048415806335;3,0.00040917586329654684;4,0.00048510368458526165;5,0.0005632008721965112;6,0.0006309518511925952;7,0.0007027078141687434;8,0.000761058205767177;9,0.0008157929868280527;10,0.0008989520291918832;11,0.0009951272694909221;12,0.0011484847810608759;13,0.001311632253470986;14,0.0014392354930580276;15,0.0015601637593449628;16,0.0016063879494482023;17,0.0016651833392666432;18,0.001777879138483446;19,0.0018798949804200785;20,0.0019251735493058027;21,0.0020002113741545034;22,0.002064291117835529;23,0.002086930402278391;24,0.002124699626201495;25,0.002249132253470986;26,0.0023430825026699888;27,0.0023722298860804555;28,0.002422292185831257;29,0.0024884300462798153;30,0.0025836596653613384;31,0.0026736049305802778;32,0.0027352928088287647;33,0.0028354174083303667;34,0.0028918765574937697;35,0.0029853818084727662;36,0.003089122018511926;37,0.0031099256852972585;38,0.003141631808472766;39,0.003192917853328587;40,0.0032800818796724814;41,0.0033985070309718764;42,0.0034740454788180844;43,0.003491011035955856;44,0.003561988252046992;45,0.0036423104307582773;46,0.0037444931470274117;47,0.003805068529725881;48,0.0038719295122819518;49,0.003957647294410823;50,0.004006597098611606;51,0.004064279992880029;52,0.004149219028123888;53,0.004205455678177287;54,0.004265252313990744;55,0.004380228729085084;56,0.004411434229263084;57,0.004459772160911356;58,0.0044980976326094695;59,0.004583259166963333;60,0.004648395781416874;61,0.004749911000355999;62,0.004802198291206835;63,0.0047715490388038455;64,0.004625923371306515;65,0.003993636525453898;66,0.003377647739409043;67,0.0026998042007831966;68,0.0021096253114987543;69,0.0015818017977928091;70,0.0010361227305090781;71,0.0005128048237807048;72,0.00000995683517265931;73,0.000009011213955144179;74,0.00001051308294766821;75,0.00000990121039515842;76,0.000008899964400142399;77,0.000009233713065147738;78,0.00001023495906016376;79,0.00001067995728017088;80,0.000009400587397650409;81,0.00001218182627269491;82,0.0000088999644001424;83,0.000007676219295122821;84,0.00000856621573513706;85,0.00000828809184763261;86,0.00000495060519757921;87,0.00000517310430758277;88,0.000006897472410110359;89,0.0000066749733001068;90,0.0000071199715201139205;91,0.000006118725525097901;92,0.000004227483090067639;93,0.00000467248131007476;94,0.000005117479530081879;95,0.000004283107867568529;96,0.00000266998932004272;97,0.000004950605197579209;98,0.00000417185831256675;99,0.0000039493592025631895;100,0.00000467248131007476;101,0.0000043387326450694205;102,0.00000322623709505162;103,0.0000034487362050551796;104,0.00000311498754004984;105,0.0000035599857600569594;106,0.0000021137415450338204;107,0.0000012793698825204698;108,0.00000177999288002848;109,0.0000011124955500177999;110,0.0000017243681025275898;111,0.00000127936988252047;112,0.00000155749377002492;113,0.0000015574937700249197;114,0.00000094562121751513;115,0.00000144624421502314;116,0.0000015018689925240298;117,0.00000139061943752225;118,0.0000010012459950160199;119,0.0000003337486650053399;120,0.00000038937344250622997;121,0.00000066749733001068;122,0.00000044499822000712;123,0.00000050062299750801;124,0.00000027812388750445;125,0.00000022249911000356;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0.0000003337486650053399;16,0.0000004449982200071199;17,0.00000038937344250622997;18,0.00000005562477750088999;19,0.00000050062299750801;20,0.00000139061943752225;21,0.0000018356176575293698;22,0.0000014462442150231397;23,0.00000083437166251335;24,0.00000161311854752581;25,0.0000033374866500534002;26,0.0000039493592025631895;27,0.00000439435742257031;28,0.000006063100747597009;29,0.000007843093627625492;30,0.000010624332502669988;31,0.000012960573157707367;32,0.000015296813812744753;33,0.000016965557137771445;34,0.000017132431470274116;35,0.00001657618369526522;36,0.000017188056247775008;37,0.000015296813812744746;38,0.00001852305090779637;39,0.00002008054467782129;40,0.000017688679245283016;41,0.00001885679957280171;42,0.00002313990744037024;43,0.000025531772872908515;44,0.00002319553221787113;45,0.000022861783552865786;46,0.00002208303666785333;47,0.000024363652545389824;48,0.00002074804200783197;49,0.00002219428622285511;50,0.000024864275542897826;51,0.000028368636525453897;52,0.00003415361338554645;53,0.00003632297970808117;54,0.00003220674617301531;55,0.0000294811320754717;56,0.00002842426130295479;57,0.000033819864720541126;58,0.000035599857600569596;59,0.00003749110003559986;60,0.0000350436098255607;61,0.00003493236027055893;62,0.00003927109291562835;63,0.000040717337130651476;64,0.00003771359914560342;65,0.0007647294410822357;66,0.0014560898006407974;67,0.0021037847098611608;68,0.002597287735849057;69,0.003127336240655038;70,0.003621618013527946;71,0.00407000934496262;72,0.004487250800996796;73,0.004421112940548238;74,0.004166017710929157;75,0.004009767710929157;76,0.00375684184763261;77,0.003562377625489498;78,0.0033962264150943396;79,0.0033032217871128517;80,0.0031473611605553576;81,0.0030242079031683874;82,0.002793031327874689;83,0.0026121951762192947;84,0.0024496595763616943;85,0.0023131007475970097;86,0.0021711463154147383;87,0.0019541540583837666;88,0.0018148139907440373;89,0.0016860982556069779;90,0.0015099345852616591;91,0.0013383877714489142;92,0.0011882008721965111;93,0.0010322846208615168;94,0.0008628515485938056;95,0.0007048215557137772;96,0.0005523540405838378;97,0.0003840334638661446;98,0.00021176352794588824;99,0.00008594028123887505;100,0.00002219428622285511;101,0.00000228061587753649;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000022249911000355996;13,0;14,0.00000005562477750088999;15,0.00000016687433250267;16,0;17,0.00000005562477750088999;18,0.00000005562477750088999;19,0;20,0;21,0.00000011124955500177998;22,0.00000022249911000355996;23,0.0000004449982200071201;24,0.0000008343716625133501;25,0.00000027812388750445;26,0.0000008343716625133501;27,0.0000005006229975080099;28,0.00000139061943752225;29,0.0000005006229975080099;30,0.00000094562121751513;31,0.00000139061943752225;32,0.00000116812032751869;33,0.00000183561765752937;34,0.0000017799928800284801;35,0.0000016687433250267001;36,0.0000025031149875400496;37,0.0000023362406550373795;38,0.0000020581167675329296;39,0.0000017243681025275898;40,0.00000189124243503026;41,0.0000020581167675329296;42,0.0000013349946600213599;43,0.0000014462442150231399;44,0.0000015018689925240302;45,0.0000015574937700249199;46,0.0000019468672125311502;47,0.0000023918654325382703;48,0.0000014462442150231399;49,0.00000250311498754005;50,0.000004283107867568531;51,0.0000027812388750445004;52,0.00000194686721253115;53,0.00000211374154503382;54,0.00000294811320754717;55,0.00000350436098255607;56,0.0000027812388750445;57,0.0000025031149875400496;58,0.00000261436454254183;59,0.0000020581167675329296;60,0.0000013349946600213599;61,0.0000011124955500177999;62,0.00000272561409754361;63,0.0000030106910822356715;64,0.00000322623709505162;65,0.00003445607311320755;66,0.000060429367657529374;67,0.00008123303444286223;68,0.00009689836240655037;69,0.00010892026744393022;70,0.00011880583337041651;71,0.00012245968594250625;72,0.00012384509055713777;73,0.00011309212575649698;74,0.00009175133221342116;75,0.00007610512526699893;76,0.00005922648184407262;77,0.000041461318529725886;78,0.0000262062233001068;79,0.000007293798949804201;80,0.0000008899964400142401;81,0;82,0;83,0;84,0;85,0.00000027812388750445007;86,0.00000050062299750801;87,0.00000027812388750445007;88,0.0000003893734425062301;89,0.00000016687433250267004;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0;223,0;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0;232,0;233,0;234,0;235,0;236,0;237,0;238,0;239,0;240,0;241,0;242,0;243,0;244,0;245,0;246,0;247,0;248,0;249,0;250,0;251,0;252,0;253,0;254,0;255,0;256,0;257,0;258,0;259,0;260,0;261,0;262,0;263,0;264,0;265,0;266,0;267,0;268,0;269,0.00000005562477750088999;270,0;271,0;272,0;273,0;274,0;275,0.00000005562477750088999;276,0;277,0;278,0;279,0;280,0;281,0;282,0;283,0;284,0;285,0;286,0.000000055624777500890004;287,0.00000005562477750088999;288,0.000000055624777500890004;289,0.000000055624777500890004;290,0.000000055624777500890004;291,0.000000055624777500890004;292,0;293,0;294,0;295,0;296,0;297,0;298,0;299,0;300,0;301,0.00000005562477750088999;302,0.00000005562477750088999;303,0;304,0;305,0;306,0.00000005562477750088999;307,0.00000011124955500177998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0.0000011507375845496617;40,0.0000011507375845496617;41,0.000004602950338198647;42,0.0000011507375845496617;43,0;44,0.000004602950338198647;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0.000000955816183137505;97,0.000000955816183137505;98,0.000000955816183137505;99,0.000000955816183137505;100,0.00000191163236627501;101,0.000000955816183137505;102,0.00000191163236627501;103,0;104,0;105,0;106,0.0000018886698153287637;107,0.0000009443349076643818;108,0.0000037773396306575273;109,0;110,0.0000009443349076643818;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0.0000007638085902734514;139,0.0000007638085902734514;140,0;141,0;142,0.0000045828515416407085;143,0.0000015276171805469028;144,0.0000007638085902734514;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0.000004858212139841658;110,0.000026162426345539186;111,0.0000565471209582553;112,0.00008970281374309284;113,0.00012387021995729952;114,0.00014679186060769346;115,0.00017037994050809124;116,0.00018929463217269414;117,0.00022648119410919096;118,0.00026919172724124314;119,0.0003005809554547108;120,0.00031432038886314566;121,0.0003444850028344452;122,0.0003641270867151586;123,0.000383153065723335;124,0.0004000891477752024;125,0.0003946553401116559;126,0.0004280787271382164;127,0.00044529077912900306;128,0.00043698481328696974;129,0.00042899018748694033;130,0.0004327601643397774;131,0.000429829698395201;132,0.00043775913890909654;133,0.0004567728366314795;134,0.00045337677769533496;135,0.00045120287674419953;136,0.00042803307854363695;137,0.0004241616393758609;138,0.0004408061825972805;139,0.0004506450796377521;140,0.00046140922985560783;141,0.0004652416334288467;142,0.00047715754152268723;143,0.00047102411624320897;144,0.0004358128007365689;145,0.00040665544114318114;146,0.0003672031142378148;147,0.0003455300835726005;148,0.00033049042099008233;149,0.00029886252015793566;150,0.00028455648490585385;151,0.0002526609276205558;152,0.0002139738948686868;153,0.00019159315983320304;154,0.00017642433591271068;155,0.00017083438587101632;156,0.00015791572023929297;157,0.00014307301169232825;158,0.00012610832369170524;159,0.00010537158046680314;160,0.00009620305268778924;161,0.00008851988029547883;162,0.00008300607422570311;163,0.00006875222499110005;164,0.00006172264373442506;165,0.00004797637059451763;166,0.0000415934273762905;167,0.00004109975747597009;168,0.00003485587620149519;169,0.000029119571021715918;170,0.00002495466580633678;171,0.000020177888038447845;172,0.000014650175774296906;173,0.000010123709505161982;174,0.00000684184763260947;175,0.00000255873976504094;176,0.00000033374866500534;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0.00000016687433250267;47,0.00000027812388750445;48,0.0000003337486650053401;49,0.0000005006229975080099;50,0.00000027812388750444997;51,0.00000088999644001424;52,0.00000161311854752581;53,0.00000172436810252759;54,0.00000150186899252403;55,0.0000021693663225347102;56,0.0000025587397650409395;57,0.00000239186543253827;58,0.00000378248487006052;59,0.00000339311142755429;60,0.00000339311142755429;61,0.00000317061231755073;62,0.0000044499822000712;63,0.000005284353862584549;64,0.0000057293520825916705;65,0.0001101926842292631;66,0.00022383410466358136;67,0.0003603373086507654;68,0.0004885524207903168;69,0.0006470274118903524;70,0.0007952118191527234;71,0.0009050707547169812;72,0.0010005784976860092;73,0.00099312477750089;74,0.0009278212887148451;75,0.0008681359024563901;76,0.0008403235137059452;77,0.000795934941260235;78,0.0007541051085795658;79,0.0007049328052687789;80,0.0006594873620505519;81,0.0006096475614097545;82,0.0005721564613741545;83,0.0005143066927732289;84,0.000497619259522962;85,0.00046090690637237453;86,0.0004038358846564614;87,0.00035944731221075116;88,0.00031895247419010326;89,0.0002762326450694197;90,0.00022622597009611963;91,0.00018617613029547883;92,0.00014417942328230689;93,0.00010168209327162692;94,0.00005757164471342114;95,0.00002536489854040584;96,0.0000038937344250623;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0.000002285896049084977;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0.0000005680105334089942;22,0.0000011360210668179884;23,0.0000005680105334089942;24,0;25,0;26,0.0000005680105334089942;27,0.0000022720421336359768;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000032143596410050726;44,0.0000032143596410050726;45,0;46,0.0000017040316002269828;47,0.0000017040316002269828;48,0;49,0;50,0.0000022720421336359768;51,0.0000017144220368137324;52,0.000002285896049084977;53,0.0000011429480245424884;54,0;55,0.0000034184536370407146;56,0.0000034184536370407146;57,0;58,0;59,0;60,0.000002427079198599282;61,0.00000031410583578969854;62,0;63,0;64,0;65,0.0000008740336300235091;66,0.0000008740336300235091;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.00041229085083659665;2,0.0005260991456034177;3,0.0006433005517977929;4,0.0007503226237095051;5,0.0008556759522961909;6,0.0009822779458882164;7,0.001082180046279815;8,0.0011779659131363476;9,0.0013111316304734782;10,0.0014373442506229973;11,0.0015652812388750447;12,0.0017373286756852974;13,0.0019755139729441084;14,0.002204020558917764;15,0.0023668899074403707;16,0.0025417742079031683;17,0.002727616589533642;18,0.0028249599501602;19,0.002894045923816305;20,0.0029986761302954784;21,0.0030864520291918832;22,0.0031634367212531158;23,0.0033018867924528303;24,0.0034105776076895694;25,0.0034639773940904235;26,0.0035764506941972233;27,0.003672681559273763;28,0.0038504583481666077;29,0.003987350925596298;30,0.004112395425418298;31,0.004193941349234603;32,0.004344350747597009;33,0.004536979352082592;34,0.004592937878248487;35,0.004602449715201139;36,0.00468566438234247;37,0.004862996173015308;38,0.005008899964400142;39,0.0050928933784264874;40,0.005104685831256675;41,0.005244860270558919;42,0.005437711374154504;43,0.005580833926664294;44,0.005655704877180491;45,0.005759000088999645;46,0.005835094784620862;47,0.005908575115699538;48,0.005957024296902813;49,0.006114664916340335;50,0.006264907440370239;51,0.0063625289248843;52,0.006408474991100036;53,0.0065257876468494125;54,0.006669077073691706;55,0.006755962976148095;56,0.006873553755784977;57,0.007038258721965113;58,0.007126312744749021;59,0.007103339711641154;60,0.0070501067995728025;61,0.006855141954432183;62,0.00667247018511926;63,0.006515107689569242;64,0.006423159932360271;65,0.0055250422748309;66,0.004567072356710573;67,0.0036707346920612323;68,0.002862784798860805;69,0.0021442795478818087;70,0.001396181915272339;71,0.0006711129405482378;72,0.000012571199715201139;73,0.000010234959060163758;74,0.000014184318262726948;75,0.000013572445710217162;76,0.00001596431114275543;77,0.00001824492702029192;78,0.00001568618725525098;79,0.000011236205055179778;80,0.00001123620505517978;81,0.00000800996796012816;82,0.00001073558205767177;83,0.00001034620861516554;84,0.00001385056959772161;85,0.000014406817372730511;86,0.000011403079387682449;87,0.00000795434318262727;88,0.000008232467070131722;89,0.00000895558917764329;90,0.0000057849768600925595;91,0.00000695309718761125;92,0.00000895558917764329;93,0.0000083437166251335;94,0.000007286845852616589;95,0.000005618102527589889;96,0.0000035599857600569602;97,0.0000037268600925596304;98,0.0000035599857600569602;99,0.0000037268600925596304;100,0.00000433873264506942;101,0.000006396849412602349;102,0.00000622997508009968;103,0.000004060608757564969;104,0.00000228061587753649;105,0.00000205811676753293;106,0.00000144624421502314;107,0.0000015574937700249199;108,0.00000228061587753649;109,0.0000027812388750445;110,0.0000016131185475258098;111,0.00000083437166251335;112,0.00000061187255250979;113,0.00000066749733001068;114,0.00000033374866500533997;115,0.0000005006229975080099;116,0;117,0.00000005562477750089001;118,0;119,0.00000022249911000356;120,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00010908018867924529;2,0.00014295567817728728;3,0.00017488430046279816;4,0.0002064235493058028;5,0.0002436921502313991;6,0.0002792363830544678;7,0.0002987050551797793;8,0.0003385880206479174;9,0.000381808472766109;10,0.0004103439836240655;11,0.0004702518689925241;12,0.0005455678177287291;13,0.0005816682983268066;14,0.0005873976504093985;15,0.000629060608757565;16,0.0006864653791384834;17,0.0007601682093271627;18,0.0008270291918832324;19,0.00088187522249911;20,0.0008987851548593806;21,0.0008977839088643646;22,0.0008978395336418654;23,0.00092437255250979;24,0.0009654792630829478;25,0.0010093115877536489;26,0.0010661601103595588;27,0.001079120683517266;28,0.0010752825738697047;29,0.00112311988252047;30,0.0011710128159487362;31,0.001184307137771449;32,0.0012205188679245283;33,0.0012724167853328588;34,0.0013120772516909932;35,0.0013529614631541476;36,0.0014076962442150234;37,0.0014545879316482733;38,0.001450304823780705;39,0.0014564791740833039;40,0.0014586485404058385;41,0.0015350213599145605;42,0.0016014929690281242;43,0.0016135079209683165;44,0.0016130072979708083;45,0.0016612339800640796;46,0.001695498843004628;47,0.0017387749199003206;48,0.001775376023495906;49,0.001787057226771093;50,0.0018327807938768245;51,0.0018591469384122467;52,0.0018920211819152726;53,0.0019819664471342115;54,0.002019290672837309;55,0.0020201250444998224;56,0.0020021582413670344;57,0.002024686276254895;58,0.0020168988074047703;59,0.002099000978996084;60,0.002179211908152368;61,0.0021962330900676397;62,0.002133710840156639;63,0.0020859847810608756;64,0.002100669722321111;65,0.001897249911000356;66,0.0016517777678889283;67,0.0014024118903524386;68,0.0011468716625133498;69,0.0008780927376290497;70,0.0005886213955144181;71,0.00029453319686721256;72,0.00000550685297258811;73,0.0000057849768600925595;74,0.00000606310074759701;75,0.000006285599857600569;76,0.0000077874688501246;77,0.000006396849412602349;78,0.00000411623353506586;79,0.00000567372730509078;80,0.0000066193485226059105;81,0.000007843093627625488;82,0.000010012459950160199;83,0.000009511836952652189;84,0.000006953097187611249;85,0.00000812121751512994;86,0.00000928933784264863;87,0.00000695309718761125;88,0.00000817684229263083;89,0.00000973433606265575;90,0.00000745372018511926;91,0.000008399341402634389;92,0.000007398095407618368;93,0.0000074537201851192616;94,0.00000762059451762193;95,0.000007620594517621929;96,0.00000806559273762905;97,0.0000068418476326094684;98,0.0000057849768600925595;99,0.00000428310786756853;100,0.00000578497686009256;101,0.000007008721965112141;102,0.000007898718405126379;103,0.00000901121395514418;104,0.000007286845852616589;105,0.000009066838732645071;106,0.00001145870416518334;107,0.000008454966180135281;108,0.0000048949804200783195;109,0.0000048949804200783195;110,0.0000039493592025631895;111,0.00000406060875756497;112,0.0000028368636525453903;113,0.00000161311854752581;114,0.00000189124243503026;115,0.0000043387326450694205;116,0.0000038381096475614106;117,0.0000033374866500534;118,0.00000506185475258099;119,0.00000578497686009256;120,0.0000028924884300462798;121,0.0000017799928800284801;122,0.00000411623353506586;123,0.00000606310074759701;124,0.000004950605197579209;125,0.00000572935208259167;126,0.0000044499822000712;127,0.0000030037379850480596;128,0.0000028924884300462798;129,0.000004950605197579209;130,0.0000043943574225703095;131,0.00000478373086507654;132,0.00000328186187255251;133,0.00000355998576005696;134,0.00000361561053755785;135,0.0000017243681025275902;136,0.0000017243681025275898;137,0.0000024474902100391597;138,0.0000015018689925240298;139,0.00000194686721253115;140,0.0000018912424350302597;141,0.0000012237451050195799;142,0.0000003337486650053399;143,0.00000177999288002848;144,0.0000007231221075115697;145,0.00000027812388750444997;146,0.0000008343716625133498;147,0.00000027812388750444997;148,0.0000002781238875044499;149,0.00000127936988252047;150,0.0000017799928800284797;151,0.00000100124599501602;152,0.0000010012459950160199;153,0.00000183561765752937;154,0.0000018912424350302595;155,0.00000183561765752937;156,0.00000088999644001424;157,0.0000021693663225347094;158,0.00000088999644001424;159,0.0000003337486650053399;160,0.00000005562477750089;161,0.00000022249911000356;162,0.00000044499822000712;163,0.0000008343716625133497;164,0.0000008343716625133498;165,0.00000016687433250266998;166,0.0000003893734425062299;167,0.00000011124955500178001;168,0.00000005562477750089;169,0.00000044499822000712003;170,0.0000002781238875044499;171,0.00000022249911000355996;172,0.0000008343716625133498;173,0.0000008899964400142398;174,0.00000005562477750089;175,0.00000044499822000712;176,0.0000005562477750089;177,0.0000006674973300106801;178,0.0000002781238875044499;179,0.0000005562477750089;180,0.00000022249911000356;181,0.00000005562477750089;182,0.00000005562477750088999;183,0.00000005562477750089001;184,0.00000022249911000356;185,0.00000094562121751513;186,0.0000010568707725169098;187,0.0000004449982200071198;188,0;189,0.00000011124955500177998;190,0.0000007787468850124599;191,0.0000015018689925240296;192,0.0000026699893200427193;193,0.0000021693663225347094;194,0.0000008899964400142398;195,0.0000007231221075115699;196,0.00000033374866500533997;197,0.00000005562477750088999;198,0.00000072312210751157;199,0.0000012237451050195799;200,0.0000010568707725169098;201,0.00000022249911000356001;202,0.00000016687433250266998;203,0.00000033374866500534;204,0.00000016687433250266998;205,0;206,0.0000003893734425062299;207,0.0000009456212175151299;208,0.0000005562477750088999;209,0;210,0.00000005562477750088999;211,0.0000005562477750088999;212,0.0000012793698825204702;213,0.0000011124955500177999;214,0.0000011681203275186898;215,0.00000016687433250266996;216,0.0000007231221075115698;217,0.00000155749377002492;218,0.0000011124955500178;219,0.00000016687433250267;220,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00000011124955500178;62,0.00000038937344250623;63,0.0000007787468850124599;64,0.0000021137415450338204;65,0.00003682360270558918;66,0.00007448157707369172;67,0.00011764640441438236;68,0.0001579743681025276;69,0.00020408730865076541;70,0.0002380184229263083;71,0.0002688901744393023;72,0.00029903880384478463;73,0.00030259878960484164;74,0.0002965913136347455;75,0.0003036556603773585;76,0.0003044900320398719;77,0.0002962575649697401;78,0.00029809318262726946;79,0.00030093004627981487;80,0.00030404503381986474;81,0.00031683873264506945;82,0.00031261124955500185;83,0.00031522561409754363;84,0.00030932938768244925;85,0.00030560252758988967;86,0.000306436899252403;87,0.00031033063367746526;88,0.0003032662869348523;89,0.0002964800640797437;90,0.0002960350658597366;91,0.00028674572801708795;92,0.00029114008543965823;93,0.0002962019401922392;94,0.0002933650765396939;95,0.00029025008899964406;96,0.00028607823068707724;97,0.00028418698825204695;98,0.00027601014595941614;99,0.00026455144179423284;100,0.00025442773228907085;101,0.0002560964756140975;102,0.0002637170701317195;103,0.000262437700249199;104,0.00026549706301174796;105,0.0002692239231043076;106,0.00027083704165183347;107,0.0002739520291918832;108,0.00026811142755428985;109,0.0002549283552865789;110,0.00023985404058383768;111,0.0002156016375934496;112,0.00020547792808828767;113,0.00019591046635813458;114,0.00019440859736561054;115,0.00018434051263794947;116,0.0001737161801352795;117,0.00017493992524029902;118,0.0001696555713777145;119,0.00016654058383766464;120,0.00016414871840512638;121,0.000161812477750089;122,0.00015230064079743683;123,0.00015441438234247063;124,0.00014551441794232822;125,0.0001456812922748309;126,0.00014940815236739053;127,0.00014401254894980418;128,0.0001346119615521538;129,0.00012754761480954078;130,0.00012103951584193663;131,0.00011447579209683162;132,0.00010997018511925953;133,0.00010679957280170881;134,0.00010001334994660023;135,0.00009539649341402636;136,0.00009066838732645069;137,0.00008688590245639017;138,0.00008749777500889996;139,0.00008699715201139195;140,0.00008304779280882878;141,0.00007932093271626915;142,0.00007820843716625134;143,0.00007765218939124244;144,0.00007470407618369527;145,0.00007303533285866857;146,0.00007359158063367747;147,0.00006969784620861516;148,0.00006752847988608045;149,0.000060130384478462084;150,0.00005301041295834816;151,0.000053344161623353504;152,0.00005128604485582058;153,0.000047503559985760056;154,0.00004366545033819865;155,0.000038714845140619443;156,0.00003715735137059452;157,0.00003476548593805625;158,0.000034987985048059806;159,0.00003120550017799929;160,0.00002987050551797793;161,0.000030204254182983266;162,0.000030148629405482374;163,0.00002686676753292987;164,0.0000250311498754005;165,0.0000244749021003916;166,0.000025809896760412957;167,0.000025142399430402278;168,0.000025086774652901392;169,0.000024141153435386258;170,0.000022249911000356;171,0.00002147116411534354;172,0.00002024741901032396;173,0.000018801174795300818;174,0.00001652055891776433;175,0.00001618681025275899;176,0.00001652055891776433;177,0.000015185564257742972;178,0.00001596431114275543;179,0.00001329432182271271;180,0.00001040183339266643;181,0.00001017933428266287;182,0.000010068084727661091;183,0.00001006808472766109;184,0.00000789871840512638;185,0.00000634122463510146;186,0.0000057293520825916705;187,0.00000561810252758989;188,0.000005006229975080099;189,0.000005562477750089;190,0.00000328186187255251;191,0.0000017243681025275902;192,0.00000061187255250979;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.00000011124955500178;45,0.00000011124955500177998;46,0.00000083437166251335;47,0.0000010568707725169098;48,0.00000022249911000356001;49,0.00000050062299750801;50,0.0000025587397650409404;51,0.0000032818618725525103;52,0.00000261436454254183;53,0.0000027256140975436105;54,0.000005618102527589891;55,0.00001118058027767889;56,0.000013461196155215384;57,0.000014295567817728732;58,0.000015797436810252765;59,0.00001996929512281951;60,0.000023751779992880024;61,0.000026143645425418298;62,0.000029648006407974372;63,0.000030816126735493056;64,0.00022934095763616944;65,0.0004896649163403347;66,0.000747374510501958;67,0.0010654926130295478;68,0.0014040250088999645;69,0.0017696466714133144;70,0.002156072000711997;71,0.002545723567105732;72,0.002972866233535066;73,0.003064202118191527;74,0.0031337887148451407;75,0.003231521448914204;76,0.0033065592737629053;77,0.003435775631897473;78,0.003532117746529014;79,0.003609547436810253;80,0.0037004939480242078;81,0.0038565214489142043;82,0.003952418565325739;83,0.00408558428266287;84,0.004206123175507298;85,0.004304189658241368;86,0.0043668787824848706;87,0.004473010857956568;88,0.004607900943396226;89,0.004679434407262371;90,0.004705133054467783;91,0.0047754427732289075;92,0.004836463154147383;93,0.004961841402634391;94,0.0050881652723389105;95,0.005070587842648629;96,0.005092670879316483;97,0.005209872285510858;98,0.0052624933250267;99,0.005289248843004628;100,0.005281127625489499;101,0.005324848700605197;102,0.005402612139551443;103,0.005414849590601638;104,0.005359224813100747;105,0.005461908152367391;106,0.0054340401388394445;107,0.005460962531149876;108,0.005530159754360983;109,0.005509745461018156;110,0.005252703364186544;111,0.004723934229263083;112,0.004504883855464578;113,0.00424628426486294;114,0.003953252936988252;115,0.003678855909576362;116,0.003487896048415807;117,0.0033401010145959415;118,0.00322184273762905;119,0.0031595986116055535;120,0.0030104685831256676;121,0.002922247686009256;122,0.0028088287646849414;123,0.0027142110181559275;124,0.0026405081879672483;125,0.0025443329476682094;126,0.002374065503737985;127,0.002218538625845497;128,0.00208998976504094;129,0.001965390263438946;130,0.0018458526165895336;131,0.0017636948202207191;132,0.0016032173371306514;133,0.0015028146137415453;134,0.0014601504093983623;135,0.0013782151121395515;136,0.0012724167853328588;137,0.0012135657707369172;138,0.0011597209861160555;139,0.001058428266286935;140,0.0009651455144179422;141,0.0009410599857600571;142,0.0009146938412246351;143,0.0008656327874688502;144,0.0007907062121751513;145,0.0007194508721965111;146,0.0006591536133855465;147,0.0006384055713777145;148,0.0005970763616945532;149,0.00054812655749377;150,0.0005082992168031328;151,0.00045962753648985406;152,0.0004038358846564614;153,0.0003521604663581346;154,0.00031183250266998935;155,0.00028274074403702385;156,0.0002632164471342115;157,0.00024613964044143825;158,0.00021042853328586688;159,0.0001841736383054468;160,0.0001718805624777501;161,0.00016331434674261304;162,0.00014662691349234602;163,0.00012810386258454968;164,0.00010891331434674262;165,0.00009022338910644358;166,0.0000806559273762905;167,0.00006608223567105732;168,0.0000545122819508722;169,0.00004627981488074048;170,0.00003676797792808829;171,0.00003404236383054468;172,0.000023751779992880028;173,0.00001362807048771805;174,0.00000533997864008544;175,0.00000183561765752937;176,0.00000033374866500533997;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0.00000005562477750089002;8,0.00000005562477750089002;9,0;10,0.00000005562477750089001;11,0.00000005562477750089001;12,0;13,0.00000011124955500177998;14,0.00000011124955500177998;15,0;16,0;17,0;18,0;19,0;20,0.0000005562477750089002;21,0.0000002781238875044501;22,0.0000002781238875044501;23,0.00000022249911000356007;24,0;25,0;26,0;27,0;28,0;29,0.00000016687433250266998;30,0.00000033374866500533997;31,0.00000005562477750089;32,0.00000033374866500533997;33,0.0000003337486650053401;34,0.00000005562477750089001;35,0;36,0;37,0;38,0;39,0.00000016687433250267;40,0;41,0;42,0.00000011124955500178;43,0;44,0.00000011124955500177998;45,0.00000033374866500534;46,0.00000011124955500177998;47,0.00000005562477750089;48,0.00000005562477750089;49,0.00000016687433250267;50,0.0000005562477750088999;51,0.0000008343716625133501;52,0.00000127936988252047;53,0.00000066749733001068;54,0.0000003337486650053401;55,0.00000011124955500178003;56,0.00000033374866500534;57,0.00000022249911000356001;58,0.00000038937344250623;59,0.0000007231221075115699;60,0.00000088999644001424;61,0.0000006118725525097899;62,0.0000005562477750088999;63,0.00000022249911000356001;64,0.0000004449982200071201;65,0.00043320576717693134;66,0.0009072401210395158;67,0.0013783819864720544;68,0.0018408463866144537;69,0.0023707280170879317;70,0.002930535777856889;71,0.0035166540583837663;72,0.004105664827340691;73,0.004187711374154504;74,0.004197946333214667;75,0.0043041340334638665;76,0.004435186009255963;77,0.00461630028479886;78,0.00466625133499466;79,0.004626924617301531;80,0.004512671324314703;81,0.004473789604841581;82,0.004429679156283376;83,0.004313701495194019;84,0.004150665272338911;85,0.004087086151655393;86,0.0039746128515485936;87,0.003811298504805981;88,0.0037164026343894626;89,0.0036023162157351367;90,0.003487673549305803;91,0.003370805891776433;92,0.003251490744037024;93,0.0031357355820576718;94,0.003020091669633322;95,0.0028587798148807407;96,0.0027409109113563546;97,0.0026125289248843005;98,0.0025200805446778216;99,0.002416507208971164;100,0.0022742746529013885;101,0.0021349902100391603;102,0.0020541117835528658;103,0.0019395247419010326;104,0.0018024652901388397;105,0.0016886013705945178;106,0.0015924817550729798;107,0.0015273451406194376;108,0.0014114231043075827;109,0.0012750311498754005;110,0.0011070443218227127;111,0.0009401699893200428;112,0.0008501690993236027;113,0.0007272383410466359;114,0.0006140419188323247;115,0.0005236516553933784;116,0.0004447200961196156;117,0.0003710728907084372;118,0.00029898317906728374;119,0.0002425240299038804;120,0.00020976103595585614;121,0.00020325293698825205;122,0.0002074247953008188;123,0.00019824670701317198;124,0.00018367301530793878;125,0.00018612050551797794;126,0.00017900053399786403;127,0.00017310430758276968;128,0.00016598433606265577;129,0.0001589756140975436;130,0.00015636124955500176;131,0.00014762815948736205;132,0.0001494637771448914;133,0.0001363363296546814;134,0.00012437700249199005;135,0.00006741723033107868;136,0.00000973433606265575;137,0.00000255873976504094;138,0.0000024474902100391597;139,0.00000266998932004272;140,0.00000133499466002136;141,0.0000026699893200427198;142,0.000010513082947668208;143,0.000024808650765396944;144,0.0000417185831256675;145,0.00005918476326094696;146,0.00007075471698113208;147,0.00007754093983624066;148,0.00008477216091135636;149,0.0001035177109291563;150,0.00011881452474190105;151,0.00012120639017443931;152,0.00012699136703453185;153,0.00013244259522961907;154,0.00012749199003203989;155,0.00012710261658953364;156,0.0001296057315770737;157,0.00012927198291206834;158,0.00014217693129227484;159,0.0001462931648273407;160,0.00014223255606977573;161,0.00014162068351726594;162,0.00014940815236739053;163,0.0001477950338198647;164,0.00015113252046991814;165,0.00014612629049483804;166,0.0001485181559273763;167,0.00013678132787468852;168,0.00013539070843716623;169,0.00014679378782484872;170,0.00014184318262726948;171,0.00013088510145959416;172,0.00012003826984692062;173,0.00011892577429690283;174,0.00011887014951940194;175,0.00011525453898184406;176,0.00010574270202919188;177,0.00010479708081167677;178,0.00010590957636169457;179,0.00010262771448914205;180,0.00010223834104663582;181,0.00008799839800640799;182,0.0000839934140263439;183,0.00007965468138127448;184,0.0000817127981488074;185,0.00007854218583125668;186,0.00007181158775364898;187,0.00007348033107867569;188,0.00006814035243859024;189,0.00006535911356354574;190,0.00006496974012103952;191,0.00005751601993592026;192,0.00005295478818084727;193,0.000049839800640797437;194,0.000052009166963332154;195,0.00005089667141331436;196,0.00004705856176575293;197,0.000043554200783196876;198,0.000040105464578141687;199,0.00004016108935564258;200,0.00004049483802064791;201,0.00003331924172303311;202,0.000033486116055535785;203,0.000033875489498042005;204,0.00003120550017799929;205,0.00003254049483802065;206,0.000030704877180491285;207,0.00002875800996796013;208,0.000026477394090423642;209,0.000023251156995372023;210,0.000024808650765396944;211,0.00002119304022783909;212,0.00001857867568529726;213,0.000018356176575293702;214,0.00001429556781772873;215,0.00001129182983268067;216,0.00001245995016019936;217,0.00001429556781772873;218,0.000010791206835172659;219,0.00000873309006763973;220,0.000007286845852616591;221,0.0000075649697401210405;222,0.0000063412246351014585;223,0.000005117479530081881;224,0.00000361561053755785;225,0.000004505606977572089;226,0.0000038937344250623;227,0.00000322623709505162;228,0.00000183561765752937;229,0.00000189124243503026;230,0.0000017799928800284801;231,0.0000035599857600569602;232,0.000004060608757564969;233,0.0000014462442150231397;234,0.0000017799928800284797;235,0.0000020581167675329305;236,0.0000015018689925240302;237,0.0000011681203275186902;238,0.0000010012459950160199;239,0.0000009456212175151301;240,0.0000010012459950160199;241,0.0000012237451050195803;242,0.00000077874688501246;243,0.00000066749733001068;244,0.00000100124599501602;245,0.0000007231221075115698;246,0.0000010568707725169098;247,0.0000011681203275186902;248,0.0000009456212175151301;249,0.0000010568707725169098;250,0.0000005562477750088999;251,0.0000011681203275186902;252,0.0000015018689925240302;253,0.0000008899964400142398;254,0.00000133499466002136;255,0.0000017799928800284797;256,0.0000008343716625133501;257,0.00000066749733001068;258,0.0000007231221075115698;259,0.00000100124599501602;260,0.0000008899964400142398;261,0.0000012793698825204702;262,0.0000004449982200071199;263,0.00000038937344250623;264,0.0000013906194375222498;265,0.0000009456212175151301;266,0.0000010568707725169098;267,0.00000077874688501246;268,0.0000008899964400142398;269,0.00000066749733001068;270,0.00000011124955500177998;271,0.00000016687433250267;272,0.00000027812388750445;273,0.0000005562477750088999;274,0.00000016687433250267;275,0.00000027812388750444997;276,0.00000027812388750444997;277,0.00000038937344250623;278,0.0000004449982200071199;279,0.0000005562477750089;280,0.00000066749733001068;281,0.00000033374866500534;282,0.00000050062299750801;283,0.00000038937344250623;284,0.0000004449982200071199;285,0.00000050062299750801;286,0.00000033374866500534;287,0;288,0;289,0;290,0.00000005562477750088999;291,0.00000022249911000355996;292,0.00000011124955500177998;293,0.00000022249911000355996;294,0.00000027812388750445;295,0.00000027812388750444997;296,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.0000011576906817372729;43,0.000008682680113029546;44,0.000010419216135635456;45,0.0000011576906817372729;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0.00000191163236627501;54,0;55,0.0000017156767310430756;56,0;57,0;58,0;59,0.0000015277084268185304;60,0.0000028634092607730066;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0.000000857838365521538;85,0;86,0;87,0;88,0.00000028594612184051265;89,0;90,0.0000011576906817372729;91,0;92,0;93,0.0000011576906817372729;94,0;95,0.0000005788453408686364;96,0;97,0.000000857838365521538;98,0;99,0;100,0;101,0.00000028594612184051265;102,0.00000028594612184051265;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0.0000018886698153287637;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0.00000044499822000712;18,0.00000133499466002136;19,0.0000016687433250267;20,0.0000013906194375222498;21,0.0000010012459950160196;22,0.00000038937344250622997;23,0.00000038937344250623013;24,0.0000020024919900320397;25,0.00000367123531505874;26,0.00000483935564257743;27,0.0000023362406550373795;28,0.0000016687433250267;29,0.0000017243681025275902;30,0.00000361561053755785;31,0.000006508098967604131;32,0.000006229975080099681;33,0.000006118725525097901;34,0.000006897472410110361;35,0.000009567461730153081;36,0.00001229307582769669;37,0.00000928933784264863;38,0.00000912246351014596;39,0.0000133499466002136;40,0.000013739320042719831;41,0.000011124955500177998;42,0.000007231221075115701;43,0.00000800996796012816;44,0.00001045745817016732;45,0.000012960573157707369;46,0.000013961819152723389;47,0.000017188056247775008;48,0.00001930179779280883;49,0.000017799928800284798;50,0.000019468672125311493;51,0.00001752180491278035;52,0.000020914916340334635;53,0.000024864275542897833;54,0.000030816126735493056;55,0.00003215112139551443;56,0.00003715735137059452;57,0.000038937344250623006;58,0.0000494504271982912;59,0.00005651477394090425;60,0.00005417853328586687;61,0.000053733535065859745;62,0.000054345407618369534;63,0.00005818351726593094;64,0.000057182271270914906;65,0.0008285310608757567;66,0.0015635012459950162;67,0.0023178844784620864;68,0.003020926041295835;69,0.0037218538625845496;70,0.004382843093627626;71,0.004975525097899609;72,0.005501346119615521;73,0.005367123531505874;74,0.005094673371306514;75,0.004986427554289783;76,0.004888583570665718;77,0.0047781683873264515;78,0.00464244393022428;79,0.004585039159843361;80,0.004508110092559629;81,0.004382231221075116;82,0.004207235671057316;83,0.004130139729441082;84,0.003965379138483447;85,0.003827763438946244;86,0.0037700805446778214;87,0.003766075560697757;88,0.0036374154503381988;89,0.0034741011035955855;90,0.0032645069419722323;91,0.0031692216981132077;92,0.003098800729797081;93,0.003019312922748309;94,0.002821455589177644;95,0.0025654147383410465;96,0.002398985404058384;97,0.0023400231399074403;98,0.0023117101281594876;99,0.0022030749377002492;100,0.0020704654681381277;101,0.0019261747953008188;102,0.001827107066571734;103,0.0016947200961196156;104,0.001572679334282663;105,0.001432171146315415;106,0.001306181025275899;107,0.001202607689569242;108,0.0010934162513349947;109,0.0010049728551085797;110,0.0009038470096119616;111,0.00074687388750445;112,0.0006118725525097899;113,0.0004937811498754006;114,0.0004061721253114988;115,0.0003145024919900321;116,0.00022895158419366325;117,0.00014762815948736205;118,0.00008404903880384479;119,0.000029870505517977932;120,0.000006730598077607689;0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0.00000011124955500177998;15,0.00000022249911000355996;16,0.00000038937344250622997;17,0.0000003337486650053399;18,0;19,0;20,0.00000005562477750088999;21,0.00000016687433250266996;22,0.00000011124955500177998;23,0;24,0;25,0;26,0.00000011124955500178;27,0.00000022249911000356;28,0.00000022249911000356;29,0;30,0.00000033374866500533997;31,0.0000006118725525097899;32,0.00000038937344250622987;33,0.0000012793698825204698;34,0.0000015018689925240298;35,0.00000139061943752225;36,0.0000007787468850124598;37,0.00000116812032751869;38,0.00000177999288002848;39,0.0000011124955500177999;40,0.0000012793698825204702;41,0.0000018356176575293698;42,0.00000228061587753649;43,0.00000216936632253471;44,0.0000011681203275186898;45,0.00000127936988252047;46,0.00000211374154503382;47,0.00000172436810252759;48,0.0000011124955500177999;49,0.0000008343716625133501;50,0.0000007231221075115702;51,0.00000255873976504094;52,0.00000406060875756497;53,0.00000383810964756141;54,0.0000033374866500534002;55,0.0000027812388750444995;56,0.00000294811320754717;57,0.00000294811320754717;58,0.00000361561053755785;59,0.00000372686009255963;60,0.000003726860092559629;61,0.00000367123531505874;62,0.0000025587397650409404;63,0.00000233624065503738;64,0.00000250311498754005;65,0.000037491100035599864;66,0.00006958659665361339;67,0.00010880206479174084;68,0.00014011881452474193;69,0.00017532929868280527;70,0.00020453230687077253;71,0.00023390218939124246;72,0.0002666095585617658;73,0.00027573202207191173;74,0.00027378515485938055;75,0.00027245016019935924;76,0.000270503292986828;77,0.00027812388750444994;78,0.00028268511925952296;79,0.00027790138839444643;80,0.00026777767888928444;81,0.00027161578853684585;82,0.00027384077963688144;83,0.00026744393022427914;84,0.0002703920434318263;85,0.0002752870238519046;86,0.0002878582235671057;87,0.0002764551441794233;88,0.00026516331434674266;89,0.00026360582057671767;90,0.000261436454254183;91,0.0002621039515841937;92,0.0002699470452118192;93,0.0002797370060519758;94,0.00027723389106443577;95,0.00027723389106443577;96,0.0002663870594517622;97,0.00025670834816660733;98,0.00024308027767888928;99,0.00024341402634389463;100,0.0002574870950516198;101,0.00026037958348166607;102,0.00024908775364898545;103,0.00024758588465646135;104,0.0002475858846564614;105,0.00024925462798148807;106,0.00024513839444642224;107,0.00024613964044143825;108,0.00024346965112139553;109,0.00023451406194375225;110,0.0002236116055535778;111,0.0002001379494482022;112,0.00018790049839800642;113,0.00018055802776788894;114,0.00017321555713777147;115,0.00016487184051263795;116,0.0001580856176575294;117,0.00015191126735493058;118,0.00014979752580989678;119,0.00015141064435742258;120,0.00015697312210751158;121,0.00015775186899252402;122,0.00012126201495194019;123,0.0000717559629761481;124,0.00002419677821288715;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forbidden_arcanus:xpetrified_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.000304434407262371;57,0.0006092025631897473;58,0.0006104819330722676;59,0.0006069219473122107;60,0.0006097588109647562;61,0.0006046413314346744;62,0.0005826695443218227;63,0.0005920701317194731;64,0.0005880651477394091;65,0.0005778858134567462;66,0.0005735470808116768;67,0.0005632564969740121;68,0.0005692083481666074;69,0.0005683183517265931;70,0.0005716002135991457;71,0.000570376468494126;72,0.000560308383766465;73,0.0005540227839088644;74,0.0005474590601637593;75,0.0005664827340690637;76,0.0005516309184763261;77,0.0005525209149163403;78,0.0005561921502313991;79,0.0005474590601637593;80,0.0005558027767888929;81,0.0005575271448914205;82,0.0005486828052687791;83,0.0005461796902812388;84,0.0005388372196511214;85,0.0005443440726237096;86,0.000552242791028836;87,0.0005503515485938057;88,0.0005477928088287647;89,0.0005356109825560699;90,0.000538559095763617;91,0.0005411178355286579;92,0.0005447890708437166;93,0.0005421747063011749;94,0.0005381697223211107;95,0.0005219272872908508;96,0.0005327184941260235;97,0.0005210372908508366;98,0.0002599902100391599;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00000016687433250267004;66,0.00000016687433250267004;67,0;68,0;69,0;70,0;71,0;72,0;73,0.00000016687433250267004;74,0.0000006674973300106801;75,0;76,0.00000033374866500534;77,0.000000453689591491634;78,0.0000004797637059451762;79,0.00000035982277945888224;80,0;81,0;82,0;83,0.00000011994092648629405;84,0.0000019968754209669716;85,0.000003843857506225942;86,0;87,0.0000033984575400444636;88,0;89,0;90,0;91,0;92,0;93,0.00000011994092648629408;94,0.0000004797637059451763;95,0.00000023988185297258816;96,0;97,0.0000009608639400128955;98,0.0000009052391625120055;99,0.0000006674973300106799;100,0.0000008448013082947669;101,0.0000004137092826628694;102,0.00000011820265218939126;103,0.00000016687433250267;104,0.0000007405048504805982;105,0.0000006188256496974012;106,0.0000008030861194855734;107,0.0000007022696045816843;108,0.0000014023957943756315;109,0.0000042797626085741875;110,0.0000014910376005682532;111,0.000004135499419197151;112,0.0000026600927100351275;113,0.0000003441783107867569;114,0.0000007578875934496262;115,0.0000005927515352438591;116,0.00000011994092648629408;117,0.0000004137092826628694;118,0.00000100124599501602;119,0.0000041745381574447845;120,0.000005549543675143174;121,0.000003991138883385389;122,0.000003919939829115306;123,0.0000044844772294343605;124,0.0000036939641705179415;125,0.0000005805836151655394;126,0.000002545768352613901;127,0.000002455790018298736;128,0.0000024818743157017;129,0.00000036156444807225896;130,0.0000022311407048744916;131,0.0000011937926957978724;132,0.000005382763294758754;133,0.000003758280319503344;134,0.0000027713422650369064;135,0.000007547849576350939;136,0.0000073400907019195875;137,0.0000010164887175137854;138,0.00000469174719420605;139,0.0000025005732208944275;140,0.000005907722132423403;141,0.000008707238889330446;142,0.000008712855458395516;143,0.000009226219054810337;144,0.0000026670458072227378;145,0.000004366274577244969;146,0.000003685272799033426;147,0.0000030133641384807572;148,0.000004184157522244533;149,0.0000022193745309705316;150,0.000008430892919177568;151,0.00000765991280665086;152,0.000000775280519368076;153,0.00000005910132609469563;154,0.0000005962280838376648;155,0.0000017330594740121036;156,0.000003605713927550256;157,0.000005773875011561887;158,0.000002511404612850204;159,0.0000030164389409002027;160,0.0000042084933624011725;161,0.0000009282384745461019;162,0.000004443592687505678;163,0.000011347306348999728;164,0.000006402226073940787;165,0.0000042084933624011725;166,0.0000005892749866500534;167,0.000001936437566749733;168,0.00000251447941526965;169,0.0000031559026308267877;170,0.0000014844862495550017;171,0.000004552671673187929;172,0.00000022249911000355994;173,0.0000004797637059451762;174,0.000007641576004577826;175,0.000009515466245487322;176,0.000006334373367408066;177,0.000003483562788689768;178,0.0000005006229975080098;179,0.000002151180087216962;180,0.000010119551659612518;181,0.0000008343716625133501;182,0.0000003893734425062299;183,0.00000016687433250267;184,0.0000042849876144143175;185,0.0000018730561997125122;186,0.000002394538488783356;187,0.0000018730561997125122;188,0.0000025488431550333464;189,0.000004248071925055578;190,0.0000032441528737944714;191,0.00000295907588910241;192,0.0000019356340744010137;193,0.0000033166884561870977;194,0.0000033166884561870977;195,0.00000034765485938056244;196,0.00000034765485938056244;197,0.0000005266971119615521;198,0.000000860445776966892;199,0.00000033374866500534;200,0;201,0;202,0;203,0;204,0.0000008496143850111155;205,0.0000025488431550333464;206,0.00000066749733001068;207,0.0000006674973300106799;208,0.000003601765440879159;209,0.0000020129521846617227;210,0;211,0;212,0;213,0.00000011994092648629408;214,0.0000004797637059451763;215,0.0000004884618660626383;216,0.0000003685209395763442;217,0;218,0;219,0;220,0;221,0;222,0.00000023988185297258816;223,0.0000003546079565681738;224,0.0000003546079565681738;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forbidden_arcanus:stella_arcanum", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0.000017410555357778568;19,0.000036879227483090074;20,0.00003710172659309363;21,0.00003487673549305803;22,0.00003432048771804913;23,0.00003476548593805624;24,0.00003521048415806337;25,0.00003843672125311499;26,0.000038547970808116766;27,0.00003420923816304736;28,0.00003365299038803845;29,0.000035043609825560705;30,0.000033263616945532215;31,0.00003354174083303667;32,0.000033374866500534;33,0.00003215112139551442;34,0.000034097988608045574;35,0.00003287424350302599;36,0.000033152367390530443;37,0.000031427999288002846;38,0.00003198424706301175;39,0.00003498798504805981;40,0.00003076050195799217;41,0.000033764239943040226;42,0.00003365299038803845;43,0.000031928622285510864;44,0.00003092737629049484;45,0.00003120550017799929;46,0.00003231799572801709;47,0.00003354174083303667;48,0.00003343049127803489;49,0.000033597365610537556;50,0.0000317061231755073;51,0.00003320799216803132;52,0.00003309674261302955;53,0.000033263616945532215;54,0.00003426486294054824;55,0.00002959238163047348;56,0.00003215112139551442;57,0.000034097988608045574;58,0.00002981488074047704;59,0.00003070487718049128;60,0.00003148362406550374;61,0.00003370861516553934;62,0.00003254049483802065;63,0.00003398673905304379;64,0.00003064925240299039;65,0.00003064925240299039;66,0.000031928622285510864;67,0.00003087175151299395;68,0.000031928622285510864;69,0.00003109425062299751;70,0.0000305936276254895;71,0.00002953675685297259;72,0.000034487362050551794;73,0.00003137237451050195;74,0.00003242924528301887;75,0.00002953675685297259;76,0.00003031550373798505;77,0.000028424261302954793;78,0.00002981488074047704;79,0.000029091758632965468;80,0.00003092737629049484;81,0.000032929868280526874;82,0.00002881363474546102;83,0.000027812388750445;84,0.000029258632965468135;85,0.00002998175507297971;86,0.000030816126735493056;87,0.00003014862940548238;88,0.000029147383410466357;89,0.000028646760412958346;90,0.000029759255962976147;91,0.00002742301530793877;92,0.000026533018867924528;93,0.00002797926308294767;94,0.000029759255962976147;95,0.000028591135635457457;96,0.00002825738697045212;97,0.000027589889640441444;98,0.0000305936276254895;99,0.00002597677109291563;100,0.000028813634745461016;101,0.00002625489498042008;102,0.000025587397650409404;103,0.0000250311498754005;104,0.00002475302598789605;105,0.000012682449270202919;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0.00000038937344250623;49,0.00000066749733001068;50,0.0000008343716625133501;51,0.0000012237451050195799;52,0.0000017799928800284797;53,0.00000139061943752225;54,0.0000015018689925240298;55,0.00000155749377002492;56,0.00000216936632253471;57,0.00000233624065503738;58,0.0000017799928800284801;59,0.0000023362406550373795;60,0.00000172436810252759;61,0.00000127936988252047;62,0.00000216936632253471;63,0.0000017243681025275898;64,0.00000200249199003204;65,0.00004049483802064792;66,0.00008204654681381274;67,0.00011558828764684943;68,0.00015313501245995016;69,0.0001962442150231399;70,0.00022822846208615167;71,0.00027645514417942333;72,0.00031478061587753654;73,0.0003173949804200783;74,0.0003020425418298327;75,0.0003096631363474546;76,0.00031183250266998935;77,0.0003113318796724813;78,0.00031683873264506945;79,0.0003087175151299395;80,0.00030532440370238515;81,0.00030910688857244573;82,0.0003132231221075116;83,0.00032017621929512284;84,0.00031856310074759707;85,0.0003121106265574938;86,0.00030838376646493413;87,0.00030410065859736563;88,0.0002943663225347099;89,0.00029948380206479177;90,0.00029025008899964395;91,0.00029058383766464936;92,0.000296313189747241;93,0.0003042119081523674;94,0.0002970919366322535;95,0.0002973144357422571;96,0.0002869126023495907;97,0.0002879138483446066;98,0.00029381007475970096;99,0.0002842426130295479;100,0.00027728951584193666;101,0.0002719495372018512;102,0.00024591714133143474;103,0.00013394446422214314;104,0.00002046991812032752;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0.00000005562477750088999;14,0.00000016687433250266996;15,0;16,0;17,0;18,0.00000011124955500177998;19,0.0000005006229975080098;20,0.0000010012459950160196;21,0.0000007787468850124598;22,0.00000066749733001068;23,0.0000007787468850124598;24,0.0000006674973300106798;25,0.0000010012459950160199;26,0.00000161311854752581;27,0.0000021137415450338204;28,0.00000283686365254539;29,0.00000422748309006764;30,0.000005506852972588111;31,0.000008899964400142399;32,0.00000800996796012816;33,0.000005840601637593449;34,0.00000561810252758989;35,0.0000066749733001068;36,0.000009623086507653972;37,0.000007509344962620149;38,0.00000522872908508366;39,0.000005562477750089;40,0.000007620594517621929;41,0.00000589622641509434;42,0.0000061743503025987905;43,0.00000550685297258811;44,0.00000450560697757209;45,0.0000067305980776076895;46,0.00000928933784264863;47,0.000007509344962620149;48,0.000008065592737629051;49,0.000007954343182627271;50,0.0000088999644001424;51,0.00001034620861516554;52,0.000008733090067639732;53,0.00000762059451762193;54,0.0000050062299750801;55,0.00000550685297258811;56,0.00000684184763260947;57,0.00000650809896760413;58,0.00000884433962264151;59,0.00000873309006763973;60,0.00000839934140263439;61,0.000006452474190103238;62,0.00000767621929512282;63,0.00000628559985760057;64,0.000006063100747597009;65,0.000100124599501602;66,0.00016898807404770383;67,0.0002137660199359203;68,0.0002611027055891777;69,0.00031483624065503743;70,0.00038064035243859026;71,0.0004378782484870061;72,0.000491055535777857;73,0.000490999911000356;74,0.0004935586507653969;75,0.0004952273940904237;76,0.0004981755072979708;77,0.00047848433606265583;78,0.00048488118547525814;79,0.0004841580633677465;80,0.0004933361516553934;81,0.0004910555357778569;82,0.00048710617657529373;83,0.0004901099145603419;84,0.00047336685653257395;85,0.0004434963510145959;86,0.0002369615521537914;87,0.00003793609825560698;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "create_new_age:thorium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0.00013800507297970807;82,0.0005053511035955857;83,0.0008619059273762905;84,0.0010181003025987896;85,0.0010343427376290496;86,0.0010270558917764329;87,0.001030560252758989;88,0.0010262771448914204;89,0.001004249733001068;90,0.000984002313990744;91,0.0009858379316482735;92,0.001002191616233535;93,0.001028557760768957;94,0.0010343983624065503;95,0.000999187878248487;96,0.0010000222499110005;97,0.0009811654503381986;98,0.0009492924528301887;99,0.0009599167853328586;100,0.0009709861160555359;101,0.0009876179245283019;102,0.0009737673549305803;103,0.000921925062299751;104,0.000922815058739765;105,0.0009204231933072269;106,0.000915305713777145;107,0.0009059051263794946;108,0.0008857133321466715;109,0.0008680246529013885;110,0.0008163492346030617;111,0.0007432582769668922;112,0.000705878426486294;113,0.0007022071911712354;114,0.0006879116233535067;115,0.0006473055357778569;116,0.0005847832858668566;117,0.0005457346920612316;118,0.0005454009433962264;119,0.0005417853328586685;120,0.0005595296368814525;121,0.0005603640085439659;122,0.0005120817016731933;123,0.0004953386436454255;124,0.0005098567105731577;125,0.0005115810786756853;126,0.000494559896760413;127,0.00048387993948024213;128,0.0004486694553221788;129,0.00042742079031683874;130,0.0004201339444642221;131,0.00040817461730153083;132,0.00040339088643645424;133,0.0003759122463510146;134,0.00036250667497330014;135,0.00036000355998576004;136,0.00033747552509789963;137,0.0003158931114275543;138,0.00030048504805980773;139,0.0002983713065147739;140,0.00027845763616945535;141,0.0002712264150943396;142,0.00026232645069419725;143,0.0002475302598789605;144,0.00023373531505873978;145,0.00024046591313634744;146,0.00024091091135635458;147,0.00023501468494126025;148,0.00022444597721609112;149,0.00020341981132075473;150,0.00020542230331078678;151,0.00019546546813812744;152,0.00017132431470274118;153,0.00016398184407262373;154,0.00015441438234247063;155,0.00014718316126735494;156,0.00014273317906728374;157,0.00013077385190459238;158,0.00013044010323958705;159,0.0001351125845496618;160,0.0001252113741545034;161,0.00012048326806692774;162,0.0001146982912068352;163,0.00010134834460662158;164,0.00009739898540405839;165,0.00009205900676397295;166,0.00008905526877892489;167,0.0000794878070487718;168,0.00007309095763616945;169,0.00006686098255606978;170,0.00006652723389106444;171,0.00006641598433606266;172,0.00006864097543609826;173,0.00006958659665361339;174,0.00006085350658597366;175,0.000045946066215735135;176,0.000045834816660733364;177,0.00004711418654325383;178,0.00003737985048059808;179,0.00003493236027055892;180,0.00003343049127803489;181,0.00003693485226059097;182,0.000029425507297970806;183,0.000012960573157707369;184,0.0000028368636525453903;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0.0000012160966981132076;56,0.0000012160966981132076;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0.0000011207099559940174;85,0;86,0;87,0;88,0.0000005603549779970087;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0.0000015876724376581915;98,0;99,0;100,0;101,0;102,0.0000005603549779970087;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0.0000006840543926886792;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0.0000007938362188290958;202,0;203,0.000005556853531803671;204,0.000007144525969461862;205,0.0000023815086564872875;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0.000008732198407120054;215,0.00001508288815775282;216,0.000012701379501265532;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0.00000011124955500177998;14,0.00000016687433250266996;15,0.00000016687433250266996;16,0.0000004449982200071199;17,0.0000004449982200071199;18,0.00000016687433250266996;19,0.00000038937344250622997;20,0.00000016687433250266996;21,0.0000004449982200071199;22,0.0000005006229975080099;23,0.0000008343716625133501;24,0.0000010568707725169102;25,0.0000010012459950160199;26,0.00000189124243503026;27,0.0000012237451050195803;28,0.00000122374510501958;29,0.0000018912424350302603;30,0.0000027256140975436092;31,0.00000150186899252403;32,0.0000027256140975436105;33,0.0000035599857600569602;34,0.00000406060875756497;35,0.00000411623353506586;36,0.0000031149875400498394;37,0.0000022806158775364896;38,0.00000328186187255251;39,0.0000036156105375578497;40,0.0000033931114275542893;41,0.000004616856532573869;42,0.00000506185475258099;43,0.00000606310074759701;44,0.00000344873620505518;45,0.00000317061231755073;46,0.0000033931114275542897;47,0.0000044499822000711994;48,0.000004561231755072979;49,0.000005951851192595229;50,0.000004505606977572089;51,0.000006841847632609469;52,0.00000767621929512282;53,0.0000061743503025987905;54,0.0000061187255250979;55,0.00000762059451762193;56,0.000007286845852616589;57,0.000005506852972588109;58,0.000006063100747597009;59,0.00000856621573513706;60,0.00000728684585261659;61,0.0000088999644001424;62,0.00000934496262014952;63,0.000010012459950160202;64,0.00001329432182271271;65,0.00019807983268066927;66,0.0003934896760412959;67,0.0005906795122819508;68,0.0007667319330722677;69,0.0009708192417230332;70,0.0011647272160911358;71,0.001316304734781061;72,0.0015092670879316484;73,0.0015287913848344608;74,0.0014702184941260234;75,0.001474112228551086;76,0.0014652678889284444;77,0.0014675485048059808;78,0.0014541429334282664;79,0.0014750022249911;80,0.0014549216803132789;81,0.0014685497508009969;82,0.0014846809362762548;83,0.0014742791028835886;84,0.0014660466358134567;85,0.001427109291562834;86,0.001443296101815593;87,0.001464433517265931;88,0.0014357311320754719;89,0.00145436543253827;90,0.001446800462798149;91,0.001437066126735493;92,0.0014283330366678536;93,0.001418932449270203;94,0.0014096431114275544;95,0.0014131474724101104;96,0.0013867813278746885;97,0.001381941972232111;98,0.001380551352794589;99,0.001376935742257031;100,0.0013747107511569952;101,0.0013595251868992527;102,0.001333492791028836;103,0.0012848211107155572;104,0.0012634611961552156;105,0.001266798682805269;106,0.0013185853506585974;107,0.001302676664293343;108,0.0012600680847276611;109,0.0012226882342470631;110,0.0011637815948736204;111,0.001062377625489498;112,0.0009998553755784978;113,0.000951628693485226;114,0.0009378893734425062;115,0.0009059051263794945;116,0.0008543965824136705;117,0.0008289760590957636;118,0.0008210773406906373;119,0.0008177954788180849;120,0.0007905393378426486;121,0.0007773006407974369;122,0.000745872641509434;123,0.0007415339088643646;124,0.0007236227305090779;125,0.0007090490388038448;126,0.0006824603951584194;127,0.0006443017977928089;128,0.0006243881274474902;129,0.0006132075471698114;130,0.0005931270024919902;131,0.0005722677109291563;132,0.0005368903524385903;133,0.0005125266998932004;134,0.00048260056959772166;135,0.00046569063723745106;136,0.000459627536489854;137,0.0004369326272694909;138,0.0004281439124243503;139,0.00041523896404414395;140,0.0003903190637237451;141,0.0003864253292986828;142,0.0003292986828052688;143,0.00016932182271270916;144,0.000029592381630473476;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000022249911000356;50,0.00000033374866500534;51,0.00000066749733001068;52,0.0000005562477750088999;53,0.0000005562477750089;54,0.00000100124599501602;55,0.0000020581167675329296;56,0.0000008343716625133497;57,0.0000005006229975080098;58,0.00000094562121751513;59,0.0000014462442150231395;60,0.0000014462442150231397;61,0.0000022249911000355997;62,0.0000027812388750445;63,0.0000028924884300462798;64,0.00000244749021003916;65,0.000042274830900676404;66,0.00009812210751156997;67,0.0001425106799572802;68,0.00019390797436810259;69,0.00024708526165895337;70,0.0003188412246351015;71,0.00038648095407618375;72,0.00045662379850480603;73,0.00046608001067995725;74,0.00046240877536489857;75,0.0004891086685653257;76,0.0005365566037735849;77,0.0005561921502313991;78,0.0005738252046991811;79,0.000574492702029192;80,0.0005893445176219296;81,0.0005924595051619793;82,0.0006172125311498754;83,0.0006252781238875046;84,0.0006409643111427554;85,0.0006629917230331079;86,0.0006805691527233891;87,0.0006911934852260591;88,0.0006955322178711286;89,0.0007240121039515842;90,0.0007299639551441794;91,0.0007404214133143467;92,0.0007702919188323247;93,0.000778301886792453;94,0.0007822512459950161;95,0.000804056158775365;96,0.0008146248665005342;97,0.0008426597543609826;98,0.0008396003915984337;99,0.0008527278390886438;100,0.0008624621751512995;101,0.0008517265930936276;102,0.0008504472232111072;103,0.0008532284620861516;104,0.0008613496796012817;105,0.0008262504449982201;106,0.0008129561231755073;107,0.0007928199537201852;108,0.0007621150765396939;109,0.0007232889818440726;110,0.000689691616233535;111,0.0006161556603773585;112,0.0005658152367390531;113,0.0005178666785332858;114,0.00047548059807760775;115,0.0004602394090423639;116,0.00043365076539693837;117,0.0004188545745817017;118,0.0003888171947312211;119,0.00036779102883588465;120,0.000370127269490922;121,0.00036695665717337126;122,0.00034331612673549306;123,0.0003225680847276611;124,0.00029681381274474904;125,0.00027656639373442506;126,0.00025509522961908156;127,0.00024246840512637952;128,0.00023073157707369175;129,0.00021287602349590604;130,0.00020914916340334638;131,0.00019752358490566035;132,0.0001808917764328943;133,0.00015953186187255252;134,0.00014595941616233536;135,0.0001367257030971876;136,0.00012065014239943041;137,0.0001139195443218227;138,0.00010479708081167675;139,0.00010496395514417942;140,0.00009072401210395158;141,0.00008065592737629051;142,0.000072812833748665;143,0.00007297970808116768;144,0.00006663848344606621;145,0.0000545679067283731;146,0.000050562922748309004;147,0.00004744793520825917;148,0.00004422169811320755;149,0.000035933606265574943;150,0.000027923638305446778;151,0.00002319553221787113;152,0.00001907929868280527;153,0.000018578675685297258;154,0.00001568618725525098;155,0.000011291829832680667;156,0.000007286845852616589;157,0.0000067305980776076895;158,0.00000394935920256319;159,0.0000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0.00000011124955500177998;12,0.0000007787468850124599;13,0.0000011124955500177999;14,0.00000027812388750444997;15,0;16,0;17,0;18,0;19,0;20,0.0000006118725525097899;21,0.00000116812032751869;22,0.0000015018689925240298;23,0.0000011124955500177999;24,0.0000012237451050195799;25,0.0000016687433250267;26,0.0000027812388750444995;27,0.0000028368636525453894;28,0.00000317061231755073;29,0.0000050062299750801;30,0.00000584060163759345;31,0.00000467248131007476;32,0.0000030593627625489495;33,0.000005840601637593449;34,0.000007119971520113919;35,0.000009678711285154861;36,0.00000800996796012816;37,0.00001062433250266999;38,0.000009567461730153078;39,0.0000105687077251691;40,0.000013961819152723389;41,0.0000144624421502314;42,0.000015185564257742972;43,0.000013794944820220722;44,0.00001240432538269847;45,0.000014573691705233177;46,0.00001568618725525098;47,0.00001429556781772873;48,0.000014073068707725169;49,0.00001640930936276255;50,0.00001896804912780349;51,0.000022305535777856896;52,0.000022249911000356;53,0.000022138661445354218;54,0.000022861783552865793;55,0.00002820176219295123;56,0.00003977171591313635;57,0.00004516731933072269;58,0.00004789293342826629;59,0.000042997953008187965;60,0.00003788047347810609;61,0.000031872997508009965;62,0.000027478640085439665;63,0.00002825738697045212;64,0.00004366545033819865;65,0.0008481109825560698;66,0.0016022160911356351;67,0.0022936320754716986;68,0.0030009011213955146;69,0.0036759077963688146;70,0.004281772872908507;71,0.004871673638305447;72,0.005400442773228907;73,0.005275676397294411;74,0.005119871395514418;75,0.005021638038447846;76,0.004836630028479887;77,0.004703853684585261;78,0.004635101459594161;79,0.0045502736739053045;80,0.004392243681025276;81,0.004287112851548593;82,0.0041748064257742966;83,0.004024953275186899;84,0.003924939925240299;85,0.0038818863474546104;86,0.003856966447134212;87,0.0037511124955500177;88,0.003522439035243859;89,0.0034161400854396586;90,0.003283474991100036;91,0.0031199937700249203;92,0.0029847699359202566;93,0.002953063812744749;94,0.0028416473834104662;95,0.0026576962442150234;96,0.002485760056959772;97,0.0024062166251334997;98,0.002327618814524742;99,0.002173371306514774;100,0.0020427643289426846;101,0.001923004182983268;102,0.001783552865788537;103,0.0016957213421146316;104,0.0015640018689925242;105,0.0014194330722677108;106,0.0012821511213955143;107,0.0012016064435742256;108,0.0011290717337130653;109,0.00101687655749377;110,0.0008759789960840157;111,0.0007111071555713777;112,0.000590178889284443;113,0.00047459060163759347;114,0.00037785911356354575;115,0.00030243191527233896;116,0.00024035466358134566;117,0.00016737495550017803;118,0.00009650898896404415;119,0.0000422748309006764;120,0.000013071822712709149;121,0.0000008343716625133498;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.00000011820265218939126;53,0.00000011820265218939126;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.000000083437166251335;70,0.0000009212853773584905;71,0.00000031288937344250626;72,0;73,0;74,0.00000020337809273762903;75,0.0000009056409086863652;76,0.0000006535911356354576;77,0.0000010568707725169102;78,0.0000024509667586329655;79,0.0000017261063768244927;80,0.000004489993057748231;81,0.0000023536539468546736;82,0.0000006918331701673194;83,0.0000008100358223567107;84,0.0000005266971119615522;85,0;86,0.000009922724917888139;87,0.000011311606081113486;88,0.000002793410189439293;89,0.0000036630905566139453;90,0.000004547460244613697;91,0.0000013280415628337483;92,0.000001696555713777145;93,0.000004733452200065822;94,0.0000011346913697031767;95,0;96,0;97,0;98,0.0000004797637059451762;99,0.00000041544755695977203;100,0.0000013206867194717776;101,0.0000028617325284758524;102,0.0000015379710065846293;103,0.000004601343353501208;104,0.0000035153236641113098;105,0.000003270628734422373;106,0.0000010790665922022866;107,0.000003627909747235633;108,0.0000011820265218939124;109,0.0000016548371306514772;110,0.000004019021464038766;111,0.00000023988185297258816;112,0.0000007665789649341403;113,0.0000009608639400128955;114,0.000001921727880025791;115,0.0000012563705704863736;116,0.0000005840601637593449;117,0.0000005805836151655393;118,0;119,0.0000015766283645567465;120,0.000004655229856705195;121,0.0000008726136970452118;122,0.0000014810097009611964;123,0.000003602237378956451;124,0.000006816437843529213;125,0.000005633074793512759;126,0.000006441379130205515;127,0.00000531793447589837;128,0.000007916363727294335;129,0.000010609081902796255;130,0.00000550270422124505;131,0.0000070705879939967186;132,0.000002120718402436749;133,0.0000038012380843168308;134,0.0000023445404632969554;135,0.000005944641216098619;136,0.00000296255583201269;137,0.0000027986521668617937;138,0.000004766378670955777;139,0.000005687694597162534;140,0.000000963007354800632;141,0.000003005510202509702;142,0.00000702106190658761;143,0.000008100219056591673;144,0.000010216633657870578;145,0.000008823753093227024;146,0.0000023566982004258543;147,0.000002342390259876272;148,0.000002088602212528461;149,0.0000014601504093983626;150,0.000005293186706617948;151,0.000005628261716796411;152,0.000005032435379133106;153,0.0000009786484291562834;154,0.0000006118725525097898;155,0.000001175073424706301;156,0.00000013906194375222498;157,0.0000024258376090770284;158,0.0000023719511058730414;159,0.0000015692599439288796;160,0.000005687363042891106;161,0.000002375819217691785;162,0.0000007596258677465291;163,0.000001725704630650133;164,0.000004215446459588784;165,0.0000017535204137170516;166,0.000004255440345683445;167,0.0000039946856238821265;168,0.0000009560508632965469;169,0;170,0.0000012168123737308122;171,0.0000016965760796759883;172,0.000002394538488783356;173,0.000006796915080088924;174,0.0000015157887641651482;175,0.00000042413892844428616;176,0.0000007787468850124598;177,0.0000015105603640085438;178,0.0000014983924439302246;179,0.000002152918361513865;180,0.000001699228770022231;181,0.0000006553294099323601;182,0.000000592751535243859;183,0.000002558780496838627;184,0.0000007266088390547974;185,0.0000005527814093645161;186,0.0000005527814093645161;187,0.000004975032684280647;188,0.000004975032684280647;189,0.0000015171117150217955;190,0.000002896498014413909;191,0.0000010846967385332509;192,0.000000083437166251335;193,0.0000005701539693841225;194,0.0000019121017265930937;195,0.0000010164887175137854;196,0;197,0;198,0.00000017382742969028122;199,0.0000019030086089342199;200,0.000004410133180841899;201,0.000004618254158392945;202,0.000003573953052128714;203,0.00000034765485938056244;204,0.00000034765485938056244;205,0;206,0.00000034765485938056244;207,0.00000034765485938056244;208,0.0000009456212175151299;209,0.00000042413892844428616;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.00015096564613741547;2,0.00020581167675329303;3,0.00024708526165895337;4,0.0003074937700249199;5,0.0003805291028835885;6,0.0004169077073691706;7,0.0004386569953720186;8,0.0004714199893200427;9,0.0005221497864008543;10,0.0005461796902812389;11,0.0006301174795300819;12,0.0007311320754716981;13,0.0008267510679957281;14,0.0008782039871840512;15,0.0009495705767176932;16,0.00100124599501602;17,0.001058873264506942;18,0.0011096586863652545;19,0.001143367301530794;20,0.0012098389106443574;21,0.0012904948380206478;22,0.001308684140263439;23,0.0013133009967960128;24,0.0013574670701317197;25,0.0014198224457102173;26,0.0014355642577429692;27,0.0014830121929512283;28,0.0014920234069063726;29,0.001529069508721965;30,0.0015958192417230331;31,0.0016954432182271272;32,0.0017367724279102885;33,0.001751735493058028;34,0.0017775453898184407;35,0.0018645425418298326;36,0.001927120416518334;37,0.00196310964756141;38,0.002008443841224635;39,0.002067684229263083;40,0.0021248108757564972;41,0.0021751512993948025;42,0.0021623576005695977;43,0.0021949537201851194;44,0.002220763616945532;45,0.0022755540227839093;46,0.002322946333214667;47,0.0023864698291206836;48,0.0024645113919544324;49,0.002530482378070488;50,0.002603017087931648;51,0.0025962864898540407;52,0.002626323869704521;53,0.002685508632965468;54,0.002743970274118904;55,0.0027253915984336062;56,0.002739854040583838;57,0.00280999688501246;58,0.002854274207903168;59,0.002979207458170168;60,0.003055246529013884;61,0.003071155215379139;62,0.003034943485226059;63,0.003027601014595941;64,0.0030623665005339983;65,0.0026820042719829123;66,0.0022934652011391953;67,0.0019298460306158777;68,0.0015663381096475614;69,0.0011929289782840872;70,0.0008231910822356711;71,0.0004132920968316127;72,0.00000951183695265219;73,0.000010068084727661091;74,0.00000828809184763261;75,0.00000856621573513706;76,0.00001095808116767533;77,0.00001229307582769669;78,0.000013572445710217157;79,0.000012849323602705591;80,0.000008121217515129939;81,0.000007008721965112138;82,0.00000784309362762549;83,0.000010457458170167321;84,0.00001212620149519402;85,0.000009011213955144179;86,0.00000839934140263439;87,0.000006007475970096119;88,0.00000617435030259879;89,0.000008232467070131718;90,0.0000083437166251335;91,0.000011124955500178;92,0.000011792452830188679;93,0.000011458704165183341;94,0.000012793698825204699;95,0.00001145870416518334;96,0.00000851059095763617;97,0.00001034620861516554;98,0.00001051308294766821;99,0.00000806559273762905;100,0.000006563723745105018;101,0.00000567372730509078;102,0.0000036156105375578493;103,0.0000036712353150587405;104,0.00000578497686009256;105,0.00000517310430758277;106,0.000005117479530081879;107,0.00000422748309006764;108,0.00000394935920256319;109,0.00000522872908508366;110,0.00000417185831256675;111,0.0000031149875400498394;112,0.00000417185831256675;113,0.00000411623353506586;114,0.000005896226415094339;115,0.000005173104307582769;116,0.00000533997864008544;117,0.000004728106087575651;118,0.00000439435742257031;119,0.00000411623353506586;120,0.00000417185831256675;121,0.0000028924884300462798;122,0.000005061854752580991;123,0.00000717559629761481;124,0.00000495060519757921;125,0.0000031706123175507297;126,0.0000018356176575293696;127,0.0000014462442150231399;128,0.0000024474902100391597;129,0.0000027256140975436092;130,0.0000029481132075471697;131,0.0000031149875400498394;132,0.0000028368636525453894;133,0.00000233624065503738;134,0.0000012793698825204698;135,0.0000015018689925240298;136,0.00000050062299750801;137,0.00000033374866500533997;138,0.00000100124599501602;139,0.0000004449982200071199;140,0.0000008899964400142398;141,0.0000009456212175151297;142,0.0000010568707725169095;143,0.0000011681203275186898;144,0.0000021693663225347094;145,0.0000003893734425062299;146,0.0000005562477750089;147,0.0000015018689925240298;148,0.0000016687433250266995;149,0.0000012793698825204698;150,0.0000018912424350302601;151,0.0000020024919900320397;152,0.00000027812388750444997;153,0.00000016687433250266998;154,0.00000027812388750444997;155,0.00000094562121751513;156,0.00000016687433250266998;157,0.00000022249911000355996;158,0.00000022249911000355996;159,0;160,0;161,0.00000011124955500177998;162,0.00000027812388750444997;163,0.0000005006229975080099;164,0.0000007787468850124599;165,0.0000005562477750088999;166,0.00000022249911000355996;167,0.0000010568707725169098;168,0.0000008899964400142398;169,0.0000003893734425062299;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0.00000011124955500177998;179,0.00000016687433250266998;180,0.00000005562477750088999;181,0.00000011124955500178;182,0.00000016687433250266998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0.00000011124955500178;5,0;6,0;7,0;8,0;9,0;10,0;11,0.00000005997046324314704;12,0;13,0;14,0;15,0;16,0;17,0;18,0.000000055624777500890004;19,0;20,0;21,0;22,0;23,0.00000016687433250266998;24,0.0000006674973300106799;25,0.0000010012459950160196;26,0.0000018217114631541471;27,0.0000008343716625133498;28,0;29,0.00000016687433250267;30,0;31,0;32,0;33,0;34,0;35,0.00000016687433250267;36,0;37,0.00000016687433250267;38,0;39,0;40,0.00000005562477750089;41,0;42,0;43,0.00000005562477750088999;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.00000027812388750445;53,0.00000033374866500534;54,0.00000038937344250623;55,0.0000005562477750089;56,0.00000016687433250267;57,0.00000027812388750445;58,0.00000016687433250267;59,0.00000033374866500534;60,0.00000033374866500534;61,0.00000027812388750444997;62,0;63,0.00000005562477750088999;64,0;65,0.00000019468672125311499;66,0.000000668108075033916;67,0.0000007804851593093627;68,0.0000006231713354396582;69,0.0000010325349323602704;70,0.0000014731874666251334;71,0.0000013975725347098611;72,0.0000016916462633980545;73,0.0000012275270261250035;74,0.0000011976709905660378;75,0.0000013361691696814294;76,0.0000013831025756978053;77,0.000002602501994975128;78,0.000001831577344298731;79,0.0000016982939880740477;80,0.0000015601011814702742;81,0.000002185010791206835;82,0.000002723566305406877;83,0.0000011368313901744392;84,0.0000021583729121164594;85,0.0000024860845974690425;86,0.000002304434933442699;87,0.0000017785599782431951;88,0.000002589464937748357;89,0.00000189124243503026;90,0.0000026396165002333235;91,0.000003409930405886484;92,0.000002700409120238519;93,0.000002707103825300915;94,0.0000030970410324439786;95,0.000003626044881377907;96,0.0000023438044972482273;97,0.0000027694233078642015;98,0.0000034099304058864846;99,0.000002996268103610018;100,0.0000054295467467623375;101,0.000004677179348715038;102,0.00000430171210058403;103,0.0000031411086348897853;104,0.000003939328890066197;105,0.000003969396337363975;106,0.000003773229733939172;107,0.0000025309743566768976;108,0.000004510868780849201;109,0.000003434007853917908;110,0.000003250314543083044;111,0.000004516036623353507;112,0.000005342891424042412;113,0.000004248083989505258;114,0.000004717418049669017;115,0.0000057862453305254345;116,0.000004987155938200572;117,0.000004527123994544562;118,0.000004323745901806933;119,0.000004388062050792336;120,0.000005220648458622381;121,0.000005389261065421954;122,0.0000054788291720988525;123,0.0000069132108395552904;124,0.0000046922130723639266;125,0.0000072732450307529845;126,0.000006895217351563028;127,0.00000670626693548969;128,0.000006318979422139744;129,0.000008388394972602542;130,0.000007502438845818941;131,0.0000063193317750377645;132,0.000006476246265623046;133,0.000008644743451009303;134,0.000005644787387066667;135,0.000007879432956508038;136,0.000007513690648362406;137,0.000008608286671160747;138,0.000009476813074588918;139,0.00000867377732980622;140,0.00000848082888285001;141,0.000007780609713709793;142,0.000009241276907358588;143,0.00000804482740683902;144,0.000009499762993346675;145,0.000009319240858593997;146,0.000011482358789737137;147,0.00000962496572311008;148,0.000007681786470911548;149,0.000008559920363359088;150,0.000008923783456048608;151,0.000008103364968296884;152,0.000006679154554496647;153,0.000008961414745557235;154,0.000007536335194608547;155,0.00000876574143618966;156,0.000009335237680164143;157,0.000009878190005821057;158,0.00000867934450559495;159,0.000008337468233741929;160,0.00000884452754418712;161,0.000009413507003911174;162,0.00000915563166294632;163,0.000008904239615305053;164,0.000009028690658886013;165,0.000006738208900204939;166,0.000008235567775634303;167,0.000007413270072426467;168,0.000007784133242690002;169,0.000008567484205569934;170,0.000009860196517828796;171,0.000008789419550936663;172,0.000007714602270813888;173,0.000010692876886431645;174,0.000007603305735425707;175,0.000007809596612120309;176,0.000007026715453104403;177,0.000007133924694875546;178,0.000009923901921790962;179,0.000005343502169065648;180,0.000007921409931758922;181,0.0000061558400303560945;182,0.000006575938645569742;183,0.000006742812978072412;184,0.000005929864371758729;185,0.000011341521263734103;186,0.0000051407818017376585;187,0.000005388133536148288;188,0.000004714810638223663;189,0.000007106676070761933;190,0.000005982576365302647;191,0.000005007404484740169;192,0.000005282709549060453;193,0.000005669123227223307;194,0.000005551531320057152;195,0.000004425693340300963;196,0.0000035148376087238886;197,0.000003971393003786093;198,0.000009704630640688488;199,0.0000032505729352082587;200,0.000010282348452283457;201,0.000004619769316530842;202,0.000010127031294835872;203,0.000004345121977620197;204,0.0000035976640299519885;205,0.0000033004191251816073;206,0.000002336851400060616;207,0.000009540058347119554;208,0.0000027395202919188323;209,0.0000024660474626682575;210,0.000002360576495194019;211,0.000002122432916518334;212,0.000001361068774474902;213,0.0000008986878114987542;214,0.0000009630039604841582;215,0.0000010099373665005339;216,0.0000005562477750089;217,0.00000116812032751869;218,0.000000806559273762905;219,0.0000012515574937700252;220,0.0000003424400364898541;221,0.000000250311498754005;222,0.0000006674973300106799;223,0.000000472810608757565;224,0.000000139061943752225;225,0.00000019468672125311499;226,0.00000016687433250267;227,0.00000036156105375578497;228,0.00000016687433250267;229,0.00000013906194375222498;230,0.00000030593627625489497;231,0.00000036156105375578487;232,0.000000083437166251335;233,0;234,0.000000083437166251335;235,0.00000005562477750088999;236,0.00000013906194375222498;237,0;238,0.00000016687433250267;239,0.00000033374866500534;240,0.00000030593627625489507;241,0.00000005562477750088999;242,0.000000083437166251335;243,0.00000019468672125311499;244,0.00000016687433250267;245,0.000000083437166251335;246,0;247,0;248,0.00000005562477750088999;249,0.00000005562477750088999;250,0.000000083437166251335;251,0.00000005562477750088999;252,0;253,0.000000083437166251335;254,0;255,0;256,0;257,0;258,0.000000083437166251335;259,0;260,0;261,0.00000005562477750088999;262,0;263,0.00000005562477750088999;264,0.00000005562477750088999;265,0;266,0;267,0.00000005562477750088999;268,0.000000083437166251335;269,0.00000005562477750088999;270,0.00000013906194375222498;271,0.00000005562477750088999;272,0.00000011124955500177998;273,0.00000011124955500177998;274,0.00000022249911000355996;275,0.00000033374866500534;276,0.00000016687433250267;277,0.00000027812388750445;278,0.00000038937344250623;279,0.00000005562477750088999;280,0.00000016687433250267;281,0.00000038937344250623;282,0.00000038937344250623;283,0.0000005562477750089;284,0.00000077874688501246;285,0.0000011124955500178;286,0.0000013071822712709151;287,0.00000200249199003204;288,0.00000066749733001068;289,0.0000009456212175151301;290,0.0000004449982200071199;291,0.0000006118725525097901;292,0.0000008899964400142398;293,0.00000077874688501246;294,0.0000010568707725169098;295,0.00000155749377002492;296,0.00000127936988252047;297,0.00000200249199003204;298,0.00000228061587753649;299,0.00000038937344250623;300,0.00000033374866500534;301,0.00000005562477750088999;302,0.00000011124955500177998;303,0.00000011124955500177998;304,0;305,0.00000016687433250267;306,0.00000022249911000355996;307,0.00000027812388750445;308,0.00000050062299750801;309,0.00000038937344250623;310,0.00000005562477750088999;311,0;312,0;313,0;314,0;315,0;316,0;317,0;318,0;319,0;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:iridium_ore", + "distrib": "0,0;1,0.0000014253849234603063;2,0.0000005701539693841225;3,0.00000028507698469206126;4,0;5,0;6,0;7,0;8,0.00000028507698469206126;9,0.0000017104619081523675;10,0.0000005701539693841225;11,0.0000005701539693841225;12,0.00000028507698469206126;13,0.0000004797637059451762;14,0.00000017382742969028122;15,0.0000008691371484514061;16,0.00000017382742969028122;17,0;18,0.00000011994092648629405;19,0.0000005997046324314703;20,0.00000011994092648629405;21,0;22,0;23,0.0000008552309540761838;24,0.0000005701539693841225;25,0.0000008552309540761838;26,0.000003420923816304735;27,0.0000022858307004271987;28,0.000004404787068351727;29,0.000003831156550373799;30,0.0000014253849234603063;31,0.00000028507698469206126;32,0.0000002398818529725881;33,0.0000006900948958704164;34,0.0000008410180054132724;35,0.0000016313193019286744;36,0.0000027374752633342403;37,0.0000009751718805624776;38,0.0000003824203453186187;39,0;40,0;41,0.0000002868152589889641;42,0.000002539618747775009;43,0.000003911117168031328;44,0.00000028507698469206126;45,0.000004669004761480954;46,0.000004856738385546458;47,0.000001140307938768245;48,0.0000017278446511213954;49,0.000002325811009255963;50,0.0000016391926619793523;51,0.000005050913849653424;52,0.0000049518322147299645;53,0.0000005875367123531507;54,0.0000012328454822210124;55,0.000002913143218750655;56,0.0000020807143333926667;57,0.000002068546413314347;58,0.0000005997046324314701;59,0.0000018530004004983978;60,0.000011070417144112673;61,0.000004982328703497686;62,0.000001194194441972232;63,0.0000024474902100391597;64,0.000003043718293876825;65,0.000003933714733891065;66,0.0000024040333526165896;67,0.0000006565564270831151;68,0.0000011496128188281364;69,0.0000007074776388394447;70,0.0000004137092826628694;71,0.00000043630684852260596;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0.00000011124955500178002;11,0;12,0;13,0;14,0.00000005562477750088999;15,0.00000016687433250266996;16,0.00000022249911000355996;17,0.00000016687433250266996;18,0.00000038937344250622987;19,0.00000127936988252047;20,0.0000015018689925240298;21,0.00000105687077251691;22,0.0000008343716625133501;23,0.00000139061943752225;24,0.00000294811320754717;25,0.0000029481132075471697;26,0.00000250311498754005;27,0.0000027812388750445;28,0.0000035599857600569607;29,0.0000036712353150587405;30,0.0000052287290850836606;31,0.00000539560341758633;32,0.000006452474190103239;33,0.000006786222855108581;34,0.000008288091847632611;35,0.000009845585617657528;36,0.000008566215735137061;37,0.000010290583837664649;38,0.000015185564257742972;39,0.00001240432538269847;40,0.000014629316482734068;41,0.00001195932716269135;42,0.00000995683517265931;43,0.00001173682805268779;44,0.00001190370238519046;45,0.000013238697045211818;46,0.000013183072267710929;47,0.000013461196155215382;48,0.000013405571377714488;49,0.000012515574937700248;50,0.000013850569597721613;51,0.00001507431470274119;52,0.00001713243147027412;53,0.000016186810252758988;54,0.00001579743681025276;55,0.000018189302242791028;56,0.00001702118191527234;57,0.000016186810252758988;58,0.000018244927020291924;59,0.00001846742613029548;60,0.00001746618013527946;61,0.000015352438590245642;62,0.000015797436810252758;63,0.00001679868280526878;64,0.00001885679957280171;65,0.0002993725525097899;66,0.0005628671235315059;67,0.0007954899430402279;68,0.0009613630295478818;69,0.0011040962086151657;70,0.001256118725525098;71,0.0013567439480242078;72,0.0014096987362050553;73,0.0012736961552153791;74,0.0011444241723033107;75,0.0010292808828764686;76,0.000905182004271983;77,0.0007971030615877537;78,0.0006824603951584194;79,0.0005595852616589534;80,0.0004355420078319687;81,0.00030093004627981487;82,0.0001801130295478818;83,0.00006903034887860448;84,0.000011959327162691351;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00000011994092648629405;70,0;71,0;72,0.0000006796652500889997;73,0.000001371498420256319;74,0.0000003459165850836597;75,0.00000017382742969028122;76,0.0000005875367123531506;77,0.00000041370928266286936;78,0.00000027756012286761667;79,0.0000009317620035263102;80,0.0000019382228214330384;81,0.0000013697601459594162;82,0.000000509314368992524;83,0.00000034244003648985404;84,0.0000027784200518603326;85,0.0000008616202866269615;86,0.000001008971855689341;87,0.00000556528209593355;88,0.0000024067064088616753;89,0.0000012672019624421504;90,0.0000002868152589889641;91,0.00000011994092648629405;92,0.0000005353884834460662;93,0.00000011994092648629405;94,0.0000006548126256819297;95,0.0000039495374725490565;96,0.0000004797637059451763;97,0.000006993199691833077;98,0.0000033166884561870977;99,0.0000010673004182983269;100,0.0000013610687744749021;101,0.0000012411278479886083;102,0.000004053864659226236;103,0.000005191229085174498;104,0.0000029625524376962157;105,0.000004011164133751237;106,0.000009422101920380129;107,0.000008493431150811401;108,0.0000007787468850124599;109,0.0000004589044143823425;110,0.0000020468836294027934;111,0.000001930419251510305;112,0.0000007747535521682239;113,0.000000886003107170004;114,0.0000005910200495799043;115,0.0000004867235917657354;116,0.00000011820265218939126;117,0.0000040311893841170854;118,0.0000061393279373517345;119,0.000004789076977566712;120,0.000002152192578414558;121,0.00000020746538635467084;122,0.0000005805836151655393;123,0.0000031976212139524562;124,0.000003672794419296056;125,0.0000006142249661464029;126,0.0000009039026343894625;127,0.0000020598550418298325;128,0.000002185010791206835;129,0.000003513987135988767;130,0.000003997230784844223;131,0.000002009458664485547;132,0.0000008274253539586866;133,0.000006620428171419452;134,0.0000038433441162919854;135,0.000004653396910231066;136,0.0000061871825480503955;137,0.000011595119118479247;138,0.00000777895289435371;139,0.000005171500717201805;140,0.000008337026107144815;141,0.000011612879847407322;142,0.000007193151061980988;143,0.000005746474551935224;144,0.00000504420494735354;145,0.0000042315062517011645;146,0.000008474788860255709;147,0.0000016618105937379323;148,0.000005330291028926723;149,0.0000014868352688751404;150,0.0000008673988741545034;151,0.0000016635285021359912;152,0.0000023250075169072434;153,0.0000039720914523388635;154,0.0000009595409891562484;155,0.0000007121388800427414;156,0.000000603791926048512;157,0.0000010951162013652458;158,0.000004227557765030067;159,0.00000307800093872919;160,0.000002809986045743128;161,0.0000031141840477011205;162,0.0000031485477874648168;163,0.000003202481271055207;164,0.00000094392992360463;165,0.0000006327318440726238;166,0.0000017695937830953284;167,0.000002381466335605118;168,0.0000036613387050511465;169,0.0000028825918200386862;170,0.000004813412817723351;171,0.00000386083850302061;172,0.000001701253752417423;173,0.0000007648406906372377;174,0.0000006466380384478463;175,0.0000006953097187611249;176,0.000008863673393102279;177,0.000007782456597479308;178,0.000001394106169065477;179,0.000002010801981241038;180,0.0000017987223340694727;181,0.000002728287153788696;182,0.0000054648639328875465;183,0.00000533061506585167;184,0.0000014603594082472387;185,0.0000002665667124493664;186,0;187,0;188,0;189,0.000004975032684280647;190,0.000008926271633689624;191,0.0000030607400224691803;192,0;193,0.000000815250645247419;194,0.0000008135123709505161;195,0.0000005075760946956213;196,0.0000006953097187611249;197,0.0000010151521893912425;198,0.00000066749733001068;199,0;200,0.0000004797637059451762;201,0.0000004797637059451762;202,0;203,0.0000007370418791526884;204,0.00000016687433250267;205,0.00000066749733001068;206,0.0000004797637059451762;207,0.00000035982277945888203;208,0.0000010164887175137856;209,0;210,0;211,0;212,0;213,0;214,0;215,0.00000005562477750088999;216,0.00000077874688501246;217,0.00000016687433250267004;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.0007581100925596298;2,0.0007593338376646493;3,0.0008110092559629762;4,0.0008632965468138127;5,0.0008835439658241367;6,0.0009275987896048415;7,0.0009656461374154503;8,0.0009816104485582057;9,0.0010006341224635105;10,0.0010567595229619084;11,0.0010761725703097187;12,0.0010905237629049483;13,0.0011275698647205412;14,0.0011101036845852616;15,0.0008986182805268779;16,0.0006880228729085082;17,0.0006654392132431472;18,0.0006906928622285512;19,0.0007106621573513706;20,0.000753437611249555;21,0.0007948780704877181;22,0.0008305891776432895;23,0.0008360404058383767;24,0.0008169611071555715;25,0.0008764239943040229;26,0.0009273206657173373;27,0.0009356643823424707;28,0.0009581924172303311;29,0.0010244971520113918;30,0.0010303933784264864;31,0.001063434496262015;32,0.0010953631185475258;33,0.0011095474368102527;34,0.001151377269490922;35,0.0011564947490210037;36,0.001200048949804201;37,0.0012416562833748666;38,0.0012597899608401569;39,0.0012891598433606268;40,0.0013211440904236384;41,0.0013636414204343185;42,0.00142438367746529;43,0.0014367323780704877;44,0.0014419054823780705;45,0.0014556448024207905;46,0.0014897427910288362;47,0.0015262882698469208;48,0.0015078208437166252;49,0.001466436009255963;50,0.0014435186009255961;51,0.0014084749911000356;52,0.0013559095763616947;53,0.0013347165361338553;54,0.0013027879138483448;55,0.001259623086507654;56,0.0012264150943396227;57,0.0011937077251690997;58,0.0011611116055535778;59,0.0011359135813456744;60,0.0011122174261302955;61,0.001088243147027412;62,0.0010707213421146315;63,0.0010162090601637595;64,0.0010020247419010326;65,0.0008566771982912069;66,0.0007111627803488786;67,0.0005819464222143111;68,0.0004366545033819865;69,0.0003276299394802421;70,0.0002146560163759345;71,0.0000961752402990388;72,0.00000027812388750445;73,0.00000083437166251335;74,0.0000008899964400142401;75,0.00000027812388750445;76,0.00000044499822000712003;77,0.00000011124955500177998;78,0.000000055624777500889984;79,0.00000027812388750445;80,0.0000006118725525097899;81,0.00000022249911000355996;82,0.00000005562477750089001;83,0.00000016687433250266998;84,0.0000005562477750089;85,0.00000050062299750801;86,0.0000005006229975080101;87,0.00000033374866500533997;88,0;89,0.000000055624777500890004;90,0;91,0;92,0.000000055624777500889984;93,0.000000055624777500889984;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0.0008472209861160557;2,0.0009467337130651477;3,0.0010324514951940192;4,0.0011311298504805983;5,0.0012015508187967249;6,0.0013301553043787826;7,0.0013962375400498397;8,0.0014528635635457459;9,0.0015335751156995373;10,0.0015866967782128872;11,0.0017388861694553224;12,0.0019895870416518336;13,0.002259756585973656;14,0.002460117034531862;15,0.0025471698113207547;16,0.0026482956568173724;17,0.002694130473478106;18,0.002788025097899609;19,0.0028582235671057313;20,0.0029494482022071914;21,0.003033052242791029;22,0.003121495639017444;23,0.0032351370594517624;24,0.0032875912246351016;25,0.003330756051975792;26,0.003418643200427198;27,0.003486727928088288;28,0.0035321733713065146;29,0.0036699559451762193;30,0.0037519468672125317;31,0.0038254271982912065;32,0.003888338821644714;33,0.003875378248487006;34,0.00382998843004628;35,0.0036902589889640444;36,0.003535065859736562;37,0.0034898429156283374;38,0.0034191994482022075;39,0.0033031105375578495;40,0.0031754516731933072;41,0.003057137771448915;42,0.002958960039159844;43,0.002896994037023852;44,0.0027811832502669994;45,0.0026620349768600926;46,0.0025715334638661443;47,0.002436476504093984;48,0.0023188300996796014;49,0.002292241456034176;50,0.0022461285154859382;51,0.0021235315058739765;52,0.002003437611249555;53,0.0019422503559985759;54,0.00182249021003916;55,0.0016802576539693842;56,0.0015875311498754006;57,0.0014900765396938414;58,0.0014321155215379138;59,0.001316694108223567;60,0.0011936521003915984;61,0.00110125934496262;62,0.0010172659309362763;63,0.0009310475258098967;64,0.0008258054467782129;65,0.0006657729619081523;66,0.0004874399252402991;67,0.00033925551797792813;68,0.0002530371128515486;69,0.0001884011213955144;70,0.0001256563723745105;71,0.00006140975436098256;72,0.00000183561765752937;73,0.0000012237451050195799;74,0.0000014462442150231399;75,0.00000116812032751869;76,0.0000015018689925240302;77,0.00000127936988252047;78,0.0000017799928800284801;79,0.0000015018689925240298;80,0.0000017243681025275902;81,0.0000016131185475258098;82,0.0000016687433250267;83,0.0000010012459950160199;84,0.00000161311854752581;85,0.00000116812032751869;86,0.00000050062299750801;87,0.00000005562477750089002;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0.00000011124955500177998;15,0.00000022249911000355996;16,0.00000038937344250622997;17,0.0000003337486650053399;18,0;19,0;20,0.00000005562477750088999;21,0.00000016687433250266996;22,0.00000011124955500177998;23,0;24,0;25,0;26,0.00000011124955500178;27,0.00000022249911000356;28,0.00000022249911000356;29,0;30,0.00000033374866500533997;31,0.0000006118725525097899;32,0.00000038937344250622987;33,0.0000012793698825204698;34,0.0000015018689925240298;35,0.00000139061943752225;36,0.0000007787468850124598;37,0.00000116812032751869;38,0.00000177999288002848;39,0.0000011124955500177999;40,0.0000012793698825204702;41,0.0000018356176575293698;42,0.00000228061587753649;43,0.00000216936632253471;44,0.0000011681203275186898;45,0.00000127936988252047;46,0.00000211374154503382;47,0.00000172436810252759;48,0.0000011124955500177999;49,0.0000008343716625133501;50,0.0000007231221075115702;51,0.00000255873976504094;52,0.00000406060875756497;53,0.00000383810964756141;54,0.0000033374866500534002;55,0.0000027812388750444995;56,0.00000294811320754717;57,0.00000294811320754717;58,0.00000361561053755785;59,0.00000372686009255963;60,0.000003726860092559629;61,0.00000367123531505874;62,0.0000025587397650409404;63,0.00000233624065503738;64,0.00000250311498754005;65,0.000037491100035599864;66,0.00006958659665361339;67,0.00010880206479174084;68,0.00014011881452474193;69,0.00017532929868280527;70,0.00020453230687077253;71,0.00023390218939124246;72,0.0002666095585617658;73,0.00027573202207191173;74,0.00027378515485938055;75,0.00027245016019935924;76,0.000270503292986828;77,0.00027812388750444994;78,0.00028268511925952296;79,0.00027790138839444643;80,0.00026777767888928444;81,0.00027161578853684585;82,0.00027384077963688144;83,0.00026744393022427914;84,0.0002703920434318263;85,0.0002752870238519046;86,0.0002878582235671057;87,0.0002764551441794233;88,0.00026516331434674266;89,0.00026360582057671767;90,0.000261436454254183;91,0.0002621039515841937;92,0.0002699470452118192;93,0.0002797370060519758;94,0.00027723389106443577;95,0.00027723389106443577;96,0.0002663870594517622;97,0.00025670834816660733;98,0.00024308027767888928;99,0.00024341402634389463;100,0.0002574870950516198;101,0.00026037958348166607;102,0.00024908775364898545;103,0.00024758588465646135;104,0.0002475858846564614;105,0.00024925462798148807;106,0.00024513839444642224;107,0.00024613964044143825;108,0.00024346965112139553;109,0.00023451406194375225;110,0.0002236116055535778;111,0.0002001379494482022;112,0.00018790049839800642;113,0.00018055802776788894;114,0.00017321555713777147;115,0.00016487184051263795;116,0.0001580856176575294;117,0.00015191126735493058;118,0.00014979752580989678;119,0.00015141064435742258;120,0.00015697312210751158;121,0.00015775186899252402;122,0.00012126201495194019;123,0.0000717559629761481;124,0.00002419677821288715;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0.001532851993592026;2,0.0015380250978996085;3,0.001516553933784265;4,0.0014856265574937702;5,0.0014896871662513351;6,0.0014887971698113209;7,0.0014753359736561055;8,0.0015079877180491277;9,0.001491745283018868;10,0.001466380384478462;11,0.001522561409754361;12,0.0016499977750089002;13,0.0017715935386258454;14,0.0018058584015663939;15,0.0018187077251690994;16,0.0018539738341046637;17,0.0018340045389818442;18,0.0017996840512637948;19,0.0017769335172659311;20,0.001772316660733357;21,0.001770814791740833;22,0.0017488986294054826;23,0.0017398874154503383;24,0.0017372730509077965;25,0.0017498442506229976;26,0.0017270937166251337;27,0.001727983713065148;28,0.0017372174261302956;29,0.0016816482734069065;30,0.001658508365966536;31,0.00166062210751157;32,0.0016655170879316485;33,0.0016548371306514776;34,0.0016487184051263797;35,0.0016573958704165183;36,0.0016453809184763264;37,0.0016725814346742612;38,0.0016792007831968672;39,0.0016487184051263795;40,0.0016295278568885727;41,0.0016416540583837663;42,0.0016255784976860093;43,0.001631808472766109;44,0.0016456590423638306;45,0.0016299728551085798;46,0.0016300841046635814;47,0.001619682271270915;48,0.001620794766820933;49,0.0016702451940192238;50,0.0016730820576717695;51,0.0016300284798860807;52,0.0016268578675685298;53,0.0016498309006763973;54,0.001645436543253827;55,0.0016312522249911003;56,0.0015829699181203276;57,0.0015783530615877538;58,0.0016066660733357067;59,0.0016346453364186543;60,0.0016276366144535423;61,0.0016410978106087579;62,0.001602382965468138;63,0.0015537112851548595;64,0.0015197801708793169;65,0.0013402233891064434;66,0.0011754071733713067;67,0.0009757698469206124;68,0.0007687900498398007;69,0.0005831145425418298;70,0.000388372196511214;71,0.00018923549305802778;72,0.00000545122819508722;73,0.00000456123175507298;74,0.00000517310430758277;75,0.00000317061231755073;76,0.00000367123531505874;77,0.0000035599857600569602;78,0.0000033374866500534;79,0.0000033374866500534;80,0.000005395603417586329;81,0.0000044499822000712;82,0.00000372686009255963;83,0.00000283686365254539;84,0.000004060608757564969;85,0.0000032818618725525107;86,0.00000406060875756497;87,0.00000350436098255607;88,0.00000311498754004984;89,0.00000328186187255251;90,0.0000025587397650409404;91,0.00000266998932004272;92,0.0000030037379850480596;93,0.00000283686365254539;94,0.00000428310786756853;95,0.0000033374866500534;96,0.0000032262370950516196;97,0.0000033374866500534;98,0.0000030037379850480596;99,0.0000029481132075471697;100,0.0000031706123175507297;101,0.00000355998576005696;102,0.0000025587397650409395;103,0.00000255873976504094;104,0.00000328186187255251;105,0.00000283686365254539;106,0.00000283686365254539;107,0.00000305936276254895;108,0.00000194686721253115;109,0.0000025031149875400496;110,0.00000183561765752937;111,0.0000016687433250267;112,0.00000133499466002136;113,0.0000015018689925240298;114,0.0000013349946600213599;115,0.00000155749377002492;116,0.00000189124243503026;117,0.0000011124955500177999;118,0.00000127936988252047;119,0.00000172436810252759;120,0.0000017243681025275898;121,0.0000013906194375222502;122,0.0000018356176575293696;123,0.00000194686721253115;124,0.0000018356176575293696;125,0.0000008343716625133498;126,0.0000005562477750088999;127,0.0000013349946600213599;128,0.0000011124955500177999;129,0.0000009456212175151297;130,0.0000007231221075115699;131,0.00000133499466002136;132,0.0000007787468850124598;133,0.0000010012459950160199;134,0.0000006674973300106798;135,0.0000009456212175151299;136,0.0000006674973300106798;137,0.00000038937344250623;138,0.0000005562477750088999;139,0.00000044499822000712;140,0.0000007231221075115699;141,0.0000012793698825204698;142,0.0000006118725525097899;143,0.0000004449982200071199;144,0.00000011124955500177997;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0.00000022249911000355996;15,0.00000022249911000355996;16,0.00000005562477750088999;17,0.00000022249911000355996;18,0.0000004449982200071199;19,0.0000003337486650053401;20,0.0000008343716625133502;21,0.00000094562121751513;22,0.00000044499822000712;23,0.00000094562121751513;24,0.0000007787468850124598;25,0.0000012237451050195799;26,0.00000122374510501958;27,0.00000183561765752937;28,0.0000018356176575293704;29,0.0000020581167675329296;30,0.00000244749021003916;31,0.0000033374866500534002;32,0.00000322623709505162;33,0.0000037824848700605194;34,0.00000428310786756853;35,0.0000052843538625845505;36,0.000006841847632609469;37,0.00000517310430758277;38,0.00000606310074759701;39,0.000006285599857600571;40,0.000006118725525097899;41,0.0000071755962976148095;42,0.000005896226415094341;43,0.00000634122463510146;44,0.000005006229975080099;45,0.000005006229975080099;46,0.000005006229975080099;47,0.000004561231755072981;48,0.0000057849768600925595;49,0.00000561810252758989;50,0.00000634122463510146;51,0.00000817684229263083;52,0.000008677465290138841;53,0.0000094562121751513;54,0.000011347454610181561;55,0.000011291829832680669;56,0.000010234959060163758;57,0.000011124955500178002;58,0.000014462442150231397;59,0.00001585306158775365;60,0.000014740566037735851;61,0.00001346119615521538;62,0.000015018689925240301;63,0.000014573691705233182;64,0.00001702118191527234;65,0.00029609069063723744;66,0.0005667052331790674;67,0.0008402122641509434;68,0.001111994927020292;69,0.001388561320754717;70,0.0016412646849412603;71,0.001916941082235671;72,0.0021956768422926307;73,0.002181436899252403;74,0.002135045834816661;75,0.0021502313990744036;76,0.002152678889284443;77,0.0021937299750801;78,0.002178544410822357;79,0.0021540138839444643;80,0.0021318752224991104;81,0.0021698113207547173;82,0.0021755406728373086;83,0.0021505651477394094;84,0.0021661400854396584;85,0.002163414471342115;86,0.0019472009611961555;87,0.0010742813278746886;88,0.0002067016731933072;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000150186899252403;46,0.000008621840512637949;47,0.000026533018867924528;48,0.00004144045923816305;49,0.00006079788180847277;50,0.0000812121751512994;51,0.00010051397294410825;52,0.00011225080099679601;53,0.00013544633321466713;54,0.00014696066215735137;55,0.0001629805980776077;56,0.0001786111605553578;57,0.00019279547881808474;58,0.00020547792808828764;59,0.00023807404770380918;60,0.00024341402634389463;61,0.00025509522961908156;62,0.0002742301530793877;63,0.00028591135635457456;64,0.0003151699893200428;65,0.0002834638661445354;66,0.00025198024207903174;67,0.00022172036311854756;68,0.00017989053043787823;69,0.00014290005339978641;70,0.00010101459594161622;71,0.000054790405838376654;72,0.00000150186899252403;73,0.0000009456212175151297;74,0.0000014462442150231397;75,0.0000021137415450338195;76,0.0000017799928800284795;77,0.00000094562121751513;78,0.00000139061943752225;79,0.0000008899964400142398;80,0.0000012793698825204698;81,0.00000066749733001068;82,0.0000017799928800284801;83,0.0000022249911000356;84,0.0000013349946600213599;85,0.00000216936632253471;86,0.0000012237451050195799;87,0.0000017243681025275898;88,0.0000008899964400142401;89,0.0000010568707725169098;90,0.00000161311854752581;91,0.0000006674973300106799;92,0.00000077874688501246;93,0.0000012237451050195797;94,0.0000009456212175151297;95,0.0000007231221075115698;96,0.0000012237451050195799;97,0.0000016131185475258098;98,0.0000007231221075115699;99,0.0000006674973300106799;100,0.0000004449982200071199;101,0.0000006118725525097899;102,0.00000105687077251691;103,0.0000010012459950160199;104,0.0000007787468850124598;105,0.00000116812032751869;106,0.00000100124599501602;107,0.0000007787468850124599;108,0.00000044499822000712;109,0.00000016687433250266998;110,0.00000033374866500533997;111,0.00000027812388750444997;112,0.00000022249911000356001;113,0.00000027812388750444997;114,0.00000027812388750444997;115,0.00000011124955500177998;116,0.00000027812388750444997;117,0.00000022249911000355996;118,0.00000011124955500177998;119,0.00000016687433250267;120,0.00000005562477750089002;121,0;122,0.00000016687433250267;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0.00000005562477750088999;16,0.00000022249911000355996;17,0.00000005562477750088999;18,0;19,0.00000011124955500177998;20,0.0000005562477750088999;21,0.0000011124955500178;22,0.0000005006229975080099;23,0.00000116812032751869;24,0.00000133499466002136;25,0.0000011124955500177996;26,0.0000018912424350302603;27,0.00000155749377002492;28,0.00000139061943752225;29,0.0000018356176575293696;30,0.0000030593627625489503;31,0.0000043943574225703095;32,0.000004561231755072979;33,0.000004672481310074761;34,0.00000422748309006764;35,0.00000528435386258455;36,0.0000057849768600925595;37,0.0000076205945176219295;38,0.00000762059451762193;39,0.00000717559629761481;40,0.000005562477750089;41,0.000008288091847632611;42,0.00000901121395514418;43,0.000008288091847632611;44,0.00000773184407262371;45,0.00000912246351014596;46,0.000009678711285154861;47,0.000010012459950160199;48,0.000009845585617657531;49,0.000013238697045211823;50,0.00001218182627269491;51,0.000012014951940192238;52,0.00001451806692773229;53,0.000015185564257742968;54,0.00001485181559273763;55,0.00002030304378782485;56,0.000021026165895336414;57,0.000022472410110359563;58,0.000025976771092915627;59,0.00002764551441794233;60,0.00002914738341046636;61,0.000028702385190459245;62,0.000029814880740477036;63,0.00002914738341046636;64,0.000033708615165539334;65,0.0005961863652545389;66,0.0011505428978284087;67,0.001663180847276611;68,0.002163080722677109;69,0.0026598099857600573;70,0.00310186009255963;71,0.0035049728551085797;72,0.003908808739765041;73,0.003873153257386971;74,0.003752169366322535;75,0.0036825827696689217;76,0.0036475391598433608;77,0.0035527545389818444;78,0.0034242056781772874;79,0.0033384878960484162;80,0.0032977149341402636;81,0.003248876379494482;82,0.0031569842470630114;83,0.0031132075471698114;84,0.0030348322356710577;85,0.0029595719117123534;86,0.002879861605553578;87,0.002825182449270203;88,0.0027556514773940904;89,0.0026577518689925245;90,0.002577930313278747;91,0.002476081345674617;92,0.0024477127091491633;93,0.00238997419010324;94,0.0023020314168743323;95,0.00215940948736205;96,0.0020844829120683517;97,0.0020602305090779635;98,0.0019992101281594878;99,0.001897639284442862;100,0.0017956790672837312;101,0.0017284843360626558;102,0.0016498865254538984;103,0.001556047525809897;104,0.001489242168031328;105,0.0014201561943752226;106,0.0013295990566037736;107,0.0012523918654325384;108,0.0012047770558917766;109,0.0011225080099679602;110,0.0009929579031683873;111,0.0008433272516909933;112,0.0007611694553221787;113,0.000667997953008188;114,0.0005880095229619082;115,0.0005190904236383055;116,0.00047069686721253116;117,0.00041896582413670347;118,0.0003839222143111427;119,0.0003359180313278747;120,0.00029091758632965466;121,0.0002423571555713777;122,0.00019585484158063366;123,0.00015413625845496617;124,0.00011887014951940192;125,0.00008332591669633321;126,0.0000506185475258099;127,0.000020358668565325745;128,0.00000328186187255251;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0.00000083437166251335;20,0.0000011681203275186895;21,0.0000007787468850124599;22,0;23,0;24,0;25,0;26,0.00000005562477750089;27,0;28,0;29,0;30,0.00000027812388750445007;31,0.0000008343716625133503;32,0.0000009456212175151303;33,0.00000077874688501246;34,0.0000012237451050195803;35,0.0000026699893200427206;36,0.0000043387326450694205;37,0.00000483935564257743;38,0.00000322623709505162;39,0.00000183561765752937;40,0.0000011124955500177996;41,0.00000228061587753649;42,0.0000028924884300462806;43,0.0000032262370950516204;44,0.0000027812388750444995;45,0.0000027256140975436105;46,0.00000205811676753293;47,0.0000018356176575293696;48,0.0000017243681025275898;49,0.0000021137415450338195;50,0.0000023918654325382694;51,0.0000028368636525453903;52,0.00000461685653257387;53,0.0000070087219651121415;54,0.000006786222855108581;55,0.00000517310430758277;56,0.0000035043609825560695;57,0.0000043387326450694205;58,0.00000472810608757565;59,0.000006285599857600569;60,0.000008844339622641512;61,0.000006841847632609469;62,0.000004505606977572089;63,0.000004004983980064081;64,0.000007008721965112139;65,0.00014334505161979353;66,0.00028240699537201855;67,0.0004216358134567462;68,0.0005530771626913492;69,0.0006999822000711999;70,0.0008508922214311143;71,0.0010060853506585975;72,0.0011505985226059098;73,0.0011635590957636173;74,0.001161500978996084;75,0.0011986583303666785;76,0.0012048326806692773;77,0.0012067239231043077;78,0.0011912046101815593;79,0.0012159020113919545;80,0.00125;81,0.0012816504983980065;82,0.00131124288002848;83,0.0013342159131363475;84,0.001285877981488074;85,0.0012805936276254893;86,0.0013205878426486295;87,0.0013547970808116768;88,0.0013054579031683872;89,0.00133187967248131;90,0.001367924528301887;91,0.0014024675151299395;92,0.0014134255962976149;93,0.001398629405482378;94,0.001365755161979352;95,0.0013676464044143823;96,0.0014168743325026702;97,0.001465546012815949;98,0.0014915784086863655;99,0.001499310252758989;100,0.001476003470986116;101,0.0014758365966536136;102,0.0014817884478462086;103,0.0014925240299038804;104,0.0014959171413314347;105,0.0014658241367034534;106,0.0014380117479530082;107,0.0013979619081523674;108,0.0013672014061943752;109,0.001310686632253471;110,0.0012772005161979351;111,0.001170567817728729;112,0.001155994126023496;113,0.0011509878960484158;114,0.0011161667853328587;115,0.0010699982200071201;116,0.0010133721965112142;117,0.0010010234959060165;118,0.0009969628871484516;119,0.0009683717515129942;120,0.0009373331256674975;121,0.0009672036311854753;122,0.0010297815058739766;123,0.0010286133855464579;124,0.0009670923816304736;125,0.0009560230509077965;126,0.0009816660733357068;127,0.0009505161979352081;128,0.0008579009433962266;129,0.0008250823246707013;130,0.0008174617301530795;131,0.0008187411000355998;132,0.0007796368814524742;133,0.000734692061231755;134,0.0007124977750089;135,0.000699314702741189;136,0.0006895803666785332;137,0.0006405749377002492;138,0.0005898451406194374;139,0.0005867301530793877;140,0.0005660933606265575;141,0.0005274897650409398;142,0.0005200916696333214;143,0.0005163648095407619;144,0.0004937811498754005;145,0.0004981755072979709;146,0.0004992323780704877;147,0.0005136948202207191;148,0.0005176441794232823;149,0.000498564880740477;150,0.0004701962442150231;151,0.0004305914026343895;152,0.00039994215023139907;153,0.0003690147739409043;154,0.0003295768066927732;155,0.0003159487362050552;156,0.0003092181381274475;157,0.00031555936276254893;158,0.0003072712709149164;159,0.00027740076539693845;160,0.00024680713777144896;161,0.00022950783196867212;162,0.0002415784086863653;163,0.00024163403346386616;164,0.00023045345318618724;165,0.00021604663581345675;166,0.00019958170167319332;167,0.00019229485582057676;168,0.00018150364898540403;169,0.00017961240655037382;170,0.00017521804912780348;171,0.00015992123531505874;172,0.0001407306870772517;173,0.00013889506941972232;174,0.00013483446066215734;175,0.00011925952296190817;176,0.0001006808472766109;177,0.0000951183695265219;178,0.00009595274118903526;179,0.00010056959772160911;180,0.0001006808472766109;181,0.00009862273050907796;182,0.00008977839088643647;183,0.0000778190637237451;184,0.00006780660377358491;185,0.0000706434674261303;186,0.00007492657529369884;187,0.00006852972588109648;188,0.00005779414382342471;189,0.000060130384478462084;190,0.00006096475614097543;191,0.00005695977216091135;192,0.000047392310430758284;193,0.000046279814880740476;194,0.00004327607689569243;195,0.000039604841580633675;196,0.00003131674973300107;197,0.000029425507297970806;198,0.000027923638305446778;199,0.000032373620505517976;200,0.000033374866500534;201,0.0000294811320754717;202,0.00002441927732289071;203,0.00002797926308294767;204,0.00002453052687789249;205,0.00001874555001779993;206,0.000014406817372730508;207,0.00001029058383766465;208,0.000010513082947668208;209,0.00001273807404770381;210,0.00001218182627269491;211,0.000008844339622641508;212,0.000007064346742613029;213,0.000007453720185119259;214,0.00000917808828764685;215,0.00000795434318262727;216,0.000005673727305090781;217,0.00000406060875756497;218,0.0000037268600925596295;219,0.0000057849768600925595;220,0.000006396849412602349;221,0.0000033374866500534;222,0.0000012793698825204698;223,0.0000011124955500178;224,0.0000013906194375222502;225,0.00000200249199003204;226,0.00000205811676753293;227,0.0000016131185475258098;228,0.0000005562477750089001;229,0.00000050062299750801;230,0.0000015018689925240302;231,0.00000228061587753649;232,0.0000017799928800284797;233,0.0000014462442150231397;234,0.0000011124955500178;235,0.00000033374866500534;236,0;237,0.0000006118725525097901;238,0.0000008899964400142398;239,0.00000066749733001068;240,0.00000033374866500534;241,0.00000100124599501602;242,0.00000100124599501602;243,0.00000066749733001068;244,0.0000008899964400142398;245,0.0000009456212175151301;246,0.0000013906194375222498;247,0.0000012793698825204702;248,0.0000008899964400142398;249,0.00000038937344250623;250,0.00000033374866500534;251,0.00000011124955500177998;252,0;253,0;254,0;255,0;256,0;257,0;258,0;259,0;260,0;261,0;262,0.0000007231221075115698;263,0.00000077874688501246;264,0.00000050062299750801;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.0001967448380206479;2,0.0002515352438590246;3,0.0003115543787824849;4,0.00034270425418298325;5,0.0003875378248487006;6,0.0004584037913848345;7,0.000525431648273407;8,0.0005790539337842649;9,0.0006252781238875045;10,0.0006577629939480243;11,0.0007102727839088644;12,0.0008083948914204343;13,0.0009620861516553933;14,0.0010852950338198649;15,0.0011609447312210751;16,0.0012215757386970453;17,0.0012824292452830188;18,0.001306681648273407;19,0.0013447289960840157;20,0.0014104774830900678;21,0.0014865721787112852;22,0.001551931292274831;23,0.0016015485938056248;24,0.0016318640975436097;25,0.0016544477572089712;26,0.0016887126201495196;27,0.0017614698291206837;28,0.0017555736027055893;29,0.0017863341046635817;30,0.0018734425062299754;31,0.001962720274118903;32,0.002070576717693129;33,0.0021455032929868284;34,0.002255250978996084;35,0.002330733802064792;36,0.0023423037557849767;37,0.0023405793876824493;38,0.0023901410644357425;39,0.0024044922570309723;40,0.0024177865788536845;41,0.0024847031861872553;42,0.002588387771448914;43,0.002653246262014952;44,0.0027233891064435745;45,0.0028046569063723747;46,0.0028217337130651476;47,0.002866289159843361;48,0.0028734647561409754;49,0.0028637304200783194;50,0.002844261747953008;51,0.0028234580811676755;52,0.002768500800996796;53,0.0027062566749733;54,0.002617535154859381;55,0.002562800373798505;56,0.00252747864008544;57,0.0024447089711641156;58,0.002368447401210395;59,0.00228812522249911;60,0.002226326094695621;61,0.002195509967960128;62,0.0021448357956568177;63,0.002048493681025276;64,0.0018908530615877536;65,0.0015982111071555717;66,0.0013326027945888218;67,0.0010865187789248845;68,0.0008501690993236026;69,0.000627558739765041;70,0.00040088777144891424;71,0.0001963554645781417;72,0.00000344873620505518;73,0.0000003893734425062301;74,0.0000008343716625133501;75,0.00000211374154503382;76,0.00000350436098255607;77,0.0000035599857600569602;78,0.00000233624065503738;79,0.0000043943574225703095;80,0.00000478373086507654;81,0.00000595185119259523;82,0.00000450560697757209;83,0.0000035043609825560703;84,0.0000014462442150231399;85,0.00000083437166251335;86,0.0000018912424350302597;87,0.0000028924884300462798;88,0.0000015574937700249199;89,0.00000105687077251691;90,0.00000116812032751869;91,0.0000016687433250266995;92,0.0000018356176575293698;93,0.0000011124955500178;94,0.0000007787468850124598;95,0.00000050062299750801;96,0.00000011124955500177998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000044499822000711994;46,0.00002608802064791741;47,0.00007615032039871841;48,0.00011970452118191528;49,0.00016275809896760415;50,0.00021059540761836956;51,0.0002575983446066216;52,0.00030276566393734426;53,0.0003543298326806693;54,0.00040038714845140627;55,0.0004397694909220363;56,0.0004909442862228551;57,0.0005178666785332858;58,0.0005741033285866857;59,0.0006247775008899964;60,0.0006658842114631541;61,0.0007096052865788538;62,0.000751435119259523;63,0.0007880362228551087;64,0.0008196310964756141;65,0.000755551352794589;66,0.0006683873264506941;67,0.0005844495372018513;68,0.0004866055535777857;69,0.00039143155927376296;70,0.000262437700249199;71,0.00012866011035955857;72,0.00000233624065503738;73,0.0000024474902100391597;74,0.0000030037379850480604;75,0.00000272561409754361;76,0.0000020024919900320397;77,0.0000014462442150231397;78,0.00000228061587753649;79,0.0000030037379850480596;80,0.0000018912424350302597;81,0.00000133499466002136;82,0.0000017243681025275898;83,0.00000139061943752225;84,0.0000007787468850124599;85,0.0000010012459950160199;86,0.0000006674973300106799;87,0.0000012793698825204698;88,0.00000038937344250622997;89,0.00000122374510501958;90,0.0000005006229975080099;91,0.00000027812388750444997;92,0.00000011124955500178;93,0.00000011124955500177995;94,0.00000005562477750088998;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "create_new_age:magnetite_block", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.0000007231221075115699;43,0.00000172436810252759;44,0.00000189124243503026;45,0.00000161311854752581;46,0.0000013906194375222498;47,0.0000016687433250267001;48,0.0000021693663225347102;49,0.00000250311498754005;50,0.0000036712353150587396;51,0.000004116233535065861;52,0.00000450560697757209;53,0.00000372686009255963;54,0.00000422748309006764;55,0.00000461685653257387;56,0.000006118725525097901;57,0.00000472810608757565;58,0.00000539560341758633;59,0.000006563723745105021;60,0.000006229975080099679;61,0.000007231221075115699;62,0.0000060631007475970116;63,0.000008343716625133498;64,0.000006953097187611248;65,0.00013806069775720896;66,0.0002651076895692417;67,0.0003745216269134923;68,0.0004953942684229264;69,0.0006288381096475615;70,0.0007571644713421147;71,0.0008768133677465291;72,0.000999632876468494;73,0.0010124265752936988;74,0.0009934029013883945;75,0.0010054734781060875;76,0.0009773273406906372;77,0.0009877847988608046;78,0.0010023584905660377;79,0.0010029703631185475;80,0.0009923460306158777;81,0.0009851148095407617;82,0.0009927910288358849;83,0.0009942372730509079;84,0.0009898985404058385;85,0.0009888972944108224;86,0.0009855041829832682;87,0.0009922347810608757;88,0.0009727661089355643;89,0.0009819441972232113;90,0.0009624199003203988;91,0.0009705967426130297;92,0.0009659242613029548;93,0.0009547993058027768;94,0.000968427376290495;95,0.0009534643111427554;96,0.0009650898896404415;97,0.0009382787468850125;98,0.0009426174795300819;99,0.0009261525453898186;100,0.0009284331612673549;101,0.0009114676041295834;102,0.0009090201139195443;103,0.0009121351014595943;104,0.0009022895158419366;105,0.0008882720719117123;106,0.0008943907974368103;107,0.0008762014951940193;108,0.0008486672303310786;109,0.0008483891064435744;110,0.0008083948914204343;111,0.0007288514595941618;112,0.0006892466180135279;113,0.0006666629583481667;114,0.0006441349234603063;115,0.0006162669099323602;116,0.0005843382876468495;117,0.0005608646315414738;118,0.0005625889996440014;119,0.0005560809006763973;120,0.0005574715201139195;121,0.0005444553221787113;122,0.0004946711463154148;123,0.0002618258276966892;124,0.000026978017087931647;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000035982277945888203;13,0.00000035982277945888203;14,0;15,0;16,0;17,0;18,0;19,0;20,0.0000011472610359558564;21,0.0000002868152589889641;22,0;23,0;24,0;25,0;26,0;27,0;28,0.0000007614869836160852;29,0;30,0;31,0;32,0.00000011994092648629405;33,0.00000041370928266286936;34,0.0000005875367123531506;35,0;36,0;37,0;38,0.00000011994092648629405;39,0.0000004797637059451762;40,0.0000004797637059451762;41,0;42,0;43,0;44,0.0000007614869836160852;45,0.0000007614869836160852;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.0000005701539693841225;57,0.0000005701539693841225;58,0.0000022275701126227603;59,0;60,0;61,0.0000005736305179779282;62,0.0000017208915539337842;63,0.0000005214822890708437;64,0.00000034765485938056244;65,0.000001140307938768245;66,0;67,0.00000011994092648629405;68,0.0000008860711234171117;69,0.00000011994092648629405;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0.00000382326473255002;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0.00000028507698469206126;181,0.00000028507698469206126;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0.00000191163236627501;195,0.00000191163236627501;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0.0000018886698153287637;223,0.0000009443349076643818;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0.00000022249911000355996;24,0.00000022249911000355996;25,0;26,0;27,0.00000005562477750089;28,0.00000033374866500534;29,0.00000022249911000356;30,0.0000005562477750088999;31,0.0000003893734425062299;32,0.0000006118725525097899;33,0.00000077874688501246;34,0.00000022249911000355996;35,0.0000003893734425062299;36,0.00000016687433250266998;37,0.000000055624777500889984;38,0.00000016687433250267;39,0.0000006118725525097899;40,0.00000027812388750444997;41,0.0000007787468850124598;42,0.00000105687077251691;43,0.0000024474902100391597;44,0.00000122374510501958;45,0.00000155749377002492;46,0.0000014462442150231403;47,0.0000009456212175151301;48,0.00000172436810252759;49,0.0000020581167675329296;50,0.0000020581167675329296;51,0.0000026699893200427198;52,0.00000317061231755073;53,0.0000034487362050551804;54,0.00000511747953008188;55,0.000005006229975080101;56,0.00000533997864008544;57,0.0000056737273050907814;58,0.000006396849412602349;59,0.000006786222855108579;60,0.000006341224635101459;61,0.00000823246707013172;62,0.000008343716625133498;63,0.000010791206835172659;64,0.000011736828052687791;65,0.0001869548771804913;66,0.0003876490744037024;67,0.0005837820398718406;68,0.0007829187433250268;69,0.0010273896404414382;70,0.0012567305980776076;71,0.0014859603061587756;72,0.001774319152723389;73,0.0017928422036311855;74,0.001766921057315771;75,0.0017692572979708082;76,0.001753626735493058;77,0.0017244793520825917;78,0.001672136436454254;79,0.001622241011035956;80,0.0015583281416874334;81,0.0015414182093271625;82,0.0014925240299038804;83,0.0014449092203631187;84,0.0014230486828052688;85,0.0013961819152723389;86,0.0013113541295834818;87,0.0012659086863652546;88,0.0012330900676397298;89,0.0011900921146315415;90,0.0011442016731933074;91,0.0010785088109647562;92,0.0010191015485938057;93,0.000993236027055892;94,0.0009494037023851905;95,0.0009108001067995729;96,0.0008598478106087576;97,0.0008210217159131363;98,0.0007841424884300462;99,0.0007348033107867569;100,0.0006768979174083304;101,0.0006409643111427555;102,0.000607311320754717;103,0.0005503515485938057;104,0.0005104129583481666;105,0.0004655237629049484;106,0.0004359313812744749;107,0.00039732778568885724;108,0.00034999110003559983;109,0.0003087175151299395;110,0.0002519802420790317;111,0.00021226415094339625;112,0.0001857311320754717;113,0.00017427242791028837;114,0.0001685987006051976;115,0.00015864186543253827;116,0.00014590379138483447;117,0.00014668253826984694;118,0.00013906194375222497;119,0.00014067506229975083;120,0.00014595941616233536;121,0.000139562566749733;122,0.00013600258098967602;123,0.00013583570665717337;124,0.00012315325738697047;125,0.00011970452118191527;126,0.00010613207547169811;127,0.00005612540049839801;128,0.000010123709505161978;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0004840468138127448;2,0.0004987317550729797;3,0.0005039048593805625;4,0.00047698246707013174;5,0.0004750912246351015;6,0.0004807649519401923;7,0.0004916674083303666;8,0.00046608001067995725;9,0.0004655237629049484;10,0.00046552376290494844;11,0.00045556692773228907;12,0.0004610737807048772;13,0.0004695287468850125;14,0.00045762504449982204;15,0.00045267443930224277;16,0.0004365432538269847;17,0.0004384901210395159;18,0.000439435742257031;19,0.00043860137059451764;20,0.00043765574937700246;21,0.0004290895336418654;22,0.00042169143823424715;23,0.0004325938946244215;24,0.0004295901566393735;25,0.00041395959416162337;26,0.00041846520113919544;27,0.0004167408330366679;28,0.0004106777322890709;29,0.00041167897828408683;30,0.000422247686009256;31,0.00044722321110715564;32,0.0004774274652901389;33,0.00048677242791028843;34,0.0005249866500533999;35,0.0005600858846564615;36,0.0005796658063367746;37,0.0006039182093271628;38,0.0006415205589177643;39,0.0006584861160555359;40,0.0006752847988608047;41,0.0006949203453186188;42,0.0007272383410466359;43,0.0007424239053043789;44,0.0007656194375222499;45,0.0008092848878604486;46,0.0008382097721609114;47,0.0008330366678533287;48,0.0008791496084015664;49,0.0009027901388394446;50,0.0009297681559273763;51,0.0009685942506229974;52,0.0009773829654681383;53,0.0009999666251334996;54,0.0010525320398718403;55,0.0010611538803844787;56,0.0010748932004271982;57,0.001132242346030616;58,0.0011667853328586686;59,0.001177799038803845;60,0.0012083926664293344;61,0.0012585105909576361;62,0.0012730842826628693;63,0.0012736961552153793;64,0.0012765886436454255;65,0.001079676931292275;66,0.0009221475614097544;67,0.0007699581701673194;68,0.0005837820398718406;69,0.0004234714311142756;70,0.00027728951584193666;71,0.0001324425952296191;72,0.0000007231221075115699;73,0.00000116812032751869;74,0.00000116812032751869;75,0.0000011124955500177999;76,0.0000006118725525097899;77,0.00000027812388750444997;78,0.00000016687433250266998;79,0.00000161311854752581;80,0.0000009456212175151299;81,0.0000010012459950160199;82,0.00000061187255250979;83,0.00000061187255250979;84,0.0000006118725525097899;85,0.00000094562121751513;86,0.0000005006229975080099;87,0.0000004449982200071199;88,0.00000044499822000712;89,0.00000022249911000356;90,0.00000016687433250266998;91,0.00000005562477750089;92,0.00000038937344250623;93,0.00000033374866500534;94,0.00000016687433250266998;95,0.00000011124955500177997;96,0.00000005562477750089;97,0.00000022249911000356;98,0.00000027812388750444997;99,0;100,0.00000016687433250266996;101,0.0000003893734425062299;102,0.00000033374866500534;103,0.0000006118725525097899;104,0.00000016687433250266998;105,0.00000011124955500177998;106,0;107,0.00000011124955500177998;108,0.00000011124955500178;109,0.00000022249911000356004;110,0.00000022249911000356;111,0.00000005562477750088999;112,0.00000016687433250266996;113,0.00000050062299750801;114,0.0000003337486650053399;115,0;116,0.00000033374866500533997;117,0.00000022249911000356;118,0.00000016687433250267;119,0;120,0;121,0;122,0.00000038937344250623;123,0;124,0.00000011124955500178;125,0.00000005562477750088999;126,0.00000022249911000356001;127,0.00000005562477750089002;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.00016064435742257032;2,0.00018428488786044857;3,0.00022205411178355286;4,0.000260435208259167;5,0.00030093004627981487;6,0.0003530504627981488;7,0.000398495906016376;8,0.00044661133855464577;9,0.0004933361516553934;10,0.0005550240299038805;11,0.0005971319864720541;12,0.000675562922748309;13,0.0007855887326450694;14,0.0008542853328586686;15,0.0008704721431114276;16,0.0009264862940548239;17,0.0009747686009255964;18,0.0010083103417586332;19,0.00105687077251691;20,0.0011004805980776079;21,0.001129127358490566;22,0.0011653390886436454;23,0.0012157907618369527;24,0.0012372063011747952;25,0.001245939391242435;26,0.0012512237451050199;27,0.0013129116233535066;28,0.0014079743681025274;29,0.001513383321466714;30,0.0015371351014595942;31,0.0015248976504093985;32,0.001553321911712353;33,0.0016403190637237454;34,0.0017225324848700605;35,0.0017645291918832325;36,0.0017427799038803845;37,0.0017756541473834106;38,0.0018235470808116768;39,0.0018149808650765398;40,0.001737384300462798;41,0.0016883232467070134;42,0.0016776989142043431;43,0.0016626245995016021;44,0.0015886436454254182;45,0.0015193907974368102;46,0.0014734447312210754;47,0.0014211018155927378;48,0.0013735982556069776;49,0.0013291540583837665;50,0.0012832636169455322;51,0.0012268044677821287;52,0.0012043876824492702;53,0.0011828052687789248;54,0.0011274586151655396;55,0.0010779525631897473;56,0.0010264440192239233;57,0.0009629761480954076;58,0.0009130807226771093;59,0.0008553422036311855;60,0.0008284198113207547;61,0.0008027767888928444;62,0.0007537157351370594;63,0.0006754516731933073;64,0.000599245728017088;65,0.00048465868636525457;66,0.0003998865254538982;67,0.00031800685297258814;68,0.00023668342826628695;69,0.0001599768600925596;70,0.00009289337842648628;71,0.00004149608401566394;72,0.0000008343716625133501;73,0.0000003337486650053401;74,0.00000038937344250623;75,0.00000050062299750801;76,0.00000038937344250622997;77,0.00000022249911000355996;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0.00005935163759344963;2,0.00006285599857600569;3,0.000057849768600925595;4,0.000060352883588465653;5,0.00005801664293342827;6,0.00005990788536845853;7,0.00005873976504093984;8,0.000058962264150943403;9,0.00005885101459594162;10,0.00005718227127091491;11,0.00005835039159843361;12,0.00006469161623353509;13,0.00006814035243859026;14,0.000071811587753649;15,0.00007064346742613031;16,0.00007075471698113207;17,0.00007531594873620506;18,0.00006930847276610894;19,0.00006775097899608401;20,0.00007392532929868281;21,0.000066749733001068;22,0.00006736160555357779;23,0.00007247908508365968;24,0.00006552598789604842;25,0.00006891909932360271;26,0.00007081034175863296;27,0.00006558161267354931;28,0.00006953097187611251;29,0.00006741723033107868;30,0.00006647160911356354;31,0.00006485849056603774;32,0.00006419099323602706;33,0.00006719473122107511;34,0.00006252224991100036;35,0.00006491411534353863;36,0.00005996351014595942;37,0.00006129850480598077;38,0.0000645803666785333;39,0.00006463599145603417;40,0.00006547036311854754;41,0.00006552598789604842;42,0.00006196600213599147;43,0.0000634122463510146;44,0.00006202162691349235;45,0.0000661934852260591;46,0.00006430224279102884;47,0.00006580411178355285;48,0.00006363474546101816;49,0.00006430224279102885;50,0.00006213287646849413;51,0.0000656928622285511;52,0.0000644691171235315;53,0.00006113163047347811;54,0.00006335662157351371;55,0.0000644691171235315;56,0.00006113163047347811;57,0.00006113163047347811;58,0.00006090913136347455;59,0.0000673059807760769;60,0.00006641598433606266;61,0.00006218850124599501;62,0.000059518511925952294;63,0.00005885101459594162;64,0.00006213287646849413;65,0.000025253648985404056;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0.0000005006229975080099;19,0.0000012237451050195799;20,0.0000010568707725169098;21,0;22,0;23,0.00000005562477750089;24,0.00000005562477750089;25,0.00000038937344250623;26,0.00000005562477750089;27,0;28,0.00000005562477750089002;29,0.00000105687077251691;30,0.0000018356176575293698;31,0.0000030037379850480596;32,0.000002614364542541829;33,0.0000015574937700249199;34,0.0000013349946600213599;35,0.0000017243681025275902;36,0.00000072312210751157;37,0.0000007787468850124602;38,0.00000133499466002136;39,0.000004004983980064079;40,0.0000035043609825560703;41,0.000004116233535065859;42,0.00000311498754004984;43,0.00000289248843004628;44,0.00000533997864008544;45,0.00000572935208259167;46,0.00000456123175507298;47,0.0000031706123175507297;48,0.00000472810608757565;49,0.00000689747241011036;50,0.000009122463510145958;51,0.000009678711285154861;52,0.00000784309362762549;53,0.0000066749733001068;54,0.000011124955500178;55,0.000014073068707725172;56,0.000012849323602705588;57,0.000011347454610181561;58,0.000011347454610181563;59,0.00000995683517265931;60,0.00000823246707013172;61,0.00001329432182271271;62,0.00001579743681025276;63,0.000014684941260234962;64,0.000013906194375222502;65,0.00029447757208971167;66,0.000593683250266999;67,0.0008935564257742969;68,0.0011850858846564616;69,0.0015063189747241011;70,0.001817372730509078;71,0.0021317083481666075;72,0.0024163959594161624;73,0.002433917764328943;74,0.0023860248309006764;75,0.0024410933606265573;76,0.0024942706479174088;77,0.0025629672481310073;78,0.002582380295478818;79,0.0025878315236739055;80,0.0026129739231043076;81,0.0026827273940904237;82,0.0027716157885368463;83,0.0028111650053399785;84,0.0028188412246351016;85,0.0028126668743325024;86,0.0028414805090779638;87,0.0028473767354930584;88,0.002891542808828765;89,0.002920412068351727;90,0.00291624021003916;91,0.0029416607333570665;92,0.002939936365254539;93,0.0029542319330722678;94,0.0029494482022071914;95,0.003024319152723389;96,0.00308183517265931;97,0.003122107511569954;98,0.003099857600569598;99,0.0030778858134567462;100,0.003068485226059096;101,0.003043454076183695;102,0.0030462909398362406;103,0.0029693618725525105;104,0.002948280081879673;105,0.0029849924350302598;106,0.003041562833748665;107,0.003017866678533286;108,0.003053188412246351;109,0.003070487718049128;110,0.0029285332858668568;111,0.0026463487896048413;112,0.002598678355286579;113,0.0025014462442150233;114,0.002412168476326095;115,0.0023025320398718406;116,0.002249632876468494;117,0.0022316660733357066;118,0.002235281683873265;119,0.00217437255250979;120,0.002176486294054824;121,0.002197234336062656;122,0.0021933406016375933;123,0.0021349345852616592;124,0.0021052865788536847;125,0.0021050084549661804;126,0.0020274118903524387;127,0.0019256741723033108;128,0.0018293320576717692;129,0.0017729285332858669;130,0.001693830099679601;131,0.0015675062299750802;132,0.0014719984870060522;133,0.0014141487184051262;134,0.0013707613919544323;135,0.0013071266464934142;136,0.0012443262726949092;137,0.0011775209149163404;138,0.001106543698825205;139,0.0010519757920968316;140,0.0010259433962264153;141,0.001032618369526522;142,0.0009956278924884302;143,0.0009625867746529015;144,0.0009402812388750445;145,0.0009081301174795301;146,0.0008295323068707726;147,0.0007626156995372018;148,0.0007361383054467782;149,0.0007212864898540406;150,0.00069937032751869;151,0.000653869259522962;152,0.0005742145781416875;153,0.0005169766820932717;154,0.00048588243147027415;155,0.0004602394090423638;156,0.0004321488964044144;157,0.00041813145247419014;158,0.0003895403168387327;159,0.00038570220719117126;160,0.0003917096831612674;161,0.0003756341224635101;162,0.0003469873620505518;163,0.0003177287290850837;164,0.0002692795478818085;165,0.0002539271092915628;166,0.0002385190459238163;167,0.00021727038091847633;168,0.00020542230331078678;169,0.00020987228551085796;170,0.00019952607689569245;171,0.00018667675329298684;172,0.00018534175863296547;173,0.0001763861694553222;174,0.00014990877536489856;175,0.00013644757920968314;176,0.0001207613919544322;177,0.00012126201495194019;178,0.00010974768600925596;179,0.00010212709149163405;180,0.00009222588109647563;181,0.00009639773940904237;182,0.00008738652545389819;183,0.00007865343538625847;184,0.00007414782840868637;185,0.0000633566215735137;186,0.00005796101815592739;187,0.0000589622641509434;188,0.00006213287646849412;189,0.00005790539337842648;190,0.0000522316660733357;191,0.00004906105375578498;192,0.00004205233179067284;193,0.00003899296902812389;194,0.00002770113919544322;195,0.00001974679601281595;196,0.000016631808472766107;197,0.00001496306514773941;198,0.000016298059807760766;199,0.00001985804556781773;200,0.00002074804200783197;201,0.00001640930936276255;202,0.000012348700605197581;203,0.000014351192595229619;204,0.000015964311142755432;205,0.000016687433250267;206,0.00001507431470274119;207,0.00001207057671769313;208,0.00000784309362762549;209,0.000008288091847632611;210,0.00000895558917764329;211,0.0000088999644001424;212,0.00000467248131007476;213,0.000004227483090067639;214,0.0000048949804200783195;215,0.0000032818618725525103;216,0.00000139061943752225;217,0.0000022249911000356;218,0.000003448736205055179;219,0.00000228061587753649;220,0.00000027812388750445;221,0.00000038937344250623;222,0.00000172436810252759;223,0.0000018912424350302603;224,0.0000008899964400142398;225,0.00000022249911000355996;226,0.0000011681203275186902;227,0.0000011124955500178;228,0.00000022249911000355996;229,0;230,0.00000016687433250267;231,0.00000016687433250267;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00006986472054111784;62,0.00015769624421502315;63,0.00024118903524385907;64,0.0003048794054823781;65,0.0002599902100391599;66,0.00022528034887860448;67,0.0001920167319330723;68,0.00015764061943752226;69,0.00011775765396938412;70,0.00008260279458882164;71,0.00004149608401566394;72,0.0000011124955500178;73,0.0000011681203275186902;74,0.0000014462442150231399;75,0.0000014462442150231399;76,0.0000014462442150231399;77,0.0000010012459950160199;78,0.0000007787468850124599;79,0.0000007231221075115699;80,0.0000006674973300106798;81,0.00000116812032751869;82,0.00000083437166251335;83,0.0000003337486650053399;84,0.0000005562477750089;85,0.0000007231221075115699;86,0.0000005562477750088999;87,0.0000006674973300106799;88,0.00000033374866500533997;89,0.0000004449982200071199;90,0.00000033374866500534;91,0.0000006674973300106799;92,0.0000011681203275186898;93,0.0000017243681025275898;94,0.0000013349946600213599;95,0.0000011681203275186902;96,0.0000010012459950160199;97,0.0000005562477750089;98,0.00000038937344250623;99,0.00000033374866500534;100,0.00000022249911000356;101,0.0000008899964400142401;102,0.0000013349946600213599;103,0.0000014462442150231399;104,0.00000116812032751869;105,0.0000007787468850124599;106,0.00000044499822000712003;107,0.0000005562477750089;108,0.00000016687433250266998;109,0.00000016687433250266998;110,0.00000027812388750444997;111,0.00000033374866500533997;112,0.00000033374866500533997;113,0.00000011124955500178001;114,0.00000027812388750444997;115,0.0000007231221075115699;116,0.0000003893734425062299;117,0.0000003893734425062299;118,0.0000003893734425062299;119,0.00000022249911000355996;120,0.00000066749733001068;121,0.0000011124955500177999;122,0.0000009456212175151299;123,0.00000061187255250979;124,0.00000061187255250979;125,0.0000005562477750088999;126,0.0000004449982200071199;127,0.00000027812388750444997;128,0.0000005562477750088999;129,0.00000011124955500177998;130,0;131,0;132,0.00000005562477750088999;133,0.00000005562477750088999;134,0.00000016687433250266998;135,0.00000033374866500534;136,0.00000011124955500178;137,0.00000011124955500178;138,0;139,0.00000005562477750088999;140,0;141,0;142,0.000000055624777500890004;143,0.00000027812388750444997;144,0;145,0.00000005562477750088998;146,0.00000005562477750088998;147,0.00000005562477750089;148,0.00000011124955500178;149,0;150,0.00000005562477750088998;151,0.0000002224991100035599;152,0.0000002781238875044499;153,0.0000002224991100035599;154,0.00000016687433250266998;155,0.00000027812388750445;156,0.00000016687433250266998;157,0.00000027812388750444997;158,0.00000022249911000356;159,0.00000005562477750088998;160,0;161,0.00000005562477750088999;162,0;163,0.00000016687433250266998;164,0.00000022249911000355996;165,0.00000050062299750801;166,0.00000022249911000355996;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0.00000016687433250266998;183,0.00000016687433250266998;184,0.00000005562477750089;185,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000016687433250267;46,0.000009122463510145958;47,0.000025142399430402285;48,0.00004538981844072624;49,0.00006652723389106444;50,0.00008577340690637237;51,0.00009840023139907441;52,0.00010251646493414027;53,0.00013605820576717694;54,0.00015447000711997153;55,0.00016548371306514774;56,0.00019691171235315061;57,0.00021176352794588824;58,0.0002152122641509434;59,0.0002376290494838021;60,0.000259934585261659;61,0.0002878025987896049;62,0.00030404503381986474;63,0.0003231799572801709;64,0.0003348611605553578;65,0.00030821689213243145;66,0.0002675551797792809;67,0.0002339578141687433;68,0.00019429734781060878;69,0.0001512437700249199;70,0.00010552020291918832;71,0.00005773851904592382;72,0.00000066749733001068;73,0.00000116812032751869;74,0.00000183561765752937;75,0.0000013349946600213599;76,0.00000161311854752581;77,0.0000014462442150231399;78,0.0000013906194375222496;79,0.0000012237451050195799;80,0.0000015018689925240302;81,0.00000161311854752581;82,0.0000017243681025275902;83,0.00000139061943752225;84,0.0000005006229975080099;85,0.00000116812032751869;86,0.0000013906194375222498;87,0.0000012793698825204698;88,0.0000021693663225347102;89,0.00000261436454254183;90,0.00000155749377002492;91,0.00000144624421502314;92,0.00000094562121751513;93,0.00000161311854752581;94,0.0000018912424350302603;95,0.00000139061943752225;96,0.00000205811676753293;97,0.0000025031149875400496;98,0.00000139061943752225;99,0.00000066749733001068;100,0.00000083437166251335;101,0.0000022806158775364896;102,0.00000161311854752581;103,0.0000029481132075471697;104,0.00000350436098255607;105,0.00000233624065503738;106,0.00000127936988252047;107,0.0000011124955500178;108,0.0000010012459950160199;109,0.0000013349946600213599;110,0.00000177999288002848;111,0.0000013349946600213599;112,0.00000105687077251691;113,0.0000010568707725169098;114,0.0000007231221075115699;115,0.0000016687433250267;116,0.0000010012459950160203;117,0.0000008899964400142398;118,0.0000012793698825204698;119,0.0000012237451050195799;120,0.00000094562121751513;121,0.00000033374866500533997;122,0.0000007787468850124598;123,0.0000006674973300106799;124,0.00000044499822000712;125,0.0000004449982200071199;126,0.0000008899964400142398;127,0.00000100124599501602;128,0.0000006674973300106799;129,0.0000003893734425062299;130,0.00000022249911000355996;131,0.00000033374866500533997;132,0.00000033374866500534;133,0.00000033374866500533997;134,0.00000016687433250266998;135,0.00000050062299750801;136,0.0000003893734425062299;137,0.00000005562477750088999;138,0.00000005562477750088999;139,0.0000003893734425062299;140,0.00000027812388750444997;141,0.00000022249911000356;142,0.00000022249911000355994;143,0.0000003893734425062299;144,0.00000011124955500177998;145,0;146,0.00000027812388750445007;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0.00000016687433250267;4,0.00000027812388750445;5,0.00000005562477750089001;6,0;7,0.00000033374866500534;8,0.00000022249911000356001;9,0.00000011124955500178002;10,0.00000044499822000712;11,0.00000027812388750444997;12,0.00000016687433250266998;13,0.00000033374866500534;14,0.0000007231221075115698;15,0.00000033374866500533997;16,0.0000004449982200071199;17,0.00000038937344250622997;18,0.0000006118725525097898;19,0.00000083437166251335;20,0.0000011124955500177999;21,0.00000100124599501602;22,0.0000008899964400142403;23,0.00000061187255250979;24,0.0000004449982200071199;25,0.0000009456212175151296;26,0.0000012793698825204698;27,0.00000116812032751869;28,0.0000015018689925240298;29,0.0000017799928800284795;30,0.00000194686721253115;31,0.0000018356176575293694;32,0.0000010012459950160199;33,0.00000038937344250622997;34,0.0000006118725525097899;35,0.0000007231221075115699;36,0.0000007787468850124599;37,0.0000010568707725169095;38,0.00000194686721253115;39,0.0000012237451050195797;40,0.0000012237451050195799;41,0.0000005562477750089;42,0.0000007787468850124599;43,0.0000006674973300106801;44,0.0000010568707725169102;45,0.0000005562477750088999;46,0.0000008899964400142402;47,0.00000105687077251691;48,0.0000010568707725169102;49,0.0000011124955500177999;50,0.0000011124955500178;51,0.0000008343716625133503;52,0.00000050062299750801;53,0.0000016131185475258104;54,0.00000127936988252047;55,0.00000094562121751513;56,0.00000116812032751869;57,0.00000122374510501958;58,0.00000205811676753293;59,0.00000228061587753649;60,0.0000027812388750445;61,0.00000250311498754005;62,0.0000016131185475258104;63,0.0000017243681025275902;64,0.0000012793698825204702;65,0.00007275720897116411;66,0.0001667630829476682;67,0.0003166718583125668;68,0.00047514684941260234;69,0.0006771760412958348;70,0.000875867746529014;71,0.001098199982200071;72,0.0013639751690993236;73,0.0015337976148095407;74,0.0016458815414738342;75,0.0017699804200783198;76,0.0018695487718049131;77,0.002008666340334639;78,0.0021974012103951586;79,0.0023251713243147027;80,0.0024006541473834105;81,0.0025306492524029903;82,0.002663926219295123;83,0.0027850213599145603;84,0.0028968827874688505;85,0.0030429534531861875;86,0.0031454142933428266;87,0.0032657306870772515;88,0.0033619059273762904;89,0.003493402901388395;90,0.0036430891776432894;91,0.003666674083303667;92,0.0037186832502669994;93,0.0038999644001424;94,0.004006986472054112;95,0.004015775186899252;96,0.004175028924884301;97,0.004354307582769669;98,0.004458604040583838;99,0.004521738163047348;100,0.004585873531505875;101,0.004630206479174084;102,0.004664860715557138;103,0.0047411779102883595;104,0.0048627180491278045;105,0.004978806959772161;106,0.005042886703453186;107,0.00508499466002136;108,0.005152634389462443;109,0.005181948647205411;110,0.005011681203275187;111,0.004584761035955856;112,0.004436687878248488;113,0.004356143200427199;114,0.0042441148985404055;115,0.004156728373086508;116,0.004040250088999644;117,0.003965212264150943;118,0.003944519846920612;119,0.003935953631185476;120,0.0039718872374510505;121,0.003993414026343895;122,0.004008043342826628;123,0.004004872730509078;124,0.004008321466714134;125,0.0039843471876112495;126,0.003851403969384123;127,0.0037470518867924528;128,0.003681192150231399;129,0.0035846275364898542;130,0.0035220496618013526;131,0.003418253826984692;132,0.0033154036133855457;133,0.003222565859736561;134,0.003199314702741189;135,0.003168164827340691;136,0.003041284709861161;137,0.002888817194731221;138,0.002803544410822357;139,0.002758321466714133;140,0.002745305268778925;141,0.0027376846742613033;142,0.0027258922214311145;143,0.0026464044143823424;144,0.002564747241011036;145,0.002551119170523318;146,0.0025214155393378426;147,0.0024547214311142753;148,0.0023914204343182628;149,0.0022731621573513707;150,0.00215813011747953;151,0.002131485849056604;152,0.0019805758276966894;153,0.0018505807226771092;154,0.0017864453542185829;155,0.0017129650231399074;156,0.001634867835528658;157,0.0015906461374154506;158,0.001542252580989676;159,0.0015010902456390174;160,0.0014100881096475615;161,0.0013268178177287292;162,0.001269746796012816;163,0.001222632609469562;164,0.0011542697579209685;165,0.0010567595229619082;166,0.0009667030081879674;167,0.0009131919722321113;168,0.0008560653257386973;169,0.0007790250088999643;170,0.000713554645781417;171,0.0006614342292630829;172,0.0006188256496974012;173,0.0005740477038091848;174,0.0005383365966536134;175,0.0005273228907084372;176,0.0004755362228551087;177,0.0004284220363118547;178,0.0004032240121039516;179,0.0003931559273762905;180,0.00037224101103595583;181,0.0003558873264506942;182,0.0003230687077251691;183,0.00029887192951228196;184,0.00027283953364186543;185,0.00024919900320398723;186,0.00023423593805624776;187,0.00022316660733357065;188,0.00020286356354574583;189,0.00019285110359558563;190,0.0001796680313278747;191,0.00016031060875756496;192,0.00015013127447490208;193,0.00014089756140975437;194,0.0001285488608045568;195,0.00011770202919188324;196,0.00011230642577429691;197,0.00011697890708437168;198,0.0001584193663225347;199,0.00018311676753292989;200,0.00017549617301530795;201,0.0001551375044499822;202,0.00014273317906728374;203,0.0001401744393022428;204,0.00012966135635457458;205,0.0001101370594517622;206,0.00010246084015663937;207,0.00010246084015663937;208,0.00009150275898896405;209,0.00007882030971876112;210,0.00007481532573869705;211,0.0000700872196511214;212,0.000060408508365966546;213,0.00005145291918832324;214,0.0000455566927732289;215,0.00003815859736561053;216,0.00003543298326806693;217,0.00003304111783552866;218,0.00002909175863296547;219,0.0000283686365254539;220,0.000022639284442862233;221,0.00001640930936276255;222,0.00001029058383766465;223,0.00001067995728017088;224,0.000010179334282662869;225,0.00000728684585261659;226,0.000007398095407618371;227,0.00000639684941260235;228,0.00000578497686009256;229,0.000005117479530081881;230,0.0000048949804200783195;231,0.00000561810252758989;232,0.00000472810608757565;233,0.0000030037379850480604;234,0.00000200249199003204;235,0.0000027812388750444995;236,0.0000017243681025275898;237,0.0000011124955500177999;238,0.00000077874688501246;239,0.0000012237451050195803;240,0.00000200249199003204;241,0.00000211374154503382;242,0.00000250311498754005;243,0.00000228061587753649;244,0.00000250311498754005;245,0.0000025587397650409404;246,0.0000021137415450338195;247,0.00000139061943752225;248,0.00000022249911000355996;249,0.0000007231221075115698;250,0.0000009456212175151301;251,0.0000012237451050195803;252,0.0000018912424350302601;253,0.0000023918654325382703;254,0.0000020581167675329305;255,0.0000011681203275186902;256,0.0000008899964400142398;257,0.00000077874688501246;258,0.00000050062299750801;259,0.00000027812388750445;260,0.0000004449982200071199;261,0.00000033374866500534;262,0.0000008343716625133501;263,0.00000200249199003204;264,0.0000016131185475258102;265,0.00000038937344250623;266,0;267,0;268,0;269,0.00000027812388750445;270,0.0000006674973300106801;271,0.00000044499822000712003;272,0.00000044499822000712003;273,0.0000005006229975080099;274,0.0000005562477750089;275,0.00000016687433250267;276,0.0000005562477750089;277,0.00000116812032751869;278,0.0000008343716625133501;279,0.00000033374866500534;280,0.00000005562477750088999;281,0.00000022249911000356001;282,0.0000006674973300106801;283,0.0000007787468850124599;284,0.00000022249911000356001;285,0.00000038937344250623;286,0.0000008343716625133502;287,0.0000007231221075115702;288,0.0000008343716625133501;289,0.00000038937344250622997;290,0.00000016687433250267;291,0.00000027812388750445;292,0.00000022249911000355996;293,0.00000011124955500177998;294,0.00000022249911000355996;295,0.00000011124955500177998;296,0.00000016687433250267;297,0.00000027812388750444997;298,0.00000022249911000355996;299,0.00000022249911000355996;300,0.00000005562477750088999;301,0.00000011124955500177998;302,0.00000016687433250267;303,0.00000022249911000355996;304,0.0000004449982200071199;305,0.00000033374866500534;306,0.00000050062299750801;307,0.0000008343716625133501;308,0.0000011124955500177999;309,0.0000004449982200071199;310,0.00000027812388750444997;311,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0.0002869126023495906;2,0.00027261703453186186;3,0.00027150453898184407;4,0.00025654147383410476;5,0.00027439702741189037;6,0.00026677643289426843;7,0.0002727839088643646;8,0.0002792920078319687;9,0.0002662201851192595;10,0.00025854396582413667;11,0.00027334015663937346;12,0.0002855776076895692;13,0.0003132787468850125;14,0.0003194530971876113;15,0.0003185074759700961;16,0.00031194375222499114;17,0.0003072712709149164;18,0.00031338999644001423;19,0.0003077718939124243;20,0.00030593627625489497;21,0.0003107756318974724;22,0.0003056025275898896;23,0.00030532440370238526;24,0.0002955344428622286;25,0.00029403257386970453;26,0.0002933650765396939;27,0.00029492257030971875;28,0.0002934207013171947;29,0.0002878582235671058;30,0.0002910844606621574;31,0.0002924194553221787;32,0.0002857444820220719;33,0.0002910844606621574;34,0.00029464444642221435;35,0.00029453319686721256;36,0.00030259878960484164;37,0.00029592381630473476;38,0.000322123086507654;39,0.0003582235671057316;40,0.0003986627803488786;41,0.00044015886436454257;42,0.0004953386436454255;43,0.0005383365966536134;44,0.0005944063723745105;45,0.0006480842826628694;46,0.0006843516375934498;47,0.0007308539515841937;48,0.0007791362584549661;49,0.0008339822890708437;50,0.000870805891776433;51,0.0009105776076895692;52,0.0009545211819152724;53,0.0010044166073335708;54,0.0010405170879316484;55,0.0010766731933072268;56,0.0011123843004627984;57,0.001162001601993592;58,0.0012242457280170881;59,0.0012731399074403704;60,0.0013215334638661447;61,0.0013566883232467072;62,0.0013773807404770383;63,0.0014245505517977927;64,0.001437622374510502;65,0.001296446689213243;66,0.0011478729085083658;67,0.0009609736561053757;68,0.0007918743325026701;69,0.0006107044321822714;70,0.00041145647917408337;71,0.00021270914916340336;72,0.000004227483090067639;73,0.00000417185831256675;74,0.00000511747953008188;75,0.000005006229975080099;76,0.0000033374866500534;77,0.00000467248131007476;78,0.00000411623353506586;79,0.0000038937344250623;80,0.0000039493592025631895;81,0.00000606310074759701;82,0.0000043387326450694205;83,0.0000033931114275542897;84,0.0000026143645425418303;85,0.0000022249911000355997;86,0.0000035043609825560695;87,0.00000311498754004984;88,0.0000027812388750444995;89,0.0000025587397650409404;90,0.00000228061587753649;91,0.0000025031149875400496;92,0.00000239186543253827;93,0.00000250311498754005;94,0.0000025031149875400496;95,0.0000016687433250266997;96,0.0000012793698825204698;97,0.00000133499466002136;98,0.00000139061943752225;99,0.0000013349946600213599;100,0.00000133499466002136;101,0.00000105687077251691;102,0.0000012793698825204696;103,0.0000012237451050195799;104,0.0000008899964400142398;105,0.00000094562121751513;106,0.00000094562121751513;107,0.00000083437166251335;108,0.00000088999644001424;109,0.00000044499822000712;110,0.00000027812388750444997;111,0.00000005562477750088999;112,0.0000006118725525097899;113,0.00000033374866500534;114,0.00000022249911000356;115,0.00000011124955500177998;116,0.00000027812388750444997;117,0.0000005006229975080099;118,0.00000022249911000356;119,0.00000011124955500177998;120,0.00000022249911000356001;121,0.0000003893734425062299;122,0.00000033374866500533997;123,0.00000038937344250622997;124,0;125,0.00000033374866500534;126,0.00000022249911000355996;127,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.0002748420256318975;30,0.0014678822534709862;31,0.002608412691349235;32,0.0028529948380206483;33,0.0028622841758632967;34,0.0028679579031683873;35,0.0028571666963332146;36,0.0028333592915628343;37,0.0028284086863652547;38,0.0028234024563901744;39,0.0028414805090779638;40,0.0028307449270202926;41,0.002825905571377715;42,0.002810553132787469;43,0.0028331367924528303;44,0.002812555624777501;45,0.0028013750444998223;46,0.0027957013171947317;47,0.002786022605909577;48,0.0028117212531149874;49,0.0028088843894624425;50,0.002813389996440014;51,0.0027895269668921324;52,0.002767944553221787;53,0.002781072000711997;54,0.00273874154503382;55,0.002737573424706301;56,0.002750200249199003;57,0.0027621039515841935;58,0.002737295300818797;59,0.0027552621039515844;60,0.00276749955500178;61,0.0027285622107511573;62,0.002668487451050196;63,0.002673048682805269;64,0.0026160332858668565;65,0.002312433250266999;66,0.001972120861516554;67,0.0016164004093983625;68,0.001302676664293343;69,0.0009756029725881098;70,0.0006466936632253471;71,0.00032551619793520824;72,0.00000873309006763973;73,0.000006396849412602349;74,0.00000706434674261303;75,0.000006508098967604129;76,0.00000656372374510502;77,0.0000070643467426130306;78,0.000006341224635101459;79,0.0000071755962976148095;80,0.00000511747953008188;81,0.00000689747241011036;82,0.0000071755962976148095;83,0.0000066749733001068;84,0.00000539560341758633;85,0.00000595185119259523;86,0.00000617435030259879;87,0.00000567372730509078;88,0.000006786222855108579;89,0.00000617435030259879;90,0.0000066749733001068;91,0.00000572935208259167;92,0.00000595185119259523;93,0.00000695309718761125;94,0.000006229975080099679;95,0.000006396849412602349;96,0.000006229975080099679;97,0.0000057849768600925595;98,0.00000528435386258455;99,0.0000061187255250979;100,0.000005395603417586329;101,0.0000039493592025631895;102,0.000005006229975080099;103,0.0000034487362050551796;104,0.00000478373086507654;105,0.0000062855998576005695;106,0.00000522872908508366;107,0.0000028368636525453894;108,0.00000433873264506942;109,0.00000433873264506942;110,0.0000031706123175507297;111,0.0000043943574225703095;112,0.00000383810964756141;113,0.0000030593627625489495;114,0.00000239186543253827;115,0.0000022249911000355997;116,0.00000378248487006052;117,0.00000383810964756141;118,0.00000322623709505162;119,0.0000029481132075471697;120,0.0000035599857600569602;121,0.000004227483090067641;122,0.000004171858312566749;123,0.0000029481132075471697;124,0.0000030037379850480596;125,0.00000322623709505162;126,0.0000021137415450338195;127,0.0000012237451050195799;128,0.00000005562477750089;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000022249911000356004;46,0.000004227483090067641;47,0.00001451806692773229;48,0.00002008054467782129;49,0.000028535510857956568;50,0.000039771715913136346;51,0.00004867168031327874;52,0.00005579165183339266;53,0.00006057538269846921;54,0.00007075471698113209;55,0.00008143467426130295;56,0.00009311587753648985;57,0.00009233713065147741;58,0.00010635457458170167;59,0.00010663269846920613;60,0.00012115076539693842;61,0.00013311009255962975;62,0.00013683695265218938;63,0.00014768378426486292;64,0.0001450694197223211;65,0.0001379494482022072;66,0.00012204076183695266;67,0.00010846831612673551;68,0.00009328275186899253;69,0.00007247908508365968;70,0.000048115432538269845;71,0.000027478640085439655;72,0.00000033374866500534;73,0.00000061187255250979;74,0.0000005006229975080099;75,0.0000006118725525097899;76,0.00000027812388750445;77,0.0000006118725525097899;78,0.00000061187255250979;79,0.00000066749733001068;80,0.0000005562477750089;81,0.0000008899964400142398;82,0.0000006118725525097899;83,0.0000007231221075115699;84,0.0000005006229975080099;85,0.00000038937344250623;86,0.00000050062299750801;87,0.00000027812388750445;88,0.00000033374866500534;89,0.00000038937344250622997;90,0.0000005562477750088999;91,0.00000033374866500533997;92,0.00000016687433250266996;93,0;94,0.0000005006229975080099;95,0.0000006674973300106799;96,0.00000016687433250267004;97,0.00000016687433250267;98,0;99,0.00000011124955500178;100,0;101,0;102,0;103,0.00000027812388750445;104,0;105,0;106,0;107,0.00000016687433250267;108,0;109,0;110,0.000000055624777500889984;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000011124955500177998;50,0;51,0.00000005562477750089;52,0.00000038937344250623;53,0.00000033374866500534;54,0.00000033374866500534;55,0.00000016687433250267;56,0.00000016687433250266996;57,0.00000011124955500178;58,0.0000005006229975080098;59,0.00000038937344250622997;60,0.00000005562477750089;61,0.00000027812388750445007;62,0.0000008343716625133501;63,0.00000077874688501246;64,0.0000006118725525097899;65,0.000017188056247775008;66,0.000043387326450694205;67,0.00006591536133855464;68,0.00008588465646137416;69,0.00011764640441438234;70,0.00014757253470986116;71,0.00017888928444286225;72,0.00021259789960840155;73,0.00022522472410110362;74,0.00022961908152367396;75,0.00022511347454610183;76,0.00023662780348878608;77,0.0002497552509789961;78,0.0002575983446066216;79,0.0002549283552865789;80,0.0002419121573513706;81,0.00022600347098611606;82,0.00022817283730865076;83,0.00021715913136347457;84,0.00020981666073335706;85,0.0002074804200783197;86,0.0002023629405482378;87,0.0001862317550729797;88,0.0001748286756852973;89,0.0001758855464578142;90,0.0001634812210751157;91,0.00015491500533997864;92,0.00015163314346742612;93,0.00014501379494482022;94,0.00012765886436454256;95,0.0001256007475970096;96,0.00012142888928444285;97,0.00010596520113919546;98,0.00010051397294410822;99,0.0000911690103239587;100,0.00008332591669633321;101,0.00007487095051619794;102,0.00006391286934852261;103,0.00005523540405838378;104,0.000047670434318262726;105,0.000045389818440726245;106,0.00003921546813812745;107,0.0000311498754004984;108,0.000026088020647917412;109,0.000016687433250267;110,0.000009400587397650409;111,0.0000039493592025631895;112,0.0000006118725525097899;", + "silktouch": false, + "dim": "minecraft:overworld" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0.00000016687433250267;68,0.00000011124955500177997;69,0.00000038937344250623;70,0.00000033374866500533997;71,0.00024625088999644;72,0.001119003648985404;73,0.0020247419010323963;74,0.002231499199003204;75,0.00220062744749021;76,0.00219439747241011;77,0.0022297748309006763;78,0.002219428622285511;79,0.00220997241011036;80,0.002225547347810609;81,0.0022029636881452474;82,0.0022569753470986116;83,0.0022625378248487004;84,0.0022183717515129944;85,0.0021683650765396936;86,0.0021586863652545392;87,0.002144168298326807;88,0.002072301085795657;89,0.001952318440726237;90,0.0017830522427910293;91,0.0016352572089711644;92,0.0015010902456390174;93,0.0013773251156995372;94,0.0012891042185831257;95,0.0011668965824136704;96,0.0011045412068351728;97,0.0010881875222499109;98,0.0010998131007475972;99,0.0011385279458882166;100,0.001158997864008544;101,0.0012003826984692061;102,0.0012190169989320045;103,0.0012260813456746174;104,0.0012271938412246352;105,0.0011932071021715914;106,0.0011879783730865076;107,0.001187700249199003;108,0.0011786334104663583;109,0.0011783552865788538;110,0.0011561610003559986;111,0.0011875889996440015;112,0.0011650609647561412;113,0.0011285154859380561;114,0.0011489854040583837;115,0.0011568841224635102;116,0.0011090468138127449;117,0.0010889106443574227;118,0.001097754983980064;119,0.0011147205411178355;120,0.0011078786934852263;121,0.0011019268422926309;122,0.0011143867924528301;123,0.0011093249377002491;124,0.0011002024741901034;125,0.0010717225881096476;126,0.0010720007119971522;127,0.001094806870772517;128,0.0010751713243147027;129,0.0010295033819864722;130,0.0009920122819508722;131,0.000983056692773229;132,0.0009985760056959773;133,0.0010340089889640442;134,0.0010252202741189037;135,0.0010227171591313635;136,0.0010102015841936631;137,0.0010174884300462798;138,0.0010203809184763262;139,0.0010060297258810964;140,0.0009981310074759701;141,0.0009863941794232823;142,0.0009818885724457102;143,0.0009769379672481312;144,0.0009786067105731577;145,0.0010069753470986116;146,0.0009967960128159487;147,0.0009775498398006408;148,0.0009838354396582414;149,0.0009704854930580279;150,0.0009892866678533287;151,0.0010094784620861517;152,0.0010112584549661803;153,0.0009868948024207903;154,0.0009706523673905303;155,0.0009809985760056961;156,0.0009580811676753293;157,0.000998854129583482;158,0.001021437789248843;159,0.000993180402278391;160,0.000980942951228195;161,0.0009539093093627626;162,0.0009407262370950517;163,0.0009502936988252048;164,0.0009353862584549663;165,0.00093249377002492;166,0.0009679823780704878;167,0.000981944197223211;168,0.0009850035599857602;169,0.0009516286934852262;170,0.0009276544143823424;171,0.0009369437522249913;172,0.0009272094161623353;173,0.0009495149519401923;174,0.0009684830010679958;175,0.0009720429868280529;176,0.0009888972944108224;177,0.0009766042185831258;178,0.0009596386614453543;179,0.000957691794232823;180,0.000956746173015308;181,0.0009609736561053755;182,0.0009479574581701673;183,0.0009577474190103239;184,0.000972877358490566;185,0.0009371106265574937;186,0.0008963376646493415;187,0.0008848789604841581;188,0.0008627959238163049;189,0.0008781483624065503;190,0.0008614053043787825;191,0.0008733090067639729;192,0.0008751446244215024;193,0.0008812633499466003;194,0.0008775921146315414;195,0.0008525053399786402;196,0.0008499466002135992;197,0.0008429935030259879;198,0.0008740877536489855;199,0.0008933339266642933;200,0.0008900520647917409;201,0.0008858245817016733;202,0.0008557872018511927;203,0.0008508922214311143;204,0.0008703052687789249;205,0.0008562878248487007;206,0.0008554534531861873;207,0.000852115966536134;208,0.0008723633855464578;209,0.000876312744749021;210,0.0008665227839088645;211,0.0008553422036311855;212,0.0008440503737985048;213,0.0008350947846208615;214,0.0008449403702385191;215,0.0008175173549305803;216,0.0008042786578853684;217,0.000799939925240299;218,0.0007864787290850837;219,0.0007573869704521183;220,0.0007449826450694197;221,0.0007364164293342827;222,0.0007198958704165184;223,0.0007062121751512994;224,0.0007298527055891777;225,0.0007468182627269491;226,0.0007482645069419723;227,0.0007368058027767889;228,0.0007668988074047704;229,0.0007571088465646138;230,0.000735748932004272;231,0.0007319108223567106;232,0.0007320220719117123;233,0.0007145558917764329;234,0.0007019290672837309;235,0.0007161133855464578;236,0.0007086040405838378;237,0.0007137215201139195;238,0.0007173371306514775;239,0.0007131652723389107;240,0.0007213977394090424;241,0.0007112740299038804;242,0.000701372819508722;243,0.0007101615343538627;244,0.0007226771092915629;245,0.000716558383766465;246,0.0007178377536489854;247,0.0007473188857244572;248,0.0007285733357066573;249,0.0007127202741189036;250,0.0007264039693841225;251,0.0007280170879316483;252,0.0007088821644713422;253,0.0007231777322890709;254,0.0007344139373442508;255,0.0007405882876468494;256,0.000766120060519758;257,0.0007572200961196155;258,0.0007485982556069776;259,0.0007649519401922392;260,0.0007606132075471699;261,0.0007543832324670702;262,0.0007623932004271984;263,0.0007572200961196156;264,0.0007669544321822713;265,0.0008359847810608758;266,0.0009200338198647206;267,0.000966424884300463;268,0.001039627091491634;269,0.0011087130651477395;270,0.0011688990744037025;271,0.0012435475258098967;272,0.0012996173015307941;273,0.0013791607333570668;274,0.001448246707013172;275,0.001548871929512282;276,0.0016152879138483446;277,0.0016779770380918476;278,0.0017342693129227486;279,0.0017804935030259878;280,0.001834560786756853;281,0.0019054823780704877;282,0.001947312210751157;283,0.0019814101993592026;284,0.002015118814524742;285,0.0020477705589177645;286,0.0020894335172659314;287,0.0021680313278746887;288,0.0021747063011747954;289,0.002245182894268423;290,0.0022440703987184054;291,0.0022172592559629766;292,0.002268767799928801;293,0.0022821733713065152;294,0.002276944642221431;295,0.002331568173727305;296,0.0023097632609469566;297,0.0023449181203275184;298,0.0023879160733357068;299,0.0023770136169455323;300,0.002395369793520826;301,0.002423293431826273;302,0.002444430847276611;303,0.0024715201139195444;304,0.002527812388750445;305,0.002558294766820933;306,0.0025844940370238524;307,0.00234686498754005;308,0.0013154147383410467;309,0.0002813501245995016;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0018440169989320044;66,0.0018124777500889999;67,0.0018744437522249912;68,0.0019176642043431825;69,0.0018737762548949805;70,0.0018470207369170526;71,0.0018224902100391599;72,0.001759745461018156;73,0.001648940904236383;74,0.001583859914560342;75,0.0015499288002847988;76,0.0015081545923816306;77,0.0014268311676753293;78,0.0013512927198291206;79,0.0012518912424350302;80,0.0011972677109291564;81,0.0011262904948380207;82,0.0010534220363118546;83,0.0010048059807760768;84,0.000986616678533286;85,0.0009241500533997864;86,0.000862684674261303;87,0.0007874799750800998;88,0.0007216758632965468;89,0.0006317862228551086;90,0.000514251067995728;91,0.000415183339266643;92,0.00033118992524029905;93,0.00026733268066927735;94,0.00020820354218583124;95,0.00016492746529013884;96,0.00013105197579209684;97,0.00009929022783908864;98,0.00006385724457102171;99,0.000025809896760412957;100,0.00000773184407262371;101,0.0000006118725525097899;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00010736625022249912;66,0.00009544255768289427;67,0.00006590319341847633;68,0.00002847727866901032;69,0.000009881220240744037;70,0.000010397487706924171;71,0.000011427415227839089;72,0.000010443551975792098;73,0.000009477071466714133;74,0.000007876120839266643;75,0.000007934353028212887;76,0.000008449751357244571;77,0.000008222037424350303;78,0.000006758410466358134;79,0.0000062073775142399446;80,0.0000046220713554645795;81,0.000004894980420078321;82,0.000007550194408597366;83,0.000010493961930402278;84,0.00001043312233001068;85,0.000008319380784976861;86,0.0000056772038536845855;87,0.000005602458058917764;88,0.00000843584516286935;89,0.000010004637715824136;90,0.000009528350558472764;91,0.000011934991322534709;92,0.00001446939524741901;93,0.000012636385001334996;94,0.000003340963198647205;95,0.000003913724579476682;96,0.0000022345516086685656;97,0.000000954312588999644;98,0.0000003893734425062299;99,0.0000006674973300106799;100,0.0000009490977661089354;101,0.00000033374866500533997;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0.000018634300462798147;67,0.000099623976504094;68,0.00025954521181915274;69,0.00043954699181203275;70,0.0005972988608045569;71,0.0007551619793520826;72,0.0009005651477394091;73,0.0010569820220719117;74,0.001248498131007476;75,0.0014479129583481664;76,0.0015891442684229265;77,0.0017040094339622644;78,0.0018975836596653614;79,0.0020774185653257386;80,0.0022336685653257388;81,0.0023668342826628696;82,0.0025278123887504454;83,0.002700471698113208;84,0.002851937967248131;85,0.0030175329298682808;86,0.003173616055535778;87,0.0033238585795656818;88,0.003413915094339623;89,0.0034910110359558564;90,0.003447123086507654;91,0.003376924617301531;92,0.0032220096119615523;93,0.0030762726949092206;94,0.002932093271626914;95,0.0026387281950872197;96,0.0026024052153791385;97,0.0026406194375222505;98,0.0027210528657885366;99,0.002791807582769669;100,0.002872129761480954;101,0.0029334838910644364;102,0.0030129160733357073;103,0.00311126067995728;104,0.003195420968316127;105,0.0032223989854040583;106,0.0033073936454254176;107,0.0033397672659309366;108,0.003381152100391599;109,0.0034655905126379496;110,0.003544077073691705;111,0.003602038091847633;112,0.0036556603773584906;113,0.003722966358134568;114,0.0038060141509433966;115,0.003873653880384479;116,0.003905304378782485;117,0.003974000978996084;118,0.0040482044321822706;119,0.0041125066749733005;120,0.004090312388750445;121,0.004126023495906017;122,0.004287335350658597;123,0.004315926486294055;124,0.004340178889284443;125,0.004393356176575294;126,0.004416162335350658;127,0.0044673371306514775;128,0.004486082680669278;129,0.0044816883232467065;130,0.004462553399786401;131,0.00431753960484158;132,0.004229151833392666;133,0.00418810074759701;134,0.0040774630651477396;135,0.00394001423994304;136,0.003889840690637237;137,0.0038332702919188326;138,0.0037591224635101462;139,0.0037014951940192243;140,0.0036466491634033465;141,0.003547192061231755;142,0.0034649786400854396;143,0.0034256519223923106;144,0.0033709171413314346;145,0.0032193396226415094;146,0.0030729352082591675;147,0.0030242635279458885;148,0.002973978729085084;149,0.0029240833036667854;150,0.002869737896048416;151,0.0027944775720897116;152,0.0027026966892132434;153,0.002627714489142044;154,0.002583437166251335;155,0.002523974279102883;156,0.0024311365254538987;157,0.0023588799394802422;158,0.00228061587753649;159,0.0021728706835172657;160,0.0021104040583837663;161,0.00203436498754005;162,0.001921168565325739;163,0.0018227127091491636;164,0.0017655860626557495;165,0.0017194731221075116;166,0.0016684652011391956;167,0.0015915361338554649;168,0.0015273451406194374;169,0.0014605397828408688;170,0.0013658107867568529;171,0.0012949448202207192;172,0.001237929423282307;173,0.0011531572623709506;174,0.0011103818084727663;175,0.0010584838910644356;176,0.0010188790494838021;177,0.0009726548593805625;178,0.0008960039159843362;179,0.0008121217515129939;180,0.0007434807760768957;181,0.0006855197579209683;182,0.0006256118725525098;183,0.0005759945710217158;184,0.0005165873086507654;185,0.0004343182627269491;186,0.00035861294054823783;187,0.0002859113563545746;188,0.00021626913492346032;189,0.00015091002135991457;190,0.00008927776788892846;191,0.00003882609469562122;192,0.0000072312210751157;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "bigreactors:benitoite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0007680113029547883;66,0.0014336173905304377;67,0.0017221987362050551;68,0.0018416807582769673;69,0.0018635412958348167;70,0.0018584238163047349;71,0.0018431826272694912;72,0.0018041896582413671;73,0.0018003515485938057;74,0.001791173460306159;75,0.0017943996974012105;76,0.0018197645959416161;77,0.0018023540405838377;78,0.0018151477394090423;79,0.0018162602349590601;80,0.0018378982734069062;81,0.001815370238519046;82,0.0018217670879316483;83,0.0018394001423994305;84,0.0018189858490566036;85,0.0017875022249911002;86,0.001796124065503738;87,0.0017911178355286578;88,0.0017411667853328588;89,0.0016905482378070486;90,0.0016214066393734424;91,0.0015113808294766823;92,0.0013842782128871485;93,0.0012700805446778213;94,0.0011494860270558917;95,0.0010051397294410824;96,0.0009579142933428268;97,0.000954743681025276;98,0.0009530749377002494;99,0.0009738786044855822;100,0.00099123353506586;101,0.0009764373442506232;102,0.0009382231221075116;103,0.0009492368280526878;104,0.0009420612317550729;105,0.0009324381452474192;106,0.0009264862940548237;107,0.000911745728017088;108,0.0009153613385546459;109,0.000906183250266999;110,0.0009207013171947312;111,0.0008958926664293343;112,0.0008849902100391599;113,0.0009099657351370595;114,0.0008893845674617302;115,0.0008946689213243147;116,0.0008827652189391242;117,0.0008660777856888572;118,0.0008678021537913849;119,0.0008657996618013529;120,0.0008574003203987185;121,0.0008498909754360983;122,0.000874810875756497;123,0.0008474434852260592;124,0.0008518378426486295;125,0.000837375400498398;126,0.0008234135813456747;127,0.0008413803844784622;128,0.0008218004627981489;129,0.0008170167319330723;130,0.0008061699003203988;131,0.0007917630829476683;132,0.0007904837130651478;133,0.000794878070487718;134,0.0007879249733001068;135,0.0007775787646849411;136,0.0007752981488074048;137,0.0007891487184051263;138,0.0007895937166251335;139,0.0007914849590601638;140,0.0008071711463154148;141,0.0007929868280526878;142,0.0007817506229975081;143,0.0007862562299750801;144,0.0007857556069775721;145,0.000773184407262371;146,0.000751435119259523;147,0.000759556336774653;148,0.0007646738163047347;149,0.0007657863118547526;150,0.0007547169811320755;151,0.0007608357066571734;152,0.0007646738163047347;153,0.0007657863118547526;154,0.0007521582413670346;155,0.0007590557137771448;156,0.0007711819152723389;157,0.0007789137593449627;158,0.0007795256318974725;159,0.0007440370238519047;160,0.0007294077073691705;161,0.000732244571021716;162,0.0007384745461018157;163,0.0007093271626913492;164,0.0007138327696689214;165,0.0007107177821288715;166,0.0007082146671413313;167,0.0007209527411890352;168,0.0007398095407618369;169,0.0007391420434318262;170,0.0007156683873264507;171,0.000696811587753649;172,0.0006930847276610894;173,0.0007193396226415094;174,0.0007111627803488786;175,0.0007204521181915272;176,0.0007418676575293699;177,0.0007218427376290495;178,0.0007045990566037736;179,0.0007286845852616589;180,0.0007219539871840513;181,0.0007265708437166252;182,0.0007262370950516198;183,0.0007105509077963688;184,0.0006995928266286936;185,0.0007028190637237452;186,0.000695754716981132;187,0.0006819597721609114;188,0.0005960751156995371;189,0.00032846431114275543;190,0.00006263349946600214;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00011987139551441793;66,0.00011842515129939481;67,0.00007125533997864008;68,0.00002530927376290495;69,0.000016687433250267;70,0.00001234870060519758;71,0.00001190370238519046;72,0.000012571199715201139;73,0.000008288091847632611;74,0.0000094562121751513;75,0.0000122374510501958;76,0.000015574937700249205;77,0.00001123620505517978;78,0.00001190370238519046;79,0.00001540806336774653;80,0.000019746796012815952;81,0.00001980242079031684;82,0.00001902367390530438;83,0.00001640930936276255;84,0.00001729930580277679;85,0.00002936988252046992;86,0.00003404236383054468;87,0.00003810297258810964;88,0.00004189241055535778;89,0.00005298260056959772;90,0.00007081034175863297;91,0.00008738652545389819;92,0.00008840863074047704;93,0.00009018862362050552;94,0.00007186721253114987;95,0.00003665672837308651;96,0.00002875800996796013;97,0.000028758009967960127;98,0.000022249911000356;99,0.00002069241723033108;100,0.000023751779992880028;101,0.000030259878960484155;102,0.00004271982912068352;103,0.00003810297258810965;104,0.00002786801352794589;105,0.00003181737273050908;106,0.00004060608757564969;107,0.000040606087575649705;108,0.00004138483446066216;109,0.000039083359291562835;110,0.000030205992457280176;111,0.000034779392132431466;112,0.00003215112139551442;113,0.00003476548593805624;114,0.00003598923104307583;115,0.00003954921680313279;116,0.000038047347810608754;117,0.0000294811320754717;118,0.00002953675685297259;119,0.00002809051263794945;120,0.000026978017087931654;121,0.00002441927732289071;122,0.000022528034887860452;123,0.00002875800996796013;124,0.000029926130295478818;125,0.00002530927376290495;126,0.00002486427554289783;127,0.000028655451784442867;128,0.000026875458904414383;129,0.00003543298326806693;130,0.000036712353150587404;131,0.00004194108223567106;132,0.0000394935920256319;133,0.000025420523317906726;134,0.000025253648985404063;135,0.00002925863296546814;136,0.00003109425062299751;137,0.0000355998576005696;138,0.000036489854040583834;139,0.00003832547169811321;140,0.000038937344250623;141,0.00003126112495550018;142,0.00003181737273050908;143,0.00003637860448558206;144,0.000035099234603061584;145,0.00003187299750800997;146,0.00003454298682805269;147,0.000028702385190459238;148,0.000027812388750445;149,0.00002397427910288359;150,0.00002586552153791385;151,0.000026421769312922746;152,0.000022917408330366675;153,0.00001907929868280527;154,0.000018467426130295477;155,0.00001824492702029192;156,0.00001323869704521182;157,0.000015797436810252758;158,0.000018968049127803488;159,0.00002163803844784621;160,0.00002286178355286579;161,0.00002252803488786045;162,0.000021860537557849766;163,0.000023584905660377357;164,0.00003009300462798148;165,0.00003398673905304379;166,0.000030315503737985044;167,0.00002230553577785689;168,0.000020914916340334642;169,0.000021582413670345318;170,0.000029314257742969028;171,0.000028813634745461016;172,0.00002408552865788537;173,0.000024641776432894266;174,0.00002008054467782129;175,0.000020080544677821286;176,0.000021081790672837313;177,0.000017744304022783905;178,0.00001825361839177643;179,0.000018801174795300818;180,0.000015185564257742968;181,0.000017188056247775005;182,0.00001974679601281595;183,0.000022472410110359556;184,0.000020525542897828415;185,0.000022917408330366682;186,0.00002553177287290851;187,0.00002163803844784621;188,0.000018022427910288357;189,0.000020358668565325738;190,0.00001841180135279459;191,0.00001729930580277679;192,0.00001535243859024564;193,0.000014851815592737629;194,0.000021582413670345318;195,0.00001980242079031684;196,0.00001791117835528658;197,0.00001880117479530082;198,0.00001685430758276967;199,0.000013850569597721609;200,0.00001590868636525454;201,0.00001212620149519402;202,0.000008621840512637949;203,0.00001218182627269491;204,0.00001696555713777145;205,0.000018411801352794588;206,0.00001412869348522606;207,0.000012237451050195798;208,0.000012348700605197578;209,0.000011792452830188679;210,0.000012014951940192238;211,0.00001029058383766465;212,0.00001474056603773585;213,0.00001268244927020292;214,0.000009901210395158419;215,0.0000094562121751513;216,0.00000645247419010324;217,0.000011180580277678892;218,0.00001496306514773941;219,0.000013183072267710929;220,0.000011180580277678889;221,0.00000795434318262727;222,0.000007064346742613028;223,0.000007731844072623708;224,0.00000867746529013884;225,0.00001023495906016376;226,0.000011124955500178;227,0.00000917808828764685;228,0.000005618102527589891;229,0.000006897472410110361;230,0.000008510590957636169;231,0.000009289337842648629;232,0.00000800996796012816;233,0.000007398095407618369;234,0.00000617435030259879;235,0.00000495060519757921;236,0.000005451228195087219;237,0.00000400498398006408;238,0.00000394935920256319;239,0.0000030593627625489503;240,0.000004672481310074759;241,0.000004561231755072979;242,0.000004283107867568528;243,0.000003337486650053399;244,0.00000194686721253115;245,0.00000061187255250979;246,0.0000007787468850124599;247,0.00000189124243503026;248,0.0000043387326450694205;249,0.000004616856532573869;250,0.00000383810964756141;251,0.00000322623709505162;252,0.00000289248843004628;253,0.0000005006229975080099;254,0.00000127936988252047;255,0.0000008899964400142398;256,0.0000003337486650053399;257,0.00000016687433250266998;258,0.00000005562477750088999;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.001031005250978996;66,0.0010790094339622643;67,0.0011771315414738342;68,0.0013150809896760414;69,0.0013452296190815238;70,0.0013396115165539338;71,0.0013003960484158064;72,0.0012476637593449625;73,0.0012712486650053399;74,0.0013347165361338553;75,0.0013765463688145247;76,0.0014149274652901387;77,0.0014211018155927376;78,0.001439624866500534;79,0.0014678822534709862;80,0.001476949092203631;81,0.0015269001423994307;82,0.001523618280526878;83,0.0015212264150943396;84,0.0015157751868992526;85,0.0015448669455322178;86,0.0015210595407618372;87,0.0015070420968316127;88,0.0014954721431114277;89,0.0014267199181203275;90,0.0013512370950516197;91,0.001338554645781417;92,0.001314747241011036;93,0.0011865877536489852;94,0.0010733357066571732;95,0.0009407262370950515;96,0.0008830989676041295;97,0.0008875489498042007;98,0.0008846008365966536;99,0.0008901633143467427;100,0.0009171413314346743;101,0.000907685119259523;102,0.0009244281772872909;103,0.0009968516375934496;104,0.0010550907796368814;105,0.001020436543253827;106,0.0009746573513705946;107,0.0009616967782128872;108,0.0009422281060875758;109,0.0009287112851548594;110,0.0009441749733001068;111,0.0009509055713777146;112,0.0009812210751156997;113,0.0010069753470986118;114,0.0010220496618013528;115,0.0009857266820932718;116,0.0009447868458526167;117,0.0009356087575649698;118,0.0009773273406906372;119,0.0010184896760412959;120,0.0010345096119615523;121,0.0010273896404414382;122,0.0010213265396938412;123,0.001042686454254183;124,0.0010326183695265217;125,0.0010372908508365967;126,0.0010533107867568528;127,0.0010848500355998577;128,0.0010499176753292988;129,0.0010312833748665005;130,0.0010235515307938769;131,0.0010157640619437524;132,0.001033563990744037;133,0.001068385101459594;134,0.0010540339088643646;135,0.0009978528835884657;136,0.0010237184051263798;137,0.0010336752402990389;138,0.000996796012815949;139,0.001014262192951228;140,0.0010570932716269135;141,0.0010864631541473834;142,0.0010661044855820576;143,0.001082569419722321;144,0.0010816794232823067;145,0.0010647138661445356;146,0.0010653813634745463;147,0.0010862406550373798;148,0.001111994927020292;149,0.0011394735671057315;150,0.001155994126023496;151,0.0011665072089711644;152,0.0011597766108935566;153,0.0011562722499110002;154,0.0011475391598433607;155,0.0011339110893556427;156,0.0011435341758632965;157,0.0011702896938412246;158,0.0011794121573513708;159,0.0011980464578141689;160,0.0011845296368814527;161,0.0011633922214311144;162,0.00114498042007832;163,0.001121618013527946;164,0.0011259567461730153;165,0.0011329098433606266;166,0.00116500533997864;167,0.0011851415094339623;168,0.0012274163403346388;169,0.0012084482912068351;170,0.0012075026699893202;171,0.0012035533107867568;172,0.0012031639373442508;173,0.0012012170701317195;174,0.0012120082769668922;175,0.001265853061587754;176,0.0012971698113207549;177,0.0012869348522605909;178,0.0012871573513705947;179,0.001280871751512994;180,0.001310241634033464;181,0.0013124666251334996;182,0.0012804823780704876;183,0.0012530037379850482;184,0.0012624599501601995;185,0.0012244682271270917;186,0.0012017176931292273;187,0.001212620149519402;188,0.0012120082769668922;189,0.0012769780170879316;190,0.0013248153257386969;191,0.001279314257742969;192,0.0012246907262370953;193,0.0011870883766464935;194,0.001148262281950872;195,0.0011430891776432895;196,0.001197323335706657;197,0.0011978795834816664;198,0.0011687878248487008;199,0.0011804134033463866;200,0.0011992702029191883;201,0.001169121573513706;202,0.001124009878960484;203,0.0011113274296902812;204,0.001100313723745105;205,0.0010960306158775365;206,0.0011213398896404415;207,0.0011265686187255253;208,0.001103873709505162;209,0.001054312032751869;210,0.001016320309718761;211,0.0009994660021359915;212,0.0010232734069063724;213,0.0010216602883588465;214,0.0010351214845140619;215,0.0010287802598789606;216,0.0009823335706657173;217,0.0009205344428622284;218,0.0009057382520469919;219,0.0009198669455322179;220,0.0008877714489142045;221,0.0008511703453186188;222,0.0008535065859736562;223,0.0008675796546813812;224,0.0008522828408686365;225,0.0008282529369882522;226,0.0008352616589533642;227,0.0008614609291562833;228,0.0008660221609113563;229,0.0008362072801708794;230,0.0008370416518333927;231,0.0008200204699181203;232,0.0008245260768956924;233,0.0008246373264506942;234,0.00081061988252047;235,0.0007727394090423638;236,0.0007469295122819509;237,0.0007482645069419723;238,0.0007592782128871486;239,0.0007856999822000712;240,0.000775743147027412;241,0.0007464845140619438;242,0.0007360826806692773;243,0.00074437077251691;244,0.000735248309006764;245,0.0007178933784264865;246,0.0007244014773940905;247,0.0007310764506941972;248,0.0007262370950516199;249,0.0007057671769312925;250,0.0007027078141687434;251,0.0006801797792808828;252,0.0006723923104307583;253,0.0006643267176931293;254,0.000659821110715557;255,0.0006777322890708438;256,0.0007096052865788537;257,0.0007091046635813458;258,0.0006772316660733357;259,0.0006662179601281596;260,0.0006802354040583838;261,0.000686187255250979;262,0.0006448580455678177;263,0.0006345674617301531;264,0.0006456924172303311;265,0.0006941972232111072;266,0.000750934496262015;267,0.0008366522783908865;268,0.000895113919544322;269,0.0009200338198647206;270,0.0009452874688501247;271,0.0009974078853684585;272,0.00108874377002492;273,0.0011141086685653259;274,0.0011480954076183696;275,0.0012088932894268422;276,0.0012573980954076183;277,0.001264684941260235;278,0.001291551708793165;279,0.0013402233891064434;280,0.0013782707369170526;281,0.0013923438056247777;282,0.0014474679601281597;283,0.0015185008009967961;284,0.0015101570843716627;285,0.00150186899252403;286,0.0014996996262014953;287,0.00153374199003204;288,0.0015219495372018512;289,0.001467937878248487;290,0.0014146493414026345;291,0.0014340623887504449;292,0.0014980865076539692;293,0.0015424194553221786;294,0.0015117702029191884;295,0.0014811765752936988;296,0.0014880740477038093;297,0.0014976415094339623;298,0.0014574804200783197;299,0.0014804534531861874;300,0.0015165539337842649;301,0.001508488341046636;302,0.0015082102171591312;303,0.001525064524741901;304,0.0015290695087219652;305,0.0014830678177287292;306,0.0014760590957636171;307,0.0014889640441438233;308,0.0015144401922392312;309,0.0015227839088643646;310,0.0014958058917764329;311,0.0014677710039159844;312,0.001426441794232823;313,0.0013841669633321467;314,0.0013837219651121396;315,0.001420434318262727;316,0.0014026343894624422;317,0.0013551308294766822;318,0.001327040316838733;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0003261211173905304;66,0.00031046274252402996;67,0.0002115966536133855;68,0.00007736015930936276;69,0.00003465423638305447;70,0.000033541740833036663;71,0.00003160877981488074;72,0.000026811142755428983;73,0.00002425935608757565;74,0.000026053255161979354;75,0.0000245374799750801;76,0.000025420523317906726;77,0.000026644268422926306;78,0.00002469740121039516;79,0.000022653190637237453;80,0.00002069241723033108;81,0.000023751779992880028;82,0.000024808650765396937;83,0.000027812388750444993;84,0.00002864676041295835;85,0.000030704877180491285;86,0.00003771359914560342;87,0.000054011658953364186;88,0.00006419099323602706;89,0.00007704031683873264;90,0.00008634356087575651;91,0.00009306720585617657;92,0.00009704437744749022;93,0.0000884433962264151;94,0.00006430224279102884;95,0.00003537735849056603;96,0.000015408063367746528;97,0.00002291740833036668;98,0.000025031149875400493;99,0.000021582413670345318;100,0.00001969117123531506;101,0.000019246173015307944;102,0.000019461719028123888;103,0.000016325872196511213;104,0.000017918131452474187;105,0.000014684941260234957;106,0.000010846831612673551;107,0.000011792452830188679;108,0.000013127447490210036;109,0.000013850569597721609;110,0.00000828809184763261;111,0.000005395603417586329;112,0.000005729352082591669;113,0.000006174350302598789;114,0.000006007475970096121;115,0.00000428310786756853;116,0.00000239186543253827;117,0.00000255873976504094;118,0.0000025587397650409395;119,0.0000013906194375222496;120,0.00000022249911000356;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.006129516731933073;66,0.006073001957992168;67,0.00637243013527946;68,0.006723199982200071;69,0.006706735048059808;70,0.0065149408152367395;71,0.006331212175151301;72,0.006107433695265219;73,0.005951573068707725;74,0.005794099323602706;75,0.005663325471698113;76,0.005584672036311855;77,0.005464578141687433;78,0.005336529903880385;79,0.005248197757208972;80,0.005124655126379495;81,0.00494749021003916;82,0.004792241456034177;83,0.004693841224635102;84,0.004582202296190815;85,0.004435241634033464;86,0.00435998131007476;87,0.004229151833392667;88,0.003958815414738342;89,0.0036630028479886084;90,0.0033511147205411177;91,0.0030858957814168743;92,0.0027802932538269847;93,0.0024270759166963333;94,0.0021302621039515843;95,0.0018176508543965826;96,0.0016144535421858315;97,0.0015320732467070132;98,0.0014376779992880029;99,0.0013779926130295479;100,0.0013407796368814524;101,0.001250889996440014;102,0.001187199626201495;103,0.0011223967604129586;104,0.0010453008187967247;105,0.0009677042541829833;106,0.0009293231577073692;107,0.000832925418298327;108,0.0007439813990744037;109,0.0006615454788180848;110,0.0006242768778924885;111,0.0005927932538269847;112,0.0005327741189035244;113,0.0004580700427198291;114,0.0003795278568885725;115,0.00031489186543253833;116,0.00023996529013883946;117,0.00015930936276254895;118,0.0000912802598789605;119,0.00004210795656817373;120,0.00001017933428266287;121,0.00000050062299750801;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00005568996278702385;66,0.0000533583662301831;67,0.00003446037268857056;68,0.000003934120157225577;69,0.0000032966372040761836;70,0.0000024544433072267713;71,0.0000048379531910425924;72,0.000006237189179433974;73,0.00000280682230546228;74,0.0000010638238697045213;75,0.0000017591335884656463;76,0.000000083437166251335;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.006204443307226771;66,0.006233590690637238;67,0.006592537379850482;68,0.006977850213599146;69,0.006805524652901389;70,0.0066239653791384835;71,0.006488797169811321;72,0.006385335083659665;73,0.006158385991456034;74,0.006023217782128871;75,0.005875923371306515;76,0.005692917853328587;77,0.005493614275542898;78,0.005387537824848701;79,0.005302153791384835;80,0.0052011391954432185;81,0.005113697045211819;82,0.0049312477750089005;83,0.004709082413670346;84,0.004574081078675685;85,0.004495038269846921;86,0.004330945176219295;87,0.004172915183339267;88,0.003945687967248131;89,0.0036470941616233536;90,0.0033043899074403703;91,0.0030085217159131366;92,0.002680947401210395;93,0.002386080455678177;94,0.0020552799038803847;95,0.0017481198825204701;96,0.001631196600213599;97,0.001609002313990744;98,0.0015337976148095409;99,0.001437622374510502;100,0.0013711507653969383;101,0.0012963910644357422;102,0.0011870883766464937;103,0.0011334660911356356;104,0.0010813456746173017;105,0.0010296702563189746;106,0.0009463443396226416;107,0.0008780371128515486;108,0.0007915962086151656;109,0.0007154458882164471;110,0.0006564279992880028;111,0.0005924595051619795;112,0.000532440370238519;113,0.00046129627981488083;114,0.0003670679067283731;115,0.0002800707547169812;116,0.0002129316482734069;117,0.00015630562477750087;118,0.0000912802598789605;119,0.00003938234247063012;120,0.0000071199715201139205;121,0.00000022249911000356;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00030682627269490925;66,0.00027457780793876827;67,0.000177265736249555;68,0.00005927515352438591;69,0.000033128031550373796;70,0.00002908132898718405;71,0.00002735348433606265;72,0.000025510913581345677;73,0.00002002144335172659;74,0.000023080806114275543;75,0.000022757487095051626;76,0.00002071675307048772;77,0.000017586121061765756;78,0.00001763826929067284;79,0.00002239766431559274;80,0.000021617179156283375;81,0.000016819542096831613;82,0.000014377266709683162;83,0.000014545879316482736;84,0.00001412869348522606;85,0.000017914654903880385;86,0.000018477855776076897;87,0.000022249911000356;88,0.000023407601682093273;89,0.0000326308851014596;90,0.00003557899830900677;91,0.00004166643489676041;92,0.000045316810920256317;93,0.00003188690370238519;94,0.000020640269001423996;95,0.00000990121039515842;96,0.0000033374866500534;97,0.0000031706123175507297;98,0.0000032262370950516204;99,0.0000006118725525097899;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "allthemodium:vibranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0.00000066749733001068;126,0.0000024474902100391597;127,0.0000037824848700605194;128,0.0000023362406550373804;129,0.0000025587397650409404;130,0.00000372686009255963;131,0.000005395603417586329;132,0.00000372686009255963;133,0.0000052287290850836606;134,0.000010457458170167321;135,0.00001079120683517266;136,0.00000656372374510502;137,0.00000545122819508722;138,0.00000789871840512638;139,0.00000734247063011748;140,0.000007398095407618369;141,0.0000074606732823068706;142,0.000013085728907084374;143,0.000013468149252402992;144,0.000005680680402278391;145,0.00000695309718761125;146,0.000007620594517621929;147,0.000005840601637593449;148,0.00000700872196511214;149,0.00000817684229263083;150,0.00001240432538269847;151,0.000010179334282662869;152,0.000006396849412602349;153,0.00000673059807760769;154,0.00000739809540761837;155,0.00000767621929512282;156,0.000007356376824492703;157,0.00000628559985760057;158,0.000010568707725169101;159,0.00001067995728017088;160,0.000005680680402278391;161,0.000006229975080099679;162,0.000006014429067283732;163,0.000005680680402278391;164,0.00000767621929512282;165,0.000010464411267354931;166,0.000012633777589889643;167,0.000012425184674261303;168,0.00000823942016731933;169,0.000008510590957636169;170,0.00000561810252758989;171,0.000007620594517621929;172,0.000008190748487006052;173,0.00000790567150231399;174,0.000010624332502669988;175,0.00001006808472766109;176,0.00000717559629761481;177,0.00000773184407262371;178,0.00000745372018511926;179,0.000007119971520113919;180,0.00000650809896760413;181,0.0000074537201851192616;182,0.00000817684229263083;183,0.000009066838732645071;184,0.00000522872908508366;185,0.000006174350302598789;186,0.000006007475970096119;187,0.00000589622641509434;188,0.000005506852972588111;189,0.00000545122819508722;190,0.000007509344962620151;191,0.0000044499822000711994;192,0.000003184518511925953;193,0.0000030037379850480604;194,0.0000031149875400498394;195,0.00000305936276254895;196,0.0000026699893200427193;197,0.0000023918654325382707;198,0.00000194686721253115;199,0.00000155749377002492;200,0.0000009456212175151301;201,0.00000033374866500534;202,0.00000022249911000356;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "mysticalagriculture:soulium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0029941148985404057;66,0.0032123309006763974;67,0.003475547347810609;68,0.003750166874332503;69,0.003824537201851193;70,0.003803455411178355;71,0.003738986294054824;72,0.0036794677821288717;73,0.003664004093983624;74,0.00364937477750089;75,0.003593861249555002;76,0.0036489854040583844;77,0.003616834282662869;78,0.0036573847454610185;79,0.0036465379138483447;80,0.0036898139907440373;81,0.0037110070309718766;82,0.0037101170345318624;83,0.0036978239587041654;84,0.0037012726949092207;85,0.0036920946066215737;86,0.0036870883766464938;87,0.0036618903524385906;88,0.0035466358134567466;89,0.003422091936632253;90,0.0032652856888572444;91,0.003052298415806337;92,0.002777845763616946;93,0.002529870505517978;94,0.0023461418654325385;95,0.0020619548771804914;96,0.001934629761480954;97,0.001925117924528302;98,0.0019198891954432182;99,0.0019208904414382342;100,0.0019005317728729087;101,0.001914549216803133;102,0.0019228373086507653;103,0.0019057048771804915;104,0.001905426753292987;105,0.0018771693663225347;106,0.0018461307404770383;107,0.0018474657351370597;108,0.0018047459060163758;109,0.0017999621751512993;110,0.0017918965824136705;111,0.001807805268778925;112,0.0017849991100035603;113,0.001770314168743325;114,0.00176753292986828;115,0.0017922303310786759;116,0.0017964578141687433;117,0.0017832747419010329;118,0.0017916184585261663;119,0.0017890040939836241;120,0.0017516242435030261;121,0.0017545723567105732;122,0.0017599123353506585;123,0.0017641398184407263;124,0.0017599679601281596;125,0.0017380517977928088;126,0.0017277612139551444;127,0.001700115699537202;128,0.00169249510501958;129,0.0016500533997864009;130,0.0016321978462086153;131,0.0016326428444286222;132,0.0016234091313634745;133,0.0016123398006407975;134,0.0016084460662157353;135,0.0016142310430758279;136,0.0016008810964756141;137,0.0015998242257030974;138,0.0015612762548949805;139,0.0015499288002847988;140,0.0015546569063723745;141,0.0015482044321822714;142,0.0015737918298326808;143,0.0015778524385902455;144,0.0016101704343182627;145,0.0015722899608401567;146,0.001574626201495194;147,0.0015562700249199006;148,0.001537746974012104;149,0.001529180758276967;150,0.001563501245995016;151,0.0015762393200427199;152,0.0015666718583125668;153,0.0015809118013527948;154,0.001587308650765397;155,0.0015823580455678176;156,0.0015591068885724459;157,0.001572679334282663;158,0.001562110626557494;159,0.001554434407262371;160,0.0015309051263794947;161,0.0014884634211463155;162,0.0014577029191883235;163,0.0014525298148807403;164,0.0014267199181203275;165,0.0014353417586329656;166,0.0014586485404058385;167,0.0014826784442862227;168,0.0014746128515485937;169,0.001478061587753649;170,0.0014373998754004984;171,0.0014167630829476684;172,0.0014209349412602351;173,0.0014322267710929156;174,0.0014425729797080812;175,0.0014794522071911714;176,0.0014784509611961553;177,0.0014722209861160556;178,0.0014691616233535067;179,0.0014643222677109293;180,0.0014550885546457818;181,0.0014747241011035957;182,0.0014733334816660734;183,0.0014877402990388041;184,0.0014884634211463155;185,0.001456924172303311;186,0.0014257742969028125;187,0.0013711507653969383;188,0.001262738074047704;189,0.0011081568173727306;190,0.0008721965112139553;191,0.0006429111783552866;192,0.000422748309006764;193,0.00021999599501601995;194,0.00007537157351370596;195,0.000010958081167675331;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002972977483090068;66,0.0030599746351014597;67,0.00333687477750089;68,0.0036520447668209324;69,0.0037765330188679245;70,0.003849401477394091;71,0.0038346609113563547;72,0.003836552153791385;73,0.003944352972588109;74,0.004090423638305448;75,0.004060163759344962;76,0.004057104396582414;77,0.004097766108935565;78,0.00412619037023852;79,0.0041109491812032755;80,0.004147772783908864;81,0.0042519579921680315;82,0.004345963866144536;83,0.004443084727661089;84,0.004506719473122108;85,0.004482133321466715;86,0.004498598255606978;87,0.004602672214311143;88,0.004554334282662869;89,0.004410266108935565;90,0.004191716358134567;91,0.003998865254538981;92,0.0037009389462442153;93,0.003425206924172303;94,0.0032043765574937704;95,0.002787691349234603;96,0.0026133076717693134;97,0.002557460395158419;98,0.002522027411890353;99,0.0024679601281594873;100,0.0024476570843716627;101,0.0024808094517621932;102,0.002456557048771805;103,0.0024219028123887505;104,0.0023345162869348518;105,0.0023031439124243506;106,0.002236116055535778;107,0.0021715913136347454;108,0.0020665717337130657;109,0.0020128381986472058;110,0.00197812833748665;111,0.0019936476504093985;112,0.001981577073691705;113,0.0019992101281594878;114,0.001948424706301175;115,0.001871495639017444;116,0.0018071377714489142;117,0.001812310875756497;118,0.0018350057849768598;119,0.0018174839800640798;120,0.0017520136169455322;121,0.001711185030259879;122,0.0016911601103595589;123,0.001678366411534354;124,0.0016865432538269846;125,0.0016597877358490568;126,0.0015885880206479173;127,0.0015390263438946246;128,0.0014672147561409755;129,0.0013872819508721967;130,0.001356132075471698;131,0.0012988385546457816;132,0.0012651299394802421;133,0.001231810697757209;134,0.001248998754004984;135,0.001265241189035244;136,0.0012632943218227129;137,0.0012172926308294768;138,0.0011777434140263438;139,0.001163503470986116;140,0.0011269023673905305;141,0.001077730064079744;142,0.0010578163937344249;143,0.0010345652367390532;144,0.0009940147739409043;145,0.0009741011035955858;146,0.0009550774296902812;147,0.0009214244393022429;148,0.0009071844962620149;149,0.0009086307404770383;150,0.0008622396760412959;151,0.0008162936098255608;152,0.0008100080099679601;153,0.0008101192595229619;154,0.0008022205411178356;155,0.0007868681025275899;156,0.000769624421502314;157,0.0007266264684941259;158,0.0006867435030259879;159,0.0006651610893556426;160,0.0006527567639729441;161,0.0006262793698825204;162,0.0005935720007119972;163,0.0005487384300462798;164,0.0005012348700605198;165,0.00046958437166251337;166,0.0004746462264150943;167,0.000473811854752581;168,0.00045189569241723033;169,0.00043048015307938767;170,0.00039076406194375225;171,0.00034526299394802424;172,0.00031311187255250977;173,0.00030782751868992526;174,0.00030037379850480605;175,0.0002924750800996796;176,0.0002949225703097188;177,0.00027445265218939126;178,0.000240688412246351;179,0.00022344473122107511;180,0.00020475480598077607;181,0.0001762749199003204;182,0.00015335751156995373;183,0.00013183072267710928;184,0.00011709015663937346;185,0.00010535332858668564;186,0.00007998843004627983;187,0.0000461129405482378;188,0.00002936988252046992;189,0.00001590868636525454;190,0.000005673727305090781;191,0.00000033374866500534;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0034304356532573873;66,0.0037951116945532217;67,0.0038619726771092914;68,0.003967659754360983;69,0.004001813367746529;70,0.00396120728017088;71,0.003934563011747953;72,0.003870093894624422;73,0.0038325471698113208;74,0.0038830544677821294;75,0.003909420612317551;76,0.0038753226237095055;77,0.0038908975614097546;78,0.003865755161979353;79,0.0038748220007119973;80,0.003945743592025632;81,0.0038872263260946957;82,0.003886169455322179;83,0.003910811231755074;84,0.0038866144535421856;85,0.003870761391954432;86,0.00389501379494482;87,0.0038801619793520834;88,0.003804512281950872;89,0.0036751846742613037;90,0.003503860359558562;91,0.003281194375222499;92,0.003036945977216091;93,0.0027673883054467785;94,0.002561298504805981;95,0.002229107333570666;96,0.0021544588821644714;97,0.00212125088999644;98,0.0021559051263794946;99,0.0021489520291918833;100,0.0021483957814168748;101,0.0021317083481666075;102,0.0019095429868280526;103,0.0010763394446422214;104,0.00020486605553577785;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0005800273673905304;66,0.0005406728373086509;67,0.0005592445598967604;68,0.0005667539048593806;69,0.0005172061343004628;70,0.00047091241322534715;71,0.00043524302465290134;72,0.00037310319508721966;73,0.0003292500111249555;74,0.00026828525498398005;75,0.00020586730153079386;76,0.00016514996440014241;77,0.00013183072267710928;78,0.00008388216447134211;79,0.00003610048059807761;80,0.000010012459950160199;81,0.00000083437166251335;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "minecraft:ancient_debris", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0.00000033374866500533997;71,0.0000066193485226059105;72,0.00007353595585617658;73,0.00012354263082947669;74,0.00017577429690281238;75,0.000223500355998576;76,0.0002770113919544322;77,0.0003335261658953364;78,0.0003749666251334995;79,0.0004157395870416519;80,0.0004577362940548238;81,0.00042013394446422216;82,0.0003724635101459594;83,0.00032457057671769307;84,0.0002782907618369527;85,0.00022483535065859737;86,0.00017527367390530438;87,0.00011864765040939837;88,0.00006697223211107156;89,0.00002508677465290139;90,0.00001857867568529726;91,0.00001807805268778925;92,0.00001674305802776789;93,0.00001512993948024208;94,0.00001234870060519758;95,0.00001323869704521182;96,0.00000973433606265575;97,0.000010791206835172659;98,0.00000984558561765753;99,0.000011569953720185119;100,0.000011848077607689571;101,0.000010624332502669992;102,0.00001190370238519046;103,0.00001245995016019936;104,0.000011569953720185119;105,0.00001045745817016732;106,0.00001051308294766821;107,0.000011291829832680669;108,0.000009567461730153081;109,0.00001251557493770025;110,0.00000990121039515842;111,0.00001023495906016376;112,0.00001023495906016376;113,0.000011569953720185119;114,0.00001145870416518334;115,0.00001045745817016732;116,0.000010068084727661091;117,0.00001029058383766465;118,0.00000967871128515486;119,0.000011236205055179778;120,0.00001034620861516554;121,0.00001106933072267711;122,0.00001073558205767177;123,0.0000122374510501958;124,0.000011569953720185119;125,0.000013071822712709149;126,0.000011403079387682449;127,0.000010401833392666429;128,0.00001090245639017444;129,0.000011291829832680669;130,0.000010846831612673551;131,0.00000995683517265931;132,0.00000906683873264507;133,0.000009289337842648629;134,0.000008232467070131718;135,0.000009623086507653968;136,0.00000923371306514774;137,0.000008899964400142399;138,0.000009789960840156639;139,0.00000917808828764685;140,0.000010012459950160202;141,0.00001151432894268423;142,0.0000088999644001424;143,0.00000956746173015308;144,0.00001067995728017088;145,0.00000995683517265931;146,0.0000083437166251335;147,0.00001029058383766465;148,0.00000956746173015308;149,0.00001034620861516554;150,0.000008454966180135281;151,0.00000995683517265931;152,0.00000901121395514418;153,0.00000812121751512994;154,0.00000928933784264863;155,0.000009789960840156639;156,0.00001051308294766821;157,0.000010068084727661091;158,0.00000917808828764685;159,0.00000928933784264863;160,0.000009623086507653968;161,0.000008677465290138841;162,0.000006786222855108579;163,0.000009066838732645071;164,0.000007620594517621929;165,0.000009400587397650409;166,0.00000912246351014596;167,0.000009789960840156639;168,0.000009066838732645071;169,0.00001023495906016376;170,0.00000928933784264863;171,0.00000934496262014952;172,0.00000800996796012816;173,0.000009678711285154861;174,0.000008621840512637949;175,0.00000956746173015308;176,0.000007620594517621929;177,0.0000083437166251335;178,0.00000767621929512282;179,0.000008454966180135278;180,0.00000956746173015308;181,0.00000895558917764329;182,0.0000088999644001424;183,0.00000856621573513706;184,0.00001095808116767533;185,0.00000917808828764685;186,0.00000856621573513706;187,0.0000083437166251335;188,0.00000734247063011748;189,0.000007787468850124601;190,0.00000934496262014952;191,0.00000812121751512994;192,0.00001023495906016376;193,0.00000795434318262727;194,0.00000695309718761125;195,0.000008065592737629048;196,0.00000767621929512282;197,0.000008399341402634389;198,0.00000650809896760413;199,0.00000867746529013884;200,0.00000873309006763973;201,0.000007620594517621929;202,0.00000800996796012816;203,0.00000756496974012104;204,0.000009344962620149518;205,0.00000739809540761837;206,0.00000851059095763617;207,0.00000839934140263439;208,0.000007286845852616591;209,0.000008232467070131718;210,0.00000773184407262371;211,0.00000806559273762905;212,0.00000784309362762549;213,0.000007787468850124601;214,0.000008288091847632611;215,0.00000806559273762905;216,0.00000756496974012104;217,0.000006841847632609469;218,0.000008065592737629048;219,0.000007509344962620149;220,0.00000767621929512282;221,0.0000067305980776076895;222,0.00000617435030259879;223,0.00000678622285510858;224,0.0000062855998576005695;225,0.00000617435030259879;226,0.00000634122463510146;227,0.00000878871484514062;228,0.000007286845852616589;229,0.000007008721965112141;230,0.00000856621573513706;231,0.000006786222855108579;232,0.0000066749733001068;233,0.0000071199715201139205;234,0.0000066749733001068;235,0.000007398095407618369;236,0.00000645247419010324;237,0.000007620594517621929;238,0.00000795434318262727;239,0.00000639684941260235;240,0.000007620594517621929;241,0.0000076205945176219295;242,0.00000600747597009612;243,0.00000734247063011748;244,0.000006786222855108579;245,0.00000589622641509434;246,0.000008288091847632611;247,0.0000063412246351014585;248,0.0000068418476326094684;249,0.00000650809896760413;250,0.00000700872196511214;251,0.0000066749733001068;252,0.000006452474190103239;253,0.000006730598077607689;254,0.0000062299750800996796;255,0.00000739809540761837;256,0.00000656372374510502;257,0.000006730598077607689;258,0.00000756496974012104;259,0.00000812121751512994;260,0.000006396849412602349;261,0.0000066749733001068;262,0.000007620594517621929;263,0.00000634122463510146;264,0.00000789871840512638;265,0.000008121217515129939;266,0.00000789871840512638;267,0.0000105687077251691;268,0.000008677465290138841;269,0.00000928933784264863;270,0.00001134745461018156;271,0.000012014951940192242;272,0.000012849323602705588;273,0.00001368369526521894;274,0.00001401744393022428;275,0.000014239943040227841;276,0.00001412869348522606;277,0.00001735493058027768;278,0.0000155749377002492;279,0.00001629805980776077;280,0.0000183561765752937;281,0.0000205811676753293;282,0.00001969117123531506;283,0.000019579921680313278;284,0.000017744304022783912;285,0.00001974679601281595;286,0.000020303043787824846;287,0.00002258365966536134;288,0.000020636792452830187;289,0.00002147116411534354;290,0.00002247241011035956;291,0.000020970541117835528;292,0.00002152678889284443;293,0.00002163803844784621;294,0.000021582413670345318;295,0.000022472410110359563;296,0.000022973033107867568;297,0.00002325115699537202;298,0.00002208303666785333;299,0.000023751779992880028;300,0.000024029903880384477;301,0.000023362406550373798;302,0.000022583659665361337;303,0.00002441927732289071;304,0.00002536489854040584;305,0.000026755517977928084;306,0.00002692239231043076;307,0.00002625489498042008;308,0.00002580989676041296;309,0.000027701139195443218;310,0.000027812388750445;311,0.00002619927020291919;312,0.0000012793698825204698;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0022084705411178356;66,0.0022023518155927374;67,0.002390752936988252;68,0.002633555090779637;69,0.002741578408686365;70,0.002768167052331791;71,0.002775898896404414;72,0.0027575427198291208;73,0.0027527033641865433;74,0.0027921969562121752;75,0.002855108579565682;76,0.0029301464044143824;77,0.002990944286222855;78,0.0030761058205767177;79,0.003130339978640086;80,0.0030964088643645428;81,0.0030510190459238163;82,0.0031025832146671416;83,0.0031651610893556428;84,0.0032021515663937347;85,0.0031538692595229623;86,0.003161934852260591;87,0.003182905393378427;88,0.003181626023495906;89,0.0031093138127447494;90,0.003009244838020648;91,0.0028964934140263436;92,0.002770503292986828;93,0.0025475591847632616;94,0.002290795211819153;95,0.002057393645425418;96,0.001981743948024208;97,0.0019964288892844427;98,0.0019870839266642936;99,0.0019148273406906372;100,0.0019064279992880029;101,0.00197996395514418;102,0.002042986828052688;103,0.0021042297080811675;104,0.002104785955856177;105,0.0021366033285866856;106,0.0021372708259166963;107,0.0020944397472410113;108,0.002068184852260591;109,0.002049161178355287;110,0.0020680179779280885;111,0.002093939124243503;112,0.002084538536845853;113,0.002099612851548594;114,0.002138661445354219;115,0.002138383321466714;116,0.0020996684763260947;117,0.0020859847810608756;118,0.0021210283908864366;119,0.0021552932538269854;120,0.0021129071733713067;121,0.0021452251690993237;122,0.002190559362762549;123,0.002183383766464934;124,0.002162802598789605;125,0.0021906706123175504;126,0.0022615922036311855;127,0.0022813946244215023;128,0.0022506341224635103;129,0.00219061498754005;130,0.002176152545389818;131,0.0021330433428266285;132,0.002105564702741189;133,0.0020757498220007123;134,0.0020675729797080813;135,0.0020473811854752576;136,0.002002603239587042;137,0.0019677821288714846;138,0.001922447935208259;139,0.0018465201139195447;140,0.0018273851904592384;141,0.0018692150231399076;142,0.0018670456568173727;143,0.0018394001423994305;144,0.0018317239231043078;145,0.0018211552153791387;146,0.0018099746351014595;147,0.0017569085973656105;148,0.0017098500355998579;149,0.0017107956568173728;150,0.0017562411000355998;151,0.0017863341046635813;152,0.0017596342114631542;153,0.0016715245639017447;154,0.0016305291028835885;155,0.00161562166251335;156,0.0016073891954432186;157,0.0016174572801708792;158,0.0015747930758276969;159,0.0015192795478818086;160,0.0015055958526165895;161,0.0014578141687433253;162,0.0014244393022427911;163,0.0013853350836596653;164,0.0013822200961196155;165,0.001383388216447134;166,0.001396571288714845;167,0.0013904525631897474;168,0.0014261636703453186;169,0.0013913981844072623;170,0.0013643089177643292;171,0.0013189747241011034;172,0.0012786467604129583;173,0.0012660755606977575;174,0.001296613563545746;175,0.0012952785688857247;176,0.001285321733713065;177,0.0012641843182627272;178,0.0012207969918120328;179,0.00119749021003916;180,0.001189313367746529;181,0.0011866990032039872;182,0.0011780215379138485;183,0.0011562166251334995;184,0.0011617791028835883;185,0.0011324092203631184;186,0.0010559251512993945;187,0.0010112028301886792;188,0.0009871173015307939;189,0.0009725992346030616;190,0.0009514061943752225;191,0.0009486805802776789;192,0.0009527968138127447;193,0.0009412824848700607;194,0.000928377536489854;195,0.0008968382876468494;196,0.0008585128159487363;197,0.0008520603417586331;198,0.0008097298860804557;199,0.0007689569241723035;200,0.0007968805624777502;201,0.0008013305446778213;202,0.0007887593449626201;203,0.0007862006051975793;204,0.0007934874510501958;205,0.0007447601459594162;206,0.0007048771804912782;207,0.0006974790850836597;208,0.000682682894268423;209,0.0006800129049483804;210,0.0006908041117835528;211,0.0007005940726237095;212,0.000653813634745461;213,0.0006303399786400856;214,0.0006109269312922749;215,0.0005895113919544323;216,0.000580555802776789;217,0.0005711552153791385;218,0.0005358334816660734;219,0.0004835461908152368;220,0.0004653568885724457;221,0.00045679067283730876;222,0.00044383009967960125;223,0.00043654325382698467;224,0.0004175195799216803;225,0.0004098989854040584;226,0.0003948802954788181;227,0.0003661779102883589;228,0.00034848923104307584;229,0.0003422592559629761;230,0.0003287980598077608;231,0.00031967559629761486;232,0.0003303555535777857;233,0.0003265174439302243;234,0.00029403257386970453;235,0.00027083704165183336;236,0.0002618258276966892;237,0.0002556514773940905;238,0.0002569308472766109;239,0.00023946466714133143;240,0.00021682538269846927;241,0.00020408730865076541;242,0.00020063857244571022;243,0.00019068173727305093;244,0.00018639862940548238;245,0.0001748286756852973;246,0.00015107689569241725;247,0.00014028568885724455;248,0.00014000756496974014;249,0.00011603328586685653;250,0.00010029147383410468;251,0.00008683027767888929;252,0.00008816527233891064;253,0.00008911089355642578;254,0.00008293654325382698;255,0.00006402411890352439;256,0.00004650231399074404;257,0.00003259611961552153;258,0.000019913670345318622;259,0.000010012459950160199;260,0.0000035599857600569602;261,0.00000005562477750089001;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00006473333481666073;66,0.00005907351370594518;67,0.000035446889462442155;68,0.000008644438078497686;69,0.000008649652901388395;70,0.00000873309006763973;71,0.000008049948268956925;72,0.0000048584766598433605;73,0.00000456123175507298;74,0.000005884058495016021;75,0.000009490977661089356;76,0.000009066838732645068;77,0.000007033057805268779;78,0.000006744504271982912;79,0.000007523251156995372;80,0.00000817162746974012;81,0.000008649652901388395;82,0.00000884433962264151;83,0.000008620102238341047;84,0.00001184286278479886;85,0.000012425184674261305;86,0.000011309212575649698;87,0.000015628824203453188;88,0.000021352961463154143;89,0.000033174964956390174;90,0.00003617174984425062;91,0.000039552693351726595;92,0.00004707594450872197;93,0.000045254233045567826;94,0.00003522439035243859;95,0.000022161259011213952;96,0.000013016197935208258;97,0.00001700206089800641;98,0.000016471887237451052;99,0.00001629284498487006;100,0.000014453750778746883;101,0.00001135962253025988;102,0.000012336532685119259;103,0.000014177365165539337;104,0.000015931283931114277;105,0.000016647452941438237;106,0.000014879627981488073;107,0.00001791117835528658;108,0.000013791468271626913;109,0.000017440106020825917;110,0.00001893328364186543;111,0.00001881508098967604;112,0.000017043779481132075;113,0.000016831710016909933;114,0.000019220098900854397;115,0.000016637023295656816;116,0.000019612948891954433;117,0.00001639887971698113;118,0.000011818526944642222;119,0.000009922069686721253;120,0.00001202190503737985;121,0.00001091636258454966;122,0.000015310720007119973;123,0.0000176765113252047;124,0.000015058670234069064;125,0.000012574676263794945;126,0.00000810904959505162;127,0.000010384450649697403;128,0.000016073822423460307;129,0.000018253618391776435;130,0.000018062408219117124;131,0.000015430660933606265;132,0.000015218591469384123;133,0.0000158217726504094;134,0.000014749257409220362;135,0.00001603384211463154;136,0.000015745288581345675;137,0.000015529742568529727;138,0.00002136165283463866;139,0.000020523804623531506;140,0.00001793029937255251;141,0.00001486398351281595;142,0.000019538203097187612;143,0.000018559554668031326;144,0.000017448797392310428;145,0.000019699862606799574;146,0.0000185421719250623;147,0.000016720460461908148;148,0.00001856476949092204;149,0.000021679757030971876;150,0.00001723672792808829;151,0.000015905209816660734;152,0.000015533219117123533;153,0.00001262160966981132;154,0.000013092682004271982;155,0.000012035811231755075;156,0.000012037549506051977;157,0.000011773331812922749;158,0.000013150045056069775;159,0.000017222821733713066;160,0.000021992646404414386;161,0.000027541217960128163;162,0.00002755860070309719;163,0.000026032395870416516;164,0.000023904748131007475;165,0.0000249059941260235;166,0.000022291629583481666;167,0.000017902486983802065;168,0.000017709538536845854;169,0.00002153374199003204;170,0.000023557093271626918;171,0.000017850338754894978;172,0.000015990385257208972;173,0.00001884463165272339;174,0.000020033611271804915;175,0.000025182379739231044;176,0.000026388742101281595;177,0.000027763717070131712;178,0.0000216936632253471;179,0.000018703831434674263;180,0.0000194686721253115;181,0.00002096532629494482;182,0.00002195266609558562;183,0.000019004552888038445;184,0.000015700093449626203;185,0.00001713243147027412;186,0.00002115132164471342;187,0.000028811896471164113;188,0.000028904025008899966;189,0.000023779592381630474;190,0.00002608802064791741;191,0.000027513405571377723;192,0.000029003106643823428;193,0.00002686155271003916;194,0.000026593858468316122;195,0.000027099696288714846;196,0.00002072718271626913;197,0.000020819311254004983;198,0.000021179134033463868;199,0.000018933283641865434;200,0.000018931545367568528;201,0.000014248634411712355;202,0.000019717245349768603;203,0.000027506452474190105;204,0.000027047548059807763;205,0.000023663128003737987;206,0.000019632069909220365;207,0.000016530988563545747;208,0.000021226067439480246;209,0.000021443351726593097;210,0.000016708292541829834;211,0.00001607556069775721;212,0.000017577429690281238;213,0.000017633054467782127;214,0.000015116033285866858;215,0.000014879627981488077;216,0.000018509144713421146;217,0.00002092013116322535;218,0.000020944467003381985;219,0.00002652258922214311;220,0.000035919700071199714;221,0.00003106643823424706;222,0.00002765246751512994;223,0.000024099434852260592;224,0.000021297336685653257;225,0.00001563056247775009;226,0.00001655184785510858;227,0.00002073413581345675;228,0.000022347254360982555;229,0.00001857172258810965;230,0.000014844862495550019;231,0.000015185564257742968;232,0.000016298059807760766;233,0.000014650175774296906;234,0.00001585306158775365;235,0.000018175396048415805;236,0.000014629316482734071;237,0.000014142599679601283;238,0.000014295567817728728;239,0.000013843616500533998;240,0.000011573430268778927;241,0.00000993076105820577;242,0.000011495207925418298;243,0.000013495961641153435;244,0.000014385958081167677;245,0.000010102850213599145;246,0.000005778023762904948;247,0.00000845496618013528;248,0.00001034620861516554;249,0.000014761425329298684;250,0.000013064869615521536;251,0.000012147060786756854;252,0.000008694848033107866;253,0.000008912132320220719;254,0.000011681203275186897;255,0.00001251557493770025;256,0.00001440681737273051;257,0.000011514328942684228;258,0.000009657851993592026;259,0.000008162936098255608;260,0.000010714722766108935;261,0.000008913870594517624;262,0.0000071199715201139205;263,0.00000567372730509078;264,0.00000634122463510146;265,0.00001362807048771805;266,0.00001485181559273763;267,0.000010068084727661088;268,0.000010860737807048771;269,0.000011416985582057673;270,0.00001536634478462086;271,0.000015428922659309363;272,0.000010686910377358492;273,0.000009338009522961907;274,0.000012932760768956925;275,0.000010262771448914204;276,0.000009059885635457458;277,0.0000139061943752225;278,0.00001820320843716625;279,0.000020546402189391243;280,0.000016346731488074047;281,0.000015776577518689927;282,0.000014691894357422572;283,0.000011848077607689571;284,0.00001106933072267711;285,0.000006848800729797082;286,0.000004463888394446423;287,0.0000029828786934852266;288,0.0000032331901922392316;289,0.00000311498754004984;290,0.00000411623353506586;291,0.0000043943574225703095;292,0.000006786222855108579;293,0.000008211607778568887;294,0.00000846191927732289;295,0.000007919577696689212;296,0.000008392388305446779;297,0.000005798883054467783;298,0.000004693340601637594;299,0.000006209115788536846;300,0.000007537157351370594;301,0.000006494192773228908;302,0.00000805863964044144;303,0.000007008721965112141;304,0.00000617435030259879;305,0.00000506185475258099;306,0.000005228729085083659;307,0.000005680680402278391;308,0.00000851059095763617;309,0.000005472087486650055;310,0.0000028924884300462798;311,0.00000317061231755073;312,0.0000022249911000356;313,0.00000161311854752581;314,0.0000017799928800284797;315,0.0000013349946600213599;316,0.00000150186899252403;317,0.00000139061943752225;318,0.0000013349946600213597;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "tconstruct:cobalt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00003009300462798149;70,0.0002013616945532218;71,0.0004684718761124955;72,0.0006633254716981132;73,0.0008793164827340691;74,0.0011077118191527235;75,0.0013170278568885726;76,0.0015058739765040938;77,0.0017382186721253117;78,0.0019546546813812744;79,0.0021842181381274473;80,0.0024375889996440013;81,0.0026135857956568176;82,0.0027875244749021003;83,0.0027937544499822007;84,0.002603628960484158;85,0.002396927287290851;86,0.002170812566749733;87,0.0018900743147027411;88,0.0016118391776432897;89,0.0013599145603417587;90,0.0010558695265218939;91,0.0008016086685653258;92,0.0005952407440370239;93,0.00040522650409398364;94,0.00024786400854396587;95,0.00013049572801708794;96,0.00007420345318618726;97,0.00005951851192595231;98,0.00005651477394090424;99,0.00006424661801352795;100,0.00006769535421858312;101,0.00007331345674617301;102,0.00007370283018867926;103,0.00007186721253114987;104,0.00006797347810608758;105,0.00006508098967604131;106,0.00007081034175863296;107,0.0000656372374510502;108,0.00006802910288358847;109,0.00006602661089355642;110,0.000060408508365966546;111,0.00006241100035599858;112,0.00006697223211107157;113,0.00006608223567105732;114,0.00006124288002847989;115,0.00005940726237095052;116,0.00006280037379850481;117,0.00006380161979352082;118,0.0000644691171235315;119,0.00006491411534353863;120,0.00006363474546101816;121,0.0000623553755784977;122,0.00005846164115343539;123,0.000059852260590957635;124,0.00006218850124599504;125,0.00006163225347098611;126,0.00006196600213599147;127,0.00006085350658597367;128,0.00006480286578853685;129,0.00005812789248843006;130,0.000054512281950872205;131,0.00005901788892844428;132,0.00005823914204343182;133,0.000060742257030971873;134,0.000060352883588465653;135,0.000053900409398362415;136,0.00005746039515841937;137,0.000057349145603417584;138,0.00005490165539337843;139,0.00005428978284086864;140,0.000056459149163403345;141,0.00005651477394090424;142,0.000051230420078319686;143,0.00005562477750089;144,0.00005606977572089711;145,0.00005412290850836597;146,0.00005195354218583126;147,0.00005690414738341047;148,0.000056125400498398004;149,0.000052676664293342836;150,0.000056792897828408686;151,0.00005534665361338555;152,0.00005412290850836597;153,0.0000495060519757921;154,0.000051230420078319686;155,0.00005467915628337487;156,0.000052954788180847284;157,0.00005534665361338555;158,0.0000567372730509078;159,0.000048949804200783205;160,0.00005056292274830901;161,0.00005473478106087577;162,0.00005356666073335707;163,0.000056292274830900675;164,0.0000528435386258455;165,0.000048115432538269845;166,0.000050062299750801;167,0.00005312166251334995;168,0.00005451228195087219;169,0.00005039604841580634;170,0.00005106354574581702;171,0.000049672926308294766;172,0.000052454165183339266;173,0.000052454165183339266;174,0.00005072979708081168;175,0.00005022917408330367;176,0.00005161979352082592;177,0.000050117924528301885;178,0.000050173549305802784;179,0.000055235404058383766;180,0.000050952296190815245;181,0.00005334416162335351;182,0.000056069775720897125;183,0.000050062299750801;184,0.000056514773940904245;185,0.00005412290850836597;186,0.00004978417586329655;187,0.00004833793164827341;188,0.000045334193663225345;189,0.0000495060519757921;190,0.00004800418298326807;191,0.0000489498042007832;192,0.00005551352794588822;193,0.000046446689213243154;194,0.00004733668565325739;195,0.00004872730509077965;196,0.000049895425418298336;197,0.000048671680313278756;198,0.00004644668921324315;199,0.0000472810608757565;200,0.00004995105019579923;201,0.00005334416162335351;202,0.00005278791384834461;203,0.00004794855820576718;204,0.000046557938768244925;205,0.0000489498042007832;206,0.000050062299750801;207,0.0000539004093983624;208,0.000050284798860804556;209,0.0000494504271982912;210,0.00004661356354574582;211,0.000045334193663225345;212,0.000045946066215735135;213,0.00004705856176575294;214,0.00004700293698825205;215,0.000047058561765752937;216,0.00004472232111071556;217,0.00004049483802064791;218,0.00004105108579565682;219,0.000039437967248131004;220,0.0000406617123531506;221,0.00004199670701317195;222,0.000045334193663225345;223,0.00004327607689569242;224,0.00004144045923816305;225,0.00004349857600569598;226,0.00004266420434318263;227,0.00004155170879316483;228,0.00004105108579565682;229,0.00004127358490566038;230,0.00004221920612317551;231,0.000044499822000712;232,0.00004583481666073336;233,0.00004199670701317195;234,0.00004043921324314703;235,0.00003676797792808829;236,0.00003927109291562834;237,0.000038436721253114995;238,0.00004244170523317907;239,0.000040049839800640794;240,0.00003882609469562122;241,0.00004016108935564258;242,0.0000417185831256675;243,0.00003993859024563902;244,0.00003815859736561054;245,0.00004572356710573158;246,0.00004683606265574938;247,0.000040995461018155925;248,0.00004055046279814881;249,0.00003832547169811321;250,0.00003982734069063724;251,0.00003966046635813457;252,0.000040105464578141687;253,0.00004043921324314703;254,0.000042552954788180845;255,0.000040939836240655046;256,0.00004294232823068708;257,0.00004043921324314703;258,0.00004600169099323603;259,0.00004566794232823069;260,0.00004105108579565682;261,0.000040383588465646135;262,0.000037936098255606976;263,0.000039994215023139915;264,0.00004066171235315059;265,0.000051230420078319686;266,0.00005323291206835173;267,0.00005412290850836597;268,0.000060186009255962976;269,0.00006519223923104308;270,0.00006597098611605555;271,0.00006802910288358847;272,0.0000711997152011392;273,0.00007687344250622999;274,0.00008093405126379495;275,0.00008360404058383768;276,0.0000901121395514418;277,0.00009128025987896048;278,0.0000923371306514774;279,0.000095062744749021;280,0.00010234959060163759;281,0.00010913581345674617;282,0.00011225080099679601;283,0.00011247330010679958;284,0.000111750177999288;285,0.00010813456746173016;286,0.00011425329298682806;287,0.00011803577785688858;288,0.00011914827340690637;289,0.00011781327874688504;290,0.0001244326272694909;291,0.00012165138839444642;292,0.0001224301352794589;293,0.00013333259166963332;294,0.00013199759700961196;295,0.0001396738163047348;296,0.0001307738519045924;297,0.00013533508365966537;298,0.0001335550907796369;299,0.00014000756496974012;300,0.00013361071555713778;301,0.0001378381986472054;302,0.00014340067639729442;303,0.00013806069775720896;304,0.00013922881808472765;305,0.0001478506585973656;306,0.00014634878960484158;307,0.00015680624777500893;308,0.00015508187967248134;309,0.00014579254182983269;310,0.00008249154503381985;311,0.0000083437166251335;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0056849078853684586;66,0.005528435386258455;67,0.005744203898184407;68,0.006069219473122108;69,0.0059540205589177645;70,0.00562121751512994;71,0.005341146760412958;72,0.005083548415806337;73,0.004888027322890709;74,0.004623253381986473;75,0.004438189747241011;76,0.004302075916696334;77,0.004222143111427554;78,0.004113007297970808;79,0.003974167853328586;80,0.0037533374866500534;81,0.0034855041829832682;82,0.003241033285866857;83,0.003009689836240655;84,0.002806659398362406;85,0.002630217604129584;86,0.0025100680847276614;87,0.0022875133499466;88,0.002015897561409754;89,0.0017614142043431828;90,0.0015325738697045213;91,0.0013115766286934854;92,0.0010839044143823428;93,0.0008368191527233892;94,0.0006233312566749733;95,0.0004559006763972945;96,0.00034231488074047705;97,0.00025014462442150235;98,0.00015218939124243504;99,0.00006352349590601637;100,0.000017577429690281238;101,0.0000017799928800284801;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0003422940214489142;66,0.00031322312210751155;67,0.00020488517655304375;68,0.00007279197445710217;69,0.000034542986828052693;70,0.00003055190904236383;71,0.00003037112851548594;72,0.000027923638305446778;73,0.00003265174439302243;74,0.000032596119615521546;75,0.000027311765752936988;76,0.00002981488074047704;77,0.00002797926308294767;78,0.000028215668387326456;79,0.000030120817016731938;80,0.000027450827696689216;81,0.000025344039248843003;82,0.000026520850947846208;83,0.00002671379939480242;84,0.000024753025987896044;85,0.00002998175507297971;86,0.00003582235671057316;87,0.00004600169099323603;88,0.00006024163403346387;89,0.00007131096475614098;90,0.0000681055869526522;91,0.00007788164159843361;92,0.00008607586663403346;93,0.00008410466358134568;94,0.00006009388071822712;95,0.00003620825360448558;96,0.00002041429334282663;97,0.000018307504894980418;98,0.000020087497775008904;99,0.00001718805624777501;100,0.00001607556069775721;101,0.00001824492702029192;102,0.00001952429690281239;103,0.000012459950160199359;104,0.000011458704165183341;105,0.000015880873976504093;106,0.000016374543876824493;107,0.0000160686076005696;108,0.00001763305446778213;109,0.00001535243859024564;110,0.000014406817372730508;111,0.00001006808472766109;112,0.00000650809896760413;113,0.0000048949804200783195;114,0.00000478373086507654;115,0.0000038937344250623005;116,0.00000422748309006764;117,0.0000019607734069063725;118,0.0000006188256496974013;119,0.0000006118725525097899;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00016091726648718405;66,0.00015776056036400857;67,0.0001013570359781061;68,0.00003439697178711286;69,0.00001580178249599502;70,0.000017474871506763975;71,0.00001840050256986472;72,0.00001600081490299039;73,0.000016119017555179782;74,0.000020115310163759347;75,0.000023088628348611606;76,0.000020436890908686368;77,0.0000198371862762549;78,0.000020177888038447848;79,0.000022236873943129228;80,0.000018341401243770024;81,0.000015787007164471344;82,0.000015922592559629763;83,0.00002261060291696333;84,0.0000339311142755429;85,0.0000435394254516732;86,0.000048223205544677825;87,0.00005793146749288004;88,0.00007437293493013528;89,0.00008874933250267;90,0.00010439814686053758;91,0.00012423533313679245;92,0.00014006318974724104;93,0.00012299072874021006;94,0.00008412291546146315;95,0.00004620333081167675;96,0.000026074114453542186;97,0.00002730220524430402;98,0.000027584674817550728;99,0.00003210244971520114;100,0.00003775966341447135;101,0.00003728598366856532;102,0.00003493236027055892;103,0.00003231799572801709;104,0.00002820176219295123;105,0.00003829765930936277;106,0.000045104741456034164;107,0.000049179256407974366;108,0.00004298665422525809;109,0.000036073537346475616;110,0.0000349201923504806;111,0.000034164912168476325;112,0.00002909349690726237;113,0.00003112988524608402;114,0.000028399925462798146;115,0.00003207202991500534;116,0.000037989984758810966;117,0.000033137592059006766;118,0.00003045456568173727;119,0.000028646760412958352;120,0.000025616948313456746;121,0.00002130428978284087;122,0.000019446074559451762;123,0.000020029265586062658;124,0.00002147116411534354;125,0.00002647739409042364;126,0.000023418900465023138;127,0.000020017966803132786;128,0.000016608341769757922;129,0.000022131708348166607;130,0.000024613964044143827;131,0.00003434134700961196;132,0.00003365994348522606;133,0.00001975374911000356;134,0.000014810097009611961;135,0.00001710983390441438;136,0.00001932439535866857;137,0.000018038072378960483;138,0.000022861783552865783;139,0.00002008054467782129;140,0.000018453519935920253;141,0.000015338532395870416;142,0.000010916362584549663;143,0.000013781038625845497;144,0.000018251880117479532;145,0.000016270247419010327;146,0.000014573691705233179;147,0.00001368369526521894;148,0.00001595040494838021;149,0.000013683695265218939;150,0.0000116812032751869;151,0.000008816527233891065;152,0.00001271460734469562;153,0.00001734102438590246;154,0.000012035811231755073;155,0.000007662313100747598;156,0.000007641453809184762;157,0.00000780658986739053;158,0.000007128662891598433;159,0.000008008229685831258;160,0.000009890780749377003;161,0.00001564359953497686;162,0.000017222821733713066;163,0.00001084683161267355;164,0.000010795552520914916;165,0.000011472610359558562;166,0.000007783992301530793;167,0.000005285222999733002;168,0.000006197817005606979;169,0.0000045368959149163405;170,0.00000584060163759345;171,0.00000578497686009256;172,0.00000522872908508366;173,0.00000567372730509078;174,0.0000039493592025631895;175,0.0000026491300284798855;176,0.0000027812388750445;177,0.0000026143645425418303;178,0.00000322623709505162;179,0.00000161311854752581;180,0.0000011681203275186902;181,0.00000172436810252759;182,0.0000016687433250267;183,0.0000015018689925240298;184,0.00000161311854752581;185,0.0000010012459950160199;186,0.0000014392911178355288;187,0.00000045195131719473116;188,0.0000005214822890708437;189,0.00000018773362406550372;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0003409242613029548;66,0.0003083768133677465;67,0.000196063434496262;68,0.00006324537201851192;69,0.000032943774474902104;70,0.000028730197579209688;71,0.00002809051263794945;72,0.000025827279503381986;73,0.000026094973745105024;74,0.00002709795801441794;75,0.00003215112139551442;76,0.00003103862584549662;77,0.000032317995728017084;78,0.00002894226704343183;79,0.00002277660811231755;80,0.000022773131563723742;81,0.00002121042297080812;82,0.000022234266531683874;83,0.000025719506496974017;84,0.000032178933784264866;85,0.00003863314624866501;86,0.00004291799239053044;87,0.00004669004761480954;88,0.00005334416162335351;89,0.00006179217470630118;90,0.00007909843360626558;91,0.00009532000934496262;92,0.00009991079176308295;93,0.00008625664716091136;94,0.00006327318440726236;95,0.00003031550373798505;96,0.00001652055891776433;97,0.00001846742613029548;98,0.000023863029547881813;99,0.0000250311498754005;100,0.00002859113563545746;101,0.000023584905660377357;102,0.00001796680313278747;103,0.000014963065147739414;104,0.000011848077607689571;105,0.000008899964400142399;106,0.000011556047525809896;107,0.000015686187255250977;108,0.000017431414649341406;109,0.000014086974902100394;110,0.000013850569597721609;111,0.000011736828052687791;112,0.00000545122819508722;113,0.0000053399786400854395;114,0.000004505606977572089;115,0.000005729352082591669;116,0.000005701539693841225;117,0.00000433873264506942;118,0.0000011124955500178;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00609558561765753;66,0.006036512103951584;67,0.006352572089711642;68,0.006735103684585262;69,0.006733879939480243;70,0.006565448113207548;71,0.006417819953720185;72,0.0062071689213243145;73,0.006008810964756142;74,0.005828030437878249;75,0.005791985582057672;76,0.0056595986116055545;77,0.005486160555357779;78,0.005396549038803844;79,0.0053576673193307224;80,0.0052740076539693845;81,0.005112528924884301;82,0.004958559540761838;83,0.004774497152011392;84,0.004555836151655394;85,0.0043711062655749375;86,0.00424122241011036;87,0.004196778212887148;88,0.003954309807760769;89,0.0036841402634389462;90,0.003415138839444642;91,0.003146471164115344;92,0.002733568440726237;93,0.002336129405482378;94,0.0020455455678177288;95,0.0017684229263082948;96,0.00158875489498042;97,0.0015266776432894269;98,0.0014613185297258813;99,0.001429612406550374;100,0.001326317194731221;101,0.0012751980242079034;102,0.0012422681559273764;103,0.0011660065859736561;104,0.0010492501779992879;105,0.0009606399074403704;106,0.0008852683339266644;107,0.0008337597899608401;108,0.0007538826094695623;109,0.0006855197579209683;110,0.0006058650765396938;111,0.0005457346920612318;112,0.000474312477750089;113,0.00040211151655393377;114,0.000327685564257743;115,0.0002747864008543966;116,0.00022700471698113207;117,0.00016848745105019577;118,0.00009261525453898184;119,0.00003971609113563547;120,0.000012515574937700252;121,0.00000122374510501958;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "minecraft:nether_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.0008741433784264863;72,0.0032611138305446777;73,0.005603139462442151;74,0.006454866055535778;75,0.006487350925596299;76,0.006514662691349235;77,0.006407195621217514;78,0.006432393645425419;79,0.006496640263438947;80,0.0064288892844428635;81,0.006350958971164115;82,0.006354685831256675;83,0.00635685519757921;84,0.006370483268066929;85,0.006449414827340691;86,0.006497140886436454;87,0.006380106354574583;88,0.00601370594517622;89,0.0055614765040939845;90,0.00519307360270559;91,0.004778835884656461;92,0.004368603150587399;93,0.003964822890708437;94,0.0036652278390886433;95,0.003279525631897473;96,0.00309685386258455;97,0.0030645914916340336;98,0.0031185475258098967;99,0.003224679601281595;100,0.0033635746707013172;101,0.0034883410466358135;102,0.003551363919544322;103,0.003533842114631542;104,0.003479830455678177;105,0.003440781861872553;106,0.0033895514417942333;107,0.003333314791740833;108,0.0033408797614809544;109,0.003357678444286223;110,0.0033501690993236032;111,0.0033600146849412605;112,0.003320409843360627;113,0.0033105642577429687;114,0.0032597788358846567;115,0.0032329676931292274;116,0.003216502758988964;117,0.0032606688323246705;118,0.003259000088999644;119,0.0032204521181915277;120,0.00318935786756853;121,0.003174116678533286;122,0.003169666696333215;123,0.0031714466892132434;124,0.0031869660021359917;125,0.0031410199359202563;126,0.0030979663581345677;127,0.003066538358846565;128,0.0030241522783908863;129,0.003000901121395515;130,0.0029953942684229264;131,0.002960183784264863;132,0.0029497819508721964;133,0.0029570687967248135;134,0.0029721431114275547;135,0.0029498375756496975;136,0.0028972165361338554;137,0.0029290895336418657;138,0.0029354863830544677;139,0.0028890396938412244;140,0.0028666785332858674;141,0.0028991634033463873;142,0.0029158508365966537;143,0.0029155727127091495;144,0.002864008543965824;145,0.002879472232111072;146,0.002895158419366323;147,0.002871629138483446;148,0.0028309118013527946;149,0.002822568084727661;150,0.002814168743325027;151,0.002862172926308295;152,0.0028625066749733;153,0.002882364720541118;154,0.002891542808828765;155,0.002907173371306515;156,0.0029092871128515493;157,0.0028765797436810254;158,0.0028588354396582413;159,0.002830800551797793;160,0.002775231399074404;161,0.0027123754004983987;162,0.002703642310430759;163,0.002693629850480598;164,0.00266937744749021;165,0.002684729886080456;166,0.002724835350658597;167,0.0027656083125667495;168,0.002796925062299751;169,0.0027877469740121043;170,0.0027618258276966897;171,0.002700861071555714;172,0.0026604218583125673;173,0.002679668031327875;174,0.0026921279814880743;175,0.0026909042363830547;176,0.0027196622463510145;177,0.002752814613741545;178,0.002756652723389107;179,0.002723667230331079;180,0.0027370728017087932;181,0.0027563745995016027;182,0.0027889707191171235;183,0.0027858001067995733;184,0.0027937544499822;185,0.002758377091491634;186,0.002711374154503382;187,0.002615755161979352;188,0.002540049839800641;189,0.002509289337842649;190,0.0025562366500534;191,0.002567750978996084;192,0.0025316504983980063;193,0.002493213777144891;194,0.0025105687077251687;195,0.002468238252046992;196,0.002442595229619082;197,0.0024761925952296194;198,0.002492156906372375;199,0.002525865521537914;200,0.002533319241723033;201,0.0025125711997152013;202,0.002515296813812745;203,0.002480253203987184;204,0.0025081768422926306;205,0.0024848144357422566;206,0.0024781950872196515;207,0.0025094562121751513;208,0.0024899875400498403;209,0.002490376913492346;210,0.0024941593983624066;211,0.0025150743147027413;212,0.0025092337130651473;213,0.0024638438946244217;214,0.002425740922036312;215,0.0024146159665361343;216,0.0023951472944108224;217,0.002318329476682093;218,0.002265652812388751;219,0.0021634700961196155;220,0.002144168298326807;221,0.0021097365610537556;222,0.002123197757208971;223,0.0021615232289070845;224,0.002155682627269491;225,0.002108012192951228;226,0.002107010946956212;227,0.0021190815236739055;228,0.002128537735849057;229,0.0021797681559273764;230,0.0021970674617301537;231,0.0022059118013527945;232,0.002202629939480242;233,0.0021376601993592023;234,0.002052999288002848;235,0.0019990432538269844;236,0.002008221342114632;237,0.0020002113741545034;238,0.001965724012103952;239,0.0020082769668921326;240,0.002081145425418298;241,0.0021196377714489145;242,0.002132375845496618;243,0.0021027834638661447;244,0.0020926597543609827;245,0.0020882097721609113;246,0.0020708548415806338;247,0.0020824804200783196;248,0.00209627536489854;249,0.002074303577785689;250,0.002054167408330367;251,0.002030971876112496;252,0.002014562566749733;253,0.0021101259344962616;254,0.002152122641509434;255,0.0021555157529369886;256,0.0021666963332146673;257,0.002155126379494482;258,0.002165917586329655;259,0.002162135101459594;260,0.002154737006051976;261,0.002175540672837309;262,0.002214700516197935;263,0.0022324448202207196;264,0.0022803377536489856;265,0.002438645870416518;266,0.0025873865254538984;267,0.002744415272338911;268,0.002928199537201851;269,0.0031318418476326097;270,0.003338042897828409;271,0.00357122196511214;272,0.003797559184763262;273,0.004018333926664294;274,0.004180535777856889;275,0.004388238697045212;276,0.004552498665005339;277,0.004711418654325382;278,0.0049452652189391245;279,0.005134723211107156;280,0.005290695087219651;281,0.005459293787824849;282,0.005587175151299395;283,0.005703264061943753;284,0.005836151655393379;285,0.0059840023139907435;286,0.006083459416162335;287,0.006124343627625489;288,0.006212230776076896;289,0.0063217559629761486;290,0.006423938679245284;291,0.006514106443574226;292,0.006641765307938769;293,0.006660733357066572;294,0.00662185163759345;295,0.006666907707369171;296,0.006766086685653258;297,0.0068022984158063364;298,0.006802131541473834;299,0.006820487718049128;300,0.006955377803488786;301,0.0070298593805624785;302,0.007107900943396226;303,0.0072409554111783556;304,0.007313378871484514;305,0.007417397205411179;306,0.007479752580989677;307,0.0065628337486650055;308,0.0038363296546813815;309,0.0010500845496618015;", + "silktouch": false, + "dim": "minecraft:the_nether" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0006020448649068981;70,0.0010813722094190502;71,0.001616434538751846;72,0.001899007826619428;73,0.001997028726937836;74,0.001990902182614457;75,0.0019603894399507398;76,0.001944879779717728;77,0.0019078634160206442;78,0.0018699976775121748;79,0.0018057156205984865;80,0.0017738488297489056;81,0.0017953898129138854;82,0.0017981283801308638;83,0.0017636734718627339;84,0.001714464961209395;85,0.0017162932119244852;86,0.0016795758433964317;87,0.001585916082804644;88,0.0015365037983736856;89,0.0014921572919657888;90,0.0014386238257145657;91,0.0013266701314049107;92,0.0012258059203389723;93,0.001183765676031048;94,0.0011592728297323295;95,0.001101378223754486;96,0.0010422057467039077;97,0.001003332565874311;98,0.0009489840045126101;99,0.0008976958586708568;100,0.0008147256514788598;101,0.0007436200296566642;102,0.0006664830849025007;103,0.0005909991835032307;104,0.0005632745231800251;105,0.000526271490477739;106,0.00047877506044196856;107,0.00044177202773968246;108,0.00040101346336014927;109,0.000363016319331533;110,0.0003139182654922309;111,0.0002743194976600828;112,0.00024068539778591524;113,0.0001990431788940887;114,0.00015811892929350056;115,0.00012183386588245274;116,0.00008654291379773502;117,0.00005627774675168602;118,0.000033634099874167595;119,0.000013254817684401023;120,0.000001877765838623478;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "bigreactors:anglesite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00011205843784020698;70,0.00020644378543454596;71,0.00031916496415897297;72,0.0003814073788686394;73,0.00040543173592161633;74,0.000410126150518175;75,0.00043221751332550996;76,0.00043017406226583156;77,0.0004269155862517496;78,0.00042012249218849405;79,0.00041598036166211875;80,0.0004151519355568437;81,0.0004153176207778987;82,0.0004425452254379392;83,0.00044503050375376436;84,0.00045243111029422156;85,0.0004432631947291776;86,0.0004394524346449122;87,0.00044121974366949905;88,0.00044955923312926804;89,0.00045336999321353335;90,0.00044790238091871787;91,0.00043011883385881317;92,0.00042106137510780585;93,0.0004206747762586775;94,0.0004187970104200539;95,0.000406370618840928;96,0.0004143787378585869;97,0.0004121143731708352;98,0.0004069229029111113;99,0.00039653996239166387;100,0.0003875929604546933;101,0.0003762159086089157;102,0.00038278808904409784;103,0.000367268906671945;104,0.0003560023116402041;105,0.00035539479916300246;106,0.00032430120601167835;107,0.00032026953229933973;108,0.00031303461097993745;109,0.0003083954247903972;110,0.00030845065319741547;111,0.00028497858021462203;112,0.0002817201042005401;113,0.00027122670686705594;114,0.00026172742085990184;115,0.00025913168573004;116,0.000263218587849397;117,0.0002701773671337076;118,0.00025714346307737987;119,0.0002490801156527026;120,0.00024786509069829913;121,0.00023030245726646774;122,0.00022389596205234062;123,0.00021572215781362665;124,0.0002150594169294066;125,0.00020688561269069264;126,0.00020655424224858262;127,0.00021014408870477454;128,0.0002031300810134457;129,0.0002018045992450056;130,0.0002010866299537672;131,0.00019462490633262168;132,0.0001890468372237696;133,0.0001792161807745055;134,0.00018048643413592726;135,0.00017209171626913995;136,0.0001693855243252414;137,0.00015933395424790398;138,0.00016413882565849934;139,0.00016242674504093088;140,0.00015331405788290516;141,0.00014166086400203593;142,0.00014950329779863988;143,0.00014889578532143816;144,0.00014127426515290757;145,0.00014237883329327433;146,0.00014900624213547484;147,0.00013326614613524862;148,0.0001314988371106618;149,0.0001311674666685518;150,0.00012956584286502;151,0.00011388097527181214;152,0.00011758127854204075;153,0.00012343548968598455;154,0.00012177863747543439;155,0.00012465051464038792;156,0.00011702899447185737;157,0.00011145092536300528;158,0.00011266595031740869;159,0.0001010679848435578;160,0.00009604219980488909;161,0.00010830290616296001;162,0.00010670128235942823;163,0.00010614899828924486;164,0.00009355692148906388;165,0.0000923971249416788;166,0.00009311509423291718;167,0.00009245235334869713;168,0.00009272849538378882;169,0.00009234189653466046;170,0.00008853113645039517;171,0.00009101641476622036;172,0.00008676382742580838;173,0.00008372626503979979;174,0.00009002230343989028;175,0.00008599062972755163;176,0.00008599062972755162;177,0.00008046778902571789;178,0.00007439266425370074;179,0.0000712446450536555;180,0.00007290149726420564;181,0.00007803773911691102;182,0.00007428220743966407;183,0.0000715207870887472;184,0.00006688160089920682;185,0.00006997439169223373;186,0.00007621520168530588;187,0.00007113418823961883;188,0.00006953256443608703;189,0.00007025053372732542;190,0.00006870413833081197;191,0.00006704728612026184;192,0.0000678757122255369;193,0.00006472769302549165;194,0.00006638454523604179;195,0.00006815185426062859;196,0.00006748911337640854;197,0.00006395449532723494;198,0.00006246332833773982;199,0.00005865256825347453;200,0.00006489337824654668;201,0.00006572180435182174;202,0.000059701907986822946;203,0.000053295412772695775;204,0.000050036936758613855;205,0.000053902925249897485;206,0.00005219084463232903;207,0.000051638560562145655;208,0.00005191470259723733;209,0.000054013382063934166;210,0.00005202515941127402;211,0.00005108627649196228;212,0.00005368201162182414;213,0.000047330744814715324;214,0.000041697447298844886;215,0.000042636330218156614;216,0.000048435312955082076;217,0.000050865362863888915;218,0.00004280201543921163;219,0.00004020628030934977;220,0.000037058261109304524;221,0.00003346841465311258;222,0.000040537650751459794;223,0.00003551186571279107;224,0.00003772100199352458;225,0.000039709224646184734;226,0.00004031673712338645;227,0.000037334403144396215;228,0.00003374455668820427;229,0.00003252953173380084;230,0.00003247430332678251;231,0.00003446252597944266;232,0.000033026587396965885;233,0.00003081745111623239;234,0.000028332172800407185;235,0.00002684100581091207;236,0.000028056030765315497;237,0.000027779888730223806;238,0.000026454406961783708;239,0.000025405067228435294;240,0.000022809332098573428;241,0.00001833583113008808;242,0.00001651329369848294;243,0.000017783547059904703;244,0.000019109028828344808;245,0.00001817014590903307;246,0.000016678978919537955;247,0.000013972786975639414;248,0.000015298268744079513;249,0.000013917558568621077;250,0.000010879996182612507;251,0.000009167915565044041;252,0.000010714310961557495;253,0.00001082476777559417;254,0.000010272483705410794;255,0.000010162026891374117;256,0.000009333600786099054;257,0.000009167915565044041;258,0.000008008119017658952;259,0.000007455834947475576;260,0.000007842433796603938;261,0.000005798982736925449;262,0.00000414213052637532;263,0.0000024300499088068546;264,0.0000003865988491283632;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00012269836538257128;70,0.0002208242382461845;71,0.0002434586620482045;72,0.00023643726221764025;73,0.00021336076196014337;74,0.0002088940347830349;75,0.00021644187399085557;76,0.0002176071929793627;77,0.00019952919917519578;78,0.00017773143429929166;79,0.00015749737648463789;80,0.0001597500233490814;81,0.00015513241034306057;82,0.00015618605069466147;83,0.00014099759817385755;84,0.00011706625551571015;85,0.00010377811929291206;86,0.00011157056468290058;87,0.00011581584923569339;88,0.00011191729003067811;89,0.00009933871293894837;90,0.00008561634156686141;91,0.00005991786333127664;92,0.00004731212025515184;93,0.0000411795619563087;94,0.00003443448451485529;95,0.000025966520568393596;96,0.00002118475101270616;97,0.000015359046772816018;98,0.000011404323847411329;99,0.000005672129989555204;100,0.0000012132990666841041;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0005418459012569101;70,0.0009780074846146608;71,0.001469658381603215;72,0.0016540260396530515;73,0.0016219554750258513;74,0.0016042385829399346;75,0.0015788906485463454;76,0.0015177851772501256;77,0.0014442266523851846;78,0.0014157287943637224;79,0.001382845039053873;80,0.001296860122609806;81,0.0012037164619594655;82,0.0011419768161964486;83,0.0010912771385536149;84,0.001072707062800656;85,0.0010489855097723657;86,0.0009920202645746928;87,0.0008836887919943094;88,0.0007892558337042651;89,0.0007065179667073107;90,0.0006428681798325908;91,0.0005799801640891582;92,0.0005360450140921564;93,0.00044539044061329763;94,0.0003574382502226809;95,0.0002803946224321;96,0.00022825900620678928;97,0.00017634430360955193;98,0.00010421600404360305;99,0.000040758564379533144;100,0.000008173804238713965;101,0.0000000552284070183376;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00004848570622078218;70,0.00008790242121538687;71,0.00012019327142591372;72,0.00010675845007440016;73,0.00011207437168704267;74,0.00011421802566479574;75,0.00008957846393189801;76,0.00007624715053575624;77,0.00008980660548717833;78,0.00009382138077312491;79,0.00008551200651822922;80,0.00009615995883753025;81,0.00008903911668511525;82,0.00007839585131029592;83,0.00006389778414805334;84,0.000047665392971656035;85,0.00003665100568151992;86,0.00003454214702888341;87,0.00003609619517280637;88,0.00003468246883566943;89,0.00003278430302980071;90,0.000022923534895271204;91,0.000021601869981596358;92,0.000023970202926273244;93,0.000025326406871964012;94,0.000021810239087251505;95,0.000024073474065392287;96,0.000017562753656927677;97,0.000016165336143759615;98,0.00001282728613749109;99,0.000006552699182021595;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00010786107890681332;70,0.00020865292171527944;71,0.000367268906671945;72,0.0004394524346449123;73,0.00046679049611898945;74,0.0004905387111368744;75,0.0005124643887231546;76,0.0005016396209475604;77,0.0005033517015651289;78,0.000492582162196553;79,0.0004795482581402254;80,0.0004885504884842144;81,0.0005022471334247622;82,0.0005059474366949907;83,0.0005115807342108611;84,0.0005224055019864553;85,0.0005326227572848479;86,0.0005537752371728712;87,0.0005647104617625019;88,0.0005855315712084152;89,0.0005803401009486914;90,0.0005684107650327306;91,0.0005913857823523589;92,0.0006114336941000155;93,0.0006103843543666671;94,0.000600719383138458;95,0.0005840956326259385;96,0.0005801191873206181;97,0.0005667539128221804;98,0.0005613967573414018;99,0.0005501853907166792;100,0.0005541618360219994;101,0.0005279835710953074;102,0.0005177110873898967;103,0.0005121330182810445;104,0.0005165512908425115;105,0.0005175454021688416;106,0.0005060578935090274;107,0.000501253022098432;108,0.0004993752562598085;109,0.0004998170835159553;110,0.0005082118013827425;111,0.0005036830720072388;112,0.0004702698857611446;113,0.0004409436016344074;114,0.0004262528453675296;115,0.00041332939812523855;116,0.00039460696814602216;117,0.0003904096092126285;118,0.0003951040238091871;119,0.0004178028990937239;120,0.00042785446917106135;121,0.0004200672637814758;122,0.0004194045228972557;123,0.00040681244609707475;124,0.00038963641151437174;125,0.00036235357844731294;126,0.0003618565227841479;127,0.0003790877857738693;128,0.00038019235391423603;129,0.0003637342886227714;130,0.00034639256881901343;131,0.0003532408912892873;132,0.00034722099492428854;133,0.0003542350026156173;134,0.00035699642296653424;135,0.00034843601987869194;136,0.0003470553097032334;137,0.0003524676935910306;138,0.0003554500275700208;139,0.0003471657665172702;140,0.00033523643060130926;141,0.00033683805440484093;142,0.00032512963211695346;143,0.0003035905533798018;144,0.00028696680286728214;145,0.0002787377702215498;146,0.00027790934411627477;147,0.00029293147082526264;148,0.0003032591829376917;149,0.00028928639596205235;150,0.0002666427490845339;151,0.00026404701395467205;152,0.00027586589305659626;153,0.00026934894102843246;154,0.0002381448910630717;155,0.00022632601196114751;156,0.0002381448910630717;157,0.00025758529033352654;158,0.00024112722504206197;159,0.00021958814630491024;160,0.00020826632286615108;161,0.00022146591214353378;162,0.00025913168573004;163,0.0002652068105020571;164,0.0002533879314001329;165,0.00024118245344908025;166,0.00024571118282458394;167,0.0002478098622912808;168,0.0002353282423051365;169,0.000211856169322343;170,0.00019550856084491508;171,0.00021042023073986621;172,0.00023632235363146658;173,0.00024013311371573186;174,0.00023643281044550326;175,0.0002220181962137171;176,0.00020500784685206918;177,0.00020075525951165712;178,0.0002174342384311951;179,0.00021771038046628679;180,0.00021726855321014009;181,0.0002079901808310594;182,0.00020495261844505084;183,0.00019556378925193345;184,0.00017932663758854218;185,0.00017733841493588202;186,0.00017976846484468888;187,0.00019086937465537474;188,0.00018413150899913752;189,0.0001931889677501449;190,0.000198601351637942;191,0.00019269191208697988;192,0.0001865615589079444;193,0.00018357922492895416;194,0.00017667567405166198;195,0.0001658509062760678;196,0.00016270288707602256;197,0.00015983100991106902;198,0.00015441862602327193;199,0.00014933761257758486;200,0.0001540872555811619;201,0.00015811892929350056;202,0.000155744107791712;203,0.0001477912171810714;204,0.00013525436878790878;205,0.00013194066436680852;206,0.00012945538605098334;207,0.00014132949355992588;208,0.0001361932517072205;209,0.0001302838121562584;210,0.00012288320561580114;211,0.00011973518641575592;212,0.00012592076800180973;213,0.000129731528086075;214,0.00012873741675974493;215,0.00012282797720878283;216,0.00011603488314552728;217,0.000116476710401674;218,0.00011437803093497716;219,0.00011338391960864708;220,0.00010476828811378642;221,0.00010079184280846613;222,0.00009830656449264091;223,0.00009388829193117392;224,0.00008157235716608463;225,0.00007052667576241713;226,0.00007395083699755405;227,0.00007522109035897581;228,0.0000754972323940675;229,0.00007577337442915918;230,0.00007223875637998558;231,0.00007207307115893055;232,0.00006892505195888532;233,0.00005937053754471292;234,0.00005125196171301729;235,0.000057271858078016086;236,0.00006152444541842808;237,0.000059370537544712914;238,0.000055283635425355934;239,0.00005683003082186939;240,0.00004710983118664199;241,0.00003882557013389133;242,0.000033026587396965885;243,0.000032860902175910875;244,0.000035180495270681046;245,0.00003529095208471773;246,0.000036064149782974454;247,0.000028608314835498873;248,0.00002584689448458199;249,0.000027338061474077112;250,0.000025902122891600335;251,0.000023140702540683454;252,0.0000207106526318766;253,0.00001971654130554652;254,0.000019109028828344808;255,0.000016844664140592968;256,0.000019440399270454837;257,0.000018059689094996394;258,0.000014745984673896137;259,0.000013033904056327672;260,0.000011156138217704195;261,0.000010714310961557495;262,0.000010438168926465805;263,0.000006903550877292199;264,0.000007400606540457238;265,0.00000806334742467729;266,0.000007511063354493914;267,0.00000552284070183376;268,0.0000043078157474303335;269,0.0000032584760140819185;270,0.0000029823339789902302;271,0.0000030927907930269062;272,0.000003865988491283632;273,0.000003589846456191944;274,0.000005633297515870435;275,0.000008947001936970692;276,0.000009941113263300769;277,0.000007179692912383887;278,0.0000063512668071088235;279,0.000005522840701833758;280,0.00000574375432990711;281,0.000005743754329907109;282,0.000004749643003577034;283,0.0000037003032702286195;284,0.000005467612294815422;285,0.000003865988491283632;286,0.000004031673712338644;287,0.000004915328224632046;288,0.0000033689328281185936;289,0.0000030927907930269054;290,0.0000037555316772469557;291,0.000004804871410595371;292,0.0000027061919438985424;293,0.000001988222652660154;294,0.0000039764453053203064;295,0.000003810760084265294;296,0.0000017120806175684658;297,0.000000276142035091688;298,0.0000016568522105501278;299,0.0000032032476070635814;300,0.0000038107600842652946;301,0.000001932994245641816;302,0.0000009388829193117394;303,0.0000017120806175684658;304,0.0000027614203509168804;305,0.000002043451059678491;306,0.0000014911669894951155;307,0.000001435938582476778;308,0.0000016568522105501282;309,0.0000012150249544034273;310,0.0000013807101754584404;311,0.0000017673090245868036;312,0.0000012702533614217653;313,0.0000014911669894951155;314,0.0000009941113263300772;315,0.0000010493397333484144;316,0.0000010493397333484144;317,0.0000003313704421100256;318,0.00000044182725614670074;319,0.00000033137044211002555;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.000013144360870364346;70,0.00006351266807108825;71,0.00016248197344794922;72,0.00028122304853737506;73,0.00037301266100185214;74,0.0004375746688062888;75,0.0004900968838807279;76,0.0005592980778747048;77,0.000627063333286205;78,0.0006948838171047237;79,0.0007766770878988816;80,0.000824173517934652;81,0.0008593540132053331;82,0.0009317584548063735;83,0.0010065377179092026;84,0.0010685039905837775;85,0.0011361035607742227;86,0.0012310964208457635;87,0.0012946090889168517;88,0.001340780037184182;89,0.0014108096572834341;90,0.0014413509663645746;91,0.0014733282140281917;92,0.0015194991622955226;93,0.0015898601528368844;94,0.0016218374005005018;95,0.00166011068656421;96,0.00170462478262099;97,0.0017441130936391015;98,0.0017406889324039646;99,0.0017292566521511685;100,0.0017414621301022211;101,0.0017773605946641406;102,0.001774488717499187;103,0.0017647132894569413;104,0.0017988996734012923;105,0.0018118783490506016;106,0.0017976294200398705;107,0.0018157443375418853;108,0.001783988003506341;109,0.0017729423221026735;110,0.0017821102376677175;111,0.0017990101302153292;112,0.0017797354161659291;113,0.001760571158930566;114,0.0017396948210776342;115,0.0017135165561509421;116,0.001717327316235208;117,0.0017055084371332835;118,0.0016958434659050745;119,0.0017094848824386036;120,0.0016751880416802161;121,0.001645254245076277;122,0.00166541261363797;123,0.0016628168785081082;124,0.001678777888136408;125,0.0016989914851051197;126,0.0016957330090910374;127,0.0016796063142416832;128,0.0016441496769359102;129,0.0016261452162479322;130,0.0016127799417494943;131,0.001577986045327942;132,0.0014947016075442887;133,0.0014044583904763248;134,0.001344866939303539;135,0.0012928417798922648;136,0.0012731252385867183;137,0.001255396919933832;138,0.0012040897298137962;139,0.0011645461903886664;140,0.0011203634647739963;141,0.0010485113072431394;142,0.0010221673570953921;143,0.0009790339712140706;144,0.0009457864701890313;145,0.0008957495334304174;146,0.0008328443778365311;147,0.0007640850110987007;148,0.000770822876754938;149,0.0007524318172178314;150,0.0007026710224943091;151,0.0006618020013007394;152,0.0006506458630830353;153,0.0006371701317705609;154,0.000608064761271897;155,0.000569460104766079;156,0.0005309659050742976;157,0.0005077699741265958;158,0.0004718715095646765;159,0.0004542536477258267;160,0.00044514096056780104;161,0.0004297874634167032;162,0.00041404736741647687;163,0.0003804132675423094;164,0.0003518049527068105;165,0.0003546216014647457;166,0.0003382187645802994;167,0.00030298304090260004;168,0.00028602791994797045;169,0.0002894520811831074;170,0.00026945939784246914;171,0.0002529461041439862;172,0.00023394753212967808;173,0.00022036134400316702;174,0.00020296439579239067;175,0.00018827363952551287;176,0.0001686123266269847;177,0.00015066309434602496;178,0.0001401696970125408;179,0.00012155772384736105;180,0.00011885153190346252;181,0.00011299732075951873;182,0.00009615265661892575;183,0.00007737499823269096;184,0.00006826231107466527;185,0.00006627408842200512;186,0.00005423429569200752;187,0.00004351998473045002;188,0.00003186679084958079;189,0.000019440399270454833;190,0.000011211366624722533;191,0.000005246698666742072;192,0.0000015463953965134527;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "enigmaticdelicacy:etherium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0000009941113263300768;70,0.0000018225374316051407;71,0.000002098679466696829;72,0.0000026772833245998813;73,0.0000024852783158251917;74,0.00000276142035091688;75,0.000002209136280733504;76,0.000002788603082496218;77,0.000002871877164953555;78,0.000002871877164953555;79,0.000003755531677246956;80,0.000003617029187771282;81,0.0000037274860018079566;82,0.0000027061919438985424;83,0.0000033137044211002556;84,0.0000027053290000388813;85,0.0000031199735246062434;86,0.000002733374675477881;87,0.0000025676894544228677;88,0.0000030366994421489062;89,0.000002485278315825192;90,0.000003837942815844632;91,0.00000251246104740453;92,0.0000027061919438985424;93,0.000002209136280733504;94,0.000003589846456191944;95,0.0000025405067228435297;96,0.0000021539078737151668;97,0.000003700303270228619;98,0.0000033137044211002556;99,0.0000025396437789838677;100,0.0000030647451175879062;101,0.0000025948721860022053;102,0.0000026501005930205433;103,0.0000020986794666968288;104,0.000001904948570202816;105,0.0000021810906052945048;106,0.0000017673090245868034;107,0.0000022643646877518415;108,0.0000027061919438985424;109,0.0000024852783158251917;110,0.000002402004233367855;111,0.0000014911669894951151;112,0.000002511598103544869;113,0.000002539643778983868;114,0.000001794491756166141;115,0.0000022915474193311795;116,0.0000015174867772147915;117,0.0000022643646877518415;118,0.000001407892907037778;119,0.0000012702533614217646;120,0.0000016568522105501278;121,0.0000016016238035317907;122,0.0000012150249544034273;123,0.0000015735781280927911;124,0.00000138071017545844;125,0.000001656852210550128;126,0.000001351801556159779;127,0.00000138071017545844;128,0.000001270253361421765;129,0.000001215024954403427;130,0.0000008836545122934017;131,0.000001546395396513453;132,0.000001546395396513453;133,0.0000014911669894951153;134,0.000000938882919311739;135,0.0000016016238035317905;136,0.0000009388829193117393;137,0.0000010212940579094148;138,0.0000007451520228177269;139,0.000001215024954403427;140,0.0000011045681403667522;141,0.00000113175087194609;142,0.0000010493397333484144;143,0.0000010493397333484144;144,0.000001215024954403427;145,0.0000008284261052750641;146,0.0000009941113263300768;147,0.0000008284261052750639;148,0.0000007731976982567263;149,0.000000966065650891077;150,0.0000004418272561467008;151,0.0000007451520228177268;152,0.0000005794668017627141;153,0.0000007731976982567263;154,0.0000008836545122934017;155,0.000000828426105275064;156,0.0000008836545122934017;157,0.000000828426105275064;158,0.000000552284070183376;159,0.0000008284261052750641;160,0.0000006627408842200511;161,0.00000044182725614670084;162,0.0000006075124772017136;163,0.0000008284261052750641;164,0.0000007179692912383888;165,0.0000007179692912383887;166,0.0000008284261052750639;167,0.0000006627408842200511;168,0.0000003865988491283633;169,0.0000003313704421100256;170,0.0000007179692912383888;171,0.0000008836545122934017;172,0.0000006346952087810516;173,0.0000009941113263300768;174,0.0000006627408842200511;175,0.0000009941113263300768;176,0.0000004970556631650385;177,0.000000276142035091688;178,0.00000027614203509168793;179,0.0000006627408842200512;180,0.00000027614203509168793;181,0.0000005522840701833759;182,0.00000044182725614670074;183,0.0000004970556631650384;184,0.0000009660656508910772;185,0.0000006075124772017136;186,0.0000002480963596526884;187,0.000000276142035091688;188,0.0000003313704421100256;189,0.0000004970556631650383;190,0.00000027614203509168804;191,0.00000027614203509168793;192,0.00000038659884912836317;193,0.000000276142035091688;194,0.0000006075124772017135;195,0.00000044182725614670074;196,0.0000003313704421100256;197,0.00000022091362807335042;198,0.0000004137815807077012;199,0.0000003313704421100256;200,0.00000027614203509168793;201,0.000000276142035091688;202,0.00000038659884912836317;203,0.00000044182725614670074;204,0.00000038659884912836317;205,0.0000002209136280733504;206,0.0000003865988491283632;207,0.000000552284070183376;208,0.0000000552284070183376;209,0.00000022091362807335037;210,0.00000011045681403667521;211,0.0000004970556631650384;212,0.00000038659884912836317;213,0.00000022091362807335037;214,0.0000002209136280733504;215,0.00000033137044211002555;216,0.00000022091362807335037;217,0.0000001656852210550128;218,0.000000276142035091688;219,0.00000011045681403667518;220,0.000000276142035091688;221,0.0000002209136280733504;222,0.00000016568522105501278;223,0.00000005522840701833759;224,0.00000022091362807335037;225,0.00000011045681403667518;226,0.00000005522840701833759;227,0.0000000552284070183376;228,0.0000003313704421100256;229,0.00000016568522105501278;230,0.00000005522840701833759;231,0.00000011045681403667518;232,0.00000016568522105501278;233,0.00000022091362807335037;234,0.00000011045681403667518;235,0.00000016568522105501278;236,0.000000276142035091688;237,0.00000044182725614670074;238,0.0000003313704421100256;239,0.00000022091362807335037;240,0.000000276142035091688;241,0.000000055228407018337606;242,0.00000022091362807335037;243,0.0000001104568140366752;244,0.000000055228407018337606;245,0;246,0.00000005522840701833762;247,0.00000011045681403667518;248,0.00000011045681403667518;249,0;250,0.0000001104568140366752;251,0.00000005522840701833759;252,0;253,0.0000001104568140366752;254,0;255,0;256,0;257,0.00000022091362807335037;258,0.00000005522840701833759;259,0;260,0.00000005522840701833759;261,0.00000005522840701833759;262,0.00000011045681403667521;263,0.00000005522840701833759;264,0.0000000552284070183376;265,0.0000001104568140366752;266,0;267,0;268,0;269,0;270,0;271,0;272,0;273,0.00000005522840701833759;274,0;275,0;276,0;277,0;278,0;279,0;280,0.00000005522840701833759;281,0;282,0;283,0;284,0;285,0;286,0;287,0;288,0;289,0;290,0.00000005522840701833759;291,0.00000005522840701833759;292,0;293,0;294,0;295,0;296,0;297,0;298,0;299,0;300,0;301,0;302,0;303,0;304,0;305,0;306,0;307,0.00000005522840701833762;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00025394021547031626;70,0.0004845188147718757;71,0.000755966435267005;72,0.0008812796907916129;73,0.0009250205891501363;74,0.0009660000671577429;75,0.0009894721401405365;76,0.0010205105048848421;77,0.0010637543475802004;78,0.0010951793111736345;79,0.0011215784897284;80,0.0011267147315811052;81,0.0011540527930551825;82,0.00118702415204513;83,0.0011717258833010506;84,0.0011545498487183473;85,0.0011924365359329272;86,0.001239380681898514;87,0.0012584344823198406;88,0.001262300470811124;89,0.0012788689929166253;90,0.0012831215802570374;91,0.0012741193499130484;92,0.0012961002559063468;93,0.0013104596417311144;94,0.0013075877645661608;95,0.0013202902981803788;96,0.0013250399411839557;97,0.0012977018797098784;98,0.001284226148397404;99,0.001258213568691767;100,0.0012446826089722745;101,0.0012322562173931483;102,0.0012119321636104002;103,0.0011895646587679735;104,0.0011560410157078426;105,0.0011379813266128463;106,0.0011542184782762377;107,0.0011277640713144538;108,0.0010617661249275403;109,0.0010427675529132321;110,0.0010232166968287405;111,0.0009821819904141161;112,0.0009388829193117392;113,0.0009555066698242587;114,0.000974836612280677;115,0.0009524138790312317;116,0.0009456207849679764;117,0.0009726274759999435;118,0.0009821819904141157;119,0.0009399874874521059;120,0.0008941479096268857;121,0.0008668650765598269;122,0.0008447184853454734;123,0.0008358267118155213;124,0.0008575867041807463;125,0.0008618392915211582;126,0.0008511802089666191;127,0.0008477008193244639;128,0.0008082677367133707;129,0.0007826969842638804;130,0.0007547514103126016;131,0.0007399501972316871;132,0.0007205650263682505;133,0.0006948285886977054;134,0.0006645081932446379;135,0.0006808005733150476;136,0.0006787571222553691;137,0.0006171222200229043;138,0.0005628326959238784;139,0.0005507929031938808;140,0.0005438341239095703;141,0.000548031482842964;142,0.000539691993383195;143,0.0005257192064075556;144,0.0005141764693407231;145,0.0004852367840631141;146,0.00046424998939614587;147,0.0004516026841889465;148,0.00043288025420973005;149,0.00041669833095335713;150,0.0004309472599640883;151,0.00043177568606936334;152,0.0004079722426444598;153,0.0003755531677246956;154,0.00035473205827878237;155,0.00035517388553492905;156,0.0003453984574926833;157,0.000328995620608237;158,0.0003232518662783299;159,0.0003391576474996112;160,0.00034628211200497675;161,0.00034236089510667476;162,0.000314746691597506;163,0.0003092790793026906;164,0.00030000070692360985;165,0.0002803946224321;166,0.0002611751367897185;167,0.00024902488724568424;168,0.00023588052637531985;169,0.0002497428565369226;170,0.00026321858784939705;171,0.00025394021547031626;172,0.00025333270299311456;173,0.0002576405187405449;174,0.00024963239972288593;175,0.00023030245726646776;176,0.00022422733249445064;177,0.00021224276817147138;178,0.00020440033437486743;179,0.00020903952056440783;180,0.00021754469524523176;181,0.00019722064146248357;182,0.00017722795812184533;183,0.00015740096000226215;184,0.0001550261385004736;185,0.00015756664522331715;186,0.00016529862220588442;187,0.0001623162882268942;188,0.00015889212699175728;189,0.0001533140578829052;190,0.00014950329779863988;191,0.00014011446860552252;192,0.00014502979683015454;193,0.00014298634577047606;194,0.00014182654922309095;195,0.00013729781984758726;196,0.00013862330161602734;197,0.00013271386206506526;198,0.000108137220941905;199,0.00009808565086456757;200,0.00010537580059098813;201,0.0001104568140366752;202,0.00010167549732075952;203,0.00009830656449264092;204,0.00008908342052057854;205,0.00009245235334869713;206,0.00009223143972062377;207,0.00009604219980488906;208,0.00008980138981181693;209,0.00007406129381159072;210,0.00006980870647117871;211,0.00007693317097654427;212,0.00007273581204315062;213,0.00005892871028856621;214,0.0000556702342744843;215,0.000056498660379759354;216,0.000055559777460447625;217,0.00005876302506751121;218,0.00006417540895530829;219,0.00006638454523604179;220,0.00005942576595173125;221,0.00005456566613411754;222,0.000049484652688430486;223,0.000050092165165632196;224,0.000050533992421778896;225,0.000041310848449716526;226,0.00003965399623916639;227,0.000041200391635679844;228,0.00003810760084265295;229,0.00002987856819692064;230,0.00002855308642848053;231,0.000023969128645958514;232,0.000020544967410821588;233,0.000020379282189766572;234,0.00001905380042132647;235,0.000014248929010731099;236,0.000010935224589630845;237,0.000014801213080914474;238,0.00001678943573357463;239,0.0000155744107791712;240,0.000016402836884446267;241,0.000014856441487932814;242,0.000009664971228209079;243,0.000004528729375503682;244,0.000003479389642155269;245,0.000003479389642155269;246,0.000004031673712338645;247,0.000005412383887797085;248,0.000005688525922888773;249,0.000004363044154448671;250,0.00000276142035091688;251,0.0000023195930947701795;252,0.0000017120806175684654;253,0.0000014359385824767778;254,0.0000018225374316051405;255,0.0000009941113263300768;256,0.0000023195930947701786;257,0.0000024852783158251917;258,0.0000020986794666968283;259,0.00000011045681403667518;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0003033696397517283;70,0.0006146921701140975;71,0.0010243212649691075;72,0.0012650618911620411;73,0.001384797077577797;74,0.0014112514845395806;75,0.001395400931725318;76,0.0014200328012554963;77,0.0014672530892561751;78,0.0014964689165688754;79,0.0015280595653833647;80,0.0015512002679240482;81,0.0015924558879667464;82,0.001606980959012569;83,0.0016042195386616522;84,0.001655581957188706;85,0.0016560790128518714;86,0.001694462755729616;87,0.001737872283646029;88,0.001805085254987346;89,0.0018049195697662909;90,0.0017897317578362483;91,0.001778244249176434;92,0.0017760903413027189;93,0.0017505748172602469;94,0.0017074966597859433;95,0.0016856262106066822;96,0.0016808213391960865;97,0.001648181350648249;98,0.0016118962872372013;99,0.0015232546939727692;100,0.0014231808204555416;101,0.0013521570890299595;102,0.0013063175112047391;103,0.001268044225141031;104,0.0012690383364673612;105,0.0012396568239336056;106,0.0011990087163681095;107,0.0011639939063184833;108,0.0011571455838482094;109,0.0010989900712578997;110,0.001058286735285385;111,0.0010162579175444302;112,0.0009636804740629729;113,0.0009201604893325228;114,0.0008872443587495935;115,0.0008567030496684528;116,0.0008315741244751091;117,0.0008161653989169931;118,0.000771375160825121;119,0.000716864723098022;120,0.0006916253410906417;121,0.00066809803970083;122,0.0006405942930056977;123,0.0006148026269281341;124,0.0005905021278400656;125,0.0005555977746044762;126,0.0005257744348145739;127,0.0005111941353617329;128,0.0005209695634039786;129,0.000512685302351228;130,0.0004988229721896251;131,0.0004845740431788941;132,0.0004778361775226569;133,0.0004641947609891274;134,0.00043823740969050885;135,0.00040465853822335956;136,0.00038433448444061133;137,0.0003597578433174511;138,0.0003542350026156173;139,0.0003576039354437359;140,0.00036240880685433133;141,0.000345343229085665;142,0.0003229757242432383;143,0.0003123166416886991;144,0.0002951406071059961;145,0.0002660352366073322;146,0.0002549895552036647;147,0.0002562045801580681;148,0.00024410955902105216;149,0.00021892540542069026;150,0.00021594307144170004;151,0.000211359113659178;152,0.00020362713667661074;153,0.00017684135927271697;154,0.0001562963918618954;155,0.00015822938610753724;156,0.00015811892929350053;157,0.00015878167017772062;158,0.00014729416151790638;159,0.0001358618812651105;160,0.00013773964710373396;161,0.00013310046091419362;162,0.00012702533614217647;163,0.00012365640331405786;164,0.00011277640713144538;165,0.00009803042245754923;166,0.00008831022282232182;167,0.00009339123626800889;168,0.00008963570459076192;169,0.00008825499441530348;170,0.00008223509805030469;171,0.00007317763929929732;172,0.00006815185426062859;173,0.00006251855674475817;174,0.00005953622276576793;175,0.00005351632640076914;176,0.00004688891755856862;177,0.00003910171216898302;178,0.0000367268906671945;179,0.000033689328281185935;180,0.00003838374287774463;181,0.00003534618049173606;182,0.000025681209263526985;183,0.000016734207326556293;184,0.00001358618812651105;185,0.000012260706358070946;186,0.000012757762021235983;187,0.000010824767775594168;188,0.000007179692912383887;189,0.000002816648757935217;190,0.0000012150249544034269;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00005428776664018971;70,0.00009087761410508585;71,0.00011543919012030416;72,0.00011699672177466677;73,0.00010087845290560044;74,0.0000927966889961133;75,0.00007493883054302538;76,0.00006394068822548035;77,0.000056526274583268524;78,0.00003741724575492372;79,0.000015022126708987825;80,0.000004142130526375319;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0006353475943389557;70,0.0011923813075259088;71,0.0017612891282218044;72,0.0019677881420633683;73,0.0019740289520564407;74,0.001986455343635567;75,0.0019751335201968075;76,0.0019815400154109346;77,0.0019493970825262621;78,0.0019518271324350692;79,0.0018984764912553548;80,0.001862191427844307;81,0.0018266243337244975;82,0.0017856448557168913;83,0.0017220217308317664;84,0.0016835275311399846;85,0.0016355340454410495;86,0.0016225001413847219;87,0.001587651016556151;88,0.00153319580723607;89,0.0014575328896209475;90,0.001391037887570869;91,0.0013437071427561537;92,0.001246394689589843;93,0.0011563723861499526;94,0.0011262176759179404;95,0.0010698294723522177;96,0.0009943874683651683;97,0.0009519168233680666;98,0.000935458758076602;99,0.0008827708577811082;100,0.0008041256061869954;101,0.0007331018747614133;102,0.0006741731644728469;103,0.0006091141010052453;104,0.0005414593024077818;105,0.0004889923157403611;106,0.0004530386227714233;107,0.00041973589333936577;108,0.0003743381427702922;109,0.00033103907166791557;110,0.0002921030447199875;111,0.00025443727113348127;112,0.0002206374860382587;113,0.0001910902882834481;114,0.00016458065291464604;115,0.00013243772002997356;116,0.00010206209616988789;117,0.0000640649521412716;118,0.000036450748632102814;119,0.000014966898301969489;120,0.000004915328224632047;121,0.0000004970556631650385;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.00006605317479393177;72,0.0003938337704477654;73,0.0007637536406565906;74,0.0008722774604476239;75,0.0008648216255001484;76,0.0008519534066648758;77,0.000868356243549322;78,0.0008586360439140947;79,0.0008584703586930395;80,0.00086344091532469;81,0.000880948320349503;82,0.0008748731955774859;83,0.0009014932877603246;84,0.0009004991764339945;85,0.0008837097407004198;86,0.0008950867925461975;87,0.0008956943050233992;88,0.0008869129883074835;89,0.0008819424316758331;90,0.000862612489219415;91,0.0008579180746228561;92,0.0008256094565171287;93,0.0008313532108470357;94,0.0008298620438575407;95,0.000816828139801213;96,0.0008144533182994245;97,0.0008105321014011225;98,0.0007865077443481457;99,0.0007734738402918181;100,0.0007571814602214085;101,0.0007598876521653069;102,0.0007489524275756761;103,0.0007185215753085721;104,0.0007030023929364192;105,0.000688256408262523;106,0.0006947733602906869;107,0.0006783705234062407;108,0.0006404286077846428;109,0.0006307636365564337;110,0.000617729732500106;111,0.0005944233447383676;112,0.0005683003082186938;113,0.0005741545193626376;114,0.0005620594982256217;115,0.0005391397093130116;116,0.0005231786996847121;117,0.000526602860919849;118,0.0005172140317267317;119,0.0004983259165264602;120,0.00048750114875086595;121,0.0004847397283999491;122,0.00046883394717866784;123,0.00044768146729064456;124,0.00044696349799940624;125,0.0004553029874591751;126,0.0004442020776484893;127,0.0004476262388836262;128,0.00043613873022381195;129,0.0004179133559077606;130,0.00040951863804097324;131,0.00041183823113574345;132,0.0004027255439777178;133,0.00040554219273565296;134,0.00038864230018804166;135,0.0003604758126086895;136,0.00037135580879130197;137,0.00035495297190685574;138,0.0003558366264191491;139,0.00034865693350676525;140,0.00033534688741534584;141,0.00032109795840461484;142,0.0003127584689448458;143,0.00031502283363259767;144,0.0003139182654922309;145,0.0003029278124955817;146,0.0002946435514428311;147,0.0002833769564110902;148,0.00027895868384962314;149,0.0002658695513862772;150,0.0002566464074142148;151,0.00025996011183531504;152,0.00025841371643880166;153,0.0002542715859124263;154,0.0002510131098983444;155,0.00023483118664197148;156,0.00023980174327362184;157,0.00023118611177876117;158,0.00023057859930155944;159,0.00023168316744192623;160,0.00024013311371573189;161,0.00024201087955435537;162,0.0002052287604801425;163,0.00010653559713837321;164,0.00001932994245641816;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "majruszsdifficulty:enderium_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0.000002374821501788516;75,0.000006461723621145499;76,0.00000850517468082399;77,0.00001060385414752082;78,0.000013365274498437701;79,0.00001772831865288637;80,0.0000198269981195832;81,0.00002209136280733504;82,0.00002639917855476537;83,0.000027338061474077112;84,0.00003186679084958079;85,0.00002998902501095732;86,0.000030320395453067337;87,0.000024410955902105218;88,0.00002137339351609665;89,0.00001789400387394138;90,0.00001535349715109785;91,0.000011763650694905908;92,0.000007952890610640613;93,0.00000552284070183376;94,0.00000436304415444867;95,0.0000026509635368802044;96,0.0000048600998176137075;97,0.0000053571554807787464;98,0.000005467612294815423;99,0.000007952890610640613;100,0.000007511063354493913;101,0.000008947001936970689;102,0.00001099045299664918;103,0.00001060385414752082;104,0.000012702533614217647;105,0.000012757762021235986;106,0.000014083243789676088;107,0.000014193700603712761;108,0.000016292380070409592;109,0.000015243040337061175;110,0.000016071466442336242;111,0.000016292380070409592;112,0.00001607146644233624;113,0.000017286491396739668;114,0.000018004460687978057;115,0.000015574410779171204;116,0.000015243040337061178;117,0.000012923447242290997;118,0.00001242639157912596;119,0.000011874107508942583;120,0.000011321823438759208;121,0.000010327712112429132;122,0.000008891773529952353;123,0.000007069236098347212;124,0.000006737865656237188;125,0.000005909439550962122;126,0.000007014007691328874;127,0.000004142130526375319;128,0.000003921216898301969;129,0.000004031673712338645;130,0.000003368932828118593;131,0.0000022643646877518415;132,0.0000018225374316051405;133,0.0000012702533614217649;134,0.0000006627408842200511;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00014287093586503712;70,0.00022452998599160938;71,0.00025121662252883714;72,0.0002642155348649602;73,0.00024581959735730055;74,0.000230885771157058;75,0.00022679037823418376;76,0.00022954927352678917;77,0.00021920920432609217;78,0.00021871493242424936;79,0.0002089597880542807;80,0.00020162680377234395;81,0.00018266536043270607;82,0.0001880225071379931;83,0.00020668524384615243;84,0.0002043872093589567;85,0.00018577125966250682;86,0.00016741266131422672;87,0.0001587682776485716;88,0.00014307528100355955;89,0.0001343902967302386;90,0.000128793643853362;91,0.00013092532097762325;92,0.00013976902045195115;93,0.00013841838848194194;94,0.0001316525182550996;95,0.00013431222669150385;96,0.00012266197811584687;97,0.00009917512176746135;98,0.00007723693027233878;99,0.00008085352996282661;100,0.00009624401087755287;101,0.00009391390219030024;102,0.00008132393307527315;103,0.00006433176504804769;104,0.00005088937610090955;105,0.00005031029654367525;106,0.00005453160498312286;107,0.00005193118520968605;108,0.00005617632495719081;109,0.000054552904446459704;110,0.00005702107716009081;111,0.00004940707701111539;112,0.00004154174544554561;113,0.000029962095211198912;114,0.00001911559017734672;115,0.000011775285558668932;116,0.000009295363446110604;117,0.000009317368514531972;118,0.000007240515576147617;119,0.000004789338421121463;120,0.0000009634768193120925;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00011881944994388941;70,0.00022653087598644767;71,0.00025621218411131687;72,0.00027488907230823097;73,0.00028380440753442566;74,0.00026161428365149267;75,0.00024309797112545716;76,0.0002361174267533128;77,0.0002218676428103921;78,0.00021369785810194556;79,0.00021599512425468547;80,0.00021281735850578828;81,0.00020560511032867017;82,0.00019805263358645868;83,0.00018612388614608837;84,0.00019031814026475871;85,0.00020280284584248056;86,0.00020322356945716457;87,0.000182916553214158;88,0.00017598772973764868;89,0.00016026483602748115;90,0.0001424692488110719;91,0.00013949896017949976;92,0.00014063110456405653;93,0.00014053932045737485;94,0.00013197775224838273;95,0.00011579509484133891;96,0.00011469621360642666;97,0.00010544494141469682;98,0.00009697424789307141;99,0.00009775705753242566;100,0.00010399247665083809;101,0.000088127273221125;102,0.00007131251984790769;103,0.00007261041737333636;104,0.00008361129458506496;105,0.00008110585971597172;106,0.00006544117822890379;107,0.00004425628455161577;108,0.00003486304811036653;109,0.000034186939889168306;110,0.00003242780606768511;111,0.00002698786992882102;112,0.00002974392184769645;113,0.000028665673495049373;114,0.000021814591749265496;115,0.000015237208389723656;116,0.000007995003940269539;117,0.0000033550959696791925;118,0.0000018073020089793921;119,0.0000010493397333484142;120,0.00000016568522105501275;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00002352518850520771;70,0.00005145548559847709;71,0.00007942769474364775;72,0.00009119670773425652;73,0.00009943460188715695;74,0.00008671901423613844;75,0.00006373680376904412;76,0.000058582119942101555;77,0.00006049512233503019;78,0.00006545796974556278;79,0.00006637415791329056;80,0.00007381946523364618;81,0.00007422012939576189;82,0.00006994855585059774;83,0.00005755970376920665;84,0.000054320297192571166;85,0.0000654712399628692;86,0.00007603383047936312;87,0.00007700936392790846;88,0.00007876749701478398;89,0.00008514836260430057;90,0.00009986394234560192;91,0.00008980803115190705;92,0.00007358935969849313;93,0.00007699314800337263;94,0.00008656517227792384;95,0.00008860045400774513;96,0.00007904978067383575;97,0.00006799658246826881;98,0.00007718218962033078;99,0.00007467584966409192;100,0.0000759902864230535;101,0.00008539384245545777;102,0.00008921996130860684;103,0.00007775836960139204;104,0.00006433553895526895;105,0.000060322466811190434;106,0.00006576143055215961;107,0.00007242328566294029;108,0.00008892920602157353;109,0.00008781310412617927;110,0.00008559177304406524;111,0.00007667641270191315;112,0.00007579465685808961;113,0.00007160172863107218;114,0.00007047577356980984;115,0.000066111396176356;116,0.00005872974205556243;117,0.00005598218655996582;118,0.00005394736541883048;119,0.00004822446636544273;120,0.00005102138148189753;121,0.00005534435458065151;122,0.00006138662925248929;123,0.00006235286816407744;124,0.00006292511896977229;125,0.00006578424987478317;126,0.0000558601371174607;127,0.000058352435131223276;128,0.00006141574168908074;129,0.000060611304751179105;130,0.000057016999431747896;131,0.00006233612762913585;132,0.00007266432848711396;133,0.00007812026096317478;134,0.000075718140742729;135,0.00006619492380171373;136,0.00006525887350059125;137,0.00006829909881615309;138,0.00006549888692076201;139,0.00006004206094424583;140,0.000050047893457930995;141,0.00004930524435626351;142,0.000045079927097699195;143,0.000046809467530074475;144,0.00004719802232129187;145,0.00006353633791403753;146,0.00006780790905946901;147,0.000053356247915069274;148,0.0000393131897283262;149,0.00003935567491506321;150,0.000041168173465097385;151,0.00005285309389132092;152,0.000058859012613565046;153,0.00006067760936420038;154,0.00005034129629000204;155,0.000048417708036441225;156,0.0000479007182741287;157,0.00004875674848829986;158,0.00005029175338464548;159,0.00004878474437781008;160,0.0000503731855214938;161,0.00004352585159682405;162,0.000045288787668600324;163,0.00006116065394833588;164,0.00007767224991596256;165,0.0000789234034852869;166,0.00005880890235633505;167,0.00005287691123783687;168,0.00004770960388613019;169,0.000048036631452078857;170,0.0000333915835328466;171,0.000031094456095183726;172,0.000038045411131191624;173,0.00004587803562064777;174,0.000046475544790020176;175,0.000048272538507443506;176,0.00004957330345187327;177,0.00004460355297040992;178,0.00003759460887494722;179,0.00004198184409427599;180,0.00004832505563881941;181,0.00006223119307986516;182,0.00006151728029669232;183,0.000047206278041524356;184,0.000040202539766082666;185,0.00003553596990734938;186,0.00003448007170467823;187,0.00002915605365206771;188,0.000038543962147759746;189,0.00004425003427583062;190,0.00003895187590220036;191,0.00003760991228999795;192,0.000042862018674267696;193,0.000037867673332910934;194,0.000039885034179292916;195,0.00005104942667739;196,0.000056157305929964885;197,0.000047141901853657754;198,0.00003817453482555628;199,0.00003019575637907235;200,0.000021711552001952586;201,0.000022191464295055773;202,0.000025436996151242767;203,0.000024026514412626004;204,0.00002047765778976799;205,0.000017556161352883897;206,0.000014102919837572994;207,0.000013735593081346051;208,0.000018766871108042483;209,0.000024385613605483526;210,0.000023496839183597846;211,0.00001862880057044317;212,0.0000152223296844293;213,0.000017442252763408572;214,0.000017286922868669498;215,0.00001671737992129289;216,0.000015458344830046726;217,0.000020531160309067;218,0.000023177809126648896;219,0.000016565933273922293;220,0.000009722788466806401;221,0.000005260937240426487;222,0.000008405303247472958;223,0.000015312190873018954;224,0.000019469739361683324;225,0.000014855578544073154;226,0.000012614944812462001;227,0.00001660778605111588;228,0.000015030756147584444;229,0.000010788955605418217;230,0.000012464361108951067;231,0.000014138732007748949;232,0.00001624509909796975;233,0.000012706852972999073;234,0.000009967001579090613;235,0.000006220099340440273;236,0.000006768068691325341;237,0.0000068819772808006605;238,0.000010100326405408319;239,0.00001169590960192248;240,0.0000116229119745681;241,0.00000941489844874878;242,0.000008976342028199183;243,0.000006493652543952976;244,0.000005367942279024516;245,0.00000733174333248833;246,0.000006955729864045611;247,0.000005696896190359571;248,0.0000055377408018177125;249,0.000006769794579044664;250,0.000007158119315892349;251,0.0000037955203709700275;252,0.0000015844577160008891;253,0.0000004970556631650383;254,0.0000009388829193117391;255,0.0000024300499088068546;256,0.0000016016238035317907;257,0.0000001104568140366752;258,0.0000001104568140366752;259,0.0000003313704421100257;260,0.0000003865988491283632;261,0;262,0;263,0;264,0;265,0;266,0;267,0;268,0.0000001240375698608566;269,0;270,0;271,0;272,0;273,0;274,0;275,0;276,0;277,0;278,0;279,0;280,0.0000000552284070183376;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00003463501879932523;70,0.00006861374317760159;71,0.0000569626005651874;72,0.00005129372983553264;73,0.00003417974166190008;74,0.000038887447560144255;75,0.00004149838110853531;76,0.00003456269414247484;77,0.000012529992565187728;78,0.0000025571509003011114;79,0.0000015342905401806667;80,0.00000012785754501505556;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00018166683346796178;70,0.00032011679123617967;71,0.0004886520089938424;72,0.0005591599454839966;73,0.0005555101225697654;74,0.000547675224653591;75,0.0005493815510722332;76,0.0005613208703559499;77,0.0005301934010787557;78,0.00047809825580458746;79,0.00045581437282587187;80,0.00043843979978228423;81,0.00039450234922158776;82,0.0003641921435732771;83,0.0003692447226468298;84,0.0003632202344534053;85,0.00033757168873084216;86,0.0003148897877752001;87,0.0002823546004114914;88,0.0002512384926085185;89,0.00022580727483350845;90,0.00021191150559734382;91,0.00018925750339350946;92,0.00016322113879774054;93,0.00013730747403201723;94,0.00011494126360537998;95,0.00009547260292352125;96,0.00007411463452891604;97,0.000054746776476664007;98,0.000035180495270681046;99,0.000012923447242291;100,0.0000031480192000452425;101,0.000000276142035091688;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0.0000004418272561467007;73,0.00000027614203509168793;74,0.0000004970556631650383;75,0.00000038659884912836307;76,0.0000011045681403667517;77,0.0000008284261052750639;78,0.00000056434544642876;79,0.0000006989250129562034;80,0.0000009576794671447256;81,0.00000030712382439465786;82,0.0000004297039472890169;83,0.0000007731976982567265;84,0.0000011045681403667522;85,0.0000009250758175571549;86,0.0000007179692912383888;87,0.0000004970556631650383;88,0.000000552284070183376;89,0.00000044182725614670074;90,0.0000005764068226741441;91,0.0000013375431446854865;92,0.0000009630056718025072;93,0.00000039866022537374727;94,0.0000008836545122934015;95,0.0000011934414390169506;96,0.0000009172994039252624;97,0.000000276142035091688;98,0.0000003623522314129954;99,0.00000011045681403667518;100,0.0000008984907598789364;101,0.00000038659884912836317;102,0.00000027614203509168793;103,0.0000012702533614217649;104,0.0000013798472315987784;105,0.0000012150249544034273;106,0.0000005522840701833758;107,0.0000002209136280733504;108,0.0000003313704421100256;109,0.0000003313704421100256;110,0.0000007451520228177268;111,0.0000006131116933945749;112,0.0000006316352296924816;113,0.0000013494806557062707;114,0.0000008957158885387858;115,0.0000007973204507474944;116,0.0000005091170394104225;117,0.0000008819286245740785;118,0.0000004129186368480398;119,0.0000007442890789580652;120,0.0000007761338121206966;121,0.0000004016582718500173;122,0.00000015356191219732888;123,0.00000044182725614670074;124,0.0000019894328788048007;125,0.0000011627326612490598;126,0.0000004840694104476931;127,0.0000006627408842200512;128,0.0000004418272561467008;129,0.0000003313704421100256;130,0.0000000552284070183376;131,0.000000276142035091688;132,0.0000003865988491283631;133,0.0000008284261052750639;134,0.00000038659884912836317;135,0.00000038659884912836317;136,0.0000004970556631650383;137,0.0000004418272561467007;138,0.00000038659884912836317;139,0.0000001656852210550128;140,0.00000039866022537374727;141,0.00000011045681403667518;142,0.0000001656852210550128;143,0.00000016568522105501278;144,0.00000022091362807335037;145,0.00000016568522105501283;146,0.00000022091362807335042;147,0.00000011045681403667521;148,0.0000004654143883107825;149,0.0000001104568140366752;150,0;151,0.0000001656852210550128;152,0.00000039866022537374727;153,0.0000009931245172458157;154,0.0000007442271463457655;155,0.00000022091362807335037;156,0.0000002480963596526884;157,0.00000011045681403667517;158,0.00000005522840701833759;159,0.00000016568522105501278;160,0.0000001656852210550128;161,0.0000010642974269158812;162,0.00000043377311345652663;163,0.000000276142035091688;164,0.0000002209136280733504;165,0.0000001104568140366752;166,0.00000011045681403667517;167,0.00000011045681403667517;168,0.00000022091362807335037;169,0.00000011045681403667518;170,0;171,0.00000016568522105501275;172,0.00000011045681403667517;173,0.0000005280374524680081;174,0.0000005037908347526404;175,0.0000003192471332523417;176,0.00000038659884912836317;177,0.0000004418272561467008;178,0.000000276142035091688;179,0.00000011045681403667518;180,0.00000022091362807335037;181,0.00000016568522105501278;182,0.00000027614203509168793;183,0;184,0.00000022091362807335037;185,0.00000033137044211002555;186,0.00000022091362807335037;187,0.00000016568522105501278;188,0.00000011045681403667518;189,0.00000022091362807335037;190,0.00000016568522105501278;191,0;192,0;193,0;194,0;195,0.00000016568522105501278;196,0.00000044182725614670074;197,0.00000022091362807335037;198,0.00000011045681403667518;199,0.00000005522840701833759;200,0;201,0;202,0.00000011045681403667518;203,0;204,0.00000024723341579302694;205,0.00000016482227719535128;206,0;207,0;208,0;209,0.0000001104568140366752;210,0.00000016568522105501278;211,0.00000011045681403667518;212,0;213,0;214,0.00000005522840701833759;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0.0000000552284070183376;223,0.00000016568522105501275;224,0.00000011045681403667518;225,0;226,0;227,0;228,0;229,0.00000011045681403667518;230,0.00000005522840701833759;231,0;232,0;233,0.00000011045681403667518;234,0;235,0.0000006627408842200511;236,0.000001767309024586803;237,0.00000044182725614670074;238,0;239,0;240,0;241,0.00000016568522105501278;242,0.00000016568522105501278;243,0.00000011045681403667518;244,0;245,0;246,0;247,0.0000000552284070183376;248,0.0000000552284070183376;249,0.0000001104568140366752;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "allthemodium:unobtainium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00000022091362807335042;70,0.0000006627408842200511;71,0.0000008284261052750639;72,0.0000017673090245868036;73,0.00000016568522105501283;74,0.000000276142035091688;75,0.000001932994245641816;76,0.0000019882226526601536;77,0.0000022643646877518415;78,0.000003755531677246956;79,0.0000048600998176137075;80,0.000003921216898301969;81,0.000004804871410595371;82,0.000006296038400090487;83,0.0000066826372492188505;84,0.000006792231119395862;85,0.00000933187489837973;86,0.000008670859901879005;87,0.000011349006170338545;88,0.000009471240331715068;89,0.000012507939773863974;90,0.000012479894098424973;91,0.00001507476628442718;92,0.000013803649979145754;93,0.000017617861838849694;94,0.000017368902535337343;95,0.000020431921765205926;96,0.000018720704091497122;97,0.00001802905458797841;98,0.000016567659161641617;99,0.00001905207453360715;100,0.000016979714854629994;101,0.000017588953219551037;102,0.000018197328640612406;103,0.00001822537431605141;104,0.000018667201572198107;105,0.000016622887568659958;106,0.000016842075309013985;107,0.00001637047648970896;108,0.000016346745533568266;109,0.00001714626301954467;110,0.000014632076084420815;111,0.00001579446146338489;112,0.000012756036133516661;113,0.000013998243819499428;114,0.00001604255782303758;115,0.000014661847647579139;116,0.000011100909810685858;117,0.000012950629973870336;118,0.000011540148235253572;119,0.000012592076800180972;120,0.00001060299120366116;121,0.000009220555140483394;122,0.000009331874898379732;123,0.000007399743596597577;124,0.000009885021912422768;125,0.00001195651864754026;126,0.00001079672210015517;127,0.000009856113293124106;128,0.000006737865656237187;129,0.000009054869919428383;130,0.000009938524431721782;131,0.000010437305982606145;132,0.00001176365069490591;133,0.000008421900598366654;134,0.000009581697145751743;135,0.000008394717866787315;136,0.000007234921319402226;137,0.000007371697921158577;138,0.000007290149726420563;139,0.000005909439550962123;140,0.000007455834947475575;141,0.000006903550877292199;142,0.0000073453781334389;143,0.000007731114038707601;144,0.000006378449538688162;145,0.000006765048387816525;146,0.000005301927073760409;147,0.0000050810134456870594;148,0.000003976445305320307;149,0.000004749643003577032;150,0.000003753805789527633;151,0.0000063758607071091776;152,0.000004639186189540358;153,0.000004031673712338645;154,0.000003975582361460646;155,0.0000038651255474239706;156,0.00000392121689830197;157,0.0000032032476070635805;158,0.000004528729375503683;159,0.000005190607315864073;160,0.000005687662979029111;161,0.0000036450748632102815;162,0.000005436977787797438;163,0.000004776825735156371;164,0.0000035898464561919443;165,0.000003700303270228619;166,0.0000030927907930269054;167,0.0000029271055719718923;168,0.000002871877164953555;169,0.000004639186189540358;170,0.000003479389642155269;171,0.000004252587340411994;172,0.000003368932828118593;173,0.000004252587340411994;174,0.0000030927907930269054;175,0.0000025405067228435297;176,0.0000029823339789902302;177,0.0000022643646877518415;178,0.000003810760084265294;179,0.0000025396437789838677;180,0.000002705329000038881;181,0.0000024572326403861926;182,0.0000021539078737151668;183,0.0000013254817684401024;184,0.0000012974360930011029;185,0.0000013526645000194404;186,0.000000552284070183376;187,0.00000044182725614670084;188,0.00000027614203509168804;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.000050499311005625955;70,0.0001045656937922837;71,0.00012963778714568754;72,0.00013504291674206996;73,0.0001266332198618118;74,0.00012215948410795817;75,0.00012257288578241084;76,0.000127023659100336;77,0.00013183096842834933;78,0.00012826289319795185;79,0.00012775577556446742;80,0.00013403691866369284;81,0.0001417584510498897;82,0.00013257277074401057;83,0.00011882158594661858;84,0.00011825835970926952;85,0.000131996013139755;86,0.0001381010748854659;87,0.0001423432084067154;88,0.00014425744916932607;89,0.0001444815607577653;90,0.00013937784608375616;91,0.0001259224812845863;92,0.00013246520086043987;93,0.0001376419443044348;94,0.0001390332987459467;95,0.0001389106165399539;96,0.00014109892195477986;97,0.0001485716912631501;98,0.00013832932562398147;99,0.00011604133128766616;100,0.00010528759672417184;101,0.00011915912022244942;102,0.00012513095164697958;103,0.0001221910784099946;104,0.00011426681361217795;105,0.00011534656736633695;106,0.00013606563949709402;107,0.00014610681981936651;108,0.00013315742967769358;109,0.0001251212736870223;110,0.00011876349675143464;111,0.00012811920675435192;112,0.00012807698616502141;113,0.00011783817214847982;114,0.00011745763951663063;115,0.00012242471461615753;116,0.00012864049009667037;117,0.00012488372341149374;118,0.0001283597682693109;119,0.00012622869751617577;120,0.00012718725221282475;121,0.00013802793955708213;122,0.00013521470068797664;123,0.000135729389988854;124,0.0001440201092773283;125,0.00013623667116018708;126,0.00012619478243393708;127,0.00011716917596823762;128,0.00011571952179984822;129,0.00011166895259265148;130,0.00011583448675163451;131,0.0001281113658679029;132,0.0001232209817286474;133,0.00011768489240722896;134,0.00011758617351669297;135,0.00011429417659716593;136,0.0001136769336840294;137,0.00010573574507113583;138,0.0001042321695440725;139,0.0000900320487541675;140,0.00008768031843979613;141,0.00009311018437992258;142,0.00010179386941295724;143,0.00010211067395784987;144,0.00010012844727718011;145,0.00008794708711917082;146,0.00007224829925124315;147,0.00007051788266205399;148,0.00007485804392587923;149,0.0000810324816334695;150,0.00007834970820052106;151,0.00006650752961438598;152,0.00005382958990016867;153,0.00006012152187775456;154,0.00006381188641525468;155,0.00006588375510893237;156,0.00006573291847360049;157,0.0000705271965044014;158,0.000076229246840539;159,0.00007524626451433007;160,0.00007123628342522225;161,0.00006462877863436928;162,0.00005352889860010385;163,0.000051679770399821415;164,0.00006916993874300118;165,0.00007291511094750891;166,0.00006073855649409736;167,0.00005124196346691915;168,0.000053017113377954944;169,0.00006271493598620079;170,0.00005492951599770414;171,0.000041635255827579624;172,0.00004551656901154345;173,0.000051813842314053806;174,0.00004247725098113075;175,0.000034492119002492086;176,0.00003197180219029616;177,0.0000273008358613724;178,0.000025087846089955238;179,0.00003076613571326734;180,0.00003721762303483616;181,0.000039280058859427196;182,0.000035865613181882666;183,0.00003354414541596909;184,0.00003400293398246086;185,0.00003288164258522757;186,0.000030299402111929714;187,0.000027629528201848995;188,0.000022479925597661253;189,0.000018767347694946072;190,0.00001936112746210524;191,0.000021978391553431417;192,0.00002626793669638478;193,0.000022033143853492704;194,0.000023123815622050417;195,0.00002163270814592494;196,0.000020768901342403755;197,0.000021184408810830778;198,0.00001996982947497783;199,0.000015277549066879294;200,0.000015944628573308406;201,0.0000198079240846162;202,0.00001533412554928269;203,0.000008854666943986909;204,0.000009077737931709412;205,0.000012717635131761725;206,0.00001793154193183666;207,0.000020570215957887886;208,0.00001894590268218396;209,0.000015028985624837893;210,0.000010928573970574487;211,0.00001470978566681758;212,0.000012407838286143238;213,0.000011635503531746175;214,0.000009846189438738002;215,0.000006626977370270682;216,0.000002452054977228223;217,0.000005779997972012895;218,0.000009051418143989735;219,0.000007737154645725232;220,0.000005880292878184935;221,0.000004918631216646613;222,0.000003358205543242456;223,0.00000634110489924419;224,0.000010295783189621655;225,0.000009282255626449194;226,0.000004269414745675394;227,0.0000029193390772349385;228,0.000001542080677215145;229,0.0000036092626930343285;230,0.000006638195640446281;231,0.000007187890879050673;232,0.0000035199480035593604;233,0.0000015386289017764991;234,0.000000055228407018337606;235,0;236,0;237,0;238,0.000002042156643888999;239,0.000001739694821077634;240,0.000002369212366700717;241,0.000001951116066694708;242,0.000001153755940367459;243,0.00000033137044211002555;244,0.00000022091362807335037;245,0.0000011597965473850893;246,0.0000009941113263300764;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.0006054137977350167;70,0.0010998089752240338;71,0.0016677664864336488;72,0.0019482791833910977;73,0.0020121327440434373;74,0.0020864720843179474;75,0.002073958089058724;76,0.002031213206454359;77,0.0020155169122941814;78,0.0019854993208658013;79,0.0019420402778258538;80,0.0018889048369907285;81,0.0018605631420511803;82,0.0018150244638228184;83,0.0017250307268003515;84,0.0016653421498083261;85,0.0016603049382026883;86,0.0016301197571254244;87,0.0016268079571321523;88,0.001564923574854191;89,0.0014910850990985016;90,0.0013744388946201162;91,0.0013147865017568271;92,0.0012829711304586083;93,0.0012426029737838597;94,0.0011751081471239667;95,0.0011230544212952691;96,0.0010772472187431288;97,0.0010332835023287037;98,0.0009643736857924443;99,0.0008954276851274486;100,0.0008358248073876929;101,0.0007800117410260923;102,0.0007258460047359007;103,0.0006633141169963448;104,0.0006024124194777444;105,0.0005315429467062479;106,0.0004904777694463715;107,0.00044885078597717076;108,0.00040604496168230274;109,0.0003658329680894682;110,0.0003362305419276393;111,0.00029972456488851814;112,0.00023996742849467686;113,0.00020511830366610583;114,0.00016181923256372916;115,0.00012349071809300286;116,0.00009416443396626561;117,0.00007268058363613228;118,0.00004512160853398182;119,0.000017176034582702993;120,0.000004804871410595371;121,0.0000003313704421100255;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00015613620755127315;70,0.00028688543313574197;71,0.00029744137060183564;72,0.00030744395889331774;73,0.0002991153148264118;74,0.0002671172858950077;75,0.00023881727711983568;76,0.00022866654022983882;77,0.00023464229341387346;78,0.00024927012469811046;79,0.00023966250195590802;80,0.0002289187839997758;81,0.00023782710876703718;82,0.0002319501171978075;83,0.00020052204965319655;84,0.00018404889730762802;85,0.0001668493046707178;86,0.0001660670933054236;87,0.00017519230296571684;88,0.00017972128490280023;89,0.00016109093776560688;90,0.0001377184538375981;91,0.00013381812648500475;92,0.00014159537331668077;93,0.00014149122169181073;94,0.0001239389329303411;95,0.00009609195899596047;96,0.00008446451349739754;97,0.00008584059445475441;98,0.0000863018426652667;99,0.0000842119721284023;100,0.00009885530499082021;101,0.00009745055354342054;102,0.0000897419378042213;103,0.00007450482991348977;104,0.00006879947874896216;105,0.00006937757845057411;106,0.00006450003877658575;107,0.00006272792092004242;108,0.0000671624458885044;109,0.00005958481724650432;110,0.00004330140083306592;111,0.00003565354179850934;112,0.000023126111033204537;113,0.000018472741636926105;114,0.000017962102047142605;115,0.000015717034569493883;116,0.000007985280762062737;117,0.0000037631493885598308;118,0.0000018777658386234785;119,0.0000010493397333484144;120,0.0000006627408842200511;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0.00006806520279444465;70,0.00013373489819940804;71,0.00017372161931436406;72,0.00018482132273639024;73,0.00017453133343658844;74,0.0001488005781401306;75,0.0001410165887077647;76,0.00015684569435302283;77,0.00017559395822998222;78,0.0001806494504269298;79,0.00018006186881416744;80,0.0001769365678239146;81,0.0001784570661406831;82,0.00018235274202039336;83,0.00018363388070522614;84,0.00017202278722087098;85,0.00016436853646319399;86,0.00017827537307280413;87,0.00017935443033216024;88,0.00017683963474820534;89,0.00018324041253242452;90,0.00018975932810084278;91,0.00019534541686679524;92,0.00019792129654299433;93,0.0001957051434281589;94,0.00019177834096690156;95,0.00017656187355987628;96,0.00017078464099158728;97,0.00017493374747922316;98,0.0001703417484621619;99,0.0001545942232775643;100,0.00016094908215355872;101,0.00016603206436178834;102,0.00015792861185561814;103,0.00014969338390886976;104,0.00014258880586345883;105,0.00014607426674136852;106,0.0001384830766535339;107,0.00013062958790437774;108,0.000130782269741511;109,0.0001254139801385588;110,0.00011966595568094505;111,0.00010454549317227352;112,0.00009603075142993844;113,0.00009197015797880338;114,0.00010668980969398819;115,0.00011378422141113318;116,0.00012034046714159643;117,0.00011271048119623571;118,0.0001031417430867213;119,0.00009411454688417172;120,0.00009517031406144037;121,0.0001023624555422527;122,0.00010007958382036623;123,0.00009189753629167203;124,0.00009007424780949465;125,0.00009023115073227076;126,0.00008532003307854018;127,0.00008445903828173412;128,0.0000902631391684479;129,0.00008025499897259927;130,0.00006814819174932371;131,0.00005977472810419845;132,0.00006204620014905489;133,0.00005925558054163011;134,0.00005909890772362904;135,0.00006836681981274532;136,0.00006617184771398419;137,0.00005487490167898272;138,0.000050967041455904913;139,0.000051677437670857645;140,0.000054135563011788316;141,0.000055767613025544386;142,0.00005094505126582594;143,0.00004756844121302485;144,0.000049377439353038744;145,0.00004928257504184561;146,0.00004916429221970235;147,0.000048029788854410786;148,0.000038088913644588545;149,0.000028622121937253458;150,0.000027113859732331604;151,0.000026588088868319208;152,0.000025150491860196217;153,0.00002701490000453099;154,0.000028924847697782882;155,0.000034325474637884044;156,0.00003417303807121103;157,0.0000321837292995551;158,0.00003567220960892163;159,0.000042454948345861215;160,0.000041066620459089905;161,0.00003248721772799261;162,0.000025615699921904747;163,0.000021602553892287302;164,0.000018432480842370172;165,0.000014289055900205361;166,0.000013909792073884123;167,0.00001190137951057637;168,0.00000987066431199909;169,0.000009856544765053939;170,0.000008286849884329625;171,0.00000810573582219756;172,0.000009804916916898326;173,0.000012349068833631804;174,0.000012722872308289325;175,0.00001072700218763148;176,0.000008567723232307042;177,0.0000031437044807469355;178,0.0000016771313912521736;179,0.000005764137659006012;180,0.000006492670573354051;181,0.000005013257474361221;182,0.0000037679253364727845;183,0.000004757260714889907;184,0.000006062745991133714;185,0.0000027366627891500383;186,0.00000033708372559468114;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.00009366737830310057;72,0.0005635506652151168;73,0.001066460539524099;74,0.0012191118565227843;75,0.0012315934765089285;76,0.0012503159064881449;77,0.001241479361365211;78,0.0012262915494351682;79,0.0012530220984320435;80,0.001266884428593646;81,0.0012752239180534152;82,0.0012833977222921292;83,0.0012861039142360276;84,0.0012971495956396952;85,0.001309741672439876;86,0.001290246044762403;87,0.0012798631042429556;88,0.0012873189391904311;89,0.0012779301099973138;90,0.0012721311272603883;91,0.0012760523441586902;92,0.0012402643364108072;93,0.0012572194573654371;94,0.001254734179049612;95,0.001240319564817826;96,0.0012043106434418698;97,0.0011670866971115101;98,0.0011547155339394026;99,0.0011478672114691288;100,0.0011252235645916103;101,0.0010953449963946897;102,0.0010634229771380906;103,0.001029788877263923;104,0.0010189088810813101;105,0.0009851090959860879;106,0.000959317429908524;107,0.0009454550997469213;108,0.0009027083127147279;109,0.0008762539057529442;110,0.0008684114719563404;111,0.0008512906657806556;112,0.000813569663787131;113,0.0007857897750569074;114,0.0007837463239972289;115,0.000755966435267005;116,0.0007259221818490293;117,0.0007243757864525159;118,0.0007023396520521993;119,0.0006763823007535806;120,0.0006833963084449095;121,0.0006745045349149572;122,0.0006413122622969362;123,0.0006466694177777149;124,0.0006332489148722589;125,0.0006043092295946501;126,0.000596963851461211;127,0.0005893423312926805;128,0.0005874093370470387;129,0.0005669748264502538;130,0.0005559291450465862;131,0.0005486389953201658;132,0.0005295299664918209;133,0.0005151153522600347;134,0.0005103657092564579;135,0.0005021919050177438;136,0.000501584392540542;137,0.00046082582816100895;138,0.00045756735214692694;139,0.00045938988957853214;140,0.0004656306995716043;141,0.0004469634979994061;142,0.0004213375171428976;143,0.00042039863422358575;144,0.0004122800583918901;145,0.0004022284883145527;146,0.00039107235009684855;147,0.00037660250745804403;148,0.0003673793634859817;149,0.00036633002375263327;150,0.00036660616578772497;151,0.00036947804295267854;152,0.00034887784713483856;153,0.0003478837358085085;154,0.00035616799686125913;155,0.0003552843423489658;156,0.00033446323290305243;157,0.00032082181636952314;158,0.0003055787760324619;159,0.0003187783653098446;160,0.0003158512597378727;161,0.0003049712635552602;162,0.00027387767040393615;163,0.00013994878338446747;164,0.00002827694439338885;", + "silktouch": false, + "dim": "minecraft:the_end" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.006228528835884657;130,0.006293999199003204;131,0.006356410199359203;132,0.006429501156995372;133,0.006509378337486649;134,0.006587086151655394;135,0.006669577696689213;136,0.006795512192951229;137,0.006874833125667498;138,0.0069854708081167685;139,0.006981187700249199;140,0.007060898006407974;141,0.007185163759344962;142,0.0072004049483802065;143,0.0071985693307226786;144,0.00726554156283375;145,0.0073983179067283735;146,0.007543387326450693;147,0.007602238341046636;148,0.007656083125667498;149,0.0076744393022427915;150,0.0077141553933784265;151,0.007805546902812389;152,0.00792547392310431;153,0.008012081701673194;154,0.008060475258098967;155,0.008129116233535068;156,0.008137070576717694;157,0.008157985493058028;158,0.008222955233179067;159,0.008352560964756141;160,0.00850675284798861;161,0.008565381363474546;162,0.008625734247063012;163,0.00868808962264151;164,0.008691649608401568;165,0.008796001690993236;166,0.00894301797792809;167,0.0091312522249911;168,0.009239831790672837;169,0.009129194108223567;170,0.009071566838732645;171,0.009096208615165541;172,0.009069953720185119;173,0.009172692684229263;174,0.009410655482378068;175,0.00961368592025632;176,0.009638438946244214;177,0.009628203987184052;178,0.00969117123531506;179,0.009842804378782485;180,0.009933361516553933;181,0.010017076806692771;182,0.010121595763616945;183,0.010143790049839802;184,0.010161200605197582;185,0.010178944909220364;186,0.010214544766820932;187,0.010292641954432183;188,0.0102937544499822;189,0.010301597543609826;190,0.010436042630829477;191,0.01058817639729441;192,0.01070242969028124;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.00007275720897116411;2,0.00008649652901388395;3,0.0001051308294766821;4,0.00011942639729441084;5,0.00013989631541473836;6,0.0001718249377002492;7,0.00019718983624065505;8,0.00020703542185831258;9,0.00020803666785332861;10,0.0002376290494838021;11,0.0002602683339266643;12,0.00028096075115699535;13,0.000295812566749733;14,0.0003145024919900321;15,0.00033102305090779643;16,0.0003452629939480242;17,0.0003567216981132076;18,0.0003754672481310075;19,0.00038347721609113567;20,0.00042430580277678893;21,0.00046290939836240655;22,0.0004818774474902101;23,0.000492001156995372;24,0.0005025698647205412;25,0.0005130273228907084;26,0.0005115810786756852;27,0.0005343316126735493;28,0.0005700983446066217;29,0.000617935653257387;30,0.0006309518511925952;31,0.0006264462442150231;32,0.0006438567995728018;33,0.0006854085083659665;34,0.0006875778746885013;35,0.0006825160199359203;36,0.0006936966002135991;37,0.0007253470986116055;38,0.0007507119971520114;39,0.0007825849946600215;40,0.0008070042719829122;41,0.0008284198113207548;42,0.000840935386258455;43,0.0008572334460662156;44,0.0008691927732289073;45,0.0008846008365966536;46,0.0009005095229619082;47,0.0009288225347098612;48,0.0009529080633677466;49,0.0009744904770380919;50,0.0009868948024207903;51,0.0009814435742257033;52,0.0010084215913136346;53,0.001037123976504094;54,0.0010502514239943042;55,0.001062544499822001;56,0.0010814569241723035;57,0.0010545345318618725;58,0.0011062099501601991;59,0.0011779102883588467;60,0.0012275832146671412;61,0.0012258032217871131;62,0.00124499377002492;63,0.0012649074403702385;64,0.0012937766998932006;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0.00001935742257030972;158,0.0001006808472766109;159,0.00023234469562121753;160,0.00037641286934852265;161,0.0005363341046635815;162,0.0006982578319686722;163,0.0008363741545033818;164,0.000972432360270559;165,0.0011465379138483446;166,0.0013104085083659666;167,0.0014821221965112142;168,0.0016449915450338199;169,0.0017950671947312212;170,0.001981799572801709;171,0.002124310252758989;172,0.0022253248487006053;173,0.0024011547703809187;174,0.002608412691349235;175,0.002715156639373443;176,0.0028358067817728727;177,0.003047737184051264;178,0.0032312433250267;179,0.0033421591313634747;180,0.003498409131363475;181,0.0036590534887860444;182,0.003839945265218939;183,0.004008377091491634;184,0.004117679779280883;185,0.004244838020647917;186,0.004434796635813457;187,0.0046028947134211465;188,0.004670923816304734;189,0.004807037646849413;190,0.00499121128515486;191,0.005166763082947669;192,0.005346319864720542;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0005052954788180848;2,0.0006311743503025987;3,0.0007522138661445355;4,0.0008917764328942685;5,0.0010540339088643644;6,0.001198880829476682;7,0.0013196422214311145;8,0.0014480798326806693;9,0.0016053310786756855;10,0.0017902278390886438;11,0.0019309585261658953;12,0.0020755273228907083;13,0.0022149230153079387;14,0.0023138794944820218;15,0.002405938501245995;16,0.0025705322178711286;17,0.002741300284798861;18,0.0028425373798504805;19,0.0029838243147027417;20,0.0031463599145603416;21,0.0032811387504449985;22,0.003417808828764685;23,0.003551753292986828;24,0.003734536311854752;25,0.0039185987006051986;26,0.004106832947668209;27,0.0042312099501602;28,0.004277879138483447;29,0.004368380651477394;30,0.00453870372018512;31,0.004702018066927733;32,0.004899207903168387;33,0.00501056870772517;34,0.0051442906728373095;35,0.005254705856176576;36,0.005410177109291562;37,0.005505629227483089;38,0.0056614898540405835;39,0.005821132965468139;40,0.005975157974368104;41,0.006074225703097187;42,0.00619187210751157;43,0.0064000200249199005;44,0.006603551085795657;45,0.006689435742257031;46,0.006694608846564614;47,0.006792842203631187;48,0.007007831968672126;49,0.007185441883232469;50,0.0073188300996796015;51,0.0074661245105019595;52,0.007553900409398363;53,0.007650965646137415;54,0.007832246796012816;55,0.008050129049483802;56,0.008235192684229264;57,0.008324581701673193;58,0.008396504538981846;59,0.008412023851904593;60,0.008398062032751868;61,0.008305113029547881;62,0.0080937388750445;63,0.007881307849768603;64,0.007775175774296903;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "bigreactors:benitoite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0011971008365966537;66,0.0012220763616945535;67,0.001204109558561766;68,0.00120499955500178;69,0.001205555802776789;70,0.0011973789604841582;71,0.0011739609291562835;72,0.0011895358668565325;73,0.0011882564969740122;74,0.0011850302598789605;75,0.001184807760768957;76,0.0011688990744037025;77,0.0011920946066215736;78,0.0012043320576717695;79,0.0011997152011391956;80,0.0012058339266642934;81,0.0011892577429690283;82,0.0011849190103239587;83,0.0012057783018867925;84,0.0012020514417942327;85,0.0012013283196867213;86,0.0011935408508365966;87,0.0011923171057315772;88,0.0011835283908864366;89,0.001199492702029192;90,0.001187310875756497;91,0.0012017733179067284;92,0.001215178889284443;93,0.0011867546279814884;94,0.0011821933962264152;95,0.0011986583303666785;96,0.0012207969918120328;97,0.0012021626913492347;98,0.0011566616233535066;99,0.0011915939836240656;100,0.0011666184585261657;101,0.001191927732289071;102,0.001204109558561766;103,0.0012065570487718052;104,0.001161500978996084;105,0.001182694019223923;106,0.0012050551797792809;107,0.0011811365254538984;108,0.0011863096297614812;109,0.0012113964044143824;110,0.0011966558383766466;111,0.00119248398006408;112,0.0011923171057315772;113,0.0011898139907440372;114,0.0011917608579565682;115,0.0012024964400142398;116,0.0012058339266642934;117,0.0012041095585617657;118,0.001185809006763973;119,0.0011848077607689571;120,0.0011831390174439306;121,0.0011739053043787826;122,0.0011955989676041296;123,0.0011901477394090424;124,0.0012008276966892133;125,0.0011854752580989676;126,0.0011963220897116414;127,0.0010988674795300818;128,0.0006009700961196156;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0039520291918832325;66,0.0040883098967604125;67,0.004165294588821644;68,0.00414182093271627;69,0.0041428221787112845;70,0.004207625044499823;71,0.004226092470630118;72,0.00424939925240299;73,0.004297459060163759;74,0.004440692862228552;75,0.00462748086507654;76,0.004692951228195087;77,0.00473689480242079;78,0.004744348522605909;79,0.004855375578497686;80,0.004972688234247062;81,0.004978918209327164;82,0.004931080900676397;83,0.004982311320754718;84,0.005068807849768602;85,0.005102572089711641;86,0.0051836173905304385;87,0.0053023762904948375;88,0.005460851281594873;89,0.00545056069775721;90,0.0054106777322890705;91,0.0054612962798148805;92,0.005555413403346386;93,0.005561643378426486;94,0.005510134834460662;95,0.005439769490922037;96,0.005400331523673906;97,0.005384089088643646;98,0.005294088198647206;99,0.005320398718405126;100,0.005297425685297259;101,0.005245360893556426;102,0.005144958170167319;103,0.005077707814168744;104,0.005005173104307582;105,0.004993325026699894;106,0.004983479441082236;107,0.004914226593093627;108,0.004846364364542541;109,0.004796135190459239;110,0.0047602572089711645;111,0.004734336062655749;112,0.004643167052331791;113,0.0045199025453898185;114,0.0044750133499466;115,0.004458826539693842;116,0.0044415828586685645;117,0.004356977572089712;118,0.004331557048771804;119,0.004268589800640798;120,0.0041592314880740475;121,0.00406122063011748;122,0.003977227216091136;123,0.003936398629405482;124,0.0038583570665717336;125,0.003770303043787825;126,0.003674739676041296;127,0.003561543253826985;128,0.003511647828408687;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00038992969028123887;194,0.00040806336774652893;195,0.0004200226949092204;196,0.00041368147027411896;197,0.00039971965112139556;198,0.0003961596653613386;199,0.00038859469562121756;200,0.0003970496618013528;201,0.00039215468138127446;202,0.00040839711641153434;203,0.000392933428266287;204,0.00041106710573157707;205,0.00040645024919900327;206,0.0003998309006763973;207,0.0003949915450338199;208,0.0004097321110715557;209,0.00040305713777144894;210,0.000404559006763973;211,0.00040227839088643655;212,0.0004006096475614098;213,0.0003915428088287647;214,0.0003988852794588821;215,0.0003870372018511927;216,0.00039510279458882165;217,0.0004105664827340691;218,0.00039371217515129944;219,0.0003961040405838377;220,0.00041852082591669633;221,0.00041234647561409754;222,0.0003933228017087932;223,0.0004129027233891064;224,0.00040923148807404773;225,0.0004062833748665006;226,0.00041523896404414384;227,0.00039677153791384837;228,0.00039860715557137776;229,0.0003909865610537558;230,0.00039460217159131367;231,0.0004139039693841225;232,0.00039432404770380915;233,0.00041368147027411896;234,0.000402000266998932;235,0.00041017710929156285;236,0.00040400275898896406;237,0.00041724145603417586;238,0.000400943396226415;239,0.0003986071555713777;240,0.00039855153079387676;241,0.000407062121751513;242,0.0003992746529013884;243,0.00040600525097899613;244,0.0004013883944464223;245,0.00040294588821644715;246,0.0003960484158063368;247,0.00040717337130651476;248,0.0004027233891064436;249,0.0004073402456390175;250,0.00041240210039159854;251,0.00040878648985404054;252,0.0004055046279814881;253,0.0004034465112139552;254,0.0004070064969740121;255,0.0004048371306514774;256,0.0004183539515841937;257,0.00041840957636169455;258,0.0004254182983268067;259,0.000424250177999288;260,0.00040517087931648274;261,0.0004157395870416519;262,0.00041301397294410825;263,0.0004127914738341047;264,0.0004165183339266643;265,0.00040511525453898185;266,0.00040010902456390175;267,0.0004189101993592026;268,0.00042280393378426494;269,0.00043515263438946247;270,0.0004241389284442863;271,0.00042608579565681743;272,0.0004336507653969384;273,0.0004040027589889641;274,0.00040077652189391246;275,0.0004176308294766821;276,0.00041579521181915277;277,0.0004155170879316483;278,0.00040700649697401214;279,0.0004198558205767177;280,0.00040884211463154154;281,0.0004048927554289783;282,0.0004198558205767177;283,0.0004198558205767177;284,0.0004082858668565326;285,0.0004120683517265932;286,0.0004159620861516554;287,0.00041384834460662164;288,0.000422748309006764;289,0.00041123398006407975;290,0.000406060875756497;291,0.0004120683517265931;292,0.00041457146671413313;293,0.000392377180491278;294,0.0004077852438590246;295,0.00041379271982912075;296,0.00041190147739409046;297,0.0003890396938412247;298,0.0004056715023139908;299,0.0004177977038091848;300,0.0004153502135991456;301,0.00041935519757920967;302,0.0004147939658241367;303,0.00041295834816660736;304,0.00041746395514417943;305,0.00040366901032395876;306,0.0004198558205767177;307,0.00041657395870416515;308,0.0004142377180491278;309,0.00042018956924172305;310,0.0003846453364186543;311,0.00020697979708081168;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0071957880918476335;66,0.007039204343182628;67,0.0068958036667853325;68,0.006660121484514062;69,0.006508488341046635;70,0.006251112495550018;71,0.00600380473478106;72,0.005714834015663938;73,0.005504850480598077;74,0.005298649430402279;75,0.005117590779636881;76,0.00491127847988608;77,0.004648952029191885;78,0.004409765485938057;79,0.004240165539337843;80,0.004068229352082592;81,0.00392188056247775;82,0.00374810875756497;83,0.003563656995372019;84,0.003327251690993236;85,0.003089066393734426;86,0.002822679334282663;87,0.002639061943752225;88,0.00245499955500178;89,0.0021958437166251336;90,0.0019107667319330723;91,0.0017132431470274117;92,0.0015533775364898542;93,0.0013867813278746885;94,0.001162001601993592;95,0.0009398918654325383;96,0.0007353039337842648;97,0.0005387815948736205;98,0.00035549795300818796;99,0.00015263438946244216;100,0.0000400498398006408;101,0.0000029481132075471705;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00037874911000356003;194,0.00037785911356354575;195,0.0003495461018155928;196,0.0003417586329654682;197,0.0003114431292274831;198,0.000293309451762193;199,0.0002628270736917053;200,0.0002525364898540406;201,0.00024157840868636524;202,0.00020898228907084373;203,0.00019846920612317555;204,0.00017777678889284443;205,0.00016342559629761483;206,0.00014540316838732644;207,0.00012070576717693131;208,0.00010162646849412601;209,0.00008110092559629763;210,0.00006541473834104663;211,0.00004444419722321111;212,0.00002797926308294767;213,0.000011458704165183341;214,0.00000183561765752937;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00024280215379138484;130,0.00024502714489142046;131,0.0002437477750089;132,0.0002446933962264151;133,0.0002475302598789605;134,0.00024719651121395516;135,0.0002608802064791741;136,0.00025275898896404413;137,0.0002555402278390887;138,0.00025442773228907085;139,0.00026432894268422927;140,0.0002691682983268067;141,0.00027067016731933074;142,0.00026327207191171237;143,0.0002698357956568174;144,0.00027545389818440727;145,0.0002742857778568886;146,0.00028107200071199713;147,0.00027667764328942685;148,0.0002842982378070488;149,0.0002914182093271627;150,0.0002922525809896761;151,0.0002943663225347099;152,0.00029948380206479177;153,0.00029937255250979;154,0.00031277812388750447;155,0.00030832814168743324;156,0.00030838376646493413;157,0.0003143356176575294;158,0.0003196755962976148;159,0.00031255562477750095;160,0.00031978684585261654;161,0.00032329120683517265;162,0.00032846431114275543;163,0.0003224568351726593;164,0.00033341491634033464;165,0.0003374755250978997;166,0.00033474991100035595;167,0.00034097988608045563;168,0.0003422592559629762;169,0.00033235804556781774;170,0.000344873620505518;171,0.00034047926308294766;172,0.0003522160911356355;173,0.0003590023139907441;174,0.00036350792096831615;175,0.00037285288358846565;176,0.0003602260590957636;177,0.0003652322890708437;178,0.0003673460306158776;179,0.0003654547881808473;180,0.0003753003737985048;181,0.00038058472766108937;182,0.0003741322534709861;183,0.00037429912780348885;184,0.0003820309718761125;185,0.00038559095763616947;186,0.0003891509433962265;187,0.00039248843004627986;188,0.000392377180491278;189,0.0003943240477038092;190,0.0004033352616589534;191,0.0003922659309362763;192,0.00040600525097899613;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:soulium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00548376868992524;66,0.006102093716625134;67,0.0060518089177643295;68,0.005994292897828409;69,0.006001635368458526;70,0.006021882787468851;71,0.006001301619793521;72,0.00600246974012104;73,0.006025109024563902;74,0.005983946689213243;75,0.005957636169455323;76,0.0059357200071199715;77,0.00601559718761125;78,0.0060849056603773585;79,0.006046413314346743;80,0.006088688145247418;81,0.006030170879316483;82,0.005981054200783197;83,0.006036345229619083;84,0.006040461463154147;85,0.00604001646493414;86,0.006075894446422215;87,0.006038458971164116;88,0.005976715468138128;89,0.0060448001957992175;90,0.005985448558205767;91,0.0059501268244927024;92,0.005988396671413315;93,0.006021604663581346;94,0.006058984514061944;95,0.006027556514773942;96,0.006051363919544322;97,0.006020714667141332;98,0.0060194909220363125;99,0.006035566482734069;100,0.006089021893912425;101,0.006060820131719474;102,0.006025275898896405;103,0.006045801441794233;104,0.006018378426486294;105,0.0059789960840156645;106,0.005992290405838377;107,0.006024274652901389;108,0.006026332769668921;109,0.0060552576539693835;110,0.0060618770024919895;111,0.00610559807760769;112,0.006076005695977216;113,0.005989731666073335;114,0.005976882342470631;115,0.006033285866856534;116,0.005997352260590958;117,0.0059462330900676395;118,0.0060650476148095414;119,0.0060915250088999645;120,0.006057204521181915;121,0.006049917675329299;122,0.006072223211107156;123,0.006061042630829476;124,0.006020047169811321;125,0.0060513639195443215;126,0.006085906906372375;127,0.005480542452830189;128,0.0030145848166607337;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0011587197401210394;194,0.001189925240299039;195,0.0011746284264862942;196,0.0011704565681737273;197,0.0011791340334638663;198,0.001183695265218939;199,0.0011847521359914562;200,0.0011682315770736918;201,0.0011742390530437878;202,0.0011728484336062657;203,0.0011648940904236383;204,0.0011514328942684232;205,0.001171179690281239;206,0.0011846965112139551;207,0.0011837508899964402;208,0.001157940993236027;209,0.0011660622107511572;210,0.0011667297080811677;211,0.0011668965824136704;212,0.001174684051263795;213,0.0011779659131363474;214,0.0011845296368814527;215,0.001186810252758989;216,0.0011522672659309363;217,0.0011799127803488788;218,0.0011591647383410466;219,0.0011642822178711285;220,0.0011749065503737985;221,0.0011796346564613741;222,0.0011863096297614808;223,0.001184863385546458;224,0.0011707903168387327;225,0.0011785221609113565;226,0.0011800240299038804;227,0.0011804690281238877;228,0.0011704565681737275;229,0.0011662847098611606;230,0.00117813278746885;231,0.001176686543253827;232,0.001148818529725881;233,0.0011573291206835173;234,0.0011752402990388038;235,0.001155994126023496;236,0.0011850302598789605;237,0.0012184607511569955;238,0.0012038314346742615;239,0.001208003292986828;240,0.0012061676753292987;241,0.0011889239943040227;242,0.0011687322000711999;243,0.001203553310786757;244,0.001182805268778925;245,0.0011826383944464223;246,0.001221631363474546;247,0.0012311432004271984;248,0.001213677020291919;249,0.0012128982734069063;250,0.0011989920790316838;251,0.0011746284264862942;252,0.0011865877536489855;253,0.0012122307760768958;254,0.0011874777500889997;255,0.0011698446956212175;256,0.0011762971698113208;257,0.0011823602705589176;258,0.001185753381986472;259,0.001214122018511926;260,0.0012170145069419721;261,0.0012129538981844072;262,0.0012072245461018155;263,0.0012130095229619083;264,0.0011957658419366323;265,0.0011818596475614098;266,0.001219684496262015;267,0.0012012170701317195;268,0.0011987139551441794;269,0.0011993258276966892;270,0.0012229663581345674;271,0.0012036645603417588;272,0.001201495194019224;273,0.0012164026343894625;274,0.0011993258276966892;275,0.001190815236739053;276,0.001200438323246707;277,0.0011913714845140622;278,0.001211062655749377;279,0.001180357778568886;280,0.0011724034353862583;281,0.00116812032751869;282,0.001188367746529014;283,0.0011970452118191528;284,0.0011697890708437168;285,0.0011861983802064792;286,0.0012072801708793166;287,0.0012215757386970453;288,0.0012075026699893202;289,0.0012433250266998934;290,0.0012063345496618014;291,0.0012044989320042724;292,0.001210061409754361;293,0.0011859758810964759;294,0.0011874777500889997;295,0.0012079476682093273;296,0.0012199069953720185;297,0.001201995817016732;298,0.0012314213243147026;299,0.0012384856710573162;300,0.001217682004271983;301,0.001192817728729085;302,0.0011895914916340334;303,0.0012058339266642934;304,0.0012184607511569953;305,0.001222076361694553;306,0.0012194619971520116;307,0.001199437077251691;308,0.0012013283196867213;309,0.0011995483268066928;310,0.0012003826984692061;311,0.0012280838376646495;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "tconstruct:cobalt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002180491278034888;66,0.0022115299038803844;67,0.0021960105909576365;68,0.0022047993058027767;69,0.0022121417764328945;70,0.0021836618903524384;71,0.002175707547169811;72,0.002176430669277323;73,0.0022053555535777856;74,0.002200126824492702;75,0.002200182449270203;76,0.0021778212887148454;77,0.002232667319330723;78,0.002238841669633322;79,0.002211974902100392;80,0.0022249911000356;81,0.0022163692595229623;82,0.002218316126735493;83,0.0022332791918832323;84,0.00222437922748309;85,0.002238841669633321;86,0.002240732912068352;87,0.002227994838020648;88,0.002245794766820933;89,0.002211140530437878;90,0.0021995705767176932;91,0.0022180936276254897;92,0.0022322779458882162;93,0.0022360604307582774;94,0.0022484091313634746;95,0.0022322223211107156;96,0.002206523673905304;97,0.0022373398006407972;98,0.0022560853506585973;99,0.0022471297614809543;100,0.0022479641331434675;101,0.0022343916874332506;102,0.002220874866500534;103,0.0022373398006407972;104,0.0022519134923460306;105,0.0022210417408330373;106,0.002235671057315771;107,0.0022553622285510855;108,0.0022499666251334996;109,0.00225246974012104;110,0.0022308873264506946;111,0.0022388416696333215;112,0.002239620416518334;113,0.0022453497686009257;114,0.0022574759700961194;115,0.0022884589711641154;116,0.002299194553221787;117,0.0022317216981132077;118,0.002232611694553222;119,0.0022408997864008543;120,0.002271159665361339;121,0.0022629828230687076;122,0.0022846764862940547;123,0.00228373086507654;124,0.0022213198647205415;125,0.0020824247953008185;126,0.0011132186721253116;127,0.00016882119971520113;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "undead_revamp2:bostroxore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0004498375756496974;194,0.0004436632253470986;195,0.0004485025809896761;196,0.0004422726059095764;197,0.0004461107155571378;198,0.00046168565325738697;199,0.00045901566393734424;200,0.0004438300996796013;201,0.00042725391598433607;202,0.00043821199715201144;203,0.0004379894980420079;204,0.0004466113385546458;205,0.0004534531861872552;206,0.0004472788358846565;207,0.0004442750978996084;208,0.00044093761124955506;209,0.0004411601103595585;210,0.0004584037913848344;211,0.0004603506585973656;212,0.00044878070487718046;213,0.0004533419366322535;214,0.0004563456746173015;215,0.0004464444642221431;216,0.0004307582769668922;217,0.0004450538447846209;218,0.00044794633321466713;219,0.0004521738163047348;220,0.0004600169099323603;221,0.00046769312922748313;222,0.0004490032039871841;223,0.00044305135279458887;224,0.00045106132075471705;225,0.00046385501957992166;226,0.00045451005695977217;227,0.0004507275720897117;228,0.00045823691705233175;229,0.00045467693129227485;230,0.0004478907084371663;231,0.0004594050373798505;232,0.00044282885368458524;233,0.0004416607333570666;234,0.00045523317906728377;235,0.0004602394090423638;236,0.00045812566749733007;237,0.00046958437166251337;238,0.0004541206835172659;239,0.00046313189747241017;240,0.00044644446422214314;241,0.0004508944464222144;242,0.0004442194731221075;243,0.00045434318262726955;244,0.00045545567817728734;245,0.0004526744393022428;246,0.00044955945176219296;247,0.00046029503381986477;248,0.0004706412424350303;249,0.00045601192595229626;250,0.00045901566393734424;251,0.00046819375222499117;252,0.00045033819864720545;253,0.0004501156995372019;254,0.0004608512815948737;255,0.0004780949626201496;256,0.0004779837130651477;257,0.0004644668921324315;258,0.0004665806336774653;259,0.0004721987362050552;260,0.0004688056247775009;261,0.0004522850658597366;262,0.00046068440726237096;263,0.00046602438590245636;264,0.0004571800462798149;265,0.0004671368814524742;266,0.00046902812388750444;267,0.00045445443218227133;268,0.0004533975614097544;269,0.00046263127447490214;270,0.0004670256318974724;271,0.0004729774830900677;272,0.00046285377358490566;273,0.00046163002847988613;274,0.0004580700427198292;275,0.0004494482022071912;276,0.00045834816660733364;277,0.00047114186543253836;278,0.00046185252758988965;279,0.000463688145247419;280,0.00046580188679245285;281,0.00046669188323246707;282,0.00045578942684229264;283,0.00044644446422214314;284,0.00046535688857244576;285,0.000455121929512282;286,0.0004721987362050552;287,0.00047247686009255967;288,0.0004636325204699181;289,0.00047030749377002486;290,0.00046468939124243505;291,0.0004688056247775009;292,0.0004681937522249911;293,0.0004663025097899609;294,0.0004690837486650054;295,0.00046457814168743327;296,0.0004654681381274475;297,0.00045684629761480954;298,0.0004588487896048416;299,0.0004614075293698825;300,0.00045812566749733;301,0.00046474501601993594;302,0.00045940503737985054;303,0.00045979441082235673;304,0.00045957191171235316;305,0.0004671925062299751;306,0.00046819375222499117;307,0.0004749799750800997;308,0.0004736449804200783;309,0.00045840379138483453;310,0.0004233045567817729;311,0.00024430402278390886;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.0005092448380206479;2,0.0006714466892132431;3,0.000789816215735137;4,0.0009078519935920257;5,0.0010629894980420077;6,0.0012417675329298684;7,0.0013876156995372016;8,0.0015003114987540052;9,0.0016401521893912425;10,0.0017751535243859026;11,0.0019043698825204703;12,0.002070187344250623;13,0.0021912824848700605;14,0.002312600124599502;15,0.002465290138839445;16,0.0026110826806692777;17,0.0027508121217515134;18,0.002918798949804201;19,0.003080945176219296;20,0.003243369526521894;21,0.0034069619971520116;22,0.0034838354396582415;23,0.003555090779636882;24,0.0037396537913848347;25,0.003973389106443574;26,0.004092704254182983;27,0.004171190815236739;28,0.0043403457636169455;29,0.004507720719117123;30,0.0046480064079743675;31,0.0047586997152011395;32,0.0048802398540405845;33,0.005024085528657886;34,0.005204254182983268;35,0.005299595051619794;36,0.005402389640441439;37,0.005567094606621574;38,0.005738808294766822;39,0.005868247152011393;40,0.006053310786756853;41,0.00615371351014596;42,0.006258510590957635;43,0.006399130028479886;44,0.006574292452830189;45,0.006722254360982557;46,0.006846965112139551;47,0.0069184429512281955;48,0.0071249221253115;49,0.007334182538269847;50,0.007566916607333571;51,0.007700193574225704;52,0.007851548593805626;53,0.007918465201139195;54,0.00796068440726237;55,0.008047737184051263;56,0.008210272783908863;57,0.008380985226059096;58,0.0084437855998576;59,0.008429156283374867;60,0.008402790138839444;61,0.008270180669277323;62,0.008052743414026342;63,0.00781494749021004;64,0.0077344028123887505;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "enigmaticdelicacy:etherium_ore", + "distrib": "0,0;1,0.00005529102883588466;2,0.000056737273050907794;3,0.00005495728017087932;4,0.00005145291918832325;5,0.00005612540049839801;6,0.00005484603061587754;7,0.000052954788180847284;8,0.000057071021715913135;9,0.00005278791384834461;10,0.00005384478462086152;11,0.00005529102883588466;12,0.00005684852260590958;13,0.000055235404058383766;14,0.000051063545745817016;15,0.00005362228551085795;16,0.0000517310430758277;17,0.00005434540761836953;18,0.00005239854040583838;19,0.00005746039515841937;20,0.000053566660733357074;21,0.000054011658953364186;22,0.00005540227839088644;23,0.000055680402278390885;24,0.00005629227483090068;25,0.00005245416518333928;26,0.00005590290138839445;27,0.00005373353506585974;28,0.00005690414738341047;29,0.00005306603773584906;30,0.00005239854040583838;31,0.000055346653613385544;32,0.00005295478818084728;33,0.000052954788180847284;34,0.000054790405838376654;35,0.000053677910288358845;36,0.000057293520825916705;37,0.00005412290850836597;38,0.00005484603061587754;39,0.00005334416162335352;40,0.00005529102883588466;41,0.00005423415806336775;42,0.000054901655393378425;43,0.00005556915272338911;44,0.00005351103595585618;45,0.00005490165539337843;46,0.00005645914916340336;47,0.00005606977572089712;48,0.00005534665361338555;49,0.000054901655393378425;50,0.00005568040227839089;51,0.00005412290850836597;52,0.00005256541473834105;53,0.00005289916340334639;54,0.00005373353506585974;55,0.000054122908508365965;56,0.00005434540761836953;57,0.00005640352438590245;58,0.00005606977572089711;59,0.000051953542185831254;60,0.00005684852260590958;61,0.00005306603773584906;62,0.00005579165183339267;63,0.00005178666785332859;64,0.000028535510857956568;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.00016648495906016375;2,0.00023907529369882519;3,0.00031511436454254184;4,0.00037958348166607336;5,0.000437933873264507;6,0.0004694174973300107;7,0.0005073535955856177;8,0.0005724902100391598;9,0.0006524786400854397;10,0.0007324114453542187;11,0.0007818618725525099;12,0.0008139573691705233;13,0.0008562322000711998;14,0.0009012882698469206;15,0.0009511280704877182;16,0.0010243302776788892;17,0.001104819330722677;18,0.0011558828764684941;19,0.0011799127803488788;20,0.0012293632075471698;21,0.0013062922748309008;22,0.0013473989854040586;23,0.0013738763794944823;24,0.0014387904948380207;25,0.0014940815236739054;26,0.001547370060519758;27,0.0016006029725881095;28,0.0016696333214667142;29,0.0017315993236027055;30,0.0017696466714133144;31,0.0017896715913136348;32,0.0018262170701317194;33,0.001922169811320755;34,0.002018066927732289;35,0.002115577162691349;36,0.002195064969740121;37,0.0022498553755784974;38,0.0022548616055535777;39,0.0022729952830188678;40,0.0023055914026343894;41,0.0023684474012103953;42,0.0023977060341758634;43,0.0024122797258810972;44,0.002477305090779637;45,0.002602683339266643;46,0.0026672080811676754;47,0.002719829120683517;48,0.0027687789248843006;49,0.0028396448914204345;50,0.002882030971876113;51,0.0029203564435742258;52,0.002944497597009612;53,0.00303188412246351;54,0.0030919032573869703;55,0.0031018044677821287;56,0.003153424261302955;57,0.003279191883232467;58,0.0034006207725169103;59,0.003475213599145604;60,0.0033892176931292275;61,0.0033922214311142753;62,0.0034749911000356;63,0.00356933072267711;64,0.0036748509255962974;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00002903613385546458;194,0.00003092737629049484;195,0.00003137237451050195;196,0.00002825738697045212;197,0.00002847988608045568;198,0.000027478640085439662;199,0.000028646760412958346;200,0.00003126112495550018;201,0.000028980509077963687;202,0.000029425507297970806;203,0.00002347365610537558;204,0.000026199270202919187;205,0.000027311765752936988;206,0.00002553177287290851;207,0.000026644268422926306;208,0.00003020425418298327;209,0.000029314257742969028;210,0.000030426753292986833;211,0.000026143645425418298;212,0.000024308027767888932;213,0.000025420523317906726;214,0.000025420523317906726;215,0.00002831301174795301;216,0.00002736739053043788;217,0.000024864275542897833;218,0.00002575427198291207;219,0.00002692239231043076;220,0.00002347365610537558;221,0.00002525364898540406;222,0.00002708926664293343;223,0.000027311765752936988;224,0.0000283686365254539;225,0.000022973033107867568;226,0.00002269490922036312;227,0.00002425240299038804;228,0.00002475302598789605;229,0.000024864275542897836;230,0.00002308428266286935;231,0.000023751779992880028;232,0.000020024919900320397;233,0.000024363652545389818;234,0.00002258365966536134;235,0.00002364053043787825;236,0.000020748042007831968;237,0.000019802420790316837;238,0.00002191616233535066;239,0.00002102616589533642;240,0.00002475302598789605;241,0.00002186053755784977;242,0.00002202741189035244;243,0.00002069241723033108;244,0.000020469918120327523;245,0.00002119304022783909;246,0.000022138661445354218;247,0.00002341803132787469;248,0.000020358668565325738;249,0.000018578675685297258;250,0.00001952429690281239;251,0.00002080366678533286;252,0.000019079298682805273;253,0.000018189302242791028;254,0.0000155749377002492;255,0.00001763305446778213;256,0.00001813367746529014;257,0.00001752180491278035;258,0.00001768867924528302;259,0.00001919054823780705;260,0.000018300551797792806;261,0.000019190548237807048;262,0.000017577429690281238;263,0.000016687433250267;264,0.00001852305090779637;265,0.000017354930580277682;266,0.000015574937700249202;267,0.0000133499466002136;268,0.00001418431826272695;269,0.00001574181203275187;270,0.00001351682093271627;271,0.000014184318262726948;272,0.00001774430402278391;273,0.000018912424350302596;274,0.00001663180847276611;275,0.00001635368458526166;276,0.00001496306514773941;277,0.000018022427910288357;278,0.000015964311142755425;279,0.000014295567817728732;280,0.000014073068707725167;281,0.000016186810252758988;282,0.00001512993948024208;283,0.00001323869704521182;284,0.00001652055891776433;285,0.00001373932004271983;286,0.00001535243859024564;287,0.00001407306870772517;288,0.0000116812032751869;289,0.00001195932716269135;290,0.00001407306870772517;291,0.00001418431826272695;292,0.00001490744037023852;293,0.0000133499466002136;294,0.000012682449270202919;295,0.0000155749377002492;296,0.00001407306870772517;297,0.00001095808116767533;298,0.00001329432182271271;299,0.00001429556781772873;300,0.000013794944820220718;301,0.00001106933072267711;302,0.000010234959060163758;303,0.00001357244571021716;304,0.000012571199715201142;305,0.000010012459950160202;306,0.00001245995016019936;307,0.000011124955500178;308,0.00000956746173015308;309,0.00001173682805268779;310,0.000010401833392666429;311,0.00000817684229263083;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.000025865521537913852;194,0.00002269490922036312;195,0.00002675551797792809;196,0.00003042675329298683;197,0.000025531772872908505;198,0.00002580989676041296;199,0.000027534264862940548;200,0.00002464177643289427;201,0.00002747864008543966;202,0.000022917408330366682;203,0.00002147116411534354;204,0.000025086774652901392;205,0.000023529280882876465;206,0.000021526788892844432;207,0.000022027411890352437;208,0.00002230553577785689;209,0.000022973033107867568;210,0.00002202741189035244;211,0.000023037349256852974;212,0.000021450304823780705;213,0.0000234267226993592;214,0.00002147116411534354;215,0.00002180491278034888;216,0.00002202741189035244;217,0.00001913492346030616;218,0.00001969117123531506;219,0.00001729930580277679;220,0.000018356176575293702;221,0.00002241678533285867;222,0.000018801174795300818;223,0.000020581167675329298;224,0.000021026165895336417;225,0.000021359914560341758;226,0.000020803666785332857;227,0.00001941304734781061;228,0.00001818930224279103;229,0.00001713243147027412;230,0.00001674305802776789;231,0.00001551931292274831;232,0.000015408063367746528;233,0.00001507431470274119;234,0.0000144624421502314;235,0.00001412869348522606;236,0.000015241189035243857;237,0.000014017443930224278;238,0.00001507431470274119;239,0.00001407306870772517;240,0.000013238697045211821;241,0.000012571199715201139;242,0.00001251557493770025;243,0.000012793698825204699;244,0.000012070576717693129;245,0.0000116812032751869;246,0.00001095808116767533;247,0.00001195932716269135;248,0.00001351682093271627;249,0.00001151432894268423;250,0.00001329432182271271;251,0.00001134745461018156;252,0.000011236205055179778;253,0.00000928933784264863;254,0.000011681203275186899;255,0.000010791206835172659;256,0.00000867746529013884;257,0.00001023495906016376;258,0.000009233713065147738;259,0.00000928933784264863;260,0.000007509344962620151;261,0.000010234959060163762;262,0.00000967871128515486;263,0.0000062855998576005695;264,0.00000756496974012104;265,0.0000071199715201139205;266,0.00000595185119259523;267,0.00000806559273762905;268,0.000006487239676041296;269,0.000005207869793520826;270,0.00000567372730509078;271,0.000005571169121573514;272,0.000005986616678533286;273,0.000006396849412602349;274,0.00000600747597009612;275,0.000006341224635101459;276,0.0000048393556425774304;277,0.00000495060519757921;278,0.0000039493592025631895;279,0.0000033374866500534;280,0.0000028924884300462798;281,0.0000025587397650409404;282,0.00000216936632253471;283,0.00000322623709505162;284,0.00000300373798504806;285,0.0000022249911000355997;286,0.00000105687077251691;287,0.00000066749733001068;288,0.00000088999644001424;289,0.0000005562477750088999;290,0.00000022249911000356;291,0.00000044499822000712003;292,0.00000005562477750089001;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0006191593983624066;194,0.0005396159665361339;195,0.0004820443218227128;196,0.00044294010323958703;197,0.00041078898184407255;198,0.0004148495906016376;199,0.0004304801530793877;200,0.0004228039337842649;201,0.0003998865254538982;202,0.0003918765574937701;203,0.0004132920968316127;204,0.000437933873264507;205,0.00042920078319686725;206,0.00041028835884656463;207,0.000420745817016732;208,0.00040578275186899256;209,0.0004031683873264507;210,0.00042870016019935927;211,0.0004612962798148808;212,0.00044894757920968314;213,0.000419688946244215;214,0.00041167897828408683;215,0.0003962709149163404;216,0.00040578275186899256;217,0.00038703720185119257;218,0.0003861472054111784;219,0.00039510279458882165;220,0.000396938412246351;221,0.00040800774296902815;222,0.0004096764862940548;223,0.0004004427732289071;224,0.00041468271626913497;225,0.00041590646137415455;226,0.00040817461730153083;227,0.0003906528123887504;228,0.00038509033463866144;229,0.00041306959772160914;230,0.00042158018867924525;231,0.0004107889818440726;232,0.0004216914382342471;233,0.0004157952118191527;234,0.0004146827162691349;235,0.0004168520825916697;236,0.00041457146671413313;237,0.0003588354396582414;238,0.00020864854040583838;239,0.00005807226771092916;240,0.0000005562477750089;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.000711496529013884;130,0.000687188501245995;131,0.0006876334994660022;132,0.0006809585261658954;133,0.0006718916874332504;134,0.0006639373442506231;135,0.0006612117301530794;136,0.0006695554467782129;137,0.0006691660733357067;138,0.0006309518511925952;139,0.0006314524741901033;140,0.0006407418120327519;141,0.0006333437166251334;142,0.0005928488786044856;143,0.0005751601993592027;144,0.0005981332324670702;145,0.0006166562833748666;146,0.000595185119259523;147,0.0005658152367390532;148,0.0005568596475614099;149,0.0005358334816660733;150,0.0005069642221431115;151,0.0005215379138483446;152,0.0005371128515485939;153,0.0005176998042007832;154,0.0005061854752580991;155,0.0004988986294054824;156,0.0004941148985404059;157,0.0004911667853328587;158,0.0005084660911356354;159,0.000501123620505518;160,0.0004930024029903881;161,0.00048054245283018875;162,0.00047592559629761484;163,0.000488441171235315;164,0.0004793187077251691;165,0.0004659687611249556;166,0.0004542875578497686;167,0.00044750133499466005;168,0.00043426263794944824;169,0.00043904636881452483;170,0.000429812655749377;171,0.0004236383054467782;172,0.00040528212887148453;173,0.0004043365076539694;174,0.0004061165005339979;175,0.0004046146315414739;176,0.0003886503203987184;177,0.00035043609825560697;178,0.0003279080633677465;179,0.00031316749733001066;180,0.00035115922036311857;181,0.00038369971520113924;182,0.0003784153613385547;183,0.0003444286222855109;184,0.0003322467960128159;185,0.0003302999288002849;186,0.00030665939836240657;187,0.00028986071555713776;188,0.00028385323958704165;189,0.0002865232289070844;190,0.0002711707903168387;191,0.00027150453898184407;192,0.00026660955856176575;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0009402256140975437;130,0.0009412824848700605;131,0.000925930046279815;132,0.0009535755606977572;133,0.0009554668031327876;134,0.0009675930046279815;135,0.0009449537201851193;136,0.0009382787468850125;137,0.0009756029725881098;138,0.0009566905482378071;139,0.0009363875044499823;140,0.0009203119437522251;141,0.0009291562833748665;142,0.0009265975436098256;143,0.0009507386970452118;144,0.0009566905482378072;145,0.0009333281416874334;146,0.0009314925240299039;147,0.0009511836952652191;148,0.000955244304022784;149,0.0009487918298326807;150,0.0009313256496974012;151,0.0009136369704521182;152,0.000938501245995016;153,0.0009212575649697402;154,0.0009346075115699538;155,0.0009261525453898183;156,0.0009286000355998576;157,0.0009317706479174083;158,0.0009376112495550018;159,0.0009527411890352441;160,0.0009388349946600214;161,0.0009269869170523317;162,0.0009208125667497331;163,0.0009247063011747954;164,0.0009287669099323603;165,0.0009149163403346386;166,0.0009230931826272696;167,0.0009283219117123533;168,0.0009554668031327875;169,0.0009440080989676042;170,0.0009302687789248844;171,0.0009140819686721253;172,0.0009211463154147385;173,0.0009467337130651478;174,0.0009124688501245995;175,0.0008951695443218228;176,0.0008944464222143112;177,0.0009097432360270559;178,0.0009029570131719473;179,0.0009075182449270202;180,0.0008987851548593806;181,0.0008886058205767177;182,0.0008940570487718051;183,0.0009185875756496975;184,0.0009259300462798149;185,0.0009193106977572089;186,0.000930491278034888;187,0.0009094651121395515;188,0.0009015107689569243;189,0.0009212575649697401;190,0.0009204788180847277;191,0.0009234825560697757;192,0.0009158619615521539;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00030643689925240295;66,0.000393434051263795;67,0.0004790405838376646;68,0.0005817795478818084;69,0.0006537023851904593;70,0.0007282952118191527;71,0.0008174061053755786;72,0.0009088532395870417;73,0.0009901766642933427;74,0.001065436988252047;75,0.0011694553221787115;76,0.0012506118725525098;77,0.0013343271626913493;78,0.0014070843716625136;79,0.001505373353506586;80,0.001622741634033464;81,0.0016810920256318976;82,0.0017631385724457102;83,0.0018555313278746887;84,0.001949092203631186;85,0.0020591736383054468;86,0.0021517332680669283;87,0.0022257698469206125;88,0.002324837575649698;89,0.002398985404058384;90,0.002483868814524742;91,0.0025498954254182986;92,0.0026756630473478106;93,0.0027878025987896045;94,0.002842314880740477;95,0.002939658241367035;96,0.0030589733891064437;97,0.0030897338910644365;98,0.0030979107333570666;99,0.00324687388750445;100,0.00339060831256675;101,0.003523829654681381;102,0.0036337998398006405;103,0.003671735938056248;104,0.0037067239231043077;105,0.003787435475258099;106,0.0038993525275898898;107,0.0040210039159843365;108,0.004085862406550374;109,0.00410054734781061;110,0.004200338198647205;111,0.004288392221431115;112,0.004356143200427198;113,0.004450427198291207;114,0.004548771804912781;115,0.004675206924172304;116,0.004732834193663226;117,0.004793409576361695;118,0.00495438768244927;119,0.005098344606621574;120,0.005138005072979708;121,0.005211318529725882;122,0.0052466958882164474;123,0.005315503737985049;124,0.0055353328586685655;125,0.005703375311498754;126,0.0059462330900676395;127,0.0062231888572445715;128,0.006322924083303668;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "bigreactors:anglesite_ore", + "distrib": "0,0;1,0.0012054445532217871;2,0.0012229663581345674;3,0.0012235782306870772;4,0.0012355931826272695;5,0.0012072801708793166;6,0.0012008833214667142;7,0.0012253025987896049;8,0.0012337575649697403;9,0.00123064257742969;10,0.0012127313990744038;11,0.0012110070309718762;12,0.001220296368814525;13,0.0012193507475970098;14,0.0012191838732645067;15,0.0012235782306870774;16,0.0012096720363118547;17,0.0012094495372018512;18,0.0012128982734069065;19,0.0012268044677821292;20,0.0011959883410466359;21,0.001217348255606978;22,0.0012256363474546102;23,0.001204943930224279;24,0.0011997708259166963;25,0.0011952095941616236;26,0.0011957658419366323;27,0.0011999933250267;28,0.0011922058561765752;29,0.001174739676041296;30,0.0012016620683517264;31,0.0012179045033819864;32,0.0012256363474546102;33,0.001222632609469562;34,0.001237985048059808;35,0.0012027189391242434;36,0.0012072245461018155;37,0.001207447045211819;38,0.0012144001423994306;39,0.001227694464222143;40,0.001208670790316839;41,0.0012272494660021359;42,0.001217237006051976;43,0.0012011614453542184;44,0.0012266932182271272;45,0.001218182627269491;46,0.0012092826628693487;47,0.0011922058561765754;48,0.0012054445532217871;49,0.0012093382876468494;50,0.0012058895514417945;51,0.0011966558383766468;52,0.0012250800996796013;53,0.0012240788536845852;54,0.0011937077251690993;55,0.001215234514061944;56,0.0012114520291918833;57,0.0012024408152367392;58,0.001223633855464578;59,0.0012127870238519045;60,0.0012053333036667856;61,0.001232311320754717;62,0.0012214644891420435;63,0.0011295167319330724;64,0.0006009144713421148;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.008081223300106799;66,0.007929145158419366;67,0.007736739053043789;68,0.007539604841580633;69,0.007302253915984337;70,0.007143500800996796;71,0.007021404414382343;72,0.006964889640441439;73,0.006847020736917053;74,0.006706345674617302;75,0.006558216892132432;76,0.0064529191883232456;77,0.006353962709149164;78,0.006190147739409043;79,0.006027612139551442;80,0.00585812344250623;81,0.0057324114453542185;82,0.005618770024919901;83,0.005515196689213244;84,0.005301096920612317;85,0.005122597009611962;86,0.004992268155927376;87,0.004793187077251691;88,0.0046570176219295125;89,0.004521015040939836;90,0.0044349635101459586;91,0.004289449092203631;92,0.004073068707725169;93,0.003936398629405482;94,0.0038018979174083306;95,0.003685085884656461;96,0.003465368013527946;97,0.00327997063011748;98,0.0031881341224635103;99,0.003027990388038448;100,0.0028543298326806693;101,0.0026759411712353152;102,0.002482200071199715;103,0.0023495906016375934;104,0.0022467403880384474;105,0.0021435008009967962;106,0.001994537646849413;107,0.0018064702741189035;108,0.0016559496262014955;109,0.0015101014595941616;110,0.0014155949626201494;111,0.0012892154681381275;112,0.0011452585439658243;113,0.0009777723389106444;114,0.0008141798682805268;115,0.0006422436810252759;116,0.0005030148629405482;117,0.00035638794944820224;118,0.00022155348878604488;119,0.00011124955500178;120,0.00003571110715557139;121,0.00000266998932004272;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0004015552687789249;194,0.00040878648985404064;195,0.0003966602883588465;196,0.00041668520825916705;197,0.0004258076717693129;198,0.00040183339266642936;199,0.0004175752046991812;200,0.00041790895336418657;201,0.0004255295478818085;202,0.0004216914382342471;203,0.00041952207191171234;204,0.0004319820220719117;205,0.00043320576717693123;206,0.0004475013349946601;207,0.0004383232467070131;208,0.0004413269846920613;209,0.0004577362940548238;210,0.0004551775542897829;211,0.00046029503381986477;212,0.00045951628693485227;213,0.00046546813812744755;214,0.00045901566393734435;215,0.00046363252046991815;216,0.00046897249911000355;217,0.0004564569241723033;218,0.00047097499110003557;219,0.0004826005695977216;220,0.0004907217871128515;221,0.0004803199537201852;222,0.00048538180847276617;223,0.00048298994304022785;224,0.0004918342826628694;225,0.0004983423816304735;226,0.0004970630117479529;227,0.0005024586151655394;228,0.0005090779636881453;229,0.0005109135813456747;230,0.0005089110893556426;231,0.0005141398184407264;232,0.0005176998042007832;233,0.0005100235849056604;234,0.0005227616589533642;235,0.0005214266642933428;236,0.0005370016019935921;237,0.000536000355998576;238,0.0005297703809184764;239,0.0005353884834460663;240,0.0005487940548237807;241,0.0005288803844784623;242,0.0005452340690637238;243,0.0005607533819864722;244,0.0005591402634389463;245,0.0005563590245639018;246,0.0005569708971164116;247,0.0005657039871840513;248,0.0005758276966892132;249,0.0005834482912068352;250,0.000563812744749021;251,0.0005654814880740478;252,0.0005796658063367747;253,0.0005818907974368102;254,0.0005969651121395515;255,0.0005901232645069421;256,0.0005877870238519046;257,0.0006008032217871128;258,0.0006060875756496975;259,0.0006039182093271628;260,0.0005991901032395871;261,0.00060936943752225;262,0.0005991344784620861;263,0.0006004694731221075;264,0.0006036400854396582;265,0.0006119838020647917;266,0.0006281706123175508;267,0.0006320643467426131;268,0.0006190481488074048;269,0.0006238318796724814;270,0.0006402968138127448;271,0.0006272249911000356;272,0.0006410199359202564;273,0.0006399074403702385;274,0.0006478617835528658;275,0.000649808650765397;276,0.0006564836240655037;277,0.0006482511569953721;278,0.0006537023851904593;279,0.0006616567283730865;280,0.0006620461018155928;281,0.000654258632965468;282,0.0006602104841580633;283,0.0006684985760056961;284,0.0006731154325382699;285,0.0006797904058383767;286,0.0006883009967960127;287,0.0006837953898184408;288,0.0007007053221787114;289,0.0007014284442862229;290,0.0006892466180135281;291,0.0006904703631185477;292,0.0006876334994660022;293,0.0006935853506585975;294,0.0007103840334638662;295,0.0006941972232111073;296,0.0007011503203987184;297,0.0007017621929512282;298,0.0007047659309362762;299,0.0006792897828408688;300,0.000681626023495906;301,0.0006886903702385191;302,0.000682182271270915;303,0.0006909153613385546;304,0.0006733935564257744;305,0.0006717248131007476;306,0.0006728929334282663;307,0.0006572067461730153;308,0.0006802354040583839;309,0.0006688879494482023;310,0.0006681648273406907;311,0.0006637704699181204;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0040147739409042375;194,0.003966992257030972;195,0.0038801063545745823;196,0.0038238697045211816;197,0.0038222565859736563;198,0.0038397227661089357;199,0.0038986294054823784;200,0.003949414827340691;201,0.003947634834460662;202,0.0038615833036667853;203,0.0037942216981132074;204,0.003760179334282663;205,0.003709282662869349;206,0.0036841402634389467;207,0.0036868102527589895;208,0.003659275987896048;209,0.0036326317194731225;210,0.0035971431114275544;211,0.003558706390174439;212,0.0035578720185119265;213,0.003557705144179423;214,0.0035138728195087225;215,0.0034430068529725886;216,0.0034181425774296907;217,0.003417808828764685;218,0.0033639640441438237;219,0.003352616589533642;220,0.003428321911712353;221,0.0034475680847276613;222,0.003413525720897117;223,0.0033895514417942333;224,0.0033424928800284796;225,0.0032755206479174086;226,0.0032340245639017446;227,0.003230798326806693;228,0.0031851303844784625;229,0.003156817372730509;230,0.0031231087575649694;231,0.0031539248843004625;232,0.0031998709505161984;233,0.0032421457814168744;234,0.0032302977038091854;235,0.0031753960484158066;236,0.003139295567817729;237,0.0030691527233891068;238,0.003073102082591669;239,0.0030705433428266284;240,0.003050240299038804;241,0.0030038492346030616;242,0.002998286756852973;243,0.0029702518689925243;244,0.002939602616589534;245,0.0028879271982912066;246,0.0028474323602705595;247,0.002825182449270203;248,0.0028154481132075474;249,0.002832246796012816;250,0.002826350569597722;251,0.0027895825916696335;252,0.0027551508543965826;253,0.002754872730509078;254,0.0027578208437166254;255,0.0027339578141687432;256,0.0027074804200783197;257,0.002700360448558206;258,0.0026596431114275544;259,0.0026457369170523317;260,0.0026642599679601283;261,0.0026861761302954786;262,0.002628326361694553;263,0.0025378804734781063;264,0.0024858713065147742;265,0.002466625133499466;266,0.0024769157173371303;267,0.0024494370772516908;268,0.0024099434852260593;269,0.0023996529013883944;270,0.002414226593093628;271,0.002397817283730865;272,0.002366500533997864;273,0.0023810742257030972;274,0.002405827251690993;275,0.0023111538803844787;276,0.0022105842826628695;277,0.002149508276966892;278,0.0021711463154147383;279,0.0021956768422926307;280,0.0021676419544321823;281,0.0020781416874332504;282,0.0020577830188679247;283,0.0020755829476682094;284,0.002056114275542898;285,0.0020321956212175155;286,0.0020270225169099322;287,0.0020329187433250264;288,0.002017733179067284;289,0.0019558228017087934;290,0.001892188056247775;291,0.0018905193129227483;292,0.0018965267888928447;293,0.0018815080989676041;294,0.0018810074759700963;295,0.0018634856710573158;296,0.0018269958170167321;297,0.0017898940904236384;298,0.0018045234069063725;299,0.0017654748131007477;300,0.0017729285332858669;301,0.0018103083837664648;302,0.001786612228551086;303,0.001721809362762549;304,0.0016755295478818085;305,0.0016199603951584192;306,0.0015896448914204343;307,0.0015740143289426842;308,0.001567561854752581;309,0.0015627781238875043;310,0.001556047525809897;311,0.0015563812744749024;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0035075872196511215;130,0.003436999377002492;131,0.0034351637593449625;132,0.0034331612673549304;133,0.0034016776432894266;134,0.0032770781416874336;135,0.003221119615521538;136,0.0031602661089355642;137,0.0030776633143467427;138,0.003046624688501246;139,0.0030324959950160197;140,0.0029624644001423994;141,0.0028734091313634747;142,0.002841035510857957;143,0.0027963131897472413;144,0.002777067016731933;145,0.0027370728017087932;146,0.0027064791740833037;147,0.0026179801530793875;148,0.002536767977928088;149,0.0024356977572089714;150,0.0023359625311498754;151,0.0022981933072267714;152,0.0022830077429690284;153,0.00222749421502314;154,0.0021134634211463156;155,0.0020351437344250625;156,0.0019567684229263083;157,0.0019134923460306158;158,0.0018635969206123176;159,0.0018194864720541119;160,0.001766420434318263;161,0.0017430580277678887;162,0.001665795211819153;163,0.001583192417230331;164,0.0015006452474190103;165,0.0014434073513705946;166,0.0014039137593449627;167,0.001368313901744393;168,0.0012953898184407263;169,0.0012306425774296903;170,0.0011612784798860805;171,0.0010689413492346032;172,0.0009847254360982557;173,0.0009226481844072624;174,0.0008713621395514419;175,0.0008160711107155572;176,0.0007557738519045924;177,0.0007318551975792097;178,0.0007030415628337487;179,0.0006500311498754005;180,0.0005684852260590958;181,0.0004938923994304023;182,0.00043192639729441087;183,0.00036856977572089715;184,0.00032039871840512635;185,0.00027156016375934496;186,0.00021760412958348165;187,0.00014768378426486292;188,0.0000817684229263083;189,0.00002731176575293699;190,0.00000545122819508722;191,0.00000044499822000712;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.000026978017087931647;130,0.000027868013527945892;131,0.000027256140975436102;132,0.00002842426130295479;133,0.00002592809941260235;134,0.000025163258721965113;135,0.000027304812655749377;136,0.000028924884300462798;137,0.00002932121084015664;138,0.000025872474635101464;139,0.00002809051263794945;140,0.000027144891420434318;141,0.00002692239231043076;142,0.000028034887860448563;143,0.000029258632965468135;144,0.000030538002847988614;145,0.000026978017087931647;146,0.000028465979886080455;147,0.000029168242702029192;148,0.000028313011747953005;149,0.000028563323246707014;150,0.00003143495238519046;151,0.00003092737629049484;152,0.00003103862584549661;153,0.000032262370950516205;154,0.00002636614453542186;155,0.000029481132075471705;156,0.000027221375489498045;157,0.00002612973923104307;158,0.000028764963065147742;159,0.00002626184807760769;160,0.000027701139195443218;161,0.000029314257742969028;162,0.0000322623709505162;163,0.00003248487006051976;164,0.000029870505517977925;165,0.000031761747953008193;166,0.00003381986472054112;167,0.000032985493058027766;168,0.00003283947801708794;169,0.000034146660288358855;170,0.00003312455500178;171,0.000031511436454254184;172,0.000034598611605553586;173,0.00003459861160555357;174,0.00003176174795300819;175,0.00003243619838020648;176,0.000028403402011391958;177,0.000030906516998932006;178,0.00003004433294766821;179,0.0000300373798504806;180,0.00003265174439302243;181,0.00003271432226771093;182,0.00003327057004271983;183,0.000029835740032039874;184,0.00003067011169455323;185,0.00003233190192239232;186,0.00003304111783552866;187,0.00003554423282306871;188,0.00003348611605553578;189,0.00003404236383054468;190,0.00002970363118547526;191,0.000030315503737985044;192,0.0000318312789248843;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00004016108935564258;130,0.0000411623353506586;131,0.00004360982556069776;132,0.00003932671769312923;133,0.00003910421858312567;134,0.00004372107511569953;135,0.00003699047703809185;136,0.000039882965468138124;137,0.00003988296546813813;138,0.000037824848700605205;139,0.00004138483446066216;140,0.00004266420434318263;141,0.000041329209683161266;142,0.00004066171235315059;143,0.00003899296902812388;144,0.00003938234247063012;145,0.00004055046279814881;146,0.000041217960128159495;147,0.000043331701673193306;148,0.0000411623353506586;149,0.000039660466358134574;150,0.00004266420434318263;151,0.00003826984692061232;152,0.00004511169455322179;153,0.00003799172303310787;154,0.000036267354930580285;155,0.00003899296902812389;156,0.000039215468138127455;157,0.00003971609113563546;158,0.00003904859380562478;159,0.000034654236383054465;160,0.00003754672481310075;161,0.000038937344250623;162,0.0000367123531505874;163,0.00004082858668565326;164,0.00003966046635813457;165,0.0000361561053755785;166,0.00003437611249555002;167,0.0000383810964756141;168,0.00003977171591313635;169,0.00003682360270558918;170,0.00003287424350302599;171,0.000035933606265574943;172,0.00003209549661801353;173,0.000028758009967960127;174,0.000036267354930580285;175,0.00003521048415806337;176,0.000033374866500534;177,0.00003092737629049484;178,0.000027144891420434318;179,0.00002903613385546458;180,0.000032985493058027766;181,0.00003309674261302955;182,0.00003165049839800641;183,0.0000272561409754361;184,0.000032039871840512635;185,0.00003242924528301887;186,0.00003276299394802421;187,0.000034209238163047346;188,0.00002953675685297259;189,0.00002592114631541474;190,0.00002692239231043076;191,0.000030093004627981488;192,0.00003181737273050908;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0002475302598789605;194,0.0002398540405838377;195,0.0002363496796012816;196,0.0002303978284086864;197,0.00023990966536133857;198,0.0002400765396938412;199,0.00023228907084371663;200,0.00024113341046635815;201,0.00024057716269134928;202,0.0002340134389462442;203,0.00024202340690637238;204,0.000250311498754005;205,0.00023735092559629763;206,0.00024191215735137062;207,0.00023718405126379495;208,0.00023929779280882878;209,0.00023223344606621574;210,0.00023490343538625847;211,0.00022939658241367036;212,0.00023829654681381275;213,0.0002415784086863653;214,0.00023345719117123532;215,0.00024719651121395516;216,0.0002451383944464222;217,0.000234625311498754;218,0.00024513839444642224;219,0.00024875400498398004;220,0.00024953275186899253;221,0.00024096653613385545;222,0.00023901966892132435;223,0.00024346965112139558;224,0.00024202340690637238;225,0.0002470296368814525;226,0.0002404102883588466;227,0.000245249644001424;228,0.0002428577785688857;229,0.00023835217159131364;230,0.00023106532573869705;231,0.00023562655749377002;232,0.0002422459060163759;233,0.0002491433784264863;234,0.00024207903168387327;235,0.00023901966892132435;236,0.0002408552865788537;237,0.00024613964044143825;238,0.00024825338198647206;239,0.0002464733891064436;240,0.0002520914916340335;241,0.0002448602705589178;242,0.00024552776788892844;243,0.0002446377714489142;244,0.00024547214311142754;245,0.00023913091847632613;246,0.0002510902456390174;247,0.0002560408508365967;248,0.00025659709861160554;249,0.00024591714133143474;250,0.0002446933962264151;251,0.000247752758988964;252,0.0002436365254538982;253,0.00025153524385902455;254,0.0002426352794588822;255,0.0002392421680313279;256,0.00023228907084371663;257,0.00024736338554645783;258,0.00025092337130651484;259,0.00024536089355642576;260,0.0002414671591313635;261,0.0002468627625489498;262,0.0002480865076539694;263,0.000250311498754005;264,0.0002418009077963688;265,0.00025058962264150943;266,0.0002468071377714489;267,0.0002446933962264151;268,0.00024191215735137062;269,0.00025420523317906733;270,0.00025665272338910644;271,0.00024274652901388395;272,0.00023162157351370595;273,0.0002396315414738341;274,0.00024385902456390177;275,0.00024580589177643295;276,0.00023940904236383054;277,0.0002491990032039872;278,0.0002448046457814169;279,0.00024380339978640085;280,0.00024641776432894266;281,0.000246306514773941;282,0.0002407440370238519;283,0.00024714088643645426;284,0.0002528146137415451;285,0.00024808650765396944;286,0.00024736338554645783;287,0.00025031149875400497;288,0.00025003337486650056;289,0.0002597677109291563;290,0.0002509789960840156;291,0.00024675151299394807;292,0.0002470296368814525;293,0.0002418565325738697;294,0.00024502714489142046;295,0.00024730776076895694;296,0.0002386302954788181;297,0.00025303711285154865;298,0.000256374599501602;299,0.0002546502313990744;300,0.00024625088999644004;301,0.00025993458526165893;302,0.00024842025631897474;303,0.0002469183873264507;304,0.00025743147027411893;305,0.00024408152367390534;306,0.0002469183873264507;307,0.00024942150231399075;308,0.0002582102171591314;309,0.00024741901032395867;310,0.00023874154503381989;311,0.0002419677821288715;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0.0015027589889640442;2,0.0014974190103239588;3,0.00147561409754361;4,0.00146688100747597;5,0.001488685920256319;6,0.001495082769668921;7,0.0014958058917764329;8,0.0014828453186187256;9,0.0015080433428266286;10,0.0014718316126735493;11,0.001463932894268423;12,0.0014844584371662512;13,0.0014895202919188322;14,0.001494192773228907;15,0.0014914115343538626;16,0.0014745016019935922;17,0.0014689947490210038;18,0.001482122196511214;19,0.0014574804200783197;20,0.0014635435208259168;21,0.0014798415806336776;22,0.0014766709683161267;23,0.001466436009255963;24,0.0014665472588109652;25,0.0014741678533285868;26,0.0014700516197935208;27,0.0014816771982912068;28,0.0014788959594161624;29,0.0014575360448558206;30,0.0014858490566037738;31,0.0014657128871484516;32,0.0014640997686009257;33,0.0014407373620505517;34,0.0014379561231755073;35,0.0014640441438234248;36,0.0014740009789960841;37,0.001455811676753293;38,0.0014579254182983269;39,0.0014515285688857247;40,0.0014535310608757566;41,0.0014605954076183695;42,0.001468438501245995;43,0.0014510279458882164;44,0.0014592047881808474;45,0.0014576472944108224;46,0.001456367924528302;47,0.001432171146315415;48,0.0014223811854752579;49,0.0014451317194731222;50,0.0014460217159131365;51,0.0014642666429334284;52,0.0014439079743681026;53,0.001457702919188323;54,0.001458815414738341;55,0.0014662691349234605;56,0.0014362873798504808;57,0.0014633210217159132;58,0.001463932894268423;59,0.0014530860626557494;60,0.0014587041651833391;61,0.001464822890708437;62,0.0014788959594161622;63,0.001347565859736561;64,0.0007231777322890709;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.003786601103595586;130,0.0038009522961908156;131,0.0037739742791028834;132,0.00382437032751869;133,0.003824537201851193;134,0.003758176842292631;135,0.003739041918832325;136,0.0037899385902456393;137,0.003822534709861161;138,0.003789104218583126;139,0.0037405994126023497;140,0.003710728907084372;141,0.003747719384122464;142,0.003710728907084372;143,0.003700493948024208;144,0.0037576205945176223;145,0.0037844873620505523;146,0.0038165828586685657;147,0.003834494037023852;148,0.0037881585973656108;149,0.0038017310430758277;150,0.0037537268600925603;151,0.0037414337842648633;152,0.003736038180847277;153,0.003775420523317907;154,0.0037358156817372734;155,0.0037321444464222145;156,0.0037367056781772877;157,0.0037432694019223925;158,0.003762126201495194;159,0.0037826517443930226;160,0.0037560074759700962;161,0.003741545033819865;162,0.0037202963688145246;163,0.0037265819686721257;164,0.003742323780704877;165,0.003750278123887504;166,0.003714733891064436;167,0.003704498932004272;168,0.003694931470274119;169,0.0036558828764684946;170,0.003657329120683518;171,0.003686921502313991;172,0.003714622641509434;173,0.003695320843716625;174,0.003690092114631542;175,0.0036934852260590957;176,0.0036914271092915634;177,0.0036729596831612675;178,0.003690982111071556;179,0.0036839733891064442;180,0.0036687878248487004;181,0.003688923994304023;182,0.0036786334104663585;183,0.00368375088999644;184,0.0036755740477038092;185,0.0036999377002491993;186,0.003648762904948381;187,0.0036304067283730868;188,0.003625789871840513;189,0.0036330767176931296;190,0.0036416985582057677;191,0.003656661623353507;192,0.0036151655393378427;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00024725213599145605;130,0.00024647338910644355;131,0.00024308027767888933;132,0.00024391464934140267;133,0.000260435208259167;134,0.00024202340690637238;135,0.0002547058561765753;136,0.00025848834104663583;137,0.00025314836240655043;138,0.0002461396404414382;139,0.00024196778212887154;140,0.00023952029191883235;141,0.0002564302242791029;142,0.000251813367746529;143,0.00024619526521893915;144,0.00024308027767888928;145,0.00024502714489142046;146,0.00024324715201139196;147,0.0002516464934140264;148,0.00024630651477394093;149,0.0002426352794588822;150,0.0002386302954788181;151,0.00024257965468138127;152,0.00024397027411890356;153,0.00024007653969384122;154,0.0002436921502313991;155,0.0002390752936988252;156,0.00024536089355642576;157,0.0002506452474190104;158,0.0002458615165539338;159,0.00023579343182627272;160,0.00024330277678889288;161,0.0002469183873264507;162,0.00024864275542897825;163,0.00024174528301886794;164,0.00023940904236383057;165,0.00024385902456390177;166,0.0002478640085439658;167,0.0002525364898540406;168,0.0002526477394090424;169,0.00023851904592381632;170,0.00024319152723389106;171,0.000245750266998932;172,0.0002468627625489498;173,0.00023851904592381632;174,0.000238685920256319;175,0.00024118903524385904;176,0.0002489208793164827;177,0.0002439146493414026;178,0.00022978595585617658;179,0.00024246840512637952;180,0.00023668342826628697;181,0.0002530927376290495;182,0.00024163403346386616;183,0.00023501468494126025;184,0.0002425240299038804;185,0.00023890841936632254;186,0.0002446933962264151;187,0.0002375734247063012;188,0.00024274652901388395;189,0.00023774029903880382;190,0.0002481421324314703;191,0.0002464733891064436;192,0.00023379093983624067;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.005482767443930224;194,0.0057078809184763265;195,0.005859291562833749;196,0.00591369259522962;197,0.006039571466714133;198,0.006200772071911713;199,0.0062115076539693845;200,0.006056314524741902;201,0.005889940815236739;202,0.005739475792096832;203,0.005646693663225347;204,0.005498787379850481;205,0.005353384211463154;206,0.0052669989320042725;207,0.005045389818440727;208,0.004825393823424707;209,0.004675985671057316;210,0.004541151210395159;211,0.004362929423282307;212,0.004193273851904593;213,0.004043420701317195;214,0.003904525631897473;215,0.0037697467960128165;216,0.0036329654681381274;217,0.0034944597721609113;218,0.0033331479174083306;219,0.003212164026343895;220,0.003071488964044144;221,0.002850380473478106;222,0.0027152678889284442;223,0.0025662491100035606;224,0.002382965468138127;225,0.002276666518333927;226,0.002125923371306515;227,0.0019468115877536488;228,0.0017774341402634391;229,0.0016125622997508011;230,0.0014846253114987541;231,0.0013429490032039874;232,0.0011851971342114632;233,0.0010128159487362049;234,0.000877369615521538;235,0.0007072134211463155;236,0.0005383922214311143;237,0.00038431158775364906;238,0.00022055224279102884;239,0.00008460528657885369;240,0.000016631808472766107;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0.0035344539871840514;2,0.003543632075471698;3,0.003532618369526522;4,0.0035847387860448556;5,0.0035895781416874334;6,0.003556481399074404;7,0.003542853328586686;8,0.003560208259166964;9,0.0035247196511213955;10,0.0035547014061943754;11,0.0035550351548593803;12,0.003517265930936276;13,0.0035188790494838024;14,0.003510535332858669;15,0.0035201027945888216;16,0.0035485270558917766;17,0.003541685208259167;18,0.003532284620861517;19,0.003546302064791741;20,0.003547803933784265;21,0.0035101459594161625;22,0.003506196600213599;23,0.0034941260234959064;24,0.0035361227305090786;25,0.003550863296546814;26,0.0035592070131719475;27,0.0035199915450338203;28,0.0035279458882164477;29,0.0034842248131007475;30,0.003531895247419011;31,0.003529948380206479;32,0.003548638305446778;33,0.0035305046279814883;34,0.003498520380918476;35,0.003489842915628338;36,0.003555535777856889;37,0.0035180446778212892;38,0.0035244971520113923;39,0.0035375689747241014;40,0.0035601526343894624;41,0.0035119259522961906;42,0.003533897739409043;43,0.003556036400854397;44,0.0035575938946244214;45,0.0035318396226415097;46,0.003538180847276611;47,0.0035073090957636168;48,0.0035264440192239233;49,0.0034846141865432544;50,0.003485059184763261;51,0.003492346030615878;52,0.0035033597365610545;53,0.0034967960128159488;54,0.0035310608757564968;55,0.0035345652367390536;56,0.0034859491812032754;57,0.0034557449270202923;58,0.003467759878960484;59,0.0035021916162335355;60,0.003509756585973656;61,0.0034761592203631187;62,0.0034870060519757926;63,0.003186354129583482;64,0.0017755985226059097;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00027484897872908514;194,0.0002800638016197935;195,0.00027358351504093984;196,0.00025732022071911715;197,0.000250436654503382;198,0.00025188289871840513;199,0.0002483507253470987;200,0.00023204571244215023;201,0.00022439035243859029;202,0.00022522993892399435;203,0.00022244174695176225;204,0.00021373820754716982;205,0.00019868822868458524;206,0.00019858045567817728;207,0.00019890203642310432;208,0.0001918098772917408;209,0.00017933080611427554;210,0.00016548197479085083;211,0.0001705316616233535;212,0.00016684652011391955;213,0.00016352293965824136;214,0.00015729470285243862;215,0.00015492543498576007;216,0.00014817919243948022;217,0.00014210740032039872;218,0.00013696906149875403;219,0.00012749199003203989;220,0.00011803577785688858;221,0.00011380829476682094;222,0.00011709015663937346;223,0.00011325204699181203;224,0.00009878960484158063;225,0.00008360404058383768;226,0.00007292408330366679;227,0.00006274474902100392;228,0.000054901655393378425;229,0.00004694383566215735;230,0.000033805958526165896;231,0.00003114118402901389;232,0.00003602399652901389;233,0.00003598923104307582;234,0.00003025987896048416;235,0.00001868992524029904;236,0.00001351682093271627;237,0.000010012459950160199;238,0.000003671235315058739;239,0.0000005562477750088999;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:ancient_debris", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00003804734781060876;66,0.000046780437878248495;67,0.00005651477394090424;68,0.00006385724457102173;69,0.0000767621929512282;70,0.00009255962976148095;71,0.00010018022427910289;72,0.00011664515841936632;73,0.00011976014595941616;74,0.00013199759700961196;75,0.00014117568529725883;76,0.00015358001067995727;77,0.00016336997152011394;78,0.00017493992524029908;79,0.00018906861872552508;80,0.00019641108935564258;81,0.00019301797792808828;82,0.00022889595941616236;83,0.0002308984514061944;84,0.00023601593093627626;85,0.00024335840156639374;86,0.0002598233357066572;87,0.0002700582947668209;88,0.00028596698113207545;89,0.00029820443218227125;90,0.00030999688501246;91,0.00032607244571021717;92,0.0003292430580277679;93,0.00033135679957280173;94,0.00034848923104307584;95,0.000361561053755785;96,0.0003696266464934141;97,0.00038319909220363115;98,0.0003940459238163048;99,0.00041056648273406904;100,0.0004091758632965468;101,0.0004218583125667497;102,0.0004369882520469918;103,0.00044605509077963684;104,0.00044755695977216094;105,0.000471308739765041;106,0.0004863830544677821;107,0.0004908886614453543;108,0.00048693930224279105;109,0.0004987873798504806;110,0.0005182560519757921;111,0.0005277678889284445;112,0.0005366122285510858;113,0.0005483490566037736;114,0.0005526321644713422;115,0.0005672058561765754;116,0.0005803889284442863;117,0.0005929601281594874;118,0.0006001357244571021;119,0.0006162112851548593;120,0.0006360137059451762;121,0.0006397405660377359;122,0.0006540361338554647;123,0.0006864097543609826;124,0.0006647160911356355;125,0.0006632698469206124;126,0.0006933628515485939;127,0.0006883009967960128;128,0.0007061009255962976;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00025220274118903526;194,0.0002469183873264507;195,0.00024736338554645783;196,0.00025554022783908864;197,0.00024474902100391594;198,0.0002540383588465646;199,0.00025554022783908864;200,0.0002464733891064436;201,0.0002469183873264507;202,0.0002485871306514774;203,0.00024625088999644004;204,0.00024908775364898545;205,0.00024174528301886797;206,0.0002575983446066216;207,0.00025876646493414024;208,0.0002519802420790317;209,0.00024219028123887508;210,0.0002444152723389107;211,0.0002374621751512994;212,0.00023690592737629054;213,0.00024402589889640442;214,0.00024914337842648634;215,0.0002428577785688857;216,0.00025242524029903883;217,0.00025437210751156996;218,0.0002542052331790673;219,0.00025426085795656817;220,0.0002526477394090424;221,0.0002538158597365611;222,0.00024380339978640083;223,0.0002468071377714489;224,0.00024613964044143825;225,0.0002436921502313991;226,0.000240688412246351;227,0.00024391464934140267;228,0.0002466402634389463;229,0.00025515085439658245;230,0.0002524808650765397;231,0.00024313590245639017;232,0.00024207903168387327;233,0.00024447089711641154;234,0.00025136836952652187;235,0.00024547214311142754;236,0.00024380339978640083;237,0.00024803088287646854;238,0.00025114587041651836;239,0.0002559852260590958;240,0.0002592114631541474;241,0.00025248086507653967;242,0.0002549283552865788;243,0.00026827830188679247;244,0.0002627158241367035;245,0.00026143645425418297;246,0.00024508276966892135;247,0.00024502714489142046;248,0.00024619526521893915;249,0.00024936587753648985;250,0.0002569308472766109;251,0.000260935831256675;252,0.00026143645425418297;253,0.0002489765040939836;254,0.0002419121573513706;255,0.0002499221253114988;256,0.0002517021181915273;257,0.0002448046457814169;258,0.0002578208437166252;259,0.00027161578853684585;260,0.0002578208437166252;261,0.00025003337486650056;262,0.00024591714133143474;263,0.00026232645069419725;264,0.00024497152011391957;265,0.00024547214311142754;266,0.0002490877536489854;267,0.0002570420968316127;268,0.00026327207191171237;269,0.0002554289782840869;270,0.0002576539693841225;271,0.0002575983446066216;272,0.0002488652545389818;273,0.0002570420968316127;274,0.00025442773228907085;275,0.0002497552509789961;276,0.0002579320932716269;277,0.00026026833392666434;278,0.00026649830900676397;279,0.00025598522605909573;280,0.00026338332146671415;281,0.0002614920790316839;282,0.0002557071021715914;283,0.0002408552865788537;284,0.00024424839800640797;285,0.0002520358668565326;286,0.00025643022427910287;287,0.00024936587753648985;288,0.00024825338198647206;289,0.00025159086863652544;290,0.0002503671235315059;291,0.00024441527233891064;292,0.0002525364898540406;293,0.00024285777856888576;294,0.0002542052331790673;295,0.00025236961552153794;296,0.0002583214667141332;297,0.00025298148807404775;298,0.00025548460306158775;299,0.00025387148451406203;300,0.00025147961908152366;301,0.0002743414026343895;302,0.0002528702385190459;303,0.0002519802420790317;304,0.00026032395870416523;305,0.0002567639729441082;306,0.00025448335706657174;307,0.00025531772872908513;308,0.00026594206123175504;309,0.0002513127447490211;310,0.00023217782128871485;311,0.00013489008543965826;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0009474012103951584;130,0.0009568574225703099;131,0.0009264862940548238;132,0.0009362206301174795;133,0.0009352750088999645;134,0.0009253737985048061;135,0.000953241812032752;136,0.0009570242969028126;137,0.0009374443752224992;138,0.0009148607155571377;139,0.0009170857066571735;140,0.0009259856710573159;141,0.0009455655927376289;142,0.0009345518867924529;143,0.0009225369348522607;144,0.0009321043965824137;145,0.000916751957992168;146,0.0009172525809896761;147,0.0009198669455322179;148,0.000932938768244927;149,0.0009296012815948737;150,0.0009296569063723746;151,0.000925373798504806;152,0.0009139150943396227;153,0.0009198669455322179;154,0.0009035132609469562;155,0.0009181982022071912;156,0.0009014551441794234;157,0.0009011770202919187;158,0.0009149719651121395;159,0.0009187544499822001;160,0.0008958370416518334;161,0.0008876045745817017;162,0.0009046813812744749;163,0.0009190325738697045;164,0.0009186432004271983;165,0.0008992301530793877;166,0.000903235137059452;167,0.0009148050907796369;168,0.0009021226415094341;169,0.0008987851548593806;170,0.0009111338554645783;171,0.0009120794766820934;172,0.0009074069953720186;173,0.0009150275898896405;174,0.0009195888216447135;175,0.0009127469740121041;176,0.0009125244749021006;177,0.0008945020469918121;178,0.0008921658063367747;179,0.000909186988252047;180,0.0009068507475970097;181,0.00088999644001424;182,0.0008992857778568886;183,0.0009103551085795656;184,0.0009025676397294411;185,0.0008937789248843006;186,0.0008991745283018869;187,0.0009072401210395158;188,0.0009186432004271983;189,0.0008876045745817017;190,0.0009045701317194732;191,0.0009180313278746886;192,0.0009089088643645426;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.003599423727305091;194,0.0035702207191171233;195,0.003610214934140264;196,0.003662001601993592;197,0.0036610003559985763;198,0.003628237362050552;199,0.003614108668565326;200,0.0036458704165183344;201,0.003646816037735849;202,0.003657384745461018;203,0.0036825271448914206;204,0.0036297948558205767;205,0.003544744571021716;206,0.0035960862406550376;207,0.0036584416162335357;208,0.0036847521359914563;209,0.0036365810786756856;210,0.0036478172837308654;211,0.0036733490566037735;212,0.00358373754004984;213,0.0035704432182271277;214,0.003654102883588466;215,0.0036364698291206834;216,0.0036142755428978284;217,0.0036599991100035602;218,0.003625400498398007;219,0.003634634211463154;220,0.00363246484514062;221,0.003628181737273051;222,0.003691315859736561;223,0.0037174595051619793;224,0.0036894802420790315;225,0.00369120461018156;226,0.0036724590601637597;227,0.0036541585083659667;228,0.003691983357066572;229,0.0036872552509789962;230,0.0036734603061587753;231,0.003696767087931648;232,0.0037007720719117124;233,0.0036603884834460667;234,0.003670679067283731;235,0.00363624733001068;236,0.003669510946956212;237,0.0036821377714489146;238,0.0037003826984692064;239,0.0036924839800640797;240,0.0037028301886792452;241,0.0037273050907796375;242,0.003726359469562122;243,0.0037241901032395875;244,0.003734035688857245;245,0.0037140107689569244;246,0.00371812700249199;247,0.003717737629049484;248,0.0037442150231399075;249,0.003723633855464578;250,0.0037027189391242435;251,0.003762126201495194;252,0.003743825649697402;253,0.0037145113919544327;254,0.0037226326094695625;255,0.003765296813812745;256,0.003747719384122464;257,0.0036888683695265223;258,0.0036991589533641863;259,0.003700160199359203;260,0.0037230219829120685;261,0.003766798682805269;262,0.0037708592915628343;263,0.003756563723745105;264,0.0037330900676397294;265,0.0037661311854752582;266,0.0037746974012103952;267,0.0036950427198291207;268,0.0036650609647561412;269,0.0036765196689213246;270,0.0036991589533641863;271,0.0037849879850480597;272,0.0037917185831256675;273,0.003735871306514774;274,0.003721686988252047;275,0.0037497775008899963;276,0.0037374288002847986;277,0.003757898718405126;278,0.0037918298326806692;279,0.0037789805090779637;280,0.0037661311854752582;281,0.0037093382876468494;282,0.003681080900676398;283,0.00371495639017444;284,0.0037256919722321114;285,0.0037517799928800284;286,0.0037764217693129227;287,0.0037917742079031686;288,0.0037560074759700962;289,0.003723188857244571;290,0.003766353684585262;291,0.0038267065681737277;292,0.0037553956034175866;293,0.003697823958704166;294,0.0036774096653613385;295,0.003691315859736561;296,0.003749721876112496;297,0.0037464400142399436;298,0.003720185119259523;299,0.003710117034531862;300,0.0037423794054823782;301,0.00376563056247775;302,0.0038002291740833038;303,0.0037946110715557143;304,0.0037735292808828763;305,0.0037256919722321114;306,0.0037513906194375224;307,0.0037211307404770378;308,0.0037629605731577076;309,0.003764851815592738;310,0.00376373932004272;311,0.0037795923816304738;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "majruszsdifficulty:enderium_shard_ore", + "distrib": "0,0;1,0.0005728239587041652;2,0.0005690970986116056;3,0.000570932716269135;4,0.0005665383588465647;5,0.0005736583303666786;6,0.0005418409576361696;7,0.0005555246529013885;8,0.0005568596475614097;9,0.0005686521003915985;10,0.0005624221253114987;11,0.0005571933962264152;12,0.0005650364898540407;13,0.0005543565325738698;14,0.000567873353506586;15,0.0005672058561765754;16,0.0005702095941616233;17,0.000570988341046636;18,0.0005619771270914916;19,0.0005616990032039872;20,0.000546569063723745;21,0.0005637571199715201;22,0.0005548015307938769;23,0.0005679846030615878;24,0.00055875088999644;25,0.0005607533819864721;26,0.0005567483980064081;27,0.0005619215023139907;28,0.0005619771270914917;29,0.0005555802776788894;30,0.0005533552865788537;31,0.0005614765040939837;32,0.0005765508187967249;33,0.0005629783730865078;34,0.0005753270736917053;35,0.000569430847276611;36,0.000557749644001424;37,0.0005640908686365255;38,0.0005564702741189036;39,0.000568874599501602;40,0.0005667608579565681;41,0.0005732689569241723;42,0.0005675952296190815;43,0.0005733245817016733;44,0.0005672058561765753;45,0.0005676508543965824;46,0.0005560809006763974;47,0.000564313367746529;48,0.0005688189747241011;49,0.0005598077607689569;50,0.0005486271804912781;51,0.0005559696511213956;52,0.000545679067283731;53,0.0005402278390886437;54,0.0005426197045211819;55,0.0005423972054111783;56,0.0005603083837664648;57,0.000570877091491634;58,0.0005655371128515486;59,0.000556192150231399;60,0.0005539115343538626;61,0.0005634233713065148;62,0.0005528546635813457;63,0.0005190904236383055;64,0.0002799595051619794;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0.0028819753470986113;2,0.0029063389996440018;3,0.0029526188145247417;4,0.0029058383766464935;5,0.002902111516553934;6,0.0029092314880740477;7,0.0028661779102883587;8,0.00289437967248131;9,0.002886202830188679;10,0.0028677354040583833;11,0.002912624599501602;12,0.0028961040405838375;13,0.002922358935564258;14,0.002874243503025988;15,0.00286434229263083;16,0.0028790272338910647;17,0.002886202830188679;18,0.0028905971876112494;19,0.0028825315948736207;20,0.002872185386258455;21,0.0028532729619081525;22,0.0028715735137059455;23,0.00288497908508366;24,0.0028717960128159486;25,0.002895547792808829;26,0.002904559006763973;27,0.00285060297258811;28,0.0028361961552153796;29,0.0028889284442862226;30,0.002873687255250979;31,0.0028575004449982204;32,0.0028715735137059455;33,0.002880473478106088;34,0.002899052153791384;35,0.0028801397294410825;36,0.002875689747241011;37,0.0028722410110359558;38,0.0028648985404058384;39,0.002867512904948381;40,0.0028815859736561053;41,0.002890819686721253;42,0.002878192862228551;43,0.002883087842648629;44,0.002879583481666073;45,0.002898551530793877;46,0.002869793520825917;47,0.0028544410822356715;48,0.0028691260234959062;49,0.002833303666785333;50,0.0028503804734781057;51,0.002838309896760413;52,0.002869849145603418;53,0.002858557315770737;54,0.0028695710217159134;55,0.0028952140441438233;56,0.0028414805090779638;57,0.0029046146315414743;58,0.0028607266820932717;59,0.0028665116589533645;60,0.0028761347454610187;61,0.0028533842114631548;62,0.0028541073335706657;63,0.002625934496262015;64,0.001443240477038092;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0250873309006764;194,0.024631040850836596;195,0.024228595585617657;196,0.023713343271626913;197,0.024753470986116057;198,0.028058194642221437;199,0.031181748398006408;200,0.03210511970452118;201,0.03187588999644002;202,0.031556214400142404;203,0.031147817283730866;204,0.03070404280882877;205,0.030371517888928445;206,0.030084939035243854;207,0.029658241367034537;208,0.029007653969384123;209,0.028631018600925602;210,0.02838921769312923;211,0.028031327874688504;212,0.027697356710573162;213,0.027322223211107156;214,0.02674244615521538;215,0.02648562655749377;216,0.026225803221787115;217,0.025817628604485582;218,0.025515474813100746;219,0.025033764239943045;220,0.024440915361338557;221,0.024162735849056607;222,0.023723133232467074;223,0.02331128737985048;224,0.022928755784976863;225,0.02251474056603774;226,0.022189279992880034;227,0.02181169900320399;228,0.02123570443218227;229,0.020793431826272697;230,0.02033897739409042;231,0.02003498798504806;232,0.01975130161979352;233,0.019343460751156998;234,0.018967826628693486;235,0.018543298326806693;236,0.018056859647561416;237,0.017691571733713066;238,0.01739047481310075;239,0.016994760145959416;240,0.016596375489498043;241,0.01619048148807405;242,0.015724178978284088;243,0.015275620772516908;244,0.014883855464578141;245,0.014639495817016733;246,0.014252069241723033;247,0.013747719384122465;248,0.013442283730865076;249,0.013089845140619439;250,0.012647516909932361;251,0.0121498976504094;252,0.01167803266286935;253,0.011297837308650766;254,0.010896003915984337;255,0.010581223300106801;256,0.01042441705233179;257,0.010283408241367035;258,0.01027050329298683;259,0.01036617791028836;260,0.010411567728729084;261,0.010362617924528302;262,0.010342704254182985;263,0.010380751601993594;264,0.010372797258810965;265,0.010340979886080456;266,0.010294421947312211;267,0.010193073602705589;268,0.010211040405838378;269,0.010276510768956925;270,0.010269613296546813;271,0.0102311765752937;272,0.010290138839444643;273,0.010300930046279815;274,0.010387927198291208;275,0.010445721342114632;276,0.010340979886080456;277,0.010267110181559274;278,0.01027990388038448;279,0.010298593805624779;280,0.01032240121039516;281,0.010320064969740122;282,0.010364064168743324;283,0.010423638305446778;284,0.01037741411534354;285,0.01036306292274831;286,0.010423860804556782;287,0.01041184585261659;288,0.01038992969028124;289,0.01038369971520114;290,0.010314780615877536;291,0.010285466358134567;292,0.010340089889640441;293,0.010346653613385546;294,0.010349824225703099;295,0.0103500467248131;296,0.010373353506585973;297,0.010481488074047706;298,0.010425140174439303;299,0.010412402100391599;300,0.01039065281238875;301,0.010369348522605909;302,0.010398718405126378;303,0.010350825471698116;304,0.010295868191527235;305,0.010290138839444643;306,0.010309885635457457;307,0.01040550462798149;308,0.010461296279814881;309,0.01039304467782129;310,0.010339199893200427;311,0.010318284976860093;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "allthemodium:allthemodium_slate_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00001729930580277679;130,0.000024474902100391596;131,0.00003454298682805269;132,0.00003815859736561053;133,0.00004605731577073692;134,0.00005378915984336063;135,0.00006040850836596654;136,0.00006936409754360984;137,0.00007375845496618013;138,0.00008110092559629763;139,0.00008566215735137059;140,0.00009817773228907084;141,0.00010602082591669634;142,0.00010474145603417585;143,0.00011486516553933784;144,0.00011658953364186543;145,0.0001291607333570666;146,0.0001323869704521182;147,0.0001423994304022784;148,0.00015096564613741547;149,0.00015697312210751158;150,0.00016264684941260234;151,0.00016476059095763617;152,0.00017121306514773942;153,0.0001786111605553578;154,0.00018372864008543965;155,0.0001840067639729441;156,0.00020252981488074048;157,0.00021148540405838378;158,0.00021888349946600215;159,0.00022244348522605913;160,0.0002174928800284799;161,0.00021181915272338914;162,0.00020748042007831972;163,0.00020853729085083662;164,0.00019273985404058384;165,0.00019557671769312922;166,0.00018078052687789248;167,0.00017938990744037025;168,0.00017966803132787472;169,0.00016375934496262013;170,0.00015180001779992882;171,0.00014412379850480597;172,0.00013188634745461017;173,0.00012966135635457458;174,0.00012254138483446068;175,0.00011531016375934496;176,0.00010852394090423638;177,0.00009784398362406552;178,0.00010040272338910645;179,0.00009267087931648274;180,0.0000855509077963688;181,0.00007520469918120327;182,0.0000733690815236739;183,0.00006747285510857957;184,0.00005768289426842293;185,0.000048727305090779635;186,0.00004511169455322178;187,0.00003565548237807048;188,0.00003215112139551442;189,0.000021749288002847988;190,0.00001546368814524742;191,0.00001129182983268067;192,0.0000038937344250623005;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0009257075471698114;194,0.0009206456924172304;195,0.0008978395336418655;196,0.0009306025275898896;197,0.0009110226059095764;198,0.0008977282840868637;199,0.0009034020113919544;200,0.0008877158241367034;201,0.0009006763972944109;202,0.0008912758098967604;203,0.0008852127091491635;204,0.0009047370060519758;205,0.0009204231933072269;206,0.0008956701673193307;207,0.0009063501245995017;208,0.0009194219473122108;209,0.0009113007297970809;210,0.0009159175863296546;211,0.0009100769846920613;212,0.0009035132609469562;213,0.0009064613741545033;214,0.0009057938768244928;215,0.000880929601281595;216,0.0008976170345318619;217,0.0009354418832324669;218,0.0009216469384122463;219,0.0009169188323246707;220,0.0009150832146671414;221,0.0009269312922748309;222,0.0009052376290494839;223,0.0009066282484870062;224,0.0009079076183695266;225,0.0009089088643645426;226,0.0009415606087575651;227,0.000938000622997508;228,0.0009224813100747597;229,0.000929935030259879;230,0.0009274319152723389;231,0.0009314368992524029;232,0.000911745728017088;233,0.0009185319508721965;234,0.000945509967960128;235,0.0009563011747953009;236,0.0009277100391598433;237,0.0009179757030971876;238,0.0009158063367746529;239,0.000923871929512282;240,0.0009255962976148096;241,0.0009210906906372375;242,0.0009168075827696688;243,0.0009161400854396581;244,0.0009065726237095052;245,0.0009246506763972945;246,0.0009257075471698114;247,0.0009232600569597722;248,0.0009327718939124244;249,0.0009126357244571022;250,0.0009104663581345674;251,0.0009180313278746885;252,0.0009343850124599502;253,0.0009513505695977217;254,0.0009194775720897117;255,0.0009302131541473835;256,0.0009428399786400855;257,0.0009412268600925595;258,0.0009228150587397652;259,0.00093499688501246;260,0.000926931292274831;261,0.0009164182093271628;262,0.0009282662869348523;263,0.0009331056425774299;264,0.0009460662157351371;265,0.0009463443396226416;266,0.0009428956034175863;267,0.0009356643823424707;268,0.0009368325026699895;269,0.0009215913136347454;270,0.0009157507119971521;271,0.0009202006941972233;272,0.0009240944286222854;273,0.0009408374866500535;274,0.0009269869170523317;275,0.000933995639017444;276,0.0009247619259522962;277,0.0009622530259878961;278,0.0009565236739053045;279,0.0009309919010323959;280,0.000954743681025276;281,0.0009491812032751869;282,0.0009359981310074761;283,0.0009376112495550019;284,0.0009165294588821646;285,0.0009369993770024922;286,0.0009209794410822356;287,0.000908185742257031;288,0.0009225369348522605;289,0.0009341068885724457;290,0.0009343850124599504;291,0.0009301019045923817;292,0.0009246506763972945;293,0.0009410043609825562;294,0.0009303244037023853;295,0.0009291006585973656;296,0.0009569130473478107;297,0.0009485693307226771;298,0.0009403924884300464;299,0.0009176419544321824;300,0.0009376112495550018;301,0.0009366656283374867;302,0.0009441749733001068;303,0.0009139707191171235;304,0.0009185875756496974;305,0.0009190325738697045;306,0.0009423393556425774;307,0.0009239831790672838;308,0.0009259856710573159;309,0.0009318818974724103;310,0.0008324247953008187;311,0.0004679156283374867;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.000918810074759701;194,0.0008957257920968315;195,0.0008822089711641154;196,0.0008931114275542898;197,0.0009176419544321823;198,0.0009171413314346742;199,0.0008856577073691706;200,0.0008725302598789604;201,0.0008597921858312567;202,0.0008767577429690282;203,0.000894057048771805;204,0.0008898851904592382;205,0.0008744771270914917;206,0.0008497241011035956;207,0.0008753671235315058;208,0.0008903301886792453;209,0.0008992857778568886;210,0.0008948357956568174;211,0.0008932226771092915;212,0.0008878270736917052;213,0.0008872708259166965;214,0.0008942239231043076;215,0.0008908308116767534;216,0.0008784264862940548;217,0.0008908308116767534;218,0.0008848789604841581;219,0.0009045701317194732;220,0.0009064613741545035;221,0.000909186988252047;222,0.0008938901744393024;223,0.000898173282306871;224,0.0008838220897116411;225,0.0008706390174439303;226,0.0009030682627269492;227,0.000911690103239587;228,0.0008835439658241367;229,0.0008857133321466715;230,0.000899619526521894;231,0.000914248843004628;232,0.0008956701673193308;233,0.0008835439658241368;234,0.0008884945710217159;235,0.0008973389106443576;236,0.0008869927020291919;237,0.0009111338554645783;238,0.0009020670167319331;239,0.0009051263794944821;240,0.0009274319152723389;241,0.0009408931114275544;242,0.0009171413314346743;243,0.000915250088999644;244,0.00091374822000712;245,0.0009121351014595941;246,0.0009094094873620506;247,0.000906183250266999;248,0.0009098544855820577;249,0.0008969495372018512;250,0.0009174750800996798;251,0.0009054045033819865;252,0.0009245950516197936;253,0.0009206456924172303;254,0.0008971720363118549;255,0.0008703608935564258;256,0.0009027901388394446;257,0.0009081301174795301;258,0.0009106332324670702;259,0.0009007320220719118;260,0.000922370060519758;261,0.0009125800996796012;262,0.0009100769846920613;263,0.0009333837664649341;264,0.0009308250266998933;265,0.0009158619615521539;266,0.0009140819686721253;267,0.0009262081701673193;268,0.00093188189747241;269,0.0009236494304022786;270,0.0009282106621573514;271,0.0009115232289070845;272,0.0009095207369170524;273,0.0009319931470274119;274,0.0009179757030971877;275,0.000928377536489854;276,0.0009224813100747597;277,0.0009077963688145247;278,0.000904125133499466;279,0.000904125133499466;280,0.0008778702385190459;281,0.0008988964044143823;282,0.0009206456924172304;283,0.0009293231577073692;284,0.0009097432360270559;285,0.000928933784264863;286,0.0009240388038447846;287,0.0009283219117123531;288,0.0009237050551797793;289,0.0009114676041295835;290,0.0008869370772516911;291,0.0008829320932716269;292,0.0008909976860092561;293,0.0009208125667497331;294,0.0009210906906372376;295,0.0009014551441794234;296,0.000908686365254539;297,0.0009275431648273408;298,0.0009314925240299038;299,0.0009302687789248844;300,0.000905182004271983;301,0.000901622018511926;302,0.0009065726237095053;303,0.0009013995194019225;304,0.0009102994838020649;305,0.0008978395336418655;306,0.0009160288358846566;307,0.0009246506763972945;308,0.0009150832146671413;309,0.0009221475614097545;310,0.0009160288358846566;311,0.0009174194553221787;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.001391008810964756;66,0.001413314346742613;67,0.0014182093271626912;68,0.0014458548415806336;69,0.0014042475080099683;70,0.0013932894268422927;71,0.0014449092203631187;72,0.0014778390886436457;73,0.0014825115699537202;74,0.0014835128159487363;75,0.0014875734247063012;76,0.0015212264150943396;77,0.0015274007653969385;78,0.00152623264506942;79,0.0015347432360270558;80,0.0015906461374154504;81,0.0016660177109291564;82,0.0017243681025275901;83,0.0017617479530081881;84,0.00180062967248131;85,0.0018276076895692417;86,0.001810030259878961;87,0.0018024096653613386;88,0.0018248264506941973;89,0.0018583681915272342;90,0.001872552509789961;91,0.0018941349234603063;92,0.0019380228729085087;93,0.001974679601281595;94,0.0019456434674261303;95,0.0019192216981132075;96,0.0019256185475258099;97,0.001961440904236383;98,0.0019912001601993592;99,0.0019951495194019224;100,0.002018011302954788;101,0.002002825738697045;102,0.00200310386258455;103,0.0019999888750445;104,0.0020306937522249916;105,0.0020125044499822;106,0.002051553043787825;107,0.002130818351726593;108,0.002183383766464934;109,0.0021999043253826986;110,0.0021801019045923817;111,0.00218310564257743;112,0.0022276054645781417;113,0.0023000845496618013;114,0.002304423282306871;115,0.0022763327696689213;116,0.002260201584193664;117,0.002291073335706657;118,0.002359603061587754;119,0.002485370683517266;120,0.002540995461018156;121,0.0024705188679245284;122,0.002404102883588466;123,0.002437978373086508;124,0.0024911000355998577;125,0.002550729797080812;126,0.0025896671413314348;127,0.002600124599501602;128,0.002604129583481667;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:nether_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0.0018718293876824493;126,0.007097165361338555;127,0.012289738341046637;128,0.014158285866856534;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00012376512993948026;2,0.00017154681381274475;3,0.0002367390530437878;4,0.00028012637949448207;5,0.0003135568707725169;6,0.0003395892666429335;7,0.00036812477750089;8,0.0004197445710217159;9,0.0004914449092203631;10,0.0005558584015663939;11,0.0005690414738341047;12,0.0005771070665717337;13,0.0006130962976148096;14,0.0006642710929156284;15,0.0006860203809184763;16,0.0007173927554289783;17,0.0007613919544321823;18,0.000817183606265575;19,0.0008476659843360627;20,0.0008827095941616234;21,0.0009334950160199359;22,0.0009853929334282664;23,0.001033619615521538;24,0.001060987006051976;25,0.0010486383054467783;26,0.001142811053755785;27,0.0012427131541473836;28,0.0012736405304378784;29,0.0012811498754004987;30,0.0013226459594161623;31,0.001366422659309363;32,0.0014224924350302597;33,0.001457313545745817;34,0.0014906884122463512;35,0.001538303221787113;36,0.0015763505695977217;37,0.0015801330544677823;38,0.0015577718939124244;39,0.0016010479708081166;40,0.0016324759700961197;41,0.0016900476148095408;42,0.0017683673015307941;43,0.0018509144713421146;44,0.0019107111071555714;45,0.0019243391776432896;46,0.0019810764506941973;47,0.002044099323602706;48,0.002048438056247775;49,0.002042819953720185;50,0.0021213621395514415;51,0.002167308205767177;52,0.002218594250622998;53,0.0022833414916340333;54,0.002307315770736917;55,0.002301975792096832;56,0.0022792252580989677;57,0.0022932427020291926;58,0.0023648317906728375;59,0.002458448291206835;60,0.0025011681203275186;61,0.002514963065147739;62,0.0024959950160199362;63,0.0025199136703453187;64,0.002586663403346387;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0004907774118903525;194,0.00048054245283018875;195,0.0004787068351726593;196,0.0004902767888928445;197,0.00048493681025275903;198,0.0004874399252402991;199,0.0004891642933428266;200,0.00047509122463510145;201,0.00048126557493770024;202,0.0004890530437878249;203,0.0004809318262726949;204,0.00048204432182271273;205,0.00048093182627269494;206,0.00048315681737273053;207,0.0004988430046279815;208,0.0005002336240655038;209,0.00048771804912780355;210,0.0004862161801352795;211,0.00047342248131007473;212,0.0005018467426130296;213,0.0004951161445354218;214,0.00048182182271270916;215,0.00047481310074759704;216,0.00047570309718761127;217,0.0004967848878604487;218,0.00047892933428266287;219,0.00048688367746529016;220,0.0004958392666429335;221,0.0004978973834104663;222,0.0004963955144179424;223,0.0004997330010679958;224,0.00048549305802776796;225,0.0004834905660377359;226,0.0004901099145603418;227,0.0004967292630829478;228,0.0004935030259878961;229,0.0005006786222855109;230,0.0004946155215379139;231,0.0005062967248131008;232,0.000494559896760413;233,0.0004971742613029548;234,0.0004902211641153435;235,0.0005121929512281952;236,0.0005091335884656462;237,0.0004903880384478463;238,0.0005011236205055181;239,0.0005078542185831256;240,0.0005029036133855465;241,0.0005054623531505875;242,0.0004985092559629762;243,0.0004936699003203987;244,0.0004941705233179067;245,0.0004967848878604487;246,0.00048287869348522607;247,0.0004920011569953719;248,0.00048393556425774297;249,0.000498564880740477;250,0.0005205922926308296;251,0.0005048504805980777;252,0.0005032373620505518;253,0.0005006786222855109;254,0.0004866055535777857;255,0.0004916117835528658;256,0.0004960617657529371;257,0.0005126379494482023;258,0.0005141398184407263;259,0.0005106910822356711;260,0.000492557404770381;261,0.0004946711463154148;262,0.0004886080455678178;263,0.0005173104307582769;264,0.000520814791740833;265,0.0005021804912780349;266,0.00048827429690281247;267,0.0005047948558205768;268,0.0005021804912780349;269,0.0005092448380206479;270,0.000497619259522962;271,0.0004928911534353862;272,0.0005046279814880741;273,0.0005098010857956569;274,0.000504182983268067;275,0.0005029036133855464;276,0.0004973411356354574;277,0.0005071310964756142;278,0.0005079098433606265;279,0.0005126935742257031;280,0.0004967292630829477;281,0.0005010123709505162;282,0.0005090779636881453;283,0.0005079654681381274;284,0.0005207035421858312;285,0.0005087442150231399;286,0.0005141954432182272;287,0.0005105242079031685;288,0.0005101348344606621;289,0.0005147516909932361;290,0.0005027923638305447;291,0.0004992880028479886;292,0.000496117390530438;293,0.000514251067995728;294,0.0005027923638305446;295,0.0005062967248131008;296,0.0005019579921680314;297,0.0004962286400854398;298,0.0005000667497330011;299,0.0004922236561053755;300,0.0004932249021003916;301,0.0004951161445354219;302,0.000503626735493058;303,0.0004957836418654325;304,0.0004981755072979708;305,0.0004986205055179779;306,0.0005121373264506944;307,0.0005057961018155927;308,0.0004943373976504094;309,0.0004984536311854752;310,0.000457124421502314;311,0.00025503960484158067;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00006608223567105732;130,0.00008493903524385903;131,0.00010780081879672482;132,0.00012404325382698472;133,0.0001489631541473834;134,0.0001695443218227127;135,0.00019051486294054825;136,0.00020631229975080103;137,0.0002201072445710217;138,0.0002509233713065148;139,0.00026516331434674266;140,0.0002736739053043788;141,0.0002992613029547882;142,0.00031322312210751155;143,0.00033024430402278394;144,0.0003626735493058028;145,0.00039504716981132075;146,0.00041101148095407623;147,0.000432872018511926;148,0.00043748887504449984;149,0.0004457769668921325;150,0.0004655793876824493;151,0.0004910555357778569;152,0.0005200916696333214;153,0.0005248197757208972;154,0.0005443996974012104;155,0.0005631452474190103;156,0.0006019157173371306;157,0.0006140419188323247;158,0.0006253893734425062;159,0.0006575961196155216;160,0.0006682204521181915;161,0.0006753960484158064;162,0.0006854085083659665;163,0.0007091046635813458;164,0.0007264595941616234;165,0.000753882609469562;166,0.0007806381274474902;167,0.0007978261836952653;168,0.0008206323424706302;169,0.0008423260056959772;170,0.0008384878960484159;171,0.000812121751512994;172,0.0007790806336774655;173,0.0007645069419722321;174,0.0007409776610893557;175,0.0007061009255962976;176,0.0006807360270558917;177,0.0006870772516909933;178,0.0006653279636881453;179,0.0006534798860804557;180,0.0006351237095051621;181,0.0006146537913848346;182,0.0005923482556069776;183,0.0005808339266642933;184,0.0005620327518689925;185,0.0005408953364186543;186,0.0005164760590957636;187,0.0004928355286578854;188,0.00047542497330010675;189,0.0004549550551797793;190,0.0004408263616945533;191,0.0004304245283018868;192,0.00040528212887148453;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0008976170345318618;194,0.0008780927376290494;195,0.0008926108045567817;196,0.0008920545567817729;197,0.0009001757742969028;198,0.0009025120149519404;199,0.0009017332680669278;200,0.00088688145247419;201,0.0008664671591313635;202,0.0008854908330366679;203,0.0008992857778568886;204,0.000868859024563902;205,0.0008602928088287647;206,0.0008607378070487719;207,0.0008885501957992168;208,0.0008968382876468494;209,0.0009029570131719474;210,0.0008855464578141688;211,0.0008819864720541119;212,0.0008699158953364187;213,0.0008757564969740122;214,0.0008819308472766109;215,0.0008772027411890352;216,0.0008843227127091492;217,0.0009046813812744748;218,0.0009005095229619082;219,0.000898062032751869;220,0.00090062077251691;221,0.0008819864720541117;222,0.0009017332680669279;223,0.000903624510501958;224,0.0008816527233891063;225,0.0008821533463866144;226,0.0008752002491990033;227,0.000881318974724101;228,0.0008805402278390887;229,0.0008937789248843005;230,0.0008916651833392668;231,0.0008971164115343539;232,0.0009014551441794233;233,0.0008977839088643646;234,0.000909186988252047;235,0.0009107444820220719;236,0.0008946132965468137;237,0.0008825983446066216;238,0.0009123576005695978;239,0.0009191994482022072;240,0.0009328831434674261;241,0.0009159732111071557;242,0.0009022895158419367;243,0.0009003426486294056;244,0.0009079632431470275;245,0.0009170857066571734;246,0.0009164182093271627;247,0.0009095763616945534;248,0.000913247597009612;249,0.0009247619259522961;250,0.0009224813100747599;251,0.00091124510501958;252,0.0009105776076895693;253,0.0009239831790672838;254,0.000939001868992524;255,0.0009445087219651122;256,0.0009016220185119261;257,0.0008961707903168387;258,0.0009119682271270914;259,0.0009175307048771806;260,0.000910744482022072;261,0.0008982289070843716;262,0.0009003426486294054;263,0.0009076294944820221;264,0.0009092426130295479;265,0.0009213688145247419;266,0.0009197000711997151;267,0.0009253181737273052;268,0.0009253181737273052;269,0.0008936120505517978;270,0.0009181425774296903;271,0.0009327718939124244;272,0.0009272650409398362;273,0.0009203119437522251;274,0.0009443974724101104;275,0.000918810074759701;276,0.0009052376290494838;277,0.0009154725881096475;278,0.0009019001423994304;279,0.0009202563189747241;280,0.0009352750088999645;281,0.0009304912780348878;282,0.0009153613385546459;283,0.0008988407796368815;284,0.0009078519935920256;285,0.0009086307404770381;286,0.0008956145425418298;287,0.0008962820398718406;288,0.0009075738697045214;289,0.0009030682627269491;290,0.0009189769490922037;291,0.0009302687789248843;292,0.0009317706479174084;293,0.0009273206657173373;294,0.0009124132253470987;295,0.000890385813456746;296,0.0008997864008543966;297,0.0008906639373442507;298,0.0008704165183339267;299,0.0008995082769668922;300,0.0009255962976148096;301,0.0009344406372374511;302,0.0009257631719473123;303,0.0009060720007119973;304,0.0009084082413670345;305,0.0009185319508721966;306,0.0008937233001067996;307,0.0008997307760768957;308,0.0009041807582769669;309,0.0008951139195443219;310,0.0009135257208971164;311,0.0009323268956924172;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0004189658241367035;130,0.0005332191171235316;131,0.0006395180669277322;132,0.0007602794588821645;133,0.0008690258988964044;134,0.0009915116589533644;135,0.0011045968316126735;136,0.0012512793698825206;137,0.0013370527767888928;138,0.0014503048237807048;139,0.001589756140975436;140,0.0016771426664293344;141,0.0018207102171591315;142,0.001969951495194019;143,0.002178433161267355;144,0.002397761658953364;145,0.002606132075471698;146,0.0028407573869704524;147,0.0030570265218939126;148,0.003295100569597722;149,0.003502914738341047;150,0.0036607222321110716;151,0.0038585795656817376;152,0.004067172481310074;153,0.004311476504093983;154,0.004555613652545389;155,0.00474245728017088;156,0.004998887504449982;157,0.005205199804200783;158,0.005307605019579923;159,0.005503014862940548;160,0.005774519401922392;161,0.006029670256318976;162,0.006199715201139197;163,0.006426719918120327;164,0.0066145647917408325;165,0.006835005784976861;166,0.007114130918476326;167,0.007283786489854041;168,0.007515741812032751;169,0.007690236739053045;170,0.007927365165539338;171,0.008106977572089712;172,0.008287591224635103;173,0.008395113919544322;174,0.00842999065503738;175,0.008406683873264507;176,0.008361294054823783;177,0.008311343004627983;178,0.008266064435742257;179,0.008195810341758633;180,0.008207046546813812;181,0.008259111338554646;182,0.008255273228907085;183,0.00821817150231399;184,0.008177342915628338;185,0.008121885012459949;186,0.008097576984692063;187,0.008036111605553578;188,0.008110871306514774;189,0.008175618547525808;190,0.008524608401566394;191,0.008943184852260592;192,0.00898818529725881;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00563434496262015;130,0.005612095051619794;131,0.005513639195443218;132,0.0053989965290138844;133,0.005435875756496974;134,0.0054683050017799925;135,0.0054815993236027065;136,0.0054154058383766475;137,0.005406505873976505;138,0.005323235582057672;139,0.005210039159843361;140,0.005138005072979708;141,0.005161868102527591;142,0.0050570153969384125;143,0.004960562032751869;144,0.00486494304022784;145,0.004875845496618013;146,0.004809373887504451;147,0.004775220274118904;148,0.004763483446066216;149,0.004771104040583838;150,0.004754194108223567;151,0.004675262548949805;152,0.0046056203275186905;153,0.004516064435742257;154,0.0043812299750801;155,0.004312032751868993;156,0.0043010190459238165;157,0.004351804467782129;158,0.004321989587041652;159,0.00431375711997152;160,0.0042441148985404055;161,0.004203341936632254;162,0.004141209060163759;163,0.004055936276254894;164,0.004039415717337131;165,0.004014662691349235;166,0.003949081078675686;167,0.003874265752936989;168,0.0038634745461018152;169,0.0037744749021003917;170,0.0036933739765040935;171,0.0036883677465290136;172,0.0036764640441438235;173,0.003626568618725526;174,0.0035724457102171594;175,0.0035300596297614807;176,0.003498909754360983;177,0.0034683717515129947;178,0.003421313189747241;179,0.0033305335528657884;180,0.0033246373264506942;181,0.003323246707013172;182,0.0032174483802064795;183,0.003122051886792453;184,0.003110871306514775;185,0.0031263349946600216;186,0.003068985849056604;187,0.0030222054111783553;188,0.0029493925774296903;189,0.002877636614453542;190,0.002823402456390175;191,0.002835194909220363;192,0.0028458748665005345;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.008935119259522964;194,0.008937177376290496;195,0.008930947401210396;196,0.008943351726593093;197,0.008936009255962976;198,0.008851125845496619;199,0.00886052643289427;200,0.008776811142755431;201,0.008694319597721609;202,0.008722410110359558;203,0.008797392310430759;204,0.008781928622285511;205,0.0087249688501246;206,0.008723522605909577;207,0.00871306514773941;208,0.008763850569597723;209,0.00873692817728729;210,0.00870071644713421;211,0.008676909042363831;212,0.008672514684941261;213,0.008663058472766109;214,0.008608935564257743;215,0.008597588109647562;216,0.008600258098967604;217,0.008567272605909577;218,0.0085437989498042;219,0.00849941037735849;220,0.008586407529369882;221,0.008765352438590245;222,0.008805791651833393;223,0.008968382876468495;224,0.009069341847632608;225,0.009147439035243858;226,0.009224256852972589;227,0.0093437388750445;228,0.00941744170523318;229,0.009549272427910288;230,0.009661356354574583;231,0.009724657351370595;232,0.009877903613385548;233,0.009967682004271982;234,0.009944708971164116;235,0.010160922481310074;236,0.010248475881096474;237,0.010426864542541828;238,0.01042925640797437;239,0.010472254360982557;240,0.010664771715913138;241,0.010862740299038803;242,0.010922759433962266;243,0.011008477216091135;244,0.011058205767176933;245,0.011166284709861161;246,0.01127875800996796;247,0.01138566883232467;248,0.011473555980776078;249,0.011644880295478818;250,0.011644935920256321;251,0.011649830900676398;252,0.01186359692061232;253,0.012082369170523318;254,0.012230664827340691;255,0.012335350658597366;256,0.01231755072979708;257,0.012401043520825918;258,0.01252864676041296;259,0.012656750622997509;260,0.012740187789248845;261,0.012821566838732647;262,0.01292436142755429;263,0.012492101281594874;264,0.012081367924528304;265,0.012136269579921682;266,0.01220307493770025;267,0.012385746707013173;268,0.012522750533997864;269,0.012584104663581347;270,0.012722054111783555;271,0.012848600480598077;272,0.012808995639017445;273,0.012973033107867567;274,0.013108590690637236;275,0.01314936365254539;276,0.013255662602349592;277,0.013330144179423284;278,0.013424428177287291;279,0.013505695977216093;280,0.013566994482022074;281,0.013690926486294056;282,0.013805012904948382;283,0.01396187477750089;284,0.014117067906728373;285,0.014134589711641155;286,0.014252013616945534;287,0.014472065236739055;288,0.014518623175507298;289,0.0144999888750445;290,0.014576528568885725;291,0.014747908508365966;292,0.014932026521893913;293,0.015017021181915273;294,0.015081100925596298;295,0.015031650498398007;296,0.015053344161623355;297,0.014899541651833392;298,0.014730553577785691;299,0.014743402901388394;300,0.014620805891776433;301,0.014467170256318978;302,0.014324548326806694;303,0.01427732289070844;304,0.014195943841224634;305,0.014052098166607335;306,0.014033352616589535;307,0.014028235137059452;308,0.013856465824136703;309,0.013741378159487363;310,0.013613107422570311;311,0.013488619170523318;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0009367212531149875;130,0.0009336618903524386;131,0.0009397249911000357;132,0.0009282106621573515;133,0.0009309362762548951;134,0.0009290450338198647;135,0.0009178644535421859;136,0.0009190881986472054;137,0.0009246506763972945;138,0.0009295456568173729;139,0.0009430624777500891;140,0.0009353862584549662;141,0.0009155282128871483;142,0.0009298794054823781;143,0.0009345518867924529;144,0.0009202563189747242;145,0.0009255962976148096;146,0.0009387793698825205;147,0.0009372775008899964;148,0.0009163069597721609;149,0.0009095763616945533;150,0.0009229263082947668;151,0.0009057382520469918;152,0.0009061832502669989;153,0.0009105776076895693;154,0.0009168075827696688;155,0.0009067394980420077;156,0.0009051263794944821;157,0.0009029013883944465;158,0.0009012882698469207;159,0.0009092982378070488;160,0.0009185875756496974;161,0.0008871039515841938;162,0.0008961151655393379;163,0.0009124688501245995;164,0.0009146938412246351;165,0.0009199225703097188;166,0.00092748754004984;167,0.0009151944642221432;168,0.0008908308116767534;169,0.0009078519935920256;170,0.0008845452118191527;171,0.0009045701317194732;172,0.000941560608757565;173,0.0009096319864720542;174,0.0008926664293342827;175,0.000915305713777145;176,0.0008966714133143469;177,0.0008843783374866501;178,0.0008969495372018513;179,0.0009168075827696691;180,0.000906739498042008;181,0.000887382075471698;182,0.0009039026343894625;183,0.0008977282840868637;184,0.0009122463510145959;185,0.000906628248487006;186,0.0009011213955144179;187,0.0009003982734069064;188,0.0008888839444642223;189,0.0008835995906016377;190,0.0008805402278390887;191,0.0008853239587041652;192,0.0008854908330366679;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0012427131541473836;130,0.0012194063723745107;131,0.0012120082769668922;132,0.001231810697757209;133,0.0012332569419722323;134,0.0012207969918120328;135,0.0012013283196867213;136,0.001236427554289783;137,0.0012395981666073338;138,0.0012255250978996084;139,0.0011879783730865078;140,0.0011972677109291564;141,0.0011967114631541475;142,0.0012067239231043077;143,0.0012357600569597722;144,0.0012054445532217874;145,0.0012102839088643646;146,0.0011997152011391956;147,0.0012073357956568175;148,0.0012180713777144893;149,0.0012210751156995375;150,0.0011885346208615165;151,0.0011983245817016733;152,0.001206112050551798;153,0.001215067639729441;154,0.0012298638305446778;155,0.001196544588821645;156,0.00119687833748665;157,0.0012226326094695622;158,0.0012104507831968672;159,0.0011853083837664652;160,0.0012101170345318619;161,0.0012070020469918121;162,0.0011879227483090069;163,0.001208058917764329;164,0.0012057226771092916;165,0.0012024964400142398;166,0.001198936454254183;167,0.0011969895870416517;168,0.0012110626557493773;169,0.0011818596475614098;170,0.0011672859558561764;171,0.00116561721253115;172,0.0011947089711641153;173,0.0011726815592737628;174,0.0011847521359914562;175,0.0011699003203987186;176,0.001201439569241723;177,0.0011932071021715912;178,0.0011693996974012104;179,0.0011917608579565682;180,0.001195988341046636;181,0.0011946533463866147;182,0.0012137326450694197;183,0.0011783552865788536;184,0.001174684051263795;185,0.0011959883410466356;186,0.00120249644001424;187,0.0011869215023139908;188,0.0011667297080811677;189,0.0011631140975436097;190,0.001184752135991456;191,0.0011870883766464935;192,0.001177075916696333;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.002855052954788181;194,0.002743414026343895;195,0.0026822267710929163;196,0.0027299528301886794;197,0.0027399652901388396;198,0.0026748843004627985;199,0.0025978996084015664;200,0.0025183005517977926;201,0.0024924350302598787;202,0.0024854819330722678;203,0.0024518289426842294;204,0.002442205856176575;205,0.0024298015307938773;206,0.0023657217871128518;207,0.002275887771448914;208,0.002182382520469918;209,0.0021151321644713424;210,0.00207252358490566;211,0.002050885546457814;212,0.0020098900854396587;213,0.0019592715379138483;214,0.0019138817194731222;215,0.0018905193129227487;216,0.0018704387682449268;217,0.0018482444820220722;218,0.0017406105375578499;219,0.0016688545745817017;220,0.0016483290316838734;221,0.0016821488964044143;222,0.0016437121751512996;223,0.0015568818974724102;224,0.0014775053399786401;225,0.0014774497152011392;226,0.0014686610003559987;227,0.0014447423460306158;228,0.0014127580989676041;229,0.0013765463688145247;230,0.0013205322178711286;231,0.0012470518867924527;232,0.0011937077251690993;233,0.0011712353150587398;234,0.0011403635635457458;235,0.0010940281238875048;236,0.0010322846208615166;237,0.000983446066215735;238,0.0009485693307226771;239,0.0009003982734069062;240,0.0008546747063011749;241,0.0007919855820576719;242,0.0007386414204343184;243,0.0007154458882164471;244,0.0007010946956212175;245,0.0006526455144179424;246,0.0005849501601993593;247,0.0005299372552509791;248,0.0004922792808828765;249,0.0004666918832324671;250,0.00044038136347454603;251,0.00038086285154859383;252,0.0003259055713777145;253,0.0002883032217871128;254,0.0002364609291562834;255,0.00018968049127803492;256,0.00014201005695977216;257,0.00009979085083659664;258,0.00005629227483090068;259,0.00002870238519045924;260,0.000007342470630117482;261,0.00000022249911000356004;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0027738407796368816;66,0.002792864453542186;67,0.002835194909220363;68,0.0028991077785688853;69,0.0029761480954076185;70,0.003011970452118192;71,0.003030104129583482;72,0.00302938100747597;73,0.003032940993236027;74,0.003136069330722677;75,0.0032006496974012104;76,0.0032049884300462796;77,0.003303555535777857;78,0.0034230931826272695;79,0.0034297125311498755;80,0.0034364987540049844;81,0.003527612139551442;82,0.0035795100569597726;83,0.0035889662691349234;84,0.0036186699003203987;85,0.003729029458882164;86,0.0037916073335706657;87,0.0038235915806336777;88,0.003875878871484515;89,0.003901188145247419;90,0.003920378693485226;91,0.004008933339266643;92,0.0040704543431826275;93,0.004068896849412602;94,0.004108779814880741;95,0.00414749466002136;96,0.004222198736205056;97,0.0042784353862584555;98,0.0043236583303666795;99,0.0043823980954076185;100,0.004424728551085795;101,0.004476403969384122;102,0.004454599056603774;103,0.00443368414026344;104,0.004514673816304734;105,0.004556281149875401;106,0.004651065770736918;107,0.0047142555179779284;108,0.004729107333570666;109,0.004703909309362763;110,0.004771048415806337;111,0.004810041384834461;112,0.004809596386614454;113,0.0048470874866500535;114,0.004928077162691349;115,0.005038325471698113;116,0.005094728996084015;117,0.005128437611249556;118,0.005155360003559986;119,0.005172158686365254;120,0.0052139885190459236;121,0.005122096386614454;122,0.0051217070131719476;123,0.005250144624421502;124,0.005362284175863297;125,0.005419355197579211;126,0.0054176308294766815;127,0.005435875756496974;128,0.00544939257742969;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "create_new_age:thorium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.00109625311498754;194,0.001089300017799929;195,0.0010684963510145962;196,0.001093249377002492;197,0.0010799550551797792;198,0.0010676619793520826;199,0.001081456924172303;200,0.0010814012993948024;201,0.0010843494126023497;202,0.0010814012993948026;203,0.001047748309006764;204,0.0010582613919544325;205,0.001087686899252403;206,0.0010628226237095052;207,0.0010827362940548238;208,0.0010646026165895338;209,0.001088799394802421;210,0.001081623798504806;211,0.0010788425596297616;212,0.001072556959772161;213,0.001053811409754361;214,0.0010713332146671415;215,0.001070498843004628;216,0.0010709438412246353;217,0.001075560697757209;218,0.0011090468138127449;219,0.001097977483090068;220,0.0010667719829120684;221,0.0010965312388750443;222,0.0010794544321822714;223,0.0010681626023495907;224,0.0010804000533997866;225,0.0010771738163047348;226,0.001087241901032396;227,0.0010735025809896761;228,0.0010703875934496261;229,0.0010811788002847988;230,0.0011020937166251335;231,0.0010893556425774298;232,0.0011048193307226773;233,0.001106432449270203;234,0.0010893556425774298;235,0.0010954187433250267;236,0.0011004805980776074;237,0.0010871862762548952;238,0.001087130651477394;239,0.0010896893912424352;240,0.0011050418298326806;241,0.0011070999466002136;242,0.0011147761658953366;243,0.0011025943396226414;244,0.0010931381274474903;245,0.0010748932004271982;246,0.0010763950694197223;247,0.0010804556781772872;248,0.0010988674795300822;249,0.0010864631541473834;250,0.0010842937878248486;251,0.001092303755784977;252,0.001094306247775009;253,0.0010872975258098968;254,0.0011034843360626558;255,0.0011017599679601282;256,0.0011041518333926663;257,0.001098366856532574;258,0.0010976993592025633;259,0.0011073224457102172;260,0.0011058762014951942;261,0.0010989231043075829;262,0.001110381808472766;263,0.0011104930580277679;264,0.0010965312388750445;265,0.0010939168743325026;266,0.0011095474368102527;267,0.0010989787290850838;268,0.0010803444286222857;269,0.0010869081523673906;270,0.001110437433250267;271,0.0011061543253826985;272,0.0011087130651477393;273,0.001116444909220363;274,0.0010960862406550374;275,0.0010999799750800996;276,0.0011133855464578145;277,0.0011217292630829477;278,0.0011016487184051264;279,0.001104429957280171;280,0.001103428711285155;281,0.0010982556069775722;282,0.001085795656817373;283,0.001073613830544678;284,0.0010813456746173017;285,0.0011192817728729086;286,0.0010931937522249912;287,0.0011036512103951585;288,0.00113062922748309;289,0.0011120505517977928;290,0.001123676130295479;291,0.0011324092203631184;292,0.00111499866500534;293,0.0010947512459950162;294,0.0010963087397650407;295,0.001106043075827697;296,0.001090746262014952;297,0.0010966981132075474;298,0.0011098255606977574;299,0.0011149430402278393;300,0.0010877981488074048;301,0.0011053199537201853;302,0.0011113274296902812;303,0.0011286267354930581;304,0.0011257342470630117;305,0.001132186721253115;306,0.0011242323780704879;307,0.0011174461552153792;308,0.0010909687611249557;309,0.0011027055891776434;310,0.001018322801708793;311,0.0005515752936988254;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.010739976415094341;194,0.010801108045567817;195,0.010979496707013172;196,0.011019157173371307;197,0.011009812210751157;198,0.010963532395870418;199,0.010965256763972945;200,0.011052865788536849;201,0.011192706479174084;202,0.011384611961552155;203,0.011353406461374154;204,0.011340557137771448;205,0.011526065770736917;206,0.011602438590245638;207,0.011665183339266643;208,0.011717971253114988;209,0.011711407529369881;210,0.011733434941260234;211,0.011856143200427199;212,0.011810975881096477;213,0.011734714311142756;214,0.0116624021003916;215,0.01156188812744749;216,0.011581189925240298;217,0.011557048771804912;218,0.01145870416518334;219,0.01137999510501958;220,0.01125122374510502;221,0.011180024029903878;222,0.011106933072267712;223,0.011068162602349592;224,0.010984224813100747;225,0.010901622018511926;226,0.010821967337130652;227,0.010820242969028126;228,0.010769624421502314;229,0.010629728106087576;230,0.010541840957636172;231,0.010531605998576006;232,0.010456623798504806;233,0.010406116500534;234,0.010348322356710573;235,0.010178277411890351;236,0.010118814524741901;237,0.010156249999999999;238,0.010139562566749735;239,0.009958837664649342;240,0.009839633766464935;241,0.009791518333926665;242,0.009809429512281951;243,0.009842136881452475;244,0.009700905571377717;245,0.009577140441438235;246,0.009521348789604842;247,0.009433795389818441;248,0.009346965112139552;249,0.009267755428978286;250,0.00922186498754005;251,0.009174472677109292;252,0.009073791829832681;253,0.008937066126735494;254,0.008853962709149163;255,0.008846063990744037;256,0.008794499822000711;257,0.008781928622285511;258,0.008737039426842293;259,0.008610604307582771;260,0.00852994838020648;261,0.008534509611961553;262,0.008495794766820932;263,0.008385268333926664;264,0.008254327607689571;265,0.008153424261302954;266,0.008055357778568887;267,0.008040283463866146;268,0.007971419989320043;269,0.007900999021003916;270,0.007874799750800996;271,0.00786434229263083;272,0.007779737006051977;273,0.007696077340690638;274,0.007585272783908864;275,0.007435197134211464;276,0.007338521270914917;277,0.007289515841936632;278,0.0071848300106799575;279,0.0071743169277322895;280,0.007147172036311855;281,0.007080366678533286;282,0.006906205500178;283,0.006774263527945889;284,0.0066913826094695626;285,0.006632142221431114;286,0.006542586329654681;287,0.006464433517265932;288,0.0063100191349234605;289,0.006270024919900321;290,0.006335217159131363;291,0.006348900854396582;292,0.006292664204343183;293,0.006182193396226415;294,0.00607250133499466;295,0.006037568974724101;296,0.005916807582769669;297,0.005826139195443218;298,0.005790094339622642;299,0.005637126201495194;300,0.005529603506585974;301,0.0055640908686365245;302,0.005509578586685653;303,0.0054312032751869;304,0.005402612139551443;305,0.0053032106621573516;306,0.00516309184763261;307,0.005050229174083304;308,0.004962119526521894;309,0.004945710217159132;310,0.00486377491990032;311,0.004763316571733714;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0027080366678533287;130,0.0027342359380562475;131,0.002747363385546458;132,0.002747808383766465;133,0.0027793476326094697;134,0.002801986917052332;135,0.0028123887504449985;136,0.0028399230153079392;137,0.0028365855286578857;138,0.0028615610537557857;139,0.0029281995372018514;140,0.002964466892132431;141,0.0029222476860092557;142,0.0029768155927376297;143,0.00308189079743681;144,0.0031223300106799573;145,0.003113040672837309;146,0.0031150431648273406;147,0.0031201606443574227;148,0.003141353684585262;149,0.0031427443040227838;150,0.003095240744037024;151,0.0030765508187967252;152,0.003158764239943041;153,0.003261781327874689;154,0.0033431603773584903;155,0.0033315904236383056;156,0.003291929957280171;157,0.0032641175685297263;158,0.0032571088465646143;159,0.0032916518333926665;160,0.0033922770558917764;161,0.003425707547169812;162,0.0034028457636169455;163,0.0033972832858668563;164,0.0034406706123175507;165,0.0034870616767532932;166,0.0035165984336062656;167,0.0035438545745817016;168,0.003524886525453899;169,0.0034792185831256676;170,0.003453909309362763;171,0.0034589711641153436;172,0.0035524764150943397;173,0.0036374154503381988;174,0.0036712909398362407;175,0.0036911489854040587;176,0.0036786334104663577;177,0.003667842203631186;178,0.003676686543253827;179,0.0036613341046635817;180,0.003675796546813813;181,0.0037502224991100043;182,0.0037836529903880387;183,0.00375561810252759;184,0.003751613118547526;185,0.003793721075115699;186,0.003875878871484514;187,0.003951083570665718;188,0.003948357956568174;189,0.003913648095407618;190,0.0038416696333214667;191,0.003869927020291919;192,0.003897906283374866;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00005465134389462442;130,0.00004856043075827697;131,0.000049130584727661085;132,0.000045793098077607695;133,0.00004233045567817729;134,0.00004461107155571378;135,0.0000433873264506942;136,0.0000440687299750801;137,0.00004177420790316839;138,0.00004566794232823069;139,0.000045222944108223574;140,0.00004700293698825205;141,0.00004607122196511214;142,0.000043623731755072984;143,0.00004405482378070488;144,0.000046391064435742254;145,0.000043248264506941974;146,0.00003874961062655749;147,0.00003884000088999644;148,0.00004124577251690993;149,0.00004173944241723033;150,0.0000385062522249911;151,0.000037692739854040585;152,0.000038026488519045927;153,0.00004221920612317551;154,0.00004007765218939125;155,0.00003763016197935208;156,0.000032039871840512635;157,0.00003476548593805625;158,0.00003426486294054824;159,0.00003327752313990744;160,0.000034341347009611965;161,0.00003126112495550018;162,0.0000322693240477038;163,0.00003395892666429334;164,0.000035071422214311145;165,0.0000323249488252047;166,0.00003231799572801709;167,0.00003276299394802421;168,0.00003187299750800996;169,0.00003014862940548238;170,0.000028987462175151305;171,0.000029439413492346032;172,0.00003248487006051976;173,0.00002805574715201139;174,0.000026762471075115702;175,0.000028438167497330013;176,0.00003138628070487718;177,0.00003116378159487362;178,0.00003017644179423282;179,0.00003169221698113207;180,0.00002816004360982556;181,0.00002236116055535778;182,0.00002548310119259523;183,0.000026672080811676756;184,0.00002687372063011748;185,0.000025990677287290854;186,0.000027937544499822;187,0.00002347365610537558;188,0.000023696155215379142;189,0.000026366144535421864;190,0.000026720752491990033;191,0.000023904748131007475;192,0.000023105141954432184;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0014140930936276256;130,0.0018488007297970811;131,0.0022332791918832327;132,0.0026313857244571024;133,0.00303499911000356;134,0.00342248131007476;135,0.0038122441260234965;136,0.0042733735315058745;137,0.004702129316482734;138,0.0051052977038091845;139,0.005506630473478107;140,0.005834538536845854;141,0.006202885813456746;142,0.006622686009255963;143,0.007045044944820221;144,0.007465401388394447;145,0.007967081256674974;146,0.008342604129583483;147,0.008741600658597366;148,0.00913186409754361;149,0.009463165272338911;150,0.009894201673193305;151,0.01026939079743681;152,0.010623776254894982;153,0.011002747864008545;154,0.011449081078675684;155,0.011855197579209683;156,0.012229329832680672;157,0.012607745194019226;158,0.013053355286578855;159,0.013558261391954433;160,0.01396932849768601;161,0.01437933873264507;162,0.014766820932716269;163,0.015186509878960485;164,0.0155187566749733;165,0.015977994838020648;166,0.016506986472054112;167,0.016749510501957995;168,0.017056281149875403;169,0.01755417853328587;170,0.017967860003559988;171,0.018207491545033823;172,0.01852110404058384;173,0.019073124332502668;174,0.01959010101459594;175,0.01999265752936988;176,0.020404837130651478;177,0.020777634389462445;178,0.021132242346030616;179,0.021532629494482022;180,0.02200727572089712;181,0.022380295478818084;182,0.022663814969740122;183,0.02300206924172303;184,0.02349590601637594;185,0.02391370372018512;186,0.024232433695265218;187,0.024796969562121754;188,0.025188456746173017;189,0.02545362006051976;190,0.025730965201139197;191,0.02567255918476326;192,0.025412847098611607;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0023929779280882878;66,0.0023830210929156282;67,0.002392366055535778;68,0.0024018222677109295;69,0.0023666117835528656;70,0.002352371840512638;71,0.0023886948202207193;72,0.002397706034175863;73,0.0023791829832680673;74,0.002389862940548238;75,0.002400876646493414;76,0.002404937255250979;77,0.0023527612139551445;78,0.002369170523317907;79,0.002377013616945532;80,0.002375845496618013;81,0.002398484781060876;82,0.00239436854752581;83,0.002383466091135636;84,0.0023773473656105376;85,0.0023657774118903525;86,0.0023769579921680316;87,0.0023754004983980066;88,0.0023758454966180138;89,0.002387637949448202;90,0.0023617168031327875;91,0.0023875823246707014;92,0.0023904748131007483;93,0.0023942016731933074;94,0.0024144490922036314;95,0.002456445799216803;96,0.002423627180491278;97,0.002384467337130652;98,0.0023592693129227483;99,0.0024018222677109295;100,0.0024182315770736916;101,0.002351815592737629;102,0.002360437433250267;103,0.0023609380562477746;104,0.002385079209683161;105,0.0023884723211107157;106,0.0023849123353506586;107,0.0023809073513705948;108,0.0024143378426486296;109,0.002387693574225703;110,0.002358156817372731;111,0.0023866367034531865;112,0.0023871929512281954;113,0.002391976682093272;114,0.002396593538625845;115,0.002388305446778213;116,0.002373620505517978;117,0.002394312922748309;118,0.0023776254894980423;119,0.0023706723923104306;120,0.002382297970808117;121,0.00236060430758277;122,0.0023726748843004627;123,0.0023779592381630472;124,0.0023639974190103243;125,0.002152790138839445;126,0.001186365254538982;127,0.00021493414026343895;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0009116901032395872;130,0.000920812566749733;131,0.0009301575293698825;132,0.0009195888216447135;133,0.0009377781238875045;134,0.0009159732111071555;135,0.0009150275898896406;136,0.0009004538981844073;137,0.0008942795478818085;138,0.0009144157173371307;139,0.0009382231221075116;140,0.0009161400854396584;141,0.0009376668743325028;142,0.0009296012815948737;143,0.0009245394268422927;144,0.000902122641509434;145,0.0009124132253470986;146,0.000923371306514774;147,0.0009405593627625489;148,0.0009184207013171947;149,0.0009068507475970097;150,0.0009237050551797793;151,0.00089249955500178;152,0.000900120149519402;153,0.0009232044321822713;154,0.0009357200071199715;155,0.0009268756674973299;156,0.0009124132253470987;157,0.0009061276254894981;158,0.000926430669277323;159,0.0009384456212175151;160,0.0009245394268422927;161,0.0009154169633321465;162,0.0008962264150943397;163,0.0009061276254894981;164,0.0009101882342470631;165,0.0009250400498398006;166,0.0009272094161623353;167,0.0009125244749021003;168,0.0008980064079743681;169,0.0009095207369170524;170,0.0009260412958348167;171,0.0009184207013171947;172,0.0008995639017443931;173,0.0008987295300818797;174,0.0008906639373442507;175,0.0008898851904592382;176,0.0009034020113919544;177,0.0009115788536845854;178,0.0008943907974368103;179,0.0008977282840868637;180,0.0008953364186543254;181,0.0008933339266642933;182,0.0008946132965468138;183,0.0009029570131719473;184,0.0008898851904592382;185,0.0008830433428266287;186,0.000905682627269491;187,0.0009008988964044145;188,0.0008961707903168388;189,0.0008924439302242791;190,0.0009089088643645426;191,0.0009111338554645781;192,0.0009123576005695977;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.0007063234247063012;2,0.0008966714133143468;3,0.0011183361516553933;4,0.001352738964044144;5,0.0015512081701673196;6,0.001722754983980064;7,0.001875945621217515;8,0.002067072356710573;9,0.00227939213243147;10,0.002495550017799929;11,0.0026736049305802773;12,0.0028509923460306166;13,0.003060809006763973;14,0.003301831167675329;15,0.0034985760056959773;16,0.0036533241367034536;17,0.003867368280526878;18,0.0041081679423282304;19,0.004324937700249199;20,0.004548104307582769;21,0.004682883143467426;22,0.004772717159131364;23,0.004970240744037024;24,0.005271560163759346;25,0.005544733446066215;26,0.005703597810608758;27,0.005818852349590602;28,0.006044355197579211;29,0.006282818618725526;30,0.006477338465646137;31,0.006682538269846921;32,0.0069312366500534;33,0.007159631986472054;34,0.00726376156995372;35,0.007466124510501958;36,0.007648518155927377;37,0.007820064969740121;38,0.008054634656461375;39,0.00826189257742969;40,0.008358401566393735;41,0.008495961641153436;42,0.00869053711285155;43,0.008962486650053399;44,0.009235270558917767;45,0.009572746084015663;46,0.009719873620505519;47,0.009877903613385548;48,0.010023251156995374;49,0.010022750533997864;50,0.00982061009255963;51,0.0096375489498042;52,0.00947862896048416;53,0.009307805268778925;54,0.009140875311498755;55,0.008889228818084727;56,0.008658997864008543;57,0.008431436899252404;58,0.008256552598789605;59,0.00807104396582414;60,0.007910733357066572;61,0.007699692951228196;62,0.007487428800284799;63,0.007349256852972589;64,0.007138272071911712;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0007609469562121752;66,0.0007437032751868994;67,0.000741311409754361;68,0.000728183962264151;69,0.0007504338732645069;70,0.0007445376468494127;71,0.0007488763794944822;72,0.0007383076717693129;73,0.0007237896048415808;74,0.0007376957992168032;75,0.0007501001245995016;76,0.0007415339088643646;77,0.0007289070843716626;78,0.0007208414916340336;79,0.0007355264328942684;80,0.0007396982912068351;81,0.0007504338732645069;82,0.0007565525987896049;83,0.0007333014417942329;84,0.0007462063901744393;85,0.0007323001957992169;86,0.0007232333570665718;87,0.0007452607689569242;88,0.0007440926486294054;89,0.0007384189213243147;90,0.0007411445354218583;91,0.000750433873264507;92,0.0007312433250266998;93,0.000750934496262015;94,0.0007684006763972944;95,0.0007551619793520827;96,0.0007573313456746174;97,0.0007476526343894625;98,0.0007356376824492702;99,0.0007440370238519046;100,0.0007601682093271627;101,0.0007518801174795301;102,0.0007435920256318976;103,0.0007492657529369884;104,0.0007538269846920614;105,0.0007559963510145961;106,0.0007662869348522606;107,0.0007536601103595587;108,0.0007592225881096476;109,0.0007512126201495194;110,0.0007259033463866145;111,0.0007414226593093628;112,0.0007740744037023854;113,0.0007593338376646493;114,0.0007657306870772517;115,0.0007434807760768957;116,0.0007660088109647562;117,0.0007563300996796013;118,0.0007584994660021359;119,0.0007589444642221432;120,0.0007471520113919545;121,0.0007424239053043789;122,0.00074687388750445;123,0.000764562566749733;124,0.0007523251156995373;125,0.0006841847632609471;126,0.00036067105731577074;127,0.0000550685297258811;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0005082435920256319;130,0.0005114698291206835;131,0.0005111917052331791;132,0.0004933917764328942;133,0.00048999866500534;134,0.0005106354574581703;135,0.0004935586507653969;136,0.0004992323780704877;137,0.000505128604485582;138,0.0005062411000356;139,0.0005108579565681736;140,0.0005209260412958349;141,0.000518812299750801;142,0.0005080210929156283;143,0.0005037936098255607;144,0.0004962842648629405;145,0.0005103017087931648;146,0.0005055179779280884;147,0.0004978417586329655;148,0.00048471431114275546;149,0.0004911667853328587;150,0.0004946155215379139;151,0.0005071310964756141;152,0.0005048504805980777;153,0.0004892199181203275;154,0.0004936142755428978;155,0.0005039048593805626;156,0.0005179779280882876;157,0.0005075204699181204;158,0.0005039604841580634;159,0.000497118636525454;160,0.00048031995372018507;161,0.0004898874154503382;162,0.000486939302242791;163,0.0004968405126379494;164,0.0005005117479530083;165,0.00048176619793520827;166,0.0004831011925952296;167,0.0004831568173727305;168,0.0004878292986828052;169,0.0005009567461730152;170,0.0004997330010679958;171,0.0004908886614453543;172,0.0004809318262726949;173,0.00048410243859024575;174,0.000487940548237807;175,0.0004892199181203275;176,0.0004916117835528659;177,0.0004815993236027056;178,0.0004996773762904949;179,0.0005003448736205056;180,0.0004982867568529727;181,0.0005017354930580278;182,0.0005110248309006764;183,0.0004971742613029547;184,0.0004990098789604842;185,0.00048527055891776433;186,0.000486994927020292;187,0.0004809318262726949;188,0.00048588243147027415;189,0.0004839911890352439;190,0.00047759433962264156;191,0.0004868836774652901;192,0.00048771804912780355;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.00041407084371662515;130,0.00041918832324670704;131,0.00042330455678177287;132,0.0004268645425418298;133,0.0004244170523317907;134,0.00040216714133143466;135,0.00039871840512637955;136,0.00041140085439658237;137,0.00041117835528657886;138,0.00040517087931648274;139,0.00040695087219651125;140,0.0004236939302242791;141,0.00042230331078675686;142,0.0004342626379494482;143,0.0004255295478818085;144,0.000424750800996796;145,0.00042180268778924893;146,0.00040528212887148453;147,0.0004041696333214667;148,0.00042263705945176227;149,0.0004076183695265219;150,0.00041718583125667497;151,0.0004160733357066572;152,0.00041707458170167324;153,0.00041807582769668925;154,0.00040528212887148453;155,0.0004146827162691349;156,0.00040683962264150946;157,0.00040556025275898894;158,0.00040355776076895697;159,0.0004043365076539694;160,0.00040711774652901387;161,0.00040633899964400143;162,0.0004047258810964756;163,0.0004199670701317195;164,0.0004256407974368103;165,0.0004226926842292631;166,0.0004298682805268779;167,0.0004163514595941617;168,0.0004154058383766465;169,0.000412123976504094;170,0.0004053377536489855;171,0.00039949715201139204;172,0.0003963265396938413;173,0.0004056715023139907;174,0.0003991077785688858;175,0.0004053377536489854;176,0.0003892065681737273;177,0.0004167408330366679;178,0.0004041696333214668;179,0.00039877402990388044;180,0.0004006652723389107;181,0.0004105108579565682;182,0.00040294588821644715;183,0.0004092871128515486;184,0.0004026677643289428;185,0.0004135702207191171;186,0.0004092871128515486;187,0.0004043365076539694;188,0.0004027790138839445;189,0.0004093427376290495;190,0.00039237718049127813;191,0.00039282217871128516;192,0.00039009656461374154;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.000257876468494126;2,0.0003108312566749733;3,0.0003690703987184052;4,0.0004411601103595585;5,0.0005207591669633321;6,0.000586563278746885;7,0.0006311187255250979;8,0.0007320220719117124;9,0.0008325916696333215;10,0.0008748665005339979;11,0.0009037913848344608;12,0.0009654236383054469;13,0.0010282240121039514;14,0.0011183361516553933;15,0.0011887014951940194;16,0.0012371506763972943;17,0.0013264840690637237;18,0.0013970162869348522;19,0.0014434073513705944;20,0.001497363385546458;21,0.0015621106265574936;22,0.0016478284086863654;23,0.0017493992524029904;24,0.001827107066571734;25,0.0018636525453898183;26,0.001899308027767889;27,0.00198875266998932;28,0.0021079565681737275;29,0.0021678088287646847;30,0.0021861093805624777;31,0.002227382965468138;32,0.0022724390352438593;33,0.0023915873086507652;34,0.002469239498042008;35,0.002503337486650053;36,0.002519246173015308;37,0.0026111383054467784;38,0.0026722143111427557;39,0.002733512815948736;40,0.0028068818974724104;41,0.0028674016553933788;42,0.0028712397650409397;43,0.0028872040761836956;44,0.00296062878248487;45,0.0030599746351014593;46,0.003088677020291919;47,0.003159431737273051;48,0.0032384189213243153;49,0.0032794700071199713;50,0.0032804712531149874;51,0.0032547726059095764;52,0.00313312121751513;53,0.003053244037023852;54,0.00300996796012816;55,0.002894769045923816;56,0.002808439391242435;57,0.002732289070843717;58,0.002666039960840157;59,0.0025900008899964405;60,0.002577763438946244;61,0.002538381096475614;62,0.002511124955500178;63,0.002422681559273763;64,0.002349701851192595;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.008132843093627625;66,0.008070932716269137;67,0.0079436076005696;68,0.007765330188679245;69,0.007476415094339623;70,0.007228773584905661;71,0.007192450605197579;72,0.007142110181559275;73,0.007045100569597722;74,0.0068272739409042365;75,0.006601715468138128;76,0.00640814124243503;77,0.0063143578675685305;78,0.006229919455322179;79,0.006150987896048415;80,0.006041518333926665;81,0.0058893845674617305;82,0.005717726504093984;83,0.005474534976860093;84,0.00529253070487718;85,0.005208926664293343;86,0.005097398985404058;87,0.004906049750800996;88,0.004739231043075828;89,0.004591046635813457;90,0.004424116678533286;91,0.004275042274830901;92,0.004109002313990744;93,0.0040038158597365614;94,0.003879605731577074;95,0.0037001601993592024;96,0.0035757275720897114;97,0.0034432293520825917;98,0.0032609469562121757;99,0.0030645358668565325;100,0.002895547792808829;101,0.0027212197401210395;102,0.0025756496974012103;103,0.0024163959594161624;104,0.0023129338732645072;105,0.002163636970452118;106,0.002016731933072268;107,0.001870939391242435;108,0.001725869971520114;109,0.0015520981666073339;110,0.0014080856176575294;111,0.0012787023851904592;112,0.0011401410644357422;113,0.0009806648273406908;114,0.0008233023317906728;115,0.0006374599501601994;116,0.00048565993236027047;117,0.00035978106087575647;118,0.0002254472232111072;119,0.00010112584549661802;120,0.00002909175863296547;121,0.0000022806158775364905;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0004560675507297971;66,0.0004472232111071556;67,0.00045122819508721973;68,0.0004385457458170168;69,0.0004218026877892488;70,0.0004191883232467071;71,0.0004401032395870417;72,0.00046552376290494833;73,0.00048616055535777867;74,0.0004815436988252047;75,0.0004817105731577074;76,0.00048104307582769667;77,0.00048043120327518696;78,0.0005010123709505163;79,0.0005392265930936277;80,0.0005518534175863297;81,0.0005217047881808473;82,0.0005175329298682805;83,0.0005289916340334639;84,0.0005302710039159844;85,0.0005343316126735493;86,0.0005342759878960485;87,0.0005484603061587756;88,0.000543064702741189;89,0.0005476815592737629;90,0.0005494615521537914;91,0.0005494059273762905;92,0.000561810252758989;93,0.000593683250266999;94,0.0006172125311498754;95,0.0006135969206123175;96,0.0006176575293698825;97,0.0006062544499822;98,0.0006134856710573158;99,0.0006453586685653258;100,0.0006581523673905305;101,0.0006455255428978285;102,0.0006411311854752581;103,0.0006695554467782128;104,0.0006827385190459239;105,0.0006641042185831256;106,0.000658430491278035;107,0.0006756185475258099;108,0.0007045434318262727;109,0.0007289070843716626;110,0.0007516019935920256;111,0.0007347476860092559;112,0.000739308917764329;113,0.000746373264506942;114,0.0007286845852616589;115,0.000695754716981132;116,0.0006935297258810966;117,0.0006944753470986117;118,0.0007162246351014597;119,0.000719117123531506;120,0.0006939747241011037;121,0.0006865210039159843;122,0.0007130540227839087;123,0.0007300752046991812;124,0.0007233446066215736;125,0.0007187833748665007;126,0.000713554645781417;127,0.0007002603239587043;128,0.0007068796724813101;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0012183495016019935;66,0.0012097832858668565;67,0.0011950427198291207;68,0.0011929846030615879;69,0.0012209082413670346;70,0.0012085595407618371;71,0.0012091157885368458;72,0.0012114520291918833;73,0.0012300307048771805;74,0.0012529481132075473;75,0.0012102839088643648;76,0.0012070020469918123;77,0.001228250711997152;78,0.0012360381808472769;79,0.0012141776432894268;80,0.0012141220185119261;81,0.0012017733179067284;82,0.0012118414026343898;83,0.0012147338910644357;84,0.0012040539337842648;85,0.001217737629049484;86,0.0012304757030971876;87,0.0012343694375222497;88,0.0012195176219295123;89,0.0012256363474546102;90,0.001212564524741901;91,0.0012138995194019226;92,0.0012158463866144536;93,0.0012083926664293344;94,0.0012015508187967249;95,0.0012120082769668922;96,0.001202885813456746;97,0.00119498709505162;98,0.0012094495372018512;99,0.0012258032217871131;100,0.0012411000355998577;101,0.0012369838020647918;102,0.001213287646849413;103,0.00119626646493414;104,0.001189313367746529;105,0.0012005495728017088;106,0.0012248019757920966;107,0.0012130651477394092;108,0.0012100614097543612;109,0.0012049995550017802;110,0.0012095051619793523;111,0.001215790761836953;112,0.0012154013883944464;113,0.0012184051263794946;114,0.0012273050907796368;115,0.0012518356176575295;116,0.0012361494304022787;117,0.0012258588465646136;118,0.0012188501245995013;119,0.0012120082769668922;120,0.0012350925596297615;121,0.0012189057493770025;122,0.0012419900320398717;123,0.001241934407262371;124,0.0012194063723745103;125,0.001120060519757921;126,0.0006196600213599147;127,0.00010629894980420079;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0023855798326806697;66,0.00228250711997152;67,0.002246629138483446;68,0.0022171480064079744;69,0.0021357133321466713;70,0.002037869348522606;71,0.0019586596653613387;72,0.0019890307938768247;73,0.0019068173727305093;74,0.0018004071733713064;75,0.0017230331078675683;76,0.001655170879316483;77,0.001560497508009968;78,0.0014793965824136703;79,0.001443629850480598;80,0.0013897294410822355;81,0.0012964466892132433;82,0.0011818040227839087;83,0.0011042630829476683;84,0.0010639907440370237;85,0.0010209927910288358;86,0.000968371751512994;87,0.0008982845318618727;88,0.0008370416518333928;89,0.0007591113385546458;90,0.000683183517265931;91,0.0006041963332146672;92,0.000536445354218583;93,0.00046836062655749384;94,0.0003872597009611962;95,0.0003022094161623354;96,0.00023779592381630474;97,0.00018495238519045923;98,0.00011581078675685296;99,0.00005517977928088288;100,0.0000161311854752581;101,0.00000127936988252047;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.007891598433606265;66,0.007770558917764329;67,0.007612973923104309;68,0.007529759255962977;69,0.007449492702029193;70,0.00727750088999644;71,0.007080199804200783;72,0.00697746084015664;73,0.006821322089711642;74,0.006631530348878605;75,0.0064217693129227475;76,0.006278758009967961;77,0.006193429601281595;78,0.006076617568529726;79,0.005949904325382699;80,0.005831924172303311;81,0.005693307226771093;82,0.005539838465646137;83,0.005349768600925597;84,0.00519307360270559;85,0.0051598656105375585;86,0.0050484491812032755;87,0.004824781950872197;88,0.004565292363830545;89,0.004443974724101104;90,0.004325660822356711;91,0.0041646827162691346;92,0.004032073246707013;93,0.003923883054467782;94,0.0037759767710929155;95,0.0035723344606621577;96,0.0034335506407974373;97,0.0033291429334282663;98,0.003188801619793521;99,0.003060308383766465;100,0.0029430513527945886;101,0.0027925863296546817;102,0.002650186899252403;103,0.002455444553221787;104,0.0022852883588465648;105,0.0021704788180847276;106,0.0020447111961552156;107,0.0019080411178355287;108,0.001718861249555002;109,0.0015455900676397297;110,0.0013494014773940905;111,0.0011914827340690636;112,0.001045245194019224;113,0.0009363875044499823;114,0.0008059474012103952;115,0.000634122463510146;116,0.0004891642933428266;117,0.0003603929334282663;118,0.00023023095407618372;119,0.00009890085439658242;120,0.00002430802776788893;121,0.0000007231221075115699;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.000014963065147739409;2,0.000025086774652901392;3,0.00003565548237807048;4,0.00004271982912068352;5,0.00004600169099323603;6,0.000048616055535777864;7,0.00005440103239587043;8,0.00006424661801352795;9,0.00007564969740121041;10,0.00008004405482378071;11,0.00008543965824136705;12,0.00009194775720897116;13,0.00009522961908152368;14,0.00010585395158419368;15,0.00011614453542185832;16,0.00010969206123175506;17,0.00009628648985404058;18,0.00011024830900676396;19,0.0001263794944820221;20,0.00014662691349234602;21,0.00015057627269490922;22,0.00015224501601993594;23,0.00014951940192239232;24,0.00015953186187255252;25,0.0001589756140975436;26,0.00016331434674261304;27,0.00017544054823780705;28,0.00019090423638305447;29,0.00019824670701317192;30,0.00020764729441082237;31,0.00021059540761836956;32,0.0002095941616233535;33,0.00021387726949092205;34,0.00022333348166607333;35,0.0002307315770736917;36,0.0002407440370238519;37,0.00022121974012103953;38,0.00022411222855108582;39,0.0002369615521537914;40,0.0002560408508365967;41,0.0002578208437166252;42,0.00025960083659665363;43,0.0002568195977216091;44,0.000274563901744393;45,0.0003014306692773229;46,0.00031338999644001423;47,0.00031094250622997507;48,0.0002970919366322535;49,0.0002757876468494126;50,0.0002769001423994304;51,0.00029503381986472054;52,0.00030749377002491996;53,0.00032406995372018515;54,0.0003421480064079744;55,0.0003482111071555714;56,0.000351937967248131;57,0.000361561053755785;58,0.0003651766642933428;59,0.0003561098255606978;60,0.00034570799216803133;61,0.0003536623353506586;62,0.00038648095407618375;63,0.00043454076183695265;64,0.00045083882164471343;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "actuallyadditions:black_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.0012998954254182984;130,0.0013052910288358847;131,0.0012968916874332504;132,0.0012867679779280882;133,0.0012990610537557848;134,0.0013278746885012462;135,0.0012962798148807404;136,0.0012823179957280172;137,0.001280871751512994;138,0.0012931648273406908;139,0.0012978373086507654;140,0.00126312744749021;141,0.0012669655571377716;142,0.0012942773228907087;143,0.0012983379316482734;144,0.001288826094695621;145,0.0012902167141331435;146,0.001308684140263439;147,0.001283931114275543;148,0.001296446689213243;149,0.001280816126735493;150,0.0012972810608757566;151,0.0012949448202207192;152,0.001290995461018156;153,0.001278257386970452;154,0.0013025654147383412;155,0.0012951116945532216;156,0.0012872686009255964;157,0.0012819286222855108;158,0.0012814836240655036;159,0.0012962798148807406;160,0.0013039560341758633;161,0.0012852104841580634;162,0.0012788136347454612;163,0.0013004516731933073;164,0.0012882698469206125;165,0.0012968360626557495;166,0.001293498576005696;167,0.0012671324314702742;168,0.0012911623353506585;169,0.00131686098255607;170,0.001306125400498398;171,0.0013190859736561052;172,0.0013076272694909222;173,0.001306737273050908;174,0.0012683561765752937;175,0.0012971141865432538;176,0.0013116878782484871;177,0.0013149141153435385;178,0.001309629761480954;179,0.0012723611605553577;180,0.0012811498754004987;181,0.0012840979886080458;182,0.0012978929334282665;183,0.0012941104485582056;184,0.0012941660733357067;185,0.0012948891954432185;186,0.0013013972944108223;187,0.0013044566571733716;188,0.0013028991634033466;189,0.0013015641687433251;190,0.0013097966358134568;191,0.0012949448202207192;192,0.0013151366144535423;193,0.001317361605553578;194,0.00131124288002848;195,0.0012887704699181203;196,0.0012948335706657174;197,0.0012965023139907442;198,0.001276755517977928;199,0.0012766442684229266;200,0.0013066816482734068;201,0.0012926085795656817;202,0.0012789805090779637;203,0.0012984491812032752;204,0.0012932204521181915;205,0.0012894935920256317;206,0.0012896604663581346;207,0.0012868236027055893;208,0.0012725836596653613;209,0.0012782017621929512;210,0.0012728617835528657;211,0.0012747530259878963;212,0.0013013416696333216;213,0.00130250978996084;214,0.0013141353684585264;215,0.0012962241901032395;216,0.0013037335350658597;217,0.001323313456746173;218,0.0013039560341758633;219,0.0012874354752580991;220,0.001294444197223211;221,0.0012963354396582415;222,0.0012831523673905304;223,0.0012885479708081168;224,0.0012823179957280172;225,0.0013070153969384122;226,0.001295445443218227;227,0.001267799928800285;228,0.0012696911712353153;229,0.0012815948736205056;230,0.0012941660733357067;231,0.001290995461018156;232,0.0012978929334282662;233,0.0013158597365610539;234,0.0013133009967960128;235,0.0012939991990032042;236,0.0012948891954432183;237,0.0013108535065859735;238,0.0013298771804912783;239,0.00130562477750089;240,0.001291551708793165;241,0.0012986160555357776;242,0.0012968916874332504;243,0.0013064035243859024;244,0.001298671680313279;245,0.0012761436454254184;246,0.0012741967782128874;247,0.0012837086151655393;248,0.0012953341936632256;249,0.0012953898184407263;250,0.0012990054289782843;251,0.0013039004093983624;252,0.0012963354396582413;253,0.0012811498754004985;254,0.0012807605019579922;255,0.0012884923460306159;256,0.0013019535421858312;257,0.0012981154325382698;258,0.001292942328230687;259,0.0012982266820932716;260,0.0012817061231755072;261,0.0013039560341758633;262,0.001170234069063724;263,0.0006424661801352795;264,0.00012165138839444642;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.0008830989676041295;194,0.0009043476326094696;195,0.0008912201851192596;196,0.0009138594695621218;197,0.0009249288002847989;198,0.0009002313990744038;199,0.0008767577429690282;200,0.0008806514773940905;201,0.0008738096297614809;202,0.0008752558739765041;203,0.0008949470452118192;204,0.0008915539337842649;205,0.0009049595051619794;206,0.0008869927020291919;207,0.0008740877536489854;208,0.0009098544855820577;209,0.0008932783018867924;210,0.0008725302598789605;211,0.000889495817016732;212,0.0009104663581345675;213,0.0009114119793520825;214,0.0008957814168743326;215,0.0008852127091491635;216,0.0008833770914916341;217,0.000885379583481666;218,0.0008877158241367036;219,0.0009054601281594874;220,0.0008897739409042364;221,0.0008870483268066929;222,0.0009083526165895337;223,0.000901121395514418;224,0.0009015107689569243;225,0.0008835439658241368;226,0.0008911089355642578;227,0.0009010101459594162;228,0.0009057938768244928;229,0.0009138594695621218;230,0.0009247619259522961;231,0.0009326606443574228;232,0.0008948357956568174;233,0.0008962264150943395;234,0.0009116344784620862;235,0.0009070732467070131;236,0.0008968939124243504;237,0.0008976726593093629;238,0.0009144713421146315;239,0.0009141932182271272;240,0.0009146938412246351;241,0.0009232600569597722;242,0.0009114119793520826;243,0.0008964489142043432;244,0.000907184496262015;245,0.0009178088287646849;246,0.0009109113563545747;247,0.0009158619615521539;248,0.0009235381808472767;249,0.0009168075827696688;250,0.0009025120149519401;251,0.0008970051619793522;252,0.0009086307404770381;253,0.00091625133499466;254,0.0009245394268422928;255,0.0009385568707725169;256,0.0009418387326450695;257,0.0009211463154147385;258,0.000912691349234603;259,0.0009285444108223567;260,0.0009148607155571378;261,0.0008960595407618369;262,0.0009055713777144892;263,0.0008902189391242436;264,0.0008838220897116411;265,0.0009149719651121396;266,0.0009193663225347098;267,0.0009229263082947669;268,0.0009047370060519757;269,0.0008946689213243147;270,0.0009210350658597367;271,0.0009324381452474192;272,0.0009308806514773941;273,0.0009154169633321466;274,0.0009050707547169812;275,0.0009054045033819865;276,0.0009267087931648275;277,0.0009209794410822356;278,0.0009304912780348878;279,0.0009176419544321823;280,0.0009238163047347811;281,0.000917808828764685;282,0.0009077407440370238;283,0.0009252069241723034;284,0.0009258744215023139;285,0.0009015107689569242;286,0.0009084082413670345;287,0.0009193663225347099;288,0.0009392799928800285;289,0.0009222588109647562;290,0.0009128582235671057;291,0.000922314435742257;292,0.0009242613029547884;293,0.0009034576361694553;294,0.0008946132965468138;295,0.0009046813812744749;296,0.0009072401210395159;297,0.0009208681915272339;298,0.0009279325382698471;299,0.0009053488786044857;300,0.0008987295300818797;301,0.0009065726237095052;302,0.0009052932538269848;303,0.0008883276966892132;304,0.0008950026699893201;305,0.000902623264506942;306,0.0009218138127447492;307,0.0009191438234247063;308,0.0009094651121395514;309,0.0009259300462798149;310,0.0009186432004271983;311,0.0009138038447846209;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0.006135969206123176;130,0.006015374688501246;131,0.0059181982022071915;132,0.005911690103239588;133,0.005735081434674261;134,0.0055684296012815954;135,0.0055949626201495205;136,0.005581557048771805;137,0.005514084193663225;138,0.0053969940370238514;139,0.005309218138127448;140,0.005243414026343895;141,0.0051224301352794585;142,0.005082435920256319;143,0.005017855553577786;144,0.004903324136703453;145,0.00477866901032396;146,0.0046783775364898535;147,0.004627536489854041;148,0.004539927465290139;149,0.004408263616945533;150,0.0043333926664293355;151,0.004269034798860805;152,0.004193051352794589;153,0.0041117279280882876;154,0.004038915094339623;155,0.003919433072267711;156,0.0037989498042007835;157,0.0036829165183339266;158,0.0035913025097899613;159,0.003460306158775365;160,0.003340991011035956;161,0.003296546813812745;162,0.003296658063367747;163,0.0032629494482022074;164,0.0031827385190459244;165,0.0030355553577785686;166,0.002905671502313991;167,0.002808272516909933;168,0.0027116522783908865;169,0.002604630206479174;170,0.00253871484514062;171,0.0024607289070843717;172,0.0023824092203631186;173,0.002318218227127092;174,0.0022091380384478463;175,0.0020987228551085798;176,0.0020587286400854396;177,0.00200060074759701;178,0.00189686053755785;179,0.0018227683339266643;180,0.0017356043075827698;181,0.0016442127981488074;182,0.0015536000355998575;183,0.0014595385368458527;184,0.0013983512815948737;185,0.001314914115343539;186,0.0012213532395870417;187,0.0011457591669633321;188,0.0010519757920968318;189,0.0009747686009255964;190,0.0009074069953720186;191,0.0008230798326806694;192,0.0007260702207191171;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0.000023174672926308296;194,0.00002303561098255607;195,0.000022945220719117125;196,0.00002253498798504806;197,0.000018432660644357422;198,0.000019197501334994663;199,0.000020393434051263796;200,0.000017302782351370595;201,0.00002018657940993236;202,0.000022423738430046282;203,0.000020928822534709862;204,0.000019891072779458885;205,0.000018058931670523318;206,0.000018599534976860096;207,0.00001819625533997864;208,0.000020316949982200072;209,0.000017062900498398007;210,0.000014351192595229619;211,0.000015394157173371308;212,0.000016145091669633322;213,0.000018884611961552156;214,0.00001881508098967604;215,0.000014267755428978284;216,0.000014434629761480956;217,0.000014677988163047349;218,0.00001207057671769313;219,0.000012258310341758636;220,0.000014824003203987188;221,0.000012863229797080812;222,0.000011500422748309007;223,0.000013050963421146316;224,0.000012849323602705591;225,0.000011006752847988609;226,0.000011126693774474903;227,0.000011323118770024919;228,0.000010375759278212889;229,0.000007250342092381631;230,0.000006528958259166964;231,0.000010520036044855822;232,0.000010596520113919545;233,0.000009219806870772515;234,0.000009039026343894625;235,0.000009942928978284086;236,0.000008406294499822;237,0.000008373267288180849;238,0.000009049455989676042;239,0.000007844831901922391;240,0.000006744504271982912;241,0.000007919577696689212;242,0.000007106065325738697;243,0.000006911378604485582;244,0.000005298260056959773;245,0.0000068001290494838025;246,0.000004950605197579209;247,0.000004522989720541118;248,0.000004522989720541118;249,0.00000495060519757921;250,0.000003921546813812745;251,0.000002586552153791385;252,0.00000189124243503026;253,0.0000028090512637949453;254,0.0000034070176219295124;255,0.000001508822089711641;256,0.00000161311854752581;257,0.0000011124955500177999;258,0.00000022249911000355996;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.00046824937700249206;2,0.0006013038447846208;3,0.0007650075649697401;4,0.0009467893378426488;5,0.0010729463332146672;6,0.0011446466714133143;7,0.0013030104129583484;8,0.001445187344250623;9,0.0015502069241723033;10,0.0016847076361694554;11,0.0018773362406550374;12,0.002054834905660377;13,0.002173371306514774;14,0.002303032662869349;15,0.0024399808650765395;16,0.0025834371662513357;17,0.0026728261836952653;18,0.0027739520291918834;19,0.0028741878782484872;20,0.0030185898006407975;21,0.003140908686365255;22,0.003338988519045924;23,0.0036284598611605557;24,0.003821366589533642;25,0.003992079031683873;26,0.004063556870772517;27,0.004174138928444286;28,0.00420122819508722;29,0.004319430847276611;30,0.004514228818084728;31,0.004659910110359559;32,0.004799695176219295;33,0.004937477750089;34,0.0050387148451406195;35,0.005114587041651833;36,0.005307660644357422;37,0.0054695843716625146;38,0.005571544588821644;39,0.00577190503737985;40,0.0059926241545033825;41,0.006045133944464223;42,0.006073446956212175;43,0.006180413403346388;44,0.006357133321466714;45,0.006454643556425775;46,0.006567839978640085;47,0.006794733446066216;48,0.007006552598789604;49,0.007158575115699538;50,0.007264429067283732;51,0.007374621751512995;52,0.007415672837308651;53,0.007500667497330011;54,0.007601014595941617;55,0.0077939769490922035;56,0.007989275542897828;57,0.00809296012815949;58,0.008062644624421505;59,0.008083337041651834;60,0.00808506140975436;61,0.008029659131363477;62,0.008000177999288004;63,0.00785054734781061;64,0.007641565058739765;", + "silktouch": false, + "dim": "allthemodium:mining" + }, + { + "block": "allthemodium:vibranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0000004449982200071199;66,0.0000022249911000355997;67,0.0000036156105375578493;68,0.00000417185831256675;69,0.00000862184051263795;70,0.00001457369170523318;71,0.000020970541117835528;72,0.00001273807404770381;73,0.000012626824492702028;74,0.000014629316482734071;75,0.00001245995016019936;76,0.000011875889996440014;77,0.000011764640441438236;78,0.000019273985404058383;79,0.000020261325204699183;80,0.000010492223656105375;81,0.000011020659042363832;82,0.00001191065548237807;83,0.00001106933072267711;84,0.00001173682805268779;85,0.000011653390886436454;86,0.000021276477394090423;87,0.000019607734069063724;88,0.000009623086507653968;89,0.000008635746707013172;90,0.000009073791829832683;91,0.00000984558561765753;92,0.000009789960840156639;93,0.000013746273139907441;94,0.00001807805268778925;95,0.00001807805268778925;96,0.00000956746173015308;97,0.00000956746173015308;98,0.00001090245639017444;99,0.000012543387326450694;100,0.000010019413047347812;101,0.000009824726326094695;102,0.000015129939480242081;103,0.000013961819152723389;104,0.000007370283018867925;105,0.00000584060163759345;106,0.0000048393556425774304;107,0.00000378248487006052;108,0.00000322623709505162;109,0.0000027812388750444995;110,0.00000266998932004272;111,0.0000020024919900320397;112,0.00000105687077251691;113,0.00000133499466002136;114,0.0000005006229975080099;115,0.00000011124955500177998;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.00017772116411534354;2,0.00023459749911000362;3,0.00030919032573869707;4,0.00037891598433606265;5,0.00040686743503025985;6,0.00041529458882164473;7,0.00048582680669277326;8,0.0005563312121751513;9,0.0005855342203631186;10,0.0006396015040939836;11,0.0007146115165539339;12,0.0007796646938412247;13,0.0008079498932004272;14,0.0008605153079387681;15,0.000894196110715557;16,0.000953186187255251;17,0.0010418520825916698;18,0.0010986449804200784;19,0.0011051530793876824;20,0.0011137192951228194;21,0.0011627803488786044;22,0.001235676619793521;23,0.001264935252758989;24,0.0013124110003559985;25,0.0014009100213599143;26,0.0015005896226415096;27,0.0015209204788180848;28,0.0015671446689213243;29,0.0016268022427910291;30,0.0016963054022783909;31,0.0017337408775364898;32,0.0017671435564257745;33,0.0018176786667853328;34,0.0018306114275542897;35,0.001895497730509078;36,0.0019892254805980777;37,0.0020529714756140974;38,0.0020971931737273053;39,0.0021106543698825204;40,0.0021537357600569596;41,0.002208998976504094;42,0.0022647628159487366;43,0.0023659999110003565;44,0.0024459327162691348;45,0.0024942984603061585;46,0.00252372396760413;47,0.002532679556781773;48,0.0024999721876112495;49,0.0026012092826628694;50,0.002677971475614098;51,0.0027387137326450694;52,0.0028058528390886434;53,0.002851492969028124;54,0.0029095374243503025;55,0.0029735337308650764;56,0.002962992835528658;57,0.0030169210573157707;58,0.003118992524029904;59,0.0032467626379494487;60,0.0033004683606265577;61,0.003309201450694197;62,0.0033277523139907447;63,0.003388800507297971;64,0.0034430902901388402;65,0.0030860626557493768;66,0.0026489909665361336;67,0.0022412613474546107;68,0.0018671569063723747;69,0.0014235493058027768;70,0.0009485415183339267;71,0.0004722543609825561;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0.00000116812032751869;47,0.00000383810964756141;48,0.00000545122819508722;49,0.00001090245639017444;50,0.00000928933784264863;51,0.000013572445710217159;52,0.00001385056959772161;53,0.00001885679957280171;54,0.000021415539337842654;55,0.000023863029547881806;56,0.00002692239231043076;57,0.000026672080811676752;58,0.00003318017977928089;59,0.00003254049483802065;60,0.00003799172303310787;61,0.00003982734069063724;62,0.000044555446778212885;63,0.00004694731221075116;64,0.000045501067995728016;65,0.00004157952118191527;66,0.000038826094695621215;67,0.00003426486294054824;68,0.000027868013527945885;69,0.000021916162335350662;70,0.000015769624421502315;71,0.000008093405126379494;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0.00000016687433250267;61,0.000011180580277678889;62,0.00004659270425418298;63,0.00012141324481577075;64,0.00020285661044855822;65,0.00023612891876557496;66,0.0002649860103684586;67,0.00027345314446867216;68,0.00025410093672125313;69,0.0002112420456568174;70,0.000157359019001424;71,0.00009214244393022429;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.00020775854396582415;2,0.0002677776788892845;3,0.0003245705767176932;4,0.00039632653969384117;5,0.00046680313278746896;6,0.0005360559807760769;7,0.000573185519757921;8,0.0006333159042363831;9,0.000728434273762905;10,0.0008106755072979708;11,0.0008738930669277324;12,0.0008913870594517623;13,0.0009447868458526167;14,0.0010159309362762548;15,0.0010869637771448917;16,0.001143867924528302;17,0.0012043320576717695;18,0.0012948613830544677;19,0.0014063890619437523;20,0.0014899096653613385;21,0.0015607756318974724;22,0.0016380940726237094;23,0.001664738341046636;24,0.0016301953542185834;25,0.001622046324314703;26,0.0016657952118191528;27,0.0017604963955144182;28,0.0018748887504449981;29,0.0019262026076895694;30,0.001998292319330723;31,0.0020637626824492705;32,0.0020850669722321112;33,0.0021092915628337485;34,0.0022146727038091854;35,0.002300362673549306;36,0.002392644179423283;37,0.0025040327963688144;38,0.002604129583481666;39,0.002629939480242079;40,0.0026170623442506235;41,0.002684062388750445;42,0.0027352928088287647;43,0.0027518968049127807;44,0.0028484336062655755;45,0.002939936365254539;46,0.0029931414649341406;47,0.0030241522783908863;48,0.003037085039159843;49,0.003092070131719473;50,0.003040450338198647;51,0.0030310775631897475;52,0.0030324959950160197;53,0.0029753415361338555;54,0.002874688501245995;55,0.002754288670345319;56,0.0026261569953720185;57,0.0025539282217871126;58,0.0025797103061587752;59,0.002549811988252047;60,0.002485175996796013;61,0.0024264640441438237;62,0.0023152423015307937;63,0.0022151177020291917;64,0.0021519835795656816;65,0.0018317239231043078;66,0.001542808828764685;67,0.001261319642221431;68,0.0009957669544321825;69,0.0007232611694553222;70,0.00047078030437878245;71,0.0002229441082235671;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0.00000061187255250979;2,0.00000183561765752937;3,0.00000144624421502314;4,0.0000018356176575293698;5,0.00000172436810252759;6,0.0000022249911000356;7,0.0000031149875400498398;8,0.0000025031149875400496;9,0.0000023362406550373795;10,0.00000433873264506942;11,0.0000027812388750445;12,0.00000417185831256675;13,0.0000043943574225703095;14,0.00000372686009255963;15,0.0000033931114275542897;16,0.000005562477750089001;17,0.000006598489231043077;18,0.0000057641175685297266;19,0.000004004983980064079;20,0.000004255295478818085;21,0.00000461685653257387;22,0.000005479040583837665;23,0.000006528958259166962;24,0.000009094651121395514;25,0.00000645247419010324;26,0.00000634122463510146;27,0.0000072312210751156986;28,0.000006504622419010324;29,0.000008562739186543254;30,0.000006628039894090424;31,0.000004429122908508366;32,0.000008686156661623352;33,0.000007119971520113919;34,0.00000756496974012104;35,0.00000917808828764685;36,0.00001151432894268423;37,0.00001323869704521182;38,0.0000100124599501602;39,0.0000066749733001068;40,0.000009066838732645068;41,0.00000912246351014596;42,0.000010902456390174439;43,0.000011540403057137773;44,0.000010427907507119972;45,0.000011013705945176218;46,0.000013598519824670702;47,0.000014775331523673905;48,0.000012858014974190105;49,0.00001247733290316839;50,0.00001270852338465646;51,0.00001229307582769669;52,0.00001273807404770381;53,0.000014629316482734068;54,0.00001479619081523674;55,0.000013982678444286224;56,0.000016541418209327164;57,0.00001512993948024208;58,0.000013906194375222496;59,0.000014351192595229619;60,0.00001518556425774297;61,0.000016798682805268778;62,0.00001729930580277679;63,0.000017688679245283023;64,0.000019496484514061946;65,0.000014434629761480954;66,0.000012143584238163049;67,0.00001092853050462798;68,0.000007815281238875045;69,0.000006024858713065148;70,0.000005301736605553578;71,0.0000015018689925240298;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.0001413425596297615;2,0.00016882119971520113;3,0.00019769045923816305;4,0.00024552776788892844;5,0.00029319820220719125;6,0.00032751868992524026;7,0.00036873665005339977;8,0.00038442283730865084;9,0.00040378025987896043;10,0.0004530638127447491;11,0.0005103573335706658;12,0.0005457068796724813;13,0.0005648139907440371;14,0.0006081735048059807;15,0.0006586808027767889;16,0.0006941972232111073;17,0.0007315214489142044;18,0.000787174038803845;19,0.0008322301085795657;20,0.0008399897650409399;21,0.0008255273228907085;22,0.0008611549928800285;23,0.0009318540850836597;24,0.0009825560697757209;25,0.0010202974813100746;26,0.001056676085795657;27,0.001131435786756853;28,0.0011452029191883232;29,0.0011159442862228553;30,0.0011420601192595231;31,0.0012011336329654683;32,0.0012534209238163048;33,0.0012910510857956567;34,0.0013101581968672127;35,0.0013558261391954434;36,0.0014054156283374868;37,0.0014393467426130294;38,0.001466185697757209;39,0.0014798137682449273;40,0.0014797303310786756;41,0.0015651143645425418;42,0.0016493859024563902;43,0.0017414449092203635;44,0.0017435308383766466;45,0.001717248131007476;46,0.0017679223033107868;47,0.0018622897383410468;48,0.0019189713866144536;49,0.0019232823068707728;50,0.0019521515663937345;51,0.002014868503025988;52,0.002049244615521538;53,0.002094272872908508;54,0.002116133410466358;55,0.002116328097187611;56,0.0021372708259166963;57,0.0022081646048415808;58,0.0022835639907440373;59,0.002303310786756853;60,0.0023440559362762556;61,0.002358991189035244;62,0.0024231543698825207;63,0.0024380896226415096;64,0.0024229874955500183;65,0.00216747508009968;66,0.0019102382965468139;67,0.0016414871840512639;68,0.0013127169366322535;69,0.0009970741367034532;70,0.0006672192061231756;71,0.00034186988252046997;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.000057349145603417584;2,0.00007097721609113563;3,0.00008783152367390531;4,0.00010632676219295123;5,0.00012457168921324314;6,0.00014584816660733358;7,0.00016865432538269845;8,0.0001877058116767533;9,0.00020033263616945534;10,0.0002255306603773585;11,0.00024180090779636886;12,0.0002485036934852261;13,0.00025378804734781064;14,0.0002638561320754717;15,0.00027097610359558564;16,0.00029230820576717697;17,0.0003081056425774297;18,0.0003275186899252403;19,0.00036211730153079395;20,0.00038675907796368816;21,0.00039888527945888217;22,0.00042514017443930226;23,0.0004552609914560342;24,0.00047336685653257384;25,0.00048538180847276617;26,0.0004787068351726593;27,0.00050562922748309;28,0.00053374755250979;29,0.0005302988163047349;30,0.0005298816304734781;31,0.0005512971698113209;32,0.000587620149519402;33,0.000618436276254895;34,0.0006276421769312923;35,0.0006209950160199359;36,0.0006614342292630829;37,0.0007010112584549664;38,0.0007363051797792809;39,0.0007505729352082593;40,0.0007525476148095408;41,0.0007562744749021004;42,0.0007544666696333215;43,0.0007764384567461731;44,0.000789120906016376;45,0.0007993002402990388;46,0.0008435775631897473;47,0.0008896348789604841;48,0.000896059540761837;49,0.0009020670167319332;50,0.0008973945354218583;51,0.0009008710840156641;52,0.0009424784175863296;53,0.000998937566749733;54,0.0010050284798860806;55,0.000992123531505874;56,0.0010024141153435386;57,0.001053505473478106;58,0.0010717782128871482;59,0.0010699704076183696;60,0.0010911912602349593;61,0.0011152767888928444;62,0.0011297670434318263;63,0.0011297670434318261;64,0.0011683428266286936;65,0.0010596798237807051;66,0.0009134422837308652;67,0.0007653413136347455;68,0.0006402411890352438;69,0.00047431247775008906;70,0.00030271003915984337;71,0.0001573068707725169;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0005162535599857601;2,0.0006169900320398718;3,0.0007051274919900321;4,0.000812677999288003;5,0.0009509890085439658;6,0.0010857122196511215;7,0.0012317272605909576;8,0.0013495683517265934;9,0.001493942461730153;10,0.0016533908864364544;11,0.001817567417230331;12,0.0018977783463866146;13,0.0020219050373798506;14,0.0021350458348166606;15,0.0022576984692061234;16,0.002371757075471698;17,0.0025401610893556427;18,0.0027244181648273403;19,0.002897744971520114;20,0.003018561988252047;21,0.0031158775364898542;22,0.003214555891776433;23,0.003329671368814525;24,0.0034319097098611607;25,0.0036196433339266646;26,0.003722271048415806;27,0.0037930813901744394;28,0.0038940125489498045;29,0.004074431514773941;30,0.004152139328942685;31,0.004261469829120684;32,0.00437750311498754;33,0.004605509077963688;34,0.00475124599501602;35,0.004917452830188679;36,0.005079320932716269;37,0.005247724946600214;38,0.005342092381630473;39,0.005417769891420435;40,0.005527267265930936;41,0.005758249154503382;42,0.005854062833748666;43,0.006011786890352439;44,0.006145063857244572;45,0.006307210083659667;46,0.006465963198647206;47,0.0065065692862228556;48,0.00654748131007476;49,0.006765280126379495;50,0.006912713599145604;51,0.007041179022783909;52,0.007196149652901389;53,0.007361327429690281;54,0.007460256096475615;55,0.007554456657173372;56,0.007670740254538983;57,0.00782993836774653;58,0.007977399652901389;59,0.0080687077251691;60,0.007969500934496263;61,0.007677359603061588;62,0.0075503682360270555;63,0.007368419588821645;64,0.007066488296546814;65,0.006147761658953365;66,0.005178054912780349;67,0.004277128203987184;68,0.0034108279191883235;69,0.0025269223923104307;70,0.0016345897116411537;71,0.0007897327785688858;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "allthemodium:allthemodium_slate_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0.00000005997046324314704;8,0.000000564939146493414;9,0.00000083437166251335;10,0.0000016131185475258096;11,0.0000014462442150231399;12,0.000001005591680758277;13,0.000001737405159754361;14,0.0000022336824715201137;15,0.0000021180872307760767;16,0.0000011124955500178;17,0.000002178057694019224;18,0.0000021989169855820577;19,0.000002006837675774297;20,0.0000017799928800284801;21,0.0000026786806915272338;22,0.000003804213298771805;23,0.000004893242145781417;24,0.0000032305827807938772;25,0.0000024561815815236738;26,0.0000035599857600569594;27,0.0000023579690837486644;28,0.000002311035677732289;29,0.000002738651154770381;30,0.000005399949103328586;31,0.000005815396660288359;32,0.0000030080836707903168;33,0.0000025161520447668213;34,0.000003012429356532574;35,0.0000035130523540405844;36,0.000003293160655482378;37,0.000003230582780793877;38,0.000006405540784086864;39,0.000006442044544321824;40,0.000003401802799038804;41,0.00000311498754004984;42,0.00000283686365254539;43,0.0000028968341157885366;44,0.000003123678911534354;45,0.000002788191972232111;46,0.000007081729485582057;47,0.0000059605425640797445;48,0.00000344873620505518;49,0.000002580468193752225;50,0.000003859838076272695;51,0.000003473072045211819;52,0.0000033461780215379134;53,0.000003941536968227127;54,0.000006705393100302599;55,0.000006012690792986828;56,0.000004018021037290851;57,0.0000032349284665361336;58,0.0000034061484847810614;59,0.000003401802799038804;60,0.0000031793036890352445;61,0.000003855492390530438;62,0.000007903064090868638;63,0.000005631139584816661;64,0.00000378248487006052;65,0.0000031749580032929873;66,0.000003274039638216447;67,0.0000024474902100391597;68,0.000001228090790761837;69,0.0000010568707725169098;70,0.0000015922592559629762;71,0.0000007274677932538271;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.0006768422926308295;2,0.0008712787023851904;3,0.00104685831256675;4,0.001222743859024564;5,0.0014134255962976149;6,0.0016467437255250979;7,0.001843321689213243;8,0.002028552198291207;9,0.0022227939213243153;10,0.002402183828764685;11,0.0025374076628693486;12,0.002725669722321111;13,0.002889123131007476;14,0.003024819775720897;15,0.003219923682805269;16,0.003360821244215023;17,0.0035278346386614454;18,0.0037884645336418656;19,0.004070315281238876;20,0.004333754227483091;21,0.004478934896760413;22,0.004588265396938412;23,0.004721681425774298;24,0.004944013661445354;25,0.005190181114275543;26,0.005412012726949092;27,0.005646498976504094;28,0.005823413581345675;29,0.005923677242791029;30,0.006022105286578854;31,0.006151627580989676;32,0.006312132876468495;33,0.006479368770024921;34,0.0067185831256674974;35,0.0069363541295834824;36,0.0071885290583837665;37,0.007346447801708794;38,0.007487261925952296;39,0.007581434674261303;40,0.007677665539337843;41,0.007925251423994304;42,0.008182905393378428;43,0.008490426975792099;44,0.008800813234247064;45,0.008941822045211819;46,0.009093343939124244;47,0.009300796546813813;48,0.009256380161979352;49,0.009280743814524744;50,0.00920940503737985;51,0.009197918520825916;52,0.009135368458526165;53,0.008982122196511216;54,0.008615415850836599;55,0.008239781728373087;56,0.007953453186187256;57,0.007893517488430046;58,0.007795840379138484;59,0.007630467915628338;60,0.007481337887148451;61,0.007297442372730509;62,0.007026494081523674;63,0.006670968316126736;64,0.0064681603773584905;65,0.005594128248487006;66,0.004647672659309363;67,0.003712870461018156;68,0.0028898740655037376;69,0.0021291496084015664;70,0.0013780482378070488;71,0.0006629082858668567;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0.00000050062299750801;2,0.00000144624421502314;3,0.0000017243681025275898;4,0.0000020024919900320397;5,0.00000194686721253115;6,0.00000272561409754361;7,0.00000317061231755073;8,0.0000026143645425418303;9,0.000004060608757564969;10,0.00000422748309006764;11,0.00000394935920256319;12,0.0000044499822000712;13,0.000004950605197579209;14,0.000006341224635101461;15,0.00000689747241011036;16,0.0000058406016375934494;17,0.000005791929957280171;18,0.000006591536133855464;19,0.000006042241456034177;20,0.000006118725525097899;21,0.000008364575916696333;22,0.000007481532573869704;23,0.0000067305980776076895;24,0.00000706434674261303;25,0.00000990121039515842;26,0.00000990121039515842;27,0.000010624332502669988;28,0.0000116812032751869;29,0.00001017933428266287;30,0.000010179334282662869;31,0.00000951183695265219;32,0.000009372775008899964;33,0.000009873398006407974;34,0.000011987139551441795;35,0.00001229307582769669;36,0.000013294321822712708;37,0.00001346119615521538;38,0.000014184318262726948;39,0.00001373932004271983;40,0.000012849323602705588;41,0.00001312744749021004;42,0.000015296813812744746;43,0.00001412869348522606;44,0.00001485181559273763;45,0.000015241189035243859;46,0.00001702118191527234;47,0.00001599212353150587;48,0.000015936498754004982;49,0.000016826495194019224;50,0.000015241189035243857;51,0.00001652055891776433;52,0.00001624243503025988;53,0.000018968049127803488;54,0.000019357422570309722;55,0.000016937744749021002;56,0.000017174150053399785;57,0.000017146337664649342;58,0.00001874555001779993;59,0.000020191794232823068;60,0.000020664604841580633;61,0.00001913492346030616;62,0.00002141553933784265;63,0.00002008054467782129;64,0.000019524296902812392;65,0.000017723444731221074;66,0.00001674305802776789;67,0.000014406817372730508;68,0.00001195932716269135;69,0.00000806559273762905;70,0.000006229975080099679;71,0.0000031149875400498394;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.0004625756496974012;2,0.0005876201495194019;3,0.0007247352260590958;4,0.0008605153079387683;5,0.0009905938501245995;6,0.0011304067283730867;7,0.00127250022249911;8,0.0013989631541473835;9,0.0014839300017799929;10,0.0015752658864364544;11,0.0017466458259166966;12,0.0019522906283374868;13,0.00211624466002136;14,0.002257781906372375;15,0.0023334037913848344;16,0.002454220808116768;17,0.0026286322979708083;18,0.002781572623709505;19,0.002875495060519758;20,0.0029829343182627274;21,0.003118575338198647;22,0.003222037424350303;23,0.0032397817283730864;24,0.0033367913403346385;25,0.0035262215201139198;26,0.0037169032573869704;27,0.003861666740833037;28,0.004007264595941616;29,0.004051347232111072;30,0.004091953319686721;31,0.004257742969028124;32,0.004423782929868281;33,0.004659159175863296;34,0.004861299617301531;35,0.005010819019223923;36,0.005121095140619437;37,0.005170156194375222;38,0.005228172837308651;39,0.0053714066393734435;40,0.005475536222855109;41,0.005608868814524742;42,0.005743592025631898;43,0.00593502469740121;44,0.0061154714756140975;45,0.006246662513349947;46,0.006407000934496262;47,0.00654620194019224;48,0.006587531149875401;49,0.00674811988252047;50,0.006910015797436811;51,0.007110543120327519;52,0.007349423727305091;53,0.007462647961908153;54,0.0075092893378426485;55,0.007666957769668923;56,0.007786745728017087;57,0.00798813523495906;58,0.007996089578141689;59,0.008037557849768602;60,0.00799625645247419;61,0.0078530226504094;62,0.0076262960573157705;63,0.007431804022783909;64,0.007238980731577074;65,0.006280510190459238;66,0.005287246351014595;67,0.004335923593805625;68,0.003407796368814525;69,0.002514128693485226;70,0.0016224635101459595;71,0.0008097576984692061;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000461685653257387;46,0.000034876735493058035;47,0.00008705277678889285;48,0.0001469606621573514;49,0.00021663069597721612;50,0.00029297570309718763;51,0.00035797325560697757;52,0.0004277545389818441;53,0.000499621751512994;54,0.0005408397116411535;55,0.0005904013883944465;56,0.000669944820220719;57,0.0007602238341046637;58,0.0008071433339266643;59,0.000855870639017444;60,0.0009351081345674618;61,0.0010115365788536845;62,0.0010619604396582415;63,0.001113190859736561;64,0.0011888683695265218;65,0.0011230086329654682;66,0.0010167931203275188;67,0.0008858802064791742;68,0.0007432026521893912;69,0.0005736861427554289;70,0.00038937344250623;71,0.00019816326984692064;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.00001657618369526522;2,0.000026032395870416516;3,0.00003181737273050908;4,0.000031094250622997505;5,0.000032262370950516205;6,0.000038269846920612324;7,0.00004872730509077964;8,0.00006697223211107157;9,0.00007726281594873621;10,0.00008154592381630474;11,0.00008215779636881453;12,0.00008321466714133143;13,0.00008532840868636526;14,0.00010095897116411534;15,0.00011305736027055892;16,0.00011008143467426131;17,0.00010218271626913494;18,0.0001085795656817373;19,0.00012521137415450338;20,0.00014278880384478463;21,0.00013789382342470628;22,0.00013911756852972592;23,0.00014584816660733358;24,0.0001528012637949448;25,0.00014020225169099324;26,0.00012988385546457815;27,0.0001385056959772161;28,0.00015494281772872909;29,0.00016214622641509436;30,0.0001740499288002848;31,0.0001783886614453542;32,0.0001841736383054468;33,0.00019819108223567106;34,0.0002016120060519758;35,0.00020447668209327166;36,0.00020564480242079032;37,0.00020976103595585617;38,0.0002186053755784977;39,0.00021910599857600567;40,0.00022027411890352438;41,0.00022158130117479527;42,0.00023245594517621934;43,0.00022383410466358133;44,0.00021866100035599858;45,0.00023837998398006408;46,0.0002658308116767533;47,0.0002779013883944465;48,0.0002861338554645782;49,0.00028290761836952653;50,0.0002832969918120328;51,0.0002969528746885013;52,0.00032081590423638305;53,0.0003412858223567106;54,0.0003170334193663226;55,0.0002983434941260235;56,0.000292252580989676;57,0.0003080500177999288;58,0.0003029881630473479;59,0.00030941282484870064;60,0.000316310297258811;61,0.00032312433250267;62,0.0003366411534353863;63,0.000348934229263083;64,0.0003578620060519758;65,0.00031658842114631544;66,0.0002717548504805981;67,0.00024330277678889285;68,0.00020125044499822003;69,0.00014882409220363122;70,0.00009767710929156284;71,0.000048254494482022077;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.0004658575115699538;2,0.0005951016820932716;3,0.0007220096119615522;4,0.0008351504093983624;5,0.0009459549661801352;6,0.001070943841224635;7,0.0012041929957280172;8,0.0013586908152367393;9,0.0015109914560341759;10,0.0016481065325738699;11,0.001791062210751157;12,0.0019417219206123177;13,0.002089071956212175;14,0.002186804690281239;15,0.002272327785688857;16,0.00239937477750089;17,0.002546697000711997;18,0.002716102260590958;19,0.0028779425507297974;20,0.0029743124777500893;21,0.00306061432004272;22,0.0031925284798860806;23,0.0033222732734069066;24,0.0033866311409754364;25,0.0035229396582413673;26,0.003696071778212887;27,0.0038500967871128514;28,0.003935202696689214;29,0.004047564747241011;30,0.004167964578141687;31,0.004272789471342115;32,0.0043938846119615516;33,0.004618024652901388;34,0.004799222365610537;35,0.0049111950427198296;36,0.004959060163759346;37,0.00507311877002492;38,0.005177943663225347;39,0.0052294243948024215;40,0.005324626201495194;41,0.005524291340334638;42,0.005691555046279814;43,0.00583248042007832;44,0.0059812210751157;45,0.0061699837575649695;46,0.006285877981488074;47,0.006374460439658242;48,0.0065123542630829475;49,0.006755212041651834;50,0.006841569508721966;51,0.006897249911000357;52,0.007022238786044856;53,0.007138438946244215;54,0.007300529547881809;55,0.0074760535332858685;56,0.007507870906016376;57,0.007612306425774296;58,0.007702223878604485;59,0.007768639862940549;60,0.007802570977216093;61,0.0077311487629049495;62,0.007493825649697402;63,0.0073518712175151294;64,0.0071166340334638655;65,0.0061396126290494835;66,0.005198441393734425;67,0.004244476459594162;68,0.0033304779280882877;69,0.0023886948202207197;70,0.0015845830366678535;71,0.0007763550195799217;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:iridium_ore", + "distrib": "0,0;1,0.00001346119615521538;2,0.00001535243859024564;3,0.00001401744393022428;4,0.00001713243147027412;5,0.00001852305090779637;6,0.00002553177287290851;7,0.000029842693129227486;8,0.00002987050551797793;9,0.00003109425062299751;10,0.00003126112495550018;11,0.000033486116055535785;12,0.000044054823780704874;13,0.00004722543609825561;14,0.00004680825026699894;15,0.0000522872908508366;16,0.000052871351014595946;17,0.0000528435386258455;18,0.00005481821822712709;19,0.000057571644713421153;20,0.00006257787468850126;21,0.00006747285510857957;22,0.00006474724101103595;23,0.00006836285154859383;24,0.00007628938234247063;25,0.00007720719117123534;26,0.00007531594873620506;27,0.00007971030615877537;28,0.00008149029903880385;29,0.00008365966536133856;30,0.00008624621751512993;31,0.0000936999377002492;32,0.00010571488964044145;33,0.00010154303132787469;34,0.0001016820932716269;35,0.00010304490032039872;36,0.00010565926486294054;37,0.00011900921146315414;38,0.00012081701673193309;39,0.0001162557849768601;40,0.00011592203631185476;41,0.0001248498131007476;42,0.0001256007475970096;43,0.0001227360715557138;44,0.00013252603239587044;45,0.00014370661267354933;46,0.00014131474724101106;47,0.00013533508365966534;48,0.0001363363296546814;49,0.000140063189747241;50,0.00013472321110715558;51,0.000123375756496974;52,0.00011925952296190816;53,0.00012259700961196157;54,0.00011953764684941262;55,0.0001134745461018156;56,0.00011550485048059808;57,0.00011703453186187254;58,0.00011091580633677467;59,0.00010451895692417231;60,0.00010323958704165184;61,0.00009650898896404415;62,0.00009739898540405838;63,0.00009714867390530439;64,0.0000895558917764329;65,0.00007039315592737629;66,0.00006038069597721609;67,0.00004769824670701318;68,0.000038102972588109654;69,0.000029870505517977932;70,0.000018272739409042363;71,0.00000867746529013884;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0.00000083437166251335;2,0.0000005006229975080099;3,0.0000007787468850124599;4,0.00000139061943752225;5,0.0000011124955500178;6,0.0000010673004182983269;7,0.0000013489008543965826;8,0.0000012932760768956925;9,0.0000019851092470630117;10,0.000002344932026521894;11,0.0000018912424350302601;12,0.00000239186543253827;13,0.00000383810964756141;14,0.00000305936276254895;15,0.0000025031149875400496;16,0.0000028924884300462798;17,0.0000033931114275542893;18,0.0000022249911000356;19,0.0000026143645425418294;20,0.0000028924884300462798;21,0.00000289248843004628;22,0.0000027812388750445;23,0.00000383810964756141;24,0.00000489498042007832;25,0.00000490193351726593;26,0.000006289076406194375;27,0.000005632008721965112;28,0.000006400325961196155;29,0.000007509344962620149;30,0.00000534693173727305;31,0.000005513806069775721;32,0.000006487239676041297;33,0.000006598489231043076;34,0.000005506852972588111;35,0.000005618102527589889;36,0.000005840601637593449;37,0.000006348177732289072;38,0.000007627547614809542;39,0.00000773184407262371;40,0.00000706434674261303;41,0.00000856621573513706;42,0.00000784309362762549;43,0.00000734247063011748;44,0.000006786222855108579;45,0.00000765188345496618;46,0.000008917347143111426;47,0.000009417970140619438;48,0.000008736566616233536;49,0.000008903440948736206;50,0.000009198947579209684;51,0.000009473594918120327;52,0.000008983401566393734;53,0.000011166674083303666;54,0.000010999799750800999;55,0.000010196717025631898;56,0.000010391403746885015;57,0.000008100358223567106;58,0.000008799144490922036;59,0.000009626563056247774;60,0.000009883827652189392;61,0.000009497930758276966;62,0.00001076687099501602;63,0.00001133007186721253;64,0.000011097143111427554;65,0.00001148999310252759;66,0.000010386188923994304;67,0.000007613641420434318;68,0.000005682418676575293;69,0.000005266971119615522;70,0.0000035634623086507656;71,0.0000015644468672125312;", + "silktouch": false, + "dim": "allthemodium:the_other" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0006482206443862886;66,0.0014071594305490012;67,0.0021958725706808526;68,0.0030247503646660084;69,0.003877369435268208;70,0.004765125595263632;71,0.005734886917785691;72,0.006670404940151873;73,0.0069937890585896716;74,0.007164167631959043;75,0.0073967204191514;76,0.007686531579361333;77,0.007857301185522044;78,0.008008239842979107;79,0.007983046158851374;80,0.007811326901625981;81,0.007692341209404093;82,0.007467832525347863;83,0.007354041983068056;84,0.0071700331238291354;85,0.006912174928854377;86,0.006701184807013028;87,0.006476452675647461;88,0.006300096886753329;89,0.006136533456318732;90,0.005903980669126374;91,0.005768459876013557;92,0.0056248391179372775;93,0.005383516023853447;94,0.005145153606618331;95,0.004897573987873069;96,0.004712559615742131;97,0.004577709164557324;98,0.004357948735824502;99,0.004179693644801006;100,0.00399719305490011;101,0.0037826277761093714;102,0.0035714700687860196;103,0.0033528268765998827;104,0.003118374787278161;105,0.002912970848170234;106,0.002737732295822787;107,0.002534339382498892;108,0.0023220644386288554;109,0.0021585010081942597;110,0.0019260599446565703;111,0.0017129470733765213;112,0.0015121238041100004;113,0.001339790066783932;114,0.00115550189840834;115,0.0009474165915883708;116,0.0007276561628555493;117,0.0005209115398916012;118,0.0003073517739928783;119,0.00012384567119996567;120,0.00002357369113504083;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0006738053613053613;66,0.0014368779226908062;67,0.0023161989467587627;68,0.0032318860204212964;69,0.004184330176469747;70,0.005253469689819382;71,0.00632897745148512;72,0.007384765988101878;73,0.007680330916527235;74,0.00802192599067599;75,0.008415919458864244;76,0.008637690913381098;77,0.00889979460723326;78,0.00918111476968839;79,0.009506174742946214;80,0.00982497819154261;81,0.010202101387875927;82,0.010572185993965134;83,0.010861270950419723;84,0.011034330891501135;85,0.011231355556508931;86,0.011549209354040642;87,0.012043698249603158;88,0.012315075006792799;89,0.012519808603972712;90,0.012771745445250046;91,0.013198697391565489;92,0.0135310752642041;93,0.013676204291618402;94,0.013877418593676263;95,0.014081202539791497;96,0.014282696150986028;97,0.01466808689776481;98,0.015063644497118424;99,0.015397921671886396;100,0.01575130359160267;101,0.016117980626224493;102,0.016230039451856935;103,0.01643130961574213;104,0.016746537907389135;105,0.01721387795486722;106,0.017578879134669014;107,0.01785433380525405;108,0.018221904629113217;109,0.018587129256224348;110,0.018760356782787764;111,0.018768009853132553;112,0.01850138135126632;113,0.018209950198063693;114,0.018068172880289446;115,0.017889973651093287;116,0.01758446531740243;117,0.017308116857580047;118,0.01696194111358989;119,0.016525213347490957;120,0.016093904178643443;121,0.015819119849986414;122,0.01567108600755073;123,0.015498081928296655;124,0.015205756985856678;125,0.01490857206443863;126,0.014615967812861987;127,0.014369673016145407;128,0.014062656413116536;129,0.013750556383800249;130,0.013473090687431178;131,0.013224840726757904;132,0.012907433823844867;133,0.01263359914625252;134,0.012393505012370043;135,0.011950241412473007;136,0.011498542676648505;137,0.011279061557052356;138,0.011047626006406682;139,0.010840043456032719;140,0.010593804521143477;141,0.010348235928182247;142,0.009997647099832682;143,0.00964616448224577;144,0.009244071049094055;145,0.009049671889970969;146,0.008794495062708253;147,0.008629479224762968;148,0.008444297267150028;149,0.008220123754057803;150,0.007915453347776966;151,0.007521515741416048;152,0.00723321285054414;153,0.006927592793198621;154,0.006634653370657972;155,0.00602134636835557;156,0.00577566605173967;157,0.005222019481030217;158,0.004870425139788637;159,0.0044836937091538315;160,0.004184162590987744;161,0.003860778472549945;162,0.0034833759670799547;163,0.0030174324652852257;164,0.0023744069708410195;165,0.0016295453651665307;166,0.0009265242681653725;167,0.0006908432186422984;168,0.00047644552533356217;169,0.00030696074120153873;170,0.00018456747751226281;171,0.00011669535730118553;172,0.0000710562443691278;173,0.000035248813047892804;174,0.000013853733178886553;175,0.0000027372295393767784;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0.002669413280993036;2,0.0027603004740658116;3,0.002947158286498777;4,0.003123011318946901;5,0.0032465218191828618;6,0.003373607476368212;7,0.0035014193373089078;8,0.0035357743611194527;9,0.0036113554135026524;10,0.0037788850336779784;11,0.003968480075650321;12,0.004031771526019992;13,0.004147740679565833;14,0.004394426509073748;15,0.004568436101219844;16,0.004636699254222261;17,0.004696359685815207;18,0.004847633514236276;19,0.0050480098888841226;20,0.005153812189855134;21,0.005254251755402062;22,0.005375360197062651;23,0.005421222757304046;24,0.005549593236518083;25,0.005762482660488795;26,0.005898562071874955;27,0.006017212593132837;28,0.00615278924807299;29,0.006237866811103008;30,0.006290488652451843;31,0.006327804353111101;32,0.006481033345488867;33,0.006744310137715046;34,0.00685569862141948;35,0.006973231906130679;36,0.007076911457662991;37,0.0072200294592932625;38,0.007298012570251833;39,0.0073065035680066346;40,0.007448839504054228;41,0.0076766998977505115;42,0.007820097208517455;43,0.007938859453430005;44,0.008061085131637277;45,0.008241686419408811;46,0.008417539451856935;47,0.008428655955496446;48,0.00844128072847398;49,0.008596911779427115;50,0.008851697573898493;51,0.00901486997154175;52,0.00910117649477312;53,0.009240607615799333;54,0.00940841654511133;55,0.009523268462110487;56,0.009437855728116465;57,0.00952041950891644;58,0.009674765737840891;59,0.009890504115005649;60,0.010061497168475694;61,0.010155400900224522;62,0.010187353865459693;63,0.010165958785590689;64,0.01023059091981638;65,0.009340153392108913;66,0.008129180699157693;67,0.006797099564545883;68,0.005501887235974659;69,0.004182207427031046;70,0.002778511429776767;71,0.0013930263882334436;72,0.0000005586182733421996;73,0.0000007820655826790796;74,0.0000013406838560212794;75,0.0000030165386760478785;76,0.000002290334920703019;77,0.0000008379274100132996;78,0.0000012848220286870594;79,0.0000007262037553448596;80,0.00000022344730933687994;81,0.00000044689461867375973;82,0.00000044689461867375973;83,0;84,0.0000001675854820026599;85,0;86,0.00000011172365466843992;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "ad_astra:moon_ice_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002041079447137729;66,0.0039769710734051215;67,0.005818176902341012;68,0.007440292644472092;69,0.008936830998755845;70,0.010299077520128134;71,0.011569543059190297;72,0.01260220479929069;73,0.012154025358588241;74,0.011645850315328842;75,0.01120102258426645;76,0.010735414253435724;77,0.010146127836887038;78,0.009612312214881232;79,0.009050286370071648;80,0.008442677274157335;81,0.008071922326140117;82,0.007559278336693981;83,0.006977924299626754;84,0.006315961645716246;85,0.0056901974559183145;86,0.005191351337823731;87,0.00468580180044904;88,0.0041469586139831534;89,0.003611020242538647;90,0.0030378778940895503;91,0.002505570541421768;92,0.0019551080948703647;93,0.0013906243296580721;94,0.0008562500893789238;95,0.0003719839082185708;96,0.00008161412973529538;97,0.00000005586182733421997;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.000152614512277089;66,0.0002829401554478242;67,0.00043024779412816224;68,0.0005620258448095872;69,0.0006851453122542079;70,0.0007912269223618917;71,0.000866975560227094;72,0.0009183125795472421;73,0.0009022243732749868;74,0.0008741258741258741;75,0.0008384301664593075;76,0.0008164206064896248;77,0.0007653628963061478;78,0.000734918200408998;79,0.0006939714809730147;80,0.0006512930448896706;81,0.0005988946508501724;82,0.0005611879173995738;83,0.0005288997812003946;84,0.0004899640875484434;85,0.0004467828950190913;86,0.00039768034879231196;87,0.0003663977254851488;88,0.00031757448839504055;89,0.0002760691506857151;90,0.00022730177542294104;91,0.0001865785032962947;92,0.00014870418436369357;93,0.00010038370371959329;94,0.000054409419823530256;95,0.00002469092768172523;96,0.000004636531668740257;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0.0016885913166588013;2,0.001761155830365953;3,0.0018366810209218185;4,0.0019419247036194889;5,0.002010746474895248;6,0.0020305215617715615;7,0.0021068288179101067;8,0.00220034151686759;9,0.002306702436111945;10,0.0024185936762623882;11,0.002490264400732192;12,0.002570202675647461;13,0.0026927635248187396;14,0.002810520256839275;15,0.0028962122999699686;16,0.002956710658972929;17,0.003019834523860597;18,0.003073406016274114;19,0.0031586511647861337;20,0.0032343998026513367;21,0.003350648265333848;22,0.003448015430377394;23,0.0035324226514794;24,0.003579793481058818;25,0.00362548845581821;26,0.0036948688453673113;27,0.003781845710526692;28,0.003858041243010568;29,0.0039230644100276;30,0.004020599160553148;31,0.004077857533570723;32,0.004079645112045419;33,0.00421321074120154;34,0.004303483454173638;35,0.004333146084488109;36,0.004425653270553578;37,0.004510730833583594;38,0.004549945836372217;39,0.004636643392394927;40,0.004776633131694481;41,0.004928856611180231;42,0.005021363797245699;43,0.005059573287142306;44,0.005096330369528223;45,0.005184312747579619;46,0.005277993032019106;47,0.0052956453694567186;48,0.005291120561442647;49,0.005461499134812019;50,0.005593779941939451;51,0.00567517062436541;52,0.0057613654239421115;53,0.005828790649534514;54,0.005846945743418135;55,0.005919677842607289;56,0.005964367304474667;57,0.006102290156162855;58,0.006192060112688947;59,0.006247977801850501;60,0.006324955399917056;61,0.006426568063838002;62,0.006471480973014716;63,0.006479971970769517;64,0.0064795809379781764;65,0.005819182415233028;66,0.00513375779384215;67,0.0043275040399273525;68,0.003455165744276174;69,0.002615897650406853;70,0.0017380290338495858;71,0.0008820582536073333;72,0.0000005027564460079797;73,0.0000004468946186737598;74,0.00000022344730933687992;75,0.00000011172365466843996;76,0.00000005586182733421996;77,0.00000011172365466843992;78,0.00000022344730933687994;79,0.00000016758548200265998;80,0.0000005027564460079799;81,0.00000022344730933687986;82,0.00000005586182733421996;83,0.00000016758548200265987;84,0.0000005586182733421998;85,0.0000003910327913395398;86,0.00000011172365466843992;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0008122309694395582;66,0.0016814410027600213;67,0.0025807605610136284;68,0.0034184645237175914;69,0.0043338164264161184;70,0.005290729528651308;71,0.006215410356514651;72,0.007124952629170421;73,0.007211035705092453;74,0.007271645787750081;75,0.007389793552561957;76,0.007536654296623621;77,0.007734237579904757;78,0.007911654743518239;79,0.007969136563845153;80,0.008030081817466787;81,0.008191187327498677;82,0.008293805504311639;83,0.008361286591731376;84,0.008393127833311882;85,0.008461223400832297;86,0.008554177481516437;87,0.008667688714659573;88,0.008717908497433039;89,0.008780473744047362;90,0.008816616346332604;91,0.008893370497089822;92,0.009105198546341182;93,0.009240495892144665;94,0.009337136853432865;95,0.009371100844452073;96,0.00928769913624208;97,0.009374117383128119;98,0.009556059354755675;99,0.009697445639738584;100,0.009770121877100406;101,0.009831122992549372;102,0.009848998777296322;103,0.009876594519999428;104,0.009923015698514167;105,0.010172103586597453;106,0.01037806614397872;107,0.010349464888383599;108,0.01039817640181904;109,0.010570342553663105;110,0.010719828803609478;111,0.01087780605131065;112,0.010910820391265176;113,0.010972882881433495;114,0.011122871887825875;115,0.011253253392823945;116,0.011442289816522948;117,0.011519602585553507;118,0.011601663609907475;119,0.011521501887682868;120,0.011329504787135156;121,0.011189291600526265;122,0.011122983611480544;123,0.011169684099131952;124,0.011082092753871895;125,0.010976234591073549;126,0.010918752770746637;127,0.010715303995595407;128,0.010610172036552405;129,0.010679552426101505;130,0.010586989378208704;131,0.010419348034378708;132,0.01033846010839876;133,0.010262041128605544;134,0.010135849260657543;135,0.01007769709840262;136,0.009956867965878703;137,0.009909664721781286;138,0.009895196508501724;139,0.009910726096500636;140,0.009844138798318247;141,0.009650298257468503;142,0.009550361448367583;143,0.009411321360132709;144,0.009317194181074549;145,0.009409701367140018;146,0.009376631165358158;147,0.009374173244955455;148,0.009322333469189297;149,0.009319652101477255;150,0.00922613940251977;151,0.009053358770575028;152,0.008999284521715504;153,0.008903872520628655;154,0.008793489549816236;155,0.008386033381240436;156,0.00836743139273814;157,0.007854508094155334;158,0.0077601574677878355;159,0.007546709425543781;160,0.007404876245942197;161,0.007277678865102178;162,0.007040377822586411;163,0.00643422113418279;164,0.005407815918743833;165,0.003967195253621635;166,0.002503503653810402;167,0.002021639531225421;168,0.001563795994394154;169,0.0011689645987958872;170,0.0008552445764869078;171,0.0006528571760550288;172,0.0005033150642813219;173,0.00037265425014658144;174,0.00030668143206486766;175,0.0002179169884307921;176,0.00014244765970226092;177,0.00010356782787764382;178,0.00007586036151987073;179,0.000053348045104180066;180,0.00003122676147982897;181,0.000020445428804324512;182,0.000016199929926923794;183,0.000010669609020836016;184,0.0000051392881147482375;185,0.000001787578474695039;186,0;187,0.00000033517096400531985;188,0.00000022344730933687992;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0004430960144150328;2,0.00046443523245670484;3,0.0004942654482531783;4,0.0005134260550288157;5,0.0005329776945957928;6,0.0005601265426802237;7,0.0005694554678450385;8,0.0005968836250661403;9,0.0006088939179429978;10,0.0006409586068328399;11,0.0006980493943684128;12,0.0006994459400517683;13,0.0007117355420652966;14,0.00073190166173295;15,0.0007577098259613597;16,0.0007889365874411886;17,0.00079742758519599;18,0.0008125102785762295;19,0.0008537921689762181;20,0.0008883147782687659;21,0.0008979230125702518;22,0.0008942361319661933;23,0.0009363559497761952;24,0.0009595944699472307;25,0.0009920501916284125;26,0.0010126632059147397;27,0.0010093114962746864;28,0.0010247852224462652;29,0.0009999267092825372;30,0.0009508800248830924;31,0.0009469138351423628;32,0.0009181449940652395;33,0.0008773658601112589;34,0.0008555238856235789;35,0.0008346315622005806;36,0.000803739971684757;37,0.0007871490089664936;38,0.0007801662805497162;39,0.0007578774114433624;40,0.0007162044882520342;41,0.000687435647174911;42,0.0006743081177513692;43,0.000667381251161926;44,0.0006428579089622034;45,0.0006355400095814206;46,0.0006098435690076794;47,0.0005666065146509931;48,0.0005384521536745463;49,0.0005219729146109513;50,0.0005253804860783388;51,0.0004932040735338281;52,0.0004673959093054185;53,0.00045387734709053724;54,0.0004324264053941968;55,0.00040337825518040244;56,0.0003925410606775637;57,0.00037125770446322587;58,0.00034388540906945815;59,0.0003140551932729847;60,0.000281878780728474;61,0.0002660698835928897;62,0.0002461272112345732;63,0.00022763694638694638;64,0.00019652190856178588;65,0.00015043590101105437;66,0.00011367881862513763;67,0.0000797148276059319;68,0.00005602941281622263;69,0.000037036391522587845;70,0.000019663363221645426;71,0.000007429623035451257;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.003149489825103322;2,0.0032772458242166834;3,0.0034571209082328714;4,0.003666714484390865;5,0.0038313392895448104;6,0.003967083529966966;7,0.004044731469961531;8,0.004106347065511176;9,0.004288568346275402;10,0.004469728252320277;11,0.004638598556351624;12,0.004833723919230055;13,0.005004325939908762;14,0.005157778379595864;15,0.005234141497561743;16,0.005371449869149255;17,0.005628302551231999;18,0.005825885834513135;19,0.005894875191270896;20,0.005997605091738528;21,0.006193791829336308;22,0.006371320716604459;23,0.00646109067313055;24,0.006601750754358117;25,0.006800451274185937;26,0.006835588363579161;27,0.006926419694824602;28,0.007171262084030488;29,0.007376498437656413;30,0.0075188902355313395;31,0.007600783674403306;32,0.0075994988523746185;33,0.0075983257540006;34,0.007568160367240121;35,0.007437499553105381;36,0.007272260267850759;37,0.007104451338538761;38,0.00689938257039484;39,0.006745148065125059;40,0.0065400234351538035;41,0.0064557837995338;42,0.006317525776881605;43,0.006170162276373932;44,0.006081397832739857;45,0.005974701742531497;46,0.005754941313798676;47,0.005545347737640682;48,0.0053501106511075845;49,0.005284305418507872;50,0.005159342510761222;51,0.004959357168904714;52,0.00480177095399488;53,0.004679098381168933;54,0.004544638962775467;55,0.004370685232456705;56,0.004116011161639996;57,0.003993785483432722;58,0.003865359142391351;59,0.003724140442890443;60,0.003534489539090766;61,0.0033695295629728146;62,0.003243170109542809;63,0.0030480447466643785;64,0.002866605531482832;65,0.002404628219428833;66,0.0019593535937477654;67,0.0015537408654739942;68,0.0011591329171850644;69,0.0008212247236403679;70,0.0005081191814320648;71,0.0002304300377536574;72,0.00000027930913667109983;73,0.00000016758548200265987;74,0.00000022344730933687984;75,0.00000005586182733421996;76,0.00000005586182733421996;77,0;78,0;79,0.00000005586182733421999;80,0.00000027930913667109994;", + "silktouch": false, + "dim": "ad_astra:glacio" + }, + { + "block": "ad_astra:moon_ice_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.000018605297605904807;30,0.00012198175251553481;31,0.0003142570300917895;32,0.0005208867260196196;33,0.0007501877779705392;34,0.0009770245520928618;35,0.0012076809568495094;36,0.0014257695446803142;37,0.0016248215862852097;38,0.0018457440936189005;39,0.0020423318573951996;40,0.002221916104154181;41,0.0024640314008138034;42,0.0026765137565845504;43,0.002852648014383497;44,0.003053609871305555;45,0.003362507097120147;46,0.003574003741759455;47,0.0037262961115667285;48,0.00391727764328297;49,0.004214531156357442;50,0.004435145628962559;51,0.004634197670567454;52,0.004821914034160806;53,0.0050305767592972285;54,0.005209976185219065;55,0.005363685514777781;56,0.0054798762143961136;57,0.005806146598902312;58,0.005988071909598461;59,0.0061624811729173905;60,0.006360978752010851;61,0.006592805688736082;62,0.006722796344194556;63,0.006731421316594644;64,0.006499039917357979;65,0.006387592952559695;66,0.006160694571491657;67,0.0059469184698608965;68,0.005799000193199381;69,0.005600009758540201;70,0.005368983712109265;71,0.005104936342775132;72,0.004834605064978077;73,0.004723774169636943;74,0.0045589755898495414;75,0.004335219163012964;76,0.004131977849099454;77,0.003956582874649087;78,0.003752848705169858;79,0.0034961941693215154;80,0.0032554342254676218;81,0.003091806177648803;82,0.002890844320726745;83,0.0026926547763618585;84,0.0024828215192568524;85,0.0022184045082484305;86,0.0020461514880295243;87,0.001833607525313062;88,0.0016049841497650067;89,0.0013969374940857335;90,0.0011901845842664733;91,0.0009704942158470808;92,0.0007695939658707378;93,0.0005303125887140018;94,0.00031733737737753536;95,0.00013873884174999212;96,0.00002445795744882188;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.0002648482596284263;2,0.0002827142738857522;3,0.00030594009242027574;4,0.00030594009242027574;5,0.0003188159440746933;6,0.0003475863877235593;7,0.0003551024351007791;8,0.00035547207677506863;9,0.0003720443451723812;10,0.0003903416080497114;11,0.0004074067320127433;12,0.0004090701195470461;13,0.000413567426584235;14,0.0004314334408415608;15,0.0004494226689903164;16,0.00043907270211021045;17,0.0004626681623190234;18,0.0004846618419392487;19,0.0004898368253793017;20,0.0005005564339336971;21,0.0005295116984197079;22,0.0005391839888969498;23,0.0005551401878371132;24,0.0005540928697599596;25,0.0005618553449200391;26,0.0005696794270258335;27,0.0005869293718260102;28,0.0006060891319433492;29,0.0006235238975806706;30,0.000632888153329338;31,0.0006428684785351544;32,0.0006606112789010504;33,0.0006622130594896382;34,0.0006777380098097972;35,0.0006789085417783807;36,0.0006776764028640824;37,0.0007161807439359051;38,0.0007188298426016467;39,0.0007467377890105038;40,0.0007485243904362364;41,0.0007577038253477589;42,0.0007765555507365234;43,0.0007790198285651201;44,0.0008073590235939817;45,0.0008091456250197142;46,0.0008400107048228875;47,0.0008567677940573448;48,0.0008453089021543704;49,0.00084555532993723;50,0.0008697668596031923;51,0.0009015560435920891;52,0.0009141238605179322;53,0.0009342077248209948;54,0.0009493014265211495;55,0.0009465291139639782;56,0.0009329139789609817;57,0.0009418469860896447;58,0.0009505951723811627;59,0.000990331652367284;60,0.001022675298867615;61,0.001007766418004605;62,0.0010120789042046495;63,0.0010117708694760746;64,0.0009924262885215912;65,0.0009751147367756995;66,0.0009524433807526102;67,0.0009746218812099802;68,0.0009560165836040753;69,0.0009228104398637354;70,0.0009231800815380248;71,0.0009180050980979719;72,0.0008886185849919567;73,0.0008830739598776141;74,0.0008700748943317668;75,0.0008525785217487304;76,0.0008472187174715328;77,0.0008437687285114974;78,0.0008367455366999969;79,0.0008300919865627859;80,0.0008178322043655176;81,0.0008119179375768856;82,0.0008072358097025519;83,0.0007903555065766647;84,0.00075320651831057;85,0.0007271467802731603;86,0.0007342315790303758;87,0.0007157494953159008;88,0.0007160575300444753;89,0.0007136548591615935;90,0.0006938790295871054;91,0.0006781692584298016;92,0.0006846379877298678;93,0.0006513702370438129;94,0.000634982789483645;95,0.0006252488920606882;96,0.0006104016181433932;97,0.0005917347135917737;98,0.0005800293939059395;99,0.0005871757996088699;100,0.0005696178200801185;101,0.0005576660726114247;102,0.000529450091473993;103,0.0005001867922594077;104,0.0005004948269879823;105,0.0004860788016906918;106,0.00047770025707346306;107,0.0004923627101536133;108,0.0004603270983818566;109,0.00044671196337886006;110,0.00043630038955303917;111,0.00040531209585843616;112,0.00041831116140428353;113,0.000400999609658392;114,0.00039730319291549695;115,0.00037993003422389054;116,0.00037721932861243423;117,0.0003494962030407217;118,0.00034733995994069963;119,0.00034462925432924326;120,0.0003143802439832193;121,0.00028862854067438415;122,0.00028788925732580514;123,0.0002644786179541369;124,0.00025745542614263634;125,0.00025147955240828945;126,0.0002313340811595117;127,0.00021359128079361574;128,0.00020921718764785666;129,0.00019781990269059711;130,0.00016898785209601614;131,0.00016251912279594992;132,0.00015420218512443616;133,0.0001439138251900451;134,0.00012894333738132038;135,0.00011656034129262216;136,0.00010553269800965209;137,0.0000869890073494622;138,0.00007251137510645681;139,0.00005704803173201274;140,0.000044295393969025014;141,0.000032220432608901365;142,0.000019899043465918053;143,0.000009549076585812068;144,0.0000009241041857237486;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0.000021624037945935715;38,0.00012629423871557895;39,0.000314626671766079;40,0.0005073331979623379;41,0.0007017647186386147;42,0.00090469799782355;43,0.0011229714064914993;44,0.0013437706999337602;45,0.001538263827555752;46,0.0017203739590890455;47,0.0019435759234141883;48,0.0021314771078446834;49,0.002347471059521181;50,0.002580899776835;51,0.002781430385137054;52,0.0029890457921963225;53,0.0031736818085039272;54,0.003366757976374476;55,0.0035500386398763526;56,0.0037102783056808504;57,0.0039198651350029964;58,0.004122921628079362;59,0.004392020766962117;60,0.00459292101693846;61,0.004837808626155253;62,0.005034334782985838;63,0.005124404137621046;64,0.005319082086080182;65,0.00557930982477999;66,0.005697779981389773;67,0.005968912149481122;68,0.006182934678894742;69,0.006374655493959563;70,0.0065484486878213425;71,0.0066856473559284615;72,0.006855620919155916;73,0.007094902296312652;74,0.007306275727060532;75,0.0075183268342112735;76,0.007672775447118569;77,0.007962081664195817;78,0.008309544838027948;79,0.008340471524776835;80,0.008100327650380091;81,0.007977606614515978;82,0.007777076006213924;83,0.007522331285682744;84,0.007315455161972054;85,0.007077036282055327;86,0.006902811839573543;87,0.00669679821310286;88,0.006440574925874524;89,0.0062216854477494254;90,0.006086519808850898;91,0.0059413738447465555;92,0.005739179848910198;93,0.005489117256253352;94,0.005267393858625367;95,0.005086023010440652;96,0.004851608581995395;97,0.004676028786707883;98,0.004531930140680693;99,0.004315997795949911;100,0.004065935203293064;101,0.0038437805570450748;102,0.0036654900561461064;103,0.003443520230735262;104,0.0031767005488439583;105,0.0029704404945904176;106,0.0028087222620887613;107,0.002638502271078447;108,0.0024040262356874744;109,0.0022253044861685013;110,0.0020250203056493077;111,0.0017902978424754756;112,0.0015637691030817272;113,0.0013845544979970352;114,0.0011755837381320377;115,0.0009537371266126235;116,0.0007455056500962054;117,0.0005344402540769013;118,0.000327132881746207;119,0.0001290049443270353;120,0.000024273136611677126;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "ad_astra:mars_ostrum_ore", + "distrib": "0,0;1,0.0005152188870138474;2,0.0005049921340251712;3,0.0005407857694855378;4,0.0005799061800145097;5,0.0005943838122575151;6,0.0006296845921521623;7,0.0006304238755007413;8,0.0006490291731066462;9,0.0006944334920985396;10,0.0007153182466958963;11,0.00073478604154181;12,0.0007467993959562188;13,0.0007691011103050185;14,0.0007829010661451598;15,0.0008266419976027505;16,0.0008397642770400279;17,0.0008596017135602309;18,0.000909072090969309;19,0.0009355630776267231;20,0.0009290943483266568;21,0.0009417853791439297;22,0.0009693236838784974;23,0.0009927343232501657;24,0.001018362812667571;25,0.0010403564922877961;26,0.0010776903013910355;27,0.0010956795295397914;28,0.0011293169219001357;29,0.001152665954326089;30,0.0011524195265432294;31,0.0011819292535406745;32,0.0011885828036778856;33,0.001199856874743715;34,0.0012331246254297702;35,0.0012734771748730404;36,0.0012994136990190203;37,0.0013140145451534556;38,0.001337240363687979;39,0.0013480215791880897;40,0.0013833223590827368;41,0.0013885589494685045;42,0.0014050696109201024;43,0.0014471471548433905;44,0.001473884569283664;45,0.0014668613774721636;46,0.0014999443073210738;47,0.0015332736649528438;48,0.0015489834361101474;49,0.0015749815672018424;50,0.0015895208063905625;51,0.001606893965082169;52,0.0016399768949310791;53,0.0016567955911112515;54,0.0016730598247799895;55,0.0016893240584487275;56,0.001700043667003123;57,0.0017128579117118255;58,0.0017488979749550517;59,0.0017947951495126645;60,0.0017903594494211906;61,0.001817281684698609;62,0.001840261075450273;63,0.001810073672049964;64,0.0017979987106898402;65,0.0017868478535154402;66,0.0017792085922467907;67,0.0017433533498407091;68,0.0017040481184745927;69,0.0016753392817714413;70,0.0016787892707314767;71,0.0016427492074882503;72,0.0015835449326562158;73,0.0016019038024792606;74,0.0015873029563448257;75,0.0015540968126044855;76,0.0015565610904330822;77,0.0015155924715326628;78,0.0015177487146326848;79,0.0015006835906696528;80,0.0014883005945809545;81,0.0014655060246664357;82,0.0014351338004289817;83,0.0014329159503832442;84,0.0014107990568715896;85,0.0013795027284484122;86,0.0013608358238967923;87,0.00131068777008485;88,0.0012515451021985302;89,0.0012464317257041917;90,0.0012397165686212663;91,0.0012223434099296597;92,0.0011980702733179827;93,0.0011736123158691608;94,0.0011701007199634106;95,0.0011352927956344825;96,0.001102517900514147;97,0.001053848413399363;98,0.0010498439619278934;99,0.001051630563353626;100,0.0010411573825820902;101,0.0010008048331388198;102,0.0009733897422956818;103,0.0009501023168154434;104,0.0009184979536636913;105,0.0008859078793805003;106,0.0008933007128662904;107,0.0008901587586348296;108,0.0008651463386745734;109,0.0008442615840772168;110,0.000830153593508501;111,0.0008098233014225784;112,0.0007848108814623222;113,0.0007603529240135003;114,0.0007164271717187648;115,0.0006877799419613286;116,0.0006722549916411697;117,0.0006548202260038482;118,0.0006400345590322683;119,0.0006067668083462134;120,0.0005685088950572502;121,0.0005513205572027885;122,0.0005224268996624925;123,0.0005002483992051226;124,0.00048749576144213483;125,0.0004590333525218434;126,0.00043254236586442925;127,0.00038707643992682086;128,0.0003683479284294862;129,0.0003632345519351481;130,0.00033027483597766776;131,0.00031524274122322806;132,0.00030310617291738954;133,0.0002766767932056903;134,0.00022893141027662998;135,0.00019270652619625904;136,0.00017822889395325366;137,0.00017176016465318743;138,0.00014268168627574681;139,0.0001193942607955083;140,0.00009179434911522571;141,0.00006382479576065357;142,0.00003462310349178311;143,0.000011828533577263983;144,0.0000024026708828817464;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000011127015325015666;28,0.00000033381045975046994;29,0.0000007232559961260183;30,0.00000005563507662507834;31,0.00000038944553637554835;32,0;33,0.0000007788910727510967;34,0.0000006676209195009402;35,0.0000016690522987523501;36,0.00000166905229875235;37,0.0000028373889078789947;38,0.0000024479433715034465;39,0.0000020028627585028192;40,0.0000022810381416282113;41,0.0000034493747507548563;42,0.000003226834444254543;43,0.000003115564291004386;44,0.000002169767988378055;45,0.000004506441206631345;46,0.00000567477781575799;47,0.000005730412892383067;48,0.00000567477781575799;49,0.0000062311285820087745;50,0.000004228265823505953;51,0.000002726118754628838;52,0.000003226834444254543;53,0.000006787479348259556;54,0.000005674777815757989;55,0.000005619142739132912;56,0.0000028373889078789947;57,0.0000021141329117529766;58,0.000004395171053381188;59,0.000005674777815757989;60,0.000006231128582008773;61,0.00000600858827550846;62,0.000005841683045633225;63,0.000005897318122258304;64,0.000011238285478265823;65,0.0008311324097020452;66,0.001587991992109611;67,0.0023352267062610376;68,0.0030679406654133194;69,0.0037864676800262063;70,0.004447356755255511;71,0.005013610565145559;72,0.005626876014783799;73,0.005493741276419984;74,0.005364612263573178;75,0.005249280749729391;76,0.005070413978379764;77,0.004874300333276363;78,0.004789846286959494;79,0.004805479743491142;80,0.004793406931863499;81,0.004637962527773031;82,0.0044607091736455304;83,0.004278281757391899;84,0.004137024297840825;85,0.004039941089130063;86,0.003926334262661653;87,0.0038011553402552273;88,0.0036568935865663992;89,0.0035300456118612204;90,0.0034327398628439584;91,0.003296155749729391;92,0.003129194884777531;93,0.0030286623013160143;94,0.0029514408149604056;95,0.002832771196519114;96,0.0026636405635788755;97,0.0025285585975331855;98,0.0023689415626958355;99,0.0022161120072067457;100,0.0020967747678459527;101,0.0020274534623711043;102,0.0018554854405229875;103,0.0017227401476955506;104,0.0016395100730644332;105,0.0015677408242180824;106,0.0014051751303196035;107,0.0012715953113427905;108,0.001149086872614368;109,0.0010740351542471373;110,0.0009598719770124764;111,0.0007615885639206974;112,0.000637856153506523;113,0.0005224133695094856;114,0.00042043427405571694;115,0.000338761981570102;116,0.00024868879251410014;117,0.0001642903812738563;118,0.00008356388509086765;119,0.00003371485643479747;120,0.000007900180880761123;121,0.00000027817538312539153;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000006119858428758615;46,0.000004395171053381188;47,0.000013129878083518488;48,0.00002119696419415484;49,0.00002970913091779183;50,0.00003911145886743007;51,0.00004962648834956988;52,0.00005758230430695608;53,0.00006436978365521564;54,0.00007327139591522817;55,0.00008773651583774853;56,0.0000980846400900131;57,0.00010370378282914601;58,0.00011115888309690651;59,0.00011666675568278926;60,0.00012679233962855355;61,0.0001304642546858087;62,0.00014220325585370024;63,0.0001435384976927021;64,0.0001533302711787159;65,0.00013875388110294536;66,0.00012790504116105508;67,0.00011739001167891528;68,0.00009419018472625762;69,0.00006904313009172221;70,0.00004940394804306955;71,0.000026871742009912834;72,0.00000011127015325015666;73,0.0000003894455363755483;74,0.00000011127015325015665;75,0.0000004450806130006266;76,0.00000011127015325015669;77,0.0000007232559961260185;78,0.0000006119858428758616;79,0.0000005563507662507835;80,0.00000044508061300062676;81,0.00000016690522987523502;82,0.00000044508061300062676;83,0.00000038944553637554835;84,0.00000044508061300062666;85,0.0000003894455363755483;86,0.0000006119858428758616;87,0.0000002781753831253917;88,0.00000033381045975047;89,0.000000055635076625078326;90,0.000000500715689625705;91,0.00000016690522987523502;92,0;93,0.00000005563507662507833;94,0.00000016690522987523497;95,0.00000005563507662507834;96,0;97,0.00000005563507662507831;98,0;99,0;100,0.00000011127015325015665;101,0.000000055635076625078326;102,0;103,0;104,0.00000005563507662507834;105,0;106,0;107,0;108,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0.00000027817538312539153;17,0.00000033381045975046994;18,0.00000033381045975046994;19,0.0000005007156896257048;20,0.00000033381045975046994;21,0;22,0.00000033381045975046994;23,0.00000033381045975046994;24,0.0000005007156896257049;25,0.0000010014313792514098;26,0.0000008901612260012531;27,0.000000834526149376175;28,0.0000007788910727510966;29,0.00000033381045975047;30,0.0000003894455363755484;31,0.0000006676209195009401;32,0.000001223971685751723;33,0.000001947227681877742;34,0.000001390876915626958;35,0.0000012239716857517233;36,0.0000009457963026263318;37,0.000000500715689625705;38,0.0000005563507662507834;39,0.0000005563507662507834;40,0.00000066762091950094;41,0.00000033381045975047;42,0.00000011127015325015666;43,0;44,0;45,0;46,0;47,0;48,0.00000011127015325015665;49,0.000000055635076625078326;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0.00000016690522987523497;64,0.00000005563507662507835;65,0.0001573916317723466;66,0.0003228503496553296;67,0.000455929452942517;68,0.0006053652687574773;69,0.0007292645844015268;70,0.0008560569240300802;71,0.0009738363812453713;72,0.001071587210875634;73,0.001056843915569988;74,0.0010300278086367001;75,0.0010037680524696633;76,0.0009683841437361136;77,0.0009504696490628382;78,0.0009280487131829317;79,0.0008960585441235116;80,0.0008613422563094628;81,0.0008413136287244345;82,0.0008045944781518829;83,0.0007778340062952201;84,0.0007420606520252948;85,0.0007386112772745399;86,0.0007075669045177463;87,0.0006612785207656812;88,0.0006569389847889249;89,0.0006142112459408648;90,0.0005822210768814447;91,0.0005452793860023927;92,0.0005236373411952372;93,0.0004908126459864411;94,0.0004604358941491483;95,0.000437458607502991;96,0.00043423177305873637;97,0.00042555270110522416;98,0.00041993355836609126;99,0.0004056909787500712;100,0.0004031874003019427;101,0.00039745698740955963;102,0.0003890004557625477;103,0.0003865525123910443;104,0.0003911145886743007;105,0.00038577362131829316;106,0.0003813228151882869;107,0.0003816009905714123;108,0.0003867194176209195;109,0.0003711972312425226;110,0.0003528376559562468;111,0.00031311421124594085;112,0.00030621546174443114;113,0.00029436519042328943;114,0.0002751710889876374;115,0.0002668814625705008;116,0.00024190131316584058;117,0.0002323320799863271;118,0.00023400113228507944;119,0.00023989845040733778;120,0.00024740918575172333;121,0.00022988413661482364;122,0.00022610095140431836;123,0.00022432062895231587;124,0.00021892402651968324;125,0.00020679557981541618;126,0.00018103653933800487;127,0.00009430145487950778;128,0.0000179701297499003;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0.00000005563507662507835;21,0.00000005563507662507835;22,0;23,0;24,0;25,0.00000016690522987523497;26,0.00000033381045975047005;27,0.00000005563507662507833;28,0;29,0.00000011127015325015668;30,0.00000016690522987523502;31,0.00000033381045975047;32,0.0000005563507662507834;33,0.0000003894455363755483;34,0.0000007788910727510966;35,0.0000006119858428758616;36,0.0000011127015325015668;37,0.0000010014313792514098;38,0.0000014465119922520367;39,0.0000011683366091266452;40,0.000001168336609126645;41,0.0000027817538312539165;42,0.0000026148486013786817;43,0.0000018915926052526636;44,0.0000018359575286275853;45,0.000002837388907878995;46,0.0000028930239845040734;47,0.0000020584978351278983;48,0.0000025592135247536034;49,0.0000022254030650031335;50,0.000002225403065003133;51,0.000002169767988378055;52,0.0000017803224520025066;53,0.00000200286275850282;54,0.000003171199367629465;55,0.000003171199367629465;56,0.0000047846165897567365;57,0.000002169767988378055;58,0.0000026148486013786817;59,0.0000031155642910043864;60,0.000003838820287130405;61,0.0000037275501338802484;62,0.0000031155642910043864;63,0.0000032268344442545433;64,0.000007677640574260808;65,0.000583055603030821;66,0.0011320069040904688;67,0.0016809025700734916;68,0.002176221657266564;69,0.0026537931550162366;70,0.0031419353173246737;71,0.003593191423830684;72,0.004041387601122315;73,0.00395632156896257;74,0.0038586263744089327;75,0.003790195230160087;76,0.003666740995129038;77,0.003625014687660229;78,0.0035621470510738907;79,0.0035037858556941836;80,0.0033816112274255112;81,0.003336268639976073;82,0.00329559939896314;83,0.0032248872165726652;84,0.003130641396769783;85,0.0031004871852389907;86,0.0030371744680396514;87,0.0029379771264171368;88,0.0027929921167321827;89,0.0027157149952999485;90,0.0026626947672762492;91,0.0025490323057312143;92,0.0025055813108870277;93,0.0024500018693385745;94,0.002359316694439697;95,0.0022399238200022788;96,0.0021499062660229017;97,0.002101615019512334;98,0.0020013049763573177;99,0.0019135128254429443;100,0.0018433013587420954;101,0.001728915641200934;102,0.0016871336986555004;103,0.0016048494203270095;104,0.0015328576311741582;105,0.001450350812539167;106,0.0013595543674870393;107,0.0013004142810345812;108,0.0012417749102717483;109,0.0011603251580926338;110,0.0010296383631003248;111,0.0008627887683017149;112,0.0007861236327123568;113,0.0007239792521221444;114,0.0006326820913803907;115,0.0005621924492964166;116,0.00048524913832393324;117,0.00041865395160371445;118,0.0003754811321426537;119,0.0003387619815701019;120,0.00028613119908277784;121,0.00024345909531134276;122,0.00020868717242066882;123,0.00016901936278698797;124,0.00013007480914943313;125,0.00008795905614424884;126,0.00005279768771719934;127,0.000019972992508403122;128,0.000002893023984504073;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.000002781753831253917;46,0.00002865206446191534;47,0.00007277068022560246;48,0.00011972668489716857;49,0.00017118913077536604;50,0.00021614227268842932;51,0.0002609285093716174;52,0.00030432386913917844;53,0.0003526707507263716;54,0.00040702622058907316;55,0.0004550949267931408;56,0.0005087827757363414;57,0.0005357101528228794;58,0.0005798287685865665;59,0.0006308461338517632;60,0.0006892073292314704;61,0.000741504301259044;62,0.0007775558309120949;63,0.0008144418867145216;64,0.0008346930546060503;65,0.0007673746118897055;66,0.0006800275415883324;67,0.0005969643721870906;68,0.0005093391265025922;69,0.0003973457172563095;70,0.00027199988962000796;71,0.00013385799435993847;72,0.0000016134172221272715;73,0.0000011127015325015668;74,0.000001835957528627585;75,0.00000166905229875235;76,0.0000012796067623768015;77,0.00000133524183900188;78,0.0000016690522987523501;79,0.0000012239716857517233;80,0.0000008901612260012533;81,0.000001057066455876488;82,0.0000007788910727510967;83,0.000000500715689625705;84,0.0000009457963026263318;85,0.0000009457963026263318;86,0.0000008901612260012533;87,0.0000004450806130006267;88,0.000000500715689625705;89,0.00000038944553637554835;90,0.00000011127015325015666;91,0.00000005563507662507834;92,0.00000005563507662507832;93,0.0000002781753831253917;94,0.000000166905229875235;95,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0005416631060217627;2,0.000537657380504757;3,0.0005398827835697602;4,0.000531203711616248;5,0.0005299241048538712;6,0.0005365446789722555;7,0.0005254176636472398;8,0.000524805677804364;9,0.0005058341166752122;10,0.000492147887825443;11,0.0004898668496838147;12,0.0004987128268672022;13,0.0004920366176721929;14,0.0005002706090127043;15,0.0004949852767333219;16,0.0005022734717712073;17,0.0004936500348943201;18,0.0004885316078448128;19,0.00047423339315216773;20,0.00047629189098729566;21,0.000460936609838774;22,0.0004555400074061414;23,0.00046577686150515584;24,0.00046177113598815025;25,0.0004593788276932718;26,0.0004590450172335213;27,0.0004473616511422549;28,0.00044669403022275396;29,0.00046165986583490004;30,0.0004706727482481627;31,0.0004962092484190736;32,0.000517628752919729;33,0.0005510654339714009;34,0.0005680341323420497;35,0.0005862268023984504;36,0.0006445323627015326;37,0.0006594981983136785;38,0.0006837550917222126;39,0.0007033386386942403;40,0.0007415599363356691;41,0.0007679865977325813;42,0.0008003662123283769;43,0.0008227315131316584;44,0.0008518842932831994;45,0.000876363726998234;46,0.0009173111433942916;47,0.000938174297128696;48,0.0009645453234489831;49,0.0009799006045975046;50,0.0010069392518372927;51,0.0010375385439810856;52,0.0010625743284623712;53,0.0010736457087107618;54,0.001112979707884692;55,0.001133453416082721;56,0.0011518686264456218;57,0.0011763480601606566;58,0.0012210786617672192;59,0.0012426094364211245;60,0.0012544597077422661;61,0.0012889534552498149;62,0.0013230021221443625;63,0.0013289550753432461;64,0.0012785496959209252;65,0.0011250525195123338;66,0.0009472984496952087;67,0.0007740508210847148;68,0.0006031398656924742;69,0.0004375142425796161;70,0.0002829043646385233;71,0.00013786371987694414;72,0.00000133524183900188;73,0.00000133524183900188;74,0.000001168336609126645;75,0.00000033381045975047;76,0.0000007232559961260183;77,0.0000007232559961260183;78,0.00000044508061300062666;79,0.0000005007156896257049;80,0.0000007232559961260183;81,0.0000007232559961260182;82,0.0000009457963026263316;83,0.0000008345261493761751;84,0.0000002781753831253917;85,0.0000007788910727510967;86,0.00000100143137925141;87,0.0000005563507662507834;88,0.0000008901612260012533;89,0.0000007232559961260181;90,0.00000033381045975046994;91,0.00000005563507662507833;92,0.00000044508061300062666;93,0.000000500715689625705;94,0.00000016690522987523502;95,0;96,0.00000016690522987523497;97,0.00000022254030650031333;98,0.000000166905229875235;99,0.00000022254030650031338;100,0.0000004450806130006267;101,0.00000027817538312539163;102,0.00000038944553637554835;103,0.0000003894455363755483;104,0.00000033381045975047;105,0.00000033381045975046994;106,0.00000011127015325015666;107,0.0000005563507662507833;108,0.00000022254030650031333;109,0.00000033381045975046994;110,0.00000027817538312539174;111,0.00000044508061300062666;112,0.00000022254030650031333;113,0.00000022254030650031336;114,0.0000002781753831253917;115,0.00000033381045975047;116,0.00000027817538312539163;117,0;118,0.00000011127015325015665;119,0.00000016690522987523497;120,0.00000011127015325015665;121,0.000000055635076625078326;122,0.00000011127015325015664;123,0.00000011127015325015665;124,0.00000005563507662507834;125,0.0000005007156896257049;126,0.00000033381045975046994;127,0;128,0.00000005563507662507832;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "create_new_age:magnetite_block", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.0000003894455363755483;43,0.0000003894455363755484;44,0.00000044508061300062666;45,0.0000006676209195009399;46,0.0000005007156896257049;47,0.0000006119858428758616;48,0.0000008345261493761749;49,0.0000006676209195009399;50,0.0000008345261493761749;51,0.00000038944553637554825;52,0.0000006119858428758616;53,0.0000006119858428758616;54,0.0000006119858428758617;55,0.0000005007156896257049;56,0.0000005563507662507833;57,0.00000066762091950094;58,0.0000007232559961260181;59,0.0000006119858428758616;60,0.0000007788910727510966;61,0.00000038944553637554835;62,0.000000834526149376175;63,0.0000007232559961260183;64,0.000001502147068877115;65,0.00013235584729106133;66,0.00026465605950549764;67,0.0003871644982339201;68,0.0005219126538198598;69,0.0006304010532387626;70,0.0007594744310089445;71,0.0008861555004842477;72,0.0010052701995385404;73,0.0010194571440779354;74,0.0010084970339827948;75,0.0010267453391158206;76,0.0010209592911468125;77,0.0010325313870848288;78,0.0010256882726599442;79,0.001005715280151541;80,0.0010210149262234376;81,0.0010175099163960576;82,0.0010242973957443173;83,0.0010259664480430696;84,0.0010131703804193016;85,0.0010384843402837123;86,0.00104065410827209;87,0.0010147837976414288;88,0.0010032117017034123;89,0.0009948664402096507;90,0.0009910276199225204;91,0.0009949777103629009;92,0.0010120576788868;93,0.0009988165306500313;94,0.0009881345959380163;95,0.0009677165228166125;96,0.0009736694760154958;97,0.0009647122286788583;98,0.0009720560587933685;99,0.0009742258267817468;100,0.0009548648201162194;101,0.0009555880761123454;102,0.0009444610607873298;103,0.0009312755476271862;104,0.0009264909310374295;105,0.000929050144562183;106,0.0009148632000227882;107,0.0009129159723409104;108,0.0008732481627072296;109,0.0008797574666723636;110,0.0008478785677661939;111,0.0007476797947644277;112,0.000730822366547029;113,0.0007074556343644961;114,0.0006686223508801913;115,0.0006262284224918817;116,0.0005889529211530792;117,0.0005808301999658178;118,0.0005654749188172962;119,0.0005753779624565602;120,0.0005640840419016693;121,0.0005650854732809205;122,0.000517851293226229;123,0.0002692737708653791;124,0.000030098576454167382;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0.00000022254030650031336;22,0.00000011127015325015668;23,0;24,0.00000016690522987523497;25,0.000000166905229875235;26,0.00000027817538312539163;27,0.000000055635076625078326;28,0.0000006119858428758616;29,0.0000012796067623768017;30,0.0000017803224520025066;31,0.0000013908769156269582;32,0.0000015577821455021934;33,0.000002781753831253917;34,0.000003059929214379308;35,0.0000036719150572551698;36,0.0000035050098273799346;37,0.000003950090440380562;38,0.000004506441206631345;39,0.000003950090440380562;40,0.000004395171053381188;41,0.0000039500904403805615;42,0.000004840251666381815;43,0.000004895886743006894;44,0.000006843114424884634;45,0.000005563507662507833;46,0.0000052296972027573625;47,0.000004784616589756736;48,0.000005285332279382441;49,0.000005786047969008147;50,0.000005563507662507832;51,0.0000066762091950094;52,0.000008567801800262064;53,0.000005730412892383069;54,0.000004061360593630719;55,0.000004061360593630719;56,0.000007955815957386202;57,0.000006175493505383695;58,0.000005229697202757363;59,0.00000500715689625705;60,0.000005507872585882756;61,0.00000600858827550846;62,0.000005340967356007519;63,0.000003505009827379935;64,0.00000767764057426081;65,0.0007411704907992935;66,0.0014600869509485558;67,0.002100947398592833;68,0.002618687421665812;69,0.0031683619787215857;70,0.0037020692687859623;71,0.004189043094485274;72,0.00458032458838945;73,0.004475396833874551;74,0.00430075832834843;75,0.0040758813486298645;76,0.003955987758502821;77,0.003863355355922064;78,0.0036666297249757875;79,0.0034306257299322046;80,0.0032105890018800202;81,0.003095146217882983;82,0.0029720257933116847;83,0.002871048129237167;84,0.0027080929898023126;85,0.002475760909815986;86,0.002267518818008318;87,0.0021107391720788468;88,0.001916183309120948;89,0.0017536176152224692;90,0.0015922758930097417;91,0.0014277629714293852;92,0.0012357106869196148;93,0.001056955185723238;94,0.0008957803687403863;95,0.0007241461573520196;96,0.000549006936136273;97,0.0003781516158206574;98,0.00022098252435481116;99,0.00009775082963026265;100,0.00003093310260354356;101,0.0000013352418390018798;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.00017002079416623942;2,0.00022192832065743746;3,0.0002654349505782487;4,0.00031183460448356404;5,0.00035856806884862984;6,0.0004024085092291916;7,0.00044035163148749496;8,0.0004792405500484248;9,0.0005329840340682504;10,0.0005708715212499288;11,0.0006260058821853814;12,0.0007331034046886573;13,0.0008435390317894378;14,0.0009191471009229192;15,0.0009758392440038739;16,0.0010241304905144418;17,0.0010712534004158835;18,0.0011004618156440493;19,0.001152035531675497;20,0.0012091171202928274;21,0.0012805525586794281;22,0.001365952401298923;23,0.0014379998255284;24,0.0014752196917905771;25,0.0014923552953911012;26,0.0014741069902580754;27,0.0014989758695094855;28,0.0015605638993334472;29,0.001648522955477696;30,0.0017150625071212897;31,0.001759403663191477;32,0.001815316915199681;33,0.0018461387476499743;34,0.001897879368911297;35,0.0019428881459009856;36,0.0019579096165897565;37,0.001988119463197174;38,0.0020095946027744544;39,0.002051877261009514;40,0.0021111286176152223;41,0.0021528549250840316;42,0.0022442077209024096;43,0.0023328900330427844;44,0.0023836292229248565;45,0.002429917606676921;46,0.0024752045590497353;47,0.0024845512519227485;48,0.002490615475274882;49,0.0025663348145616134;50,0.0026213579053438155;51,0.0026221924314931925;52,0.0026358230252663357;53,0.0027001928089215527;54,0.002757107492309007;55,0.002774966351905657;56,0.0028535230801002677;57,0.002927962812624622;58,0.002986991628923831;59,0.0030462429855295393;60,0.0030678293952600697;61,0.0031089437168860022;62,0.0031006540904688655;63,0.003034782159744773;64,0.0029834309840198257;65,0.0026628616725061244;66,0.0023449072095938018;67,0.0020080924557055774;68,0.0016445728650373156;69,0.0012669219649062836;70,0.0008267928737252891;71,0.00041715180453483734;72,0.000003838820287130405;73,0.000002781753831253917;74,0.000005229697202757363;75,0.00000433953597675611;76,0.000008122721187261436;77,0.000006342398735258929;78,0.0000031155642910043864;79,0.000005118427049507207;80,0.000005841683045633225;81,0.000005285332279382442;82,0.000007176924884635104;83,0.0000071212898080100265;84,0.00000500715689625705;85,0.0000026704836780037595;86,0.000005841683045633226;87,0.000008512166723636986;88,0.000005786047969008146;89,0.000007622005497635731;90,0.00000973613840938871;91,0.00000834526149376175;92,0.00000634239873525893;93,0.000008122721187261438;94,0.000006064223352133538;95,0.00000600858827550846;96,0.00000467334643650658;97,0.000006787479348259558;98,0.000009903043639263945;99,0.00000600858827550846;100,0.000003171199367629465;101,0.0000045620762832564235;102,0.00000500715689625705;103,0.0000043395359767561105;104,0.000004061360593630718;105,0.000006064223352133539;106,0.000005118427049507207;107,0.0000025035784481285256;108,0.0000017246873753774286;109,0.000002225403065003133;110,0.000003171199367629465;111,0.0000045620762832564235;112,0.0000023366732182532896;113,0.00000133524183900188;114,0.0000023366732182532896;115,0.000002447943371503447;116,0.000005229697202757363;117,0.0000033937396741297785;118,0.0000013908769156269584;119,0.0000013352418390018802;120,0.0000018915926052526631;121,0.000002893023984504073;122,0.0000020028627585028196;123,0.0000026704836780037595;124,0.00000433953597675611;125,0.000004228265823505953;126,0.0000041726307468808745;127,0.000002726118754628838;128,0.0000007232559961260183;129,0.0000014465119922520367;130,0.0000020584978351278983;131,0.0000018915926052526631;132,0.0000009457963026263318;133,0.0000006119858428758617;134,0.00000044508061300062676;135,0.0000007232559961260183;136,0.0000006119858428758616;137,0.0000006676209195009399;138,0.0000011127015325015668;139,0.0000002781753831253917;140,0.000000055635076625078345;141,0.000000166905229875235;142,0.0000005007156896257049;143,0.00000011127015325015665;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0.0000005563507662507834;157,0.0000002781753831253917;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0.00000011127015325015665;24,0.000000055635076625078326;25,0.000000166905229875235;26,0;27,0.00000016690522987523497;28,0.00000016690522987523497;29,0.00000027817538312539163;30,0.0000007788910727510967;31,0.0000003894455363755483;32,0.00000044508061300062666;33,0.000000166905229875235;34,0.00000033381045975047;35,0.0000005563507662507834;36,0.0000007232559961260183;37,0.0000006676209195009401;38,0.0000006676209195009401;39,0.0000008345261493761751;40,0.000001168336609126645;41,0.0000005007156896257049;42,0.0000005563507662507834;43,0.00000100143137925141;44,0.0000012796067623768017;45,0.0000012239716857517235;46,0.0000016134172221272717;47,0.00000100143137925141;48,0.0000013352418390018802;49,0.0000012796067623768015;50,0.0000007788910727510966;51,0.0000005563507662507834;52,0.0000006676209195009401;53,0.0000007788910727510967;54,0.00000066762091950094;55,0.0000006119858428758616;56,0.0000003894455363755483;57,0.0000008901612260012533;58,0.000000500715689625705;59,0.0000003894455363755483;60,0.00000027817538312539163;61,0.000000055635076625078326;62,0.00000027817538312539163;63,0.000000055635076625078326;64,0.00000027817538312539163;65,0.00003327846880251951;66,0.00006003024767845952;67,0.00008465572346963481;68,0.00010144013064896314;69,0.00011292703537589728;70,0.00012390453143248305;71,0.0001342091907811343;72,0.00012573527317267703;73,0.00010298574262145359;74,0.00008947511198228223;75,0.00007416155714122942;76,0.00006095518082735145;77,0.00004478623668318806;78,0.00002470197402153478;79,0.000010793204865265197;80,0.0000020584978351278983;81,0;82,0;83,0;84,0;85,0.0000002225403065003133;86,0.0000006676209195009399;87,0.0000007232559961260183;88,0.0000007232559961260183;89,0.0000005563507662507833;90,0.00000011127015325015668;91,0.00000022254030650031336;92,0.00000033381045975047005;93,0.00000033381045975047005;94,0.00000033381045975047005;95,0.00000011127015325015668;96,0;97,0.000000055635076625078326;98,0.00000033381045975047;99,0.00000011127015325015665;100,0.00000027817538312539163;101,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0006357420205947702;2,0.0006415837036404034;3,0.0006411942581040277;4,0.0006234466686606279;5,0.0006237248440437532;6,0.000617215540078619;7,0.0005971869124935909;8,0.0005892310965362046;9,0.0005967974669572153;10,0.0006081470225887312;11,0.0006375223430467726;12,0.0006854797790975901;13,0.0007385000071212899;14,0.0007517967904346835;15,0.0007582504593231926;16,0.0007492375769099298;17,0.0007433402587876717;18,0.0007329921345354069;19,0.000725203223807896;20,0.0007316568926964052;21,0.0007462332827721757;22,0.0007239792521221444;23,0.0007111275494217512;24,0.0006902643956873469;25,0.0006894855046145959;26,0.0007091246866632485;27,0.00070311609838774;28,0.0006828092954195864;29,0.000675465465305076;30,0.0006786366646727056;31,0.00068536850894434;32,0.0006850346984845896;33,0.0006750203846920754;34,0.00067824721913633;35,0.0006786366646727056;36,0.0006671202038113143;37,0.0006781915840597049;38,0.0006749091145388253;39,0.0006582742266279269;40,0.0006436978365521563;41,0.0006549917571070473;42,0.0006510416666666665;43,0.0006731844271634479;44,0.0006741302234660741;45,0.0006695125121061927;46,0.000656382634022674;47,0.0006520987331225432;48,0.0006556593780265482;49,0.000670458308408819;50,0.0006714597397880704;51,0.0006618905066085569;52,0.000659832008773429;53,0.0006602214543098046;54,0.0006525994488121689;55,0.0006553255675667977;56,0.0006514867472796673;57,0.0006480373725289124;58,0.000649150074061414;59,0.0006528776241952943;60,0.0006620574118384322;61,0.0006500402352874152;62,0.0005670327009627983;63,0.00045509492679314073;64,0.0003519474947302455;65,0.00024546195806984567;66,0.00021124638594542246;67,0.00017291381815074346;68,0.0001409792841679485;69,0.00010654117173702501;70,0.00006971075101122315;71,0.00003204580413604512;72,0.00000044508061300062655;73,0.0000005563507662507834;74,0.00000044508061300062666;75,0.0000002781753831253916;76,0.0000002781753831253918;77,0.0000002781753831253917;78,0.0000004450806130006267;79,0.000000500715689625705;80,0.0000005007156896257049;81,0.0000007232559961260183;82,0.000000834526149376175;83,0.0000008901612260012533;84,0.0000007232559961260183;85,0.00000044508061300062666;86,0.0000003894455363755484;87,0.000000166905229875235;88,0.0000002781753831253917;89,0.00000022254030650031338;90,0.000000166905229875235;91,0.00000033381045975047;92,0.00000044508061300062666;93,0.0000003894455363755483;94,0.00000016690522987523502;95,0.00000033381045975047005;96,0.0000003894455363755483;97,0.00000038944553637554825;98,0.0000003894455363755483;99,0.0000006119858428758616;100,0.00000033381045975047;101,0.00000016690522987523502;102,0.00000011127015325015669;103,0.000000055635076625078345;104,0.000000166905229875235;105,0.00000033381045975047;106,0.000000055635076625078345;107,0.0000002781753831253917;108,0.0000006119858428758616;109,0.0000007232559961260183;110,0.000000055635076625078326;111,0.0000001112701532501567;112,0.00000016690522987523508;113,0.00000005563507662507835;114,0.0000002781753831253917;115,0.00000022254030650031338;116,0.00000022254030650031333;117,0.00000022254030650031333;118,0.00000022254030650031333;119,0.00000033381045975047;120,0.000000500715689625705;121,0.0000005563507662507834;122,0.00000011127015325015666;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0.00006336835227596421;2,0.00005902881629920811;3,0.00005941826183558366;4,0.00006197747536033727;5,0.00005824992522645702;6,0.00005919572152908335;7,0.00006119858428758616;8,0.0000621443805902125;9,0.00005841683045633226;10,0.00005769357446020623;11,0.00006208874551358742;12,0.00006676209195009399;13,0.00007521862359710589;14,0.00006993329131772347;15,0.00007766656696860935;16,0.00006882058978522189;17,0.00007633132512960747;18,0.0000706009122372244;19,0.00007199178915285137;20,0.0000688205897852219;21,0.00007277068022560246;22,0.00007232559961260184;23,0.00006648391656696861;24,0.0000693213054748476;25,0.00007093472269697486;26,0.00006926567039822253;27,0.00006759661809947019;28,0.00006781915840597049;29,0.00006915440024497237;30,0.00006659518672021876;31,0.00006681772702671908;32,0.00006581629564746767;33,0.00006609447103059305;34,0.00006431414857859055;35,0.00006459232396171594;36,0.00006926567039822253;37,0.00006553812026434228;38,0.000069599480857973;39,0.00006793042855922064;40,0.00006509303965134165;41,0.000066762091950094;42,0.00006169929997721187;43,0.00006993329131772347;44,0.00006882058978522189;45,0.00007193615407622629;46,0.0000680416987124708;47,0.00006592756580071782;48,0.00006336835227596423;49,0.0000649817694980915;50,0.00006815296886572098;51,0.00006837550917222127;52,0.00006481486426821626;53,0.00006275636643308836;54,0.00006325708212271406;55,0.00006403597319546517;56,0.00006309017689283883;57,0.00006587193072409275;58,0.00006464795903834102;59,0.00006169929997721187;60,0.00006097604398108584;61,0.00006398033811884008;62,0.00006320144704608898;63,0.00006236692089671281;64,0.00005997461260183444;65,0.000027428092776163616;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0004333972469093602;2,0.0005298684697772461;3,0.0006367990870506466;4,0.0007682091380390816;5,0.0008950571127442602;6,0.0010111675176607987;7,0.001122771481370706;8,0.0012177961922463397;9,0.0012610802818606506;10,0.0013420849534267645;11,0.0015478234667863045;12,0.0018576552085113657;13,0.0021477921331111488;14,0.0022875474455933457;15,0.002397649262234376;16,0.0025562092306158496;17,0.002698301216316299;18,0.002817137739987466;19,0.002943318093773144;20,0.003108776811656127;21,0.0032741242593858602;22,0.003460056685466872;23,0.0035222010660570843;24,0.0035786706688315387;25,0.0036341944753033673;26,0.003721708450834615;27,0.0038075533740671106;28,0.003932787931550163;29,0.004113991376118042;30,0.004242118957585598;31,0.0042900763936364154;32,0.004357005390816385;33,0.004461376794565031;34,0.004596458760610721;35,0.004677630337406712;36,0.004785061670369737;37,0.00486834738007748;38,0.005026962983535578;39,0.005165995040021649;40,0.0053521500064091605;41,0.005513491728621887;42,0.00559644362786988;43,0.005676558138209993;44,0.005778592868740386;45,0.005993177359283314;46,0.006071066466558423;47,0.006121805656440495;48,0.0062464838631572945;49,0.0064712495727226125;50,0.006585190209650772;51,0.006648892372386486;52,0.006782527826439925;53,0.006945928046487779;54,0.007085738994046601;55,0.007151388384464194;56,0.00719528445992138;57,0.007210139025380277;58,0.007319016870335555;59,0.007327640307212442;60,0.007200458522047514;61,0.007118674959408648;62,0.0070505776256195515;63,0.006902643956873469;64,0.006653510083746369;65,0.005673331303765738;66,0.004731763266962912;67,0.0038156760952543726;68,0.0029809274055716973;69,0.002194024881786589;70,0.0014368871239958982;71,0.0007102373881957501;72,0.000010626299635389962;73,0.000010515029482139805;74,0.000007844545804136045;75,0.0000079558159573862;76,0.00000801145103401128;77,0.000010181219022389334;78,0.00000940232794963824;79,0.00000500715689625705;80,0.000005452237509257676;81,0.000006398033811884008;82,0.000008512166723636984;83,0.000009235422719763001;84,0.000005786047969008147;85,0.000006731844271634478;86,0.000008178356263886514;87,0.000008289626417136673;88,0.00000834526149376175;89,0.000004617711359881502;90,0.000004283900900131031;91,0.000006564939041759243;92,0.000006453668888509086;93,0.000005507872585882756;94,0.0000034493747507548568;95,0.0000030599292143793086;96,0.000001947227681877742;97,0.0000018915926052526633;98,0.00000200286275850282;99,0.000003838820287130405;100,0.000005507872585882755;101,0.0000031711993676294655;102,0.000002169767988378055;103,0.0000024479433715034465;104,0.0000016690522987523501;105,0.0000016690522987523501;106,0.00000133524183900188;107,0.0000018359575286275849;108,0.0000018359575286275849;109,0.00000038944553637554835;110,0.0000006119858428758615;111,0.0000023923082948783683;112,0.0000022810381416282118;113,0.0000014465119922520363;114,0.0000006119858428758615;115,0.00000033381045975046994;116,0.00000011127015325015664;117,0.0000005563507662507832;118,0.0000006676209195009399;119,0.00000005563507662507832;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0.00000005563507662507833;47,0.0000006119858428758617;48,0.00000033381045975047;49,0.00000044508061300062666;50,0.0000009457963026263316;51,0.0000010570664558764883;52,0.0000007788910727510967;53,0.000000500715689625705;54,0.0000007788910727510966;55,0.0000008345261493761751;56,0.0000007788910727510967;57,0.0000007232559961260182;58,0.0000007788910727510965;59,0.0000006676209195009399;60,0.0000004450806130006266;61,0.0000007232559961260182;62,0.0000005563507662507833;63,0.00000100143137925141;64,0.0000015577821455021934;65,0.00012323169472454852;66,0.0002446274319204694;67,0.00036218434882925995;68,0.00047300942146641595;69,0.0005813309156554434;70,0.0007145769241725061;71,0.0008196159488406539;72,0.0009732800304791203;73,0.0009717778834102432;74,0.0009580360194838489;75,0.0009443497906340795;76,0.000936171434370193;77,0.0009529175924343417;78,0.000959593801629351;79,0.0009507478244459636;80,0.0009438490749444539;81,0.0009450730466302055;82,0.000943793439867829;83,0.0009620973800774797;84,0.0009496907579900871;85,0.0009504140139862131;86,0.0009621530151541046;87,0.0009338347611519398;88,0.0009307748319375605;89,0.000939565174044323;90,0.0009422356577223267;91,0.0009368390552896939;92,0.0009298846707115594;93,0.0009345023820714407;94,0.0009284381587193072;95,0.000909744772973281;96,0.0009129716074175354;97,0.00091258216188116;98,0.0009001199047171424;99,0.000882038504813992;100,0.0008790342106762376;101,0.0008708002193357261;102,0.0008020908997037543;103,0.00044246576439924796;104,0.00006581629564746767;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0.0000003894455363755483;23,0;24,0;25,0;26,0;27,0;28,0.00000016690522987523497;29,0;30,0;31,0.00000033381045975047005;32,0.00000044508061300062666;33,0.00000016690522987523497;34,0.0000007232559961260182;35,0.0000011127015325015668;36,0.000002225403065003134;37,0.0000015577821455021936;38,0.0000009457963026263315;39,0.000000834526149376175;40,0.0000013908769156269584;41,0.0000017803224520025066;42,0.0000013352418390018802;43,0.0000002781753831253917;44,0.0000006676209195009401;45,0.0000011127015325015665;46,0.000001168336609126645;47,0.0000012239716857517233;48,0.0000023923082948783683;49,0.0000013908769156269582;50,0.0000018359575286275853;51,0.000002726118754628838;52,0.0000018359575286275855;53,0.0000016134172221272719;54,0.0000018359575286275853;55,0.00000233667321825329;56,0.0000020584978351278983;57,0.000001279606762376802;58,0.0000025035784481285243;59,0.000002114132911752976;60,0.0000016134172221272717;61,0.0000012239716857517233;62,0.0000012796067623768015;63,0.0000020028627585028196;64,0.000003616279980630092;65,0.0002442379863840939;66,0.0004696156817922862;67,0.0006965511593459808;68,0.0008946676672078848;69,0.001086719951717655;70,0.0012440003133367516;71,0.0013844232467384494;72,0.0015331358065572836;73,0.001455357969435424;74,0.0013960509777530905;75,0.0013156026569532274;76,0.0012795511273001768;77,0.0012331514733948613;78,0.0011787960035321598;79,0.0011461382135532386;80,0.001112312086965191;81,0.0010444929285592206;82,0.0009573683985643479;83,0.0009162540769384151;84,0.000879312386059363;85,0.0008157771285535237;86,0.0007618667393038227;87,0.0007154670853985074;88,0.0006586080370876773;89,0.0005788273372073151;90,0.0005268641756394918;91,0.0004773489574431721;92,0.00041570529254258525;93,0.00033609149789209816;94,0.0002909714507491597;95,0.00025714532416111203;96,0.0002056828782829146;97,0.00013853134079644505;98,0.00006909876516834728;99,0.000026760471856662678;100,0.0000071212898080100265;101,0.0000007232559961260185;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.0002761168852902637;30,0.0014957490350652309;31,0.0027059232218139347;32,0.0029343608464365064;33,0.0029356960882755087;34,0.00294042506978864;35,0.0029246247080271176;36,0.0029230112908049904;37,0.00291894993021136;38,0.0029001452743120833;39,0.002851520217341765;40,0.00284795957243776;41,0.002887683017148066;42,0.0028796159310374297;43,0.0028593647631459007;44,0.002832270480829488;45,0.002859921113912152;46,0.0028926345389676976;47,0.0029173921480658573;48,0.0028733291673787957;49,0.002875944015980174;50,0.002841617173702501;51,0.002795495695180311;52,0.002801003567766194;53,0.002821143465504472;54,0.002831714130063237;55,0.0028058994545092004;56,0.0027874286090696747;57,0.0028068452508118276;58,0.0028156912279952142;59,0.0028084030329573293;60,0.0028056769142027005;61,0.002809293194183331;62,0.002801337378225944;63,0.002733852030279724;64,0.00268472625761978;65,0.0023776206346493474;66,0.0020332395103401127;67,0.0016763404937902354;68,0.0013448110721813935;69,0.0010013201090981602;70,0.0006652842462826867;71,0.0003362027680453484;72,0.0000035606449040050133;73,0.0000041726307468808745;74,0.000004617711359881502;75,0.0000043395359767561105;76,0.000005285332279382441;77,0.000004951521819631972;78,0.000004061360593630719;79,0.000005340967356007521;80,0.0000051740621261322856;81,0.000006231128582008773;82,0.00000467334643650658;83,0.0000036719150572551698;84,0.000004617711359881501;85,0.00000500715689625705;86,0.000004895886743006893;87,0.000003226834444254543;88,0.0000024479433715034465;89,0.0000030599292143793086;90,0.0000030042941377542303;91,0.0000035606449040050133;92,0.000004784616589756737;93,0.000002726118754628838;94,0.0000031155642910043864;95,0.000002948659061129152;96,0.000003505009827379935;97,0.0000031155642910043864;98,0.0000027817538312539165;99,0.000004562076283256423;100,0.000003783185210505327;101,0.000002726118754628838;102,0.00000433953597675611;103,0.00000433953597675611;104,0.0000033381045975047;105,0.0000048402516663818135;106,0.0000037275501338802493;107,0.000003226834444254543;108,0.00000300429413775423;109,0.0000033937396741297785;110,0.0000026148486013786817;111,0.000003171199367629465;112,0.0000037831852105053263;113,0.0000027261187546288378;114,0.0000029486590611291512;115,0.0000035050098273799346;116,0.0000017246873753774284;117,0.0000017246873753774284;118,0.000002114132911752977;119,0.0000017803224520025066;120,0.0000018359575286275849;121,0.0000027817538312539165;122,0.0000032268344442545433;123,0.0000024479433715034465;124,0.0000022810381416282118;125,0.0000027817538312539165;126,0.000000834526149376175;127,0.0000006119858428758615;128,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "actuallyadditions:black_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.0000073438301145103395;37,0.00005424419970945137;38,0.00012957409345980741;39,0.00020356874537116163;40,0.00029742511963766873;41,0.0003606822017603828;42,0.0004426883047057483;43,0.0005081707898934655;44,0.0005963523863442147;45,0.000686759385859967;46,0.0007866799834786076;47,0.0008745277694696062;48,0.0009308861020908106;49,0.0010011532038682845;50,0.0010911707578476614;51,0.0011583222953341309;52,0.0012176292870164644;53,0.00133874684882926;54,0.0014061209266222298;55,0.0014806719292998348;56,0.0015644027196205776;57,0.0016247667777587876;58,0.0016852421060502478;59,0.001776984347405002;60,0.001887086164046032;61,0.001954571511992252;62,0.001989287799806301;63,0.0020657303950891584;64,0.002114188546829602;65,0.0021807837335498202;66,0.0022437070052127844;67,0.002320093965419017;68,0.002363656230416453;69,0.002427024582692417;70,0.0025074729034922803;71,0.0025718426871474956;72,0.002635656120036461;73,0.002641163992622344;74,0.0025702292699253688;75,0.0024589591166752126;76,0.002399040139150003;77,0.002338008460092292;78,0.00221255136230274;79,0.002174163159431436;80,0.002129265652594998;81,0.002076690505184299;82,0.0019434444966672363;83,0.0018541501986839857;84,0.0017763167264855009;85,0.0017264676978294312;86,0.0016366170490799293;87,0.0016026240172620065;88,0.001520117198627015;89,0.0014072336281547315;90,0.0013336840568563776;91,0.001251511048681137;92,0.0011862511037999202;93,0.0011017970574830512;94,0.0010257439077365693;95,0.0009607621382384777;96,0.0008773651583774853;97,0.00081672292485615;98,0.0007247581431948954;99,0.0006337947929128925;100,0.0005850584657893236;101,0.0004899781198370649;102,0.0004259421466415997;103,0.00035984767561100665;104,0.0002878558864581553;105,0.0002262678566341936;106,0.0001635114902011052;107,0.00009435708995613284;108,0.00003532827365692474;109,0.000005229697202757363;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0.005890196832450293;2,0.005661759207827723;3,0.005506704249273628;4,0.005322941591180994;5,0.005176176259044039;6,0.005003262440893294;7,0.004853381544465334;8,0.004631953939497523;9,0.004436674820543497;10,0.004269157604825386;11,0.0040743235664843615;12,0.003937350007833419;13,0.0037674404838204294;14,0.003640703779268501;15,0.0035109627805788184;16,0.003314626595168917;17,0.0031472206496040564;18,0.002988159965532957;19,0.002839503040790748;20,0.002658243961146243;21,0.00253189670213069;22,0.002367940131316584;23,0.0021950263131658406;24,0.0020596661717370247;25,0.0018649434035492509;26,0.001706884150857403;27,0.001588770883182362;28,0.001439557607673902;29,0.0012830561371275566;30,0.0011545947452002506;31,0.0010296939981769499;32,0.0009595938016293511;33,0.0009469090041588331;34,0.0009449617764769555;35,0.0009414567666495757;36,0.0009304410214778101;37,0.0009249887839685524;38,0.0009083538960576538;39,0.0009178674941605423;40,0.0009187576553865435;41,0.0009223183002905486;42,0.0009274367273400558;43,0.000931776263316812;44,0.0009228746510567994;45,0.0009008987957898934;46,0.000929717765481684;47,0.0009220957599840483;48,0.0009149188350994133;49,0.0009337234909986896;50,0.0009298290356349342;51,0.0009200928972255456;52,0.0009193140061527945;53,0.0009317762633168119;54,0.0009301072110180596;55,0.0009426807383353273;56,0.0009209830584515468;57,0.0009165878873981655;58,0.000914084308950037;59,0.0009217063144476728;60,0.0009177005889306671;61,0.0009035692794678973;62,0.0008879358229362502;63,0.000893443695522133;64,0.0008749172150059819;65,0.000766261910357204;66,0.0006642271798268102;67,0.000554737349028656;68,0.0004348993939782373;69,0.0003284694923944624;70,0.00021096821056229705;71,0.00010999054648777986;72,0.0000007788910727510968;73,0.0000014465119922520371;74,0.0000015577821455021932;75,0.0000010570664558764883;76,0.0000010014313792514098;77,0.0000008901612260012533;78,0.00000033381045975047;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.00000037052961032302166;43,0.000005557944154845323;44,0.000006299003375491368;45,0.00000037052961032302166;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0.000000584116094468892;54,0;55,0.0000003315931197400502;56,0.00000019370471782420939;57,0.0000022103467179712823;58,0.000000584116094468892;59,0.000002661790697281092;60,0.000000584116094468892;61,0.00000020842290580669966;62,0.0000005368089455862244;63,0.0000002907668507391073;64,0;65,0;66,0;67,0;68,0.0000012186903849996328;69,0;70,0.0000005719981315515866;71,0.0000022879925262063463;72,0.000004003986920861106;73,0.0000017159943946547598;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0.00000014256488385176318;82,0.00000014256488385176318;83,0;84,0.0000011439962631031731;85,0.0000005719981315515866;86,0.0000007145630154033498;87,0;88,0;89,0.00000037052961032302166;90,0;91,0.0000003598894019184755;92,0.00000037052961032302166;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "draconicevolution:deepslate_draconium_ore", + "distrib": "0,0;1,0.00010626299635389962;2,0.00010192346037714352;3,0.00009597050717826014;4,0.00009485780564575856;5,0.0000990860714692645;6,0.0001032587022161454;7,0.00009713884378738678;8,0.0000867907195351222;9,0.0000870688949182476;10,0.00009663812809776107;11,0.00010336997236939555;12,0.00010403759328889648;13,0.00011505333846066197;14,0.00010876657480202814;15,0.000057081588617330365;16,0.000010125583945764256;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.002463020477268843;2,0.0023912512284224923;3,0.002359984315359198;4,0.0023226531789437704;5,0.002284988232068592;6,0.002230799667435766;7,0.0021648721016350484;8,0.002131602325813251;9,0.002132659392269128;10,0.002083199809149433;11,0.0020472039145730076;12,0.002017383513501965;13,0.0020078699153990775;14,0.001970316238677149;15,0.001953180635076625;16,0.0019233602340055832;17,0.0018749020822651397;18,0.0018405196049108413;19,0.0018227163803908163;20,0.0017881669978066428;21,0.0017658016970033613;22,0.0017463850552612088;23,0.0016800124088474904;24,0.001688858386030878;25,0.0016560336908220817;26,0.0016510821690024497;27,0.0016149193691961487;28,0.0015913857317837407;29,0.001566683757762206;30,0.0015357506551586624;31,0.0015107705057540023;32,0.0014847889249700904;33,0.0014803381188400844;34,0.0014334377492451432;35,0.0014109611782886116;36,0.0013989440017375945;37,0.0013856472184242009;38,0.0013441990863385174;39,0.0013262289565886174;40,0.0013129878083518486;41,0.0012809420042158037;42,0.0012900105217056915;43,0.0012639176707685295;44,0.0012325951226286106;45,0.0012345979853871133;46,0.0012251400223608497;47,0.0011889215874779238;48,0.0011600469827095085;49,0.0011440240806414857;50,0.0011354562788412235;51,0.001106414768842933;52,0.0010750365856263887;53,0.0010637426650714978;54,0.0010515585832906057;55,0.001021404371759813;56,0.001006994886913918;57,0.0009885240414743918;58,0.0009201485323021705;59,0.0006695681471828177;60,0.00040502335783057026;61,0.00033753800988435025;62,0.0003172868419928217;63,0.0002906376402894092;64,0.00026448915427562236;65,0.0002230966572665641;66,0.00017792097504700053;67,0.00013975531248219678;68,0.00009430145487950778;69,0.00006709590240984448;70,0.000040279795476556714;71,0.000017914494673275224;72,0.00000033381045975047;73,0.00000044508061300062666;74,0.00000038944553637554835;75,0.00000011127015325015665;76,0.00000022254030650031333;77,0.00000011127015325015666;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.0000014343418192403009;112,0.0000005737367276961204;113,0;114,0.00000022254030650031336;115,0.00000033381045975046994;116,0.00000033381045975047;117,0.0000008813839809748436;118,0.0000016168944144163393;119,0.0000005389648048054464;120,0.000001504742364571129;121,0.000002872160830769669;122,0.0000017125172023656926;123,0.0000010083857638295448;124,0.0000016960005389926227;125,0.000000845827024315644;126,0.0000009249331488919273;127,0.000001263047966851861;128,0.0000019922331193990513;129,0.0000014793767903906949;130,0.0000014464277279482957;131,0.000001046466350401804;132,0.0000007406419575713554;133,0.0000009308040605104252;134,0.0000015897319992886967;135,0.0000010987927633452969;136,0.0000026444047358357547;137,0.0000012274488780407905;138,0.00000025035784481285246;139,0.00000005563507662507834;140,0;141,0.00000016690522987523502;142,0.00000016690522987523502;143,0.0000000834526149376175;144,0;145,0;146,0.00000005911226891414572;147,0.0000001773368067424372;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0.00000005563507662507835;8,0.00000005563507662507835;9,0;10,0;11,0;12,0;13,0.000000055635076625078326;14,0.000000055635076625078326;15,0;16,0.000000055635076625078306;17,0.000000723255996126018;18,0.0000007788910727510963;19,0.0000011127015325015665;20,0.0000016690522987523497;21,0.0000013352418390018802;22,0.0000013908769156269584;23,0.0000010570664558764885;24,0.0000007232559961260183;25,0.000001168336609126645;26,0.0000008345261493761751;27,0.0000005563507662507833;28,0.0000003894455363755483;29,0.0000007788910727510966;30,0.0000015021470688771152;31,0.000002114132911752977;32,0.000001835957528627585;33,0.0000016134172221272717;34,0.0000013352418390018802;35,0.0000007788910727510967;36,0.0000010570664558764885;37,0.0000008345261493761751;38,0.0000008901612260012535;39,0.0000007788910727510969;40,0.0000008345261493761752;41,0.0000004450806130006267;42,0;43,0.00000016690522987523497;44,0.00000027817538312539163;45,0.0000005007156896257049;46,0.00000033381045975046994;47,0.00000033381045975047;48,0.0000003894455363755483;49,0.0000008345261493761751;50,0.0000008345261493761751;51,0.0000015577821455021934;52,0.0000020584978351278983;53,0.00000133524183900188;54,0.0000011683366091266452;55,0.0000007788910727510968;56,0.0000006676209195009401;57,0.000000500715689625705;58,0.0000007232559961260185;59,0.0000012239716857517233;60,0.000001390876915626958;61,0.0000012796067623768017;62,0.0000008345261493761749;63,0.00000038944553637554835;64,0.0000005563507662507834;65,0.0004755129999145446;66,0.0009813471165897565;67,0.0015191714023243888;68,0.0020699586609126642;69,0.002671930189996012;70,0.0032707305197117297;71,0.0039282258552669055;72,0.004581381654845325;73,0.004714182582749388;74,0.0048266210726086705;75,0.004969603219535122;76,0.005074475338973395;77,0.00522747179969236;78,0.005283329416623938;79,0.005246554630974761;80,0.005164771068335898;81,0.005083766396769782;82,0.0049509654688657204;83,0.004767425351079588;84,0.004601299012277103;85,0.004549780931322281;86,0.004455868921979149;87,0.0042890193271805386;88,0.0041536591857517235;89,0.003983805296815359;90,0.0038549544593516776;91,0.003715143511792856;92,0.0035765009008431607;93,0.003452156504586111;94,0.0033410532565658294;95,0.003222216732894662;96,0.0030666054235743176;97,0.0029465449282173985;98,0.002826317527630604;99,0.002634209608044209;100,0.0025430237174557057;101,0.0024479433715034467;102,0.0022918313464934765;103,0.002144231488207144;104,0.00199924647852219;105,0.0018897566477240357;106,0.0017548415869082208;107,0.0016558667855922065;108,0.001521897521079018;109,0.0014002792435765965;110,0.0012512885083746368;111,0.001041154823961716;112,0.0009060728579160259;113,0.0008014232787842534;114,0.0006793042855922064;115,0.0005695919144875519;116,0.0004817997635731784;117,0.0003933399917393038;118,0.0003368147538882242;119,0.00027155480900700735;120,0.00023366732182532898;121,0.00023082993291745;122,0.00022866016492907191;123,0.00021241472255454906;124,0.00020879844257391895;125,0.0002079639164245428;126,0.0001956129294137754;127,0.00017853296088987634;128,0.00017725335412749956;129,0.00016924190309348827;130,0.0001587268736113485;131,0.0001540535271748419;132,0.00015494368840084316;133,0.00014020039309519742;134,0.00013001917407280805;135,0.00006982202116447331;136,0.000008734707030137299;137,0;138,0;139,0;140,0;141,0.00000233667321825329;142,0.000011905906397766764;143,0.00002753936292941377;144,0.000045064412066313445;145,0.0000636465276590896;146,0.00007872363342448583;147,0.00008528857246624508;148,0.00010209036560701875;149,0.00010821022403577734;150,0.00011110324802028143;151,0.0001327452928274369;152,0.0001365284780379422;153,0.00013341291374693783;154,0.00014031166324844757;155,0.00014364976784595227;156,0.00014086801401469833;157,0.00014109055432119864;158,0.00015193939426308894;159,0.00015127177334358797;160,0.00016262132897510394;161,0.00016467982681023187;162,0.00016523617757648265;163,0.00015655710562297042;164,0.00015021470688771147;165,0.00015210629949296417;166,0.0001603959259101008;167,0.00015060415242408703;168,0.00014359413276932717;169,0.00014231452600695036;170,0.00014548572537457984;171,0.00014159127001082435;172,0.0001330234682105623;173,0.00012729305531817924;174,0.0001239549507206745;175,0.00012100629165954536;176,0.00012835012177405574;177,0.00012345423503104882;178,0.00012189645288554664;179,0.00011010181664103001;180,0.00010698625235002564;181,0.0001022016357602689;182,0.00009580360194838489;183,0.0000931887533470062;184,0.00009196478166125448;185,0.00009691630348088645;186,0.00009391200934313222;187,0.00008534420754287017;188,0.00008695762476499743;189,0.00008367515524411781;190,0.00007416155714122943;191,0.00007727712143223381;192,0.00007338266606847832;193,0.00007121289808010026;194,0.00007299322053210276;195,0.00006459232396171594;196,0.00005964080214208397;197,0.00005685904831083006;198,0.000058249925226457024;199,0.00005702595354070529;200,0.00004951521819631971;201,0.00004717854497806642;202,0.000052018796644448246;203,0.000050627919728821275;204,0.000046288383752065174;205,0.00003838820287130405;206,0.000040502335783057026;207,0.000037664946875178034;208,0.0000351613684270495;209,0.00003532827365692474;210,0.00003193453398279496;211,0.00002970913091779183;212,0.00002436816356178431;213,0.000021697679883780547;214,0.000019583546972027575;215,0.000017970129749900303;216,0.000016189807297897796;217,0.000011961541474391842;218,0.000009291057796388082;219,0.000007399465191135419;220,0.000006398033811884009;221,0.000005507872585882754;222,0.00000634239873525893;223,0.000007232559961260184;224,0.0000056191427391329124;225,0.000004228265823505953;226,0.0000036162799806300915;227,0.000003838820287130406;228,0.000003115564291004387;229,0.0000030599292143793086;230,0.0000030599292143793086;231,0.000002503578448128525;232,0.0000015021470688771152;233,0.000001168336609126645;234,0.0000013908769156269582;235,0.00000166905229875235;236,0.000002948659061129152;237,0.0000022810381416282113;238,0.0000021141329117529766;239,0.0000017803224520025064;240,0.0000017803224520025064;241,0.0000022810381416282113;242,0.0000008345261493761751;243,0.000001168336609126645;244,0.0000021697679883780552;245,0.0000012239716857517235;246,0.0000008345261493761751;247,0.0000008901612260012532;248,0.0000008901612260012532;249,0.0000007788910727510967;250,0.0000005563507662507833;251,0.00000100143137925141;252,0.0000006119858428758617;253,0.0000007232559961260185;254,0.0000017246873753774282;255,0.0000008901612260012532;256,0.00000100143137925141;257,0.000001057066455876488;258,0.0000007788910727510967;259,0.0000017246873753774282;260,0.0000017803224520025064;261,0.0000007788910727510967;262,0.000000166905229875235;263,0.00000027817538312539163;264,0.00000066762091950094;265,0.00000066762091950094;266,0.0000007788910727510966;267,0.000000500715689625705;268,0.00000038944553637554835;269,0.00000066762091950094;270,0.0000004450806130006266;271,0.0000007232559961260182;272,0.0000006119858428758617;273,0.0000008345261493761751;274,0.0000005563507662507834;275,0.0000002781753831253917;276,0.0000004450806130006266;277,0;278,0.00000027817538312539163;279,0.0000004450806130006266;280,0.00000011127015325015665;281,0.00000027817538312539163;282,0.000000166905229875235;283,0.00000011127015325015665;284,0;285,0.0000002225403065003133;286,0.0000004450806130006266;287,0.000000055635076625078326;288,0;289,0;290,0.0000002225403065003133;291,0.000000500715689625705;292,0.0000002225403065003133;293,0.000000166905229875235;294,0.0000002225403065003133;295,0.000000166905229875235;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00000033381045975047005;30,0.0000007232559961260183;31,0.0000008901612260012533;32,0.00000033381045975047005;33,0.000000500715689625705;34,0.0000008901612260012533;35,0.0000009457963026263318;36,0.0000009457963026263316;37,0.0000011127015325015665;38,0.0000011127015325015668;39,0.0000009457963026263316;40,0.0000012239716857517233;41,0.0000032268344442545437;42,0.0000023923082948783683;43,0.0000020584978351278983;44,0.0000011127015325015668;45,0.0000018915926052526631;46,0.0000010014313792514102;47,0.0000017246873753774284;48,0.000002503578448128525;49,0.000002781753831253917;50,0.000003393739674129778;51,0.0000018359575286275849;52,0.0000016690522987523501;53,0.0000010570664558764885;54,0.0000022810381416282118;55,0.00000200286275850282;56,0.0000017803224520025066;57,0.0000026704836780037595;58,0.0000022810381416282113;59,0.0000021141329117529766;60,0.0000026704836780037604;61,0.0000023923082948783687;62,0.0000028930239845040734;63,0.00000166905229875235;64,0.000004450806130006267;65,0.00033475625605309633;66,0.0006674540142710648;67,0.0009952558857460264;68,0.0013326269904005011;69,0.001680401854383866;70,0.001983334846607417;71,0.002267185007548567;72,0.0025882550347518943;73,0.002602386344214664;74,0.0026168514641371843;75,0.0026304264228337038;76,0.002654683316242238;77,0.0026345434185039594;78,0.002614403520765681;79,0.002639439305246966;80,0.0026347103237338346;81,0.002653626249786361;82,0.0026590228522189938;83,0.0026289242757648263;84,0.0025883663049051445;85,0.0026051124629692933;86,0.002573456104369623;87,0.002597601727624907;88,0.002578852706802256;89,0.002596322120862531;90,0.002593929812567652;91,0.0025925945707286503;92,0.0025548183537002223;93,0.002576349128354127;94,0.002551146438642967;95,0.0025424673666894545;96,0.0025688383930097414;97,0.002563219250270609;98,0.0025129807760781633;99,0.002451392746254202;100,0.002416231377827152;101,0.002433255711274426;102,0.0024270245826924176;103,0.0024036022154332592;104,0.0023863553416794848;105,0.0023686633873127097;106,0.0023378415548624167;107,0.0022908855501908507;108,0.002287491810516721;109,0.0022830966394633396;110,0.0021495168204865266;111,0.0019342090739474732;112,0.0018530931322281092;113,0.0017742582286503733;114,0.0016997072259727682;115,0.001634224740785051;116,0.0015403127314419188;117,0.0015014794479576142;118,0.0014537445522132969;119,0.001422477639150003;120,0.0013910994559334588;121,0.0014160796053381188;122,0.0014229227197630034;123,0.0013577184099584118;124,0.0012990790391955794;125,0.0013031403997892097;126,0.0011163178124821969;127,0.0005876176793140773;128,0.00010587355081752406;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000012239716857517233;46,0.000011071380248390588;47,0.000026259756167036973;48,0.00004384044038056173;49,0.00006587193072409275;50,0.00008645690907537173;51,0.00010464957913177234;52,0.00012011613043354412;53,0.00014504064476157923;54,0.00016289950435822938;55,0.00017296945322736854;56,0.0001922748248162707;57,0.00021564155699880364;58,0.00022476570956531645;59,0.0002573678644676124;60,0.000263487722896371;61,0.00028284872956189824;62,0.00029992869808579726;63,0.00031661922107332075;64,0.0003333653791374693;65,0.00029926107716629635;66,0.00027222242992650826;67,0.00023110810830057543;68,0.00020089826169315787;69,0.0001537753517917165;70,0.00010709752250327579;71,0.00005463364524582693;72,0.0000010014313792514098;73,0.00000100143137925141;74,0.0000012239716857517233;75,0.0000003894455363755483;76,0.000000500715689625705;77,0.0000007788910727510967;78,0.0000012239716857517235;79,0.0000005563507662507834;80,0.0000007232559961260185;81,0.0000005007156896257049;82,0.0000005007156896257049;83,0.0000010570664558764885;84,0.0000010570664558764885;85,0.000000166905229875235;86,0.0000007788910727510966;87,0.0000013908769156269582;88,0.0000005563507662507834;89,0.0000009457963026263318;90,0.0000010570664558764885;91,0.0000011127015325015668;92,0.0000015577821455021934;93,0.0000005563507662507834;94,0.0000015577821455021932;95,0.000001502147068877115;96,0.0000008345261493761751;97,0.00000100143137925141;98,0.0000009457963026263316;99,0.0000012796067623768015;100,0.0000020584978351278983;101,0.000001835957528627585;102,0.0000012239716857517233;103,0.0000009457963026263316;104,0.000001168336609126645;105,0.0000018915926052526633;106,0.0000011127015325015668;107,0.0000011127015325015665;108,0.0000008901612260012532;109,0.00000100143137925141;110,0.000001502147068877115;111,0.000001057066455876488;112,0.0000014465119922520367;113,0.0000010014313792514098;114,0.00000044508061300062676;115,0.000000500715689625705;116,0.00000027817538312539163;117,0.0000007232559961260181;118,0.0000007232559961260183;119,0.00000033381045975046994;120,0.0000006676209195009399;121,0.0000011127015325015665;122,0.0000012796067623768015;123,0.0000006119858428758617;124,0.00000033381045975047;125,0.00000011127015325015666;126,0.0000003894455363755483;127,0.00000044508061300062666;128,0.0000002225403065003133;129,0.0000002781753831253917;130,0.0000003894455363755483;131,0.0000006676209195009401;132,0.00000016690522987523497;133,0;134,0.0000002781753831253917;135,0.0000004450806130006266;136,0.000000055635076625078326;137,0;138,0;139,0;140,0;141,0.00000011127015325015668;142,0.00000022254030650031336;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.00018977124636814218;2,0.0002296615963083234;3,0.0002738914822252606;4,0.00032863639762433774;5,0.000397735162792685;6,0.00045865557169714577;7,0.0005040537942232097;8,0.0005389369872671338;9,0.0005735976400045577;10,0.0006309574040050134;11,0.0007357738883666609;12,0.0008443735579388139;13,0.0009945326297499002;14,0.0011006287208739248;15,0.0011997704274198141;16,0.0012806081937560532;17,0.001318161870477981;18,0.0013576627748817865;19,0.001418471913632997;20,0.0014959715753717312;21,0.0015330245364040336;22,0.0015591730224178205;23,0.001630664095881046;24,0.0016923633958582577;25,0.0017357031205491938;26,0.001739987021449325;27,0.0018036335491084144;28,0.0019249180161510855;29,0.002000804260667692;30,0.0020182180396513417;31,0.0020971642133823278;32,0.0021760547520366887;33,0.0022343603123397716;34,0.002195248853472341;35,0.002186959227055204;36,0.002292832777872728;37,0.0023746163405115937;38,0.0023832954124651056;39,0.0024402657309291857;40,0.002518544283740671;41,0.002620801554577565;42,0.0026717632847661366;43,0.0027048661553580587;44,0.002772295868227654;45,0.002862814137896656;46,0.002868322010482539;47,0.0029106046687175985;48,0.002946934373753774;49,0.002980371054805446;50,0.0030122499537116165;51,0.0029206189825101126;52,0.0027735754749900303;53,0.002708037354725688;54,0.0026759359155130173;55,0.0026172409096735603;56,0.002537015129180197;57,0.0024817694980914943;58,0.0024220174257961608;59,0.0023085218694810007;60,0.002244986611975161;61,0.0022375315117074005;62,0.002175832211730189;63,0.002055493540990144;64,0.0019497868954024954;65,0.001666826895687347;66,0.0013921565223893352;67,0.0011227158462940809;68,0.000877810238990486;69,0.0006429189454794052;70,0.0004061360593630717;71,0.00019450022788127384;72,0.0000013352418390018802;73,0.0000007232559961260182;74,0.0000016134172221272719;75,0.000003616279980630092;76,0.000004228265823505954;77,0.0000022810381416282118;78,0.0000008345261493761751;79,0.00000038944553637554846;80,0.00000044508061300062676;81,0.0000008345261493761752;82,0.000001502147068877115;83,0.0000017246873753774286;84,0.0000012239716857517235;85,0.0000009457963026263316;86,0.0000017803224520025066;87,0.000002392308294878368;88,0.000001057066455876488;89,0.000000500715689625705;90,0.0000007232559961260182;91,0;92,0.00000022254030650031333;93,0.00000033381045975047;94,0.0000007788910727510967;95,0.000001502147068877115;96,0.0000009457963026263317;97,0.00000005563507662507833;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000022254030650031333;28,0.00000011127015325015665;29,0.0000002225403065003133;30,0.00000005563507662507833;31,0.00000033381045975047;32,0.0000010570664558764883;33,0.0000011683366091266448;34,0.000001168336609126645;35,0.0000018915926052526636;36,0.000000834526149376175;37,0.0000008345261493761751;38,0.0000016690522987523497;39,0.0000015021470688771154;40,0.0000025035784481285256;41,0.0000012239716857517237;42,0.0000021141329117529766;43,0.0000036719150572551698;44,0.0000036719150572551698;45,0.000004283900900131032;46,0.000005174062126132285;47,0.000006286763658633852;48,0.000004840251666381815;49,0.000004562076283256424;50,0.000004283900900131032;51,0.0000045620762832564235;52,0.0000035606449040050133;53,0.0000037831852105053263;54,0.0000047846165897567365;55,0.000004228265823505952;56,0.000004673346436506581;57,0.000004840251666381815;58,0.000006564939041759243;59,0.000005952953198883381;60,0.0000037831852105053267;61,0.00000433953597675611;62,0.000006564939041759242;63,0.00000467334643650658;64,0.000009346692873013158;65,0.0008063191655272603;66,0.0015825397546003533;67,0.0022957814369338574;68,0.0029851000363185776;69,0.0036780905507605537;70,0.0043660182732296465;71,0.005029744737366832;72,0.005516662927989517;73,0.005319158405970489;74,0.00516349146157352;75,0.0050295221970603305;76,0.0049935819375605305;77,0.00498328944838489;78,0.004842810879906569;79,0.004642691509286161;80,0.004504327073719592;81,0.004380594663305417;82,0.0042635940971628775;83,0.004201616621802541;84,0.004099414986042271;85,0.003988701183558366;86,0.003847109913547542;87,0.0037592064924799177;88,0.003645488395858258;89,0.0035080697565943145;90,0.003372876520395374;91,0.003289201365151256;92,0.0031606843381473252;93,0.0030138633709337432;94,0.0028836216565544352;95,0.002746481192673617;96,0.00260628079957842;97,0.0024597936428245887;98,0.0023299970090582805;99,0.0022141091444482426;100,0.002124536671081866;101,0.0019730423574317786;102,0.0018735112053495128;103,0.001825108688685695;104,0.0017118356726770353;105,0.0015568919842761922;106,0.0014153007142653677;107,0.001277715169771549;108,0.0011746233727852788;109,0.0010686941868911295;110,0.0008818715995841167;111,0.0006897636799977212;112,0.0005832781433373213;113,0.0004994917179399533;114,0.00041242282302170565;115,0.00032774623639833647;116,0.00023600399504358226;117,0.0001543317025579673;118,0.00008150538725573976;119,0.00003182326382954481;120,0.000007065654731384949;121,0.0000003894455363755483;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0.00000016690522987523502;4,0.00000016690522987523502;5,0;6,0;7,0.00000033381045975047005;8,0.00000022254030650031336;9,0.0000002781753831253917;10,0.00000044508061300062666;11,0.0000002225403065003133;12,0.0000003894455363755484;13,0.00000038944553637554835;14,0.0000007232559961260182;15,0.0000004450806130006266;16,0.0000008345261493761751;17,0.0000010570664558764883;18,0.0000019472276818777414;19,0.000003059929214379308;20,0.00000400572551700564;21,0.0000041726307468808745;22,0.000004116995670255797;23,0.0000033381045975047003;24,0.0000031155642910043864;25,0.0000036719150572551698;26,0.0000036162799806300915;27,0.000004283900900131032;28,0.000004395171053381188;29,0.000004283900900131032;30,0.0000033381045975047;31,0.000004784616589756737;32,0.0000026704836780037604;33,0.0000017246873753774284;34,0.0000014465119922520365;35,0.000002225403065003133;36,0.00000233667321825329;37,0.000003449374750754856;38,0.000003505009827379935;39,0.0000037275501338802476;40,0.000002559213524753603;41,0.0000013908769156269584;42,0.0000016690522987523501;43,0.0000009457963026263318;44,0.000001835957528627585;45,0.0000015577821455021932;46,0.00000100143137925141;47,0.0000013352418390018802;48,0.000001279606762376802;49,0.0000014465119922520367;50,0.0000017803224520025066;51,0.0000013352418390018802;52,0.0000018915926052526636;53,0.000002948659061129152;54,0.0000027261187546288386;55,0.0000025592135247536034;56,0.000002447943371503447;57,0.000002837388907878995;58,0.000005062791972882129;59,0.0000047289815131316595;60,0.000005118427049507208;61,0.000004283900900131032;62,0.0000025035784481285248;63,0.000003727550133880249;64,0.000003838820287130405;65,0.0000659832008773429;66,0.00015911631914772404;67,0.0002920841522816613;68,0.0004637183636700279;69,0.000656271363869424;70,0.0008648472661368426;71,0.0011417430424998576;72,0.0014258157437475076;73,0.0015592286574944453;74,0.0017460512448014584;75,0.001926698338603088;76,0.0020552153656070186;77,0.002196806635617843;78,0.0023469100723523045;79,0.0024840505362331224;80,0.0025914818691961487;81,0.0027568849520025066;82,0.0029172808779126076;83,0.002998563724861847;84,0.0030861889705463457;85,0.0032170983058451546;86,0.003344280091010084;87,0.0034646743968267534;88,0.0035587533113997606;89,0.003635307176835868;90,0.0037734490720959385;91,0.003979966476528229;92,0.004115938603799919;93,0.004237612516378966;94,0.004306099295704437;95,0.0043639041403178945;96,0.004480014545234432;97,0.004663109582407565;98,0.0047686493227653386;99,0.00483657975132456;100,0.004862728237338347;101,0.004944901245513587;102,0.005014945806984561;103,0.005043709141599725;104,0.005177678406112916;105,0.005308365201105225;106,0.005316766097675611;107,0.005355766286389791;108,0.005490736982282231;109,0.005555051130860822;110,0.005340244100011394;111,0.004882311784310374;112,0.004736603518629295;113,0.004651871296929299;114,0.004589671281262463;115,0.004451028670312766;116,0.0043220665626958355;117,0.004280451525380277;118,0.0042376125163789665;119,0.004197110180595909;120,0.004274164761721643;121,0.00436145619694639;122,0.004377200923631288;123,0.0043172263110294535;124,0.004142420900273457;125,0.004083558989204124;126,0.004001052170569133;127,0.003889170031476101;128,0.0038070526583774853;129,0.003715532957329231;130,0.0035611456196946393;131,0.003438581545889591;132,0.003353904959266222;133,0.0033087849121232835;134,0.0032030226314590095;135,0.003177597401441349;136,0.003121127798666895;137,0.0030244340354925086;138,0.0029578388487722894;139,0.002898086776476956;140,0.002835274774967242;141,0.0028196969535122197;142,0.0027840348693955446;143,0.002721222867885831;144,0.002623193862872443;145,0.0025439138786817065;146,0.002554150732780721;147,0.0024747594784367342;148,0.0024088875477126415;149,0.0024000415705292544;150,0.0022931665883324783;151,0.0021595311342790407;152,0.002022780115934598;153,0.0019396613114567307;154,0.0018733443001196378;155,0.0017836049215233865;156,0.001676006683330485;157,0.0015736937774169658;158,0.001517112904489261;159,0.0015088232780721246;160,0.0014329370335555175;161,0.0013244486341366147;162,0.00122163501253347;163,0.0011700612965020224;164,0.0010990709387284224;165,0.0010358138566057085;166,0.0009925297669913973;167,0.0009009544308665187;168,0.0008429826810231869;169,0.0008166116547028998;170,0.000747179079074802;171,0.0006692899717996924;172,0.0006187176871474961;173,0.0005856148165555745;174,0.0005719842227824303;175,0.0005174618476898535;176,0.00047890673958867435;177,0.0004522019028086366;178,0.00043834876872899216;179,0.00043000350723523047;180,0.00039545412465105684;181,0.0003646879272773885;182,0.0003458276363014869;183,0.00031283603586281547;184,0.00029603424272204177;185,0.00028134658249302113;186,0.0002593707272261152;187,0.00023939773471771207;188,0.00020946606349341994;189,0.0001962249152566513;190,0.00018187106548738107;191,0.0001741377898364952;192,0.00017230183230786757;193,0.00016340022004785506;194,0.00013975531248219675;195,0.00012512328732980116;196,0.00011382936677491027;197,0.00011433008246453597;198,0.00015522186378396854;199,0.00020139897738278355;200,0.00020095389676978292;201,0.00017797661012362558;202,0.00017291381815074346;203,0.0001758624772118726;204,0.0001578923474619723;205,0.00014047856847832283;206,0.00012701487993505386;207,0.00011338428616190965;208,0.00010025440807839115;209,0.00009797336993676294;210,0.00008868231214037486;211,0.00008339697986099243;212,0.00007772220204523442;213,0.0000657606605708426;214,0.00005880627599270779;215,0.00004545385760268899;216,0.00003632970503617615;217,0.00003265778997892098;218,0.00002826261892553979;219,0.000027817538312539165;220,0.000021308234347405003;221,0.00001930537158890218;222,0.000020028627585028198;223,0.00001607853714464764;224,0.000012462257164017549;225,0.000008400896570386828;226,0.000009068517489887767;227,0.000012851702700393095;228,0.000011127015325015668;229,0.000005452237509257676;230,0.000004395171053381188;231,0.000004450806130006267;232,0.0000027261187546288386;233,0.0000023923082948783687;234,0.000002169767988378055;235,0.0000017803224520025064;236,0.0000027817538312539165;237,0.0000028373889078789943;238,0.0000014465119922520365;239,0.0000008901612260012532;240,0.0000017246873753774282;241,0.000002503578448128525;242,0.0000014465119922520365;243,0.000000500715689625705;244,0.0000022810381416282118;245,0.000004061360593630719;246,0.0000027817538312539165;247,0.00000233667321825329;248,0.0000017246873753774284;249,0.000000500715689625705;250,0.0000015577821455021934;251,0.000002559213524753604;252,0.000002726118754628838;253,0.0000015577821455021934;254,0.000000166905229875235;255,0.00000033381045975047;256,0.0000007232559961260182;257,0.0000009457963026263317;258,0.0000007788910727510967;259,0.0000010014313792514098;260,0.0000008901612260012532;261,0.0000014465119922520365;262,0.00000133524183900188;263,0.0000007232559961260185;264,0.0000008345261493761751;265,0.000001057066455876488;266,0.000001279606762376802;267,0.0000005563507662507834;268,0.0000005563507662507834;269,0.0000008901612260012532;270,0.0000007232559961260182;271,0.0000006119858428758617;272,0.00000038944553637554835;273,0.0000009457963026263316;274,0.0000007232559961260182;275,0.00000011127015325015665;276,0.000000055635076625078326;277,0;278,0;279,0;280,0;281,0;282,0;283,0;284,0;285,0;286,0;287,0;288,0;289,0;290,0;291,0.00000033381045975047;292,0.00000033381045975047;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.00004272773884806016;2,0.00006047532829146016;3,0.00007416155714122942;4,0.00010181219022389335;5,0.00013102060545205948;6,0.00014910200535520992;7,0.00016295513943485442;8,0.0001645685566569817;9,0.00017580684213524755;10,0.00019093958297726883;11,0.00021708806899105567;12,0.00024746482082834846;13,0.0002716104440836324;14,0.00028969184398678293;15,0.0003039344236028029;16,0.0003357576874323477;17,0.0003768163739816555;18,0.00040802765196832453;19,0.0004198779232894662;20,0.00043200636999373327;21,0.000427555563863727;22,0.00045526183202301596;23,0.00047885110451204927;24,0.0005017727560815815;25,0.0005073362637440893;26,0.0005199654261379822;27,0.0005374348401982567;28,0.0005374348401982567;29,0.0005252507584173646;30,0.0005585761693157865;31,0.0005991341401754685;32,0.0006080357524354812;33,0.0006184395117643708;34,0.0006411942581040278;35,0.0006573284303253006;36,0.0006837550917222128;37,0.0007144656540192559;38,0.0007200291616817637;39,0.0007029491931578647;40,0.0007184713795362616;41,0.0007368309548225374;42,0.0007523531412009343;43,0.0007752191576938414;44,0.000795414690508745;45,0.0008108256067338917;46,0.0008358057561385517;47,0.0008643465504472171;48,0.0008779771442203612;49,0.00088420827280237;50,0.000877865874067111;51,0.0008950014776676351;52,0.0009195921815359199;53,0.0009528619573577165;54,0.0009788435381416281;55,0.0009940319140602748;56,0.0009550873604227199;57,0.000951081634905714;58,0.00098006750982738;59,0.0010224614382156895;60,0.0010446598337890958;61,0.0010553417685011108;62,0.0010483317488463508;63,0.0010621292478493703;64,0.0010614059918532446;65,0.00092320846151655;66,0.000803982492309007;67,0.0006809733378909588;68,0.0005446674001595168;69,0.0004267210377143508;70,0.0002867431849256538;71,0.00014910200535520992;72,0.000002225403065003133;73,0.000001502147068877115;74,0.0000020028627585028196;75,0.000001279606762376802;76,0.0000007788910727510966;77,0.0000009457963026263316;78,0.0000012239716857517233;79,0.00000100143137925141;80,0.0000022810381416282113;81,0.0000028930239845040734;82,0.0000020028627585028196;83,0.0000019472276818777414;84,0.0000022810381416282113;85,0.0000012239716857517235;86,0.00000133524183900188;87,0.0000008901612260012534;88,0.00000100143137925141;89,0.0000016134172221272719;90,0.0000024479433715034465;91,0.0000026148486013786817;92,0.0000025035784481285248;93,0.000001947227681877742;94,0.0000008345261493761751;95,0.000002114132911752977;96,0.000003894455363755484;97,0.0000047289815131316595;98,0.0000014465119922520367;99,0.0000026148486013786817;100,0.000002781753831253917;101,0.0000017246873753774284;102,0.0000014465119922520367;103,0.0000030042941377542307;104,0.0000039500904403805615;105,0.000004562076283256424;106,0.000004172630746880875;107,0.000001947227681877742;108,0.000001168336609126645;109,0.0000017803224520025066;110,0.000003059929214379308;111,0.0000022810381416282118;112,0.0000018915926052526636;113,0.000001947227681877742;114,0.0000014465119922520367;115,0.0000014465119922520365;116,0.00000066762091950094;117,0.0000009457963026263318;118,0.0000012239716857517235;119,0.000001835957528627585;120,0.0000017246873753774286;121,0.0000026704836780037604;122,0.0000011127015325015668;123,0.000001223971685751723;124,0.0000007232559961260183;125,0.0000022254030650031335;126,0.0000007232559961260183;127,0.0000017803224520025066;128,0.0000004450806130006267;129,0.00000027817538312539163;130,0.00000027817538312539163;131,0.0000007232559961260183;132,0.0000010570664558764883;133,0.00000044508061300062666;134,0;135,0;136,0.0000002225403065003133;137,0.00000022254030650031333;138,0.0000003338104597504699;139,0.00000022254030650031322;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0.00000016690522987523497;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.0005180181984561044;2,0.0005112307191078448;3,0.0005155702550846009;4,0.0007307110963937789;5,0.0007558581510283143;6,0.0007790023429043468;7,0.0007857898222526065;8,0.0007881264954708598;9,0.0008078213125961373;10,0.0008144418867145216;11,0.0008204504749900302;12,0.0007994204160257505;13,0.0008207842854497806;14,0.0008378642539736798;15,0.0008407016428815587;16,0.0008656817922862188;17,0.0008596175689340853;18,0.000867962830427847;19,0.00087708698299436;20,0.0008733037977838546;21,0.0009121370812681592;22,0.0009290501445621832;23,0.0009378404866689455;24,0.0009515823505953397;25,0.000964545323448983;26,0.000977230120919501;27,0.0009918065109952713;28,0.00098718879963539;29,0.0009964242223551528;30,0.0010072730622970431;31,0.0009948664402096507;32,0.0009969805731214038;33,0.0010140049065686775;34,0.0010208480209935623;35,0.0010211261963766877;36,0.0010154514185609297;37,0.001029082012334074;38,0.001082992401583775;39,0.0011636076276135133;40,0.0012376579146014925;41,0.0013339622322395032;42,0.00142397978621888;43,0.0015238447487608956;44,0.0016224857396171595;45,0.0017261338873696805;46,0.001827334091750698;47,0.001891815145559164;48,0.001987062396741298;49,0.0020763566947245484;50,0.002179615396940694;51,0.002317924197430639;52,0.002424131558707913;53,0.0025285585975331855;54,0.002623026957642568;55,0.0027068133830399363;56,0.0028485715582806355;57,0.0027878180546060502;58,0.002888962623910443;59,0.0030337250932888963;60,0.0031373176059647924;61,0.003308951817353159;62,0.0034739098195465156;63,0.003553245438813878;64,0.003705129198000341;65,0.003345837873155586;66,0.002978590732353444;67,0.0025423560965362043;68,0.0020978318343018287;69,0.0015864342099641087;70,0.0010999054648777986;71,0.0005663650800432975;72,0.000004228265823505953;73,0.000005118427049507208;74,0.0000039500904403805615;75,0.000004116995670255797;76,0.000003894455363755484;77,0.000004116995670255797;78,0.000004728981513131659;79,0.0000032824695208796216;80,0.000002447943371503447;81,0.00000367191505725517;82,0.0000050071568962570495;83,0.000004283900900131032;84,0.0000032268344442545433;85,0.00000400572551700564;86,0.000004895886743006894;87,0.000003783185210505327;88,0.0000033381045975047003;89,0.0000023923082948783683;90,0.00000267048367800376;91,0.0000024479433715034465;92,0.0000017803224520025066;93,0.0000022254030650031335;94,0.0000021697679883780552;95,0.0000021141329117529766;96,0.0000020584978351278983;97,0.000002503578448128525;98,0.000003226834444254543;99,0.0000016134172221272719;100,0.0000013352418390018802;101,0.0000016690522987523501;102,0.0000022810381416282118;103,0.0000016690522987523497;104,0.000001835957528627585;105,0.0000008901612260012533;106,0.0000011127015325015665;107,0.0000006119858428758616;108,0.0000008901612260012533;109,0.0000009457963026263318;110,0.0000015577821455021934;111,0.0000009457963026263318;112,0.0000006119858428758616;113,0.0000005563507662507834;114,0.0000008345261493761747;115,0.0000002781753831253916;116,0.00000022254030650031336;117,0.00000033381045975047005;118,0.00000033381045975047005;119,0.000000166905229875235;120,0.00000011127015325015666;121,0.00000005563507662507831;122,0.00000011127015325015668;123,0.00000016690522987523502;124,0;125,0.000000166905229875235;126,0.00000011127015325015669;127,0;128,0;129,0;130,0.00000016690522987523497;131,0.000000055635076625078326;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0.000000055635076625078326;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0.000000055635076625078306;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.00000011127015325015668;27,0;28,0.00000038944553637554846;29,0.000000500715689625705;30,0.0000009457963026263316;31,0.0000006119858428758616;32,0.0000009457963026263317;33,0.0000008345261493761751;34,0.000001390876915626958;35,0.0000012239716857517233;36,0.000001168336609126645;37,0.0000012239716857517233;38,0.000001502147068877115;39,0.0000020028627585028205;40,0.0000016134172221272715;41,0.0000013908769156269584;42,0.0000015577821455021934;43,0.0000012239716857517233;44,0.000001279606762376802;45,0.0000008345261493761751;46,0.0000010570664558764885;47,0.000001390876915626958;48,0.0000015577821455021934;49,0.0000015577821455021934;50,0.0000009457963026263319;51,0.0000012239716857517233;52,0.0000010570664558764885;53,0.0000020584978351278983;54,0.0000009457963026263316;55,0.0000007232559961260182;56,0.0000010014313792514098;57,0.0000007232559961260182;58,0.0000006676209195009401;59,0;60,0.0000009457963026263317;61,0.0000014465119922520367;62,0.0000007788910727510966;63,0.00000033381045975047;64,0.0000008345261493761751;65,0.0000996424222355153;66,0.00016429038127385633;67,0.00021864585113655783;68,0.00025697841893123686;69,0.0003141156426251923;70,0.00037837415612715776;71,0.0004383487687289922;72,0.0004890879586110636;73,0.0005061122920583376;74,0.000500048068706204;75,0.0005068911831310887;76,0.0005074475338973396;77,0.0004912020915228166;78,0.0005082820600467156;79,0.0004974888551814505;80,0.0005047214151427106;81,0.0005117870698740955;82,0.0005145131886287245;83,0.000493594399817695;84,0.0005164604163106021;85,0.00046199367629465044;86,0.00025508682632598416;87,0.000036997325955677094;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000011127015325015665;46,0.00000011127015325015665;47,0.00000005563507662507833;48,0.00000022254030650031333;49,0.000000500715689625705;50,0.00000022254030650031333;51,0.00000016690522987523502;52,0.00000022254030650031333;53,0.0000004450806130006266;54,0.000000834526149376175;55,0.0000006676209195009399;56,0.00000100143137925141;57,0.0000011127015325015665;58,0.00000044508061300062666;59,0.00000011127015325015666;60,0.0000008345261493761752;61,0.0000006676209195009401;62,0.00000100143137925141;63,0.000002114132911752977;64,0.00019783833247877854;65,0.00043784805303936653;66,0.0007119064404945024;67,0.0010053258346151657;68,0.0013067010446932148;69,0.001649246211473822;70,0.0020135446932148353;71,0.0023750057860479692;72,0.002789487106904802;73,0.0028875717469948156;74,0.0029991200756280976;75,0.003068719556486071;76,0.0031273589272489037;77,0.0032781299849028653;78,0.003390735379992024;79,0.003457330566712243;80,0.0035599216480088876;81,0.0036434855330997546;82,0.0037214302754514893;83,0.003892897581609981;84,0.003963164683387454;85,0.00403804949652481;86,0.0041069813564632825;87,0.004141586374124082;88,0.004180697832991511;89,0.0043285202315843435;90,0.00440001130504757;91,0.004393446366005811;92,0.004489917588873696;93,0.004671121033441576;94,0.00473777185523842;95,0.004716352350737765;96,0.0048039219613456394;97,0.0048853717135247535;98,0.0049206443521050535;99,0.004948740065800717;100,0.004930157950207942;101,0.004928210722526064;102,0.004959644540819233;103,0.004973775850282004;104,0.005018562086965191;105,0.0050449887483621034;106,0.005015835968210562;107,0.005118482684583832;108,0.005155090565003132;109,0.005087438311827038;110,0.0048967769042328945;111,0.0044209300938586;112,0.0041435892368825835;113,0.0038760957884692074;114,0.0036385896463567483;115,0.0033813330520423863;116,0.0031553433707913175;117,0.0030441288526177864;118,0.0029419828519341423;119,0.0028354416801971176;120,0.0027280659823107163;121,0.002633541987124708;122,0.0025485315900415882;123,0.002467638188628724;124,0.002366660524554207;125,0.002219505746880875;126,0.002106566541331966;127,0.001968035200535521;128,0.0018342884763288326;129,0.0017478315672534608;130,0.0016419580164359366;131,0.0015188932269412634;132,0.0013989440017375947;133,0.001326896577508118;134,0.001289954886629066;135,0.0012384368056742436;136,0.0011253306948954592;137,0.0010298052683302;138,0.0009957009663590268;139,0.000934724922377941;140,0.0008725805417877286;141,0.0008539427911183273;142,0.0007975288234204978;143,0.0007363302391329117;144,0.0007006125199396113;145,0.0006514867472796671;146,0.0006112625868797356;147,0.0005769913796786874;148,0.0005407729447957614;149,0.0004930380490514441;150,0.0004514786468125107;151,0.0004111432162593289;152,0.0003536721821056229;153,0.00030615982666780606;154,0.00029458773072978974;155,0.00026510114011849825;156,0.0002338342270552042;157,0.00021413940992992647;158,0.0001845971842420099;159,0.00015705782131259614;160,0.0001447624693784538;161,0.0001358052220418162;162,0.00012122883196604568;163,0.00011360682646840994;164,0.00009585923702500996;165,0.00007749966173873412;166,0.00006787479348259557;167,0.00006041969321483507;168,0.00004651092405856548;169,0.000043228454537685865;170,0.0000328803302854213;171,0.00002676047185666267;172,0.000018192670056400615;173,0.00001235098701076739;174,0.000008178356263886515;175,0.0000037275501338802484;176,0.0000003894455363755484;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.0005900099876089557;2,0.0007757198733834673;3,0.0009567007776448471;4,0.0011041337307013048;5,0.0012580203526462714;6,0.0014087357752236083;7,0.0015667950279154561;8,0.0017260782522930556;9,0.0018688934939896313;10,0.0020544364745342675;11,0.0022677413583148177;12,0.002576349128354128;13,0.002968632053637555;14,0.0032722883018572323;15,0.003412266154645929;16,0.0035981429456503162;17,0.0038472768187774176;18,0.004034711391927306;19,0.0042252615293682;20,0.004426660506750984;21,0.004598294718139349;22,0.004702833027117872;23,0.004818665256651285;24,0.00498918676650715;25,0.0052377642888680005;26,0.005332510824360508;27,0.0054482874188172955;28,0.005652801960491083;29,0.0058891954010710425;30,0.006078577201902809;31,0.006201641991397482;32,0.00629266097675611;33,0.006425906985273172;34,0.006572561047256878;35,0.006728227991653849;36,0.006811791876744716;37,0.007012022517518373;38,0.007187384279040619;39,0.007417713496268444;40,0.007644315163362389;41,0.00781567119936763;42,0.007970503617615223;43,0.008095626904945025;44,0.008238609051871473;45,0.00839116043197744;46,0.008546159755454908;47,0.008802526188543271;48,0.008932712267845953;49,0.008873516546316868;50,0.008693703978664615;51,0.008569804663020566;52,0.008413470097704096;53,0.008205895626815927;54,0.008066307219563609;55,0.007906857089956133;56,0.00771246813222811;57,0.007610711577080841;58,0.007471234439981769;59,0.0071636281013217114;60,0.006888735187717199;61,0.006675764114396399;62,0.0064302465212499275;63,0.0062544953141913055;64,0.006032344453227368;65,0.005130778036517974;66,0.004235832193926963;67,0.0033819450378852613;68,0.0025627741696576086;69,0.001848920501481228;70,0.001215236978721586;71,0.000577380825215063;72,0.000005841683045633225;73,0.0000062311285820087745;74,0.0000064536688885090875;75,0.0000066762091950094;76,0.000007010019654759869;77,0.000007900180880761125;78,0.000007288195037885262;79,0.000007399465191135418;80,0.000005452237509257676;81,0.000006008588275508461;82,0.000005062791972882128;83,0.000003505009827379935;84,0.000003393739674129779;85,0.000004116995670255797;86,0.000002726118754628838;87,0.000002893023984504074;88,0.0000027817538312539173;89,0.0000017803224520025068;90,0.00000200286275850282;91,0.000001947227681877742;92,0.000002336673218253289;93,0.0000025035784481285243;94,0.0000006119858428758617;95,0.0000012239716857517235;96,0.0000018359575286275849;97,0.00000233667321825329;98,0.0000015577821455021928;99,0.00000011127015325015666;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0.0002751154539110124;2,0.0002915278015154105;3,0.00027672887113313965;4,0.00026543495057824876;5,0.00027483727852788695;6,0.00027127663362388197;7,0.0002737802120720105;8,0.00027745212712926564;9,0.00026309827735999545;10,0.00025792421523386315;11,0.0002694963111718794;12,0.0002965349584116675;13,0.0003138931023186919;14,0.0003268560751723352;15,0.00033141815145559166;16,0.0003227390795020794;17,0.00032062494659032645;18,0.0003171755718395716;19,0.0003156177896940694;20,0.0003121127798666895;21,0.0003090528506523102;22,0.0003219045533527032;23,0.000308273959579559;24,0.0002989272667065459;25,0.000299038536859796;26,0.00029458773072978974;27,0.0002904150999829089;28,0.000303266802683302;29,0.0003012083048481741;30,0.0003110557134108129;31,0.0003045464094456788;32,0.00029881599655329574;33,0.0002969800390246681;34,0.0003000399682390474;35,0.0002936975695037885;36,0.0002976476599441691;37,0.0003034893429898023;38,0.00032440813180083174;39,0.0003704739752463966;40,0.0004209906248219677;41,0.00045259134834501225;42,0.0005012164053153307;43,0.0005507316235116505;44,0.0006082026576653564;45,0.0006426407700962798;46,0.0007163016115478835;47,0.0007496826575229305;48,0.0007839538647239788;49,0.0008292964521734176;50,0.0008888816192388765;51,0.0009328333297726884;52,0.0009603170576254771;53,0.0010084413989061697;54,0.00106541171737025;55,0.0011108655749729392;56,0.0011756804392411555;57,0.0012225808088360964;58,0.0012497307262291347;59,0.0012985226884293282;60,0.0013482604469321484;61,0.0013988327315843448;62,0.0014258157437475076;63,0.001465817363840939;64,0.0014614778278641827;65,0.0013263402267418675;66,0.001152703152594998;67,0.0009759505141571242;68,0.0008022021698570045;69,0.0006174380803851193;70,0.00042371674357659654;71,0.00021853458098330768;72,0.000004283900900131032;73,0.0000039500904403805615;74,0.0000033381045975047;75,0.0000035050098273799354;76,0.000004061360593630718;77,0.0000031155642910043864;78,0.0000022810381416282113;79,0.0000029486590611291516;80,0.00000233667321825329;81,0.0000022810381416282118;82,0.0000024479433715034465;83,0.0000021141329117529766;84,0.0000029486590611291512;85,0.000002559213524753603;86,0.000002726118754628838;87,0.0000022810381416282113;88,0.0000020584978351278983;89,0.0000022810381416282118;90,0.0000017246873753774286;91,0.0000008901612260012534;92,0.0000010570664558764883;93,0.0000015577821455021934;94,0.0000016690522987523497;95,0.0000012796067623768015;96,0.0000007788910727510966;97,0.00000044508061300062666;98,0.0000008345261493761751;99,0.000001168336609126645;100,0.0000012239716857517235;101,0.0000007232559961260183;102,0.00000038944553637554835;103,0.0000005563507662507834;104,0.0000007232559961260185;105,0.00000044508061300062666;106,0.0000003894455363755483;107,0.00000022254030650031333;108,0.0000005563507662507833;109,0.0000009457963026263318;110,0.0000003894455363755483;111,0.00000027817538312539163;112,0.00000016690522987523502;113,0;114,0.00000011127015325015668;115,0.00000005563507662507833;116,0.000000055635076625078326;117,0.000000166905229875235;118,0.00000016690522987523497;119,0.00000044508061300062666;120,0.000000166905229875235;121,0.0000002225403065003133;122,0.00000022254030650031333;123,0.00000011127015325015664;124,0.00000033381045975047;125,0.0000002781753831253917;126,0.00000016690522987523497;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.000022476570956531653;62,0.00009079644505212783;63,0.00020952169857004497;64,0.0003560088553238763;65,0.00043962837549136897;66,0.00047629189098729555;67,0.0004902562952201902;68,0.0004559294529425169;69,0.0003977907978693101;70,0.0002958117024155415;71,0.00016228751851535348;72,0.00000133524183900188;73,0.0000015021470688771147;74,0.0000021697679883780552;75,0.000002447943371503447;76,0.000002893023984504074;77,0.0000018915926052526631;78,0.0000012239716857517233;79,0.000001947227681877742;80,0.000002503578448128525;81,0.0000013352418390018802;82,0.0000012239716857517235;83,0.0000019472276818777414;84,0.000002447943371503447;85,0.000002726118754628838;86,0.0000030042941377542303;87,0.00000300429413775423;88,0.000004116995670255797;89,0.000003393739674129778;90,0.0000024479433715034465;91,0.0000032268344442545437;92,0.0000025592135247536034;93,0.0000034493747507548568;94,0.000002559213524753603;95,0.0000015577821455021932;96,0.0000022254030650031335;97,0.000003226834444254543;98,0.000002169767988378055;99,0.0000021141329117529766;100,0.000004005725517005639;101,0.0000035606449040050133;102,0.000003282469520879622;103,0.0000035050098273799346;104,0.000005229697202757363;105,0.000003616279980630091;106,0.0000034493747507548563;107,0.000003115564291004387;108,0.000004450806130006267;109,0.000004283900900131032;110,0.000002559213524753604;111,0.000002893023984504073;112,0.000003171199367629465;113,0.0000032824695208796216;114,0.0000028373889078789947;115,0.0000039500904403805615;116,0.0000028930239845040734;117,0.000001279606762376802;118,0.000001613417222127272;119,0.00000233667321825329;120,0.000002169767988378055;121,0.000002114132911752977;122,0.000002447943371503447;123,0.0000019472276818777414;124,0.0000017803224520025066;125,0.0000018915926052526631;126,0.000004228265823505954;127,0.00000300429413775423;128,0.000002225403065003133;129,0.0000016690522987523497;130,0.000002225403065003133;131,0.0000021697679883780552;132,0.0000020584978351278983;133,0.0000010570664558764883;134,0.0000012796067623768015;135,0.0000012239716857517233;136,0.0000015577821455021932;137,0.0000006676209195009401;138,0.0000007232559961260181;139,0.0000006676209195009399;140,0.0000002225403065003133;141,0.0000006119858428758616;142,0.00000022254030650031336;143,0;144,0.00000005563507662507833;145,0.000000055635076625078326;146,0.00000011127015325015665;147,0;148,0;149,0.00000011127015325015665;150,0.0000005563507662507833;151,0.0000004450806130006266;152,0;153,0.000000055635076625078326;154,0;155,0.00000033381045975046994;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0.00000011127015325015661;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0.000000055635076625078306;175,0.000000055635076625078306;176,0;177,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forbidden_arcanus:xpetrified_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.0003130585761693158;57,0.0006330159018401412;58,0.0006050314582977268;59,0.0006237248440437533;60,0.0006214438059021249;61,0.0006088702785848573;62,0.0006154908527032416;63,0.0006095935345809833;64,0.0005982439789494673;65,0.0005910670540648323;66,0.000579494958126816;67,0.0005979658035663419;68,0.0005814421858086937;69,0.0005799956738164417;70,0.0005868944233179512;71,0.0005735420049279324;72,0.0005696475495641771;73,0.0005732081944681821;74,0.0005824992522645701;75,0.0005751554221500599;76,0.0005715947772460548;77,0.0005868944233179514;78,0.0005785491618241896;79,0.0005824992522645701;80,0.0005786047969008147;81,0.0005763793938358115;82,0.000567533416652424;83,0.0005655861889705463;84,0.0005714278720161795;85,0.0005595219656184128;86,0.0005703708055603031;87,0.0005757674079929357;88,0.0005588543446989119;89,0.000555349334871532;90,0.0005594106954651627;91,0.0005492294764427733;92,0.0005531239318065287;93,0.0005572965625534098;94,0.0005535133773429044;95,0.0005397715134165099;96,0.0005372679349683815;97,0.0005412180254087619;98,0.0002693294059420042;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.00000011127015325015669;27,0.00000022254030650031338;28,0.000000055635076625078345;29,0.00000005563507662507835;30,0.00000022254030650031336;31,0.0000004450806130006266;32,0.000000166905229875235;33,0.0000007232559961260185;34,0.0000008901612260012535;35,0.00000044508061300062666;36,0.0000003894455363755483;37,0.0000007232559961260182;38,0.0000006119858428758616;39,0.00000166905229875235;40,0.0000020584978351278983;41,0.0000012239716857517233;42,0.0000012239716857517233;43,0.000001168336609126645;44,0.0000008345261493761751;45,0.0000008901612260012534;46,0.000001168336609126645;47,0.0000008901612260012531;48,0.0000004450806130006267;49,0.0000010570664558764885;50,0.0000016134172221272715;51,0.0000025592135247536034;52,0.0000026704836780037595;53,0.0000018359575286275849;54,0;55,0.00000033381045975046983;56,0.0000007232559961260185;57,0.0000008345261493761752;58,0.000001502147068877115;59,0.00000200286275850282;60,0.0000016690522987523501;61,0.0000022810381416282118;62,0.000001835957528627585;63,0.0000013908769156269584;64,0.0000014465119922520365;65,0.00028307126986839854;66,0.00059651929157409;67,0.0008878245527830001;68,0.0011873638053324217;69,0.0014970842769042327;70,0.0018148161995100553;71,0.002098555090297955;72,0.002338175365322167;73,0.0023748945158947187;74,0.002462631031732467;75,0.002580466124024383;76,0.0026846149874665296;77,0.002757107492309007;78,0.0027092613264114397;79,0.0027223912044949576;80,0.0027865384478436735;81,0.002821254735657722;82,0.0028728284516891696;83,0.002899922734005583;84,0.0029045404453654643;85,0.0029291311492337492;86,0.003001456748846351;87,0.0030557565836324277;88,0.003057815081467555;89,0.003111224755027631;90,0.003140989521022048;91,0.0030840748376345928;92,0.0030464098907594145;93,0.00315350741326269;94,0.0032192124387569075;95,0.0031883906063066144;96,0.003194065384122372;97,0.003227390795020794;98,0.003196068246880875;99,0.0031609625135304506;100,0.0031327555296815357;101,0.0031432149240870504;102,0.0031520609012704384;103,0.0031346471222867883;104,0.003187667350310488;105,0.003230673264541674;106,0.003209865745883895;107,0.003214372187090526;108,0.003261773272375093;109,0.003205971290520139;110,0.0030231544287301314;111,0.002768902128553524;112,0.0026734323370648893;113,0.002582135176323136;114,0.0024727009806016064;115,0.0023518615941719367;116,0.0022395343744659032;117,0.002236474445251524;118,0.0022714689084486982;119,0.0022797028997892095;120,0.002200311645445223;121,0.0021664855188571752;122,0.0021621459828804193;123,0.002150629522019028;124,0.002104341138266963;125,0.002054492109610893;126,0.002026841476528229;127,0.001970149333447274;128,0.0018981575442944226;129,0.001773980053267248;130,0.00169403244815701;131,0.0016035141784880075;132,0.0015330801714806583;133,0.0014535220119067964;134,0.0013730736911069332;135,0.0012936824367629465;136,0.0012452799200991281;137,0.001213957371959209;138,0.0011545947452002506;139,0.0010697512533470062;140,0.0010393745015097133;141,0.001056120659573862;142,0.001056009389420612;143,0.0010067723466074176;144,0.0009282156184128069;145,0.0008529413597390761;146,0.0008447073683985644;147,0.0008648472661368427;148,0.0008143306165612716;149,0.000737999291431664;150,0.0007001674393266108;151,0.0006621686819916823;152,0.0005843908448698227;153,0.0005222464642796103;154,0.0005053334009855865;155,0.0004976557604113258;156,0.00044719474591237965;157,0.00042371674357659654;158,0.000395621029880932;159,0.00036824857218139347;160,0.0003324752179114681;161,0.0003126691306329402;162,0.0003074394334301828;163,0.00030905285065231013;164,0.0002924735978180368;165,0.0002752823591408876;166,0.0002535290441804819;167,0.0002498014940466017;168,0.00022832635446932149;169,0.00021547465176892838;170,0.0002162535428416795;171,0.00020807518657779299;172,0.00017241310246111777;173,0.00015060415242408706;174,0.00013563831681194096;175,0.00013485942573918986;176,0.0001430377820030764;177,0.00013435871004956415;178,0.0001222302633452971;179,0.00011277230031903378;180,0.00010259108129664443;181,0.00009697193855751153;182,0.0000980846400900131;183,0.00009585923702500998;184,0.00007638696020623256;185,0.00005541253631857801;186,0.00004690036959494104;187,0.000048124341280692754;188,0.00004706727482481627;189,0.000039834714863556085;190,0.000036774785649176776;191,0.00003933399917393038;192,0.000042004482851934136;193,0.00004306154930781062;194,0.0000431171843844357;195,0.00004244956346493477;196,0.00003699732595567709;197,0.000029319685381416282;198,0.000022921651569532276;199,0.000021196964194154844;200,0.000023756177718908445;201,0.000030877467526918475;202,0.000029041509998290888;203,0.000022142760496781176;204,0.00001847084543952601;205,0.000016579252834273342;206,0.00001596726699139748;207,0.000013463688543268957;208,0.000011182650401640744;209,0.000007900180880761123;210,0.00000934669287301316;211,0.000013129878083518486;212,0.000009847408562638866;213,0.000008122721187261438;214,0.000008400896570386828;215,0.000006231128582008773;216,0.000002614848601378682;217,0.000001947227681877742;218,0.0000021141329117529766;219,0.0000013908769156269587;220,0.0000015021470688771152;221,0.000002114132911752977;222,0.0000013908769156269584;223,0.0000022254030650031335;224,0.000001279606762376802;225,0.00000133524183900188;226,0.0000012239716857517235;227,0.0000005563507662507834;228,0.0000006119858428758618;229,0.00000100143137925141;230,0.0000011127015325015665;231,0.0000005563507662507834;232,0.0000002225403065003133;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000005563507662507834;29,0;30,0;31,0;32,0.00000005563507662507833;33,0.00000005563507662507833;34,0.0000004450806130006266;35,0;36,0.0000003894455363755482;37,0.0000012796067623768015;38,0.0000012239716857517233;39,0.0000010570664558764885;40,0.000001168336609126645;41,0.0000006119858428758617;42,0.00000005563507662507833;43,0.00000011127015325015665;44,0.00000133524183900188;45,0.0000015577821455021932;46,0.000001168336609126645;47,0.0000005007156896257051;48,0.0000007788910727510966;49,0.000001502147068877115;50,0.0000007232559961260182;51,0.00000011127015325015666;52,0.0000004450806130006266;53,0.0000006676209195009399;54,0.0000010570664558764883;55,0.0000004450806130006267;56,0.00000011127015325015666;57,0.00000011127015325015662;58,0.000000166905229875235;59,0;60,0.000000055635076625078345;61,0;62,0;63,0;64,0.0000005563507662507833;65,0.00008128980133381757;66,0.0001521341170312767;67,0.0002141394099299265;68,0.0002611858216010084;69,0.0002874386233834672;70,0.00032193932527559393;71,0.0003307574849206688;72,0.00031394873739531705;73,0.00027333513145900984;74,0.00024407108115421865;75,0.00018988251652139233;76,0.0001361390325015667;77,0.00010147837976414288;78,0.00006887622486184698;79,0.000029486590611291517;80,0.000006175493505383695;81,0.0000006119858428758616;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000027817538312539153;13,0.0000005007156896257048;14,0.00000038944553637554814;15,0.00000038944553637554814;16,0.00000016690522987523497;17,0;18,0.00000005563507662507833;19,0.0000003894455363755483;20,0.0000008345261493761751;21,0.000000500715689625705;22,0.00000133524183900188;23,0.000002114132911752976;24,0.0000026148486013786817;25,0.0000022810381416282113;26,0.00000233667321825329;27,0.0000013908769156269582;28,0.000000500715689625705;29,0.0000011127015325015668;30,0.0000013908769156269584;31,0.00000100143137925141;32,0.0000012239716857517235;33,0.000001168336609126645;34,0.00000033381045975047;35,0.00000044508061300062666;36,0.00000033381045975046994;37,0.00000033381045975046994;38,0.00000044508061300062666;39,0.000000500715689625705;40,0.00000016690522987523502;41,0.000000500715689625705;42,0.0000008901612260012534;43,0.00000038944553637554835;44,0.000000055635076625078345;45,0;46,0.00000016690522987523502;47,0.000000500715689625705;48,0.00000044508061300062676;49,0.000000500715689625705;50,0.00000027817538312539163;51,0.0000003894455363755483;52,0.0000006119858428758616;53,0.00000033381045975047005;54,0.00000100143137925141;55,0.0000011127015325015668;56,0.0000013352418390018802;57,0.0000013908769156269584;58,0.0000010570664558764883;59,0.0000012796067623768015;60,0.0000010570664558764883;61,0.0000012239716857517233;62,0.0000010570664558764885;63,0.0000009457963026263317;64,0.0000008901612260012533;65,0.00013285656298068707;66,0.00024434925653734404;67,0.0003635752257448869;68,0.0004705614780949125;69,0.0005495076518258988;70,0.0006279531098672591;71,0.0006989991027174841;72,0.0007612547534609469;73,0.0007293202194781519;74,0.0007096810374294993;75,0.00068186349911696;76,0.0006344067787557683;77,0.000597298182646841;78,0.0005712609667863043;79,0.0005464477226115193;80,0.0005004375142425796;81,0.0004676684541104084;82,0.00044558132869025233;83,0.0004182088709907138;84,0.00037581494260240415;85,0.00034438112430923483;86,0.00031734247706944685;87,0.0002861868341594029;88,0.00024946768358685126;89,0.00020907661795704438;90,0.00017619628767162306;91,0.00014075674386144818;92,0.00011282793539565885;93,0.00007872363342448583;94,0.000042060117928559225;95,0.000017024333447273968;96,0.0000027817538312539165;97,0.00000016690522987523497;98,0.00000044508061300062666;99,0.0000002781753831253917;100,0.0000004450806130006267;101,0.0000009457963026263319;102,0.000001279606762376802;103,0.0000012239716857517235;104,0.000001780322452002507;105,0.0000012239716857517235;106,0.000000834526149376175;107,0.0000005007156896257051;108,0;109,0;110,0;111,0.000000166905229875235;112,0.000000055635076625078326;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0.00000033381045975047;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0.0015404240015951687;2,0.0015181143358685124;3,0.00153441541331966;4,0.0015229545875348944;5,0.0015397563806756683;6,0.0015402014612886687;7,0.0015212299001595168;8,0.001501368177804364;9,0.0015084338325357489;10,0.001500088571041987;11,0.0015440959166524242;12,0.0016588710797299606;13,0.0018187662899504355;14,0.0018854727468239046;15,0.0018534269426878597;16,0.0018656666595453768;17,0.0018674469819973793;18,0.0018322856135703299;19,0.0018208247877855637;20,0.0018017419565031618;21,0.0017723666360451207;22,0.0017661355074631117;23,0.001781435153535008;24,0.0017716433800489945;25,0.001757122625049849;26,0.001760126919187603;27,0.0017397644811428243;28,0.0017289156412009345;29,0.0017671925739189882;30,0.0017478315672534608;31,0.0017224063372358002;32,0.0017132265495926622;33,0.0017150625071212897;34,0.0016967029318350141;35,0.0016708882562809775;36,0.0016486342256309462;37,0.0016651578433885946;38,0.0017162864788070416;39,0.001689637277103629;40,0.0016905274383296302;41,0.0017051594634820261;42,0.0016656029240015953;43,0.0016898041823335042;44,0.0016781208162422378;45,0.0016792891528513646;46,0.0016733361996524813;47,0.001685909726969749;48,0.001687467509115251;49,0.001692474666011508;50,0.0016875787792685012;51,0.0016933091921608843;52,0.0016827941626787442;53,0.0016913063294023813;54,0.0016866329829658745;55,0.0016834061485216203;56,0.0016555886102090811;57,0.0016564231363584573;58,0.0016622648194040905;59,0.0016353930773941776;60,0.0016116368996752692;61,0.0016504701831595737;62,0.0016481335099413207;63,0.001613695397510397;64,0.001614307383353273;65,0.001389764214094457;66,0.0011713965383410244;67,0.0009870775294821398;68,0.0007852891065629807;69,0.0005845021150230731;70,0.00036858238264114403;71,0.00019171847405001995;72,0.0000031155642910043864;73,0.000002503578448128525;74,0.0000025592135247536034;75,0.00000267048367800376;76,0.000003783185210505327;77,0.000002726118754628838;78,0.00000200286275850282;79,0.000002503578448128525;80,0.000002447943371503447;81,0.0000035606449040050133;82,0.0000026704836780037595;83,0.0000018915926052526636;84,0.0000021141329117529766;85,0.0000033381045975047;86,0.00000200286275850282;87,0.0000017246873753774284;88,0.0000018359575286275849;89,0.0000022810381416282118;90,0.0000022810381416282118;91,0.0000015021470688771154;92,0.000001947227681877742;93,0.0000010570664558764885;94,0.0000017246873753774284;95,0.0000018915926052526631;96,0.000002114132911752976;97,0.0000024479433715034465;98,0.0000028373889078789947;99,0.0000016690522987523501;100,0.0000020584978351278983;101,0.0000008901612260012533;102,0.000001168336609126645;103,0.0000013352418390018798;104,0.0000017803224520025066;105,0.0000020584978351278983;106,0.000003059929214379308;107,0.00000200286275850282;108,0.000001835957528627585;109,0.0000010570664558764883;110,0.0000014465119922520367;111,0.0000013908769156269584;112,0.0000011127015325015665;113,0.00000200286275850282;114,0.0000017246873753774284;115,0.0000017803224520025064;116,0.0000012796067623768015;117,0.0000013352418390018802;118,0.0000017803224520025064;119,0.0000017803224520025066;120,0.0000015577821455021934;121,0.0000012796067623768015;122,0.0000015577821455021934;123,0.0000005563507662507833;124,0.00000044508061300062666;125,0.0000008901612260012533;126,0.0000012239716857517233;127,0.0000011683366091266448;128,0.0000006119858428758616;129,0.0000005563507662507833;130,0.00000033381045975047;131,0.00000044508061300062666;132,0.00000022254030650031333;133,0.0000005563507662507833;134,0.0000002781753831253916;135,0.00000038944553637554825;136,0.00000011127015325015666;137,0.00000033381045975047005;138,0.0000002781753831253916;139,0.00000005563507662507833;140,0.00000011127015325015666;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0.00000011127015325015668;31,0.000000500715689625705;32,0.00000011127015325015668;33,0.00000033381045975046994;34,0.00000022254030650031333;35,0.000000055635076625078345;36,0.00000022254030650031333;37,0.00000044508061300062666;38,0.00000027817538312539163;39,0.00000022254030650031336;40,0.0000005007156896257049;41,0.00000011127015325015665;42,0.000000055635076625078326;43,0.00000038944553637554835;44,0.0000005563507662507833;45,0.0000002781753831253916;46,0.0000006119858428758616;47,0.00000033381045975047005;48,0.0000002781753831253917;49,0.00000022254030650031333;50,0.00000011127015325015665;51,0.00000033381045975047;52,0.00000022254030650031333;53,0.00000022254030650031338;54,0.00000027817538312539163;55,0.00000027817538312539163;56,0.00000044508061300062666;57,0.0000002781753831253917;58,0.0000005563507662507835;59,0.0000003894455363755484;60,0.0000005563507662507833;61,0.0000002781753831253917;62,0.0000002225403065003133;63,0.0000002781753831253917;64,0.0000003894455363755483;65,0.00003371485643479747;66,0.00006720717256309463;67,0.00010336997236939555;68,0.00013797499003019426;69,0.00017269127784424315;70,0.00020629486412579044;71,0.00023850757349171082;72,0.00027416965760838604;73,0.0002721111597732581;74,0.00026643638195750013;75,0.00026476732965874784;76,0.00027155480900700735;77,0.0002732794963823847;78,0.000281958568335897;79,0.0002816803929527716;80,0.0002822367437190224;81,0.0002786760988150174;82,0.0002788986391215177;83,0.00027578307483051324;84,0.0002745034680681365;85,0.00028023388096051955;86,0.00027372457699538543;87,0.00028117967726314595;88,0.0002895805738335328;89,0.00029570043226229137;90,0.0002906376402894092;91,0.0002790099092747679;92,0.000279121179428018;93,0.0002793437197345183;94,0.0002841839714009001;95,0.0002779528428188913;96,0.0002752267240642625;97,0.00027155480900700735;98,0.00026921813578875404;99,0.0002650455050418732;100,0.00026615820657437475;101,0.0002569784189312368;102,0.0002495789537401014;103,0.00024646338944909704;104,0.0002552537315558594;105,0.0002569227838546118;106,0.0002513036411154789;107,0.0002448499722269697;108,0.00024195694824246565;109,0.00024067734148008885;110,0.0002254889655614425;111,0.00020601668874266506;112,0.00019661436079302684;113,0.0001879352888395146;114,0.00017686390859112403;115,0.00017157857631174158;116,0.00016601506864923375;117,0.0001641234760439811;118,0.00016712777018173532;119,0.00015883814376459863;120,0.00015349717640859113;121,0.00015494368840084316;122,0.00012451130148692532;123,0.00007288195037885261;124,0.000025536500170910956;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00025948199737936534;2,0.000335924592662223;3,0.00041409187532045805;4,0.0004894774041474391;5,0.0005386588118840084;6,0.0006004693820144705;7,0.0006921003532159746;8,0.0007416712064889192;9,0.0008119383082663932;10,0.0009028460234717711;11,0.0009852972070301374;12,0.0011505890196832449;13,0.0013546028456674073;14,0.0014761098530165784;15,0.0015370858969976642;16,0.0016267140054406653;17,0.0017110011465276591;18,0.0018060258574032926;19,0.0018744013665755142;20,0.001922581342932832;21,0.001974099423887655;22,0.0020768574104141737;23,0.0021466237965020226;24,0.002216779628126246;25,0.0022902179292713497;26,0.0023859658961431092;27,0.002462408491425967;28,0.0025456942011337093;29,0.00262786720930895;30,0.0026355448498832108;31,0.00270631266735031;32,0.0027703486405457754;33,0.0028352191398906173;34,0.0029019255967640857;35,0.003018870527830001;36,0.003072669646926451;37,0.0031101120534951293;38,0.0032231068941206637;39,0.003357521239246852;40,0.003407147727596422;41,0.0034058681208340453;42,0.003538780318891358;43,0.003596084447815188;44,0.0036272400907252323;45,0.0037360623006038856;46,0.0037877472867885835;47,0.003864301152224691;48,0.003988979358941491;49,0.004076048253859739;50,0.004180753468068136;51,0.004241061891129721;52,0.0042553044707457416;53,0.004348326318862873;54,0.004415366586196092;55,0.004432335284566741;56,0.00449937555189996;57,0.004585109204979206;58,0.004639520309918533;59,0.00470105270466587;60,0.00478684199282174;61,0.00491107511892554;62,0.00492882270836894;63,0.004836190305788184;64,0.004755519444681821;65,0.004083447719050875;66,0.0034202219706033154;67,0.0028000021363869428;68,0.002168822192075429;69,0.001605739581553011;70,0.0010506127869879794;71,0.0005224133695094855;72,0.000007900180880761123;73,0.0000068987495015097135;74,0.000004228265823505953;75,0.0000061198584287586154;76,0.000008178356263886515;77,0.000007566370421010654;78,0.000006954384578134792;79,0.00000734383011451034;80,0.0000066762091950094005;81,0.0000071212898080100265;82,0.000006954384578134791;83,0.000008345261493761749;84,0.000006509303965134165;85,0.000004506441206631345;86,0.000005619142739132912;87,0.000004395171053381188;88,0.000004172630746880875;89,0.0000039500904403805615;90,0.0000032824695208796216;91,0.00000400572551700564;92,0.0000041726307468808745;93,0.000003894455363755483;94,0.0000037831852105053263;95,0.0000037275501338802484;96,0.0000035606449040050133;97,0.0000026704836780037604;98,0.0000016690522987523497;99,0.0000022810381416282113;100,0.0000029486590611291516;101,0.0000018359575286275849;102,0.00000267048367800376;103,0.0000028373889078789947;104,0.00000267048367800376;105,0.0000012796067623768015;106,0.0000016690522987523501;107,0.000001835957528627585;108,0.0000020584978351278983;109,0.000001835957528627585;110,0.0000015021470688771152;111,0.0000006119858428758616;112,0.000000500715689625705;113,0.000001168336609126645;114,0.0000006119858428758616;115,0.0000006119858428758617;116,0.0000002781753831253917;117,0.0000008901612260012533;118,0.00000033381045975047;119,0.0000005007156896257051;120,0.00000027817538312539163;121,0.0000007232559961260183;122,0.00000033381045975047;123,0.00000033381045975046994;124,0.00000005563507662507833;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.000000055635076625078326;25,0.00000033381045975047;26,0.0000002781753831253917;27,0.00000005563507662507833;28,0.00000011127015325015665;29,0.0000002781753831253917;30,0.0000006119858428758616;31,0.0000010570664558764885;32,0.0000013352418390018802;33,0.0000006119858428758617;34,0.0000020028627585028196;35,0.000002281038141628212;36,0.000003171199367629465;37,0.00000267048367800376;38,0.0000028373889078789947;39,0.00000400572551700564;40,0.000002114132911752977;41,0.000003616279980630092;42,0.000004061360593630719;43,0.00000300429413775423;44,0.0000029486590611291516;45,0.0000035606449040050133;46,0.000002114132911752977;47,0.00000200286275850282;48,0.0000037831852105053263;49,0.000003505009827379935;50,0.00000233667321825329;51,0.000001947227681877742;52,0.0000022254030650031335;53,0.000002559213524753603;54,0.00000267048367800376;55,0.000002837388907878995;56,0.0000020584978351278983;57,0.000001835957528627585;58,0.000002503578448128525;59,0.0000028930239845040734;60,0.0000025592135247536034;61,0.0000026704836780037604;62,0.0000027817538312539165;63,0.0000019472276818777414;64,0.000003838820287130406;65,0.0002891354932205321;66,0.0005484505853700222;67,0.000777778371218595;68,0.0009846852211872613;69,0.0011446360664843615;70,0.0012460588111718792;71,0.0013338509620862528;72,0.0014081237893807325;73,0.001306812314846465;74,0.0011898673837805501;75,0.0010793761216031446;76,0.0009558662514954708;77,0.0008263477931122886;78,0.0006985540221044835;79,0.0005625818948327921;80,0.00043267399091323423;81,0.000296145512875292;82,0.00017653009813137357;83,0.00007299322053210276;84,0.000012184081780892155;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0.00000008692980722668488;5,0;6,0;7,0;8,0;9,0;10,0;11,0.00000011996313397282515;12,0;13,0;14,0;15,0;16,0;17,0;18,0.0000001738596144533698;19,0;20,0;21,0;22,0;23,0.0000016467982681023185;24,0.000002058497835127898;25,0.0000016467982681023185;26,0.0000024010012756010364;27,0.000002058497835127898;28,0.00000009562278794935339;29,0.0000002503578448128525;30,0.0000005841683045633225;31,0.000000500715689625705;32,0.0000006676209195009401;33,0.00000033381045975047005;34,0.00000005563507662507833;35,0.00000038944553637554835;36,0.0000002781753831253917;37,0.00000038944553637554835;38,0.00000026078942168005465;39,0.0000005215788433601093;40,0.00000043464903613342435;41,0.00000043464903613342435;42,0;43,0.00000007423647002556042;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.0000004289100835104349;53,0.0000009320566370464302;54,0.0000016881610028819362;55,0.0000009183169714665286;56,0.0000006213710913642868;57,0.0000005147460019774892;58,0.0000008275717647980405;59,0.0000007093472269697489;60,0.00000117529099370478;61,0.0000009296257731361399;62,0.00000038944553637554825;63,0.00000033381045975047;64,0.000000166905229875235;65,0.0000003106855456821434;66,0.00000044541882015336266;67,0.000001413293708469244;68,0.0000015459501796431935;69,0.0000017003470293539567;70,0.0000014529432126407831;71,0.0000008896380618118648;72,0.0000005937226566281156;73,0.00000005563507662507833;74,0;75,0;76,0.00000005563507662507833;77,0;78,0.00000022270941007668133;79,0.00000044541882015336266;80,0.0000007561043658355058;81,0.0000009807373290933737;82,0.0000019978160736455877;83,0.0000005911226891414573;84,0.00000047289815131316573;85,0.000000055635076625078326;86,0;87,0.00000016690522987523502;88,0.0000008345261493761753;89,0.00000016690522987523502;90,0;91,0.00000011127015325015666;92,0.00000007423647002556045;93,0.000000055635076625078326;94,0;95,0.00000046733464365065794;96,0.000000528533227938244;97,0.0000012796067623768013;98,0.00000116138222454851;99,0.000002610811253492895;100,0.0000023351935619600694;101,0.000003246704114477785;102,0.000003210220017876385;103,0.0000021013127468695763;104,0.0000004802171654778442;105,0.00000011996313397282513;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.00015805925269184753;2,0.00019811650786190392;3,0.00022615658648094343;4,0.00026248629151711956;5,0.0003191227995214493;6,0.00035439543810174897;7,0.00037503605152965303;8,0.0004017408883096906;9,0.0004661106719649063;10,0.0005455575613855182;11,0.0006088146435082322;12,0.0006897080449210962;13,0.0007965830271178715;14,0.0008675733848914715;15,0.0008836519220361192;16,0.0009028460234717712;17,0.0009752828932376231;18,0.001071865386258759;19,0.0011263321262747108;20,0.0011543722048937503;21,0.0011657217605252662;22,0.0011906462748533012;23,0.0012466707970147555;24,0.0013030847647125846;25,0.001328064914117245;26,0.001377357592007064;27,0.0014491268408534153;28,0.0015232883979946449;29,0.0015382542336067908;30,0.001542593769583547;31,0.0015498819646214321;32,0.0015543327707514386;33,0.0015978394006722497;34,0.0016821265417592433;35,0.0017288600061243092;36,0.0017245761052241781;37,0.0018032441035720388;38,0.0018434126288953455;39,0.0018235509065401925;40,0.001809642137383923;41,0.001818877560103686;42,0.0017727004465048707;43,0.0016767855744032358;44,0.0016030690978750073;45,0.0015355837499287871;46,0.0015044281070187432;47,0.0014715477767333217;48,0.0014235903406825045;49,0.0013728511508004327;50,0.0012960191099811997;51,0.0012184081780892155;52,0.001139072558821854;53,0.0011144262198769443;54,0.0011153163811029455;55,0.001091615838460662;56,0.0010414886344214665;57,0.0010268566092690706;58,0.0009806238605936308;59,0.000903346739161397;60,0.0008496032551415714;61,0.0008330240023072979;62,0.0008015901840141286;63,0.0007436740692474221;64,0.0006706252136386942;65,0.0005486731256765225;66,0.000448140542215006;67,0.00035400599256537343;68,0.0002480211715945993;69,0.00016712777018173532;70,0.00010570664558764883;71,0.000048291246510567996;72,0.00000038944553637554825;73,0.000001502147068877115;74,0.0000012796067623768017;75,0.00000066762091950094;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0.000865014171366718;2,0.0009785097276818777;3,0.0010567882804933628;4,0.0011318956339372186;5,0.0012141799122657095;6,0.0012967423659773257;7,0.001391933982082835;8,0.0014901855274027233;9,0.0015545553110579387;10,0.0016245998725289124;11,0.0017954551928445277;12,0.0020579414843616478;13,0.002295058180937732;14,0.002473813682134108;15,0.002582135176323135;16,0.0026837248262405284;17,0.0027746325414459063;18,0.0029103821284110977;19,0.0029692996745570555;20,0.0030144753567766195;21,0.0030549220574830516;22,0.0031465530286845554;23,0.00328113427904062;24,0.003328257188942061;25,0.003384782426793141;26,0.003453714286731613;27,0.003499390684640802;28,0.0036095481363584573;29,0.0037154773222526066;30,0.003868863228507948;31,0.003960271659402951;32,0.003964889370762833;33,0.003922272902068022;34,0.003910200090440381;35,0.003838208301287529;36,0.003716756929014983;37,0.003574442403008033;38,0.003491156693300291;39,0.0033402743654930784;40,0.0032139271064775257;41,0.003123631377115023;42,0.003061709536831311;43,0.00296879895886743;44,0.002864872635731784;45,0.0027317378973679713;46,0.0026219142561100667;47,0.002516318880675668;48,0.0024138947046088988;49,0.0022993420818378622;50,0.0021815626246225717;51,0.00205972180681365;52,0.0020068128489432;53,0.0019165727546573235;54,0.0018061927626331683;55,0.0017581240564291003;56,0.001630664095881046;57,0.0015104923303708767;58,0.0014023933764883497;59,0.0013158251972597275;60,0.001241385464735373;61,0.0011405190708141059;62,0.001060293290320743;63,0.0009572571284110977;64,0.0008639014698342163;65,0.0006660631373554377;66,0.0004989910022503276;67,0.00035817862331225436;68,0.0002539184897168575;69,0.0001931093509656469;70,0.00012445566641030022;71,0.00006242255597333789;72,0.000002114132911752976;73,0.00000133524183900188;74,0.00000038944553637554835;75,0.0000005007156896257051;76,0.0000011127015325015668;77,0.0000009457963026263316;78,0.0000007788910727510968;79,0.0000011683366091266452;80,0.0000011127015325015668;81,0.0000012796067623768015;82,0.0000006119858428758616;83,0.0000017803224520025066;84,0.0000012796067623768015;85,0.0000011127015325015668;86,0.00000022254030650031333;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.00043378669244573576;2,0.000563138245599043;3,0.0006813627834273343;4,0.000784065134877229;5,0.0008859329601777473;6,0.0009796224292143794;7,0.0010885002741696575;8,0.0011959316071326839;9,0.0012992459444254544;10,0.001362948107161169;11,0.0014757760425568281;12,0.0017069954210106536;13,0.0020388030180026207;14,0.002307520438101749;15,0.0024287492700677945;16,0.0025948756088702784;17,0.002777692470660286;18,0.0028682663754059133;19,0.002967074271492053;20,0.003079790936734461;21,0.003216375049849029;22,0.0033386609482709507;23,0.0035015604526291806;24,0.0036316908968552384;25,0.003682374451660685;26,0.0037115272318122257;27,0.003780737267133823;28,0.00391042263074688;29,0.004105979925084031;30,0.004235609653620464;31,0.004326517368825842;32,0.004386825791887426;33,0.0045591832592719195;34,0.004715072743975389;35,0.0048381375334700626;36,0.004941618775992708;37,0.0051012358108300584;38,0.005200099341992821;39,0.005368395448783684;40,0.00555327080840882;41,0.0056362227076568105;42,0.005566289416339087;43,0.00563588889719706;44,0.005741762448014585;45,0.005911171256337947;46,0.006073124964393551;47,0.0063024527502421246;48,0.006394250626673502;49,0.006556482510112232;50,0.006662912411696006;51,0.006778021385233294;52,0.006981590130604455;53,0.007171472647125847;54,0.007228888046202929;55,0.0071570631622799525;56,0.007216370153962285;57,0.007413373960291687;58,0.007505171836723067;59,0.007440802053067852;60,0.0073621896897966155;61,0.007259209162963597;62,0.006980477429071954;63,0.006753653221671509;64,0.006574118829402381;65,0.0056073481028883956;66,0.004645083817581041;67,0.0037874691114054577;68,0.00298643527815758;69,0.0022204515431835017;70,0.0014375547449153989;71,0.0007057865820657437;72,0.000006620574118384322;73,0.0000075663704210106526;74,0.000011572095938016294;75,0.000014131309462769894;76,0.000014020039309519738;77,0.00000906851748988777;78,0.000007955815957386202;79,0.0000064536688885090875;80,0.000007010019654759869;81,0.000009179787643137925;82,0.000009291057796388082;83,0.000007232559961260183;84,0.000004116995670255797;85,0.0000022810381416282118;86,0.0000028373889078789956;87,0.0000022254030650031335;88,0.000004450806130006267;89,0.000005118427049507208;90,0.0000045620762832564235;91,0.0000053966024326325986;92,0.000006453668888509087;93,0.00000634239873525893;94,0.0000033937396741297785;95,0.0000020584978351278983;96,0.0000005007156896257049;97,0.0000017803224520025068;98,0.0000028373889078789956;99,0.0000046177113598815005;100,0.000004895886743006893;101,0.000004506441206631345;102,0.0000032268344442545437;103,0.0000039500904403805615;104,0.000002781753831253917;105,0.000001947227681877742;106,0.0000022254030650031335;107,0.0000018915926052526636;108,0.0000017246873753774284;109,0.000001502147068877115;110,0.0000021141329117529766;111,0.0000010570664558764883;112,0.0000008345261493761749;113,0.00000033381045975046994;114,0.00000033381045975047;115,0.00000011127015325015664;116,0.0000002225403065003133;117,0.000000500715689625705;118,0.0000005563507662507834;119,0.000000500715689625705;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forbidden_arcanus:stella_arcanum", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0.00001835957528627585;19,0.000035272638580299666;20,0.000039834714863556085;21,0.00003588462442317553;22,0.00003638534011280123;23,0.00003538390873354982;24,0.000037331136415427564;25,0.00003655224534267647;26,0.00003666351549592662;27,0.00003811002748817866;28,0.00003538390873354982;29,0.00003911145886743007;30,0.000035773354269925364;31,0.00003432684227767333;32,0.0000374980416453028;33,0.00003482755796729904;34,0.00003310287059192161;35,0.00003900018871417991;36,0.00003388176166467271;37,0.0000321014392126702;38,0.0000374980416453028;39,0.00003566208411667521;40,0.000035272638580299666;41,0.00003705296103230217;42,0.000033603586281547314;43,0.00003388176166467271;44,0.00003499446319717427;45,0.00003677478564917678;46,0.00003521700350367459;47,0.0000359402594998006;48,0.000033269775821796843;49,0.0000331028705919216;50,0.00003059929214379308;51,0.00003399303181792286;52,0.000031433818293169256;53,0.00003293596536204637;54,0.000034493747507548566;55,0.00003171199367629465;56,0.00003237961459579559;57,0.00003215707428929528;58,0.000033047235515296525;59,0.0000328803302854213;60,0.0000331028705919216;61,0.00003043238691391785;62,0.000031767628752919734;63,0.00003399303181792286;64,0.000030654927220418163;65,0.000032212709365920356;66,0.000030543657067168004;67,0.00003276906013217113;68,0.00003076619737366831;69,0.00003115564291004386;70,0.00003332541089842192;71,0.0000326021549022959;72,0.00003098873768016863;73,0.00003059929214379308;74,0.000030265481684042614;75,0.000030543657067168004;76,0.00002781753831253917;77,0.0000328803302854213;78,0.00003093310260354355;79,0.000031211277986668945;80,0.000032101439212670204;81,0.000030209846607417534;82,0.000030209846607417534;83,0.00003071056229704324;84,0.000029208415228166123;85,0.000030321116760667693;86,0.00003499446319717427;87,0.000030154211530792458;88,0.00002865206446191534;89,0.00003110000783341879;90,0.00003065492722041816;91,0.000030432386913917852;92,0.00002970913091779183;93,0.000027261187546288384;94,0.00003215707428929528;95,0.000029931671224292143;96,0.000029987306300917223;97,0.000030543657067168004;98,0.000027483727852788695;99,0.000028485159232040106;100,0.00002770626815928901;101,0.00002509141955791033;102,0.000028373889078789947;103,0.00002698301216316299;104,0.0000272055524696633;105,0.000015021470688771151;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.0000033347664929071946;45,0.000005557944154845323;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0.000000584116094468892;54,0;55,0.0000017041416146948257;56,0.0000017765951052609943;57,0.0000028559917822053164;58,0.0000012536322403976572;59,0.0000007925390002755916;60,0.0000026391403693142925;61,0.0000007075078426429233;62,0.0000011921032706325153;63,0.000005353175828528527;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0.00000028512976770352636;84,0;85,0.00000028512976770352636;86,0.0000002859990657757933;87,0.0000005719981315515866;88,0.0000011439962631031731;89,0.0000007410592206460433;90,0.00000037052961032302166;91,0.0000007410592206460433;92,0;93,0;94,0.00000037052961032302166;95,0;96,0.00000037052961032302166;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000021141329117529766;46,0.000013630593773144192;47,0.000029820401071041988;48,0.00004450806130006267;49,0.00006325708212271406;50,0.00008100467156611405;51,0.00009457963026263317;52,0.00011577659445678799;53,0.0001381975303366946;54,0.00015015907181108643;55,0.0001717454815416168;56,0.00019038323221101804;57,0.00020223350353215972;58,0.00022075998404831083;59,0.00023967591010083748;60,0.0002490226029738506;61,0.00027800847789551645;62,0.00028379452586452464;63,0.00030493585498205433;64,0.0003138374672420669;65,0.000288356602147781;66,0.0002603721586053666;67,0.0002259896812510682;68,0.0001926642703526463;69,0.0001491020053552099;70,0.00010247981114339428;71,0.000052519512334073945;72,0.00000044508061300062666;73,0.00000016690522987523494;74,0.0000007232559961260185;75,0.0000011127015325015663;76,0.0000012239716857517233;77,0.0000013908769156269582;78,0.0000007232559961260183;79,0.000001168336609126645;80,0.0000016690522987523501;81,0.0000005563507662507834;82,0.0000008901612260012533;83,0.0000006676209195009401;84,0.0000008345261493761751;85,0.0000016134172221272719;86,0.000001947227681877742;87,0.0000009457963026263316;88,0.000001168336609126645;89,0.000001168336609126645;90,0.0000006119858428758618;91,0.0000011127015325015668;92,0.000000834526149376175;93,0.00000066762091950094;94,0.0000010014313792514098;95,0.00000033381045975047005;96,0.0000004450806130006266;97,0.00000044508061300062666;98,0.0000003894455363755483;99,0.0000006119858428758616;100,0.0000008345261493761749;101,0.0000006119858428758616;102,0.0000007788910727510966;103,0.0000002781753831253916;104,0.00000033381045975046994;105,0.0000002781753831253917;106,0.00000022254030650031322;107,0.0000002225403065003133;108,0.0000007232559961260181;109,0.0000005563507662507833;110,0.0000004450806130006266;111,0.00000044508061300062655;112,0.00000016690522987523502;113,0.0000001112701532501567;114,0.0000007788910727510968;115,0.00000011127015325015669;116,0.00000027817538312539174;117,0.00000005563507662507833;118,0;119,0.0000002781753831253917;120,0.00000022254030650031338;121,0.00000005563507662507834;122,0.00000022254030650031336;123,0;124,0;125,0;126,0.00000016690522987523497;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0.000000834526149376175;32,0.0000011683366091266452;33,0.0000007788910727510967;34,0.00000022254030650031333;35,0.0000009457963026263317;36,0.0000005007156896257049;37,0.000001835957528627585;38,0.0000016690522987523501;39,0.000001780322452002507;40,0.000001112701532501567;41,0.0000013352418390018804;42,0.0000026704836780037604;43,0.0000036719150572551698;44,0.000003115564291004387;45,0.000001835957528627585;46,0.000002336673218253289;47,0.000002614848601378681;48,0.0000020028627585028196;49,0.0000017246873753774286;50,0.000001502147068877115;51,0.0000006119858428758616;52,0.0000009457963026263317;53,0.0000011127015325015668;54,0.0000010014313792514098;55,0.0000011127015325015668;56,0.0000015577821455021934;57,0.000001835957528627585;58,0.00000166905229875235;59,0.0000030042941377542307;60,0.0000023923082948783683;61,0.000002893023984504073;62,0.000004450806130006265;63,0.000003727550133880249;64,0.000004562076283256424;65,0.0003895568065287985;66,0.000799030970489375;67,0.0012299802740272318;68,0.001683739958981371;69,0.002142618070985017;70,0.002538294735942574;71,0.002960231157067168;72,0.003472797118014015;73,0.0035490728080669973;74,0.0035798946405172904;75,0.0035920787222981825;76,0.0036364198783683695;77,0.003669912194496667;78,0.003720929559761864;79,0.0037114159616589756;80,0.0037426272396456446;81,0.00380315820301373;82,0.003859460900558309;83,0.003956655379422321;84,0.004049343417079701;85,0.004098524824816271;86,0.0041300699132626895;87,0.004120222504700051;88,0.004101640389107275;89,0.004124673310830057;90,0.004217305713410812;91,0.004264150447929129;92,0.004217305713410812;93,0.004209294262376801;94,0.004259977817182248;95,0.004186094435424144;96,0.004124005689910557;97,0.004093962748533015;98,0.004035545918076682;99,0.0039275582343474055;100,0.0038579587534894313;101,0.0038330342391613963;102,0.00376065300447217;103,0.003675030621546175;104,0.0035509087655956244;105,0.0034189423638409386;106,0.0033166294579274197;107,0.0032621070828348425;108,0.003225276662109041;109,0.0031861652032416114;110,0.0030228762533470064;111,0.0026644750897282512;112,0.0024821033085512447;113,0.0023710000605309633;114,0.002245598597818037;115,0.0020992783462940806;116,0.0019596899390417594;117,0.0018974342882982966;118,0.0018302271157352018;119,0.0017766505369452516;120,0.001759236757961602;121,0.001764188279781234;122,0.0017496675247820883;123,0.0016906387084828804;124,0.0015479347369395545;125,0.0014427844421181564;126,0.001376634336010938;127,0.0013166597234091039;128,0.0012659761686036573;129,0.001211676333817581;130,0.001104467541161055;131,0.0010126140296530506;132,0.000969496845268615;133,0.0009271029168803051;134,0.000867740290121347;135,0.0007976957286503731;136,0.0007539665584230615;137,0.0007295983948612773;138,0.0007076781746709964;139,0.0006870375612430923;140,0.0006290658113997608;141,0.00059663056172734;142,0.0005724293033954309;143,0.000562581894832792;144,0.0005297015645473708;145,0.0005145131886287244;146,0.0004878083518486868;147,0.00045019904005013387;148,0.0003926167357431778;149,0.000365077372813764;150,0.00034721851321711393;151,0.0003220714585825785;152,0.0002920285172050362;153,0.0002584805660001139;154,0.00023850757349171077;155,0.00021547465176892838;156,0.0001725243726143679;157,0.00013975531248219678;158,0.0001453744552213297;159,0.00015210629949296417;160,0.0001437610379992024;161,0.0001338023592833134;162,0.00013335727867031275;163,0.0001296297285364325;164,0.00011505333846066197;165,0.00010570664558764883;166,0.00009252113242750527;167,0.00007783347219848458;168,0.00006837550917222127;169,0.00006659518672021875;170,0.00006130985444083633;171,0.000053020228023699644;172,0.000049459583119694636;173,0.00004500877698968837;174,0.000037275501338802474;175,0.000035717719193300295;176,0.000029264050304791206;177,0.00002442379863840939;178,0.00001930537158890218;179,0.000016746158064148577;180,0.000013519323619894036;181,0.00001034812425226457;182,0.000010960110095140432;183,0.000010626299635389962;184,0.000006843114424884635;185,0.00000400572551700564;186,0.0000003894455363755483;187,0.0000017246873753774284;188,0.0000020028627585028196;189,0.0000016690522987523497;190,0.00000033381045975046994;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "create_new_age:thorium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0.0001597283049905999;82,0.0005486174905998975;83,0.0009470759093887086;84,0.0011017414224064263;85,0.0010947870378282916;86,0.0010926729049165384;87,0.001078263420070643;88,0.001041822444881217;89,0.0010210705613000626;90,0.001028525661567823;91,0.0010252431920469436;92,0.0010190120634649348;93,0.0010267453391158206;94,0.001023351599441691;95,0.0009959235066655274;96,0.0009741145566284967;97,0.0009935868334472742;98,0.0009875226100951404;99,0.000968773589272489;100,0.0009757836089272489;101,0.0010028222561670368;102,0.0010123914893465505;103,0.000984240140574261;104,0.0009570902231812225;105,0.0009502471087563379;106,0.0009333896805389392;107,0.0009149188350994133;108,0.0008898830506181279;109,0.0008728030820942289;110,0.0008226758780550333;111,0.0007603645922349457;112,0.0007303216508574033;113,0.0006991103728707344;114,0.0006803057169714579;115,0.0006558819183330484;116,0.0006095935345809833;117,0.0005851141008659488;118,0.0005673108763459237;119,0.0005690911987979263;120,0.0005808301999658178;121,0.0005761568535293112;122,0.0005630269754457928;123,0.0005517886899675268;124,0.0005266416353329915;125,0.0004905344706033157;126,0.0004866956503161852;127,0.00047579117529766987;128,0.000448919433287757;129,0.0004397396456446192;130,0.00042933588631572945;131,0.0004034099406084429;132,0.0003754811321426537;133,0.00037325572907765054;134,0.0003668020601891414;135,0.0003450487452287358;136,0.0003354795120492223;137,0.00033425554036347065;138,0.00030081885931179854;139,0.0002814578526462713;140,0.00027261187546288385;141,0.0002781197480487666;142,0.0002811796772631459;143,0.00027722958682276533;144,0.0002576460398507377;145,0.00026076160414174215;146,0.00026816106933287754;147,0.00025280578818435593;148,0.00023350041659545376;149,0.00023071866276419984;150,0.0002253220603315672;151,0.0002000637355437817;152,0.00018865854483564063;153,0.0001707440501623654;154,0.00016723904033498548;155,0.00016473546188685694;156,0.00015472114809434283;157,0.00015761417207884693;158,0.00014420611861220303;159,0.00012590217840255228;160,0.00012184081780892156;161,0.00011494206830741181;162,0.00011026872187090525;163,0.00011177086893978237;164,0.0001075982381929015;165,0.0000896281084430012;166,0.00008495476200649459;167,0.00009057390474562751;168,0.0000818948327921153;169,0.00007332703099185325;170,0.00006765225317609525;171,0.00006448105380846579;172,0.00006642828149034353;173,0.00006876495470859683;174,0.00006564939041759244;175,0.00005485618555232724;176,0.00004706727482481627;177,0.000045732032985814386;178,0.00004601020836893978;179,0.000045620762832564233;180,0.000044062980687062034;181,0.00004111432162593289;182,0.000027372457699538543;183,0.000012907337777018172;184,0.000004450806130006266;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0.000000055635076625078326;26,0.00000016690522987523497;27,0.00000033381045975046994;28,0.00000033381045975046994;29,0.00000011127015325015665;30,0;31,0;32,0;33,0.00000027817538312539174;34,0;35,0.00000016690522987523505;36,0.0000005563507662507835;37,0.000000055635076625078345;38,0.0000005563507662507835;39,0.0000007232559961260185;40,0.00000027817538312539174;41,0.000000055635076625078326;42,0;43,0.00000011127015325015665;44,0.000000166905229875235;45,0.00000016690522987523492;46,0.000000055635076625078326;47,0.00000033381045975047005;48,0.00000022254030650031333;49,0.000000500715689625705;50,0.00000033381045975046994;51,0.0000006676209195009399;52,0.0000008901612260012533;53,0.0000009457963026263317;54,0.0000006676209195009401;55,0.000000500715689625705;56,0.0000010014313792514098;57,0.0000011683366091266446;58,0.00000016690522987523497;59,0;60,0.0000003894455363755483;61,0.00000033381045975047;62,0.00000027817538312539163;63,0.00000011127015325015666;64,0.0000015577821455021932;65,0.0001338023592833134;66,0.00027222242992650826;67,0.00042777810417022726;68,0.0005594663305417877;69,0.0007247581431948954;70,0.0008682966408875974;71,0.0010240192203611917;72,0.0011844707813479178;73,0.0011964879578989346;74,0.001219465244545092;75,0.001256963286190395;76,0.0012919577493875692;77,0.001301916428103458;78,0.0013020833333333335;79,0.0012974099868968266;80,0.0012917352090810689;81,0.0012809420042158037;82,0.0012670332350595338;83,0.0013095940686777188;84,0.001354324670284282;85,0.0013937143045348373;86,0.0013995559875804706;87,0.0014121851499743635;88,0.0014280411468125106;89,0.0014307672655671393;90,0.0014399470532102773;91,0.0014429513473480319;92,0.0014820628062154617;93,0.0014854009108129663;94,0.0014749971514840768;95,0.0014739400850282002;96,0.0014752196917905771;97,0.0014599756807953056;98,0.001475108421637327;99,0.0014606989367914316;100,0.001451852959608044;101,0.0014377216501452743;102,0.0014703238050475702;103,0.0014692667385916938;104,0.0014393350673674015;105,0.001436775853842648;106,0.0014534107417535464;107,0.0014598087755654304;108,0.0014549128888224237;109,0.001433827194781519;110,0.00136712073790805;111,0.0013059777886970888;112,0.0012791060466871757;113,0.0012447792044095027;114,0.0011621611156212614;115,0.0010914489332307868;116,0.0010406541082720903;117,0.0010337553587705804;118,0.0010354800461459578;119,0.0010417668098045918;120,0.001061739802312995;121,0.0010398195821227142;122,0.0010017651897111604;123,0.0009799006045975046;124,0.0009796224292143792;125,0.0009364496097533185;126,0.0008779215091437361;127,0.0008556118434170797;128,0.0008689086267304733;129,0.0008455975296245656;130,0.000799030970489375;131,0.0007405585049564177;132,0.0007297653000911525;133,0.0007138536681763801;134,0.0007076225395943713;135,0.0006783028542129549;136,0.0006135436250213638;137,0.00058238798211132;138,0.0005877845845439526;139,0.0006012482730872216;140,0.0005915121346778329;141,0.0005753223273799351;142,0.0005651967434341707;143,0.0005400496887996353;144,0.0005322051429954993;145,0.0005437772389335156;146,0.0005404947694126359;147,0.0005111750840312197;148,0.00048469278755768237;149,0.00047562427006779464;150,0.0004520906326553865;151,0.0004106981356463282;152,0.00038543981085854264;153,0.00038265805702728884;154,0.0003719761223152738;155,0.00034488183999886057;156,0.0003512242387341195;157,0.000346606527374238;158,0.0003088859454224349;159,0.0002649898699652481;160,0.00024907823805047567;161,0.00025280578818435593;162,0.00026192994075086885;163,0.000254252300176608;164,0.00024401544607759352;165,0.00023745050703583432;166,0.00022743619324332024;167,0.0002046258118270381;168,0.00019500094357089958;169,0.00019266427035264625;170,0.00018365138793938356;171,0.0001797569325756281;172,0.00016234315359197856;173,0.0001488794650487096;174,0.00013547141158206573;175,0.00012718178516492906;176,0.00011588786461003817;177,0.00010542847020452342;178,0.00009925297669913973;179,0.00010865530464877797;180,0.00011494206830741184;181,0.00010759823819290147;182,0.00008912739275337548;183,0.0000865125441519968;184,0.00008606746353899617;185,0.00009029572936250213;186,0.00007761093189198427;187,0.00006998892639434854;188,0.00006754098302284508;189,0.00006882058978522189;190,0.00007071218239047456;191,0.00007076781746709964;192,0.00005546817139520309;193,0.00004072487608955734;194,0.00004078051116618241;195,0.0000485137868170683;196,0.00005018283911582065;197,0.000045509492679314074;198,0.00004345099484418618;199,0.00004111432162593288;200,0.000038499473024554203;201,0.0000331028705919216;202,0.00003093310260354355;203,0.000029987306300917216;204,0.000026426661396912208;205,0.000022476570956531646;206,0.00001880465589927648;207,0.000017413778983649518;208,0.000019082831282401867;209,0.000016467982681023187;210,0.000014353849769270209;211,0.000009847408562638864;212,0.000007788910727510967;213,0.000006175493505383695;214,0.00000628676365863385;215,0.000008400896570386827;216,0.000008790342106762377;217,0.000008011451034011282;218,0.000007399465191135419;219,0.000007788910727510967;220,0.000006286763658633852;221,0.0000026148486013786817;222,0.0000017246873753774284;223,0.0000012239716857517235;224,0.0000013908769156269584;225,0.0000015577821455021936;226,0.000000500715689625705;227,0;228,0;229,0;230,0;231,0;232,0.0000002225403065003133;233,0.000001168336609126645;234,0.0000014465119922520365;235,0.00000100143137925141;236,0.00000133524183900188;237,0.0000008901612260012532;238,0.0000002225403065003133;239,0.0000009457963026263317;240,0.000001947227681877742;241,0.0000022254030650031335;242,0.0000007788910727510967;243,0.0000009457963026263317;244,0.000001835957528627585;245,0.0000015021470688771152;246,0.0000004450806130006266;247,0;248,0;249,0.0000002225403065003133;250,0.0000005563507662507834;251,0.0000006119858428758617;252,0.0000004450806130006266;253,0;254,0;255,0;256,0;257,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000005563507662507833;50,0.00000005563507662507833;51,0.00000011127015325015666;52,0.00000005563507662507831;53,0;54,0.00000011127015325015665;55,0;56,0;57,0.000000055635076625078326;58,0.000000166905229875235;59,0.0000002781753831253917;60,0.00000022254030650031328;61,0.00000011127015325015664;62,0.00000011127015325015666;63,0.00000005563507662507833;64,0.00000022254030650031333;65,0.00004122559177918304;66,0.00008617873369224635;67,0.00013725173403406825;68,0.00018715639776676352;69,0.00023989845040733778;70,0.0002996505227026719;71,0.00037041834016977155;72,0.000450310310203384;73,0.00046505360550902985;74,0.00048485969278755766;75,0.0004980452059477013;76,0.0004940394804306956;77,0.0005155146200079759;78,0.0005218013836666098;79,0.0005491182062895231;80,0.0005748216116903094;81,0.0005792167827436904;82,0.0005829443328775708;83,0.0006028060552327238;84,0.0006401928267247764;85,0.0006611116155358058;86,0.0006561044586395489;87,0.0006686779859568165;88,0.000642807675326155;89,0.000629343986782886;90,0.0006174380803851195;91,0.0005961854811143395;92,0.0005727074787785564;93,0.0005352650722098787;94,0.0005124546907935964;95,0.0005152920797014755;96,0.0004997142582464536;97,0.00047111782886116336;98,0.00047695951190679657;99,0.0004468609354526292;100,0.0004156496574659603;101,0.0003983471486355609;102,0.00037420152538027694;103,0.0003560088553238763;104,0.0003379274554207258;105,0.0003477192289067396;106,0.00031500580385119355;107,0.0002905820052127841;108,0.000293308123967413;109,0.00026498986996524804;110,0.00023355605167207886;111,0.00019038323221101807;112,0.00016773975602461116;113,0.00015928322437759926;114,0.0001419807155471999;115,0.000125012017176551;116,0.0001096567360280294;117,0.00009480217056913347;118,0.00008656817922862188;119,0.000078834903577736;120,0.00006837550917222127;121,0.000054911820628952314;122,0.00004979339357944511;123,0.000038666378254429445;124,0.000027928808465789318;125,0.000018749020822651396;126,0.000011627731014641373;127,0.000004172630746880875;128,0.0000005563507662507834;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0.00000005563507662507831;18,0;19,0;20,0.00000011127015325015662;21,0;22,0;23,0.00000005563507662507831;24,0.00000005563507662507831;25,0;26,0.00000005563507662507831;27,0.00000011127015325015662;28,0;29,0.00000005563507662507831;30,0.00000005563507662507831;31,0.00000005563507662507831;32,0;33,0;34,0;35,0.00000005563507662507831;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.000009124152566512845;46,0.00006220001566683759;47,0.00015906068407109896;48,0.00025325086879735654;49,0.0003506122528912437;50,0.00046694519811428243;51,0.0005484505853700222;52,0.0006595538333903036;53,0.0007588068100894434;54,0.0008372522681308038;55,0.0009385081075884464;56,0.001041210459038341;57,0.0011775163967697828;58,0.0013143230501908502;59,0.00141335348658349;60,0.0014776120000854556;61,0.0015876581816498606;62,0.0016481891450179458;63,0.0017283036553580584;64,0.0017797104661596307;65,0.001652695586224577;66,0.0014866248824987184;67,0.001294795138295448;68,0.0010741464244003874;69,0.0008349712299891756;70,0.0006005806521677205;71,0.00030933102603543556;72,0.000003783185210505327;73,0.000004450806130006267;74,0.0000037275501338802476;75,0.000002781753831253916;76,0.000005841683045633225;77,0.000005229697202757363;78,0.000007065654731384949;79,0.000006119858428758616;80,0.000004506441206631346;81,0.000004395171053381189;82,0.000004450806130006267;83,0.000007622005497635732;84,0.000006398033811884008;85,0.000004116995670255797;86,0.000005285332279382442;87,0.000008679071953512221;88,0.000007010019654759871;89,0.000005841683045633225;90,0.000005730412892383068;91,0.00000400572551700564;92,0.000005952953198883382;93,0.000006509303965134165;94,0.000006453668888509086;95,0.000007622005497635732;96,0.000007176924884635104;97,0.000006008588275508461;98,0.000004617711359881502;99,0.000006620574118384321;100,0.000008178356263886515;101,0.000006175493505383694;102,0.0000058416830456332254;103,0.000005062791972882128;104,0.000007399465191135417;105,0.000007455100267760497;106,0.0000068987495015097135;107,0.000006175493505383694;108,0.000007232559961260184;109,0.000006119858428758616;110,0.0000066762091950094005;111,0.000005452237509257677;112,0.000005786047969008147;113,0.00000600858827550846;114,0.0000037831852105053263;115,0.0000036719150572551698;116,0.000004450806130006266;117,0.000005229697202757363;118,0.000004895886743006893;119,0.000004116995670255797;120,0.0000041726307468808745;121,0.000004005725517005639;122,0.0000039500904403805615;123,0.0000031155642910043864;124,0.0000020028627585028196;125,0.0000025035784481285248;126,0.000003894455363755483;127,0.000001168336609126645;128,0.0000023366732182532896;129,0.0000018915926052526631;130,0.0000020584978351278983;131,0.0000017803224520025062;132,0.0000017246873753774282;133,0.0000015577821455021932;134,0.00000233667321825329;135,0.00000200286275850282;136,0.0000007788910727510966;137,0.00000022254030650031336;138,0.0000005007156896257049;139,0.0000012796067623768017;140,0.00000044508061300062676;141,0.00000033381045975046994;142,0.00000011127015325015665;143,0.00000011127015325015665;144,0.00000027817538312539174;145,0;146,0;147,0;148,0;149,0;150,0;151,0.00000011127015325015665;152,0;153,0.00000005563507662507834;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0.0002340011322850795;2,0.0011914808010026776;3,0.002125593737537743;4,0.0023123050546915054;5,0.002326269458924401;6,0.0023148642682162598;7,0.0022681864389278187;8,0.0022639025380276874;9,0.002249659958411667;10,0.002264403253717313;11,0.002346576261892554;12,0.002509587036404033;13,0.0026601355537514957;14,0.002784646855238421;15,0.0027917681450464306;16,0.00277346420483678;17,0.0027845355850851707;18,0.0027887638509086765;19,0.0027563842363128805;20,0.0027180516685182017;21,0.0026744337684441403;22,0.00268494879792628;23,0.0026895108742095368;24,0.0026482852824303536;25,0.0026091181884862983;26,0.0026039997614367913;27,0.0025849725652310144;28,0.002552370410328719;29,0.002563274885347234;30,0.002551980964792343;31,0.002531006540904689;32,0.0024855526833019994;33,0.0024978480352361417;34,0.0024839949011564973;35,0.0024962902530906396;36,0.0025022988413661486;37,0.002512034979775537;38,0.0024983487509257674;39,0.002465468420640346;40,0.002431030308209423;41,0.00242924998575742;42,0.0024737580470574833;43,0.002460961979433715;44,0.0024439932810630663;45,0.002432087374665299;46,0.0024348691284965538;47,0.0024346465881900526;48,0.0024523385425568277;49,0.0024521160022503274;50,0.0023915850388822424;51,0.002442546769070814;52,0.002433867697117302;53,0.002406662144647639;54,0.0023822939810858542;55,0.0023794565921779753;56,0.0023795678623312255;57,0.002391974484418618;58,0.0023982056130006264;59,0.002380958739246853;60,0.0023656590931749556;61,0.0023765635681934714;62,0.002356256765225318;63,0.002328884307525779;64,0.002304404873810744;65,0.0020089269818549535;66,0.0017098884449951576;67,0.0014203635062382497;68,0.0011270553822708368;69,0.0008332465426137982;70,0.0005645291225146699;71,0.00028490722739702616;72,0.0000033381045975047003;73,0.0000050071568962570495;74,0.000004784616589756737;75,0.0000039500904403805615;76,0.000003171199367629465;77,0.000003115564291004387;78,0.0000039500904403805615;79,0.000003894455363755484;80,0.000004840251666381814;81,0.000005563507662507834;82,0.00000367191505725517;83,0.000002726118754628838;84,0.0000036162799806300915;85,0.0000036162799806300915;86,0.000004228265823505953;87,0.0000016134172221272719;88,0.0000003894455363755483;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000005563507662507833;25,0.00000016690522987523497;26,0;27,0.00000044508061300062666;28,0.00000016690522987523497;29,0.00000016690522987523502;30,0.000000500715689625705;31,0.000000500715689625705;32,0.0000005563507662507833;33,0.0000007788910727510965;34,0.0000009457963026263318;35,0.0000008901612260012532;36,0.00000066762091950094;37,0.0000004450806130006267;38,0.0000011127015325015668;39,0.000001502147068877115;40,0.0000011127015325015668;41,0.0000016690522987523501;42,0.0000011127015325015668;43,0.0000010570664558764883;44,0.0000015577821455021932;45,0.0000010570664558764883;46,0.0000016134172221272719;47,0.0000017803224520025066;48,0.0000024479433715034465;49,0.0000020584978351278987;50,0.00000200286275850282;51,0.0000011127015325015668;52,0.0000016134172221272717;53,0.0000014465119922520367;54,0.000001390876915626958;55,0.0000011127015325015668;56,0.00000133524183900188;57,0.0000011127015325015665;58,0.0000010570664558764885;59,0.000001724687375377428;60,0.0000015577821455021934;61,0.0000007232559961260183;62,0.0000016134172221272715;63,0.0000012239716857517233;64,0.0000041726307468808745;65,0.0002895805738335328;66,0.0005626375299094173;67,0.0008537202508118271;68,0.0011319512690138437;69,0.0013945488306842135;70,0.001709387729305532;71,0.002001861327123569;72,0.002222899486555005;73,0.0022079892860194838;74,0.0022138866041417423;75,0.0022106041346208628;76,0.002218059234888623;77,0.002260008082663932;78,0.0022298538711331395;79,0.0022316341935851424;80,0.0022252361597732582;81,0.00222657140161226;82,0.0022340265018800202;83,0.002240090725232154;84,0.0022636799977211876;85,0.0022994533519911124;86,0.0020292894198997323;87,0.0011096416032871873;88,0.00021680989360793026;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0.00044146433301999664;2,0.0005773251901384379;3,0.0007065654731384949;4,0.000837363538284054;5,0.000963154446533356;6,0.0010556199438842362;7,0.001170450742038398;8,0.0013132103486583491;9,0.0014150781739588674;10,0.0015098247094513758;11,0.0016781208162422378;12,0.0019675901199225207;13,0.0022809268714749616;14,0.0025247754123226794;15,0.002630760233293454;16,0.0027317378973679713;17,0.0028791152153478036;18,0.003048134578134792;19,0.003196457692417251;20,0.003294709237737139;21,0.003434631455449211;22,0.0035299343417079703;23,0.003612886240955962;24,0.003745854074089899;25,0.0039359591309177915;26,0.0041033094414060275;27,0.004223203031533071;28,0.00433931343644961;29,0.00446026409303253;30,0.004571256070899561;31,0.0046810240770808415;32,0.004760582236654703;33,0.004921200702871304;34,0.005074141528513644;35,0.0052006556927590725;36,0.005250949802028143;37,0.005442612641001538;38,0.005537915527260297;39,0.005659366899532843;40,0.005772973726001253;41,0.005769579986327124;42,0.005707324335583661;43,0.005569516250783342;44,0.005399439821540478;45,0.00525189559833077;46,0.005058452436905373;47,0.0049003375491368985;48,0.004809708009314647;49,0.004677908512789836;50,0.004521017596707115;51,0.004408300931464708;52,0.0042639835426992526;53,0.0041006945928046485;54,0.003979910841451603;55,0.0038222410342961316;56,0.003658952084401527;57,0.0035062337990656865;58,0.0033995257220987866;59,0.003271620680937731;60,0.0031304744915399076;61,0.002987158534153706;62,0.0028112960569418328;63,0.002671985825072637;64,0.0025301163796786876;65,0.002073018590127044;66,0.0016699980950549763;67,0.0012817208952885547;68,0.000980735130746881;69,0.0006840332671053381;70,0.00041904339714009004;71,0.00019277554050589645;72,0.0000016134172221272717;73,0.000001168336609126645;74,0.0000019472276818777414;75,0.0000015577821455021932;76,0.0000008345261493761751;77,0.0000012239716857517233;78,0.000001057066455876488;79,0.0000012796067623768015;80,0.0000004450806130006266;81,0.0000007788910727510966;82,0.0000005563507662507832;83,0.000000055635076625078326;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0.0000001112701532501567;52,0.00000005563507662507835;53,0.00000005563507662507833;54,0.000000055635076625078306;55,0.00000005563507662507834;56,0.000000055635076625078326;57,0.00000016690522987523497;58,0.00000005563507662507832;59,0.000000055635076625078345;60,0;61,0.000000055635076625078345;62,0.00000005563507662507831;63,0.000000055635076625078345;64,0.00000022254030650031333;65,0.00001947227681877742;66,0.0000421157530051843;67,0.00007082345254372473;68,0.00009619304748476043;69,0.00011855834828804192;70,0.00014426175368882814;71,0.0001792562168860024;72,0.00021425068008317665;73,0.00022354173787956475;74,0.00023505819874095594;75,0.0002370610614994588;76,0.00025102546573235344;77,0.0002601496182988663;78,0.00027133226870050705;79,0.0002600939832222412;80,0.00024913387312710075;81,0.0002491338731271008;82,0.00023822939810858544;83,0.00023633780550333275;84,0.00021258162778442432;85,0.00020579414843616476;86,0.00020584978351278983;87,0.00019728198171252778;88,0.00018704512761351337;89,0.00017452723537287072;90,0.00016417911112060615;91,0.00015416479732809204;92,0.0001546098779410927;93,0.00013880951617957043;94,0.00013981094755882186;95,0.0001274043254714294;96,0.00011661112060616419;97,0.00011722310644904005;98,0.00010409322836552157;99,0.00009346692873013161;100,0.000084509681393494;101,0.00008183919771549022;102,0.0000737164765282288;103,0.00006197747536033727;104,0.0000570259535407053;105,0.00004907013758331909;106,0.00003605152965305076;107,0.0000341599370477981;108,0.000022810381416282117;109,0.000017135603600524127;110,0.000012740432547142938;111,0.0000031155642910043864;112,0.00000033381045975047;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00006793042855922064;62,0.00016729467541161055;63,0.00025875874138323935;64,0.0003225721742722042;65,0.0002788986391215177;66,0.00023772868241895973;67,0.00019555729433715037;68,0.00015677964592947073;69,0.00011894779382441748;70,0.00007894617373098615;71,0.00003888891856092975;72,0.0000010014313792514098;73,0.0000005563507662507833;74,0.000000500715689625705;75,0.0000005563507662507834;76,0.0000007788910727510966;77,0.0000006676209195009401;78,0.000000834526149376175;79,0.0000011127015325015668;80,0.0000009457963026263315;81,0.0000003894455363755483;82,0.00000022254030650031333;83,0.0000006676209195009401;84,0.0000006119858428758616;85,0.0000002781753831253917;86,0.0000004450806130006266;87,0.0000002225403065003133;88,0.00000016690522987523497;89,0;90,0.00000011127015325015665;91,0;92,0.000000166905229875235;93,0.0000003894455363755484;94,0.00000044508061300062666;95,0.0000002225403065003133;96,0.00000011127015325015668;97,0;98,0.00000011127015325015666;99,0.000000166905229875235;100,0.00000016690522987523502;101,0.00000044508061300062666;102,0.00000011127015325015669;103,0.00000005563507662507833;104,0.00000022254030650031336;105,0;106,0;107,0;108,0.00000011127015325015666;109,0.000000500715689625705;110,0.0000008345261493761751;111,0.0000003894455363755483;112,0.00000005563507662507833;113,0;114,0;115,0;116,0.00000011127015325015666;117,0.00000011127015325015666;118,0.0000002781753831253917;119,0.00000033381045975047;120,0.0000005563507662507834;121,0.0000007232559961260182;122,0.00000038944553637554825;123,0.00000005563507662507833;124,0;125,0.00000011127015325015665;126,0.0000002225403065003133;127,0.0000002225403065003133;128,0.000000055635076625078326;129,0;130,0;131,0;132,0;133,0;134,0.00000011127015325015665;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0.00000011127015325015665;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0.00000011127015325015661;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.0008445960982453142;2,0.0008925535342961316;3,0.0009243211630490514;4,0.0009711658975673674;5,0.0009992059761864069;6,0.0010260220831196946;7,0.0010621848829259956;8,0.0010975131565829203;9,0.0011261652210448358;10,0.0011448029717142367;11,0.0011810770416737881;12,0.0012233040648322226;13,0.0012667550596764086;14,0.0012152926137982112;15,0.0009970918432746537;16,0.0007581391891699424;17,0.0007499608329060559;18,0.000758584269782943;19,0.0007949139748191193;20,0.0008300197081695436;21,0.0008641796452173418;22,0.0009008431607132683;23,0.0009291614147154332;24,0.0009546979148863442;25,0.0009608177733151028;26,0.0010048807540021648;27,0.0010331433729277048;28,0.0010959553744374182;29,0.001116429082635447;30,0.0010982920476556714;31,0.0011344548474619721;32,0.001176737505697032;33,0.0012132341159630832;34,0.0012614697273970262;35,0.0012989677690423292;36,0.0013202760033897338;37,0.0013480379066256479;38,0.0013911550910100838;39,0.0014127971358172393;40,0.0014225889093032532;41,0.001471603411809947;42,0.001521396805389392;43,0.0015588392119580698;44,0.001567518283911582;45,0.0016011775052697545;46,0.0016642676821625932;47,0.0016437383388879393;48,0.0016234871709964109;49,0.0015455424286446762;50,0.0015098803445280009;51,0.001480115578533584;52,0.0014295432938813879;53,0.0014052307653962285;54,0.001378359023386316;55,0.0013512647410699025;56,0.001336966526377257;57,0.0012995797548852046;58,0.0012568520160371446;59,0.0012377691847547429;60,0.0011706732823448984;61,0.0011568757833418787;62,0.0011305047570215917;63,0.0010698625235002566;64,0.0010454387248618469;65,0.0008945563970546345;66,0.0007490150366034295;67,0.0006027504201560987;68,0.00046822480487665924;69,0.0003289145730074631;70,0.00020584978351278983;71,0.00010192346037714352;72,0.00000044508061300062666;73,0.00000011127015325015668;74,0.00000022254030650031328;75,0.0000006676209195009398;76,0.0000006676209195009401;77,0.0000007232559961260182;78,0.00000011127015325015666;79,0.0000002781753831253917;80,0.0000002225403065003133;81,0.00000022254030650031333;82,0;83,0.00000016690522987523502;84,0.00000044508061300062666;85,0.0000003338104597504701;86,0.00000033381045975047005;87,0.00000011127015325015666;88,0.00000016690522987523497;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000011127015325015668;29,0.0000002781753831253917;30,0.00000011127015325015666;31,0.0000003894455363755483;32,0.00000022254030650031333;33,0.00000066762091950094;34,0.0000013352418390018798;35,0.0000006119858428758617;36,0.0000002781753831253917;37,0.0000004450806130006267;38,0.0000003894455363755483;39,0.00000066762091950094;40,0.00000011127015325015669;41,0.00000044508061300062666;42,0.0000017803224520025066;43,0.0000014465119922520367;44,0.0000016690522987523501;45,0.00000166905229875235;46,0.0000016134172221272719;47,0.0000014465119922520365;48,0.00000044508061300062666;49,0.0000009457963026263317;50,0.000000834526149376175;51,0.0000006119858428758616;52,0.0000009457963026263316;53,0.0000012796067623768017;54,0.0000016134172221272715;55,0.0000010014313792514098;56,0.000001168336609126645;57,0.0000009457963026263318;58,0.0000016134172221272715;59,0.0000006676209195009401;60,0.0000011127015325015668;61,0.0000007788910727510966;62,0.0000010570664558764885;63,0.000001390876915626958;64,0.0000018915926052526633;65,0.00019845031832165443;66,0.00039139276405742606;67,0.0005912339592947075;68,0.0007772776555289694;69,0.000973613840938871;70,0.0011287244345695893;71,0.0013140448748077248;72,0.0015223426016920184;73,0.0015478791018629294;74,0.0015310216736455307;75,0.0015289631758104026;76,0.001504483742095368;77,0.0015154438521905087;78,0.0015467107652538028;79,0.0015422043240471714;80,0.0015290744459636528;81,0.0015263483272090243;82,0.0015366408163846636;83,0.0015452642532615508;84,0.0015399789209821681;85,0.0015058746190109952;86,0.0015036492159459921;87,0.001494413793226229;88,0.0014996434904289862;89,0.0015187819567880133;90,0.0015124395580527542;91,0.0015046506473252435;92,0.001483064237594713;93,0.0014940243476898535;94,0.001455135429128924;95,0.0014452880205662849;96,0.0014523536752976698;97,0.0014322137775593913;98,0.0014144661881159914;99,0.0013783033883096908;100,0.0014120182447444883;101,0.0014114062589016122;102,0.0013688454252834274;103,0.0013564388031960348;104,0.0013428082094228905;105,0.001323391567680738;106,0.001343197654959266;107,0.0013265071319717426;108,0.0013048650871645873;109,0.0012801631131430526;110,0.0012113425233578304;111,0.0010858297904916539;112,0.0010437140374864695;113,0.0010027109860137867;114,0.0009328889648493135;115,0.0008903281312311286;116,0.0008423706951803109;117,0.00082734922449154;118,0.0008171123703925256;119,0.0008134960904118953;120,0.000798307714493249;121,0.0007846771207201048;122,0.0007818397318122259;123,0.0007733275650885889;124,0.0007510735344385574;125,0.0007129635069503789;126,0.0006903756658405971;127,0.0006562713638694239;128,0.0006283981904802597;129,0.0005939600780493362;130,0.0005699813600239274;131,0.0005551824296416567;132,0.0005274205264057426;133,0.0005134561221728478;134,0.0005114532594143452;135,0.000490089389990315;136,0.0004629951076739018;137,0.00043478812382498713;138,0.0004174856149945878;139,0.0003982915135589358;140,0.0003954541246510568;141,0.00039856968894206115;142,0.0003482199445963653;143,0.00018164852518088076;144,0.00003388176166467271;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.0001009220289978921;2,0.00013463688543268956;3,0.00017947875719250271;4,0.0002257671409445679;5,0.00024740918575172333;6,0.00027355767176551014;7,0.0003052140303651797;8,0.0003400415883324788;9,0.0003604596614538825;10,0.00039367380219905424;11,0.00043378669244573576;12,0.0004948740065800718;13,0.0005771026498319375;14,0.0006663969478151883;15,0.0007111275494217512;16,0.0007526313165840597;17,0.0007807826653563494;18,0.0008091565544351393;19,0.0008447073683985644;20,0.0009123039864980345;21,0.0009526394170512164;22,0.0009698862908049906;23,0.0010038236875462884;24,0.001052560014669857;25,0.0010671364047456274;26,0.0010711977653392582;27,0.0010879439234034068;28,0.0010825473209707742;29,0.0010789866760667693;30,0.0011174305140146984;31,0.0011829686342790407;32,0.00121801873255284;33,0.0012453355551757534;34,0.0012927922755369451;35,0.0013400820906682618;36,0.0013663418468352988;37,0.0013907100103970832;38,0.0014604207614083062;39,0.0015202284687802657;40,0.001571023293738962;41,0.0015937780400786191;42,0.001600788059733379;43,0.0016304415555745458;44,0.0016373959401526804;45,0.0016827385276021191;46,0.0017440483820429556;47,0.0017723666360451203;48,0.0017764836317153763;49,0.0018401857944510911;50,0.0018697280201390076;51,0.0019018294593516776;52,0.0019290350118213412;53,0.002004754351108073;54,0.0020565506074460204;55,0.002023837182390474;56,0.0019925702693271807;57,0.002051098369936763;58,0.0021349960654873813;59,0.0021754984012704384;60,0.002224457268700507;61,0.0022627898364951863;62,0.002234304677263146;63,0.0022072660300233578;64,0.0021969735408477187;65,0.0020019725972768186;66,0.0017384848743804478;67,0.0014457887362559108;68,0.0011627731014641372;69,0.0008829286660399931;70,0.0005892867316128297;71,0.0002923066925881616;72,0.000004061360593630719;73,0.000004617711359881501;74,0.000007399465191135418;75,0.000006231128582008773;76,0.000005897318122258304;77,0.000006119858428758617;78,0.000004450806130006267;79,0.000004450806130006266;80,0.000005174062126132285;81,0.000004395171053381189;82,0.000004395171053381189;83,0.0000035606449040050133;84,0.000005285332279382441;85,0.000005786047969008146;86,0.0000033381045975046994;87,0.000003894455363755483;88,0.0000041726307468808745;89,0.000003894455363755484;90,0.000003894455363755484;91,0.000004172630746880875;92,0.000004228265823505952;93,0.0000037831852105053267;94,0.0000030599292143793086;95,0.000002948659061129152;96,0.000003059929214379308;97,0.0000035050098273799346;98,0.0000036719150572551698;99,0.000006064223352133538;100,0.000005062791972882128;101,0.000004228265823505954;102,0.000003894455363755483;103,0.000004116995670255797;104,0.000005507872585882755;105,0.000004395171053381189;106,0.000003727550133880248;107,0.000004395171053381189;108,0.0000027261187546288386;109,0.000002503578448128525;110,0.0000022254030650031335;111,0.00000400572551700564;112,0.00000634239873525893;113,0.0000071212898080100265;114,0.000004728981513131658;115,0.0000033381045975047;116,0.0000030599292143793086;117,0.000003783185210505327;118,0.0000021141329117529766;119,0.0000014465119922520367;120,0.0000021697679883780552;121,0.0000015577821455021936;122,0.0000020028627585028196;123,0.00000300429413775423;124,0.000003616279980630092;125,0.0000035606449040050133;126,0.0000030042941377542303;127,0.0000030599292143793086;128,0.000002781753831253916;129,0.0000016134172221272715;130,0.000001168336609126645;131,0.0000005007156896257049;132,0;133,0.00000011127015325015665;134,0.0000009457963026263317;135,0.000002169767988378055;136,0.000002559213524753603;137,0.000001502147068877115;138,0.0000011127015325015668;139,0.00000011127015325015668;140,0;141,0;142,0;143,0.00000022254030650031333;144,0.00000022254030650031333;145,0;146,0;147,0.000000055635076625078326;148,0;149,0;150,0;151,0.00000016690522987523497;152,0;153,0.00000038944553637554835;154,0.00000033381045975046994;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0.00000022254030650031322;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000016690522987523497;13,0.00000033381045975046994;14,0.0000005563507662507831;15,0.00000044508061300062645;16,0.0000005563507662507831;17,0.0000007232559961260181;18,0.000000890161226001253;19,0.0000013352418390018798;20,0.0000011683366091266448;21,0.00000100143137925141;22,0.0000008901612260012533;23,0.0000008345261493761751;24,0.0000014465119922520367;25,0.000002114132911752977;26,0.0000013908769156269587;27,0.0000018915926052526636;28,0.0000013908769156269584;29,0.0000005563507662507834;30,0.0000017246873753774284;31,0.0000014465119922520367;32,0.000001446511992252037;33,0.0000016134172221272719;34,0.000001168336609126645;35,0.0000016134172221272719;36,0.0000009457963026263318;37,0.0000012239716857517233;38,0.000001168336609126645;39,0.000001502147068877115;40,0.00000100143137925141;41,0.0000008901612260012534;42,0.0000015021470688771152;43,0.000001168336609126645;44,0.0000007232559961260183;45,0.0000008901612260012534;46,0.0000005563507662507834;47,0.00000044508061300062676;48,0.0000007232559961260183;49,0.0000008901612260012534;50,0.0000013908769156269584;51,0.0000018915926052526631;52,0.0000016690522987523497;53,0.000002726118754628838;54,0.00000300429413775423;55,0.00000200286275850282;56,0.000002225403065003133;57,0.000002225403065003133;58,0.0000010014313792514098;59,0.0000010570664558764883;60,0.0000011127015325015665;61,0.0000005563507662507833;62,0.0000007232559961260182;63,0.000000500715689625705;64,0.0000013352418390018798;65,0.00011149269355665698;66,0.00021614227268842935;67,0.0003289145730074631;68,0.0004380149582692417;69,0.0005484505853700222;70,0.0006468690359197858;71,0.0007496270224463056;72,0.000858727407708084;73,0.0008862111355608727;74,0.000867183939355096;75,0.0008474891222298183;76,0.0008263477931122886;77,0.0007575272033270666;78,0.00043217327522360844;79,0.00007916871403748647;80,0.0000003894455363755484;81,0.0000013352418390018802;82,0.0000016134172221272719;83,0.0000018915926052526631;84,0.000001502147068877115;85,0.00000044508061300062666;86,0.0000002781753831253917;87,0;88,0;89,0.00000011127015325015665;90,0.00000022254030650031336;91,0.0000003894455363755483;92,0.0000011127015325015668;93,0.0000013908769156269584;94,0.0000010570664558764885;95,0.0000006119858428758616;96,0.0000010570664558764885;97,0.0000014465119922520367;98,0.0000016690522987523503;99,0.0000021141329117529766;100,0.000001168336609126645;101,0.000000834526149376175;102,0.0000007232559961260183;103,0.0000007232559961260183;104,0.0000007788910727510968;105,0.00000027817538312539174;106,0.00000011127015325015668;107,0.0000002781753831253917;108,0.000000500715689625705;109,0.0000002781753831253917;110,0.00000022254030650031336;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.0000002225403065003133;27,0.00000016690522987523497;28,0.0000010570664558764885;29,0.0000005007156896257051;30,0.00000011127015325015669;31,0.00000027817538312539163;32,0.0000006119858428758616;33,0.0000007788910727510967;34,0.00000027817538312539174;35,0.0000002781753831253917;36,0.0000020028627585028196;37,0.0000033381045975046994;38,0.000003505009827379935;39,0.0000030042941377542295;40,0.0000022254030650031335;41,0.0000027817538312539165;42,0.00000600858827550846;43,0.0000053966024326325986;44,0.0000029486590611291516;45,0.0000030599292143793077;46,0.000002893023984504073;47,0.0000016134172221272715;48,0.0000017246873753774282;49,0.0000039500904403805615;50,0.0000035606449040050137;51,0.000004450806130006267;52,0.000004562076283256423;53,0.000005118427049507206;54,0.000004840251666381814;55,0.000004005725517005639;56,0.000004283900900131031;57,0.000004840251666381815;58,0.0000066762091950094005;59,0.000006008588275508459;60,0.00000500715689625705;61,0.000004728981513131658;62,0.000007176924884635104;63,0.0000051740621261322856;64,0.00000934669287301316;65,0.0008239554848174101;66,0.0016162546110351508;67,0.0023737818143622176;68,0.0030632673189768126;69,0.0037959812781290948;70,0.0044221540655443505;71,0.005030968709052583;72,0.0056160271748419074;73,0.0054680935060958235;74,0.0053555437460832914;75,0.005198374654617444;76,0.00511703617259158;77,0.005070080167920014;78,0.004971606082293625;79,0.00476297454494958;80,0.004576541403178944;81,0.004523688080385119;82,0.004477956047399305;83,0.004399955669970946;84,0.004225762245057825;85,0.004096299421751267;86,0.004006059327465391;87,0.0038649687731441926;88,0.003688271769782943;89,0.0035247602795818378;90,0.003392014986754401;91,0.003273679178772859;92,0.003135092202899789;93,0.0030182029069104996;94,0.002894247956189825;95,0.0027568849520025066;96,0.0026408301821625934;97,0.0025040791638181507;98,0.0024043254714293852;99,0.002307242262718624;100,0.0021966397303879682;101,0.0020561055268330203;102,0.0018937623732410416;103,0.0017606832699538543;104,0.001648578590554321;105,0.001501590718110864;106,0.0013204429086196095;107,0.0012089502150629521;108,0.0011517017212157466;109,0.0010812677142083976;110,0.0009363939746766934;111,0.0007223658349000172;112,0.0005792724178203157;113,0.0004729537863897909;114,0.0003822129764142882;115,0.0003162297755369453;116,0.00022304102218993906;117,0.00014392794322907765;118,0.00008439841124024383;119,0.00003844383794792913;120,0.000009736138409388708;121,0.000001057066455876488;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0.000004063779510005721;110,0.000027848001540636862;111,0.00005729195875081895;112,0.00009013196116480074;113,0.00012641449733166434;114,0.00015423010807021716;115,0.0001758983830018141;116,0.00020124348641455288;117,0.0002287936210809491;118,0.00025305845155883873;119,0.00027345615286889673;120,0.0003085598074630614;121,0.0003326592067382418;122,0.0003641607168943428;123,0.00037781553762680537;124,0.0004090314644683825;125,0.0004153461968476024;126,0.00042048646973562136;127,0.0004248348120798052;128,0.0004308109339620929;129,0.00043708405342054904;130,0.00044115516527081644;131,0.00045360521446625394;132,0.0004543133900306045;133,0.0004491891046680016;134,0.00043747342336578776;135,0.00043388099238879255;136,0.00045316508507270827;137,0.00044336495876608716;138,0.0004465540354375506;139,0.0004366083583971772;140,0.0004443214134189909;141,0.0004605247893259296;142,0.00045493304837385736;143,0.0004645852050303514;144,0.000439385690146933;145,0.00041063342963329686;146,0.0003879692036798607;147,0.00036357976121309;148,0.00032962255959397186;149,0.0003024877226327091;150,0.0002734510882627366;151,0.0002438217437897515;152,0.00021481988134266963;153,0.00019152681272286928;154,0.00019412469111405458;155,0.00016619501335019297;156,0.0001443173887654532;157,0.00013597212727169144;158,0.00013163259129493534;159,0.00011633294522303879;160,0.00009869662593288897;161,0.00008378642539736797;162,0.00008478785677661936;163,0.00007304885560872787;164,0.00006281200150971344;165,0.000060308423061584916;166,0.00005769357446020623;167,0.00004100305147268273;168,0.000034938828120549195;169,0.00003065492722041816;170,0.000028985874921665815;171,0.000019472276818777416;172,0.000011071380248390588;173,0.000005118427049507206;174,0.0000035050098273799346;175,0.0000021141329117529766;176,0.00000066762091950094;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000005563507662507835;29,0.00000005563507662507835;30,0.00000005563507662507834;31,0.00000011127015325015668;32,0;33,0;34,0.00000011127015325015668;35,0.00000022254030650031333;36,0.0000005563507662507834;37,0.000000166905229875235;38,0.00000005563507662507833;39,0.00000011127015325015666;40,0.0000003338104597504699;41,0.00000044508061300062655;42,0.00000038944553637554825;43,0.00000033381045975047005;44,0.000000055635076625078326;45,0.00000044508061300062666;46,0.0000008345261493761751;47,0.00000011127015325015666;48,0.00000044508061300062655;49,0.0000005007156896257049;50,0.0000009457963026263316;51,0.0000006676209195009399;52,0.0000006119858428758616;53,0.00000044508061300062666;54,0.00000027817538312539163;55,0.000000500715689625705;56,0.0000007788910727510967;57,0.00000044508061300062666;58,0.00000066762091950094;59,0.0000006119858428758616;60,0.0000008901612260012533;61,0.00000044508061300062655;62,0.0000006119858428758617;63,0.0000012239716857517233;64,0.0000023923082948783687;65,0.0001838739282458839;66,0.00039384070742892947;67,0.0005912339592947074;68,0.0008080994879792628;69,0.0010358138566057083;70,0.0012666994245997833;71,0.0015259588816726485;72,0.0017294719919671853;73,0.001802687752805788;74,0.0018485866910214778;75,0.0018480303402552268;76,0.0017893353344157694;77,0.001779933006466131;78,0.001726745873212556;79,0.0016914175995556315;80,0.001649913832393323;81,0.0015998422634307524;82,0.0015463769547940523;83,0.0014932454566171025;84,0.0014405590390531532;85,0.0013853134079644504;86,0.00136372699823392;87,0.0013119307418959722;88,0.001277882075001424;89,0.0012170173011735886;90,0.0011857503881102945;91,0.0011337315914658462;92,0.0010728111825613856;93,0.0010250206517404435;94,0.0009877451504016405;95,0.0009360601642169428;96,0.0008866005810972482;97,0.0008736376082436051;98,0.0008090452842818891;99,0.0007608096728479462;100,0.0007022259371617387;101,0.0006514867472796671;102,0.0006213325357488748;103,0.0005606346671509143;104,0.00052552893380049;105,0.0005033305382270836;106,0.00044318902039537395;107,0.0004033543055318179;108,0.00036407594143451265;109,0.00031806573306557284;110,0.00026782725887312714;111,0.00021480703084942744;112,0.00018932616575514157;113,0.00018070272887825444;114,0.00016467982681023187;115,0.00015800361761522246;116,0.00015672401085284565;117,0.00014748858813308266;118,0.0001409236490913234;119,0.00014114618939782374;120,0.0001470991425967071;121,0.00014281524169657608;122,0.00014008912294194724;123,0.00012679233962855353;124,0.00013163259129493534;125,0.00012784940608443;126,0.00011672239075941433;127,0.00005902881629920811;128,0.000010515029482139806;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.00040413319660456904;2,0.0005323720482253746;3,0.0006675096493476897;4,0.0007759424136899675;5,0.0008695206125733492;6,0.0009726124095596194;7,0.001069083632427505;8,0.0011849158619609184;9,0.0013072017603828405;10,0.0014384449061414003;11,0.0015613427904061982;12,0.0017560655585939725;13,0.0020272865571412295;14,0.0022526642525494216;15,0.002407719211103515;16,0.002586085266763516;17,0.002676047185666268;18,0.002798388719164815;19,0.002934138306130006;20,0.0030539206261037998;21,0.003120070732211018;22,0.003237905824502934;23,0.003423170629664445;24,0.0035445107317837407;25,0.0036220660285991;26,0.0037718912899504364;27,0.003928058950037031;28,0.004005781152082265;29,0.004089845752862758;30,0.004208292830997551;31,0.004245790872642853;32,0.0042441774554207255;33,0.004357005390816385;34,0.00455284086053666;35,0.004793518202016749;36,0.0049521338054748475;37,0.005021232570643195;38,0.00506752095439526;39,0.0051658837698683995;40,0.00529451206702558;41,0.005385364147154332;42,0.00554648332906056;43,0.005668546687175981;44,0.005723235967498433;45,0.00584151614040335;46,0.006033123344300119;47,0.0061435033363242755;48,0.006192796014214094;49,0.0063569751253347;50,0.006544799144020965;51,0.006720216540619837;52,0.0068055607481627076;53,0.006887900661567822;54,0.006907539843616476;55,0.007065766001538199;56,0.00726989109767561;57,0.007394569304392412;58,0.0073886719862701535;59,0.007299099512903777;60,0.007132917539024668;61,0.0069948312788412235;62,0.006879332859767561;63,0.006729062517803225;64,0.006511362462969293;65,0.005523784217797527;66,0.00460291242949923;67,0.0037588726820201677;68,0.0028870153962285644;69,0.002146846336808523;70,0.0014285418625021363;71,0.0007028935580812396;72,0.000011850271321141684;73,0.00001168336609126645;74,0.000008790342106762375;75,0.000007788910727510967;76,0.000007955815957386202;77,0.00000773327565088589;78,0.00000906851748988777;79,0.000009124152566512845;80,0.00000968050333276363;81,0.00001068193471201504;82,0.000009903043639263945;83,0.00000767764057426081;84,0.000007733275650885888;85,0.00000634239873525893;86,0.00000534096735600752;87,0.00000500715689625705;88,0.000003950090440380562;89,0.000002559213524753603;90,0.0000041169956702557975;91,0.000004395171053381189;92,0.000005174062126132285;93,0.0000031155642910043864;94,0.0000020584978351278983;95,0.000001947227681877742;96,0.000002503578448128525;97,0.000004506441206631346;98,0.000002781753831253916;99,0.0000028373889078789947;100,0.0000025035784481285243;101,0.00000233667321825329;102,0.0000033381045975047;103,0.000001168336609126645;104,0.0000007232559961260183;105,0.0000011127015325015668;106,0.0000009457963026263318;107,0.00000022254030650031333;108,0.0000009457963026263318;109,0.0000013352418390018802;110,0.0000007232559961260183;111,0.00000033381045975046994;112,0.0000005007156896257049;113,0.00000044508061300062666;114,0.0000003894455363755483;115,0.00000033381045975047;116,0.00000011127015325015666;117,0.00000016690522987523497;118,0.0000011127015325015668;119,0.0000006119858428758617;120,0.00000022254030650031336;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "croptopia:salt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.0000008901612260012533;62,0.0000014465119922520367;63,0.000001502147068877115;64,0.0000015577821455021938;65,0.0000034493747507548568;66,0.000002114132911752977;67,0.000002447943371503447;68,0.0000010570664558764883;69,0.000003171199367629465;70,0.0000028373889078789956;71,0.0000013908769156269584;72,0.0000007232559961260185;73,0.0000027261187546288386;74,0.0000036997325955677095;75,0.0000008901612260012535;76,0;77,0.0000013352418390018802;78,0.000000500715689625705;79,0.0000009457963026263316;80,0.00000016690522987523502;81,0.00000022254030650031336;82,0.0000002225403065003133;83,0.0000008901612260012532;84,0.0000010014313792514098;85,0.00000300429413775423;86,0.0000025035784481285248;87,0.0000023366732182532896;88,0.00000233667321825329;89,0.000002114132911752976;90,0.0000012796067623768015;91,0.00000022254030650031333;92,0.000003171199367629465;93,0.000004994986723245313;94,0.000008719059664836496;95,0.000004509918398920413;96,0.000003838820287130405;97,0.000003953567632669629;98,0.000002840866100168063;99,0.0000029486590611291516;100,0.000004123177345436362;101,0.00000400572551700564;102,0.000005841683045633225;103,0.000004061360593630717;104,0.000005730412892383069;105,0.00000600858827550846;106,0.000005285332279382442;107,0.000004621188552170569;108,0.000016993038716672363;109,0.000036402726074246565;110,0.00007204916282562097;111,0.00001613069502898365;112,0.000018387392824588388;113,0.000020325927525743466;114,0.00005062096534424315;115,0.00012455302779439413;116,0.0002684218587545576;117,0.0004485473737128268;118,0.0005403643747017961;119,0.0005935758483013943;120,0.00048389535145938967;121,0.00029311050353898434;122,0.0002896995710807586;123,0.00024009259364347738;124,0.00020970386481052223;125,0.00010872195083431843;126,0.00003520831052295192;127,0.000006745753040790747;128,0.0000018915926052526633;129,0;130,0;131,0;132,0;133,0;134,0;135,0.0000026704836780037604;136,0.0000017246873753774282;137,0.00000022254030650031333;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0.000000166905229875235;48,0.00000011127015325015668;49,0.00000005563507662507833;50,0.000000055635076625078326;51,0.00000022254030650031338;52,0.000000055635076625078326;53,0.00000022254030650031333;54,0.00000022254030650031333;55,0.0000003894455363755483;56,0.00000038944553637554835;57,0.00000066762091950094;58,0.0000005007156896257051;59,0.0000008901612260012531;60,0.0000006676209195009399;61,0.0000007788910727510966;62,0.0000003894455363755483;63,0.0000005007156896257049;64,0.000000834526149376175;65,0.00010904475018515353;66,0.00022765873354982054;67,0.0003602371211473822;68,0.0005001593388594542;69,0.0006525438137355438;70,0.0008108812418105167;71,0.0009267134713439298;72,0.0010251319218936932;73,0.0009983158149604056;74,0.0009485780564575857;75,0.0009242098928958013;76,0.0008670726692018458;77,0.0008141637113313963;78,0.0007816728265823505;79,0.0007289307739417764;80,0.000687538276932718;81,0.0006519318278926678;82,0.000596574926650715;83,0.0005393820678801345;84,0.0004851378681706831;85,0.00046794662949353386;86,0.00041670672392183673;87,0.0003742015253802769;88,0.0003219601884293283;89,0.00028190293325927194;90,0.00023884138395146125;91,0.00019783833247877854;92,0.00015755853700222185;93,0.00010019877300176608;94,0.00005797174984333162;95,0.000023923082948783683;96,0.000004562076283256423;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0.00000005563507662507833;64,0.0000008901612260012533;65,0.000042393928388309696;66,0.00007772220204523442;67,0.00011750128183216543;68,0.00016340022004785506;69,0.00019633618540990143;70,0.00023105247322395032;71,0.0002680497991796274;72,0.00031077753802768754;73,0.00031489453369794334;74,0.00032129256750982737;75,0.00031094444325756277;76,0.0003015421153079246;77,0.00030304426237680164;78,0.00029525535164929076;79,0.00030571474605480545;80,0.00030493585498205433;81,0.0003078288789665584;82,0.0003076063386600581;83,0.0003099986469549364;84,0.00031244659032643994;85,0.0003125578604796901;86,0.0003066605423574318;87,0.0003013195750014243;88,0.0002917503418219108;89,0.0003009301294650487;90,0.00030399005867942804;91,0.00030782887896655845;92,0.00030699435281718226;93,0.00030304426237680164;94,0.0002934750291972882;95,0.00029130526120891014;96,0.00028446214678402556;97,0.00028390579601777474;98,0.00027811974804876655;99,0.0002704977425511309;100,0.00027244497023300857;101,0.0002814022175696462;102,0.0002801782458838945;103,0.0002880784267646556;104,0.0002822367437190224;105,0.00027745212712926564;106,0.0002735020366888851;107,0.00025708968908448696;108,0.0002547530158662337;109,0.00025208253218822994;110,0.0002448499722269697;111,0.00022242903634706317;112,0.00021230345240129893;113,0.000200286275850282;114,0.00018654441192388765;115,0.0001806470938016293;116,0.00017764279966387512;117,0.00017742025935737482;118,0.00017474977567937105;119,0.00016629324403235913;120,0.0001656256231128582;121,0.00017085532031561556;122,0.00016946444339998863;123,0.00016807356648436165;124,0.00015672401085284565;125,0.00014954708596821056;126,0.0001450962798382043;127,0.00013942150202244627;128,0.00012885083746368143;129,0.0001201161304335441;130,0.00011700056614253975;131,0.00011399627200478553;132,0.00010821022403577734;133,0.00010743133296302626;134,0.00010665244189027515;135,0.00010181219022389337;136,0.00009469090041588332;137,0.00009235422719763004;138,0.00008868231214037487;139,0.00009151970104825386;140,0.00008840413675724946;141,0.00008718016507149775;142,0.00007744402666210904;143,0.00007610878482310716;144,0.00007043400700734915;145,0.00006436978365521564;146,0.00006442541873184071;147,0.00006247819104996297;148,0.00006464795903834102;149,0.0000659832008773429;150,0.00005936262675895858;151,0.00005663650800432974;152,0.000052130066797698385;153,0.00005224133695094855;154,0.00005079482495869652;155,0.00004512004714293852;156,0.000040947416396057655;157,0.000038666378254429445;158,0.00003660788041930154;159,0.00003432684227767333;160,0.00003104437275679371;161,0.00003326977582179684;162,0.000034493747507548566;163,0.000033325410898421926;164,0.000031711993676294644;165,0.000029542225687916593;166,0.000026927377086537913;167,0.00002370054264228337;168,0.00002264347618640688;169,0.000019194101435652026;170,0.000018025764826525376;171,0.000017246873753774283;172,0.000017191238677149207;173,0.000014798930382270838;174,0.000015132740842021308;175,0.000015244010995271462;176,0.000014409484845895288;177,0.000014520754999145446;178,0.000012128446704267075;179,0.000011627731014641371;180,0.000008734707030137297;181,0.000010570664558764882;182,0.000012517892240642625;183,0.00001168336609126645;184,0.000011516460861391214;185,0.000009235422719763003;186,0.000008623436876887141;187,0.000010626299635389959;188,0.000011961541474391843;189,0.000010236854099014412;190,0.000006787479348259556;191,0.000002948659061129152;192,0.0000006676209195009399;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0.00000033381045975047;49,0.0000002781753831253917;50,0;51,0;52,0.00000005563507662507832;53,0.00000033381045975047;54,0.00000022254030650031336;55,0.00000005563507662507835;56,0.00000005563507662507833;57,0.0000002225403065003133;58,0.00000022254030650031328;59,0.00000011127015325015666;60,0;61,0.00000005563507662507834;62,0.00000005563507662507833;63,0.000000166905229875235;64,0.0000003894455363755483;65,0.00004189321269868398;66,0.00009113025551187831;67,0.00014147999985757422;68,0.00020017500569703185;69,0.0002596489026092406;70,0.0003078845140431835;71,0.00038377075855979036;72,0.0004616042307582749;73,0.00047835038882242353;74,0.0005016058508517063;75,0.0005160153356976015;76,0.0005292564839343701;77,0.0005458357367686436;78,0.00056464039266792;79,0.0005909557839115819;80,0.0006016933537002223;81,0.000624948815729505;82,0.0006236692089671282;83,0.0006418062439469036;84,0.0006749091145388253;85,0.0006933243249017262;86,0.0007104599285022504;87,0.0007218651192103914;88,0.0007275398970261494;89,0.0007406697751096679;90,0.0007697112851079587;91,0.0008005887526348772;92,0.000800421847405002;93,0.0008221751623654077;94,0.0008263477931122886;95,0.0008253463617330371;96,0.0008673508445849712;97,0.0008881027281661255;98,0.0008878801878596251;99,0.0009023453077821454;100,0.000912637796957785;101,0.000905516507149775;102,0.0009066848437589016;103,0.0008685191811940978;104,0.0008568914501794565;105,0.0008551111277274539;106,0.0008161665740898991;107,0.0008012563735543782;108,0.0007724374038625876;109,0.0007475128895345524;110,0.0007113500897282515;111,0.0006310130390816385;112,0.0005779371759813138;113,0.0005401053238762605;114,0.0005056672114453369;115,0.00047868419928217404;116,0.0004468053003760041;117,0.0004269435780208511;118,0.0004073043959721985;119,0.0003947308686549308;120,0.0003747578761465276;121,0.0003602371211473822;122,0.00035517432917450003;123,0.0003319745022218424;124,0.0003047689497521791;125,0.0002845734169372757;126,0.0002727787806927591;127,0.0002658243961146243;128,0.00024017662579046316;129,0.00021859021605993278;130,0.00021319361362730015;131,0.0001984503183216544;132,0.00017079968523899046;133,0.0001622318834387284;134,0.00015700218623597103;135,0.0001445955641485786;136,0.00013619466757819175;137,0.00011894779382441748;138,0.0001063186314305247;139,0.00009975369238876545;140,0.00009029572936250215;141,0.00008662381430524696;142,0.0000726594100723523;143,0.00006692899717996923;144,0.000063924703042215;145,0.00006503740457471658;146,0.00005452237509257677;147,0.000050961730188571746;148,0.000040836146242807496;149,0.00003577335426992537;150,0.00003432684227767333;151,0.000031767628752919734;152,0.000022476570956531646;153,0.000016523617757648263;154,0.000014020039309519738;155,0.000010515029482139805;156,0.000007622005497635732;157,0.000004562076283256423;158,0.0000033381045975047003;159,0.0000016134172221272717;160,0.00000011127015325015664;", + "silktouch": false, + "dim": "woot_revived:drop_simulator" + }, + { + "block": "undergarden:shiverstone_froststeel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0000639824791770236;66,0.00004325589988536249;67,0.000047997648169047374;68,0.000058453806919178134;69,0.00005405093640966659;70,0.00004930950355248135;71,0.00005070505324333486;72,0.00006850318119830516;73,0.0000480906749865974;74,0.00003598766076767547;75,0.00002922654174767916;76,0.0000283300413503844;77,0.00003567705823635532;78,0.00003344304319559103;79,0.000053215809609256004;80,0.00010744067973362907;81,0.000048551577387856497;82,0.00002597734023203453;83,0.00003217655094277305;84,0.00002388631625207227;85,0.000023389567514831518;86,0.000021286187044600937;87,0.00003058980736486756;88,0.000060037132233821286;89,0.000014670675068224286;90,0.00001018379482479358;91,0.000012821847211748233;92,0.0000181317369066076;93,0.000019998664072774676;94,0.000010589093876982481;95,0.000015423868978217384;96,0.000018259385211041507;97,0.0000175275648749476;98,0.000015933029062508996;99,0.000025761039938458586;100,0.000034627963412764203;101,0.00005254721257218275;102,0.00006496298245113972;103,0.00005460994759509622;104,0.00006845232638947403;105,0.00007371521410733885;106,0.00006153063470986994;107,0.00006764463226602222;108,0.00007929503688635887;109,0.00006685043291107655;110,0.00004965779612195901;111,0.00003982310300418562;112,0.000042198960541867404;113,0.000052127575328456084;114,0.00006052258304526941;115,0.00005389603456995443;116,0.00005122428297577244;117,0.000050418309983873;118,0.00005810718748156814;119,0.00004018347435146996;120,0.00002987510663061392;121,0.00004344328036889037;122,0.00004348206754269877;123,0.00003419046685777015;124,0.000035605922703589765;125,0.00003442784929858803;126,0.00002852704919924897;127,0.00002914633084595128;128,0.00003226196638174493;129,0.000032928267148186345;130,0.00003464653243365577;131,0.00002757808857509639;132,0.00003853011492539829;133,0.00003269878408405499;134,0.000026747248317959392;135,0.00003418708973709471;136,0.00003971723969952001;137,0.00004083322551232724;138,0.00003104164639708551;139,0.00003381624074434422;140,0.00003643652296230313;141,0.00003949945141571752;142,0.000031406378858582205;143,0.00002479167259119918;144,0.00001745422821378241;145,0.000016224123150536493;146,0.00002549004743268503;147,0.000026655898060825908;148,0.00002262982850497099;149,0.00002040880080747429;150,0.000021704596867818154;151,0.00002681509244377224;152,0.000022126589524645356;153,0.000017501490760494062;154,0.000021779901516057155;155,0.00002654161424003959;156,0.000023578233704200296;157,0.00001756696575901073;158,0.00002072374388171333;159,0.000020258037226295378;160,0.000019413798200021696;161,0.00001803465411569813;162,0.000014393956885772558;163,0.000012925231675552588;164,0.000018993632959763032;165,0.0000170087808538682;166,0.000007249663239697633;167,0.00001435551599540397;168,0.000026929304265031463;169,0.000020583859086222925;170,0.000009201172707451678;171,0.000008419977838518134;172,0.000008634293002275724;173,0.000017569636598610907;174,0.0000111675929344113;175,0.000004841440200314149;176,0.000007828364581512089;177,0.000013216198907270446;178,0.000017162383273543832;179,0.0000164033985444433;180,0.00001461829712654029;181,0.000017767635298110188;182,0.000010234760204327035;183,0.000008285331865760802;184,0.000007947047230548752;185,0.000008108370742367622;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0.0000017799928800284801;157,0.00000917808828764685;158,0.000024141153435386258;159,0.000039493592025631904;160,0.000057126646493414034;161,0.00007982155571377715;162,0.00010129271982912069;163,0.00011586641153435385;164,0.00013255384478462085;165,0.00015274563901744392;166,0.00015825249199003205;167,0.00017710929156283377;168,0.00020647917408330368;169,0.00022338910644357422;170,0.00023985404058383765;171,0.0002599902100391599;172,0.0002854107333570666;173,0.00031783997864008546;174,0.00034437299750800996;175,0.0003774697401210395;176,0.00041418209327162694;177,0.00047470185119259515;178,0.000521426664293343;179,0.0005666496084015663;180,0.0006531461374154504;181,0.0007369726771092916;182,0.0008260279458882165;183,0.0009075182449270204;184,0.0009964622641509433;185,0.001158552865788537;186,0.0013220897116411534;187,0.0013711507653969383;188,0.0014272205411178353;189,0.001489075293698825;190,0.0015150520647917408;191,0.0000006674973300106799;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0.00000272561409754361;173,0.00001857867568529726;174,0.000050785421858312574;175,0.00008471653613385547;176,0.00011825827696689215;177,0.00015641687433250265;178,0.0002124310252758989;179,0.00026432894268422927;180,0.0003286311854752581;181,0.000412624599501602;182,0.0004837130651477394;183,0.0005855064079743682;184,0.0006726148095407619;185,0.000814124243503026;186,0.0009748242257030973;187,0.0010316727483090067;188,0.0010908575115699537;189,0.0011771871662513349;190,0.0012137882698469206;191,0.00000027812388750445;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "undergarden:shiverstone_regalium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00005134862273050908;66,0.00004657879805980776;67,0.000045181225525097905;68,0.000045348099857600575;69,0.00004544544321822713;70,0.00004199670701317195;71,0.00004276154770380919;72,0.00004351943529725881;73,0.000043860137059451764;74,0.000040140230064079744;75,0.0000217562411000356;76,0.0000025031149875400496;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0.0000015574937700249203;125,0.00000923371306514774;126,0.00002597677109291563;127,0.00003988296546813813;128,0.00004922792808828765;129,0.00006458036667853329;130,0.00008032217871128516;131,0.00009962397650409398;132,0.00011925952296190816;133,0.00013522383410466356;134,0.0001528012637949448;135,0.00016309184763260948;136,0.0001884567461730153;137,0.00020125044499822;138,0.00021565726237095055;139,0.00023456968672125311;140,0.00025498398006407977;141,0.0002748976504093984;142,0.0002928644535421858;143,0.000307438145247419;144,0.0002962019401922392;145,0.0003101081345674617;146,0.0003373086507653969;147,0.00036934852260590953;148,0.0003824759700961196;149,0.00041707458170167324;150,0.00043064702741189034;151,0.0004407707369170524;152,0.0004343182627269491;153,0.0004515063189747242;154,0.0004845474368102527;155,0.000475814346742613;156,0.0005114698291206835;157,0.0005406728373086509;158,0.0005602527589889641;159,0.0005902901388394446;160,0.0005986894802420791;161,0.0006207725169099324;162,0.0006423549305802777;163,0.000647249911000356;164,0.00067812166251335;165,0.000727182716269135;166,0.0007405326628693486;167,0.0007658419366322535;168,0.0007734069063723745;169,0.0008036667853328587;170,0.0008619059273762905;171,0.0008990076539693841;172,0.0009240388038447846;173,0.0009773829654681381;174,0.0010367902278390888;175,0.001095863741545034;176,0.0011381385724457103;177,0.0012012726949092206;178,0.0013240922036311855;179,0.001489798415806337;180,0.0016377046991812032;181,0.0017855553577785692;182,0.00195687967248131;183,0.00211813590245639;184,0.002227827963688145;185,0.002541496084015664;186,0.0028605598077607692;187,0.002874187878248487;188,0.0028742991278034886;189,0.0029740899786400857;190,0.0030861182805268783;191,0.0000007231221075115699;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.000550184674261303;66,0.0005173104307582769;67,0.000522316660733357;68,0.0005161423104307583;69,0.0004999555001779992;70,0.0004936142755428978;71,0.0004877736739053044;72,0.0005033486116055536;73,0.0004978417586329654;74,0.0004993992524029904;75,0.0005074648451406195;76,0.000507742969028124;77,0.0004986205055179779;78,0.0004994548771804913;79,0.0004971186365254539;80,0.00050312611249555;81,0.000533997864008544;82,0.0005096898362406551;83,0.00046396626913492345;84,0.0003981621573513706;85,0.0003397561409754361;86,0.00030599190103239586;87,0.000271059540761837;88,0.0002142110181559274;89,0.00022800596297614808;90,0.00021871662513349947;91,0.00021365477038091848;92,0.0002163247597009612;93,0.00021059540761836956;94,0.0002106510323958704;95,0.00022500222499110005;96,0.000232622819508722;97,0.00024274652901388395;98,0.00025648584905660376;99,0.00028541073335706653;100,0.00031405749377002494;101,0.00031928622285510856;102,0.0003408686365254539;103,0.0003488229797080812;104,0.00033096742613029554;105,0.0003264618191527234;106,0.000335751156995372;107,0.0003288536845852617;108,0.0003354730331078676;109,0.0003495461018155928;110,0.0003430380028479886;111,0.00033274741901032393;112,0.00032623932004271984;113,0.00032395870416518336;114,0.00033124555001779995;115,0.00031494749021003917;116,0.0003187855998576006;117,0.0003126668743325027;118,0.0003248487006051976;119,0.0003419811320754717;120,0.00034353862584549663;121,0.00034448424706301175;122,0.00033419366322534714;123,0.00032184496262014956;124,0.0003073825204699182;125,0.0003138349946600214;126,0.0003034887860448558;127,0.00031227750088999644;128,0.00030955188679245287;129,0.00032195621217515134;130,0.00031700560697757213;131,0.00030793876824492704;132,0.00031183250266998935;133,0.0003224012103951584;134,0.0003265174439302243;135,0.0003187299750800997;136,0.0003281861872552511;137,0.00034192550729797086;138,0.0003417030081879673;139,0.000339311142755429;140,0.00032390307938768247;141,0.00032112184051263796;142,0.00033263616945532226;143,0.0003116656283374867;144,0.0003105531327874688;145,0.000320064969740121;146,0.00031183250266998935;147,0.0003031550373798505;148,0.0003176731043075828;149,0.00032045434318262725;150,0.0003321911712353151;151,0.0003336930402278391;152,0.0003257386970452118;153,0.0003281305624777501;154,0.00032618369526521895;155,0.0003258499466002136;156,0.0003351949092203632;157,0.00033063367746529013;158,0.00033413803844784624;159,0.0003293543075827697;160,0.0003192305980776077;161,0.0003373642755428979;162,0.0003507698469206124;163,0.00034248175507297973;164,0.0003474879850480598;165,0.0003432048771804913;166,0.00034987985048059804;167,0.0003492679779280883;168,0.00034860048059807763;169,0.0003418698825204699;170,0.00034971297614809537;171,0.0003861472054111784;172,0.0003905971876112496;173,0.00041084460662157356;174,0.00040578275186899256;175,0.0004046146315414738;176,0.00042018956924172305;177,0.00047870683517265935;178,0.0005298816304734781;179,0.0005541896582413671;180,0.0005792208081167675;181,0.0005999132253470986;182,0.000652756763972944;183,0.0006930847276610894;184,0.0007109959060163759;185,0.0008113986294054826;186,0.0005934051263794945;187,0.0005868970274118903;188,0.0005886770202919189;189,0.00043370639017443937;190,0.00016142310430758276;191,0.0000016687433250266997;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "undergarden:shiverstone_utherium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00005456790672837309;66,0.00005156416874332503;67,0.000048949804200783205;68,0.000051508543965824135;69,0.00004856043075827697;70,0.000045334193663225345;71,0.00004922792808828765;72,0.00005100792096831613;73,0.00005212041651833394;74,0.00004956167675329299;75,0.000046891687433250266;76,0.00005067417230331079;77,0.00004911667853328587;78,0.00005028479886080456;79,0.000051063545745817016;80,0.000048115432538269845;81,0.00005128604485582058;82,0.000051842292630829476;83,0.00004956167675329298;84,0.000035766731933072266;85,0.00002981488074047704;86,0.000029759255962976147;87,0.00002347365610537558;88,0.000020191794232823068;89,0.0000205811676753293;90,0.00002252803488786045;91,0.00001791117835528658;92,0.000023640530437878246;93,0.0000228061587753649;94,0.000022138661445354218;95,0.000011069330722677107;96,0.00000233624065503738;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "undergarden:shiverstone_regalium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0014503048237807048;66,0.0013645314168743328;67,0.0013615833036667853;68,0.0013395558917764332;69,0.0013224790850836598;70,0.0013069041473834104;71,0.001315804111783553;72,0.0012911623353506587;73,0.0012819286222855108;74,0.0011997708259166963;75,0.0006357912068351727;76,0.00007047659309362763;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0.00000027812388750445007;125,0.00000038937344250623;126,0.00000116812032751869;127,0.0000021693663225347102;128,0.00000228061587753649;129,0.00000361561053755785;130,0.0000033931114275542897;131,0.000004728106087575649;132,0.00000483935564257743;133,0.000006007475970096119;134,0.000006841847632609469;135,0.00000795434318262727;136,0.00000995683517265931;137,0.000010123709505161982;138,0.00001045745817016732;139,0.00001029058383766465;140,0.00001034620861516554;141,0.00001140307938768245;142,0.000014239943040227841;143,0.00001518556425774297;144,0.00001262682449270203;145,0.000016576183695265222;146,0.000016075560697757207;147,0.00001563056247775009;148,0.00001690993236027056;149,0.00001919054823780705;150,0.00001941304734781061;151,0.000022194286222855107;152,0.00002364053043787825;153,0.000022194286222855107;154,0.00002291740833036668;155,0.0000233624065503738;156,0.00001963554645781417;157,0.000022361160555357778;158,0.00002530927376290495;159,0.000024975525097899607;160,0.000028980509077963687;161,0.000028201762192951233;162,0.00002886925952296191;163,0.00003159487362050552;164,0.00003254049483802065;165,0.00003076050195799217;166,0.00003042675329298683;167,0.000030371128515485943;168,0.0000328186187255251;169,0.00004027233891064436;170,0.0000406060875756497;171,0.00003554423282306871;172,0.000045946066215735135;173,0.00004722543609825561;174,0.00004878292986828053;175,0.000052899163403346385;176,0.00005250978996084016;177,0.00005501290494838021;178,0.0000622441260234959;179,0.00006558161267354931;180,0.00007047659309362763;181,0.00007514907440370239;182,0.00008749777500889997;183,0.00009178088287646849;184,0.00009461774652901389;185,0.00011803577785688856;186,0.00010385145959416163;187,0.00010262771448914205;188,0.00009717648629405484;189,0.00008527278390886437;190,0.00005262103951584193;191,0.0000014462442150231399;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0.00000016687433250267;173,0.0000007231221075115699;174,0.0000020024919900320397;175,0.000003622563634745461;176,0.000005327617578418575;177,0.000008135123709505162;178,0.00000917808828764685;179,0.000010812066126735493;180,0.000014462442150231397;181,0.000017636144733198847;182,0.00001859953497686009;183,0.000022347254360982558;184,0.000031393233802064795;185,0.00003465423638305447;186,0.000028863078992128476;187,0.000031869520959416166;188,0.00003719520712194929;189,0.00003160646211581821;190,0.000023704846586863653;191,0.0000007300752046991812;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "undergarden:shiverstone_utherium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0016515552687789248;66,0.0015217270380918479;67,0.0015112695799216805;68,0.0015128270736917053;69,0.001509322712709149;70,0.0014745572267710928;71,0.0014736672303310785;72,0.0014776722143111428;73,0.0014469117123531508;74,0.001405137504449982;75,0.0013813300996796014;76,0.0013906194375222498;77,0.0013757676219295122;78,0.0013497908508365967;79,0.0013724301352794586;80,0.0013927331790672837;81,0.0013700382698469207;82,0.0012754205233179066;83,0.0010848500355998575;84,0.0009372775008899965;85,0.00083186854752581;86,0.00078937121751513;87,0.0007242902278390888;88,0.0005826139195443218;89,0.0005929045033819865;90,0.000583058917764329;91,0.0005795545567817728;92,0.0005809451762192953;93,0.0005842826628693486;94,0.0005591958882164472;95,0.0003171168565325739;96,0.00006268912424350304;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.016607500444998223;66,0.01559056826272695;67,0.015610481933072268;68,0.015521927287290852;69,0.015231065325738698;70,0.015016520558917765;71,0.01489492479530082;72,0.014745238519045925;73,0.01468177064791741;74,0.014533252491990032;75,0.01442133543965824;76,0.014404870505517978;77,0.01445443218227127;78,0.014557838643645425;79,0.014425117924528302;80,0.014333782039871842;81,0.01397255473478106;82,0.013061087130651478;83,0.011449748576005697;84,0.009748409131363475;85,0.008775309273762903;86,0.008329031683873264;87,0.007656806247775009;88,0.0060970318618725535;89,0.006028279636881453;90,0.006105264328942685;91,0.0061776321644713425;92,0.006236483179067284;93,0.006308239142043432;94,0.006493414026343894;95,0.006770481043075828;96,0.006936298504805981;97,0.0069756808472766114;98,0.00696622463510146;99,0.007026132520469918;100,0.00705311053755785;101,0.007030026254894981;102,0.007047881808472767;103,0.0070563367746529024;104,0.006991533908864364;105,0.006953987184051265;106,0.006895636792452831;107,0.006866711908152368;108,0.006856977572089713;109,0.0069355753826984695;110,0.006829665806336774;111,0.006588476771092916;112,0.00636931514773941;113,0.006309184763260948;114,0.006260290583837664;115,0.006249332502669989;116,0.006386447579209684;117,0.006603384211463155;118,0.0067797703809184765;119,0.006861816927732289;120,0.0068370082769668925;121,0.006838899519401922;122,0.0067891709683161276;123,0.006762582324670701;124,0.006852138216447135;125,0.0069558228017087935;126,0.006984747686009256;127,0.00686938189747241;128,0.0067011169455322185;129,0.006698446956212176;130,0.00666429334282663;131,0.006645269668921325;132,0.006726648718405127;133,0.006775709772160911;134,0.006852527589889641;135,0.006999655126379494;136,0.007035199359202563;137,0.0070558917764328944;138,0.007195120594517623;139,0.0071377714489142055;140,0.007097888483446066;141,0.007162691349234604;142,0.007097554734781061;143,0.006921446689213243;144,0.006778212887148452;145,0.006878337486650054;146,0.006931181025275899;147,0.006989142043431827;148,0.007184774385902457;149,0.007263594695621217;150,0.007202574314702742;151,0.007035922481310075;152,0.006811532128871485;153,0.0068195420968316135;154,0.006912546724813101;155,0.00699937700249199;156,0.007075749822000712;157,0.007231999822000713;158,0.007342637504449982;159,0.007370171769312922;160,0.007359603061587753;161,0.007282952118191528;162,0.007255195354218584;163,0.00738691482734069;164,0.00758004405482378;165,0.0076873442506229985;166,0.007807326895692418;167,0.007799761925952297;168,0.00770992791028836;169,0.007776288269846922;170,0.007961351904592382;171,0.008126390619437523;172,0.008406739498042009;173,0.008740376913492347;174,0.009037691349234604;175,0.009235437433250268;176,0.009422781683873265;177,0.010282295745817018;178,0.011059095763616947;179,0.011882064346742615;180,0.012772338910644358;181,0.013725080099679602;182,0.014603729085083658;183,0.01531750622997508;184,0.01564608179067284;185,0.018493903524385902;186,0.018701828942684233;187,0.018870594517621932;188,0.019026343894624424;189,0.01648774029903881;190,0.009737673549305803;191,0.00000239186543253827;", + "silktouch": false, + "dim": "undergarden:undergarden" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0010605976326094695;34,0.001071555713777145;35,0.0010671057315770737;36,0.001056314524741901;37,0.0010484714311142754;38,0.0010175996796012816;39,0.0009989097543609826;40,0.0009989653791384833;41,0.000997241011035956;42,0.0009996885012459951;43,0.0009984647561409755;44,0.0010092559629761482;45,0.0009893422926308295;46,0.0009937922748309007;47,0.000997741634033464;48,0.0009771604663581348;49,0.0009662023851904594;50,0.000956801797792809;51,0.0009550218049127803;52,0.0009633655215379138;53,0.0009878404236383055;54,0.0009769379672481312;55,0.0009590824136703454;56,0.0009699848700605197;57,0.0009512393200427197;58,0.0009442862228551086;59,0.0008971720363118547;60,0.0008455522427910289;61,0.0008187967248131009;62,0.0008206323424706302;63,0.0008148473656105376;64,0.0007591669633321468;65,0.0006005807226771092;66,0.0003866478284086864;67,0.00020269668921324316;68,0.00011709015663937346;69,0.000094562121751513;70,0.00009322712709149163;71,0.00009267087931648274;72,0.00009083526165895337;73,0.00009250400498398009;74,0.00008510590957636169;75,0.00008377091491634034;76,0.00007926530793876826;77,0.00006652723389106443;78,0.000046446689213243154;79,0.0000266998932004272;80,0.000017855553577785687;81,0.00001590868636525454;82,0.000015463688145247417;83,0.000011903702385190458;84,0.00000595185119259523;85,0.00000044499822000712;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "croptopia:salt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0.0000019468672125311502;51,0.0000088373865254539;52,0.0000462294049261303;53,0.00010305359169188321;54,0.00007707682059896761;55,0.00007786252058116767;56,0.00003013124666251335;57,0.000037741411534353866;58,0.00005805314669366323;59,0.00027108909142488434;60,0.0009943363546858312;61,0.0025445954270870417;62,0.001517282270714667;63,0.00014451491022160912;64,0.000016155521315414736;65,0.0000066784498487006045;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0017089600391598434;34,0.0017168587575649699;35,0.0016986138305446776;36,0.0017105175329298684;37,0.0016845407618369527;38,0.0016128960484158065;39,0.001630250978996084;40,0.0016312522249911;41,0.0016290272338910646;42,0.0016308628515485939;43,0.0015831367924528305;44,0.0015729574581701674;45,0.0015516531683873267;46,0.0015643912424350304;47,0.0015999911000356003;48,0.0016180691527233892;49,0.0016275253648985405;50,0.0016240210039159843;51,0.001650498398006408;52,0.0016315859736561052;53,0.0015945954966180135;54,0.001596764862940548;55,0.0015284576361694552;56,0.0015724568351726596;57,0.001594039248843005;58,0.001585806781772873;59,0.0015911467604129586;60,0.001579131808472766;61,0.001606999822000712;62,0.0017097944108223568;63,0.0018778368636525452;64,0.0020042163581345676;65,0.0020548349056603776;66,0.0018950249199003203;67,0.0016447134211463156;68,0.0014758365966536136;69,0.0013674795300818799;70,0.0012423794054823782;71,0.0010996462264150945;72,0.0009738786044855821;73,0.0007811943752224992;74,0.0007292408330366679;75,0.0006979797080811676;76,0.0006110938056247774;77,0.0005298816304734782;78,0.0003845340868636525;79,0.00024664026343894623;80,0.00023818529725881096;81,0.0002263928444286223;82,0.0002006941972232111;83,0.00015435875756496974;84,0.00008382653969384122;85,0.00002731176575293699;86,0.00001624243503025988;87,0.000008788714845140619;88,0.00000956746173015308;89,0.000008009967960128159;90,0.00000528435386258455;91,0.0000038937344250623;92,0.00000255873976504094;93,0.0000011681203275186895;94,0.00000027812388750445;95,0.00000022249911000356001;96,0.00000022249911000356001;97,0.00000022249911000356007;98,0.00000133499466002136;99,0.00000133499466002136;100,0.0000008343716625133502;101,0.00000022249911000356001;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000005595021559829298;44,0;45,0.00000039631402715457523;46,0;47,0.000001340648934818957;48,0.000002833004722993146;49,0.000008751312651763963;50,0.000008984438550090183;51,0.00000437419942160793;52,0.000003814697265625;53,0.0000005595021559829298;54,0.0000015038370636473117;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000002228742391071469;44,0.000000055624777500890004;45,0;46,0.0000011341050997878074;47,0.00000034070176219295126;48,0.00000046064268867924534;49,0.0000003783163800902927;50,0.00000022249911000356;51,0.0000007301366254855079;52,0.00000040365476598503936;53,0;54,0.00000011994092648629405;55,0;56,0.00000011994092648629405;57,0.00000011994092648629405;58,0.00000011994092648629405;59,0.0000002364053043787824;60,0;61,0.0000014201701005695982;62,0.000003229713643645426;63,0.0000035947512459950163;64,0.000005382447481418281;65,0.000005551435217321441;66,0.000003764114111001763;67,0.0000026599348033648902;68,0.000004213576895692418;69,0.000003935453008187967;70,0.000001890524042983734;71,0.0000021060700557996825;72,0.000002113023152987294;73,0.0000020412732726503077;74,0.0000021056949266960955;75,0.0000019615236651135464;76,0.0000025733962176233357;77,0.000002677692675437505;78,0.0000028115397962990213;79,0.000003245358112317551;80,0.000004514298349056604;81,0.000003935453008187967;82,0.0000030715306826272697;83,0.0000022058700827696692;84,0.0000018008521715913141;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.00045111694553221784;34,0.00045328631185475254;35,0.0004623531505873977;36,0.0004579587931648274;37,0.000424750800996796;38,0.0004076739943040228;39,0.0004112339800640798;40,0.00040817461730153083;41,0.00041012148451406195;42,0.0004228595585617658;43,0.0004244726771092916;44,0.0004177977038091848;45,0.0004160177109291563;46,0.0004156839622641509;47,0.0004289226593093628;48,0.00042803266286934856;49,0.0004249176753292987;50,0.00041996707013171943;51,0.0004132920968316127;52,0.00042319330722677114;53,0.0004190770736917053;54,0.00041240210039159844;55,0.0003959927910288359;56,0.0003995527767888928;57,0.00039232155571377713;58,0.0003882609469562122;59,0.0003820309718761125;60,0.0003688478996084016;61,0.00035655482378070487;62,0.000345374243503026;63,0.0003329699181203275;64,0.0003033219117123532;65,0.0002311765752936988;66,0.0001366700783196867;67,0.00006641598433606266;68,0.00003387548949804201;69,0.00002603239587041652;70,0.000023473656105375583;71,0.00002275053399786401;72,0.00002425240299038804;73,0.00002119304022783909;74,0.000020136169455322182;75,0.000019413047347810607;76,0.000019413047347810607;77,0.00001857867568529726;78,0.00001034620861516554;79,0.0000035043609825560703;80,0.0000008343716625133501;81,0.00000066749733001068;82,0.0000005562477750088999;83,0.00000038937344250623;84,0.00000027812388750445;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.0000009443349076643818;45,0.0000023108602019776883;46,0.000004211011292779575;47,0.0000053329294132935385;48,0.000003814697265625;49,0.000005292657969777962;50,0.000009681252475407118;51,0.0000038003021816037736;52,0.0000053329294132935385;53,0.00000039631402715457523;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.00000039631402715457523;44,0.0000009443349076643818;45,0;46,0.000001340648934818957;47,0.000003803215990151877;48,0.000006848247752413973;49,0.000009310814807746892;50,0.000005143864924970834;51,0.00000737039227342943;52,0.0000011190043119658597;53,0.0000007926280543091505;54,0.0000005595021559829298;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0005985226059095763;34,0.0006087019401922393;35,0.0005988007297970809;36,0.0005857845318618726;37,0.0005872307760768958;38,0.0005802776788892846;39,0.0005793876824492703;40,0.000577997063011748;41,0.000539059718761125;42,0.0005459571911712353;43,0.00055124154503382;44,0.0005514084193663227;45,0.0005505184229263082;46,0.0005521315414738341;47,0.0005736027055891777;48,0.0005595296368814525;49,0.0005613652545389819;50,0.0005553577785688857;51,0.0005618102527589889;52,0.0005552465290138839;53,0.0005549127803488786;54,0.0005370572267710929;55,0.0005438434496262015;56,0.000559807760768957;57,0.0005586952652189392;58,0.0005514640441438234;59,0.0005273785154859381;60,0.0005020136169455321;61,0.00048132119971520113;62,0.0004615744037023852;63,0.00045451005695977217;64,0.00042180268778924893;65,0.000348934229263083;66,0.00021170790316838735;67,0.00011430891776432895;68,0.00006919722321110716;69,0.0000617435030259879;70,0.00005668164827340691;71,0.00005189791740833037;72,0.000050006674973300114;73,0.00004639106443574226;74,0.00004266420434318263;75,0.0000422748309006764;76,0.00003982734069063724;77,0.00003476548593805624;78,0.000035154859380562476;79,0.00003309674261302955;80,0.000032540494838020654;81,0.00003076050195799218;82,0.00002809051263794945;83,0.000022361160555357785;84,0.000013628070487718051;85,0.000007509344962620151;86,0.0000066749733001068;87,0.0000033374866500534;88,0.00000155749377002492;89,0.0000017799928800284801;90,0.00000116812032751869;91,0.00000088999644001424;92,0.0000005006229975080099;93,0.0000006118725525097899;94,0.00000005562477750089002;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0009128025987896048;34,0.0009125800996796012;35,0.0009124132253470986;36,0.0009377224991100035;37,0.0009537980598077608;38,0.0009295456568173728;39,0.0009108557315770738;40,0.0008985070309718762;41,0.0008926664293342828;42,0.0008972832858668567;43,0.0008812077251690994;44,0.0008719183873264508;45,0.0008655771626913493;46,0.0008577896938412246;47,0.0008774252402990388;48,0.0008869370772516911;49,0.0008784821110715558;50,0.0008781483624065504;51,0.0008839889640441438;52,0.0008753671235315059;53,0.0008730308828764684;54,0.0008572334460662159;55,0.000848500355998576;56,0.0008327029191883233;57,0.0008315904236383055;58,0.0008541184585261659;59,0.0008418810074759702;60,0.0008216892132431471;61,0.0008184629761480956;62,0.0008482222321110715;63,0.0008864920790316839;64,0.0009163625845496619;65,0.0008871039515841938;66,0.0007841424884300462;67,0.0006395180669277324;68,0.0005654814880740478;69,0.0005100235849056603;70,0.00047915183339266644;71,0.00043020202919188326;72,0.0003697935208259167;73,0.0003027100391598434;74,0.00028012637949448207;75,0.0002641620683517266;76,0.00024519401922392314;77,0.00020931603773584909;78,0.00015814124243503026;79,0.00009389462442150232;80,0.00009233713065147741;81,0.00008382653969384122;82,0.00008187967248131009;83,0.00006953097187611249;84,0.000049339177643289425;85,0.00001807805268778925;86,0.00001129182983268067;87,0.00000784309362762549;88,0.00000450560697757209;89,0.00000172436810252759;90,0.00000083437166251335;91,0.00000094562121751513;92,0.00000077874688501246;93,0.0000009456212175151299;94,0.0000008899964400142397;95,0.0000010568707725169098;96,0.0000008899964400142401;97,0.00000061187255250979;98,0.00000011124955500178003;99,0.00000016687433250266998;100,0.00000005562477750089;101,0.00000005562477750089;102,0.00000011124955500178;103,0;104,0;105,0.00000005562477750089;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0006315080989676041;34,0.0006400743147027413;35,0.0006407418120327518;36,0.000644746796012816;37,0.0006427999288002848;38,0.0006197712709149163;39,0.0006122619259522962;40,0.0006193262726949093;41,0.000617935653257387;42,0.0005882320220719117;43,0.0005787201851192596;44,0.0005639796190815237;45,0.0005749933250266999;46,0.0005921813812744749;47,0.0005994682271270915;48,0.0005905126379494482;49,0.0005862851548593806;50,0.0005843939124243504;51,0.000589567016731933;52,0.0006020825916696333;53,0.0005924038803844786;54,0.000596186365254539;55,0.0005907907618369528;56,0.0005961863652545391;57,0.0006143200427198291;58,0.0006282262370950517;59,0.0006399630651477395;60,0.0006501423994304022;61,0.0007040984336062657;62,0.0008169054823780706;63,0.0009720986116055538;64,0.0011559385012459952;65,0.0012952229441082238;66,0.0013264840690637237;67,0.0012403212887148452;68,0.0011577741189035243;69,0.0010643244927020293;70,0.0009825560697757209;71,0.0008957257920968317;72,0.0007197846208615166;73,0.0005803889284442862;74,0.0005307160021359914;75,0.00047625934496262014;76,0.00040667274830900684;77,0.00034437299750801;78,0.00027384077963688144;79,0.00015775186899252402;80,0.00015519312922748307;81,0.000144624421502314;82,0.00011670078319686721;83,0.00009422837308650767;84,0.00005234291562833748;85,0.00000923371306514774;86,0.00000461685653257387;87,0.0000030593627625489503;88,0.00000189124243503026;89,0.0000010012459950160203;90,0.0000011124955500177999;91,0.0000011681203275186898;92,0.0000007787468850124599;93,0.00000061187255250979;94,0.00000038937344250622997;95,0.00000022249911000356001;96,0.00000005562477750089;97,0.00000016687433250266998;98,0.00000016687433250266998;99,0.00000011124955500178;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0.0004540650587397651;34,0.000462186276254895;35,0.00047052999288002854;36,0.00047052999288002854;37,0.00046819375222499117;38,0.0004530081879672482;39,0.00044171635813456745;40,0.00044433072267710934;41,0.0004377113741545034;42,0.0004404926130295479;43,0.00042541829832680667;44,0.00042297080811676746;45,0.00043086952652189397;46,0.000426308294766821;47,0.00041796457814168746;48,0.00042825516197935213;49,0.000438434496262015;50,0.00043515263438946247;51,0.00043276076895692415;52,0.00042831078675685297;53,0.0004187433250266999;54,0.00041640708437166253;55,0.0004127914738341047;56,0.0004206901922392311;57,0.0004292564079743681;58,0.0004241945532217871;59,0.0003968271626913492;60,0.0003882053221787113;61,0.00037146226415094344;62,0.0003710728907084372;63,0.0003565548237807049;64,0.0003268511925952296;65,0.000248809629761481;66,0.00015652812388750447;67,0.0000806003025987896;68,0.0000483379316482734;69,0.00003304111783552866;70,0.0000305936276254895;71,0.000028813634745461016;72,0.000030426753292986826;73,0.00003209549661801353;74,0.000032317995728017084;75,0.000027256140975436102;76,0.000025142399430402278;77,0.000026978017087931647;78,0.000025921146315414738;79,0.00002364053043787825;80,0.000026199270202919187;81,0.00002386302954788181;82,0.00001963554645781417;83,0.000016798682805268778;84,0.000011180580277678889;85,0.000005729352082591669;86,0.000005506852972588109;87,0.00000378248487006052;88,0.0000030593627625489503;89,0.00000122374510501958;90,0.00000044499822000712003;91,0.0000006118725525097899;92,0.0000006118725525097901;93,0.00000016687433250266998;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000023108602019776883;44,0.0000005595021559829298;45,0.000001914546174823113;46,0.0000042254063768008015;47,0;48,0.000000955816183137505;49,0.000002833004722993146;50,0.000011021901410226076;51,0.0000018886698153287637;52,0.000005507598817595016;53,0.0000005595021559829298;54,0.000001914546174823113;", + "silktouch": false, + "dim": "twilightforest:twilight_forest" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0.0000022926929064884953;221,0;222,0.000012033520804962126;223,0.0000022926929064884953;224,0.000009740827898473631;225,0;226,0;227,0;228,0;229,0;230,0.000009740827898473631;231,0;232,0.000019481655796947263;233,0.0000022926929064884953;234,0;235,0.0000022926929064884953;236,0;237,0;238,0;239,0.000004585385812976991;240,0;241,0.0000022926929064884953;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0.0000022926929064884953;221,0.000012033520804962126;222,0.00002406704160992425;223,0.000029222483695420887;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0.000019481655796947263;232,0.000009740827898473631;233,0;234,0;235,0;236,0.0000022926929064884953;237,0;238,0.000004585385812976991;239,0.0000022926929064884953;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0.0000022926929064884953;222,0;223,0.000012033520804962126;224,0;225,0;226,0;227,0;228,0;229,0.000009740827898473631;230,0;231,0;232,0;233,0;234,0;235,0.0000022926929064884953;236,0;237,0;238,0;239,0;240,0.000006878078719465486;241,0.0000022926929064884953;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0.0000022926929064884953;221,0.000031515176601909385;222,0.000012033520804962126;223,0.000009740827898473631;224,0.000019481655796947263;225,0;226,0;227,0;228,0;229,0;230,0.0000022926929064884953;231,0.000029222483695420887;232,0.000009740827898473631;233,0;234,0;235,0.0000022926929064884953;236,0;237,0;238,0;239,0.000006878078719465486;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0.000025159790145678563;105,0.00009991860703295396;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0.0000999152114068208;150,0.000029642069559197884;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0.000028996096064412404;163,0.000007887431833953407;164,0.00000509051414923692;165,0.000004388802620790704;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0.00000033583013649197333;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0;223,0;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0;232,0;233,0.0000003327894333427418;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0;203,0;204,0;205,0;206,0;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0;221,0;222,0.000012033520804962126;223,0;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0.000009740827898473631;232,0.000009740827898473631;233,0;234,0;235,0;236,0;237,0;238,0;239,0.0000022926929064884953;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.0000024854661458947443;112,0.00004989926307985323;113,0.00002461982742854809;114,0.000006390843301515131;115,0.000005974066600228242;116,0.000006608810060136842;117,0.0000067940146566404335;118,0.000005229139356542882;119,0.000003866736738105507;120,0.0000037932854927236288;121,0.0000040621294306749835;122,0.000004805966558640756;123,0.000005309184223686156;124,0.0000027260411029139486;125,0.0000026466517589875016;126,0.0000035741170004079714;127,0.000004067097099795586;128,0.000004745162109391171;129,0.000003906919506324022;130,0.0000036835209642029853;131,0.000003990744493523276;132,0.000005741585415007549;133,0.000004835022628480031;134,0.0000034611761002216326;135,0.000004786703887796482;136,0.000006286773687874403;137,0.000003988022662076276;138,0.000004838800443301361;139,0.0000038878624289471744;140,0.00001001567408845184;141,0.000006986725413194785;142,0.000004092618538478184;143,0.000003160303008998087;144,0.000000925602221423078;145,0.0000006349172262654171;146,0.0000008886533627834227;147,0.000000468016750576808;148,0.0000002941620884011735;149,0.00000023818088718061924;150,0.00000016690047568860914;151,0;152,0;153,0;154,0.00000006258767838322841;155,0.00000016690047568860914;156,0;157,0;158,0;159,0;160,0;161,0.00000011126698379240606;162,0;163,0;164,0.00000011126698379240606;165,0;166,0;167,0;168,0;169,0;170,0.00000011995971690118784;171,0;172,0.00000023122670069359386;173,0.00000005563349189620306;174,0;175,0;176,0;177,0;178,0;179,0.00000005997985845059388;180,0.00000011822117027943144;181,0;182,0.00000016690047568860911;183,0.0000001390837297405076;184,0;185,0;186,0;187,0;188,0;189,0.00000011822117027943145;190,0.0000001738546621756345;191,0;192,0;193,0;194,0;195,0;196,0.00000005997985845059388;197,0;198,0.00000008345023784430456;199,0;200,0;201,0.0000001738546621756345;202,0;203,0.000000055633491896203045;204,0;205,0;206,0.0000001112669837924061;207,0;208,0;209,0;210,0;211,0;212,0;213,0;214,0;215,0;216,0;217,0;218,0;219,0;220,0.00000011995971690118779;221,0;222,0;223,0.00000017559320879739085;224,0;225,0;226,0;227,0;228,0;229,0;230,0;231,0;232,0;233,0.0000002225339675848122;234,0.00000016690047568860914;235,0.00000016690047568860911;236,0.000000257359229601869;237,0;238,0;239,0;240,0.00000028512164596804054;241,0;242,0;243,0;244,0;245,0;246,0;247,0;248,0.00000005911058513971574;249,0.00000028512164596804054;250,0.00000005563349189620305;251,0;252,0.00000005563349189620305;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0.000015375924937912557;105,0.00006523269520557887;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0.00006494742164860846;150,0.000008898669779351385;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0.000024497157033349895;163,0.0000011509178636027003;164,0.000005915927700760074;165,0.00000861261497424814;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.00002994047155170257;112,0.00003407189704523309;113,0.00003542382281980676;114,0.00006437737992965863;115,0.00003107051593137064;116,0.00003047535997802784;117,0.00004978310557841387;118,0.00003669348498025458;119,0.000020288200551680988;120,0.000025600481496152613;121,0.00002795647362777158;122,0.00002715152316385063;123,0.000023176883674911714;124,0.00002763500967856554;125,0.000010063264757241613;126,0.00002842873215763084;127,0.000029940162743467165;128,0.000024612415113664547;129,0.000020126867591643747;130,0.00002457597227240922;131,0.000029608607634990387;132,0.000037540269678848734;133,0.000031647363682408824;134,0.00002285812984421969;135,0.00003393721126124288;136,0.000030973617970717157;137,0.000025702090459326616;138,0.000018803151204003368;139,0.000027402642248175875;140,0.00005950903135101931;141,0.00004620980648640539;142,0.00001993839974221235;143,0.000013598842117640863;144,0.0000019916225976801313;145,0.000002883913015733617;146,0.000006152436424575179;147,0.0000034576228322407377;148,0.0000044913754255152535;149,0.0000056571068546073;150,0.00000015355595567296585;", + "silktouch": false, + "dim": "the_bumblezone:the_bumblezone" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.0000000623324503733963;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0.00000024932980149358515;63,0.00000031166225186698146;64,0.00000012953462343221422;65,0.00000018699735112018889;66,0.00000034282847705367964;67,0.0000005665313629152339;68,0.0000001869973511201889;69,0.00000031166225186698156;70,0.00000031166225186698156;71,0.0000007022748827713605;72,0.0000007902342487767879;73,0.0000005353651377285356;74,0.0000002493298014935852;75,0.00000043632715261377414;76,0.0000004986596029871705;77,0.000000389577814833727;78,0.00000032140169723782474;79,0.0000005272692237640224;80,0.0000003291932535344993;81,0.0000008103218548541519;82,0.0000003739947022403779;83,0.00000046749337780047227;84,0.00000024932980149358525;85,0.00000018699735112018889;86,0.000000623324503733963;87,0.0000006600300384753285;88,0.00000047303268735513937;89,0.00000032724536446033063;90,0.0000000623324503733963;91,0.0000003739947022403778;92,0.00000031653197455240313;93,0.0000007061097893861301;94,0.0000006174808365114571;95,0.000000975892426158486;96,0.0000013089814578413223;97,0.0000007684422397595265;98,0.0000010723129353298335;99,0.0000007031879557748771;100,0.00000042074404002042507;101,0.0000008181134111508265;102,0.0000006233245037339631;103,0.0000006535167843835769;104,0.0000004441187089104487;105,0.000001338199793953852;106,0.0000011843165570945298;107,0.0000006856569541073593;108,0.0000007557809607774301;109,0.00000031166225186698156;110,0.000000623324503733963;111,0.0000006389076163273122;112,0.000000825904967447501;113,0.0000008103218548541519;114,0.00000020452835278770665;115,0.0000005395652735447119;116,0.0000011219841067211335;117,0.0000011921081133912044;118,0.0000011798120636105148;119,0.0000016651408007463444;120,0.0000009716922903423099;121,0.00000024932980149358525;122,0.0000008726543052275483;123,0.0000016742106592479414;124,0.0000010606256008848216;125,0.000001602808350372948;126,0.0000015181360471801795;127,0.0000013823925273240528;128,0.0000012064737953131982;129,0.0000007479894044807556;130,0.00000038957781483372694;131,0.00000006233245037339631;132,0.0000005658617760459884;133,0.0000009194036430075955;134,0.0000012778152326546244;135,0.000001114192550424459;136,0.00000043632715261377414;137,0.00000045191026520712326;138,0.0000004986596029871705;139,0.000000623324503733963;140,0.00000018699735112018894;141,0.00000043632715261377424;142,0.0000004363271526137742;143,0.00000018699735112018894;144,0.00000012466490074679265;145,0.000000623324503733963;146,0.00000037399470224037777;147,0.0000002493298014935852;148,0.00000031166225186698156;149,0.0000003739947022403778;150,0.00000012466490074679263;151,0.0000001869973511201889;152,0.0000000623324503733963;153,0.0000001246649007467926;154,0.00000007986345204091405;155,0.0000003291932535344993;156,0.00000043632715261377414;157,0.0000003243235308490777;158,0.0000005035293256725921;159,0.0000002493298014935852;160,0.00000012466490074679263;161,0.00000007012400667007085;162,0.0000000623324503733963;163,0.0000001246649007467926;164,0.00000006720217305881792;165,0;166,0.00000006233245037339631;167,0.00000012466490074679263;", + "silktouch": false, + "dim": "swplanets:tatooine" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0.0000007479894044807558;64,0.0000005804709441022532;65,0.0000008444099136521031;66,0.0000006476731171610711;67,0.0000003165319745524032;68,0.0000008775240279129699;69,0.0000006486470616981553;70,0.0000009057684194884152;71,0.00000013245645704346713;72,0.0000005261735361598025;73,0.0000006449947696840893;74,0.0000003311411426086678;75,0.0000009174557539334267;76,0.000000721692901979479;77,0.0000013953581639739881;78,0.0000009062553917569573;79,0.0000012985115540676662;80,0.0000007168231792940575;81,0.0000013114771907176011;82,0.0000012257091999206134;83,0.0000003817862585370524;84,0.0000006449947696840892;85,0.0000008397836771009526;86,0.00000031653197455240313;87,0.0000001246649007467926;88,0.0000006905266767927811;89,0.0000002541995241790068;90,0.0000006233245037339631;91,0.0000007606506834628517;92,0.0000005142427155805196;93,0.0000001295346234322142;94,0.000000813487174599676;95,0.00000045312769587847866;96,0.0000005261735361598024;97,0.0000005259300500255313;98,0.0000005142427155805195;99,0.0000008492796363375247;100,0.0000003116622518669814;101,0.0000006958225002131771;102,0.0000004363271526137741;103,0.0000002688086922352716;104,0.0000005756012214168315;105,0.00000012953462343221424;106,0.00000021037202001021256;107,0.00000019965863010228506;108,0.0000000672021730588179;109,0.0000003214016972378247;110,0.00000013659572132607553;111,0.0000005300693143081398;112,0;113,0;114,0.00000006233245037339631;115,0.00000006233245037339631;116,0.00000006233245037339629;117,0;118,0.00000012466490074679265;119,0;120,0.00000006233245037339631;121,0;122,0;123,0.00000013245645704346716;124,0.00000006233245037339629;125,0.00000018699735112018894;126,0.00000006233245037339631;127,0.00000007012400667007085;128,0.00000007012400667007085;129,0;130,0;131,0.00000026491291408693426;132,0.00000012466490074679263;133,0;134,0.00000006233245037339631;135,0.0000000623324503733963;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0.00000006233245037339631;148,0.00000006233245037339631;149,0.00000013440434611763583;150,0.0000000623324503733963;151,0.00000044119687529919575;152,0;153,0;154,0;155,0.00000022595513260356155;156,0;157,0.00000012466490074679263;158,0.00000007012400667007085;159,0.00000019478890741686347;160,0;161,0.00000031166225186698156;162,0.00000025906924686442843;163,0.0000001344043461176358;164,0.00000012466490074679265;165,0.00000024932980149358525;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0.0000000623324503733963;", + "silktouch": false, + "dim": "swplanets:tatooine" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0.000048910520707837326;11,0.00004453945762540291;12,0.00004584064752694757;13,0.00005813280152948874;14,0.00004850730766948443;15,0.000008057443155298557;16,0.000007528591271661774;17,0.000007149726846735975;18,0.000008400271632352236;19,0.000006358883882623508;20,0.000006305316933083871;21,0.0000059059996728793;22,0.000006095918857610742;23,0.000005338190007759144;24,0.000006170912586966234;25,0.000005145348989416448;26,0.000005428766849707984;27,0.0000062809683196567636;28,0.000007872393693252537;29,0.000007344515754152837;30,0.000009026517969697454;31,0.000006522506564853672;32,0.000007978553647794728;33,0.000006602370016894587;34,0.000008801536781630976;35,0.000006826377260423981;36,0.000006811768092367715;37,0.000006141694250853704;38,0.000006008263849273153;39,0.000002872162439861652;40,0.000003946423264265654;41,0.0000022488379361276885;42,0.0000020959286438054508;43,0.0000008103218548541519;44,0.0000005609920533605667;", + "silktouch": false, + "dim": "swplanets:tatooine" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0.00000024932980149358525;48,0.0000003116622518669815;49,0.0000004986596029871703;50,0.0000006856569541073593;51,0.0000010596516563477373;52,0.0000011843165570945294;53,0.0000007479894044807556;54,0.000000997319205974341;55,0.000000810321854854152;56,0.0000013089814578413227;57,0.0000007479894044807559;58,0.0000004986596029871705;59,0.0000013713139082147186;60,0.0000019323059615752858;61,0.0000018076410608284928;62,0.000002493298014935852;63,0.0000021193033126954745;64,0.000001994638411948682;65,0.000001059651656347737;66,0.0000009973192059743408;67,0.0000003116622518669815;68,0.000000623324503733963;69,0.0000011843165570945298;70,0.000000810321854854152;71,0.0000016206437097083036;72,0.0000016829761600817003;73,0.000001994638411948682;74,0.0000015583112593349078;75,0.0000023686331141890596;76,0.0000015583112593349078;77,0.0000006856569541073594;78,0.0000011843165570945298;79,0.0000011219841067211335;80,0.0000013752096863630559;81,0.0000015583112593349078;82,0.0000018115368389768303;83,0.0000017453086104550966;84,0.0000018076410608284932;85,0.0000029296251675496268;86,0.0000016829761600817003;87,0.0000010596516563477373;88,0.000001690767716378375;89,0.0000008220091892991639;90,0.0000005648878315089041;91,0.000001320668792286334;92,0.0000016206437097083038;93,0.0000011843165570945298;94,0.0000018076410608284928;95,0.0000007479894044807556;96,0.0000004986596029871704;97,0.0000016829761600817003;98,0.0000019946384119486816;99,0.000001246649007467926;100,0.0000011219841067211335;101,0.000002056970862322078;102,0.0000015583112593349073;103,0.000002181635763068871;104,0.0000015583112593349076;105,0.0000036152821216569856;106,0.000002493298014935852;107,0.0000026179629156826446;108,0.000003054290068296419;109,0.000002742627816429438;110,0.000002064762418618753;111,0.0000026179629156826455;112,0.000003432180548685134;113,0.0000020024299682453566;114,0.0000023374668890023617;115,0.0000016829761600817003;116,0.0000026179629156826455;117,0.000002680295366056041;118,0.0000022439682134422675;119,0.000002119303312695475;120,0.000002243968213442267;121,0.000003241287419416608;122,0.0000022439682134422675;123,0.0000031166225186698155;124,0.000001994638411948682;125,0.000003989276823897365;126,0.0000046749337780047225;127,0.0000029296251675496263;128,0.0000025556304653092488;129,0.0000034282847705367964;130,0.000003751634356848791;131,0.000002746523594577775;132,0.0000038646119231505715;133,0.000004585330880592966;134,0.00000443729131095615;135,0.000003564637005728601;136,0.000004312626410209357;137,0.0000029568956145879865;138,0.000004737266228378119;139,0.0000027465235945777753;140,0.000003677614572030382;141,0.00000523592583136529;142,0.000007292896693687368;143,0.000010222521861236995;144,0.000016035022858556205;145,0.000019397079400571263;146,0.000020963182216202846;147,0.000027710669969122996;148,0.000027217854033358336;149,0.000025073228162698663;150,0.00002500699993417693;151,0.00002817816334692347;152,0.00002700553412427395;153,0.000019510056966873043;154,0.00001676742915044361;155,0.000015583112593349076;156,0.000009910859609370012;157,0.000007230564243313971;158,0.00000810321854854152;159,0.0000046749337780047225;160,0.000004748953562823131;161,0.000003685406128327057;162,0.0000024309655645624563;163,0.0000016206437097083042;164,0.0000014336463585881153;165,0.0000010596516563477373;166,0.0000005609920533605668;167,0.0000008726543052275484;168,0.00000024932980149358525;169,0.00000024932980149358525;170,0;171,0.00000006233245037339633;172,0.00000006233245037339633;173,0;174,0.00000018699735112018894;175,0.00000012466490074679265;", + "silktouch": false, + "dim": "swplanets:tatooine" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.000010322656044754207;46,0.00006567865366486887;47,0.00016250637469285571;48,0.0002594548285400794;49,0.00035990453414517305;50,0.0004818446815744332;51,0.0006058372869307206;52,0.000709244946607118;53,0.0007834956304378063;54,0.0008795989545503717;55,0.001005342185785594;56,0.0011037394334636604;57,0.001150644133737193;58,0.001226645443446816;59,0.0013456880032143908;60,0.0015035461643666261;61,0.0016070141904526419;62,0.0016777032561158416;63,0.0017351720780726019;64,0.0018166063646478851;65,0.0016824118360660805;66,0.0015011315079818883;67,0.001287736249980683;68,0.0010771782132315447;69,0.0008304003307113383;70,0.0005739034562425628;71,0.0003081705211021651;72,0.00000030183204809222835;73,0.000000181099228855337;74,0.0000004829312769475653;75,0.00000006036640961844568;76,0.00000006036640961844568;77,0.0000002414656384737826;78,0.00000024146563847378254;79,0.00000006036640961844566;80,0.00000042256486732911975;81,0.000000362198457710674;82,0.00000006036640961844566;83,0;84,0.00000006036640961844568;85,0.00000042256486732911954;86,0.00000024146563847378254;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000006036640961844565;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.00000012073281923689124;57,0;58,0;59,0;60,0.00000024146563847378265;61,0;62,0.00000012073281923689132;63,0;64,0.00000024146563847378265;65,0.0001355225895934105;66,0.000246113852014403;67,0.00036304358744533225;68,0.0004730915521797586;69,0.0005530166785145807;70,0.0006372278199323123;71,0.0007084601832820783;72,0.0007718449133814463;73,0.0007307957548409031;74,0.0007105126412091055;75,0.000679182474617132;76,0.0006240075762258728;77,0.0005892968906952665;78,0.0005754126164830241;79,0.0005521111823703041;80,0.0005155895045511442;81,0.0004786452618646556;82,0.00045377430110185606;83,0.00042334963065415943;84,0.00037879922035574654;85,0.00034909894682347124;86,0.00032090783353165716;87,0.0002852916518567742;88,0.00024593275278554763;89,0.00020452139578729388;90,0.00017222536664142547;91,0.0001417403297841104;92,0.00011173822420374291;93,0.00007732937072122889;94,0.000043524181334899325;95,0.00001823065570477059;96,0.000002897587661685391;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0.0000002414656384737826;63,0.0000002414656384737826;64,0.00019763962509079108;65,0.0004550419957038435;66,0.0007152815875689626;67,0.0009994262776429862;68,0.0013035522493007154;69,0.001646735287981579;70,0.002000059883478342;71,0.0024026434692237556;72,0.002826657130383718;73,0.0029146713556074118;74,0.0029998483595790387;75,0.0031098359579038466;76,0.0031501607195289685;77,0.0032870113701339845;78,0.0034386517910955203;79,0.0034641867823641224;80,0.003520750108176606;81,0.003702211535489653;82,0.0037960813024463373;83,0.00387129784883092;84,0.003930094731799286;85,0.004022696804153982;86,0.00411131469347386;87,0.004202286872768858;88,0.004242370168755507;89,0.004339439355421967;90,0.0044352408474864395;91,0.004494098096864425;92,0.004552351682146224;93,0.0046389774799486935;94,0.004700551217759508;95,0.00471715198040458;96,0.004707855553323341;97,0.004872595485172078;98,0.004932841161971287;99,0.004915153803953082;100,0.0049556596648070595;101,0.004971777496175184;102,0.0049094793614489485;103,0.004958798718107218;104,0.0049842733429662014;105,0.005022485280254679;106,0.005064439934939498;107,0.0051392339164567525;108,0.005155170648596023;109,0.005117502008994112;110,0.004942379054691002;111,0.004443269579965693;112,0.004168662782611384;113,0.003903231679519078;114,0.0036667764530436265;115,0.0034079856550093494;116,0.003208233205581913;117,0.0031114658509635443;118,0.003016328389404874;119,0.002983730528210914;120,0.002975822528550897;121,0.003052065303898994;122,0.0029525210944381774;123,0.0025987135676644674;124,0.0023191567247214454;125,0.002171259021156253;126,0.0021248976185692875;127,0.00201527221870219;128,0.0018265668222349285;129,0.0017307049637608372;130,0.0016537377914973188;131,0.0015250969726004113;132,0.0014292351141263196;133,0.0013551655295244867;134,0.001273248311672256;135,0.0011879505748813924;136,0.0011089913111004654;137,0.001073616595064056;138,0.0010074550101222396;139,0.0009402068298072911;140,0.0008965015492435366;141,0.0008526151694509265;142,0.0008085476904294612;143,0.0007746217682238947;144,0.0007189639385556879;145,0.0006725421695591032;146,0.0006331229040782581;147,0.0006016720046670479;148,0.000560381380488031;149,0.0005170986647916055;150,0.0004659079494351637;151,0.0004479791257784852;152,0.0003913554335563832;153,0.0003383537259113879;154,0.00029651980404580506;155,0.0002717092096926239;156,0.0002485285083991408;157,0.0002259514712018421;158,0.0001969755945849882;159,0.0001772961450493749;160,0.00015918622216384121;161,0.00013407379576256783;162,0.00011813706362329818;163,0.00011855962849062727;164,0.00010594304888037215;165,0.00008940265264491802;166,0.00007352628691526681;167,0.0000646524247013553;168,0.00004817239487551964;169,0.000032296029145868435;170,0.00003452958630175092;171,0.000030303937628459718;172,0.000019558716716376394;173,0.00001436720548919007;174,0.000006640305058029023;175,0.0000032597861193960657;176,0.0000009054961442766848;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0.005982794124464912;2,0.005766139080344311;3,0.005597354599051136;4,0.005395549691696673;5,0.00525429229318951;6,0.0050916651856774174;7,0.004938757070113894;8,0.004718540407825805;9,0.00453037830904511;10,0.004355798652428564;11,0.0041470516079679795;12,0.003979414088457556;13,0.003781110432860962;14,0.0036426902556058664;15,0.0035352380464850333;16,0.0033393490472731773;17,0.003162716932729605;18,0.0030099899163949376;19,0.0028567799687833225;20,0.0026771295337588282;21,0.002541486211346181;22,0.002366966921139254;23,0.0021938360583535522;24,0.002072499575020476;25,0.0018797496291087792;26,0.0017146474988023303;27,0.0015942768780231498;28,0.0014501822582639202;29,0.001288822845353815;30,0.0011559563777836157;31,0.0010293680168137354;32,0.0009611539739448917;33,0.0009539100047906784;34,0.0009467867684557017;35,0.0009388184023860668;36,0.0009306085706779583;37,0.0009211310443678623;38,0.0009116535180577663;39,0.0009184145559350322;40,0.0009185352887542691;41,0.0009306085706779583;42,0.000936645211639803;43,0.0009406293946746204;44,0.0009295823417144447;45,0.0009092388616730286;46,0.0009455794402633328;47,0.0009316347996414719;48,0.0009217347084640468;49,0.0009463642035883726;50,0.0009384562039283562;51,0.0009325402957857485;52,0.0009365848452301843;53,0.0009388787687956853;54,0.0009383354711091194;55,0.0009598259129332861;56,0.0009268658532816147;57,0.0009242700976680215;58,0.000924753028944969;59,0.0009350756849897232;60,0.0009276506166066545;61,0.0009054357778670663;62,0.0008894990457277967;63,0.0008967430148820103;64,0.0008843075345006104;65,0.0007674985318889182;66,0.0006657207652722187;67,0.000554948403622371;68,0.0004356643782163223;69,0.000329419497287858;70,0.00021055803674913847;71,0.00010902173577091285;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0005629771361016242;2,0.0005452897780834197;3,0.0005264554582824645;4,0.0005303792749076636;5,0.0005472818696008284;6,0.0005376836104714956;7,0.0005379854425195878;8,0.000527179855197886;9,0.0005145632755876307;10,0.0005081040697584571;11,0.0005349067556290471;12,0.0005110620238297609;13,0.0004998942380503484;14,0.0005032747569889814;15,0.0005101565276854842;16,0.0004891490171382651;17,0.000489269749957502;18,0.0005007393677850068;19,0.0004935557650404117;20,0.0004659079494351636;21,0.00047538547574525953;22,0.00047260862090281106;23,0.00047526474292602266;24,0.00047598913984144405;25,0.00048287091053794684;26,0.000451057812669026;27,0.0004647006212427947;28,0.0004655457509774529;29,0.00046216523203881997;30,0.000472729353722048;31,0.0004952460245097282;32,0.0005356915189540868;33,0.0005545862051646603;34,0.0005868218679009102;35,0.0006184538665409758;36,0.0006457998500981316;37,0.0006709726429090235;38,0.0007091242137878813;39,0.0007481812808110156;40,0.0007575380743018746;41,0.0007749236002719869;42,0.0007976213702885224;43,0.0008368595365405121;44,0.000857021917353073;45,0.0008907667403297841;46,0.0009102047242269236;47,0.0009492014248404395;48,0.000984455408057612;49,0.0010041952240028434;50,0.001031179009102289;51,0.0010369741844256596;52,0.001050315160951336;53,0.0011108023033890187;54,0.0011136998910507043;55,0.0011316890811170007;56,0.0011756961937288476;57,0.0012206691688945895;58,0.0012258003137121576;59,0.0012377528628166098;60,0.0012529048316308395;61,0.0012927466619790137;62,0.0013187042181149453;63,0.0013247408590767898;64,0.0013082004628413358;65,0.0011220908219876677;66,0.0009630253326430637;67,0.0007862121188706363;68,0.0006100025691943933;69,0.00044170101917816694;70,0.0002924752546013692;71,0.0001426458259283871;72,0.00000018109922885533692;73,0.0000001207328192368913;74,0;75,0;76,0.00000006036640961844564;77,0.00000012073281923689127;78,0.0000003621984577106739;79,0.00000018109922885533695;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.000022214838739588004;62,0.00008849715650064133;63,0.00020717751781050548;64,0.00035109103834088;65,0.0004279978441947797;66,0.00046301036177347817;67,0.0004809391854301566;68,0.00046518355251974223;69,0.00040638666955137616;70,0.0002985722619728322;71,0.00016618872567958088;72,0;73,0.00000012073281923689132;74,0.00000006036640961844568;75,0;76,0.00000012073281923689132;77,0.00000006036640961844566;78,0.00000006036640961844566;79,0.00000024146563847378265;80,0.0000004829312769475653;81,0.00000024146563847378265;82,0;83,0;84,0;85,0.00000012073281923689135;86,0.00000030183204809222835;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0.00000006036640961844566;45,0;46,0;47,0;48,0.00000006036640961844564;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0.00000013959732224265554;65,0.00003329018845427221;66,0.000056150193196657344;67,0.00008578632741871301;68,0.00009630894719532833;69,0.0001125154417275804;70,0.00011600160188304563;71,0.0001251357942384367;72,0.00012397940020418335;73,0.00011029508972380196;74,0.0000912513739394829;75,0.00007345271535354433;76,0.00005941563866695514;77,0.00004094729022431192;78,0.00002589718972631319;79,0.000012435480381399805;80,0.0000021731907462640438;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00006115117294348544;66,0.00015490020708093158;67,0.00028655934645876156;68,0.0004622255984484384;69,0.0006705500780416944;70,0.0008968637477012472;71,0.0011741266670787683;72,0.0014497596933965911;73,0.001575201092583721;74,0.0017630009929067054;75,0.001934019031355762;76,0.002047628614257677;77,0.002208082531023505;78,0.0023681742493316233;79,0.0025158304872583415;80,0.00262811200914865;81,0.0027604955454419017;82,0.0029147317220170306;83,0.0030191052442473227;84,0.0031381478040148976;85,0.0032911766523976574;86,0.003391264159545041;87,0.0034945510864022008;88,0.003620052851998949;89,0.003682773551592514;90,0.0037914330889057164;91,0.003962752959402865;92,0.004107511609667898;93,0.0042306590852895275;94,0.004299899357121885;95,0.004410852818000587;96,0.004520538584277303;97,0.004677430882875644;98,0.004758623703812453;99,0.004827381044367862;100,0.00488267667557836;101,0.004972441526680987;102,0.00508961272775039;103,0.005084059018065494;104,0.005155532847053734;105,0.00530789766493069;106,0.005320272778902471;107,0.005355285296481169;108,0.005530951548470846;109,0.005595785072401058;110,0.00538401970745955;111,0.00497660680894466;112,0.0047730512757112615;113,0.004681837630777791;114,0.0046128388245839065;115,0.00450828420312476;116,0.004368354865629202;117,0.004349097980960918;118,0.004376021399650744;119,0.004434939015438347;120,0.0046476098765241315;121,0.004958738351697601;122,0.0049895855870126255;123,0.004610061969741458;124,0.004215205284427205;125,0.004081372954303111;126,0.003899126763665023;127,0.0038025405082755103;128,0.003754247380580754;129,0.0036586269877451356;130,0.0035129024749262086;131,0.003434426142422229;132,0.0033747841297192046;133,0.0033105542698851787;134,0.0032080521063530577;135,0.003179559161013151;136,0.003129092842572131;137,0.0030348608771577374;138,0.0029514344990650455;139,0.002895474837348746;140,0.002833538901080221;141,0.0028588324267103493;142,0.002824785771685546;143,0.002774681651702236;144,0.0027050791814121687;145,0.0026603476718849;146,0.002653465901188397;147,0.0025839841637175665;148,0.0025341215093727305;149,0.002498143129240137;150,0.0023682346157412417;151,0.002232470560509357;152,0.0021296061985195264;153,0.002025111943469997;154,0.0019183237648549662;155,0.0018438316153858044;156,0.001734628780386036;157,0.0016406986470197346;158,0.0016400346165139318;159,0.001627900968180624;160,0.0015274512625755305;161,0.001372430322675362;162,0.0012585792741349737;163,0.001220306970436879;164,0.0011532398893507859;165,0.0010766952819545967;166,0.001031601573969618;167,0.0009562039283561793;168,0.000910385823455779;169,0.000854305428920243;170,0.0007630314175771531;171,0.000711659602991856;172,0.0006711537421378789;173,0.000629983850778099;174,0.0006136245537715001;175,0.0005773443415908143;176,0.0005324920992443092;177,0.0005112431230586163;178,0.0004809391854301566;179,0.0004732122849989955;180,0.000434939981300901;181,0.0003858620902811047;182,0.00034324340509048207;183,0.0003190364748334853;184,0.0002957954071303837;185,0.0002804019726776801;186,0.00026114508800939595;187,0.00024557055432783696;188,0.00022474414300947322;189,0.00021345562441082386;190,0.00019329324359826302;191,0.00018580780880557576;192,0.00018967125902115626;193,0.00016793935155851584;194,0.00014560377999969093;195,0.00012912375017385528;196,0.00011705046825016613;197,0.00012827862043919704;198,0.00017379489329150507;199,0.00021110133443570447;200,0.0002089281436894405;201,0.0001871962362268;202,0.00018617000726328642;203,0.00018303095396312723;204,0.00016401553493331687;205,0.00014838063484213945;206,0.00013359086448562024;207,0.00011795596439444285;208,0.00010207959866479162;209,0.00009332646927011698;210,0.00008366784373116569;211,0.00008010622556367739;212,0.00007805376763665026;213,0.00006422985983402619;214,0.00005686515786057582;215,0.0000431016164675702;216,0.00003495215116908004;217,0.00003120943377273641;218,0.00002885514379761703;219,0.000029217342255327705;220,0.000024931327172418063;221,0.00002058494567988998;222,0.00002130934259531132;223,0.000014186106260334732;224,0.00000947752631009597;225,0.00000585554173298923;226,0.000007726900431161046;227,0.00001195254910445224;228,0.000009779358358188199;229,0.0000051915112271863264;230,0.00000404454944443586;231,0.0000037427173963436313;232,0.0000024146563847378264;233,0.000002293923565500936;234,0.000001690259469316479;235,0.0000012073281923689132;236,0.000002535389203974718;237,0.0000022335571558824895;238,0.0000012073281923689132;239,0.0000007243969154213479;240,0.0000017506258789349246;241,0.000002293923565500936;242,0.0000013280610116058047;243,0.000000181099228855337;244,0.0000015091602404611413;245,0.0000035012517578698483;246,0.000003018320480922283;247,0.0000027768548424485013;248,0.0000018109922885533703;249,0.0000004829312769475654;250,0.0000016298930596980328;251,0.0000027768548424485;252,0.0000029579540713038377;253,0.000001992091517408707;254,0.0000013280610116058045;255,0.000001086595373132022;256,0.000001086595373132022;257,0.0000008451297346582392;258,0.0000004225648673291196;259,0.0000006640305058029025;260,0.000000724396915421348;261,0.000001328061011605805;262,0.0000013884274212242507;263,0.000000724396915421348;264,0.0000009054961442766849;265,0.0000011469617827504674;266,0.00000138842742122425;267,0.0000006036640961844566;268,0.0000006036640961844566;269,0.0000009658625538951304;270,0.0000006640305058029023;271,0.00000024146563847378265;272,0;273,0.0000006036640961844567;274,0.0000006036640961844567;275,0;276,0;277,0;278,0;279,0;280,0;281,0;282,0;283,0;284,0;285,0;286,0;287,0;288,0;289,0;290,0;291,0.000000181099228855337;292,0.00000012073281923689132;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.000857565215039639;2,0.000911472418828911;3,0.0009428025854208843;4,0.000984455408057612;5,0.0010020220332565795;6,0.0010391473751719235;7,0.0010840599839280472;8,0.0011206420281568252;9,0.0011461770194254278;10,0.001151489263471851;11,0.0011807066057271786;12,0.0012070263603208209;13,0.001254293259052064;14,0.0012033440093340956;15,0.000992182308488773;16,0.0007517428989785037;17,0.0007340555409602993;18,0.0007443781970050534;19,0.0007839785617147538;20,0.0008180252167395572;21,0.0008392741929252501;22,0.0008818928781158727;23,0.0009161206323695312;24,0.0009388787687956853;25,0.0009541514704291521;26,0.0010021427660758164;27,0.0010328692685716051;28,0.0010868368387704956;29,0.001104886395246411;30,0.0010973405940441052;31,0.0011316287147073822;32,0.0011621137515646974;33,0.0012099843143921246;34,0.0012564664497983278;35,0.001290332005594276;36,0.0013111584169126396;37,0.0013499740182973002;38,0.0013957921231977006;39,0.001418067328346907;40,0.0014321930681976231;41,0.0014658171583550974;42,0.0015188792324097112;43,0.0015536502843499357;44,0.0015619204824676629;45,0.0016009775494907974;46,0.0016656903406017712;47,0.0016404571813812608;48,0.0016282028002287162;49,0.0015563064063731477;50,0.0015212335223848306;51,0.0014797014325673402;52,0.0014304424423186883;53,0.0014129361835293393;54,0.0013806401543834707;55,0.0013688687045078738;56,0.0013476197283221808;57,0.0013077175315643883;58,0.0012635896861333045;59,0.0012490413814152592;60,0.001195375643264461;61,0.001169236987899674;62,0.0011301195544669211;63,0.0010786873734720055;64,0.0010587060918882999;65,0.000902115625338052;66,0.000751742898978504;67,0.0006048714243768256;68,0.0004706768957950208;69,0.00033165305444374043;70,0.00020971290701448023;71,0.0001020795986647916;72,0;73,0;74,0.00000012073281923689132;75,0.0000003018320480922283;76,0;77,0;78,0;79,0.00000006036640961844564;80,0.00000012073281923689127;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "croptopia:salt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0.000001992091517408706;63,0.0000031055164059267043;64,0.0000009658625538951302;65,0.0000013884274212242498;66,0.0000031122237847731983;67,0.0000011469617827504672;68,0.00000006036640961844565;69,0.0000036219845771067398;70,0.00000030183204809222824;71,0.0000003018320480922282;72,0.0000006036640961844564;73,0.0000011469617827504676;74,0.0000027768548424485;75,0.0000019920915174087065;76,0.000002052457927027152;77,0.0000010262289635135761;78,0.0000008451297346582392;79,0.00000006036640961844566;80,0.0000005432976865660109;81,0.0000009859846904346123;82,0.0000005432976865660108;83,0.0000009054961442766848;84,0.00000018109922885533695;85,0;86,0.0000022939235655009344;87,0.0000002414656384737826;88,0;89,0.0000004829312769475653;90,0.0000015091602404611417;91,0.000002112824336645598;92,0.0000017506258789349243;93,0.000005417292899634545;94,0.000007428002861314158;95,0.0000020390431693341643;96,0.00000428601508290964;97,0.000004587847131001869;98,0.0000057725379197638655;99,0.000004867041775487181;100,0.000003886087619187439;101,0.000002484455045859154;102,0.0000036018624405672574;103,0.0000024616080366632838;104,0.0000022335571558824895;105,0.0000013884274212242502;106,0.000004972682992319461;107,0.00000346352275185832;108,0.000009255763596983762;109,0.000023846408643997657;110,0.000043713801486609916;111,0.000015908435384761007;112,0.000009786904159390503;113,0.000012911139255739351;114,0.00002466932018622688;115,0.00006886849531055999;116,0.00013748666686819134;117,0.00021370128216107668;118,0.00026804954167593807;119,0.0003160023610270997;120,0.0002616506384633774;121,0.000182923763487594;122,0.00016424868925452434;123,0.00012970003795746514;124,0.00016381186209385993;125,0.0000995865862429313;126,0.00002861745105974439;127,0.0000055008890764808605;128,0.0000037502631975459366;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0.0000018244070462463576;146,0.000001254279844294371;147,0.0000004561017615615894;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0.0000002414656384737826;61,0;62,0;63,0;64,0.000001207328192368913;65,0.00011161749138450603;66,0.0002148440518320481;67,0.000329419497287858;68,0.000437777202552968;69,0.000551024586997172;70,0.0006444114226769075;71,0.0007480001815821601;72,0.0008612475660263642;73,0.0008883520839450462;74,0.0008715702220711183;75,0.0008470614597660295;76,0.0008305210635305754;77,0.0007595905322289018;78,0.0004363284087221252;79,0.00008119282093680942;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.00000006036640961844565;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.00000006036640961844566;53,0;54,0.00000006036640961844566;55,0;56,0;57,0;58,0;59,0;60,0.00000018109922885533697;61,0.0000002414656384737826;62,0.00000024146563847378265;63,0.00000012073281923689132;64,0.0000003621984577106739;65,0.00047924892596084006;66,0.0009851798049730332;67,0.0015314958120199664;68,0.002082218566969046;69,0.0026898064797787015;70,0.003285562576303142;71,0.00392605018235485;72,0.004604266794418088;73,0.004746369322659908;74,0.004857624615586704;75,0.004999727143828525;76,0.005097943292277736;77,0.005252058736033628;78,0.005308501329026874;79,0.005282181574433232;80,0.005205395501398569;81,0.005136698527252778;82,0.004974916549475344;83,0.004814945563986463;84,0.004649722700860777;85,0.004558629788746543;86,0.004469589334559335;87,0.004316681218995812;88,0.004188281865737379;89,0.004008088133026318;90,0.00387479910058879;91,0.0037506857624132655;92,0.0035954837232842424;93,0.0034583916070407518;94,0.0033560705427374865;95,0.0032289388840810395;96,0.003064742249918868;97,0.0029536680562209277;98,0.0028379456489823675;99,0.0026386157644222603;100,0.002547764317946499;101,0.002447737177208735;102,0.0022981492141742263;103,0.002158461342317143;104,0.0020020519749957503;105,0.0018850015067455842;106,0.0017601637716546385;107,0.0016676824321191796;108,0.001532220208935388;109,0.0014010440008345054;110,0.0012542328926424455;111,0.001053574947070732;112,0.0009131626782982275;113,0.0008069781637793815;114,0.0006899880619388338;115,0.0005774047080004327;116,0.0004893904827767389;117,0.00040125552473380837;118,0.00034433000046361396;119,0.00028420505648364214;120,0.0002518486609281553;121,0.00026217131697290946;122,0.00025480661499945913;123,0.00022631366965955276;124,0.0002128519603146394;125,0.00020856594523172977;126,0.00019178408335780185;127,0.00017355342765303127;128,0.0001736137940626497;129,0.00016558506158339644;130,0.00015683193218872185;131,0.000153873978117418;132,0.00015278738274428598;133,0.00014077446723021527;134,0.00013057254400469797;135,0.00006911953901312027;136,0.000008813495804293067;137,0;138,0;139,0;140,0;141,0.000002112824336645598;142,0.000012435480381399809;143,0.000028191113291814123;144,0.000045516272852308024;145,0.0000642298598340262;146,0.00007992512633482204;147,0.00008421114141773169;148,0.00010171740020708094;149,0.00011415288058848076;150,0.00011692973543092923;151,0.00013691101701463477;152,0.0001407744672302153;153,0.0001370921162434901;154,0.00014349095566304533;155,0.00014892393252870543;156,0.00014940686380565302;157,0.00014946723021527149;158,0.00015978988626002562;159,0.00015822035960994608;160,0.00017198390100295167;161,0.00017705467941090113;162,0.00017337232842417594;163,0.00016425700057179064;164,0.00015761669551376162;165,0.0001566508329598665;166,0.00016600762645072557;167,0.00015490020708093156;168,0.00014898429893832387;169,0.0001486824668902317;170,0.0001537532452981811;171,0.0001480184363844288;172,0.00013992933749555706;173,0.00013171950578744844;174,0.00012562249841598542;175,0.00012363040689857672;176,0.0001336512308952387;177,0.00012990851349889507;178,0.00012550176559674852;179,0.00011222115548069049;180,0.00011173822420374293;181,0.0001086595373132022;182,0.00010370949172448964;183,0.0001000875071473829;184,0.00009616369052218393;185,0.00010159666738784404;186,0.00009978567509929067;187,0.00009036851519881315;188,0.00008964411828339181;189,0.00008306417963498124;190,0.00007545801202305708;191,0.00008010622556367739;192,0.00007660497380580756;193,0.0000737677525537406;194,0.00007569947766153086;195,0.0000673085467245669;196,0.00006272069959356504;197,0.00005946091347416898;198,0.000059219447835695194;199,0.000058253585281800075;200,0.000051794379452626376;201,0.00004889679179094099;202,0.0000515529138141526;203,0.000051432180994915715;204,0.0000474479979600983;205,0.00003803083805962077;206,0.000039841830348174144;207,0.00003984183034817414;208,0.00003507288398831693;209,0.00003567654808450139;210,0.00003096796813426263;211,0.00002897587661685392;212,0.00002450876230508894;213,0.000021611174643403546;214,0.000020403846451034638;215,0.000019679449535613292;216,0.000016480029825835667;217,0.000012194014742926024;218,0.000008511663756200838;219,0.000008813495804293067;220,0.000008813495804293067;221,0.000006881770696502806;222,0.0000061573737810814585;223,0.000007183602744595033;224,0.000005432976865660109;225,0.0000038030838059620766;226,0.000003139053300159175;227,0.0000027768548424485005;228,0.0000028372212520669462;229,0.000003259786119396066;230,0.000003078686890540729;231,0.0000025957556135931636;232,0.0000015091602404611417;233,0.0000012073281923689132;234,0.000001267694601987359;235,0.0000018109922885533699;236,0.0000031390533001591746;237,0.0000022335571558824895;238,0.0000022939235655009353;239,0.000002173190746264044;240,0.000002052457927027153;241,0.000002354289975119381;242,0.0000009054961442766852;243,0.000001267694601987359;244,0.000002233557155882489;245,0.000001267694601987359;246,0.0000006640305058029023;247,0.0000007847633250397938;248,0.0000007847633250397938;249,0.000000724396915421348;250,0.0000006036640961844565;251,0.0000012073281923689132;252,0.0000006640305058029023;253,0.0000006640305058029023;254,0.0000018713586981718156;255,0.00000138842742122425;256,0.0000009054961442766849;257,0.0000008451297346582394;258,0.0000007847633250397938;259,0.000001750625878934924;260,0.0000016902594693164784;261,0.0000006036640961844566;262,0.00000006036640961844565;263,0.00000030183204809222835;264,0.0000006640305058029023;265,0.000000362198457710674;266,0.0000004225648673291196;267,0.00000036219845771067395;268,0.000000362198457710674;269,0.0000006036640961844566;270,0.0000004829312769475653;271,0.0000006640305058029022;272,0.0000006640305058029022;273,0.0000007847633250397938;274,0.0000005432976865660108;275,0.0000003018320480922283;276,0.0000004829312769475652;277,0;278,0.000000181099228855337;279,0.00000030183204809222824;280,0.00000006036640961844565;281,0.0000002414656384737827;282,0.00000006036640961844568;283,0;284,0;285,0.0000002414656384737826;286,0.0000004225648673291196;287,0;288,0;289,0;290,0.0000002414656384737826;291,0.0000004225648673291197;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0.0000001207328192368913;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.00000024146563847378265;55,0;56,0;57,0.00000006036640961844562;58,0.00000006036640961844562;59,0;60,0;61,0.0000001207328192368913;62,0;63,0.00000018109922885533695;64,0.00000006036640961844565;65,0.00016087648163315768;66,0.00031740658177378724;67,0.0004746610788298383;68,0.0006055958212922469;69,0.0007419031742106972;70,0.0008652921154708001;71,0.0009609728747160364;72,0.001058585359069063;73,0.0010504962601801913;74,0.0010113788267474386;75,0.0010002110409680263;76,0.0009677942790029208;77,0.0009575923557774034;78,0.0009187163879831246;79,0.0008963808164242996;80,0.0008669823749401166;81,0.000835893673986617;82,0.0007947841490364556;83,0.0007993719961674574;84,0.0007649631426849435;85,0.000725362777975243;86,0.0006837099553385156;87,0.0006716366734148264;88,0.0006474901095674481;89,0.0006077690120385109;90,0.0005880895625028975;91,0.0005419092591447867;92,0.0005034558562178368;93,0.00048063735338206435;94,0.0004688659035064674;95,0.0004336722866989137;96,0.0004128458753805498;97,0.00041658859277689345;98,0.00040855986029764016;99,0.00039509815095272686;100,0.0004023421201069403;101,0.0004103104861765751;102,0.0003976335401567016;103,0.00039358899071226564;104,0.00039473595249501614;105,0.00039757317374708315;106,0.00039872013552983354;107,0.0003847151284983542;108,0.00037590163269406114;109,0.0003769278616575747;110,0.00035579961829111873;111,0.00031970050533928823;112,0.00029965885734596425;113,0.00029434661329954105;114,0.00027521046145049377;115,0.0002687512556213201;116,0.00025154682888006306;117,0.0002517279281089184;118,0.00025631577523992023;119,0.000252754157072432;120,0.0002578853018899999;121,0.0002625335154306202;122,0.0002577042026611445;123,0.0002385076844024788;124,0.0002288490588635275;125,0.0002068153193527948;126,0.00017711504582051957;127,0.00009133437775270831;128,0.000015091602404611415;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.001758775344233414;2,0.0017118706439598818;3,0.0016967186751456521;4,0.001667561699299943;5,0.0016094288468373797;6,0.0016105154422105116;7,0.001555702742276963;8,0.0015296244533217946;9,0.0014810898599885644;10,0.0014468621057349054;11,0.001411547756108115;12,0.0013809419864315628;13,0.0013406172248064412;14,0.00133639157613315;15,0.0013221451034631966;16,0.001262321991531317;17,0.001238054694864702;18,0.00121288190205381;19,0.001188493872567958;20,0.0011633210797570661;21,0.0011389934166808327;22,0.0011179255397239952;23,0.001078325175014295;24,0.0010718056027755026;25,0.0010258063986462473;26,0.0010181398646247047;27,0.001003289727858567;28,0.0009790827976015703;29,0.0009601881113909967;30,0.0009281939142932205;31,0.0008868429237045851;32,0.0008896801449566522;33,0.0008638433216399574;34,0.0008521322381739789;35,0.0008305210635305754;36,0.0007940597521210342;37,0.0007676796311177734;38,0.0007454647923781854;39,0.0007297091594677711;40,0.0007335122432737333;41,0.0007239139841444004;42,0.0007102711755706317;43,0.0006818385966403438;44,0.0006527419872042529;45,0.000640547972461327;46,0.0006206270572872397;47,0.0005896590891529772;48,0.0005644862963420853;49,0.0005630978689208611;50,0.0005586307546090962;51,0.0005378647097003509;52,0.0005123297184317483;53,0.0004888471850901729;54,0.00046578721661592675;55,0.0004468321639957348;56,0.0004092238908034431;57,0.00039310605943531816;58,0.0003740906404055077;59,0.00036352651872227973;60,0.00035278129781019646;61,0.0003309286575283191;62,0.00031245653618507477;63,0.00029434661329954105;64,0.0002778665834737053;65,0.000226615501707645;66,0.00017687358018204577;67,0.00013522075754531827;68,0.00008831605727178601;69,0.0000674292795438038;70,0.00004002292957702948;71,0.000017325159560493908;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.0005280853513421626;2,0.0005175212296589346;3,0.0005248859316323851;4,0.0007463702885224621;5,0.0007708186844179326;6,0.0007885060424361373;7,0.0008005189579502079;8,0.0007999152938540235;9,0.0008213453692685715;10,0.0008261746820380473;11,0.0008297363002055355;12,0.0008031750799734194;13,0.0008214057356781901;14,0.0008452504674774761;15,0.0008474236582237401;16,0.0008695781305537097;17,0.0008614286652552195;18,0.0008686122679998146;19,0.0008825569086216756;20,0.0008735623135885271;21,0.0009165431972368604;22,0.0009326610286049856;23,0.0009431044174689767;24,0.0009546344017060998;25,0.0009683979430991053;26,0.0009833084462748613;27,0.000992484140536865;28,0.0009815578203959266;29,0.000990854247477167;30,0.0010074550101222396;31,0.0009912164459348778;32,0.0009929670718138127;33,0.0010122239564820967;34,0.0010245387040442597;35,0.0010364308867390937;36,0.001032144871656184;37,0.0010387248103045942;38,0.0010918472507688267;39,0.0011712894458267013;40,0.0012553194880155776;41,0.0013411605224930073;42,0.0014291143813070827;43,0.0015283567587198073;44,0.0016341187083713242;45,0.0017321537575916797;46,0.001834474821894945;47,0.0019087255057256333;48,0.002001206845261092;49,0.0020858405515461528;50,0.0022023477221097534;51,0.0023460801434112724;52,0.002455705543278369;53,0.0025641839813627166;54,0.002682321044986014;55,0.0027443777140737768;56,0.0028837033874731487;57,0.0028108411310636856;58,0.0029197421340153612;59,0.0030574982807646542;60,0.0031700212682934364;61,0.0033316825132516346;62,0.003490023605680817;63,0.0035903525784666736;64,0.0037415100681512615;65,0.003349128405631365;66,0.002989344604305429;67,0.002559233935774004;68,0.0021080553902857414;69,0.0015956049390347558;70,0.00110259247168091;71,0.0005627356704631505;72,0.0000006640305058029023;73,0.00000006036640961844568;74,0.0000003018320480922283;75,0.000000181099228855337;76,0.000000181099228855337;77,0.00000006036640961844568;78,0.00000006036640961844566;79,0.0000004829312769475653;80,0;81,0;82,0.0000005432976865660109;83,0.0000004829312769475652;84,0.0000001207328192368913;85,0.00000030183204809222824;86,0.00000030183204809222824;", + "silktouch": false, + "dim": "swplanets:endor" + }, + { + "block": "mythicbotany:elementium_ore", + "distrib": "0,0;1,0.00009240591397849462;2,0.00011883144627216407;3,0.0001511540447197892;4,0.00018075064088869897;5,0.0002084557252723777;6,0.0002383861176386812;7,0.0002785529267250587;8,0.0002983025350708538;9,0.000320666880296233;10,0.0003578295236060671;11,0.0003847557501958271;12,0.00040661940112511564;13,0.00044645241401409955;14,0.00046742594175033824;15,0.00048684175389873956;16,0.0005109863455102185;17,0.0005380794701986755;18,0.0005623353272092858;19,0.0006045605461795912;20,0.0006131279819126968;21,0.0006327663248593604;22,0.0006723768069500819;23,0.0007121541871395001;24,0.0007294559567044079;25,0.0007625574129459518;26,0.0007858118813643809;27,0.0008170774585202591;28,0.0008584125542975148;29,0.0008852275154881435;30,0.0009001927116712954;31,0.000943252421135085;32,0.0009692328918322296;33,0.0009752968560848821;34,0.0009922648294523962;35,0.001036492825607064;36,0.0010768265327921384;37,0.0010967430392366303;38,0.0011126539913123975;39,0.0011543785159866126;40,0.0011704007334615112;41,0.001188425728120772;42,0.0012108457060457166;43,0.0012413324254076765;44,0.0012811098055970944;45,0.0013138774656412447;46,0.0013269511500391652;47,0.0013403029979349142;48,0.001374850904365164;49,0.0013942110838139998;50,0.0014253653955707468;51,0.0014470065157017732;52,0.0014809980951363667;53,0.0015153791034679199;54,0.0015680632699565618;55,0.001596435946735028;56,0.0015792454425692516;57,0.0016298155664744001;58,0.001671540091148615;59,0.0017291199351990314;60,0.0017269502599159723;61,0.0017343494089581998;62,0.0017994953001495408;63,0.0018282574058249659;64,0.0017855871252581356;65,0.0018058930605995868;66,0.0018259764651427758;67,0.001787589902442498;68,0.00178058018229723;69,0.0017662269458093;70,0.0017371866766360464;71,0.0016845025101474044;72,0.0016575206508580788;73,0.0016285916470839563;74,0.0015991063163141779;75,0.0015492037848038169;76,0.0015048088905504522;77,0.001494739371929075;78,0.0014645308160649434;79,0.001450066314177882;80,0.0013968258206935838;81,0.0013672848572242398;82,0.001355379459517197;83,0.001324058249661753;84,0.00130898178807947;85,0.00126542138431959;86,0.0012160195471053194;87,0.0011830293562629067;88,0.001157104518265328;89,0.0011367985829238768;90,0.001104086555579292;91,0.0010880087054048282;92,0.0010427236879584133;93,0.00099754993591113;94,0.0009757419176814072;95,0.0009403595207576729;96,0.0009029187139500108;97,0.0008742122409741509;98,0.0008553527558214059;99,0.0008282596311329489;100,0.0007863682083600371;101,0.000756660346791996;102,0.0007389691483301289;103,0.0007159372107099623;104,0.0006662572099978637;105,0.0006293727301858577;106,0.0005921544541764581;107,0.0005404716762799971;108,0.0004941296375418358;109,0.0004865079577013458;110,0.0004825024033326213;111,0.00044027718436231576;112,0.00039182110304066084;113,0.00038297550380972725;114,0.00035588237912127037;115,0.00031949859360535496;116,0.00030336511073132525;117,0.0002868421989603361;118,0.0002680383465071566;119,0.00025607731610054825;120,0.00024144591611479027;121,0.0002165780994089582;122,0.00019248914049704478;123,0.00019043073061311686;124,0.0001599996439507228;125,0.00013118190557573172;126,0.00010536833297728405;127,0.00008700954212062951;128,0.00007232250943530585;129,0.00005974951933347576;130,0.0000399999109876807;131,0.000026147368795841348;132,0.000014575767286192409;133,0.000006063964252652567;134,0.0000006675923947874387;", + "silktouch": false, + "dim": "mythicbotany:alfheim" + }, + { + "block": "croptopia:salt_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0.000001780246386099836;94,0.0000018358790856654559;95,0;96,0;97,0;98,0.00000022253079826247953;99,0.0000001668980986968596;100,0.00000005563269956561988;101,0.00000005563269956561988;102,0.0000005563269956561988;103,0.000000834490493484298;104,0.0000006675923947874385;105,0.0000006675923947874385;106,0.0000009596640675069427;107,0.0000015159910631631414;108,0.0000018011086484369432;109,0.000001912374047568183;110,0.0000012447816527807449;111,0.000002169675283059175;112,0.000007232250943530585;113,0.000007065352844833725;114,0.000005363020676909293;115,0.000009442279787265227;116,0.000018012417204806577;117,0.000022647629052551566;118,0.00003500829634005226;119,0.00004176938712718926;120,0.00004825795701631844;121,0.00006551639927958325;122,0.00007296261305970257;123,0.0001043131691510043;124,0.00012032105825429592;125,0.00018768032047031494;126,0.00010420229600890744;127,0.000030347750761212725;128,0.000008397646496722041;129,0.000002426514492297386;", + "silktouch": false, + "dim": "mythicbotany:alfheim" + }, + { + "block": "mythicbotany:dragonstone_ore", + "distrib": "0,0;1,0.000015688421277504807;2,0.000019415812148401342;3,0.00002547977640105391;4,0.000029596596168909777;5,0.000035271131524603005;6,0.00004044497258420565;7,0.00004695399843338318;8,0.00005173841059602648;9,0.0000517384105960265;10,0.00005835870184433526;11,0.00006203046001566617;12,0.00006703740297657195;13,0.00006497899309264402;14,0.00007048663034964038;15,0.00007883153528448337;16,0.00008467296873887345;17,0.00009018060599586982;18,0.00010080645161290321;19,0.00009924873602506587;20,0.00010303175959552801;21,0.00011354633981343018;22,0.00011905397707042656;23,0.00011504842270170192;24,0.00011493715730257068;25,0.00012617496261482588;26,0.00013440860215053763;27,0.0001326283557644378;28,0.0001360219504379406;29,0.000145479509364096;30,0.00014826114434237698;31,0.0001539356796980702;32,0.00016656430249946592;33,0.00016556291390728477;34,0.00014865057323933632;35,0.0001666199351990315;36,0.00016823328348643452;37,0.00018108443708609272;38,0.00018342101046784872;39,0.00018453366445916113;40,0.00017301769564907784;41,0.0001667868332977284;42,0.00017112618386384677;43,0.0001695684682760094;44,0.00016127919604073203;45,0.00015571592608417003;46,0.00014998575802891123;47,0.00014319856868190558;48,0.0001407507299010183;49,0.000138747952716656;50,0.00012445034892829169;51,0.00012534047212134158;52,0.00012166871395001068;53,0.00012100112155522326;54,0.00011009711244036174;55,0.00010920698924731182;56,0.00009585514135156305;57,0.00009663399914548173;58,0.00009702342804244107;59,0.00009201648508153529;60,0.00008572999003062025;61,0.00008478423413800469;62,0.00007888716798404899;63,0.00007237814213487148;64,0.00006542405468916898;65,0.0000646451968952503;66,0.000059749519333475746;67,0.00005563269956561988;68,0.000045396282845545824;69,0.000046898365733817564;70,0.00004139072847682119;71,0.00003438100833155309;72,0.00002887337107455672;73,0.00002698185928932564;74,0.000027260022787153742;75,0.000017969361959695222;76,0.000015910952075767286;77,0.000010236416720074058;78,0.00000467314676351207;79,0.0000016689809869685967;80,0.00000005563269956561988;", + "silktouch": false, + "dim": "mythicbotany:alfheim" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.00007638369650359608;2,0.00009618893754895677;3,0.00011682866908780175;4,0.00013819162572099977;5,0.00016394956561988178;6,0.0001849230933561205;7,0.00020511776329844048;8,0.0002285391298155665;9,0.00024239167200740583;10,0.00026280887274798825;11,0.00029396318450473544;12,0.00030737066510004986;13,0.00032823292743715726;14,0.0003583858506017233;15,0.0003912647760450046;16,0.00042492255928220464;17,0.0004576345866267892;18,0.0005035315637684256;19,0.0005141017766858933;20,0.0005563269956561988;21,0.0005780237484867906;22,0.0005867024496190274;23,0.0006020014419995728;24,0.000633878978850673;25,0.000676326728619241;26,0.0006936284981841486;27,0.000736743840347504;28,0.0007628355764437798;29,0.0007743515452538632;30,0.0008190802357046215;31,0.0008623624759666738;32,0.0008656448052410453;33,0.0008862845367798903;34,0.0009240591397849462;35,0.0009592746386099837;36,0.0010037807982624795;37,0.0010064511678416293;38,0.0010236973047069713;39,0.0010588015381328777;40,0.001064754236986399;41,0.001074823755607776;42,0.0011439752011678415;43,0.0011862560528377126;44,0.0012134048102257352;45,0.0012198582033753473;46,0.0012429457736950794;47,0.0012423894466994235;48,0.0012417218543046358;49,0.0012344896033611055;50,0.0011792463326924445;51,0.001166895873388877;52,0.0011663951790927864;53,0.0011666733425906143;54,0.0011413048315886917;55,0.0011230573061311684;56,0.0010871185822117781;57,0.001067368973865983;58,0.0010609712134159368;59,0.0010608599480168054;60,0.0010602479883215837;61,0.0010392744605853452;62,0.001013071459089938;63,0.0010038364309620453;64,0.0009587183116143274;65,0.0009782453891618598;66,0.0009726821192052981;67,0.0009566042690308339;68,0.0009468129139072847;69,0.0009207211778110092;70,0.0009005821405682546;71,0.0008951301360108239;72,0.0008710968097984761;73,0.0008588019831944742;74,0.0008480092394787437;75,0.0008437255216121911;76,0.0008119036174606565;77,0.0008192471338033184;78,0.000810957861568041;79,0.0007619454532507299;80,0.0007351304920601011;81,0.0007311249376913765;82,0.0006926827422915331;83,0.0006681487217830947;84,0.0006314311400697856;85,0.0005923769849747206;86,0.0005804159545681122;87,0.0005372449797051912;88,0.000518830556148971;89,0.0005035871964679912;90,0.00046987378053122553;91,0.0004267028056683045;92,0.00039777380189418216;93,0.00038314240190842413;94,0.0003638934878587196;95,0.00033846934415723135;96,0.0003058129495122125;97,0.00030269751833653775;98,0.00030742629779961545;99,0.0002996933525599943;100,0.00029179350922167626;101,0.0002819465213985616;102,0.0002746586377554654;103,0.00026536797692800683;104,0.00026453348643452255;105,0.00025780192978708255;106,0.00024884506515701773;107,0.0002455071031830805;108,0.00024394938759524318;109,0.00023705093284910633;110,0.00023148766289254435;111,0.00022264206366161076;112,0.0002115711564480524;113,0.0001961608986683757;114,0.0001937130598874884;115,0.00018648080894395784;116,0.00017835843480737737;117,0.00017184940895819984;118,0.0001595545823541978;119,0.00015660604927721997;120,0.0001460914690593178;121,0.00013301778466139714;122,0.00013468676564836574;123,0.0001346311329488001;124,0.00012812210709962256;125,0.00011961030406608275;126,0.00011143229722993664;127,0.00009969379762159083;128,0.00008634194972584207;129,0.00008072304706971444;130,0.00008027798547318948;131,0.00006497899309264402;132,0.00005546580146692302;133,0.000052350370291248305;134,0.00004389419995727408;135,0.00003894288969593392;136,0.00003337961973937193;137,0.0000282614113793349;138,0.000026091736096275728;139,0.000021029160435804315;140,0.000016689809869685965;141,0.00000901249732963042;142,0.000007009720145268104;143,0.000002447838780887275;144,0.00000022253079826247955;", + "silktouch": false, + "dim": "mythicbotany:alfheim" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000233624065503738;46,0.000013794944820220718;47,0.000028646760412958352;48,0.00004683606265574938;49,0.00006741723033107868;50,0.0000911133855464578;51,0.00010641019935920257;52,0.00012554512281950873;53,0.00013989631541473836;54,0.00015447000711997153;55,0.0001762192951228195;56,0.00020358668565325738;57,0.00023095407618369527;58,0.00024664026343894623;59,0.0002562633499466003;60,0.00027228328586685656;61,0.00030832814168743324;62,0.00033185742257030976;63,0.000335751156995372;64,0.00034487362050551794;65,0.00032223433606265575;66,0.0002925307048771805;67,0.0002475302598789605;68,0.0002080922926308295;69,0.00016776432894268422;70,0.00011742390530437879;71,0.000058628515485938056;72,0.00000011124955500178003;73,0;74,0;75,0.00000016687433250266996;76,0.00000027812388750444997;77,0.000000055624777500889984;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0.0004486138305446779;2,0.000572935208259167;3,0.0006921391064435743;4,0.0008250266998932004;5,0.0009546880562477751;6,0.0010804000533997864;7,0.001163447846208615;8,0.0013205322178711284;9,0.0014041918832324671;10,0.0015289582591669635;11,0.0017283174617301533;12,0.002026633143467426;13,0.0023102638839444644;14,0.0025304267532929867;15,0.002634723211107156;16,0.0027764551441794233;17,0.0029211351904592383;18,0.003110537557849769;19,0.0032467070131719476;20,0.0033820977216091133;21,0.003492679779280883;22,0.0035985893556425776;23,0.00372435697757209;24,0.003852238341046636;25,0.004000367123531506;26,0.004094817995728017;27,0.004274931025275899;28,0.004390741812032752;29,0.004559618636525454;30,0.004698402456390175;31,0.004801530793876825;32,0.004876735493058028;33,0.0050394935920256324;34,0.005120205144179424;35,0.005343983624065504;36,0.0054776499644001424;37,0.005606699448202207;38,0.005746317639729442;39,0.0058173504805980785;40,0.005879483357066572;41,0.005897005161979352;42,0.005795879316482734;43,0.00571310964756141;44,0.005559251512993948;45,0.00542936765752937;46,0.0052249466002136;47,0.005080489053043789;48,0.004886302954788181;49,0.004777834638661446;50,0.004665750711997152;51,0.004514785065859736;52,0.004423393556425775;53,0.004263583570665717;54,0.004105497953008188;55,0.003889562566749733;56,0.0037624599501601998;57,0.0037150120149519405;58,0.0035739475792096833;59,0.0033950582947668206;60,0.00326434006763973;61,0.0031470274118903527;62,0.003003181737273051;63,0.002835361783552866;64,0.0026508543965824134;65,0.0022162023851904594;66,0.001789560341758633;67,0.00138500133499466;68,0.001062433250266999;69,0.0007256808472766109;70,0.00044650008899964404;71,0.00020653479886080457;72,0.00000022249911000356;73,0.00000016687433250266998;74,0;75,0;76,0;77,0;78,0;79,0.000000055624777500889984;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forbidden_arcanus:xpetrified_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0.00030832814168743324;57,0.0006372374510501959;58,0.0006424661801352795;59,0.0006380718227127092;60,0.0006484736561053756;61,0.0006493636525453897;62,0.0006357912068351727;63,0.0006288381096475614;64,0.0006183806514773941;65,0.00054000533997864;66,0.0004627981488074048;67,0.00039699403702385193;68,0.000313000622997508;69,0.00023317906728373089;70,0.00015547125311498756;71,0.0000789871840512638;72,0.0000007787468850124599;73,0.00000066749733001068;74,0.00000105687077251691;75,0.0000007231221075115699;76,0.0000013349946600213599;77,0.0000012237451050195803;78,0.0000015018689925240298;79,0.00000139061943752225;80,0.00000183561765752937;81,0.0000015018689925240302;82,0.00000177999288002848;83,0.0000014462442150231399;84,0.0000011124955500177999;85,0.00000150186899252403;86,0.0000015574937700249199;87,0.00000083437166251335;88,0.0000012237451050195799;89,0.00000061187255250979;90,0.0000016687433250267;91,0.00000194686721253115;92,0.0000015574937700249199;93,0.00000211374154503382;94,0.00000155749377002492;95,0.00000161311854752581;96,0.0000013349946600213597;97,0.00000150186899252403;98,0.00000083437166251335;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "gobber2:gobber2_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0.00000005562477750088999;9,0.00000016687433250267;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000022249911000355996;25,0.00000044499822000712;26,0.00000027812388750444997;27,0.00000083437166251335;28,0.00000038937344250623;29,0.0000003493931336774653;30,0.0000012863229797080811;31,0.0000010568707725169102;32,0.000000917808828764685;33,0.0000021832725169099325;34,0.000001738274296902812;35,0.0000012932760768956925;36,0.0000016826495194019226;37,0.0000026247941883232468;38,0.0000027325671947312208;39,0.000002583075605197579;40,0.0000022771393289426843;41,0.0000026456534798860806;42,0.0000025344039248843008;43,0.0000033427014729441085;44,0.0000036069191660733357;45,0.0000026108879939480245;46,0.0000033948497018511934;47,0.0000034522127536489854;48,0.0000024805174216803134;49,0.000003619087086151655;50,0.0000037146921724813097;51,0.000004383927776788893;52,0.0000035252202741189033;53,0.0000026734658686365255;54,0.0000017695632342470632;55,0.0000028351253782484874;56,0.0000021519835795656818;57,0.000002760379583481666;58,0.0000029620194019223924;59,0.0000013593305001779995;60,0.0000020894057048771808;61,0.0000023866506096475616;62,0.0000012376512993948026;63,0.0000019885857956568174;64,0.000004263986850302599;65,0.000003918070265218939;66,0.000004166643489676041;67,0.00000189124243503026;68,0.000003205377803488786;69,0.000002603934896760413;70,0.000002082452607689569;71,0.0000018269262860448562;72,0.0000026439152055891777;73,0.0000024666112273050907;74,0.0000018512621262014952;75,0.0000013123970941616234;76,0.0000016896026165895337;77,0.0000015157751868992527;78,0.0000006188256496974013;79,0.0000015835678844784622;80,0.00000139061943752225;81,0.0000008934729886080456;82,0.0000006118725525097899;83,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.0000005788453408686365;55,0;56,0.0000005788453408686365;57,0;58,0.0000005788453408686365;59,0;60,0.0000005788453408686365;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.000002248240518756675;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0.000006473121531018939;110,0.000007045013774699964;111,0.0000028594612184051266;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0.000018490698524696457;132,0.00006779922792388703;133,0.00004930852939919056;134,0.000018490698524696457;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0.0001797792808828765;2,0.00022845096119615522;3,0.000292753203987184;4,0.00035288358846564613;5,0.00041112273050907796;6,0.0004963955144179423;7,0.0005568596475614097;8,0.0006092581879672482;9,0.0006665517087931648;10,0.0007277389640441439;11,0.0007930424528301886;12,0.0009057938768244928;13,0.001031617123531506;14,0.0011002024741901034;15,0.001157551619793521;16,0.0011951539693841225;17,0.0012391531683873269;18,0.0012664093093627624;19,0.0013343827874688502;20,0.001400409398362407;21,0.001457869793520826;22,0.0015243414026343896;23,0.0016368147027411893;24,0.0017038981844072626;25,0.0017534598611605554;26,0.0017931759522961906;27,0.0018772249911000356;28,0.00197373398006408;29,0.0020570598967604133;30,0.0020802554289782844;31,0.002079866055535778;32,0.002102894713421146;33,0.002224824225703097;34,0.0023011414204343185;35,0.0023358512815948736;36,0.0023706167675329294;37,0.0024249065503737983;38,0.0024749688501245998;39,0.0025078430936276257;40,0.0025478929334282665;41,0.002609636436454254;42,0.0026567506229975084;43,0.0027668320576717696;44,0.002863674795300819;45,0.0029103996084015663;46,0.0029677487540049844;47,0.002993892399430402;48,0.003014918565325739;49,0.003027712264150944;50,0.0029958392666429336;51,0.0029903324136703454;52,0.0029383788714845145;53,0.0028739097543609825;54,0.002783185742257031;55,0.002713432271270915;56,0.0026083570665717338;57,0.0025884433962264156;58,0.002521804912780349;59,0.002448324581701674;60,0.0024147828408686367;61,0.0024115566037735854;62,0.0023001957992168035;63,0.0021661400854396584;64,0.0020687411000356003;65,0.001776321644713421;66,0.001486739053043788;67,0.0012083926664293342;68,0.0009357200071199715;69,0.0006675529547881809;70,0.0004269201673193307;71,0.00020942728729085087;72,0;73,0;74,0;75,0.000000055624777500889984;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0.000874310252758989;2,0.0009663692595229618;3,0.0010811788002847988;4,0.0011710684407262371;5,0.0012167363830544679;6,0.001294110448558206;7,0.0014060275008899964;8,0.0015208926664293343;9,0.0016206278924884303;10,0.0016691326984692063;11,0.00180124154503382;12,0.002039927465290139;13,0.002288625845496618;14,0.002470073869704521;15,0.002579320932716269;16,0.0026848967604129587;17,0.002819008098967604;18,0.0028903190637237447;19,0.0029355420078319688;20,0.0030296035065859733;21,0.0031317305980776075;22,0.0032657863118547526;23,0.0033431047525809897;24,0.0034000645247419014;25,0.0034474568351726595;26,0.003558428266286935;27,0.0036727928088287646;28,0.003825927821288715;29,0.003895236294054824;30,0.003970552242791029;31,0.004069230598077608;32,0.004074181203275187;33,0.004007820843716626;34,0.004004149608401566;35,0.003967937878248487;36,0.0038707613919544324;37,0.003695543342826629;38,0.003576784442862228;39,0.003432271270914917;40,0.0032815837486650057;41,0.0031672192061231756;42,0.0031145981666073335;43,0.003069542096831613;44,0.002897160911356355;45,0.0027698357956568173;46,0.0026630918476326097;47,0.0025721453364186547;48,0.0024810875756496975;49,0.0024097209861160557;50,0.0022955789426842297;51,0.0021977905838376647;52,0.0020908797614809537;53,0.0020214044143823428;54,0.0019028123887504448;55,0.0017950671947312212;56,0.0016446577963688145;57,0.001560441883232467;58,0.0014778947134211464;59,0.0014291117835528659;60,0.0013033997864008546;61,0.0011831946422214312;62,0.0011005362228551085;63,0.000980998576005696;64,0.0008766464934140263;65,0.0006957547169811322;66,0.0005114698291206835;67,0.00037557849768600927;68,0.00027389640441438233;69,0.00020703542185831258;70,0.00013928444286222857;71,0.00006663848344606621;72,0.00000005562477750089;73,0;74,0.00000022249911000356;75,0.00000022249911000356;76,0;77,0;78,0;79,0;80,0;81,0.00000005562477750089;82,0.00000005562477750089;83,0;84,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forbidden_arcanus:runic_stone", + "distrib": "0,0;1,0.00005879538981844073;2,0.00006441349234603063;3,0.00006480286578853685;4,0.00006129850480598078;5,0.000059129138483446074;6,0.00005901788892844428;7,0.000059741011035955864;8,0.00006013038447846209;9,0.000057071021715913135;10,0.00005996351014595943;11,0.00006129850480598078;12,0.00006268912424350303;13,0.00007659531861872553;14,0.00007531594873620506;15,0.00007014284442862229;16,0.00007475970096119616;17,0.00006914159843360627;18,0.00007481532573869705;19,0.00006736160555357779;20,0.00006986472054111784;21,0.00007108846564613742;22,0.00007092159131363476;23,0.00006713910644357422;24,0.0000700872196511214;25,0.00007047659309362763;26,0.00006925284798860805;27,0.00007203408686365255;28,0.00007042096831612674;29,0.00006964222143111427;30,0.00006502536489854042;31,0.0000678622285510858;32,0.00006585973656105376;33,0.00006524786400854397;34,0.00006474724101103595;35,0.00007297970808116768;36,0.0000711440904236383;37,0.00006574848700605198;38,0.00006747285510857957;39,0.0000679178533285867;40,0.00006886347454610182;41,0.00006613786044855821;42,0.00006719473122107513;43,0.00007192283730865077;44,0.00006647160911356354;45,0.00006708348166607334;46,0.0000639684941260235;47,0.00006680535777856889;48,0.00006491411534353863;49,0.00007069909220363117;50,0.00006802910288358847;51,0.00006441349234603063;52,0.00006613786044855821;53,0.00006769535421858312;54,0.00006836285154859381;55,0.00006513661445354219;56,0.0000661934852260591;57,0.00006819597721609115;58,0.00006947534709861161;59,0.00006797347810608758;60,0.00006608223567105732;61,0.0000694753470986116;62,0.00006658285866856534;63,0.00006758410466358136;64,0.00006608223567105732;65,0.00002569864720541118;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.0002657195621217515;2,0.00034337175151299395;3,0.00041790895336418657;4,0.0004924461552153792;5,0.0005639796190815237;6,0.0006424105553577786;7,0.0007187833748665007;8,0.0007766331434674262;9,0.0008495572267710929;10,0.0009131363474546103;11,0.0009968516375934496;12,0.001168620950516198;13,0.0013791051085795657;14,0.0014825115699537202;15,0.0015425863296546815;16,0.0016394846920612318;17,0.001701617568529726;18,0.0018187077251690994;19,0.0019211129405482378;20,0.0019896982912068354;21,0.002040539337842649;22,0.0021503426486294054;23,0.002224546101815593;24,0.0022783352616589534;25,0.0023484781060875756;26,0.0024400921146315417;27,0.002527367390530438;28,0.0025930602527589885;29,0.002660254983980064;30,0.002731510323958704;31,0.002860114809540762;32,0.0028597810608757563;33,0.0029317038981844074;34,0.0030530215379138484;35,0.0031262793698825205;36,0.003176564168743325;37,0.003252269490922037;38,0.0033125111249555;39,0.003405460128159488;40,0.003443229352082592;41,0.003454854930580278;42,0.003597421235315059;43,0.003714177643289427;44,0.003768411801352795;45,0.00382998843004628;46,0.003932059896760414;47,0.004050818796724813;48,0.004049706301174797;49,0.0041120616767532925;50,0.004207680669277323;51,0.004309529636881453;52,0.004433851014595942;53,0.004481910822356711;54,0.004516676308294767;55,0.004573747330010681;56,0.004553333036667854;57,0.00476687655749377;58,0.004901711018155928;59,0.0049487139551441794;60,0.004990710662157351;61,0.005069308472766109;62,0.005139729441082236;63,0.005088443396226416;64,0.004938534620861516;65,0.004278379761480955;66,0.0035802888038447846;67,0.0029436076005695975;68,0.002319886970452118;69,0.0017195843716625134;70,0.0011234536311854754;71,0.0005578052687789249;72,0.0000005006229975080099;73,0.0000008343716625133501;74,0.00000038937344250623;75,0.00000016687433250267;76,0.00000022249911000356001;77,0.00000027812388750445;78,0.00000027812388750445;79,0.00000027812388750445;80,0.00000022249911000356;81,0.0000003337486650053399;82,0.0000003893734425062299;83,0.00000044499822000712;84,0;85,0;86,0.00000005562477750089;87,0.00000044499822000712003;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0.0002279503381986472;2,0.0011931514773940903;3,0.0021594094873620506;4,0.0023394112673549303;5,0.00235125934496262;6,0.0023488118547525813;7,0.002313156372374511;8,0.002283341491634034;9,0.0022777233891064434;10,0.0022757208971164117;11,0.0023374644001423993;12,0.002539882965468138;13,0.0027780126379494483;14,0.002866789782840869;15,0.002830244304022784;16,0.002785188234247063;17,0.0027722832858668566;18,0.0027889707191171235;19,0.0028017644179423283;20,0.002765052064791741;21,0.002703809184763261;22,0.0027149897650409396;23,0.00270314168743325;24,0.002627102616589534;25,0.0026334994660021363;26,0.002653413136347455;27,0.0026570287468850127;28,0.002666151210395158;29,0.0026792230331078677;30,0.002636058205767177;31,0.002589444642221431;32,0.002561187255250979;33,0.0025592403880384477;34,0.002600235849056604;35,0.002602850213599146;36,0.0025693640975436097;37,0.0025609091313634745;38,0.002561354129583482;39,0.002507064346742613;40,0.0024736338554645783;41,0.002521304289782841;42,0.002521638038447846;43,0.0025372129761480956;44,0.0025274786400854396;45,0.002531316749733001;46,0.002516298059807761;47,0.0024832013171947314;48,0.002487651299394802;49,0.002467014506941973;50,0.0024898206657173374;51,0.0024937700249199005;52,0.0025014462442150233;53,0.0025129049483802067;54,0.0024907662869348528;55,0.002482700694197223;56,0.002424572801708793;57,0.0024595607867568528;58,0.002489431292274831;59,0.0025039493592025636;60,0.0025313723745105017;61,0.0024870394268422928;62,0.002475469473122108;63,0.002461173905304379;64,0.002412446600213599;65,0.0021283152367390533;66,0.0018387882698469205;67,0.001528680135279459;68,0.0012052776788892845;69,0.0009059051263794946;70,0.0005793876824492702;71,0.0002986494304022784;72,0.00000033374866500534;73,0.00000005562477750089;74,0.00000005562477750089;75,0.00000011124955500178001;76,0.00000011124955500178;77,0.00000033374866500534;78,0;79,0.00000011124955500177997;80,0.00000011124955500177997;81,0.00000022249911000355996;82,0.00000044499822000712;83,0.00000022249911000355996;84,0.00000038937344250622997;85,0.00000016687433250266998;86,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000027812388750445;50,0.00000005562477750089001;51,0;52,0.0000003893734425062301;53,0.00000039632653969384126;54,0.0000008969495372018512;55,0.0000013975725347098613;56,0.0000012793698825204702;57,0.00000038937344250623;58,0.0000005632008721965113;59,0.00000039980308828764683;60,0.00000033374866500533997;61,0.000001029058383766465;62,0.0000009525743147027412;63,0.00000322623709505162;64,0.00020456707235671058;65,0.00022600694753470988;66,0.00023743783931114273;67,0.0002520567261480954;68,0.0002715566872107512;69,0.0002857496968449626;70,0.000297029358757565;71,0.0003029742568529726;72,0.00030655510190459237;73,0.00032817923415806344;74,0.0003459270147294411;75,0.0003548791273584905;76,0.00036305249310252766;77,0.0003529287835973656;78,0.0003533355397828409;79,0.00034699779169633326;80,0.0003365855286578854;81,0.0003588562989498042;82,0.00038141562277500894;83,0.00039648646092915626;84,0.0003974911834727661;85,0.00039793270514417947;86,0.0003990486772427911;87,0.00037978512148451407;88,0.0003571806025275899;89,0.0003856500589622642;90,0.00039935809006763976;91,0.0004048753726860093;92,0.00041047956901922394;93,0.0004098572668209327;94,0.0004080216491634034;95,0.0003879132920968316;96,0.0003578828653435387;97,0.0003577716157885369;98,0.00035644357422570314;99,0.00033972832858668566;100,0.0003267642788803845;101,0.00030345749710751155;102,0.0002612417675329299;103,0.0002247727727839089;104,0.00019340387482200073;105,0.00019681436899252403;106,0.0001843092237006052;107,0.00018078052687789248;108,0.00016862303644535424;109,0.00014634878960484158;110,0.00012729035021359915;111,0.00010499872063011747;112,0.00008254369326272696;113,0.000037491100035599864;114,0.00001624243503025988;115,0.000008124694063723746;116,0.000011354407707369171;117,0.000012237451050195798;118,0.000015074314702741189;119,0.000012960573157707369;120,0.00000884433962264151;121,0.000009800390485938056;122,0.00001090245639017444;123,0.000012014951940192242;124,0.000015138630851726592;125,0.00001335689969740121;126,0.000015029119571021719;127,0.000014841385946956212;128,0.000016079037246351016;129,0.00001696555713777145;130,0.00002241678533285867;131,0.00003148362406550374;132,0.000035933606265574943;133,0.00003537735849056604;134,0.000025921146315414738;135,0.000019969295122819508;136,0.000010346208615165541;137,0.00000684184763260947;138,0.000007175596297614811;139,0.00000851059095763617;140,0.000009623086507653968;141,0.00000823246707013172;142,0.00000684184763260947;143,0.000004616856532573869;144,0.0000029481132075471697;145,0.00000233624065503738;146,0.0000024474902100391597;147,0.00000161311854752581;148,0.00000289248843004628;149,0.00000322623709505162;150,0.0000010568707725169098;151,0.0000010012459950160199;152,0.0000013906194375222498;153,0.0000007231221075115699;154,0.00000033374866500533997;155,0.00000038937344250622997;156,0.0000005006229975080099;157,0.00000038937344250622997;158,0.0000006118725525097899;159,0.00000027812388750444997;160,0.00000033374866500533997;161,0.00000005562477750089;162,0.00000038937344250622997;163,0.00000022249911000355996;164,0.0000007787468850124599;165,0.0000007787468850124599;166,0.0000003337486650053401;167,0.00000011124955500178;168,0;169,0;170,0;171,0.00000016687433250266998;172,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:ruby_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0.000024561579493957703;40,0.000024561579493957703;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0.000003791647735319109;53,0.000003791647735319109;54,0.00004912315898791541;55,0;56,0;57,0;58,0;59,0;60,0;61,0.000044425664711574766;62,0.000044425664711574766;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0.00040528212887148453;2,0.0005017354930580278;3,0.000613374421502314;4,0.0007481532573869706;5,0.0008776477394090424;6,0.0009858935564257742;7,0.0010793988074047703;8,0.001173182182271271;9,0.0012622930758276966;10,0.0013865032039871842;11,0.0015986561053755784;12,0.0018853462086151655;13,0.0021567394980420078;14,0.0023321244215023145;15,0.002507119971520114;16,0.002658252491990032;17,0.0027446933962264153;18,0.002816504983980064;19,0.00291501646493414;20,0.003052131541473834;21,0.003212553399786401;22,0.0033857133321466715;23,0.003509756585973656;24,0.003562377625489498;25,0.0036350792096831613;26,0.0037789805090779637;27,0.003966269134923461;28,0.00412001601993592;29,0.004297403435386258;30,0.004437188501245994;31,0.004563957369170524;32,0.004648673905304379;33,0.004785900231399074;34,0.004918398451406195;35,0.005001613118547526;36,0.005102794588821645;37,0.005245249644001425;38,0.005429478907084373;39,0.005611761302954788;40,0.00561370817016732;41,0.005668776699893201;42,0.005822857333570667;43,0.005961363029547882;44,0.006184529636881453;45,0.006257008721965112;46,0.006344673371306514;47,0.006426831167675329;48,0.006492134656461375;49,0.006652055891776433;50,0.006762804823780705;51,0.006873331256674973;52,0.00709310475258099;53,0.00735059184763261;54,0.007506063100747597;55,0.007485648807404772;56,0.007438534620861517;57,0.0076467937878248494;58,0.00773812967248131;59,0.007700471698113208;60,0.007609858935564259;61,0.0075334304912780346;62,0.0073519824670701325;63,0.00711502091491634;64,0.006821266464934141;65,0.005929656906372376;66,0.005029703631185475;67,0.0041304178533285866;68,0.0032143890174439306;69,0.002351481844072624;70,0.0015420857066571734;71,0.00075499510501958;72,0.0000010012459950160199;73,0.00000027812388750444997;74,0.00000005562477750089;75,0.00000011124955500178001;76,0.00000088999644001424;77,0.0000011124955500178;78,0.0000005562477750089;79,0;80,0.00000005562477750088999;81,0;82,0;83,0;84,0;85,0.00000022249911000356004;86,0.00000022249911000356004;87,0;88,0;89,0.00000005562477750089001;90,0.00000011124955500178002;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0.00000011124955500178001;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000005562477750089;25,0.00000016687433250266998;26,0.00000033374866500533997;27,0.00000005562477750088999;28,0.00000022249911000355996;29,0;30,0.00000011124955500177998;31,0.0000003337486650053399;32,0.00000005562477750089;33,0.0000010012459950160203;34,0.0000025587397650409404;35,0.00000266998932004272;36,0.00000161311854752581;37,0.0000017756471942862233;38,0.0000011846339333392668;39,0.00000077874688501246;40,0.00000205811676753293;41,0.0000033444397472410114;42,0.0000029107403101637593;43,0.00000344873620505518;44,0.000004124924906550374;45,0.000002563085450783197;46,0.000004964511391954433;47,0.0000049106248887504455;48,0.000003653852572089712;49,0.000004582091046635814;50,0.000005753687922748309;51,0.000006912247741634033;52,0.00000866529737006052;53,0.000009983778424261304;54,0.000006636731265574938;55,0.0000037372897383410473;56,0.00000634730859514062;57,0.00000750239186543254;58,0.000007003507142221432;59,0.000005263494571021716;60,0.000006285599857600569;61,0.000004870644579921681;62,0.000003372252135991456;63,0.000003622563634745461;64,0.000009699570576717692;65,0.000013298667508454967;66,0.0000108459624755251;67,0.00000813860025809897;68,0.000009225021693663227;69,0.00000835588454521182;70,0.000008051686543253826;71,0.00001047657918743325;72,0.000010609557171146315;73,0.00000928846870550018;74,0.000011061508488341048;75,0.000009610049450427198;76,0.0000085297119749021;77,0.000010093289704966183;78,0.000012112295300818797;79,0.000009942059841135635;80,0.00001076600185786757;81,0.000012452997063011746;82,0.00001198540127714489;83,0.000010640846108490567;84,0.00001098937010501958;85,0.000012178349724101103;86,0.000011962803711285155;87,0.00001219486332992168;88,0.000013000553466536134;89,0.000012930153357511572;90,0.000011270970541117836;91,0.000009399718260501957;92,0.000008773070376468495;93,0.000010610426308294769;94,0.000009410147906283375;95,0.000008927776788892845;96,0.000006770578386436454;97,0.000003996292608579566;98,0.000003579106777322891;99,0.00000313932338020648;100,0.000004234436187255251;101,0.000005713707613919545;102,0.00000415360643244927;103,0.0000032001629805980775;104,0.0000024474902100391597;105,0.00000083437166251335;106,0.0000006744504271982912;107,0.0000006814035243859025;108,0.0000007370283018867924;109,0.0000007787468850124602;110,0.00000022249911000356001;111,0;112,0.00000011559524074403703;113,0.00000016687433250267;114,0.0000005006229975080099;115,0.0000008030827251690994;116,0.0000004102327340690638;117,0.00000017382742969028125;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mekanism:fluorite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000027812388750444997;25,0.00000005562477750089;26,0.0000005136600547347812;27,0.0000001799113897294411;28,0.00000016687433250267004;29,0.00000011124955500178001;30,0.00000011124955500178001;31,0.0000007578875934496262;32,0.000002028566104485582;33,0.0000016165950961196156;34,0.0000013506391286934857;35,0.0000009682187833748667;36,0.0000005910132609469561;37,0.0000013349946600213599;38,0.0000012089697734959062;39,0.0000010959819441972233;40,0.00000139061943752225;41,0.0000016930791651833395;42,0.0000013967033975614097;43,0.0000020720229619081523;44,0.000002024220418743325;45,0.0000009499669032573869;46,0.0000006674973300106798;47,0.0000008413247597009614;48,0.0000019503437611249556;49,0.0000011003276299394803;50,0.00000133499466002136;51,0.0000015766147872908508;52,0.0000019816326984692063;53,0.0000009039026343894625;54,0.0000015644468672125312;55,0.0000007370283018867925;56,0.0000012698093738875043;57,0.0000007022628159487362;58,0.0000011959327162691351;59,0.0000009699570576717693;60,0.0000016826495194019226;61,0.0000013558539515841937;62,0.000001125532607244571;63,0.0000008665297370060521;64,0.0000012958834883410468;65,0.0000006718430157529371;66,0.0000010638238697045213;67,0.0000009664805090779638;68,0.0000007987370394268423;69,0.0000007535419077073692;70,0.00000044499822000712;71,0.0000003928499911000356;72,0.00000038937344250623;73,0.0000006153491011035955;74,0.0000007822234336062656;75,0.0000009577891375934498;76,0.0000009204162402100392;77,0.0000008091666852082592;78,0.0000008465395825916697;79,0.0000011455227616589533;80,0.0000011837647961908151;81,0.0000012532957680669277;82,0.0000009525743147027413;83,0.0000013697601459594162;84,0.0000010290583837664648;85,0.0000014123478662335352;86,0.000000802213588020648;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0.00000011124955500178002;23,0.0000003893734425062301;24,0.00000027812388750445007;25,0.00000033374866500533997;26,0.00000027812388750445007;27,0;28,0;29,0.00000011124955500178;30,0.00000050062299750801;31,0.00000083437166251335;32,0.00000083437166251335;33,0.00000139061943752225;34,0.0000006674973300106798;35,0.0000005006229975080098;36,0.0000002781238875044499;37,0.00000016687433250267;38,0.00000044499822000712;39,0.00000038937344250622997;40,0.0000006553294099323602;41,0.0000008865198914204343;42,0.0000011350931158775368;43,0.0000009595274118903524;44,0.000000731813478996084;45,0.00000033374866500533997;46,0;47,0;48,0;49,0;50,0.00000022249911000356;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00000005562477750089;62,0.00000044499822000712;63,0.00000033374866500533997;64,0.00000061187255250979;65,0.0000004658575115699538;66,0.0000004870191117061619;67,0.00000006257787468850124;68,0.00000022945220719117125;69,0.00000011124955500178001;70,0.00000011124955500178002;71,0.00000030482781148585557;72,0.0000003441783107867568;73,0.0000010303180028221916;74,0.0000005910132609469562;75,0.0000004728106087575649;76,0.000000288553533285867;77,0.00000019005132312804085;78,0.000000194686721253115;79,0.00000022249911000356;80,0.00000018773362406550372;81,0.00000005562477750088999;82,0.00000016687433250267;83,0;84,0.00000008343716625133499;85,0.00000022249911000356001;86,0.00000006257787468850124;87,0.0000002398818529725881;88,0;89,0.00000005562477750089002;90,0.00000017382742969028125;91,0.00000022249911000356004;92,0.00000042587720274118894;93,0.0000006935714444642222;94,0.0000012863229797080813;95,0.0000008691371484514061;96,0.0000008552309540761838;97,0.0000006257787468850123;98,0.000001575506322521811;99,0.0000010725152411890353;100,0.0000009247619259522961;101,0.0000010725152411890353;102,0.0000006657590557137772;103,0.00000031795304204652745;104,0.000000891322189070392;105,0.000001140307938768245;106,0.0000009664805090779636;107,0.00000017382742969028125;108,0.00000006257787468850125;109,0;110,0.00000006257787468850125;111,0.000000083437166251335;112,0.00000027580618844191294;113,0.00000017382742969028125;114,0.0000013112382446303548;115,0.0000011883246171725456;116,0.0000014578327103358252;117,0.000000834799932992297;118,0.0000012062867849072082;119,0.0000013448448810371427;120,0.0000013836663403346384;121,0.000001422487799632135;122,0.0000014610069503562566;123,0.0000011072807271270916;124,0.000002231364772457577;125,0.0000015719793891657767;126,0.0000027005476783346493;127,0.0000010615061706419841;128,0.0000004357274237569717;129,0;130,0.000000059101326094695616;131,0.00000008232870148229554;132,0.00000031319168201588057;133,0.00000023489376151191047;134,0.00000007829792050397014;135,0;136,0.00000016687433250266998;137,0.00000016687433250266998;138,0.00000005562477750089001;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0.00000005910132609469563;157,0;158,0;159,0;160,0;161,0.00000015659584100794029;162,0;163,0.00000007829792050397014;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0.000000083437166251335;178,0;179,0.000000055624777500890004;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.0000008978492759063412;28,0.0000035913971036253646;29,0.0000008978492759063412;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0.000001878709764451952;40,0.000003757419528903904;41,0;42,0;43,0.000026576338566827695;44,0.000006644084641706924;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.0000023101928780731846;55,0;56,0.0000023101928780731846;57,0.000006930578634219554;58,0.0000023101928780731846;59,0.0000023101928780731846;60,0;61,0;62,0.000006930578634219554;63,0;64,0;65,0.0000015045043875518154;66,0.0000015045043875518154;67,0.0000015045043875518154;68,0.0000030090087751036307;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0.0001674862050551798;2,0.00020430980776076898;3,0.0002572645959416162;4,0.0003227905838376647;5,0.0003776366144535422;6,0.00041740833036667854;7,0.0004522850658597366;8,0.0005084660911356354;9,0.0005624777500889996;10,0.0005956857422570311;11,0.0006604886080455678;12,0.0007635613207547171;13,0.0008980620327518691;14,0.000999243503025988;15,0.0010412958348166607;16,0.0010504182983268068;17,0.0010696644713421148;18,0.001131686098255607;19,0.0012043876824492702;20,0.00125750934496262;21,0.0012845429868280525;22,0.0013522383410466358;23,0.0014328942684229263;24,0.0014722766108935565;25,0.0015161645603417586;26,0.0015363007297970808;27,0.0015707324670701317;28,0.0016137304200783196;29,0.00162123976504094;30,0.0016573958704165185;31,0.001705789426842293;32,0.001763806069775721;33,0.0018377870238519044;34,0.0018822312210751157;35,0.0019174417052331791;36,0.001953931559273763;37,0.0019873064257742968;38,0.0020610092559629764;39,0.002137827073691705;40,0.00216563946244215;41,0.002271660288358847;42,0.0022907952118191533;43,0.002332346920612318;44,0.002412001601993592;45,0.0025284798860804557;46,0.0025535110359558564;47,0.002536823602705589;48,0.0025701984692061233;49,0.002625990121039516;50,0.002625044499822001;51,0.0026818930224279105;52,0.002770503292986828;53,0.002840534887860449;54,0.002866567283730865;55,0.002876023495906016;56,0.0028358067817728727;57,0.0028344717871128513;58,0.002886202830188679;59,0.002996173015307939;60,0.0031161000355998574;61,0.003167997953008188;62,0.0032171146315414737;63,0.003242145781416874;64,0.003301052420790317;65,0.00294811320754717;66,0.0025312611249555;67,0.0020948847454610184;68,0.0016764195443218228;69,0.0013199203453186188;70,0.0008891620683517266;71,0.0004562344250622997;72,0.00000005562477750089;73,0.00000016687433250266998;74,0.0000004449982200071199;75,0.0000006674973300106799;76,0.0000007231221075115698;77,0.0000006674973300106799;78,0.0000005006229975080098;79,0.000000055624777500889984;80,0.00000044499822000712;81,0.00000027812388750444997;82,0;83,0;84,0;85,0.00000005562477750089001;86,0.00000011124955500178002;87,0;88,0.00000005562477750088999;89,0;90,0;91,0;92,0;93,0.00000005562477750089;94,0;95,0.00000005562477750089;96,0.00000011124955500177998;97,0.00000027812388750444997;98,0.00000022249911000356;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0.00000011124955500178002;110,0.00000005562477750089001;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0.00000011124955500178;127,0.00000016687433250266998;128,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.00000005562477750088999;27,0.00000022249911000355996;28,0.00000005562477750089;29,0;30,0.00000011124955500178003;31,0;32,0.00000011124955500177998;33,0.00000011124955500177998;34,0.00000022249911000356;35,0.00000016687433250267;36,0.00000011124955500178001;37,0.00000044499822000712;38,0.00000033374866500534;39,0.00000022249911000356;40,0;41,0.00000016687433250267;42,0.00000011124955500178;43,0.0000004589044143823425;44,0.00000044499822000712003;45,0.00000033374866500534;46,0.00000044499822000712003;47,0.0000005145291918832325;48,0.0000006188256496974013;49,0.00000039632653969384126;50,0.0000008482778568885727;51,0.0000009525743147027411;52,0.00000044499822000712003;53,0.0000007405048504805981;54,0.0000006987862673549308;55,0.0000006744504271982912;56,0.000001063823869704521;57,0.0000007474579476682093;58,0.0000011264017443930223;59,0.00000161311854752581;60,0.0000005075760946956213;61,0.0000007474579476682095;62,0.000001140307938768245;63,0.0000006744504271982913;64,0.000002221514551441794;65,0.0000035565092114631545;66,0.0000032140691749732998;67,0.0000019538203097187614;68,0.000002402295078319687;69,0.000001806066994482022;70,0.0000030767455055179783;71,0.0000022493269401922393;72,0.0000023657913180847278;73,0.000003287076695443218;74,0.000003876351682093272;75,0.0000031845185119259524;76,0.0000028681525898896406;77,0.0000030889134255962977;78,0.0000030802220541117833;79,0.00000331315080989676;80,0.0000037129538981844072;81,0.000004071038403346386;82,0.0000027117079031683874;83,0.0000039284999110003565;84,0.0000034209238163047342;85,0.000003486978239587042;86,0.000003827680001779992;87,0.0000034904547881808472;88,0.0000029342070131719474;89,0.0000037407662869348526;90,0.0000028090512637949453;91,0.0000032158074492702035;92,0.0000027534264862940546;93,0.0000029133477216091136;94,0.0000033235804556781767;95,0.0000023049517176931292;96,0.0000023779592381630476;97,0.0000016687433250267001;98,0.000001898195532217871;99,0.0000020024919900320397;100,0.0000011124955500178;101,0.0000018703831434674263;102,0.000001122925195799217;103,0.0000011785499733001069;104,0.0000005632008721965112;105,0.0000005632008721965113;106,0.0000007300752046991812;107,0.0000008413247597009612;108,0.0000006118725525097901;109,0.0000006153491011035957;110,0.0000005805836151655394;111,0.00000005562477750089;112,0.0000003372252135991456;113,0.00000005562477750089;114,0.00000011124955500177998;115,0.0000005040995461018155;116,0.0000005040995461018156;117,0.0000003928499911000356;118,0.00000061187255250979;119,0.0000005562477750088999;120,0.00000050062299750801;121,0.0000002850769846920612;122,0.00000066749733001068;123,0.0000009490977661089356;124,0.000001185503070487718;125,0.0000011194486472054112;126,0.00000033374866500533997;127,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0.00000038937344250623;113,0.00000016687433250267004;114,0;115,0;116,0.0000006535155584921137;117,0.000002968519036249942;118,0.0000028519286964518807;119,0.0000008569692283730864;120,0.0000014637781122788552;121,0.0000028032570161386024;122,0.0000030035868307613727;123,0.000002430019293736231;124,0.000007949128359736563;125,0.00000862234436026024;126,0.000006731668753805058;127,0.000008608488550647247;128,0.000007882456723116949;129,0.000007180282080502113;130,0.0000172523472043793;131,0.00001913221527933635;132,0.000026730199634907987;133,0.000026512978328747922;134,0.000020726275790549013;135,0.000015802072208377836;136,0.0000067539010301386334;137,0.000010120182571805946;138,0.000009019577825674205;139,0.000007221257488384902;140,0.000005570488927283423;141,0.000002877171462328644;142,0.000004705130635999195;143,0.000006674658395342868;144,0.000003628181535734002;145,0.000001955180698298946;146,0.0000011721007237347862;147,0.000002638901921747386;148,0.0000031623492165451623;149,0.000004117442769359357;150,0.0000022720504679575485;151,0.0000016386132372137182;152,0.0000004276154770380918;153,0.00000021025561278189664;154,0.0000003942103796802204;155,0.0000006378710898199885;156,0.0000008552309540761836;157,0.0000009977694464222143;158,0.0000017104619081523671;159,0.0000016235481933072267;160,0.0000005701539693841224;161,0.00000011124955500178;162,0.00000005562477750089;163,0;164,0.00000007829792050397014;165,0.00000031319168201588057;166,0;167,0;168,0.00000031319168201588057;169,0;170,0.0000005701539693841224;171,0;172,0.00000031319168201588057;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.0008458303666785333;2,0.0008701383944464223;3,0.0009164182093271627;4,0.0009485693307226771;5,0.000993625400498398;6,0.00103000400498398;7,0.0010478039337842651;8,0.0010980887326450695;9,0.001136747953008188;10,0.0011541028835884656;11,0.0012038870594517621;12,0.00124688501245995;13,0.0012835973656105378;14,0.0012185720007119973;15,0.0010040272338910645;16,0.0007836974902100392;17,0.0007647294410822356;18,0.0007900943396226415;19,0.0008135679957280172;20,0.0008644646671413314;21,0.0008810964756140976;22,0.0008957257920968316;23,0.0009448424706301174;24,0.0009964622641509433;25,0.001007809718761125;26,0.0010186009255962977;27,0.0010440214489142044;28,0.0010837931648273406;29,0.0011380829476682094;30,0.0011885902456390174;31,0.0011846408864364544;32,0.0011891464934140265;33,0.00124187878248487;34,0.0012826517443930224;35,0.001333437166251335;36,0.0013949581701673194;37,0.0013920100569597724;38,0.001425384923460306;39,0.001453364186543254;40,0.0014950827696689213;41,0.0015426975792096832;42,0.0015742924528301889;43,0.0015841380384478462;44,0.0016185141509433964;45,0.0016529458882164473;46,0.0016607333570665718;47,0.0016685208259166963;48,0.0016391509433962264;49,0.001606554823780705;50,0.0015684518511925954;51,0.0015349101103595587;52,0.00151749955500178;53,0.0014462998398006408;54,0.0014231043075827697;55,0.0013998531505873975;56,0.0013462308650765396;57,0.0013156928622285512;58,0.0012787023851904592;59,0.0012505562477750092;60,0.0012087820398718405;61,0.0011983802064791742;62,0.0011664515841936633;63,0.0011359692061231757;64,0.00110248309006764;65,0.000941560608757565;66,0.0007868124777500891;67,0.0006335105909576362;68,0.0004995661267354931;69,0.00036195042719829127;70,0.00023217782128871485;71,0.0001088576895692417;72,0;73,0;74,0.00000011124955500177998;75,0.00000027812388750444997;76,0;77,0;78,0;79,0.00000011124955500177997;80,0.00000011124955500177997;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0.00000005562477750089;26,0.00000011124955500178;27,0;28,0;29,0.00000005562477750089;30,0.00000017382742969028125;31,0.00000027812388750445;32,0.0000006674973300106799;33,0.00000038937344250622997;34,0.0000005562477750088999;35,0.00000044499822000712003;36,0.0000010151521893912425;37,0.0000011124955500178;38,0.0000007231221075115699;39,0.0000007231221075115699;40,0.00000033374866500533997;41,0.0000009456212175151299;42,0.0000006674973300106799;43,0.0000005562477750088999;44,0.0000011003276299394803;45,0.0000009595274118903524;46,0.00000105687077251691;47,0.0000010673004182983267;48,0.0000007996061765752938;49,0.0000008482778568885724;50,0.00000050062299750801;51,0.00000066749733001068;52,0.000001487962798148807;53,0.0000012446043965824137;54,0.00000105687077251691;55,0.0000011681203275186898;56,0.0000012237451050195799;57,0.0000008013444508721965;58,0.0000008048209994660021;59,0.0000011333548415806337;60,0.000000733551753292987;61,0.00000066749733001068;62,0.0000016756964222143115;63,0.0000018564769490922038;64,0.0000032653482667319333;65,0.000002242373843004628;66,0.0000026804189658241367;67,0.000002464872953008188;68,0.000001701770536667853;69,0.0000020659390018689926;70,0.0000023736135524207904;71,0.0000016391926619793523;72,0.000002077237784798861;73,0.000002683026377269491;74,0.0000022415047058561763;75,0.0000031445382030971876;76,0.0000034522127536489854;77,0.0000025257125533997863;78,0.0000023023443062477753;79,0.0000015800913358846564;80,0.000003832894824670701;81,0.000003785092281505874;82,0.000002588290428088288;83,0.00000427702390752937;84,0.000004272678221787112;85,0.00000418402623264507;86,0.000004262248576005697;87,0.000005253064925240299;88,0.0000034522127536489854;89,0.0000039684802198291204;90,0.000004834140819686721;91,0.000003944144379672482;92,0.0000045699231265574945;93,0.000004214446032840869;94,0.000004329172136436454;95,0.0000036503760234959062;96,0.0000024196778212887152;97,0.0000033844200560697757;98,0.0000035356499199003206;99,0.00000254657184496262;100,0.0000036434229263082947;101,0.0000028942267043431827;102,0.000002364053043787825;103,0.0000014810097009611964;104,0.000001771301508543966;105,0.0000017139384567461729;106,0.0000020998353506585977;107,0.0000020459488474546102;108,0.000001574876512993948;109,0.000001176811699003204;110,0.0000011281400186899252;111,0.0000010360114809540761;112,0.0000007483270848166608;113,0.00000088999644001424;114,0.000002409248175507298;115,0.0000028055747152011396;116,0.0000033696447245461015;117,0.000004383058639640441;118,0.0000050262201294944825;119,0.000004025843271626914;120,0.0000037929145158419363;121,0.0000029376835617657528;122,0.000002131993425151299;123,0.0000029907009278212887;124,0.0000038033441616233536;125,0.0000044656266687433254;126,0.000005366052754538982;127,0.000003898080110804557;128,0.0000031749580032929873;129,0.000004921054534531862;130,0.000008173365744037024;131,0.000013077906672748312;132,0.000012809343293876825;133,0.00001556103150587398;134,0.000011744650287023851;135,0.000010546979296457813;136,0.000004999276877892489;137,0.0000029724490477038093;138,0.0000041788114097543615;139,0.0000035217437255250984;140,0.0000022249911000356;141,0.000003619087086151655;142,0.0000024092481755072983;143,0.0000007822234336062656;144,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000043804512281950874;13,0.0000008760902456390175;14,0.0000007300752046991813;15,0.0000014601504093983626;16,0.000000584060163759345;17,0;18,0;19,0;20,0.00000043804512281950874;21,0.00000014601504093983625;22,0.00000025031149875400496;23,0.00000008343716625133499;24,0.0000008673988741545036;25,0.0000018669065948736207;26,0.0000016357161133855467;27,0.000000881305068529726;28,0.0000009212853773584906;29,0.0000007231221075115699;30,0.00000116812032751869;31,0.000001084683161267355;32,0.000000584060163759345;33,0.00000038937344250623;34,0.00000022249911000356;35,0.0000005006229975080099;36,0.000000584060163759345;37,0.0000007509344962620151;38,0.0000006674973300106799;39,0.00000005562477750089;40,0.0000008232467070131721;41,0.0000037046101815592743;42,0.000002235420745817017;43,0.000002528841447134212;44,0.000002469740121039516;45,0;46,0;47,0.000001960773406906372;48,0.0000015088220897116411;49,0.0000019955388928444286;50,0.000001425384923460306;51,0;52,0.00000005562477750089002;53,0.0000009873398006407976;54,0.00000200249199003204;55,0.0000025691694108223564;56,0.0000038137738074047706;57,0.0000014288614720541118;58,0.0000007370283018867923;59,0.00000005562477750089001;60,0.00000016687433250267;61,0.0000005006229975080099;62,0.0000007300752046991813;63,0.0000008899964400142398;64,0.000001119448647205411;65,0.0000013975725347098611;66,0.0000007092159131363474;67,0.00000033374866500533997;68,0.00000027812388750444997;69,0;70,0.00000033374866500533997;71,0.000000194686721253115;72,0.00000017730397828408687;73,0.00000044152167141331436;74,0.00000016324288817943744;75,0.00000027449244318121744;76,0.00000100124599501602;77,0.00000037230049099605595;78,0.0000009355013631925672;79,0.0000001738274296902812;80,0.00000011994092648629408;81,0.00000016687433250266998;82,0.000000055624777500890004;83,0.000000055624777500890004;84,0.0000002989831790672838;85,0.00000012689402367390534;86,0.00000006431614898540406;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0.00000027812388750444997;99,0.0000004449982200071199;100,0.00000038937344250622997;101,0.00000044499822000712003;102,0.0000006118725525097898;103,0.0000011959327162691347;104,0.0000011385696644713421;105,0.00000025900287023851904;106,0.00000033374866500533997;107,0.000000083437166251335;108,0.000000695309718761125;109,0.00000030593627625489497;110,0.0000007231221075115699;111,0.0000004728106087575649;112,0.00000022249911000356;113,0;114,0;115,0;116,0.0000002868152589889641;117,0.00000009560508632965468;118,0;119,0.00000008343716625133499;120,0.000000417185831256675;121,0.00000022249911000356;122,0.00000016687433250267;123,0.00000027812388750444997;124,0.00000005562477750088999;125,0.00000030593627625489497;126,0.00000011124955500177998;127,0.00000019468672125311499;128,0.00000005562477750088999;129,0.00000033374866500534;130,0.000000361561053755785;131,0;132,0.00000005562477750089;133,0.00000027812388750445;134,0.000000639684941260235;135,0.000000528435386258455;136,0.00000038937344250623;137,0.00000027812388750444997;138,0.00000016687433250267;139,0;140,0.00000016687433250266998;141,0.00000077874688501246;142,0.000000528435386258455;143,0.00000033374866500534;144,0.00000025031149875400496;145,0.00000008343716625133499;146,0.00000016687433250267;147,0.00000016687433250267;148,0;149,0.00000033374866500534;150,0.00000038937344250623;151,0.00000022249911000356;152,0;153,0;154,0.00000011124955500177998;155,0.00000011124955500177998;156,0;157,0.00000016687433250267;158,0;159,0.000000083437166251335;160,0.0000002781238875044499;161,0.00000022249911000355996;162,0.00000005562477750088999;163,0;164,0;165,0;166,0;167,0.00000011124955500177998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0.005872697134211463;2,0.005659097988608046;3,0.005553466536133856;4,0.005417575204699181;5,0.005192406105375578;6,0.004999110003559986;7,0.004824615076539694;8,0.004658686365254539;9,0.004527912513349946;10,0.004322935208259167;11,0.004148273406906372;12,0.003971164115343539;13,0.0038253159487362056;14,0.003672625934496262;15,0.0035456901922392313;16,0.003354507831968672;17,0.0032122752758988967;18,0.0030565258988964044;19,0.0028875378248487014;20,0.0027512014951940195;21,0.0025795434318262728;22,0.0024030460128159487;23,0.002259923460306159;24,0.002097109736561054;25,0.0019647783908864364;26,0.0018155927376290494;27,0.0016389284442862228;28,0.0014781172125311502;29,0.0013281528123887504;30,0.0011940970986116057;31,0.0010511414204343182;32,0.0009788848344606622;33,0.0009619192773228909;34,0.0009545211819152724;35,0.0009842804378782486;36,0.0010043609825560699;37,0.0009662023851904592;38,0.0009686498754004984;39,0.0009626980242079033;40,0.0009522961908152368;41,0.0009400031149875401;42,0.0009527968138127447;43,0.000965368013527946;44,0.0009500155749377003;45,0.0009383343716625134;46,0.0009632542719829121;47,0.000953686810252759;48,0.0009317150231399075;49,0.0009374443752224991;50,0.000933940014239943;51,0.0009459549661801354;52,0.0009415049839800641;53,0.0009563011747953009;54,0.0009394468672125311;55,0.0009369437522249911;56,0.0009484580811676753;57,0.0009549661801352795;58,0.0009498487006051977;59,0.0009491255784976862;60,0.0009377224991100035;61,0.0009417831078675686;62,0.0009255406728373087;63,0.0009403368636525455;64,0.0009062388750444997;65,0.000785310608757565;66,0.0006804022783908864;67,0.00056436899252403;68,0.00046457814168743327;69,0.0003374199003203988;70,0.00022589222143111427;71,0.0001167564079743681;72,0.00000011124955500177997;73,0.000000055624777500890004;74,0.00000022249911000356001;75,0.00000022249911000355994;76,0.000000055624777500889984;77,0;78,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0.00000022099094219253112;50,0.0000006629728265775932;51,0;52,0;53,0.0000031482621295085532;54,0.0000003823897131352852;55,0.0000019538538364214475;56,0.0000019789515093363024;57,0;58,0.000001911948565676426;59,0.0000020199848355881126;60,0.0000036325176215087464;61,0.0000009504002465442793;62,0.000004524106804832557;63,0.000008506008092857984;64,0.000007904987348898283;65,0.0000025076446272786253;66,0.0000022297685260208465;67,0;68,0.0000019284860212817637;69,0.00000376058788636807;70,0.0000014186255696529254;71,0.0000005680105334089942;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.00007559407262370952;62,0.00017747780571377716;63,0.00027312461062655753;64,0.00032837392087931645;65,0.0002833317572979708;66,0.0002453678466536134;67,0.00020903096075115699;68,0.00017234641998932005;69,0.00012992557404770382;70,0.00008443841224635102;71,0.00004217748754004985;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0.00000022249911000355994;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forcecraft:power_ore", + "distrib": "0,0;1,0.0002793476326094696;2,0.00028012637949448207;3,0.0002870794766820933;4,0.00028162824848700606;5,0.00027801263794944827;6,0.0002718382876468494;7,0.0002827963688145248;8,0.0002777901388394447;9,0.0002792363830544678;10,0.0002677220541117836;11,0.00027773451406194375;12,0.00028557760768956926;13,0.00031099813100747596;14,0.000331746173015308;15,0.0003309674261302955;16,0.0003418142577429691;17,0.00033296991812032756;18,0.0003309674261302955;19,0.00032940993236027055;20,0.00033107867568529727;21,0.0003272405660377359;22,0.0003115543787824849;23,0.00031650498398006405;24,0.0003172281060875757;25,0.000316560608757565;26,0.0003100525097899609;27,0.0003063812744749021;28,0.0003064925240299039;29,0.0003245149519401923;30,0.0003178956034175863;31,0.00030543565325738694;32,0.0003029325382698469;33,0.00029959505161979356;34,0.00030549127803488783;35,0.00030343316126735497;36,0.00031066438234247066;37,0.00031010813456746174;38,0.0003323580455678178;39,0.00037001601993592024;40,0.0004098433606265575;41,0.0004709749911000356;42,0.0005382809718761125;43,0.000585117034531862;44,0.000640185564257743;45,0.0006949203453186187;46,0.0007381964222143111;47,0.000772183161267355;48,0.0008049461552153791;49,0.0008535622107511571;50,0.0009069619971520115;51,0.0009435631007475971;52,0.0010080322178711283;53,0.0010545345318618725;54,0.0011027055891776431;55,0.0011541028835884656;56,0.0011732378070487717;57,0.0012513349946600212;58,0.0012943885724457102;59,0.0013509033463866146;60,0.0014274430402278393;61,0.0014393467426130296;62,0.0014892977928088289;63,0.0015233957814168742;64,0.001532629494482022;65,0.0014237718049127804;66,0.0012375956746173014;67,0.001035677732289071;68,0.0008642421680313279;69,0.0006544811320754716;70,0.0004470563367746529;71,0.00022839533641865433;72,0.00000022249911000356001;73,0.00000033374866500534;74,0;75,0;76,0;77,0.000000055624777500889984;78,0.00000005562477750089002;79,0;80,0.00000005562477750088999;81,0.00000033374866500533997;82,0.000000055624777500889984;83,0.000000055624777500889984;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0.000000055624777500889984;97,0;98,0;99,0;100,0;101,0;102,0.00000005562477750089001;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000005562477750089001;28,0.00000033374866500534;29,0.00000005562477750089;30,0.0000005006229975080099;31,0.0000004449982200071199;32,0.00000088999644001424;33,0.0000009456212175151301;34,0.00000105687077251691;35,0.0000011072807271270914;36,0.00000045368959149163405;37,0.0000007231221075115699;38,0.0000006674973300106799;39,0.000002847293298326807;40,0.0000019538203097187614;41,0.0000012897995283018867;42,0.0000008899964400142401;43,0.000002318857912068352;44,0.0000025031149875400496;45,0.000003264479129583482;46,0.0000023570999466002138;47,0.0000026873720630117482;48,0.000002297998620505518;49,0.0000020024919900320397;50,0.0000019155782751868995;51,0.000002085929156283375;52,0.000002586552153791385;53,0.000004905410065859737;54,0.00000367123531505874;55,0.0000025587397650409395;56,0.0000023518851237095055;57,0.000002816004360982556;58,0.0000032053778034887866;59,0.000004342209193663226;60,0.0000035599857600569594;61,0.0000044656266687433254;62,0.000003865922036311855;63,0.0000034661189480242085;64,0.000006781008032217871;65,0.000006854015552687789;66,0.00000595185119259523;67,0.000007173858023317907;68,0.000007704031683873264;69,0.000006257787468850125;70,0.000006143061365254539;71,0.0000053747441260234964;72,0.000005489470229619082;73,0.000005904917786578854;74,0.00000581626579743681;75,0.000006708000511747953;76,0.000006275170211819153;77,0.000007184287669099323;78,0.000007879597387860449;79,0.000007102588777144892;80,0.000007631024163403348;81,0.000009350177443040228;82,0.000007575399385902455;83,0.000008620102238341046;84,0.000008091666852082591;85,0.000009577891375934497;86,0.0000070504405482378075;87,0.000006518528613385547;88,0.0000062125923371306515;89,0.000006833156261124956;90,0.000007580614208793164;91,0.000006991339222143112;92,0.000007498915316838733;93,0.000006344701183695266;94,0.000006263002291740833;95,0.000005725875533997865;96,0.0000049975386035955865;97,0.000004696817150231399;98,0.000004314396804912781;99,0.000004147522472410111;100,0.0000036190870861516555;101,0.0000029707107734069064;102,0.0000030002614364542546;103,0.000002532665650587398;104,0.000002124171190815237;105,0.0000015088220897116411;106,0.0000010707769668921324;107,0.0000008934729886080456;108,0.0000006709738786044856;109,0.0000011715968761124955;110,0.0000008517544054823782;111,0.000001063823869704521;112,0.000001241127847988608;113,0.00000027812388750445;114,0.0000005562477750088999;115,0.0000008899964400142397;116,0.0000012828464311142755;117,0.0000015053455411178356;118,0.0000015018689925240298;119,0.0000016131185475258104;120,0.0000012932760768956925;121,0.0000013384712086151654;122,0.00000066749733001068;123,0.0000008413247597009613;124,0.000001077730064079744;125,0.00000061187255250979;126,0.00000033374866500533997;127,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.0005170879316482733;2,0.0005129716981132075;3,0.0005138060697757209;4,0.0005156973122107512;5,0.0005078542185831256;6,0.0005824470452118191;7,0.000701372819508722;8,0.000795934941260235;9,0.0008184073513705945;10,0.0008468872374510503;11,0.0008719183873264507;12,0.0008667452830188679;13,0.0008626290494838021;14,0.0008812077251690993;15,0.0008668009077963688;16,0.0008597921858312568;17,0.0009012882698469206;18,0.0009341625133499466;19,0.0009495149519401923;20,0.0009616967782128871;21,0.0009818329476682095;22,0.0009659798860804558;23,0.00097810608757565;24,0.0009637548949804201;25,0.00100063412246351;26,0.001021994037023852;27,0.0010509189213243147;28,0.0010738919544321824;29,0.0010824581701673194;30,0.0010747263260946955;31,0.001042130206479174;32,0.0010115365788536848;33,0.001051419544321823;34,0.001080121929512282;35,0.0010860181559273763;36,0.0010965868636525454;37,0.0011014262192951228;38,0.0011171680313278747;39,0.0011812477750089;40,0.001282874243503026;41,0.0013944575471698112;42,0.001509878960484158;43,0.0016150654147383413;44,0.001713243147027412;45,0.0017905615877536491;46,0.0018666562833748665;47,0.0019366878782484873;48,0.002034198113207547;49,0.0021762637949448204;50,0.0022925752046991815;51,0.002385746707013172;52,0.002495494393022428;53,0.0026214845140619435;54,0.0026982467070131716;55,0.0028177843538625845;56,0.0028859803310786756;57,0.002880751601993592;58,0.0030443440726237096;59,0.0031742835528657887;60,0.003301441794232823;61,0.00347621484514062;62,0.0036525453898184406;63,0.003772806158775365;64,0.0038623064257742967;65,0.003542018956924173;66,0.003133176842292631;67,0.0027005273228907084;68,0.0022241567283730864;69,0.0016969450872196513;70,0.001161167230331079;71,0.0006063656995372018;72,0.00000011124955500178001;73,0.00000011124955500177998;74,0.00000038937344250622997;75,0.0000007231221075115699;76,0.00000044499822000712;77,0.0000005006229975080099;78,0.0000005006229975080099;79,0.00000027812388750445;80,0.00000027812388750444997;81,0.0000007787468850124598;82,0.00000083437166251335;83,0.00000044499822000712003;84,0.00000016687433250266998;85,0;86,0.00000011124955500178;87,0.00000022249911000356;88,0;89,0;90,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000228061587753649;46,0.000012126201495194021;47,0.000026644268422926313;48,0.000044555446778212885;49,0.00005868414026343895;50,0.00007848656105375579;51,0.00009712086151655393;52,0.00011208392666429333;53,0.0001374488252046992;54,0.00015630562477750087;55,0.00016921057315770737;56,0.000172436810252759;57,0.00020380918476326095;58,0.0002347365610537558;59,0.0002495883766464934;60,0.00027172703809184764;61,0.0002973144357422571;62,0.0003177287290850836;63,0.0003197868458526166;64,0.0003249599501601993;65,0.0002888594695621218;66,0.0002811276254894981;67,0.00023957591669633322;68,0.00019657796368814526;69,0.00015625000000000003;70,0.00010490833036667853;71,0.00005556915272338911;72,0;73,0;74,0;75,0;76,0.00000022249911000355996;77,0.00000022249911000356;78,0;79,0;80,0;81,0;82,0;83,0.00000022249911000355996;84,0.00000033374866500534;85,0.00000005562477750088999;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "actuallyadditions:black_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.0000070643467426130306;37,0.00005056292274830901;38,0.0001318307226771093;39,0.00022038536845852617;40,0.00029959505161979356;41,0.00037763661445354223;42,0.00047675996796012817;43,0.0005594183873264508;44,0.0006216068885724459;45,0.0007024296902812389;46,0.000769123798504806;47,0.000879427732289071;48,0.000955744927020292;49,0.0010390152189391241;50,0.0011280148629405485;51,0.0012138995194019226;52,0.0013008410466358133;53,0.001357188946244215;54,0.001440570487718049;55,0.0015124933250267002;56,0.0015962086151655394;57,0.0016800351548593806;58,0.0017882253470986116;59,0.0018704943930224279;60,0.001957547169811321;61,0.002037313100747597;62,0.0021070109469562125;63,0.002190726237095052;64,0.002233557315770737;65,0.002013450071199715;66,0.001772817283730865;67,0.001523507030971876;68,0.0012671324314702742;69,0.0009706523673905303;70,0.0006703898184407263;71,0.0003421480064079744;72,0.00000417185831256675;73,0.000004950605197579209;74,0.00000517310430758277;75,0.0000043943574225703095;76,0.0000035043609825560703;77,0.00000361561053755785;78,0.000004060608757564969;79,0.00000456123175507298;80,0.000004060608757564969;81,0.000004728106087575649;82,0.0000038937344250623;83,0.00000433873264506942;84,0.00000378248487006052;85,0.00000411623353506586;86,0.00000456123175507298;87,0.0000035043609825560695;88,0.00000355998576005696;89,0.0000043943574225703095;90,0.00000394935920256319;91,0.0000030037379850480596;92,0.0000044499822000711994;93,0.0000022806158775364896;94,0.0000032818618725525103;95,0.00000300373798504806;96,0.0000031149875400498394;97,0.00000228061587753649;98,0.0000016131185475258098;99,0.0000013349946600213597;100,0.0000010012459950160199;101,0.00000066749733001068;102,0.00000061187255250979;103,0.0000003893734425062299;104,0.00000027812388750444997;105,0.00000027812388750445;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "opolisutilities:ender_ore", + "distrib": "0,0;1,0.0015479263082947671;2,0.0015463688145247421;3,0.0015413069597721607;4,0.0015368013527945886;5,0.0015388038447846208;6,0.0015468138127447489;7,0.0015561587753648983;8,0.0015269001423994304;9,0.0015096564613741547;10,0.0015209482912068354;11,0.001579688056247775;12,0.0016741389284442862;13,0.0018170946066215735;14,0.0018650987896048417;15,0.0018816193485226061;16,0.0018784487362050553;17,0.0018358957814168745;18,0.001848188857244571;19,0.0018328920434318263;20,0.0018242145781416875;21,0.0018526388394446423;22,0.0018288314346742614;23,0.0017827741189035246;24,0.0017433361516553934;25,0.0017827741189035244;26,0.0017868903524385902;27,0.001788002847988608;28,0.0018217670879316483;29,0.0018055802776788892;30,0.0017886703453186188;31,0.0017353261836952653;32,0.0017362718049127805;33,0.001757798593805625;34,0.0017652523139907441;35,0.001766809807760769;36,0.001762860448558206;37,0.0017495661267354933;38,0.0017353261836952653;39,0.001730931826272695;40,0.0017224212353150587;41,0.0017590779636881453;42,0.0017428355286578856;43,0.0017267599679601283;44,0.0016971675863296546;45,0.0017120750266998933;46,0.001745116144535422;47,0.001735938056247775;48,0.0017055669277322892;49,0.001685375133499466;50,0.0017196399964400145;51,0.001773429156283375;52,0.0017231443574225705;53,0.0016913826094695622;54,0.0017011725703097186;55,0.0016908819864720542;56,0.0016573402456390176;57,0.0016774764150943398;58,0.0016820376468494127;59,0.001708181292274831;60,0.0017282618369526522;61,0.0017068462976148097;62,0.0017003381986472057;63,0.0017007275720897115;64,0.00168938011747953;65,0.001468438501245995;66,0.0012376512993948026;67,0.001029614631541474;68,0.0008447734959060164;69,0.000634623086507654;70,0.0004164627091491634;71,0.00020097232111071557;72,0.00000016687433250267;73,0.00000016687433250266998;74,0.00000038937344250623;75,0.00000005562477750089;76,0.00000005562477750089;77,0.00000022249911000355996;78,0;79,0.00000016687433250267;80,0.00000022249911000355994;81,0;82,0;83,0.00000016687433250266998;84,0.00000016687433250266998;85,0;86,0;87,0;88,0.00000005562477750089;89,0.00000022249911000356;90,0;91,0;92,0.00000005562477750089;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0.00000005562477750089001;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0.00000005562477750088999;12,0.0000003337486650053399;13,0.0000004449982200071199;14,0.00000038937344250622997;15,0.00000022249911000355996;16,0.00000022249911000355996;17,0.00000022249911000355996;18,0.0000005006229975080099;19,0.0000007231221075115699;20,0.0000011124955500177996;21,0.0000008899964400142398;22,0.00000139061943752225;23,0.0000008899964400142398;24,0.00000100124599501602;25,0.0000014462442150231403;26,0.0000011124955500178;27,0.0000008899964400142402;28,0.00000066749733001068;29,0.0000008752211084905664;30,0.0000018060669944820222;31,0.000001923400509522962;32,0.0000021076575849946602;33,0.0000010186287379850481;34,0.0000005006229975080099;35,0.00000044499822000712003;36,0.0000007231221075115699;37,0.00000100124599501602;38,0.00000088999644001424;39,0.00000050062299750801;40,0.0000006118725525097899;41,0.00000038937344250623;42,0.0000006674973300106801;43,0.0000007787468850124598;44,0.00000077874688501246;45,0.00000038937344250623;46,0.00000061187255250979;47,0.0000003928499911000357;48,0.0000010047225436098258;49,0.00000105687077251691;50,0.0000008343716625133501;51,0.00000155749377002492;52,0.00000100124599501602;53,0.0000005562477750089;54,0.00000100124599501602;55,0.0000008343716625133501;56,0.0000008343716625133501;57,0.0000009456212175151302;58,0.00000066749733001068;59,0.0000007231221075115699;60,0.0000007231221075115699;61,0.0000008899964400142401;62,0.00000061187255250979;63,0.0000011124955500178;64,0.0000010134139150943397;65,0.0000009456212175151299;66,0.00000105687077251691;67,0.0000006118725525097899;68,0.0000011124955500178;69,0.0000015574937700249199;70,0.000001009937366500534;71,0.00000094562121751513;72,0.0000006292552954788182;73,0.0000011455227616589533;74,0.0000015574937700249199;75,0.00000100124599501602;76,0.00000116812032751869;77,0.00000139061943752225;78,0.0000017799928800284797;79,0.0000011124955500177999;80,0.0000009004260857956568;81,0.0000014784022895158418;82,0.000000477156294499822;83,0.0000011333548415806339;84,0.0000005075760946956213;85,0.00000083437166251335;86,0.0000020137907729619076;87,0.000001765217548504806;88,0.0000018182349145603416;89,0.0000018912424350302597;90,0.0000021867490655037383;91,0.000001689602616589534;92,0.0000010151521893912425;93,0.000001122925195799217;94,0.0000010151521893912425;95,0.0000010255818351726594;96,0.0000019068869037023855;97,0.000001827795423193307;98,0.0000015609703186187255;99,0.0000019572968583125667;100,0.0000027499499377002492;101,0.0000025552632164471338;102,0.0000036608056692773227;103,0.0000022302059229263084;104,0.0000025848138794944824;105,0.0000014497207636169457;106,0.0000010151521893912425;107,0.0000012237451050195799;108,0.00000083437166251335;109,0.00000083437166251335;110,0.0000016374543876824494;111,0.000001187241344784621;112,0.0000009456212175151297;113,0.0000007335517532929869;114,0.0000012341747508009968;115,0.0000017278446511213956;116,0.0000014497207636169459;117,0.0000015644468672125312;118,0.0000011785499733001069;119,0.0000011820265218939124;120,0.0000003372252135991456;121,0.0000006188256496974012;122,0.0000005597243236027056;123,0.000002405771626913492;124,0.0000012932760768956925;125,0.0000013940959861160558;126,0.0000018356176575293698;127,0.00000100124599501602;128,0.0000011124955500178;129,0.000001846047303310787;130,0.000002617841091135635;131,0.000004230959638661446;132,0.0000034522127536489854;133,0.000004603819475347099;134,0.0000036156105375578497;135,0.0000009525743147027411;136,0.00000005562477750089;137,0.00000005562477750089;138,0;139,0.00000014340762949448205;140,0.00000050062299750801;141,0.00000022249911000356;142,0.00000033374866500533997;143,0;144,0.00000038937344250622997;145,0.0000005562477750088999;146,0.0000005597243236027057;147,0.000000750934496262015;148,0.0000007300752046991813;149,0.0000004658575115699538;150,0.00000028507698469206126;151,0.00000005562477750089;152,0;153,0.00000041023273406906374;154,0.00000044239080856176586;155,0.0000003693832880918476;156,0.00000016687433250266998;157,0.0000007622332791918833;158,0.0000004980155860626559;159,0.0000002329287557849769;160,0.00000044847476860092565;161,0.0000005840601637593451;162,0.0000004693340601637594;163,0.00000011124955500177995;164,0.0000004554278657885369;165,0.0000006848800729797081;166,0.0000010255818351726592;167,0.0000006118725525097899;168,0.0000002224991100035599;169,0.00000005562477750088998;170,0.0000002224991100035599;171,0.00000028160043609825553;172,0;173,0.00000011124955500177998;174,0;175,0.00000011124955500177995;176,0.00000016687433250266998;177,0;178,0.00000027812388750444997;179,0.00000016687433250266998;180,0.00000022249911000355994;181,0.00000077874688501246;182,0.00000038937344250623;183,0.0000005006229975080099;184,0.00000050062299750801;185,0.00000033374866500534;186,0.00000027812388750445007;187,0.00000033374866500534;188,0.00000011124955500178;189,0.00000027812388750445007;190,0.00000027812388750445007;191,0.00000011124955500178;192,0.00000005562477750089;193,0;194,0.0000008899964400142401;195,0.0000008343716625133501;196,0.00000072312210751157;197,0.0000012793698825204702;198,0.0000015018689925240302;199,0.0000008343716625133501;200,0.00000061187255250979;201,0.0000006118725525097899;202,0.0000008899964400142401;203,0.0000007231221075115702;204,0.00000150186899252403;205,0.0000010568707725169098;206,0.00000077874688501246;207,0.00000044499822000712;208,0.00000022249911000356;209,0;210,0;211,0.00000027812388750445007;212,0.00000044499822000711987;213,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:apatite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0.00000011124955500178;49,0.00000005562477750089;50,0;51,0;52,0;53,0;54,0;55,0;56,0.00000011124955500177998;57,0;58,0.00000005562477750089;59,0.00000018773362406550372;60,0.00000011124955500177998;61,0.00000022249911000355996;62,0.00000022249911000355996;63,0.00000005562477750089;64,0.00000043748135818267533;65,0.00000017556570398718403;66,0.00000041544755695977224;67,0.0000005666774207903168;68,0.000000789176530793877;69,0.0000007535419077073692;70,0.0000005412041912789138;71,0.0000002706070256800053;72,0.00000061187255250979;73,0.0000005649391464934141;74,0.00000083437166251335;75,0.00000039806481399074405;76,0.00000083437166251335;77,0.0000008387173482556071;78,0.0000005751005400685188;79,0.0000006336009812210752;80,0.000001007940700078416;81,0.0000012292653004219064;82,0.00000133499466002136;83,0.000002733698349034703;84,0.000002366402063107964;85,0.000001307783156213054;86,0.0000013008300590254432;87,0.000001384267225276778;88,0.0000014110066052019744;89,0.0000016566397854778953;90,0.0000026163549739126667;91,0.000002561143304809497;92,0.000002754592948387935;93,0.000003918834784006929;94,0.0000017150677985347473;95,0.0000025164574172784388;96,0.0000019764178755784976;97,0.0000015018689925240298;98,0.0000014462442150231399;99,0.000002417330614483483;100,0.000002523097094388243;101,0.0000019292162173558097;102,0.0000010603473211107155;103,0.0000008937783611196637;104,0.0000013384712086151659;105,0.0000006257787468850124;106,0.0000003372252135991456;107,0.0000005649391464934141;108,0.000000449343905749377;109,0.000000894342125756497;110,0.0000011681203275186898;111,0.0000011124955500177999;112,0.0000008193379388644609;113,0.0000005006229975080099;114,0.0000013136185842080955;115,0.0000029917110061289485;116,0.000002243031568414267;117,0.00000155749377002492;118,0.0000017799928800284797;119,0.00000088999644001424;120,0.0000010012459950160199;121,0.0000009305874938662406;122,0.0000009305874938662406;123,0.0000017243681025275898;124,0.0000015574937700249199;125,0.00000083437166251335;126,0.0000014462442150231399;127,0.00000127936988252047;128,0.000002862420982748502;129,0.000002621354760034747;130,0.000003714229908679298;131,0.000005142510215953463;132,0.0000044499822000712;133,0.0000033630439802565118;134,0.0000017724760182040352;135,0.00000194686721253115;136,0.00000150186899252403;137,0.0000011124955500178;138,0.0000005562477750089;139,0.0000007231221075115699;140,0.0000005006229975080099;141,0.0000005006229975080099;142,0.00000027812388750444997;143,0.00000011124955500178001;144,0.00000022249911000356;145,0.0000005006229975080099;146,0.0000005006229975080099;147,0.00000022249911000356;148,0.00000033374866500534;149,0.00000022249911000356;150,0.00000022249911000355994;151,0.00000005562477750089;152,0.00000011124955500178001;153,0.00000005562477750089001;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0.00000016687433250266998;13,0.0000002224991100035599;14,0.00000033374866500533997;15,0.00000038937344250622997;16,0.00000027812388750444997;17,0.0000003337486650053399;18,0.0000003337486650053399;19,0.00000027812388750444997;20,0.00000016687433250266996;21,0;22,0.0000005110526432894268;23,0.0000005805836151655393;24,0.0000009073791829832681;25,0.0000015818296101815593;26,0.0000017313211997152014;27,0.0000012237451050195799;28,0.00000100124599501602;29,0.000000973433606265575;30,0.0000007856999822000713;31,0.00000044499822000712014;32,0.0000010186287379850481;33,0.0000010247126980242078;34,0.000001249819219473122;35,0.000001647884033463866;36,0.0000017999830344428623;37,0.0000012063623620505518;38,0.0000012463426708793164;39,0.0000007405048504805984;40,0.0000005319119348522607;41,0.000001048179401032396;42,0.0000009612656861872553;43,0.00000011472610359558563;44,0.00000027812388750444997;45,0.0000009664805090779636;46,0.0000007891765307938767;47,0.0000011333548415806335;48,0.0000014844862495550017;49,0.00000047628715735137054;50,0.0000006987862673549308;51,0.0000008413247597009613;52,0.0000012306982022071912;53,0.0000007265986561053755;54,0.0000006118725525097901;55,0.000000806559273762905;56,0.0000008413247597009613;57,0.0000007405048504805981;58,0.0000006501145870416518;59,0.0000007300752046991812;60,0.0000012428661222855108;61,0.0000006188256496974012;62,0.00000039284999110003564;63,0.0000003407017621929512;64,0.0000016652667764328941;65,0.0000017765163314346741;66,0.0000009021643600925596;67,0.000001561839455767177;68,0.0000023631839066393734;69,0.000001741750845496618;70,0.0000024335840156639375;71,0.000002050294533196867;72,0.0000020268278301886793;73,0.0000014062639061943753;74,0.0000011437844873620506;75,0.0000015783530615877537;76,0.0000033392249243503035;77,0.0000026951942973478112;78,0.0000028177426352794594;79,0.0000004241389284442863;80,0.0000004050179111783554;81,0.0000020963588020647923;82,0.000001802590445888217;83,0.0000025726459594161635;84,0.0000013819280660377362;85,0.00000038937344250623;86,0.00000022249911000356007;87,0.00000005562477750089002;88,0;89,0;90,0;91,0;92,0.00000005562477750089001;93,0.00000027812388750445;94,0.00000038937344250623;95,0.00000033374866500533997;96,0.00000050062299750801;97,0.00000105687077251691;98,0.00000127936988252047;99,0.0000012237451050195797;100,0.0000008343716625133497;101,0.00000105687077251691;102,0.00000127936988252047;103,0.0000007787468850124599;104,0.0000007787468850124599;105,0.0000002781238875044499;106,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0.00000011124955500178001;49,0.00000027812388750444997;50,0.00000016687433250266998;51,0.00000005562477750088999;52,0.000000055624777500890004;53,0.00000022249911000356001;54,0.0000005369000263129382;55,0.0000009073791829832682;56,0.0000004623809629761482;57,0.0000005718922436810252;58,0.0000004935943231770551;59,0.00000028507698469206126;60,0.00000045195131719473127;61,0.0000009734336062655751;62,0.00000040067222543609827;63,0.0000006918331701673194;64,0.0000021450304823780707;65,0.0000011089434242806507;66,0.0000011950635791206835;67,0.0000021623376482037553;68,0.0000018798680749570481;69,0.0000019199239609291563;70,0.0000021180872307760767;71,0.0000011898487562299752;72,0.0000016512850049143282;73,0.0000008681924341596112;74,0.000001237348990821428;75,0.0000011992581105762534;76,0.0000015226527069435202;77,0.0000013150045056069775;78,0.000002327549283552866;79,0.0000016383235248309006;80,0.0000011941188648288886;81,0.0000014893231867289922;82,0.0000009968247321304192;83,0.0000012724167853328588;84,0.0000018121509545211823;85,0.0000010707769668921324;86,0.0000009073791829832681;87,0.0000007865691193485226;88,0.00000046491279727815867;89,0.0000002902162304394261;90,0.000000898687811498754;91,0.0000007318134789960841;92,0.000000616218238252047;93,0.0000005597243236027056;94,0.00000011124955500178002;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0.0000189124243503026;62,0.00008532840868636526;63,0.00021927287290850834;64,0.0003623623982066572;65,0.00044783334538536844;66,0.0005071589088643646;67,0.0005125545122819509;68,0.0004851175907796369;69,0.0004406177687789249;70,0.00032723013639195445;71,0.00018193300273673907;72,0.00000011124955500177998;73,0.00000022249911000355996;74,0.00000027812388750444997;75,0.00000027812388750445;76,0.00000016687433250267;77,0.00000016687433250267;78,0;79,0;80,0;81,0;82,0;83,0.00000011124955500177998;84,0.00000011124955500178;85,0.00000005562477750089;86,0.00000038937344250622997;87,0.00000027812388750444997;88,0;89,0;90,0;91,0;92,0;93,0;94,0.00000005562477750088999;95,0;96,0.00000005562477750088999;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0.00000005562477750089;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0.000000055624777500890004;136,0.00000016687433250266998;137,0.000000055624777500890004;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0.00000006257787468850124;32,0;33,0.000000055624777500889984;34,0.000000132709731506753;35,0.00000035065928409125884;36,0.00000011124955500178;37,0;38,0.00000011124955500177998;39,0.00000016687433250267;40,0;41,0.0000004137092826628693;42,0.0000005249588376646494;43,0.00000028160043609825564;44,0.00000022249911000356;45,0.0000010012459950160199;46,0.00000083437166251335;47,0.0000006674973300106799;48,0.00000011124955500178;49,0;50,0.0000007578875934496262;51,0.0000007231221075115699;52,0.0000010985893556425772;53,0.000002124171190815236;54,0.0000015418493013527943;55,0.00000017556570398718403;56,0.00000019294844695621218;57,0.000000250311498754005;58,0.00000043109202563189745;59,0.0000003407017621929512;60,0.00000027812388750444997;61,0.0000008343716625133498;62,0.0000013906194375222496;63,0.0000009039026343894624;64,0.0000010638238697045213;65,0.0000010221052865788537;66,0.0000022562800373798504;67,0.0000017660866856532574;68,0.0000009560508632965469;69,0.0000013610687744749021;70,0.0000017973756229975082;71,0.0000010116756407974368;72,0.0000015740073758454967;73,0.000001550540672837309;74,0.0000026265324626201492;75,0.000001793695202726905;76,0.0000013349946600213597;77,0.0000014323380206479172;78,0.0000014818788381096474;79,0.0000015653160043609827;80,0.00000233624065503738;81,0.000004283440500304357;82,0.0000029372114378826442;83,0.0000017487039426842294;84,0.000004127993711790585;85,0.000004576661621980055;86,0.000004403907201115023;87,0.000004495906977791842;88,0.000002962620286864532;89,0.000002577860782306871;90,0.0000028061756001432785;91,0.000002659559674261303;92,0.000002071153824759701;93,0.0000028116586752402997;94,0.0000032740396382164477;95,0.0000036573291206835173;96,0.0000028264340067639734;97,0.0000034174472677109293;98,0.000004390880873976504;99,0.000004349162290850836;100,0.000004354977998683684;101,0.000002754628256178334;102,0.0000023640530437878253;103,0.0000019798944241723034;104,0.0000016374543876824492;105,0.000001630501290494838;106,0.000001853000400498398;107,0.00000083437166251335;108,0.0000012376512993948026;109,0.0000019094943151477394;110,0.0000019414485179636443;111,0.00000047401237864184344;112,0.0000019659882297970807;113,0.0000007787468850124599;114,0.0000015062146782662866;115,0.000002678144187114609;116,0.000003922748583697024;117,0.000004844634845997653;118,0.0000037413671718769907;119,0.0000036503760234959062;120,0.0000045368959149163405;121,0.00000404844083748665;122,0.000002738651154770381;123,0.0000036781884122463516;124,0.000004234436187255251;125,0.0000057797620372018526;126,0.000006373382709594162;127,0.000006839240221164115;128,0.000007813542964578143;129,0.000014027004438857244;130,0.000016014721097365612;131,0.000018403367503428137;132,0.000017317418191746986;133,0.000016637023295656816;134,0.000013044879461107156;135,0.000011683810686632255;136,0.00000634122463510146;137,0.000008065592737629051;138,0.0000047837308650765405;139,0.0000027812388750445;140,0.0000030593627625489503;141,0.000004283107867568531;142,0.00000745372018511926;143,0.00000717559629761481;144,0.00000417185831256675;145,0.0000026699893200427206;146,0.0000024474902100391606;147,0.0000015018689925240302;148,0.00000239186543253827;149,0.00000305936276254895;150,0.00000250311498754005;151,0.0000007231221075115699;152,0.00000022249911000356;153,0.00000005562477750089;154,0;155,0;156,0.0000005562477750088999;157,0.00000088999644001424;158,0.00000044499822000712;159,0.00000005562477750089;160,0.00000011124955500178;161,0;162,0;163,0.00000022249911000356;164,0.00000011124955500178;165,0;166,0;167,0.00000016687433250267;168,0.00000022249911000356001;169,0.000000055624777500890004;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0.00000038937344250623;180,0.00000016687433250266998;181,0;182,0;183,0.00000016687433250267;184,0.00000011124955500178;185,0.00000027812388750445007;186,0;187,0;188,0.00000044499822000712;189,0.00000077874688501246;190,0.0000004449982200071199;191,0.00000038937344250622997;192,0.0000005562477750088999;193,0.00000044499822000712;194,0.00000050062299750801;195,0.0000012793698825204702;196,0.0000011124955500178003;197,0.0000008343716625133502;198,0.0000011681203275186902;199,0.0000006118725525097901;200,0;201,0;202,0;203,0;204,0;205,0.00000027812388750445007;206,0.0000011124955500178003;207,0.00000016687433250267;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "create_new_age:thorium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0.00000044934390574937693;82,0.000001095944533889532;83,0.0000030136395364860234;84,0.000004867168031327875;85,0.000004867168031327875;86,0.0000022145614542541832;87,0.0000021137415450338195;88,0.0000016465616225873436;89,0.0000032129668759071467;90,0.0000030871751512993953;91,0.000004552087109860395;92,0.000003277516186810253;93,0.000003430548705467215;94,0.000003199293843449626;95,0.0000031966864320042717;96,0.0000029961088923005418;97,0.000001703508810964756;98,0.000002440537112851549;99,0.0000024162012726949094;100,0.0000017878151143645425;101,0.0000013775823802954787;102,0.0000014492674898888744;103,0.0000025873838806321453;104,0.0000012724167853328584;105,0.0000019980714836744004;106,0.00000129278539285993;107,0.0000008621840512637948;108,0.00000017556570398718403;109,0.0000005597243236027056;110,0.00000030419800195799224;111,0.0000004589044143823425;112,0.0000015270739698291206;113,0.0000006362083926664294;114,0.00000038937344250623;115,0.0000013906194375222498;116,0.00000211374154503382;117,0.0000012967526254894982;118,0.0000017408817083481666;119,0.0000032523112095051625;120,0.000002671727594339623;121,0.000002987224379227483;122,0.000003647768612050551;123,0.0000030784837798148804;124,0.00000228061587753649;125,0.000003511314079743681;126,0.0000027881919722321115;127,0.000002753426486294055;128,0.000004885419911445354;129,0.000007677957569419722;130,0.000009284992156906373;131,0.000005518151755517978;132,0.000009287599568351726;133,0.000009443175117924528;134,0.000008782630885101459;135,0.000003786830555802777;136,0.0000006118725525097899;137,0.0000012793698825204702;138,0.00000161311854752581;139,0.0000009456212175151301;140,0.0000007231221075115699;141,0.00000005562477750089;142,0.00000044499822000712;143,0.000001011675640797437;144,0.00000022597565859736563;145,0.00000011124955500178;146,0.00000028160043609825564;147,0.00000050062299750801;148,0.0000006883566215735136;149,0.0000008030827251690993;150,0.00000011124955500178;151,0.00000022249911000356;152,0.00000040327963688145255;153,0.0000004137092826628694;154,0.00000011472610359558563;155,0.000000399803088287647;156,0.0000009247619259522964;157,0.00000045542786578853683;158,0.0000007474579476682094;159,0.0000006362083926664294;160,0.00000005562477750089;161,0;162,0.00000005910132609469563;163,0.0000005180057404770381;164,0.000000622302198291207;165,0.00000011472610359558563;166,0.0000002224991100035599;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0.00000005562477750089;179,0;180,0.00000005562477750089;181,0.00000005562477750088998;182,0.0000002224991100035599;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00000016687433250266998;30,0.00000022249911000356001;31,0.00000016687433250267;32,0.00000061187255250979;33,0.00000044499822000712003;34,0.0000008934729886080455;35,0.00000239186543253827;36,0.0000007231221075115702;37,0.000001508822089711641;38,0.00000183561765752937;39,0.0000011124955500178;40,0.0000007300752046991813;41,0.00000177999288002848;42,0.0000011159720986116056;43,0.0000015157751868992523;44,0.00000266998932004272;45,0.000002016398184407262;46,0.0000019607734069063725;47,0.00000189124243503026;48,0.0000019712030526877894;49,0.0000018981955322178713;50,0.00000083437166251335;51,0.0000010012459950160196;52,0.0000019121017265930937;53,0.0000019155782751868995;54,0.0000016687433250267;55,0.0000017938990744037024;56,0.0000019121017265930933;57,0.000001686126067995728;58,0.0000017278446511213954;59,0.0000014462442150231399;60,0.00000194686721253115;61,0.0000024022950783196867;62,0.0000020198747330010686;63,0.0000019920623442506232;64,0.0000034104941705233177;65,0.000005190487050551798;66,0.000004436076005695977;67,0.000005611149430402279;68,0.000005060116478284087;69,0.000003933714733891064;70,0.000004835879093983625;71,0.0000036955711552153796;72,0.0000035721536801352796;73,0.000004635977549839801;74,0.000004147522472410111;75,0.00000509314368992524;76,0.000003978909865610538;77,0.000005001015152189391;78,0.000005578122218761125;79,0.000005433845452118192;80,0.000006487239676041295;81,0.000005930991901032395;82,0.000007126924617301531;83,0.000006271693663225348;84,0.000005364314480242079;85,0.000006426400075649698;86,0.000008519282329120685;87,0.000006195209594161624;88,0.000006369037023851905;89,0.00000746588810519758;90,0.000008044733446066217;91,0.000008451489631541476;92,0.00000799258521715913;93,0.000007464149830900677;94,0.000007650145180669278;95,0.0000068001290494838025;96,0.000005816265797436811;97,0.000006963526833392667;98,0.000005360837931648273;99,0.000006454212464400143;100,0.000004376974679601282;101,0.000004641192372730509;102,0.000003413970719117124;103,0.000002583075605197579;104,0.0000030245972766108934;105,0.000002475302598789605;106,0.000002631747285510858;107,0.0000017869459772160912;108,0.0000019016720808116768;109,0.0000015609703186187255;110,0.0000016131185475258098;111,0.0000015053455411178356;112,0.000002346670300818797;113,0.0000010673004182983269;114,0.00000331315080989676;115,0.0000036434229263082947;116,0.000005258279748131008;117,0.00000492626935742257;118,0.0000072068852349590615;119,0.000005190487050551797;120,0.0000034695954966180134;121,0.000004780254316482734;122,0.000005096620238519046;123,0.000005878843672125312;124,0.000006223021982912069;125,0.000008093405126379496;126,0.000008441059985760057;127,0.000004849785288358846;128,0.0000008378482111071557;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0004370995016019936;2,0.0005332191171235315;3,0.0006325649697401211;4,0.0007368058027767889;5,0.0008535622107511571;6,0.0010074759700961196;7,0.0011420323068707726;8,0.0012412669099323601;9,0.0012942216981132076;10,0.0013985181559273763;11,0.0015927042541829836;12,0.0019052598789604841;13,0.002229051708793165;14,0.0023990966536133855;15,0.0024907106621573517;16,0.002543554200783197;17,0.0026788336596653612;18,0.0028581123175507304;19,0.003017811053755785;20,0.0031420211819152724;21,0.0031940859736561055;22,0.003217670879316483;23,0.003365410288358847;24,0.0035496395514417944;25,0.003725858846564614;26,0.0038728195087219656;27,0.003957146671413315;28,0.004070176219295123;29,0.004157785243859024;30,0.004241389284442862;31,0.004329610181559274;32,0.004477293965824136;33,0.004747463510145961;34,0.004967292630829477;35,0.005062577874688501;36,0.005067639729441083;37,0.00510129271982912;38,0.005213487896048417;39,0.00539810653257387;40,0.005492112406550374;41,0.005613930669277322;42,0.00570993903524386;43,0.0059299350302598796;44,0.006111438679245284;45,0.006186587753648986;46,0.0062102839088643644;47,0.006317417230331079;48,0.006406361249555003;49,0.006628526610893556;50,0.006711463154147384;51,0.006828275186899253;52,0.006920334193663226;53,0.006992646404414382;54,0.007123920879316484;55,0.007323836329654681;56,0.007477638839444642;57,0.007637337575649697;58,0.0077044766820932725;59,0.007715768511925953;60,0.007689291117835529;61,0.007577596564613742;62,0.007346698113207548;63,0.00707741856532574;64,0.006811087130651478;65,0.005849279102883589;66,0.004963398896404415;67,0.004065837486650053;68,0.0031829610181559275;69,0.002314157618369527;70,0.0015283463866144536;71,0.00074437077251691;72,0.0000003893734425062301;73,0.00000022249911000356001;74,0.0000008343716625133502;75,0.0000005006229975080099;76,0.0000004449982200071199;77,0.0000005006229975080099;78,0.00000038937344250623;79,0;80,0.00000033374866500534;81,0.00000038937344250623;82,0;83,0.00000016687433250266998;84,0;85,0;86,0;87,0;88,0;89,0.00000011124955500178;90,0.00000033374866500533997;91,0.00000011124955500178;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:niter_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.00000023640530437878246;55,0.00000011124955500178001;56,0.00000016687433250267004;57,0.000000055624777500890004;58,0.00000005562477750089;59,0.00000016687433250266998;60,0;61,0.0000001147261035955856;62,0.00000033374866500533997;63,0.00000011124955500178;64,0.00000041023273406906374;65,0.0000004484747686009257;66,0.0000006935714444642222;67,0.00000045282045434318266;68,0.00000022945220719117123;69,0.0000010864214355642578;70,0.0000007729231296134229;71,0.0000009525743147027412;72,0.0000013054439969740123;73,0.0000010969798424047047;74,0.0000008943421257564971;75,0.000000793522216536134;76,0.0000009619309516589095;77,0.0000012762903471920065;78,0.0000013993751895362788;79,0.0000005180057404770381;80,0.000001624937739735924;81,0.0000018356176575293698;82,0.0000012306982022071912;83,0.0000012515574937700248;84,0.0000015227282840868636;85,0.0000020008824767941672;86,0.0000015610346991482404;87,0.000001519251735493058;88,0.0000016794331754482398;89,0.0000016677856646501654;90,0.000001746965668387326;91,0.0000019155782751868995;92,0.000002180665105464578;93,0.0000015459267348887395;94,0.0000013541156772872906;95,0.000001450922533501224;96,0.0000013083840411551934;97,0.0000011656845974853758;98,0.0000012063623620505518;99,0.000001187906610256275;100,0.0000015702464799130005;101,0.0000007335517532929869;102,0.00000033374866500533997;103,0.0000005840601637593451;104,0.00000022597565859736563;105,0.00000027812388750445;106,0.00000033374866500533997;107,0.00000027812388750445;108,0.00000044499822000712;109,0.00000016687433250267004;110,0.00000027812388750445;111,0.0000002824695732467071;112,0.0000003372252135991456;113,0.00000011820265218939126;114,0.00000018078052687789246;115,0.0000002920300818796725;116,0.0000005632008721965112;117,0.0000002920300818796725;118,0.00000017035088109647563;119,0.0000003928499911000356;120,0;121,0.00000022249911000356001;122,0.0000006118725525097899;123,0.00000066749733001068;124,0.00000028160043609825564;125,0.00000023640530437878252;126,0.00000005910132609469563;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:iridium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0.0000020087775838283155;27,0.000008035110335313262;28,0.0000020087775838283155;29,0.0000020087775838283155;30,0.000006026332751484947;31,0.000011723755479886138;32,0.000009714977896057821;33,0;34,0.000009115876365441907;35,0.000011612643062357494;36,0.0000036362512425958248;37,0.0000013572821512353484;38,0.000007112158472473224;39,0.000012322857010502052;40,0.000015741310647542768;41,0.000011453563972353976;42,0;43,0;44,0;45,0;46,0;47,0;48,0.000006836907274081431;49,0.000009402701983140212;50,0.0000023935180077529884;51,0.0000002714564302470697;52,0.00001185063927507448;53,0.000008432185638033764;54,0;55,0.000002278969091360477;56,0.00000705470487963654;57,0.000004401030668866395;58,0.000005697422728401191;59,0.0000011394845456802384;60,0;61,0.000004557938182720954;62,0.000004557938182720954;63,0.0000005680105334089942;64,0.0000028400526670449707;65,0.000008537475395446163;66,0.0000034115266793162154;67,0.0000017040316002269824;68,0.0000011360210668179884;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0.00000005562477750089;24,0.00000011124955500178;25,0;26,0;27,0;28,0;29,0;30,0;31,0.00000005562477750089;32,0.00000011124955500178;33,0.00000005562477750089002;34,0.00000033374866500533997;35,0.0000003893734425062299;36,0.00000005562477750089;37,0;38,0.00000005562477750088999;39,0.000001063823869704521;40,0.0000016548371306514776;41,0.0000004936699003203988;42,0.000001195932716269135;43,0.0000021624132253470987;44,0.0000010429645781416877;45,0.0000008552309540761837;46,0.0000008691371484514063;47,0.00000127936988252047;48,0.00000100124599501602;49,0.0000003407017621929512;50,0.0000006153491011035957;51,0.0000012237451050195799;52,0.0000016687433250267001;53,0.00000226844795745817;54,0.0000012046240877536492;55,0.00000038937344250622997;56,0.0000013906194375222502;57,0.0000011264017443930223;58,0.00000083437166251335;59,0.0000007787468850124599;60,0.0000011542141331434675;61,0.000001863430046279815;62,0.000002510068084727661;63,0.0000039284999110003565;64,0.0000039493592025631895;65,0.0000031706123175507297;66,0.0000036190870861516555;67,0.0000025118063590245637;68,0.00000324535811231755;69,0.000004510821800462798;70,0.000004613379983980064;71,0.000003921546813812745;72,0.0000032227605464578142;73,0.000006633254716981131;74,0.000005423415806336774;75,0.000006377728395336419;76,0.000007226006252224992;77,0.000006103081056425773;78,0.0000048045901566393735;79,0.0000033027211641153433;80,0.0000049471286489854044;81,0.000005515544344072624;82,0.000007952604908330367;83,0.00000682967971253115;84,0.000004971464489142043;85,0.0000072659865610537555;86,0.000010226267688679245;87,0.000009045979441082236;88,0.000007806589867390531;89,0.000006708000511747952;90,0.000006911378604485582;91,0.000009749980531327876;92,0.000008569692283730865;93,0.000009421446689213243;94,0.0000097047853996084;95,0.0000075528018200427194;96,0.000007208623509255964;97,0.0000056407000934496265;98,0.000005892749866500535;99,0.000006827941438234249;100,0.000005244373553755785;101,0.000005193963599145604;102,0.0000034939313367746534;103,0.0000031862567862228557;104,0.00000385027756763973;105,0.000004568184852260592;106,0.00000433873264506942;107,0.000003546079565681737;108,0.000002384912335350659;109,0.0000018947189836240657;110,0.000002624794188323247;111,0.000003125417185831257;112,0.0000032262370950516204;113,0.00000194686721253115;114,0.0000026699893200427198;115,0.0000048949804200783195;116,0.000006010952518689927;117,0.000006007475970096121;118,0.000010290583837664649;119,0.00000695309718761125;120,0.000005079237495550018;121,0.00000878871484514062;122,0.000007398095407618371;123,0.00000949966903257387;124,0.000012515574937700253;125,0.000013794944820220722;126,0.00001856476949092204;127,0.000019805897338910643;128,0.000023317211418654326;129,0.00002543442951228195;130,0.00002408552865788537;131,0.00002186053755784977;132,0.000027423015307938766;133,0.00002820176219295123;134,0.000027756763972944107;135,0.00002024741901032396;136,0.00000789871840512638;137,0.00000734247063011748;138,0.00000806559273762905;139,0.00000628559985760057;140,0.00000406060875756497;141,0.00000784309362762549;142,0.00000767621929512282;143,0.000005840601637593451;144,0.0000028924884300462798;145,0.0000021693663225347102;146,0.0000017243681025275902;147,0.0000038937344250623005;148,0.00000367123531505874;149,0.0000012237451050195799;150,0.0000016687433250267001;151,0.00000133499466002136;152,0.0000012237451050195799;153,0.0000015018689925240298;154,0;155,0.00000011124955500177995;156,0.0000009456212175151301;157,0.00000139061943752225;158,0.0000007787468850124598;159,0.00000011124955500177998;160,0.0000007231221075115698;161,0.00000050062299750801;162,0.00000127936988252047;163,0.0000008343716625133501;164,0;165,0;166,0;167,0.00000044499822000712;168,0.0000008343716625133501;169,0.0000011681203275186902;170,0.00000027812388750445007;171,0;172,0.0000002224991100035599;173,0.00000027812388750444997;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0.00000011124955500177995;182,0.0000008899964400142396;183,0;184,0.00000022249911000356;185,0.00000066749733001068;186,0.00000094562121751513;187,0.0000005562477750089;188,0.00000005562477750088998;189,0.00000005562477750088998;190,0;191,0.00000005562477750089;192,0.00000027812388750445007;193,0.00000105687077251691;194,0.0000011124955500178003;195,0.00000105687077251691;196,0.00000100124599501602;197,0.0000011124955500178003;198,0.0000012237451050195803;199,0.00000144624421502314;200,0.00000105687077251691;201,0.00000077874688501246;202,0.00000066749733001068;203,0.00000011124955500177995;204,0;205,0;206,0;207,0;208,0;209,0.0000008343716625133502;210,0.00000072312210751157;211,0.00000016687433250267;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0.000424750800996796;2,0.0005398940904236384;3,0.0006546480064079744;4,0.0007676219295122819;5,0.0008835439658241367;6,0.0010001334994660022;7,0.0011172792808828765;8,0.001229251957992168;9,0.0013513483446066217;10,0.0014510835706657173;11,0.0016081679423282308;12,0.0018551975792096833;13,0.0021572957458170167;14,0.002341803132787469;15,0.0024182872018511927;16,0.0025930602527589894;17,0.0027411890352438593;18,0.0028784153613385546;19,0.003011525453898185;20,0.003206935297258811;21,0.0033372085261658955;22,0.0034041251334994667;23,0.003455800551797793;24,0.0035652144891420434;25,0.0036956545923816303;26,0.0038196422214311146;27,0.003925218049127804;28,0.004038358846564614;29,0.004072289960840157;30,0.0041750289248843;31,0.004350191349234604;32,0.00451995817016732;33,0.004692951228195087;34,0.004856766197935208;35,0.004962898273406907;36,0.004973578230687078;37,0.005088276521893913;38,0.005256763972944108;39,0.005340979886080456;40,0.00544249510501958;41,0.005583559540761838;42,0.0057261258454966175;43,0.005837097276610893;44,0.005928488786044856;45,0.006056926397294412;46,0.0061935408508365965;47,0.006340779636881453;48,0.00642249243503026;49,0.0065710105909576365;50,0.006686376379494482;51,0.006739053043787826;52,0.006856921947312211;53,0.006952930313278747;54,0.0070742479530081885;55,0.007115410288358846;56,0.007103506585973656;57,0.007285844606621574;58,0.007479196333214668;59,0.0075817684229263094;60,0.0076183695265218945;61,0.0075821577963688155;62,0.007394757920968317;63,0.0071369370772516915;64,0.006734769935920256;65,0.005783641865432538;66,0.004878126112495549;67,0.003992857778568885;68,0.0031250556247775013;69,0.002277055891776433;70,0.001497808383766465;71,0.000740310163759345;72,0;73,0.00000016687433250267;74,0.00000038937344250622997;75,0.00000022249911000355996;76,0.00000011124955500177997;77,0;78,0.0000005562477750088999;79,0.0000008899964400142398;80,0.00000088999644001424;81,0.00000033374866500533997;82,0.00000011124955500178;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0.00000011124955500178;94,0.00000011124955500178;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0.00000011124955500177998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0.00000011994092648629408;26,0;27,0;28,0;29,0.00000019005132312804085;30,0.000001110757275720897;31,0.0000024457519357422573;32,0.0000012695196615046876;33,0.0000017938990744037022;34,0.0000009039026343894625;35,0.0000004913522012578617;36,0.000001242866122285511;37,0.000001075991789782841;38,0.0000008366893615758871;39,0.0000020187158834698;40,0.0000028843764833274005;41,0.000002646812329417349;42,0.000002624214763557612;43,0.00000016687433250267;44,0.0000011211869215023139;45,0.0000006935714444642223;46,0.00000223310304675448;47,0.000002128227164174677;48,0.0000011126243110768296;49,0.0000007956575040983786;50,0.0000005562477750088999;51,0.0000007787468850124602;52,0.00000038937344250622997;53,0.00000028507698469206126;54,0.0000022041318084727663;55,0.000004233277337723983;56,0.000003232610767473597;57,0.0000016444074848700607;58,0.00000016687433250267;59,0.0000017019636782563983;60,0.000002456503484171249;61,0.0000025261632171063915;62,0.0000005562477750088999;63,0;64,0.000002759864539245547;65,0.0000030199618784858194;66,0.0000013303592618962857;67,0.0000017536290531921205;68,0.0000026294875289248846;69,0.000001497319435104976;70,0.0000011033320546501767;71,0.000001733724739483758;72,0.0000015181787266678095;73,0.0000011003490901159853;74,0.00000007013185681825175;75,0.00000011124955500177998;76,0.00000022249911000356;77,0.00000011124955500178;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "rftoolsbase:dimensionalshard_overworld", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0.00000028160043609825564;48,0.0000005597243236027056;49,0.0000003893734425062299;50,0.00000072312210751157;51,0.000000695309718761125;52,0.000000509314368992524;53,0.00000038937344250623;54,0.00000027812388750444997;55,0.00000050062299750801;56,0.0000008943421257564971;57,0.0000008552309540761837;58,0.0000005093143689925241;59,0.0000009073791829832681;60,0.0000007491962219651122;61,0.0000007874382564969741;62,0.00000018078052687789249;63,0.000000973433606265575;64,0.000001759133588465646;65,0.0000014688417808828764;66,0.0000015105603640085438;67,0.000001684387793698825;68,0.0000014149552776788896;69,0.0000019590351326094696;70,0.0000022388972944108224;71,0.0000011359622530259878;72,0.000001185503070487718;73,0.00000116812032751869;74,0.0000015192517354930582;75,0.0000015731382386970453;76,0.00000155749377002492;77,0.0000021406847966358134;78,0.0000013601996373264507;79,0.000001700901399519402;80,0.0000027595104463332147;81,0.0000013975725347098611;82,0.0000017452273940904238;83,0.0000018025904458882164;84,0.0000025778607823068713;85,0.000002109395859291563;86,0.0000025926361138305446;87,0.000002122432916518334;88,0.0000023006060319508724;89,0.000002310166540583838;90,0.000002583075605197579;91,0.0000033348792386080455;92,0.000002684764651566394;93,0.0000031193332257920966;94,0.0000032140691749733006;95,0.0000023866506096475616;96,0.0000026604288114097543;97,0.0000021406847966358134;98,0.0000017938990744037024;99,0.0000018182349145603418;100,0.000002231944197223211;101,0.0000023779592381630476;102,0.0000009612656861872553;103,0.0000007874382564969741;104,0.00000028681525898896404;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "draconicevolution:deepslate_draconium_ore", + "distrib": "0,0;1,0.00010158648818529727;2,0.00009853929334282665;3,0.00009999249065503738;4,0.00010321525120149519;5,0.0001011814702741189;6,0.00010107022071911712;7,0.0000962951812255251;8,0.00009304460829031684;9,0.00008986182805268778;10,0.00009192863619170524;11,0.00010137963354396582;12,0.00011364837353150588;13,0.00011357362773673906;14,0.00010520731354574582;15,0.0000574812544499822;16,0.000010791206835172659;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:peridot_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0.0000015218742588155235;171,0.000004565622776446571;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0.0000022928230068094765;188,0.000009171292027237906;189,0.0000022928230068094765;190,0;191,0;192,0;193,0;194,0;195,0;196,0;197,0;198,0;199,0;200,0;201,0;202,0.000004585646013618953;203,0.0000022928230068094765;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0.0000006674973300106799;26,0.00000161311854752581;27,0.00000116812032751869;28,0.00000044499822000712003;29,0.0000006118725525097899;30,0.0000024474902100391597;31,0.00000155749377002492;32,0.00000061187255250979;33,0.0000014497207636169459;34,0.00000317061231755073;35,0.000003956312299750801;36,0.0000030593627625489503;37,0.000001953820309718761;38,0.0000023640530437878245;39,0.000004742012281950872;40,0.000006271693663225348;41,0.000005965757386970453;42,0.0000032905532440370235;43,0.000004665528212887148;44,0.00000650809896760413;45,0.000006987862673549306;46,0.000006410755606977572;47,0.000006296029503381985;48,0.00000450560697757209;49,0.0000033374866500534;50,0.0000071408308116767534;51,0.000006542864453542186;52,0.000006633254716981133;53,0.000007224267977928089;54,0.0000063203653435386255;55,0.000007078252936988253;56,0.0000064038025097899625;57,0.0000064594272872908516;58,0.000006313412246351014;59,0.000005006229975080101;60,0.00000461685653257387;61,0.000005447751646493414;62,0.000006803605598077608;63,0.0000063203653435386255;64,0.000011065854174083305;65,0.000010864214355642577;66,0.000009007737406550373;67,0.000009421446689213245;68,0.000007151260457458171;69,0.000007797898495906017;70,0.0000073355175329298685;71,0.00001021583804289783;72,0.000007667527923638305;73,0.000007363329921680313;74,0.000008204654681381276;75,0.00000951183695265219;76,0.000009101604218583127;77,0.000009080744927020291;78,0.000008913870594517622;79,0.000005027089266642933;80,0.000004802851882342471;81,0.0000054807788581345676;82,0.00000595185119259523;83,0.00000709563567995728;84,0.000007457196733713066;85,0.000006668020202919188;86,0.000007307705144179423;87,0.000004509083526165896;88,0.000004477794588821645;89,0.000003546079565681738;90,0.0000036364698291206835;91,0.000004102327340690637;92,0.000004175334861160556;93,0.0000040397494660021355;94,0.0000014462442150231399;95,0.00000077874688501246;96,0.000001077730064079744;97,0.00000038937344250623;98,0.0000003893734425062301;99,0.00000016687433250266998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0.00005406728373086508;2,0.00007081034175863297;3,0.00008671902812388752;4,0.00010980331078675685;5,0.00012726949092203632;6,0.00012471075115699537;7,0.00013800507297970807;8,0.00015619437522249914;9,0.00019001423994304022;10,0.00020531105375578497;11,0.00022600347098611609;12,0.00025231399074403704;13,0.000282629494482022;14,0.00030104129583481665;15,0.0003225124599501602;16,0.0003579454432182271;17,0.0003763572445710217;18,0.00039232155571377713;19,0.0004167964578141688;20,0.0004466113385546458;21,0.00044027011391954435;22,0.00044038136347454614;23,0.00045367568529725884;24,0.00048132119971520113;25,0.0004991767532929868;26,0.0005322734959060163;27,0.0005563590245639017;28,0.0005818907974368103;29,0.0005940169989320042;30,0.0005741589533641866;31,0.0005660933606265575;32,0.0005921813812744749;33,0.0006411311854752582;34,0.0006748954254182983;35,0.0006990922036311856;36,0.0007072690459238164;37,0.0007232889818440726;38,0.0007492101281594874;39,0.0007511013705945176;40,0.0007314101993592026;41,0.0007394201673193307;42,0.0007844762370950516;43,0.0008065592737629049;44,0.0008196867212531152;45,0.0008408241367034532;46,0.0008563434496262016;47,0.0008369860270558918;48,0.0008254716981132076;49,0.0008749777500889997;50,0.0009334950160199359;51,0.0009583592915628337;52,0.0009598611605553577;53,0.0009935141509433963;54,0.001019435297258811;55,0.0010204921680313278;56,0.0010150409398362408;57,0.0010434652011391955;58,0.0010599857600569597;59,0.0010613207547169813;60,0.0010505851726593093;61,0.0010707769668921326;62,0.0010820687967248131;63,0.0010697200961196157;64,0.001079621306514774;65,0.0009816104485582057;66,0.0008426597543609825;67,0.0007148896404414382;68,0.000577440815236739;69,0.0004261414204343183;70,0.0002850769846920612;71,0.00015419188323246706;72,0;73,0;74,0;75,0.00000016687433250266998;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0.00000005562477750089001;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0.000000055624777500889984;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "create_new_age:magnetite_block", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0.00000034678572223211105;43,0.0000005562477750088999;44,0.0000006674973300106799;45,0.0000006674973300106799;46,0.00000028681525898896404;47,0.00000038937344250622997;48,0.0000007830925707547171;49,0.0000005006229975080099;50,0.0000009525743147027411;51,0.0000006779269757920968;52,0.0000006718430157529371;53,0.00000077874688501246;54,0.00000083437166251335;55,0.0000005632008721965113;56,0.00000045368959149163416;57,0.00000038937344250623;58,0.000000898687811498754;59,0.000001065562144001424;60,0.0000009099865944286224;61,0.0000010238435608757568;62,0.0000005632008721965112;63,0.0000007900456679423283;64,0.0000012306982022071914;65,0.000001899933806514774;66,0.0000026395695198469205;67,0.0000018616917719829123;68,0.000002082452607689569;69,0.000002456181581523674;70,0.0000015062146782662868;71,0.0000018616917719829123;72,0.0000015192517354930582;73,0.000001339340345763617;74,0.0000015018689925240302;75,0.0000018573460862406553;76,0.000001626155604752581;77,0.0000024735643244927022;78,0.0000022006552598789606;79,0.0000022545417630829476;80,0.0000021528527167141332;81,0.000002122432916518334;82,0.0000022580183116767533;83,0.0000035408647427910285;84,0.0000025170211819152723;85,0.0000033887657418120333;86,0.0000029785330077429694;87,0.0000026873720630117482;88,0.0000028047055780526877;89,0.0000022562800373798504;90,0.000003313150809896761;91,0.000003429615187789249;92,0.0000029837478306336776;93,0.0000029689724991100035;94,0.000003042849156728373;95,0.0000024440136614453544;96,0.000002869890864186543;97,0.0000025822064680491277;98,0.0000014106095919366324;99,0.000001867775732022072;100,0.0000021337316994482027;101,0.0000022249911000356;102,0.000001899933806514774;103,0.0000014792714266642935;104,0.000001289799528301887;105,0.000001119448647205411;106,0.000000787438256496974;107,0.000000731813478996084;108,0.00000100124599501602;109,0.0000005127909175863297;110,0.0000008943421257564969;111,0.0000005006229975080099;112,0.0000008943421257564969;113,0.00000038937344250622997;114,0.0000008343716625133497;115,0.00000094562121751513;116,0.0000019468672125311502;117,0.0000021172180936276253;118,0.0000016131185475258098;119,0.0000027812388750445;120,0.000002297998620505518;121,0.0000015574937700249197;122,0.0000025031149875400496;123,0.0000016687433250267001;124,0.00000016687433250267;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0.00000023640530437878252;5,0.00000011820265218939126;6,0;7,0.00000016687433250267;8,0.00000016687433250267;9,0.00000012863229797080813;10,0.00000011994092648629405;11,0.00000027812388750445;12,0.00000033374866500534;13,0.0000010568707725169102;14,0.0000011124955500178;15,0.0000007231221075115699;16,0.0000004449982200071199;17,0.0000011124955500178;18,0.0000006118725525097899;19,0.00000100124599501602;20,0.0000011681203275186902;21,0.00000200249199003204;22,0.00000228061587753649;23,0.0000025587397650409395;24,0.0000021693663225347102;25,0.00000300373798504806;26,0.00000328186187255251;27,0.0000022249911000356;28,0.00000283686365254539;29,0.0000022249911000355997;30,0.0000022249911000356;31,0.00000228061587753649;32,0.00000183561765752937;33,0.0000012793698825204698;34,0.0000011124955500177999;35,0.0000010012459950160199;36,0.00000139061943752225;37,0.00000189124243503026;38,0.0000027812388750444995;39,0.00000239186543253827;40,0.0000016687433250266995;41,0.0000017799928800284797;42,0.00000183561765752937;43,0.0000012237451050195803;44,0.00000066749733001068;45,0.0000009108557315770737;46,0.0000007996061765752937;47,0.0000007439813990744038;48,0.0000006883566215735139;49,0.0000003893734425062301;50,0.0000015574937700249205;51,0.0000017799928800284803;52,0.0000017243681025275902;53,0.00000272561409754361;54,0.00000305936276254895;55,0.00000255873976504094;56,0.00000344873620505518;57,0.0000029481132075471697;58,0.00000205811676753293;59,0.00000155749377002492;60,0.0000022249911000356;61,0.00000311498754004984;62,0.00000266998932004272;63,0.00000216936632253471;64,0.00000139061943752225;65,0.0000019642499555001783;66,0.0000017678249599501607;67,0.0000015922592559629762;68,0.0000014427676664293343;69,0.0000009073791829832681;70,0.0000006744504271982912;71,0.0000007856999822000712;72,0.0000009456212175151302;73,0.00000116812032751869;74,0.0000006118725525097899;75,0.0000008343716625133501;76,0.0000006814035243859024;77,0.0000007509344962620151;78,0.0000007370283018867926;79,0.0000014253849234603065;80,0.0000021763194197223214;81,0.0000033374866500534002;82,0.0000033513928444286225;83,0.000002920300818796725;84,0.0000013489008543965826;85,0.0000005006229975080099;86,0.00000088999644001424;87,0.00000133499466002136;88,0.0000016756964222143112;89,0.000001519251735493058;90,0.0000017400125711997152;91,0.00000205811676753293;92,0.000002920300818796725;93,0.000002697801708793165;94,0.000003636469829120684;95,0.000005220037713599146;96,0.000004656836841402635;97,0.0000031427999288002847;98,0.0000037963910644357425;99,0.000004032796368814524;100,0.000005362576205945175;101,0.0000061813033997864;102,0.000004616856532573869;103,0.00000383810964756141;104,0.0000035738919544321825;105,0.0000019121017265930937;106,0.0000025378804734781057;107,0.0000012863229797080813;108,0.0000014462442150231399;109,0.00000194686721253115;110,0.000002461396404414382;111,0.0000017313211997152011;112,0.000003511314079743681;113,0.0000025587397650409395;114,0.000005729352082591669;115,0.000008858245817016731;116,0.000017612195176219296;117,0.000021213899519401926;118,0.000018314457992168033;119,0.00001752180491278035;120,0.000013765394157173371;121,0.000011808097298860805;122,0.000018344008655215378;123,0.0000224984842248131;124,0.00002642872241011036;125,0.00003083003292986828;126,0.000024758240810786756;127,0.00002258365966536134;128,0.00002314686053755785;129,0.00003292986828052688;130,0.000042386080455678175;131,0.00005763422258810966;132,0.0000742868903524386;133,0.00007289627091491634;134,0.00005850335973656106;135,0.000034097988608045574;136,0.00001828664560341759;137,0.000017523543187077252;138,0.000022501960773406912;139,0.000020485562588999646;140,0.000015185564257742972;141,0.00001529681381274475;142,0.000014629316482734073;143,0.000014851815592737632;144,0.0000083437166251335;145,0.0000077874688501246;146,0.00000589622641509434;147,0.000005951851192595229;148,0.0000094562121751513;149,0.000009789960840156639;150,0.000006841847632609469;151,0.0000037824848700605202;152,0.0000029481132075471697;153,0.00000233624065503738;154,0.00000300373798504806;155,0.0000037824848700605202;156,0.0000043943574225703095;157,0.00000344873620505518;158,0.0000027812388750445004;159,0.00000211374154503382;160,0.00000433873264506942;161,0.0000038937344250623005;162,0.00000266998932004272;163,0.00000328186187255251;164,0.0000035043609825560695;165,0.0000033374866500534002;166,0.00000261436454254183;167,0.0000007231221075115698;168,0.0000010568707725169098;169,0.0000005562477750088999;170,0.00000033374866500533997;171,0.0000002781238875044499;172,0.0000007231221075115698;173,0.0000006118725525097899;174,0;175,0.00000011124955500177995;176,0;177,0.00000022249911000355994;178,0.0000002224991100035599;179,0.00000088999644001424;180,0.00000133499466002136;181,0.0000008343716625133502;182,0;183,0.00000077874688501246;184,0.00000066749733001068;185,0.0000005562477750089001;186,0.00000033374866500534;187,0.00000211374154503382;188,0.00000250311498754005;189,0.0000019468672125311502;190,0.00000189124243503026;191,0.00000072312210751157;192,0.00000005562477750089;193,0.00000016687433250266998;194,0.00000127936988252047;195,0.00000244749021003916;196,0.00000228061587753649;197,0.0000016131185475258102;198,0.00000216936632253471;199,0.00000305936276254895;200,0.0000028924884300462798;201,0.0000027256140975436105;202,0.0000022249911000355997;203,0.0000020024919900320397;204,0.00000177999288002848;205,0.00000194686721253115;206,0.0000028368636525453903;207,0.0000021693663225347107;208,0.0000021693663225347102;209,0.00000144624421502314;210,0.00000177999288002848;211,0.00000083437166251335;212,0.0000002224991100035599;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:sapphire_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0.000002278969091360477;37,0.0000034184536370407154;38,0.000002278969091360477;39,0.0000011394845456802384;40,0;41,0.000006087497035262094;42,0.0000015218742588155235;43,0.0000011394845456802384;44,0.000002278969091360477;45,0;46,0.000003043748517631047;47,0.000003043748517631047;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0.000004613353844516952;59,0.000003460015383387714;60,0;61,0;62,0;63,0;64,0;65,0;66,0.000002278969091360477;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:aluminum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0.000000055624777500890004;63,0.00000011124955500178003;64,0.0000005562477750089;65,0.00000033374866500534;66,0.0000007231221075115702;67,0.0000008378482111071557;68,0.0000006362083926664293;69,0.0000006240404725881097;70,0.0000006674973300106799;71,0.00000045368959149163416;72,0.0000006362083926664293;73,0.0000008500161311854755;74,0.00000033374866500534;75,0.00000028507698469206126;76,0.00000038937344250623;77,0.0000006761887014951941;78,0.0000005006229975080099;79,0.0000006118725525097899;80,0.00000033374866500534;81,0.00000038937344250622997;82,0.0000011227740415125295;83,0.0000009803867034531865;84,0.0000008204654681381276;85,0.0000007561493191527235;86,0.0000007996061765752939;87,0.000000806559273762905;88,0.0000008621840512637949;89,0.0000006257787468850124;90,0.000000770055513527946;91,0.000000568340117943876;92,0.0000011173324871917904;93,0.000002730798689576981;94,0.0000009747184177024162;95,0.0000010858923955608524;96,0.0000005006229975080099;97,0.00000039284999110003554;98,0.0000007309443418476326;99,0.0000005736305179779281;100,0.0000004076253226237095;101,0.00000028246957324670703;102,0.00000033374866500534;103,0.0000005214822890708437;104,0.0000004032796368814525;105,0.0000004102327340690637;106,0;107,0.00000011124955500178;108,0.00000016687433250266998;109,0.0000006918331701673194;110,0.00000041189543122262294;111,0.00000005562477750088999;112,0.00000011994092648629408;113,0;114,0.00000006771712043586609;115,0.0000003501866936825731;116,0.0000008193695995596451;117,0.0000009262734688191681;118,0.0000007473067933815221;119,0.0000007231221075115699;120,0.0000007787468850124599;121,0.0000010012459950160199;122,0.0000011124955500177999;123,0.0000012393139965483616;124,0.000000844801308294767;125,0.000001140307938768245;126,0.0000020667325618741006;127,0.0000009681432062315228;128,0.00000105687077251691;129,0.0000013591793458913122;130,0.000001816269908833408;131,0.0000026365842226848486;132,0.000003487885165307165;133,0.00000309337247705357;134,0.0000025905199538169238;135,0.0000010012459950160199;136,0.00000061187255250979;137,0.0000006046171467488042;138,0.0000011294248301267665;139,0.0000013083915055644126;140,0.0000008948333771882305;141,0.0000013277392542603744;142,0.0000008706486913182782;143,0.0000004449982200071199;144,0.0000001703508810964756;145,0;146,0;147,0.00000011124955500178001;148,0.00000033722521359914564;149,0.0000003407017621929513;150,0;151,0.00000005910132609469563;152,0;153,0.00000011124955500177998;154,0;155,0;156,0;157,0;158,0;159,0.00000011820265218939126;160,0.00000023640530437878252;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0;171,0;172,0;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0;189,0;190,0;191,0.00000013543424087173218;192,0.00000006771712043586609;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:uranium_ore", + "distrib": "0,0;1,0.00015346876112495552;2,0.00018812299750801;3,0.0002192728729085084;4,0.0002893044677821289;5,0.0003467648629405483;6,0.00038903969384122464;7,0.0004255295478818085;8,0.000467248131007476;9,0.0004893311676753293;10,0.0004831011925952297;11,0.0005379472232111071;12,0.0006419099323602706;13,0.0007421457814168744;14,0.0008187967248131007;15,0.000892443930224279;16,0.0009549661801352795;17,0.0010162646849412602;18,0.0011348010857956568;19,0.0012151232645069422;20,0.0012098389106443574;21,0.0012127870238519047;22,0.0012527256140975435;23,0.001296613563545746;24,0.001313690370238519;25,0.0013629182983268067;26,0.001405860626557494;27,0.0014380673727305091;28,0.0014845140619437521;29,0.001500867746529014;30,0.0015032039871840513;31,0.0015523206657173372;32,0.0016294722321110715;33,0.0016976682093271626;34,0.001727816838732645;35,0.0017490098789604844;36,0.0017824403702385192;37,0.0018409020113919546;38,0.0019024786400854395;39,0.0019001423994304024;40,0.0018489676041295836;41,0.0018174839800640798;42,0.0017873909754360982;43,0.0017576317194731223;44,0.0017003938234247064;45,0.0016239097543609825;46,0.0015444775720897118;47,0.0014812878248487008;48,0.001386558828764685;49,0.0013467871128515487;50,0.0013479552331790673;51,0.0013524052153791387;52,0.001296001690993236;53,0.001225191349234603;54,0.0012037201851192595;55,0.0011455366678533286;56,0.001042630829476682;57,0.000979941705233179;58,0.0009702073691705234;59,0.000946678088287647;60,0.0009295456568173728;61,0.0008691371484514062;62,0.0008160711107155572;63,0.0007806937522249911;64,0.0007445932716269134;65,0.0005943507475970096;66,0.0004638550195799217;67,0.0003568885724457103;68,0.0002525364898540406;69,0.00018000177999288004;70,0.0000990677287290851;71,0.000048449181203275187;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.000011550964390365923;55,0.0000023101928780731846;56,0;57,0;58,0;59,0;60,0.000004620385756146369;61,0;62,0;63,0.0000015045043875518154;64,0.0000015045043875518154;65,0.0000030090087751036307;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0.000004513513162655446;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:sulfur_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.00000322623709505162;46,0.00002825738697045212;47,0.00007915405838376647;48,0.0001256563723745105;49,0.00016993369526521895;50,0.00022528034887860448;51,0.00027957013171947315;52,0.00034259300462798146;53,0.0003931003025987896;54,0.00041718583125667497;55,0.0004612962798148807;56,0.0005031817372730509;57,0.0005636458704165184;58,0.000605865076539694;59,0.0006480842826628694;60,0.0007087709149163403;61,0.0007642844428622285;62,0.0008215779636881452;63,0.0008436053755784978;64,0.0008567884478462087;65,0.0008235248309006763;66,0.0007350814346742613;67,0.0006440792986828053;68,0.0005414515841936633;69,0.0004074514951940192;70,0.00028251824492702034;71,0.00014607066571733715;72,0;73,0.00000011124955500178;74,0.00000022249911000355996;75,0.00000016687433250266996;76,0;77,0;78,0.00000011124955500177997;79,0.00000027812388750444997;80,0.00000005562477750088999;81,0.00000016687433250266998;82,0.00000011124955500177998;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000022249911000355996;28,0.00000022249911000356001;29,0.00000011124955500177998;30,0;31,0;32,0.00000028681525898896404;33,0.0000007917839422392311;34,0.0000005645904186252083;35,0.0000005555503192724885;36,0.000000055624777500890004;37,0;38,0;39,0.0000005006229975080099;40,0.00000066749733001068;41,0.00000027812388750444997;42,0.00000011124955500177998;43,0.00000022249911000355996;44,0.00000033374866500534;45,0.0000006882680983454308;46,0.0000006292552954788182;47,0.0000008517544054823781;48,0.0000003893734425062299;49,0.00000045709056294209604;50,0.00000038937344250622997;51,0.0000003476548593805625;52,0.0000003476548593805625;53,0.00000035460795656817384;54,0.00000033374866500533997;55,0.00000022249911000356;56,0.00000027812388750445;57,0.0000003928499911000356;58,0.0000005006229975080099;59,0.00000050062299750801;60,0.0000005006229975080099;61,0.00000033374866500533997;62,0.00000022249911000356;63,0.00000033374866500534;64,0.00000033374866500534;65,0.00000038937344250622997;66,0.00000034070176219295115;67,0.00000022249911000355996;68,0.0000006581085027897544;69,0.00000038467902889576714;70,0.0000011493882759519116;71,0.0000007019945637424242;72,0.0000005127909175863297;73,0.00000039284999110003564;74,0.00000027812388750444997;75,0.00000027812388750445;76,0.0000003372252135991456;77,0.0000005075760946956213;78,0.00000042761547703809194;79,0.0000006327318440726238;80,0.0000004345685742257031;81,0.00000028507698469206126;82,0.0000007144307360270559;83,0.0000011436333330753633;84,0.0000012270704993266982;85,0.0000007265986561053756;86,0.0000011785499733001069;87,0.000000737897439035244;88,0.0000005640700093449627;89,0.0000007231221075115699;90,0.0000011472610359558562;91,0.0000009282384745461019;92,0.000001037749755250979;93,0.0000007103452549249217;94,0.000000779725072514347;95,0.0000009280873202594147;96,0.0000013071066941275715;97,0.0000006188256496974012;98,0.000000797867902278391;99,0.0000005852619336436235;100,0.00000017122001824492702;101,0.0000006084603844454993;102,0.00000010519778522737763;103,0.00000011124955500177998;104,0.0000002466837958735121;105,0.00000030665425911665915;106,0.00000027812388750445;107,0.00000044499822000712;108,0.0000003893734425062299;109,0.00000022249911000356;110,0.0000003893734425062299;111,0.00000011124955500177997;112,0.00000006771712043586609;113,0.0000004014657854412061;114,0.00000033374866500533997;115,0.00000016687433250266998;116,0.00000050062299750801;117,0.00000033374866500533997;118,0.0000005562477750089;119,0.0000007943913536845853;120,0.00000072312210751157;121,0.0000005006229975080099;122,0.00000022249911000356;123,0.00000022249911000355996;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:osmium_ore", + "distrib": "0,0;1,0.0006146537913848343;2,0.0007674550551797794;3,0.0009219806870772518;4,0.001057315770736917;5,0.001251446244215023;6,0.00143311676753293;7,0.0015668943574225704;8,0.0017280393378426488;9,0.0018953586685653257;10,0.002057059896760413;11,0.002254416607333571;12,0.002565692862228551;13,0.0029817661979352084;14,0.0033209660911356353;15,0.003530727127091492;16,0.00368814524741901;17,0.003820865966536134;18,0.0040229507831968676;19,0.004237829298682805;20,0.004411100480598077;21,0.004569631096475614;22,0.004772717159131364;23,0.004981977572089711;24,0.005096898362406552;25,0.005239798415806338;26,0.005374187878248487;27,0.00562438812744749;28,0.005778524385902457;29,0.005854785955856177;30,0.006016932182271272;31,0.006305902901388395;32,0.006439513616945532;33,0.00666624021003916;34,0.00687817061231755;35,0.007063957369170524;36,0.0072624822000712;37,0.007460228284086864;38,0.007639228818084728;39,0.007758933339266643;40,0.007788025097899609;41,0.007956957547169814;42,0.008246373264506944;43,0.008483167942328233;44,0.008526110270558919;45,0.00862629049483802;46,0.008933172392310432;47,0.009139540316838734;48,0.009138260946956212;49,0.009163403346386614;50,0.009107945443218229;51,0.00895681292274831;52,0.00867996840512638;53,0.008513483446066217;54,0.008361405304378781;55,0.008188968494126023;56,0.007921747063011748;57,0.007699526076895693;58,0.00752124866500534;59,0.0073304556781772865;60,0.007154903880384479;61,0.006993758899964401;62,0.006772817283730866;63,0.0065062077251691;64,0.006192984603061588;65,0.005311165005339978;66,0.0044595496618013535;67,0.003568941349234603;68,0.0027662758098967602;69,0.0020341424884300465;70,0.0013427265040939836;71,0.0006250000000000001;72,0.00000005562477750088999;73,0.00000016687433250267;74,0.0000011681203275186902;75,0.0000015574937700249197;76,0.00000088999644001424;77,0.00000077874688501246;78,0.0000007231221075115699;79,0.00000033374866500534;80,0;81,0.00000011124955500178;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:platinum_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0.00000005562477750089;31,0.0000007283369304022783;32,0.0000005440798549305802;33,0.0000007544110448558205;34,0.0000007787468850124599;35,0.0000013349946600213599;36,0.0000012498192194731221;37,0.0000019590351326094696;38,0.000002000753715735137;39,0.0000011264017443930225;40,0.0000010151521893912425;41,0.0000005701539693841225;42,0.0000010429645781416875;43,0.000001362807048771805;44,0.0000009525743147027411;45,0.000002708231354574582;46,0.0000028837970585617657;47,0.0000019955388928444286;48,0.0000011681203275186898;49,0.0000012967526254894982;50,0.0000014253849234603065;51,0.0000022910455233179074;52,0.000003023728139462442;53,0.000002469218638750445;54,0.0000016965557137771453;55,0.000002563954587931648;56,0.0000020181364587041657;57,0.0000019712030526877894;58,0.0000017713015085439663;59,0.000001866906594873621;60,0.000002077237784798861;61,0.0000010777300640797438;62,0.0000032001629805980775;63,0.0000025274508276966892;64,0.000005207869793520826;65,0.000004498653880384479;66,0.0000033392249243503027;67,0.000002118956367924528;68,0.0000029411601103595585;69,0.0000032192839978640093;70,0.000003249703798059808;71,0.0000024318457413670346;72,0.00000116812032751869;73,0.0000015018689925240298;74,0.000002186749065503738;75,0.0000016687433250266997;76,0.00000239186543253827;77,0.0000027742857778568884;78,0.000003372252135991456;79,0.0000025239742791028835;80,0.0000014114787290850838;81,0.0000022362898829654685;82,0.000004064085306158776;83,0.0000022354207458170166;84,0.000002065069864720541;85,0.0000026873720630117482;86,0.0000026317472855108583;87,0.000003959788848344607;88,0.000002464872953008188;89,0.0000015574937700249199;90,0.0000021693663225347102;91,0.00000050062299750801;92,0.00000005562477750089001;93,0.00000016687433250266998;94,0.0000003337486650053401;95,0.00000027812388750444997;96,0.00000050062299750801;97,0.00000016687433250266998;98,0.00000038937344250622997;99,0.00000038937344250622997;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:silver_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0.00000035113140797436817;28,0.0000006422923527055892;29,0.0000005266971119615522;30,0.0000007874382564969741;31,0.00000105687077251691;32,0.0000011368313901744392;33,0.0000007822234336062656;34,0.0000007318134789960841;35,0.0000007405048504805982;36,0.0000003980648139907441;37,0.00000061187255250979;38,0.0000010012459950160199;39,0.0000024474902100391597;40,0.0000036503760234959062;41,0.000002231944197223211;42,0.0000025839447423460306;43,0.00000352261286267355;44,0.000003898949247953008;45,0.000003199293843449627;46,0.0000044499822000712;47,0.0000052287290850836606;48,0.000004263117713154147;49,0.0000031480147516909934;50,0.0000022927837976148094;51,0.0000037651021270914926;52,0.000007149522183161268;53,0.000007182549394802421;54,0.000002871629138483446;55,0.000003650376023495906;56,0.00000283686365254539;57,0.000003542603017087932;58,0.000004220529992880029;59,0.000003834633098967605;60,0.0000035860598745105023;61,0.0000049758101748843;62,0.000004390880873976505;63,0.000004520382309095764;64,0.00001029753693485226;65,0.000010219314591491634;66,0.000011821134356087576;67,0.000012951881786222855;68,0.000009068577006941974;69,0.000012145322512459952;70,0.000013007506563723747;71,0.000011067592448380208;72,0.000005997915461463154;73,0.000006747111683428266;74,0.000008889534754360982;75,0.000011965411122730511;76,0.000011240550740922035;77,0.000009591797570309718;78,0.000010752095663492347;79,0.00000870267026744393;80,0.000008701801130295478;81,0.000008761771593538626;82,0.000010712984491812032;83,0.00001172552926975792;84,0.000011285745872641509;85,0.00000929629093983624;86,0.000009683056970897115;87,0.000010889419332947667;88,0.000010223660277233891;89,0.00001035837653524386;90,0.000007800505907351371;91,0.00001043225319286223;92,0.000011590813011747954;93,0.00001202711986027056;94,0.000010489616244660021;95,0.000008934729886080455;96,0.000007421562110626557;97,0.000008122086652278392;98,0.000007752703364186545;99,0.000004901933517265931;100,0.000003259264306692773;101,0.0000037546724813100753;102,0.000003006345396493414;103,0.000003546079565681739;104,0.0000018338793832324671;105,0.0000012863229797080813;106,0.0000006814035243859025;107,0.0000012063623620505518;108,0.0000011472610359558564;109,0.000001301098311231755;110,0.0000008343716625133501;111,0.00000016687433250267;112,0.00000017556570398718408;113,0.00000011124955500178;114,0.000000680534387237451;115,0.00000027812388750444997;116,0.00000005562477750089;117,0;118,0.00000005910132609469563;119,0.00000005910132609469563;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0.00000011820265218939123;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000019121017265930937;25,0.00000038242034531861874;26,0.00000043804512281950874;27,0.00000038242034531861874;28,0.00000038242034531861874;29,0.0000007144307360270559;30,0.000000712692461730153;31,0.0000008552309540761836;32,0.0000008552309540761836;33,0.0000001425384923460306;34,0;35,0.0000002868152589889641;36,0;37,0;38,0;39,0.00000011124955500178;40,0;41,0;42,0;43,0.0000000950256615640204;44,0.00000011820265218939126;45,0;46,0.00000019121017265930937;47,0;48,0.0000017208915539337842;49,0.0000029237773673905305;50,0.0000034417831078675685;51,0.000005449489920790317;52,0.0000014340762949448203;53,0;54,0;55,0;56,0;57,0.00000011994092648629408;58,0.00000008691371484514062;59,0;60,0;61,0;62,0;63,0.00000017382742969028122;64,0;65,0.0000005058378203987185;66,0.0000014862245238519046;67,0.0000012046240877536492;68,0.0000014027873576005698;69,0.00000041718583125667503;70,0;71,0;72,0.00000009502566156402041;73,0.0000001425384923460306;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0.00000016687433250267;85,0.0000005805836151655394;86,0.0000011472610359558564;87,0.0000008604457769668921;88,0.0000008604457769668921;89,0.0000014340762949448203;90,0;91,0;92,0;93,0.00000022249911000356001;94,0;95,0;96,0;97,0;98,0;99,0.0000006205639239943038;100,0.0000005006229975080098;101,0.0000011124955500177994;102,0.0000013906194375222496;103,0.0000007874382564969739;104,0.0000008482778568885722;105,0.0000012040446629880144;106,0.000000629255295478818;107,0.0000006083960039159843;108,0.0000003476548593805625;109,0;110,0;111,0;112,0.00000011820265218939126;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0.00000016687433250267;156,0.00000044499822000712;157,0.00000011124955500178;158,0;159,0;160,0;161,0.00000011124955500178;162,0.00000011124955500178;163,0;164,0.0000003838326931848523;165,0;166,0;167,0;168,0.00000019191634659242614;169,0.00000019191634659242614;170,0;171,0;172,0;173,0;174,0;175,0.00000011124955500178;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0.00000011124955500178;185,0;186,0;187,0;188,0.00000011124955500178;189,0.00000011124955500178;190,0;191,0.00000011124955500178;192,0;193,0;194,0;195,0.0000003031659015942062;196,0.00000011124955500178;197,0.00000011124955500178;198,0.0000003031659015942062;199,0;200,0.00000011124955500178;201,0;202,0;203,0;204,0.00000022249911000356;205,0;206,0.00000011124955500178;207,0.00000011124955500178;208,0.00000019191634659242614;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.0000004728106087575651;30,0.0000012721144767594843;31,0.0000008899964400142402;32,0.00000066749733001068;33,0.000000699655404503382;34,0.0000006162182382520469;35,0.00000022249911000356001;36,0.00000038937344250622997;37,0.00000027086848174346436;38,0.00000039806481399074405;39,0.0000005788453408686365;40,0.0000004102327340690638;41,0.0000006674973300106799;42,0.0000004032796368814525;43,0.0000008004753137237451;44,0.0000009421446689213244;45,0.00000038937344250623;46,0.00000043471972851239033;47,0.0000007666545420774839;48,0.00000033809435074759703;49,0.00000033374866500534;50,0.0000006814035243859025;51,0.0000005075760946956212;52,0.0000007370283018867923;53,0.000000731813478996084;54,0.0000006188256496974013;55,0.0000004405769571215194;56,0.000000707402061696101;57,0.0000010394880295478817;58,0.0000006866939244199545;59,0.00000029898317906728373;60,0.00000017382742969028125;61,0.00000016687433250266998;62,0.0000002781238875044499;63,0.00000018954747550575016;64,0.0000001825188011747953;65,0.0000002294522071911712;66,0.0000007265986561053756;67,0.0000006918331701673193;68,0.0000010551324982200075;69,0.0000003267955678177287;70,0.0000001251557493770025;71,0.00000040241049973300106;72,0.00000023119048148807403;73,0.00000005562477750089;74,0.00000005562477750089001;75,0.00000018078052687789249;76,0.0000004606426886792454;77,0.00000005562477750088999;78,0.00000005562477750088999;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0.000000055624777500890004;92,0.00000022249911000356001;93,0.00000044499822000712003;94,0.0000004623809629761481;95,0.00000028855353328586693;96,0.0000003546079565681738;97,0.0000003546079565681738;98,0.0000001773039782840869;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "thermal:cinnabar_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.0000005562477750088999;46,0.0000062855998576005695;47,0.00001251557493770025;48,0.000026199270202919187;49,0.00003470986116055536;50,0.00004144045923816305;51,0.000046836062655749374;52,0.00005968538625845497;53,0.00006691660733357068;54,0.00007386970452118192;55,0.0000833815414738341;56,0.00009372775008899964;57,0.00010629894980420079;58,0.00011364142043431827;59,0.0001189257742969028;60,0.00013144134923460306;61,0.00014100881096475615;62,0.00014406817372730507;63,0.00016186810252758992;64,0.00015830811676753294;65,0.0001507431470274119;66,0.00013622508009967962;67,0.00011564391242435031;68,0.00009534086863652545;69,0.00007720719117123532;70,0.000051731043075827705;71,0.00002831301174795301;72,0;73,0;74,0;75,0;76,0.00000005562477750088999;77,0;78,0.00000011124955500177998;79,0.000000055624777500889984;80,0.000000055624777500889984;81,0;82,0.000000055624777500889984;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.0019350747597009612;2,0.001884178088287647;3,0.001888572445710217;4,0.001876613118547526;5,0.0018407351370594515;6,0.0018177064791740835;7,0.0018062477750089;8,0.0017839422392310431;9,0.0017316549483802064;10,0.001669243948024208;11,0.0016585639907440374;12,0.0016310297258810965;13,0.001594428622285511;14,0.0015833592915628339;15,0.0015593293876824492;16,0.0015522094161623352;17,0.0015440325738697047;18,0.001507765218939124;19,0.001491355909576362;20,0.001468438501245995;21,0.0014566460484158065;22,0.001409809985760057;23,0.001357578319686721;24,0.0013485114809540764;25,0.0013336040405838377;26,0.0013097966358134566;27,0.0012928867034531864;28,0.001280371128515486;29,0.0012650743147027412;30,0.001241433784264863;31,0.001199492702029192;32,0.0011709015663937344;33,0.0011671747063011747;34,0.0011774096653613389;35,0.0011628359736561055;36,0.0011293498576005697;37,0.00109936810252759;38,0.001103428711285155;39,0.0010626001245995016;40,0.001013372196511214;41,0.001038180847276611;42,0.001025943396226415;43,0.0010203809184763262;44,0.0009868391776432894;45,0.0009595830366678532;46,0.000978940459238163;47,0.0009392243681025276;48,0.0009232044321822713;49,0.0009056826272694911;50,0.0008968382876468495;51,0.0008536734603061589;52,0.0008354285332858669;53,0.0008199092203631186;54,0.0008083948914204344;55,0.0007630050729797082;56,0.0007356376824492703;57,0.0007193396226415095;58,0.0006706679423282306;59,0.0005272672659309362;60,0.0003919321822712709;61,0.0003536623353506586;62,0.00034337175151299395;63,0.0003063256496974012;64,0.0002800151299394803;65,0.00023345719117123532;66,0.00018751112495550017;67,0.00013655882876468495;68,0.00010902456390174438;69,0.00007214533641865432;70,0.00004333170167319331;71,0.00001919054823780705;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:tin_ore", + "distrib": "0,0;1,0.00012248576005695978;2,0.00016548371306514774;3,0.00018834549661801353;4,0.00020280793876824494;5,0.00024575026699893206;6,0.0002884144713421146;7,0.0003379761480954076;8,0.00035839044143823426;9,0.00037924973300106806;10,0.00042185831256674977;11,0.0004888861694553222;12,0.0005442328230687078;13,0.0005985226059095764;14,0.0006521448914204343;15,0.000706935297258811;16,0.0007603350836596654;17,0.0007836974902100391;18,0.0008175173549305802;19,0.0008431603773584905;20,0.000877369615521538;21,0.0009085194909220363;22,0.0009608067817728728;23,0.0009669811320754717;24,0.0009872285510857956;25,0.0010338421146315413;26,0.0011061543253826985;27,0.001172236561053756;28,0.0012219094873620506;29,0.0012341469384122463;30,0.001238875044499822;31,0.001243992524029904;32,0.0012647405660377359;33,0.0013453964934140262;34,0.0013367190281238874;35,0.001360303933784265;36,0.0014453542185831256;37,0.0015227839088643646;38,0.001529681381274475;39,0.0015138839444642223;40,0.001550818796724813;41,0.0016160666607333571;42,0.0016566727483090069;43,0.0016566727483090069;44,0.0016984469562121754;45,0.0017293187077251691;46,0.001789560341758633;47,0.0017978484336062656;48,0.001811754627981488;49,0.0018261614453542185;50,0.0018401232645069419;51,0.0018884611961552155;52,0.00194937032751869;53,0.001995372018511926;54,0.00200560697757209;55,0.0020331412424350304;56,0.0020964978640085436;57,0.0021633032217871126;58,0.0022027968138127445;59,0.0022510791206835174;60,0.002314491367034532;61,0.002326005695977216;62,0.0023146026165895336;63,0.002292630829476682;64,0.002327285065859736;65,0.002079476682093272;66,0.0018257720719117125;67,0.00154748131007476;68,0.0012649630651477394;69,0.0009391131185475258;70,0.0006198825204699181;71,0.0003237362050551798;72,0.00000022249911000355994;73,0.00000016687433250267;74,0.00000022249911000355996;75,0.00000038937344250622997;76,0.00000044499822000712;77,0.00000005562477750089002;78,0;79,0.00000022249911000356;80,0.0000005562477750089;81,0.00000038937344250623;82,0.00000033374866500534;83,0.0000002781238875044499;84,0.0000002781238875044499;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0.00000005562477750089;97,0.00000005562477750089;98,0.00000005562477750088999;99,0.00000005562477750088999;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0.00000011124955500178003;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "forbidden_arcanus:stella_arcanum", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0.000018912424350302603;19,0.00003815859736561054;20,0.00003693485226059097;21,0.000034431737273050915;22,0.000037880473478106084;23,0.00003420923816304736;24,0.00003415361338554646;25,0.00003537735849056604;26,0.00003771359914560342;27,0.00003415361338554645;28,0.000032707369170523324;29,0.00003459861160555358;30,0.000036044855820576715;31,0.00003743547525809897;32,0.000034320487718049124;33,0.00003610048059807761;34,0.00003776922392310431;35,0.00003426486294054824;36,0.00003365299038803845;37,0.00003348611605553578;38,0.00003521048415806337;39,0.00003515485938056249;40,0.000035043609825560705;41,0.000035711107155571374;42,0.00003259611961552153;43,0.00003565548237807049;44,0.000034487362050551794;45,0.00003610048059807761;46,0.00003565548237807048;47,0.000036044855820576715;48,0.00003426486294054824;49,0.00003432048771804913;50,0.00003365299038803845;51,0.000034876735493058035;52,0.00003437611249555002;53,0.00003331924172303311;54,0.00003582235671057316;55,0.00003648985404058384;56,0.0000339311142755429;57,0.00003476548593805625;58,0.00003153924884300463;59,0.00003309674261302955;60,0.00003437611249555002;61,0.00003304111783552866;62,0.000033374866500534;63,0.00003320799216803132;64,0.00003270736917052332;65,0.00002859113563545746;66,0.000026254894980420086;67,0.0000216936632253471;68,0.00001585306158775365;69,0.000011291829832680669;70,0.00000817684229263083;71,0.00000394935920256319;72,0;73,0;74,0;75,0.00000005562477750089001;76,0.00000005562477750089;77,0.00000005562477750089001;78,0;79,0.00000011124955500178003;80,0;81,0.00000005562477750089;82,0.00000005562477750088999;83,0;84,0.00000011124955500178002;85,0;86,0;87,0.00000005562477750089;88,0;89,0.00000005562477750089;90,0.00000016687433250267;91,0.00000027812388750445;92,0.00000005562477750089;93,0;94,0.00000005562477750089;95,0;96,0.000000055624777500889964;97,0.000000055624777500889984;98,0;99,0.00000005562477750089;100,0.00000011124955500177998;101,0.00000011124955500178;102,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0.000011180580277678889;46,0.00006313412246351015;47,0.00015269001423994305;48,0.00025581835172659305;49,0.00037274163403346386;50,0.00048410243859024565;51,0.0005737139551441795;52,0.0006906372374510503;53,0.0007998286756852973;54,0.000903680135279459;55,0.0009843916874332503;56,0.0010838487896048417;57,0.0012226882342470631;58,0.0013551308294766822;59,0.001441738608045568;60,0.0015335751156995373;61,0.0016336440904236383;62,0.0017022850658597367;63,0.0017779347632609467;64,0.0018964155393378429;65,0.0017488986294054824;66,0.0015602193841224637;67,0.0013722076361694555;68,0.0011600547347810609;69,0.0009164182093271628;70,0.0006278368636525454;71,0.00032101059095763617;72,0.00000011124955500178;73,0.00000011124955500177998;74,0.00000016687433250267;75,0.00000027812388750445;76,0.00000033374866500533997;77,0.00000011124955500177998;78,0;79,0.00000016687433250267;80,0.0000004449982200071199;81,0.00000033374866500534;82,0.00000027812388750445;83,0.0000006118725525097899;84,0.00000033374866500533997;85,0.00000027812388750444997;86,0.00000022249911000356;87,0.00000005562477750089001;88,0;89,0;90,0;91,0;92,0.00000005562477750089;93,0.00000005562477750089;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0.00000005562477750088999;103,0.00000005562477750088999;104,0;105,0.00000005562477750088999;106,0.00000005562477750088999;107,0;108,0;109,0;110,0.00000011124955500178002;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0.00000011124955500178;128,0.00000022249911000356;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0.00000061187255250979;25,0.0000005562477750088999;26,0.00000027812388750444997;27,0;28,0;29,0.00000005562477750089;30,0.00000022249911000356001;31,0.0000005006229975080099;32,0.00000100124599501602;33,0.0000010099373665005337;34,0.00000218153424261303;35,0.0000017504422169811323;36,0.0000015018689925240302;37,0.0000018634300462798148;38,0.0000015088220897116413;39,0.0000022249911000356;40,0.0000031080344428622287;41,0.000003351392844428622;42,0.000003636469829120683;43,0.000002565692862228551;44,0.00000228061587753649;45,0.0000038381096475614106;46,0.000004408263616945532;47,0.000006344701183695266;48,0.0000035738919544321825;49,0.0000044560661601103596;50,0.00000561810252758989;51,0.000008436714300017801;52,0.000008412378459861162;53,0.00000798476298282307;54,0.00000810296563501246;55,0.000006494192773228907;56,0.000004084944597721609;57,0.00000354781783997864;58,0.000006140453953809185;59,0.0000065532940993236025;60,0.00000642118525275899;61,0.000004936699003203987;62,0.000004463888394446422;63,0.000005678072990833037;64,0.00001253469595496618;65,0.000008922561966002135;66,0.0000076032117746529015;67,0.000008663559095763618;68,0.000006827941438234247;69,0.00000793087647961908;70,0.000006750588232022072;71,0.00000843584516286935;72,0.000008959934863385547;73,0.000008284615299038805;74,0.000007126055480153081;75,0.000006596750956746174;76,0.00000608222176486294;77,0.000008448013082947668;78,0.00000816988919544322;79,0.000010026366144535422;80,0.000012536434229263085;81,0.000012436483457191172;82,0.000012772839533641867;83,0.000013489877681114275;84,0.000014268624566126735;85,0.000011381350958971162;86,0.000010029842693129227;87,0.000008305474590601638;88,0.000006546341002135991;89,0.000008441059985760058;90,0.000008141207669544324;91,0.000006262133154592382;92,0.000007397226270469919;93,0.000009793437388750448;94,0.000009415362729174083;95,0.000004489093371751514;96,0.0000033644299016553937;97,0.000003855492390530438;98,0.000004043226014595942;99,0.000004185764506941972;100,0.000004710723344606623;101,0.000004440421691438234;102,0.000004133616278034888;103,0.0000032792544611071556;104,0.0000020728920990566037;105,0.0000018390942061231758;106,0.00000066749733001068;107,0.00000027812388750444997;108,0.0000005006229975080101;109,0.00000011124955500178;110,0.0000012237451050195799;111,0.0000009456212175151301;112,0.0000014219083748665005;113,0.000000055624777500890004;114,0.00000050062299750801;115,0.00000177999288002848;116,0.00000200249199003204;117,0.0000011124955500178;118,0.00000088999644001424;119,0.0000007231221075115698;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:nickel_ore", + "distrib": "0,0;1,0.0006454699181203275;2,0.0006374043253826986;3,0.0006298393556425775;4,0.0006299506051975792;5,0.0006241100035599858;6,0.0006226081345674617;7,0.000622997508009968;8,0.0006163225347098611;9,0.0006068663225347098;10,0.0005958526165895336;11,0.0006128181737273051;12,0.0006770091669633322;13,0.0007345808116767532;14,0.0007556069775720897;15,0.0007539382342470632;16,0.0007542163581345674;17,0.0007551619793520826;18,0.0007572200961196156;19,0.0007506007475970096;20,0.0007553844784620861;21,0.0007527701139195443;22,0.0007296858312566749;23,0.0007104396582413671;24,0.0007053778034887861;25,0.0007206189925240299;26,0.0007275720897116412;27,0.0007232333570665718;28,0.0007334126913492347;29,0.0007416451584193664;30,0.0007368058027767889;31,0.000717559629761481;32,0.0006863541295834817;33,0.0006869103773584906;34,0.0006950315948736204;35,0.0006959215913136348;36,0.0006872441260234959;37,0.0006878559985760058;38,0.0006835728907084371;39,0.0006820710217159132;40,0.0006733379316482735;41,0.0006737829298682806;42,0.0006910266108935564;43,0.0007017065681737273;44,0.0006966447134211464;45,0.0006970340868636526;46,0.0006906372374510503;47,0.0006828497686009257;48,0.0006725035599857601;49,0.0006649942150231399;50,0.0006787335350658598;51,0.0006974790850836597;52,0.0006994815770736916;53,0.000702874688501246;54,0.0006997597009611961;55,0.0006967003381986472;56,0.0006987028301886794;57,0.000695365343538626;58,0.0006894691171235315;59,0.0006865210039159843;60,0.0006817928978284087;61,0.0006738385546457814;62,0.0005866745283018869;63,0.00047303310786756854;64,0.00037624599501602;65,0.00026149207903168386;66,0.00022439035243859029;67,0.00018528613385546458;68,0.00014668253826984694;69,0.00011436454254182984;70,0.00007631719473122108;71,0.000036990477038091846;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0.00000011124955500178;80,0.00000016687433250266998;81,0;82,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mysticalagriculture:inferium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.00028390886436454254;30,0.001506374599501602;31,0.0027273384656461373;32,0.0029929467782128876;33,0.00299500489498042;34,0.003037168476326095;35,0.003048794054823781;36,0.0030539671591313638;37,0.0030339422392310434;38,0.0029849924350302598;39,0.002978039337842649;40,0.0029463332146671415;41,0.0029495594517621932;42,0.0029334838910644364;43,0.0029630206479174083;44,0.0029365988786044855;45,0.002928644535421858;46,0.0029560119259522963;47,0.0029497263260946957;48,0.0028942684229263087;49,0.002920745817016732;50,0.0029205233179067287;51,0.002907062121751513;52,0.0029221364364542543;53,0.0028999977750089004;54,0.002917408330366679;55,0.002893489676041296;56,0.0028158374866500534;57,0.0028735203809184765;58,0.002902111516553934;59,0.0028933228017087934;60,0.0029249733001067996;61,0.002920690192239231;62,0.002892377180491278;63,0.002907228996084016;64,0.0028127781238875046;65,0.0024847031861872553;66,0.0021569619971520118;67,0.0017825516197935206;68,0.0014156505873976506;69,0.0010474145603417587;70,0.0007000378248487006;71,0.0003553310786756853;72,0.0000006118725525097899;73,0.0000003893734425062299;74,0.00000033374866500533997;75,0.00000038937344250622997;76,0;77,0;78,0.00000005562477750089;79,0.00000022249911000356;80,0.0000005562477750088999;81,0.0000004449982200071199;82,0.0000004449982200071199;83,0.0000005006229975080099;84,0.00000027812388750444997;85,0;86,0.00000005562477750089;87,0.00000016687433250266998;88,0.00000005562477750089;89,0;90,0.00000011124955500178;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.00000005562477750088999;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0.00000022249911000355996;123,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:lead_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0.0000023101928780731846;55,0.0000023101928780731846;56,0;57,0;58,0.0000023101928780731846;59,0.0000023101928780731846;60,0;61,0.000004620385756146369;62,0;63,0.000003119094461997666;64,0.0000012476377847990665;65,0.0000006238188923995333;66,0;67,0.0000006238188923995333;68,0.0000012476377847990665;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0.000006164798466065975;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0.0005382253470986116;2,0.0005398940904236384;3,0.0005426197045211819;4,0.0005380584727661089;5,0.0005265997686009255;6,0.0005240966536133856;7,0.0005165873086507654;8,0.0005287135101459594;9,0.0005269891420434318;10,0.0005020136169455321;11,0.0005092448380206479;12,0.0005205366678533287;13,0.0005191460484158064;14,0.0005086329654681381;15,0.0005012348700605198;16,0.0004913892844428622;17,0.000488997419010324;18,0.0004995105019579922;19,0.000498064257742969;20,0.0004804868280526878;21,0.0004762593449626202;22,0.00047097499110003557;23,0.00047848433606265583;24,0.0004714199893200427;25,0.000469250622997508;26,0.000471809362762549;27,0.000447000711997152;28,0.0004639662691349235;29,0.0004802087041651834;30,0.00048488118547525814;31,0.0005069642221431114;32,0.0005342203631185476;33,0.0005571933962264151;34,0.000600691972232111;35,0.0006392399430402278;36,0.0006368480776076896;37,0.0006832947668209328;38,0.0006988140797436811;39,0.0007174483802064792;40,0.0007555513527945888;41,0.0008034999110003559;42,0.0008307004271982913;43,0.0008448291206835173;44,0.0008696377714489143;45,0.0009049038803844785;46,0.0009214244393022429;47,0.0009482912068351727;48,0.0009377781238875044;49,0.0009846698113207548;50,0.0010317283730865076;51,0.0010735025809896761;52,0.0010932493770024919;53,0.0011137749199003203;54,0.0011248998754004986;55,0.0011546035065859736;56,0.0011859202563189748;57,0.001226303844784621;58,0.0012525587397650409;59,0.0012983379316482736;60,0.0013336040405838377;61,0.001365866411534354;62,0.001395681292274831;63,0.0014108668565325738;64,0.0013777701139195443;65,0.001190481488074048;66,0.0010073647205411178;67,0.0008281973122107511;68,0.0006425218049127804;69,0.0004702518689925241;70,0.00031249999999999995;71,0.00015146626913492344;72,0.00000022249911000355996;73,0;74,0.00000005562477750089001;75,0.00000005562477750089001;76,0;77,0;78,0.00000005562477750088999;79,0.00000005562477750088999;80,0.00000022249911000355994;81,0.000000055624777500889984;82,0;83,0.00000005562477750088999;84,0.00000022249911000355996;85,0;86,0;87,0;88,0;89,0.000000055624777500889964;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0.00000005562477750088999;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "mysticalagriculture:prosperity_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0.00000016687433250267004;23,0.00000005562477750089001;24,0;25,0;26,0.00000005562477750088999;27,0;28,0.00000005562477750089;29,0.00000027812388750445;30,0.00000033374866500533997;31,0.00000023292875578497687;32,0.0000004449982200071199;33,0.0000005632008721965112;34,0.0000012341747508009968;35,0.0000008448013082947669;36,0.0000010047225436098258;37,0.00000066749733001068;38,0.000002051163670345319;39,0.0000017504422169811323;40,0.0000017000322623709504;41,0.0000010116756407974368;42,0.0000016270247419010325;43,0.000001630501290494838;44,0.000001967726504093983;45,0.0000017938990744037024;46,0.00000116812032751869;47,0.0000011124955500177996;48,0.0000015157751868992525;49,0.0000006379466669633322;50,0.0000014879627981488075;51,0.00000205811676753293;52,0.0000020094450872196513;53,0.0000013767132431470273;54,0.0000017139384567461733;55,0.0000026004583481666076;56,0.0000020442105731577073;57,0.000002030304378782485;58,0.0000025726459594161626;59,0.0000015713999644001424;60,0.0000016200716447134211;61,0.000002073761236205055;62,0.0000016061654503381984;63,0.000002096358802064792;64,0.0000036399463777144897;65,0.000004630762726949092;66,0.000004900195242969028;67,0.000004469103217337131;68,0.0000034974078853684588;69,0.000003820726904592382;70,0.0000039145937166251334;71,0.0000035877981488074048;72,0.0000033061977127091495;73,0.0000034417831078675685;74,0.0000033374866500533994;75,0.000004940175551797793;76,0.0000036816649608401574;77,0.000004898456968672125;78,0.000004316135079209685;79,0.0000050914054156283374;80,0.000004575137949448202;81,0.000004901933517265931;82,0.000005221775987896048;83,0.0000055537863786044855;84,0.000006375990121039516;85,0.000007505868414026345;86,0.000005114002981488075;87,0.000002480517421680313;88,0.0000006953097187611249;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "alltheores:zinc_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0.00000022249911000356001;29,0.00000011124955500178001;30,0;31,0.00000011124955500178;32,0.00000105687077251691;33,0.00000044499822000712;34,0.00000044499822000712;35,0.00000100124599501602;36,0.00000233624065503738;37,0.00000139061943752225;38,0.0000009490977661089354;39,0.0000010603473211107153;40,0.00000122374510501958;41,0.000001463626957992168;42,0.000001185503070487718;43,0.000000862184051263795;44,0.0000013593305001779993;45,0.000001373236694553222;46,0.0000009039026343894626;47,0.000001075991789782841;48,0.0000019911932071021718;49,0.0000018477855776076898;50,0.0000010794683383766467;51,0.0000012863229797080813;52,0.0000013349946600213597;53,0.000001425384923460306;54,0.0000019781561498754005;55,0.00000200249199003204;56,0.0000012446043965824137;57,0.00000034070176219295126;58,0.0000013419477572089712;59,0.0000025031149875400496;60,0.000002510068084727661;61,0.0000023501468494126026;62,0.0000021693663225347102;63,0.00000228061587753649;64,0.000005922300529547882;65,0.0000063073282863118556;66,0.00000694092926753293;67,0.000006937452718939124;68,0.000005824957168921324;69,0.000004425646359914561;70,0.000004199670701317195;71,0.000004212707758543966;72,0.000004503868703275187;73,0.000006864445198469206;74,0.000006767101837842649;75,0.000010071561276254893;76,0.000010526989142043433;77,0.000010712984491812032;78,0.000007786599712976148;79,0.0000051339931359024565;80,0.000005815396660288358;81,0.000008509721820487719;82,0.000010652144891420434;83,0.000011634269869170523;84,0.000013019674483802067;85,0.00001322565998798505;86,0.000011900225836596654;87,0.000010414001312744749;88,0.000009176350013349946;89,0.000008806097588109648;90,0.00000783787880473478;91,0.000008752211084905662;92,0.000010838140241189037;93,0.00001032795673504806;94,0.000010587828742435031;95,0.000013010983112317551;96,0.000011689025509522962;97,0.00001018541824270203;98,0.000008388911756852972;99,0.000009452735626557494;100,0.000008140338532395869;101,0.000008521889740566036;102,0.000007645799494927019;103,0.000006824464889640442;104,0.000004748965379138484;105,0.000005382566360359559;106,0.000003909378893734426;107,0.0000030515405282128873;108,0.0000035860598745105023;109,0.0000033166273584905664;110,0.0000024726951873442508;111,0.0000034695954966180134;112,0.0000035052301197045218;113,0.0000012498192194731221;114,0.0000016687433250267;115,0.00000422748309006764;116,0.00000639684941260235;117,0.00000717559629761481;118,0.000005896226415094339;119,0.0000049853706835172655;120,0.0000047698246707013166;121,0.00000481501980242079;122,0.000008076022383410465;123,0.000010351423438056248;124,0.000011639484692061233;125,0.000011952374065503738;126,0.000011477825182449271;127,0.000007667527923638307;128,0.000010028104418832325;129,0.000013256079788180848;130,0.00001616942750978996;131,0.000020462965023139908;132,0.000025378804734781064;133,0.000023817834416162338;134,0.00001659008988964044;135,0.000014135646582413671;136,0.000010391403746885011;137,0.000008131647160911358;138,0.000008392388305446779;139,0.000003907640619437523;140,0.0000031288937344250625;141,0.000003678188412246351;142,0.000005395603417586331;143,0.00000734247063011748;144,0.000004922792808828764;145,0.0000019225313723745106;146,0.0000005180057404770382;147,0.0000011542141331434677;148,0.0000017417508454966178;149,0.0000022562800373798504;150,0.000001964249955500178;151,0.0000013593305001779993;152,0.0000006883566215735136;153,0;154,0;155,0;156,0.00000011820265218939126;157,0.00000023640530437878252;158,0.0000005910132609469562;159,0.0000011229251957992168;160,0.000001063823869704521;161,0.00000047281060875756503;162,0.0000006501145870416519;163,0.0000015957358045567815;164,0.0000010047225436098256;165,0.00000023640530437878252;166,0;167,0;168,0;169,0;170,0.0000005006229975080099;171,0.0000008899964400142396;172,0.0000005562477750088999;173,0;174,0;175,0;176,0;177,0;178,0;179,0;180,0;181,0;182,0;183,0;184,0;185,0;186,0;187,0;188,0.00000016687433250267;189,0.00000005562477750089;", + "silktouch": false, + "dim": "graveyard:past" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.00002115101898608249;72,0.000140827220873195;73,0.00037783243126111106;74,0.0006831629191263405;75,0.0010535820751433667;76,0.0014707059608766154;77,0.0017986440438717461;78,0.0021286323950606752;79,0.0023572236200538913;80,0.002258764531306753;81,0.002078846053766338;82,0.0018073849145133522;83,0.0015249505674715337;84,0.0012582728094996355;85,0.0009592731306845919;86,0.0006564994912093894;87,0.00039763860858834906;88,0.00016763885141047837;89,0.00002451422075256179;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00007994874378658616;66,0.00016429272122601876;67,0.00025214175841392373;68,0.0003529539530842746;69,0.0004428615174260444;70,0.0005359959621711698;71,0.000639089227471479;72,0.0007288298842061786;73,0.0008054404758513624;74,0.0008737613230120637;75,0.000907254116164134;76,0.0009616103601999687;77,0.0009571594906780989;78,0.0009199390943014627;79,0.0008896731815527482;80,0.0008236890408910286;81,0.000757426720884192;82,0.0007395119710586662;83,0.0007094129659170217;84,0.0006756976292888578;85,0.0006709129445528479;86,0.000668075515232656;87,0.0006270162438934072;88,0.000583230814972013;89,0.0005647040705872299;90,0.0005757199726538577;91,0.0005506281957243168;92,0.0005073991254931564;93,0.0004762986747090912;94,0.0004605537237754768;95,0.0004347943164176554;96,0.0004120948818561195;97,0.0003842769473444333;98,0.0003639142192818789;99,0.00034260568144592736;100,0.00031896043711099407;101,0.00030605291549757165;102,0.0002593187855179388;103,0.00023233538904160318;104,0.0002187046011308769;105,0.00019450299810570994;106,0.0001797038569454929;107,0.00015639242782469984;108,0.00012790686288473318;109,0.00010409471094272979;110,0.00007800148837076813;111,0.00005430060816681147;112,0.000035328776829841486;113,0.00001335260856560938;114,0.0000018359836777712896;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.0000006212985305971538;86,0.000003121935937869276;87,0.000004644633816522414;88,0.000007356375759279115;89,0.000013297104472201166;90,0.000017421869185692114;91,0.000023097928107842085;92,0.000027501360451287463;93,0.00003181560624118017;94,0.00003092129928146565;95,0.000040009511035819065;96,0.00004723677938076713;97,0.00004964632612792336;98,0.00005606160436894257;99,0.00005541701935056896;100,0.00005943899397665398;101,0.00006892137928447239;102,0.0000706699375029587;103,0.00007623055383561469;104,0.00008311055972457793;105,0.00008309565171428623;106,0.00008741350652160806;107,0.00009661152311646275;108,0.00009415965290196339;109,0.00009976573284336559;110,0.00011410850235976263;111,0.00011674906095394;112,0.00011499182291063194;113,0.00012153147792354964;114,0.00012286634447478148;115,0.00011922947029352704;116,0.000132856339667356;117,0.00013725968416039127;118,0.00014655289893279248;119,0.0001623535511124796;120,0.00017560700005995653;121,0.0001772211645167595;122,0.00017098786329269275;123,0.0001594251629077869;124,0.00016472506986874036;125,0.0001703699081852616;126,0.00018098891027116187;127,0.00019095201506611278;128,0.0001793632956370696;129,0.0001845388523855509;130,0.00020287133193264698;131,0.00020024770395122654;132,0.00019253647586913602;133,0.0001951674117788576;134,0.00020187115399207444;135,0.0002037817114313453;136,0.00021206683151110044;137,0.00022147810804103648;138,0.00021939015508585185;139,0.00021322812506077452;140,0.00023145799226431769;141,0.0002482382316785715;142,0.00025581675660861497;143,0.0002620505573541997;144,0.00025694292531699265;145,0.0002609624483037258;146,0.0002622608119880423;147,0.0002595598838178598;148,0.00026132640540218;149,0.00025753028702986256;150,0.0002418292081824485;151,0.00024302678701604551;152,0.0002468898463793473;153,0.0002491145497345422;154,0.00025936766099144966;155,0.00024790282085581977;156,0.00025568339253545936;157,0.0002772715234952208;158,0.0002728107534364353;159,0.0002583136164482526;160,0.0002613913666943878;161,0.0002758501753658544;162,0.0002879093194397853;163,0.0002898263522714942;164,0.0002957583899229141;165,0.00030263796983953997;166,0.00029767132136629057;167,0.0002949637349522352;168,0.00030520770568042603;169,0.0003181530734548253;170,0.0003557684616195601;171,0.00036151913209931633;172,0.00037496692964882473;173,0.00039306004645235757;174,0.00039323845531253677;175,0.00042506516850149696;176,0.0004542758006721747;177,0.0004417208156038925;178,0.00041781386796180297;179,0.0004627983385282738;180,0.00043519439331437626;181,0.00037569495416950376;182,0.00033650593838313147;183,0.0003056589554410336;184,0.0002875265664396341;185,0.0002533221553417303;186,0.00020953809116624203;187,0.0001711433002921457;188,0.0001239470454883473;189,0.00008799038339018354;190,0.00004743287171128756;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.000002966200655628562;66,0.000006329373819648754;67,0.000008861146025172262;68,0.000014102710098651395;69,0.000019203408082558446;70,0.000021583013162614492;71,0.00002496875060231876;72,0.000026083622360866592;73,0.000027187797821225835;74,0.000029179766031238604;75,0.000029870300900163212;76,0.0000302988331576272;77,0.00002688282103647747;78,0.00002500533723357869;79,0.000023974826385126078;80,0.000020169892326306175;81,0.00001741633256682265;82,0.000016135233531124818;83,0.000015348734347356232;84,0.000011843561210563747;85,0.000013690845924230411;86,0.000012713854362827452;87,0.000010313877181274395;88,0.000005693718897614056;89,0.000006151278565003286;90,0.000004562934978156681;91,0.000003058687728658584;92,0.0000021160150321151525;93,0.0000009755931054560384;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0.000009719642706088251;126,0.0000417541793198672;127,0.00010218168756287755;128,0.0001690106805110041;129,0.0002408576153352015;130,0.0003012269972522136;131,0.0003735099500060291;132,0.0004570104143670508;133,0.0005316876125739182;134,0.0005912356605765219;135,0.0006519879385059808;136,0.0007234106263339978;137,0.000770906648188922;138,0.0008404834140061455;139,0.0009180723793244167;140,0.0009929945116252743;141,0.0010315918722653618;142,0.0010617889215292337;143,0.0011312943099097625;144,0.0011983157024066358;145,0.0012457333218566062;146,0.0012905692067340959;147,0.0013906701409893518;148,0.0014580605205314163;149,0.001529206532686452;150,0.0015462376166885668;151,0.00155552105350602;152,0.0016226643139305216;153,0.001695170867429901;154,0.0017299816527038482;155,0.0017841689685731805;156,0.0018075008382370692;157,0.001868112029429414;158,0.0018941182739662726;159,0.001866611388132796;160,0.0018365967765897712;161,0.0017724137297132976;162,0.0017247972731182495;163,0.0017006373030153416;164,0.0016342193059526988;165,0.001527920235153812;166,0.0014692736151017236;167,0.0013869899504268168;168,0.0013144664336261556;169,0.0013247067228092534;170,0.001342598165716675;171,0.0013395269623691253;172,0.001341009724064254;173,0.0013086601211482777;174,0.0012464942504419353;175,0.0011742730422251947;176,0.0010950874590372642;177,0.0010180009786559877;178,0.0009640117715905426;179,0.0008987769765397315;180,0.0007503874442447394;181,0.0006235020916274886;182,0.0004956397280400233;183,0.0003732151832776646;184,0.00029007541227021004;185,0.00021961993804864787;186,0.0001573483169003822;187,0.00009994412944534805;188,0.00004878236637731845;189,0.000019055942997064447;190,0.0000034071331006306475;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0.00004105927133924884;126,0.0001830976449559186;127,0.00042316641979177057;128,0.00071169403654698;129,0.0009765207730982326;130,0.001212361221888308;131,0.0015069531483670648;132,0.001804660683511131;133,0.0020489577843927588;134,0.00231573177635983;135,0.0025520729479711164;136,0.002797760945578328;137,0.003086455469940608;138,0.0033409339348535135;139,0.0035900157204711517;140,0.003873703016621327;141,0.0040679834712509435;142,0.004259482132429392;143,0.0044726787825269555;144,0.004732553926735127;145,0.0050019428045462964;146,0.005290080970218342;147,0.005577774048938201;148,0.005760482242810956;149,0.005910142730483828;150,0.006057188332312601;151,0.006191159504920881;152,0.006492761550896584;153,0.006769828178632978;154,0.006985917893919756;155,0.007208405734144224;156,0.007463607465354432;157,0.007553014306874992;158,0.007598746991212204;159,0.007432284471094274;160,0.007181255430060818;161,0.0070358232684337215;162,0.006881878818846051;163,0.006704122217316375;164,0.006475124980416175;165,0.006145482456452694;166,0.00580855163364715;167,0.005549956114426515;168,0.0053197348884078;169,0.005349110627252141;170,0.005402131610431415;171,0.005427223387360956;172,0.005347886638133626;173,0.005204791183005512;174,0.004974180505903633;175,0.0046706312045121144;176,0.0044253882938570886;177,0.004098305019868681;178,0.003789859762003105;179,0.003523197041774081;180,0.0029601064113885293;181,0.0024352932588910573;182,0.0019981066001053967;183,0.0015816721204654543;184,0.0011733604777029243;185,0.0008759311219039753;186,0.0006249577167395423;187,0.00037253777898050167;188,0.0001804827591118201;189,0.00006893284171995842;190,0.000014187146600959963;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00001972054667226185;66,0.000036794147208318506;67,0.00006346994875338133;68,0.00008732247000186119;69,0.00011006058836781924;70,0.0001302606940845871;71,0.00015913059946118528;72,0.00016766832930913453;73,0.00019364699698935084;74,0.00021236615011652817;75,0.00021102823331733614;76,0.00021140232283692797;77,0.000210249122761664;78,0.0002036933390263607;79,0.0001968924567329274;80,0.00018369236669442594;81,0.00016766527395359234;82,0.00014860139173109368;83,0.00015404734182671704;84,0.00015204844569250268;85,0.0001481536733526691;86,0.00014353181015814285;87,0.00013513249578193031;88,0.00012712313609646492;89,0.00011976874207899519;90,0.00011818011451059031;91,0.00011923077681299827;92,0.00010799783009303983;93,0.00010579688516619657;94,0.00010595680049353208;95,0.00009180379603509505;96,0.00008751818743586406;97,0.00008131279199671913;98,0.00007449089915404096;99,0.00007532516035844808;100,0.00007128594457862157;101,0.00006935118741591572;102,0.00006329031407352622;103,0.00006182600096451964;104,0.000055593982765047016;105,0.000049276767033550364;106,0.00004101382101021578;107,0.0000401100282492426;108,0.00003267200268438479;109,0.00002574559237007407;110,0.00002073873292538972;111,0.000014501613273032564;112,0.000008313253662833399;113,0.000004415567958236757;114,0.0000005285407557220379;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00002474757697971308;66,0.00004630708709307505;67,0.00006685420295127777;68,0.00008846504937114988;69,0.00010919241792662764;70,0.00013210922709129037;71,0.00014216263802176464;72,0.000164431200031772;73,0.00018598730338795135;74,0.00021058930610902052;75,0.00022824105428005003;76,0.00024671178687777566;77,0.00024816205515784564;78,0.0002491102144189551;79,0.00024204680854069896;80,0.0002322265137810228;81,0.00021931889818809194;82,0.00021281319020806543;83,0.00020370415586348412;84,0.00019868687184397264;85,0.00020102966351612873;86,0.0002094448941393164;87,0.00020349634367534573;88,0.00020590611924217479;89,0.00020078616260964298;90,0.00019727863589907277;91,0.0002072753536910532;92,0.00020968289724455571;93,0.0002070800172826662;94,0.0002064916585697932;95,0.00020699950033877137;96,0.00020996316763373637;97,0.00022018487236903086;98,0.00022745940321309955;99,0.00022982949593247068;100,0.0002390845509383612;101,0.000239554965368085;102,0.00023023952852799256;103,0.00022164089689399562;104,0.00022337176449152595;105,0.0002467474051114917;106,0.000244881347991005;107,0.00024378686263518373;108,0.00023024843308642155;109,0.00024036826403451786;110,0.00024576043231337773;111,0.00023969753228245737;112,0.0002485604342943154;113,0.00024069742726298807;114,0.00024711594575401726;115,0.00024939032034399595;116,0.0002455519622686799;117,0.0002433506097567944;118,0.0002442410890945709;119,0.00022806002625182996;120,0.0002293830932671649;121,0.00023520357315594704;122,0.00023510489467203733;123,0.00023551560861899575;124,0.00024129795632220997;125,0.00023094228379756947;126,0.00021051482734854582;127,0.00011601871350497507;128,0.000019910122749688487;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:redstone_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00009218863497172808;66,0.00018999649271481676;67,0.0002841323831023629;68,0.0003640254910199257;69,0.00047095763128284754;70,0.000558584124994659;71,0.0006418710209226475;72,0.0007436290253663956;73,0.0008510062525815044;74,0.0009338480615573058;75,0.0010027809032772644;76,0.0010935230056543846;77,0.0010958040762843431;78,0.001078167505803934;79,0.0010828409188018973;80,0.0010230323596017719;81,0.0009794694741564714;82,0.0009956038761732493;83,0.000993489713150361;84,0.0009816392730483828;85,0.0010017794576348436;86,0.0009935453490193845;87,0.000978245485037957;88,0.0009858675990941591;89,0.0010142975281651023;90,0.0009706233709817552;91,0.0009653935992935581;92,0.0009736277079090171;93,0.0009606645504265715;94,0.0009677303057925396;95,0.0009874254034268135;96,0.0009534318874535331;97,0.000939244740852573;98,0.0009553235070003277;99,0.0009803040121918218;100,0.0009998322022190258;101,0.000993322805543291;102,0.0009716248166241758;103,0.000953431887453533;104,0.000945364686445144;105,0.0009511508168235747;106,0.0009867021371295097;107,0.000989706474056772;108,0.0009860901425702527;109,0.0009944355229237584;110,0.0010095684792981157;111,0.000978245485037957;112,0.0009640583384369972;113,0.0009506500940023644;114,0.0009715691807551524;115,0.0009839759795473644;116,0.0009572151265471224;117,0.0009510951809545514;118,0.0009514846320377151;119,0.0009506500940023644;120,0.0009554904146073978;121,0.0009586616591417301;122,0.0009389665615074563;123,0.0009334586104741423;124,0.0009549340559171641;125,0.0009400792788879237;126,0.0008560134807936079;127,0.0004685096530458191;128,0.00008951811325860621;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0.000015565986368515434;75,0.000015482343584447008;76,0.000014307224831861632;77,0.000018272792344043855;78,0.000013995898301192123;79,0.000001955948520352936;80,0.000002707032752168464;81,0.0000016690760707011724;82,0.0000016690760707011727;83,0.0000019472554158180345;84,0.0000013908967255843102;85,0.0000017247119397245443;86,0.0000017803478087479173;87,0.000000945809773397331;88,0.0000010570815114440756;89,0.000001653201705898308;90,0.0000013352608565609379;91,0.0000013978512092122319;92,0.0000028364466214184822;93,0.0000020784079059750332;94,0.0000018757451819917974;95,0.0000027857998384760098;96,0.000001686462279770976;97,0.000002178491996446426;98,0.000002735833385453661;99,0.000003922555542787796;100,0.000003596450734408953;101,0.0000008442138386589987;102,0.000001976282825743272;103,0.0000023367064989816414;104,0.0000015270383018222095;105,0.0000013750223607814459;106,0.0000028781735231860123;107,0.000002569454923876972;108,0.0000028953329556157746;109,0.000001891090401301233;110,0.0000018920731000747438;111,0.0000016675642264342327;112,0.0000021649609902573178;113,0.0000023265015501798;114,0.0000022075194063716636;115,0.0000027551849920704864;116,0.000002217195209680077;117,0.000002064083181545782;118,0.0000027994442329851393;119,0.000002884825637960545;120,0.000004682106102498185;121,0.00000228617310435919;122,0.0000022283828572554284;123,0.000002160576641883193;124,0.0000017821620218682448;125,0.000001539662201451154;126,0.000003034573812600899;127,0.0000018881423049807012;128,0.0000018811878213527798;129,0.0000011258704255898215;130,0.000002481238810901054;131,0.0000016134402016777997;132,0.0000017803478087479169;133,0.00000218189364604704;134,0.000002614885844098503;135,0.0000017445926918347987;136,0.000002078407905975033;137,0.0000020227720369516603;138,0.0000029328266934358733;139,0.0000018553352843881147;140,0.000002281070629958269;141,0.0000019472554158180345;142,0.000002424506854784151;143,0.0000017012405574803094;144,0.0000020390621589279337;145,0.0000013091815429562319;146,0.000002028857210126092;147,0.000001090644454170132;148,0.0000014704197340253264;149,0.0000019609376064338363;150,0.000001502168463631055;151,0.0000017485990791421883;152,0.000002300951382068523;153,0.0000024718653764460295;154,0.000001514112033339877;155,0.0000029010779638301446;156,0.000002849372889900815;157,0.0000030453834991095168;158,0.000002948247504958656;159,0.0000032380680509309518;160,0.0000017689333845325242;161,0.0000020796929736019317;162,0.000002260207179074504;163,0.0000016308264107476038;164,0.0000022862864926792096;165,0.0000025460969299527573;166,0.000002756470059697385;167,0.0000024566713415632877;168,0.0000021750147546324654;169,0.0000020009258872943856;170,0.0000017942567760037602;171,0.000002607628991617194;172,0.0000016801881260631776;173,0.000001956931219126447;174,0.0000011697895015444132;175,0.0000010381834581073326;176,0.0000005268021348150576;177,0.0000004450869521869792;178,0.00000027817934511686214;179,0.00000011127173804674484;180,0.00000005563586902337242;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0002896403341356768;66,0.0005877929562319295;67,0.0008528978721282991;68,0.0011043720001139424;69,0.0013555679487544689;70,0.0016129951147256128;71,0.0018438283353035853;72,0.0020920755828858725;73,0.002295758499380439;74,0.002460385035820598;75,0.0026640679523151642;76,0.0028630218199427442;77,0.0027990405705658654;78,0.0027341135114155903;79,0.002666126479469029;80,0.002530430594921024;81,0.0023473329499651046;82,0.002303324977567618;83,0.0022679962007377766;84,0.0022341139565025428;85,0.0022012331579097295;86,0.002195391391662275;87,0.0021423704084830015;88,0.0020618096701371584;89,0.001989037953454587;90,0.0019490357636267825;91,0.0019127055411545203;92,0.0019013001880047288;93,0.0018112257160558887;94,0.0017180912713107635;95,0.001692443135690989;96,0.001677254543447608;97,0.001647823168734244;98,0.0015684307836378918;99,0.0014933779963253622;100,0.0015053397081653873;101,0.0014543216162709548;102,0.0014024689863411717;103,0.0013492810955548279;104,0.0013232435088518894;105,0.0012950917591260627;106,0.001223098944609819;107,0.0011587282441497771;108,0.0011291855976983665;109,0.0011333026520060961;110,0.0010875699676688839;111,0.0010189153052940422;112,0.0009513733602996683;113,0.0008981298336443008;114,0.0008755973066898351;115,0.0008491702689037332;116,0.000793868215094501;117,0.0007234888407799348;118,0.0006755863575508113;119,0.0006152770755294755;120,0.0005650935216703935;121,0.0005359959621711698;122,0.0004938796093204769;123,0.00045376614775462535;124,0.0004099250829642079;125,0.00036675164860207094;126,0.00033409339348535133;127,0.0002798484211875632;128,0.00022399000868809734;129,0.00018905068294141947;130,0.0001500499387560354;131,0.00010860121633362294;132,0.00006759758086339748;133,0.000028096113856803068;134,0.000005619222771360613;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.000010070092293230406;66,0.000025648135619774683;67,0.000040836727863155354;68,0.000057638760308213814;69,0.00007488587970545926;70,0.00008745958610474142;71,0.00009408025451852276;72,0.00011004774892823063;73,0.00012056292817364801;74,0.0001200065694834143;75,0.00012523634117161129;76,0.00012890830852715386;77,0.00012056292817364802;78,0.00010854558046459958;79,0.00010359398812151944;80,0.00009063083063907366;81,0.00008211854267849768;82,0.00007638804816909033;83,0.00007215972212331402;84,0.0000649270591502756;85,0.00005552459728532567;86,0.00005012791799005854;87,0.00004322907023116037;88,0.0000377211191978465;89,0.00002820738559484981;90,0.000021809260657161986;91,0.000018026021563572664;92,0.000008846103174716214;93,0.0000036719673555425792;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:lapis_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0.00008974065673469971;72,0.0005937459942174303;73,0.0016495478806739686;74,0.003035270470439105;75,0.004669852302345788;76,0.006554906816595691;77,0.007902296292603724;78,0.00924117348065118;79,0.01046065609377448;80,0.01055290036461523;81,0.009587618037059719;82,0.008382934565096638;83,0.00703827124667075;84,0.0058566766603523664;85,0.004605425966016721;86,0.0032391202945407415;87,0.0018954584217572748;88,0.0007701673348905443;89,0.0001365304225833559;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:copper_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.000003393788010425718;86,0.000013185700958539263;87,0.000027094668214382364;88,0.00003950146700659441;89,0.00005730494509407358;90,0.0000764436840381137;91,0.00009552678711313043;92,0.00011460989018814715;93,0.00013831077039210384;94,0.00015021684636310552;95,0.0001655723462135563;96,0.00018465544928857302;97,0.0002083563294925297;98,0.00022254347609348962;99,0.00023172339448234613;100,0.0002622118507071542;101,0.0002796815135804931;102,0.0002817400407343579;103,0.0003066092741878054;104,0.00033209050220050996;105,0.00036269023016336475;106,0.00038666928971243825;107,0.0003842769473444332;108,0.0004144315883551011;109,0.0004384106479041746;110,0.0004330696044779309;111,0.000432791425132814;112,0.00045332106080243846;113,0.00048447714745552704;114,0.0005005002777342582;115,0.0005180255764766206;116,0.000550071837034083;117,0.0005619222771360614;118,0.0005812835595561949;119,0.0005940241735625472;120,0.0006023695539160532;121,0.0005892394888265373;122,0.0005974735974419963;123,0.0006516072980017377;124,0.0006771997977524889;125,0.0006740841890871801;126,0.000699899232314025;127,0.0007171463517112702;128,0.0007256030038028231;129,0.000719761237555369;130,0.0007351167374058196;131,0.0007819621391234993;132,0.0007706680577117546;133,0.0007358400037031235;134,0.0007666622751420719;135,0.0007955372911652021;136,0.0008123393236102606;137,0.0008211854267849768;138,0.0008488920895586162;139,0.0008783234642719803;140,0.0008936233282534076;141,0.0008954593119311789;142,0.0009081999259375312;143,0.0009217194421102107;144,0.0009292859202973894;145,0.0009468112190397517;146,0.0009704008275056616;147,0.0009883155773311874;148,0.0009960489631254362;149,0.00100122309894461;150,0.0010160778759738503;151,0.0009684535720898436;152,0.0009854781480109955;153,0.001030209386705787;154,0.0010436176311404196;155,0.0010525750060531827;156,0.0010699333971884747;157,0.0010761646145190926;158,0.0010576378701343096;159,0.0010547448049450943;160,0.0010571371473130993;161,0.0011096017718021391;162,0.0011722477603224569;163,0.001194835923145946;164,0.0011964493633476237;165,0.0011924992166469643;166,0.0011845989232456453;167,0.0011855447330190428;168,0.0012012896839526572;169,0.0012865794711654868;170,0.0014115376329919813;171,0.0014914863767785677;172,0.001539221952400621;173,0.0015936894681745028;174,0.0016202277776986513;175,0.0016701331522126165;176,0.0017023463203771493;177,0.0017108586083377252;178,0.00176093089045876;179,0.001800209813989261;180,0.0016855442879320907;181,0.0015514062077167396;182,0.0013875585734429078;183,0.0012292745260714135;184,0.0011009782121035165;185,0.0009744066100753443;186,0.0008253024810927065;187,0.0006590068685818463;188,0.000463112973750552;189,0.0002892508830525132;190,0.00014048056928401534;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.0000025931530827612483;86,0.000010916800674929856;87,0.00002609418586192364;88,0.00004263490828363838;89,0.00006147500384458892;90,0.00007417858992459795;91,0.00008410127535876896;92,0.00010021509586318866;93,0.00013020809211926156;94,0.00014988648489590214;95,0.000166551142794432;96,0.00018846850338122934;97,0.00020829785074337462;98,0.00023939134704381186;99,0.00026673851470261753;100,0.0002770549272875882;101,0.0002827236537650435;102,0.0002959607380198471;103,0.0003124684031494522;104,0.0003468253378820458;105,0.0003676766419143388;106,0.0004016042077675397;107,0.00044951007425896874;108,0.00046883585591977204;109,0.00047825337800095675;110,0.0004815451982446758;111,0.00048676223570947295;112,0.0005183234680236422;113,0.0005504412469870621;114,0.0005660059922131557;115,0.0005917902806458488;116,0.0006258995793735833;117,0.0006510085310583;118,0.0006650932399950107;119,0.0006537912173147991;120,0.000676301682579648;121,0.0006806267840242872;122,0.0007089715676605428;123,0.0007339504047157613;124,0.0007484232020327627;125,0.000771841156926424;126,0.0007858992696622336;127,0.0008138431837050444;128,0.0008446975256512633;129,0.0008633959705980493;130,0.0008651856223781372;131,0.0008795501318064863;132,0.0008970145788171043;133,0.0009205544956179025;134,0.0009078151973246689;135,0.0008967632071267828;136,0.0009284689094403713;137,0.000958550340413929;138,0.0009809859510002692;139,0.0009899017399805274;140,0.0009770146354153234;141,0.0009513954219892852;142,0.0009222446230985042;143,0.0008873018201100125;144,0.0008668816705677737;145,0.0008664640491269415;146,0.0008285649327400236;147,0.0007993130823827439;148,0.0007752342635854131;149,0.0007664158373759459;150,0.000738814784074967;151,0.0007160955198371405;152,0.0007060623145009907;153,0.0006705290852504391;154,0.0006418787507372205;155,0.000613709191894536;156,0.0006130132971290786;157,0.0005832678663932334;158,0.000553965760493791;159,0.0005360431868741838;160,0.0005238233133243492;161,0.0005118464707834579;162,0.0004947527964286921;163,0.0004786856837399897;164,0.00048410005467772914;165,0.00045954335007975;166,0.00042938302330881883;167,0.00040408045034174504;168,0.00039339401693699004;169,0.0003844889886104535;170,0.0003787422591409553;171,0.0003858689602181764;172,0.0003930329946551433;173,0.0003870812488878841;174,0.0003684385337896301;175,0.0003470732323305533;176,0.000336590029612898;177,0.0003182656700996384;178,0.0002927991498800118;179,0.0002677892291023616;180,0.00023414472952871886;181,0.00019636968958787883;182,0.00015232769660831954;183,0.00011906456588011064;184,0.00008978799891209922;185,0.00007080824980153935;186,0.00005029022060121287;187,0.000034396100692754984;188,0.000021942876023351137;189,0.000011505323851942717;190,0.0000027731003466337187;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0.000009625005341043427;86,0.000050406097335175406;87,0.0001123288195581889;88,0.00019717351981883184;89,0.00028808252980302236;90,0.0003712025181239407;91,0.0004554908596943499;92,0.0005219757231772798;93,0.0005923550974918461;94,0.0006756419934198347;95,0.0007824072260756862;96,0.0008640250459329736;97,0.0009117049856860037;98,0.0009915424577345432;99,0.0010906299404651694;100,0.0011928886677301277;101,0.001276453743003233;102,0.00132407804688724;103,0.0013981293885573487;104,0.0014950470723960633;105,0.0015482349631824074;106,0.0016494922448049452;107,0.0017692206349432427;108,0.0018437726994345615;109,0.0019027467205993368;110,0.001987257605645839;111,0.002047845067012292;112,0.0021152757402686188;113,0.002223264962042985;114,0.0022708892659269913;115,0.0022880251135861908;116,0.002398684857073678;117,0.002539777420916951;118,0.002573659665152184;119,0.0026333569526142625;120,0.0027084653757958157;121,0.0028179567660338127;122,0.0028812703849824105;123,0.0029221627487145893;124,0.0029894821502328695;125,0.00303254431285696;126,0.0031191137250573273;127,0.003182761159220065;128,0.0032546427019982628;129,0.0033801015866459674;130,0.00345832561849283;131,0.003512960041873781;132,0.0035931313291364606;133,0.003644650143852103;134,0.0037018994530771533;135,0.0036850417847630714;136,0.003706405958468047;137,0.003766826512227429;138,0.003826245620344391;139,0.0038468865277520616;140,0.0037935317293586483;141,0.0037175331322727213;142,0.0035991956388600078;143,0.003510345156029682;144,0.0033954570864964187;145,0.0033262460654313432;146,0.0032578695824016183;147,0.003164011871359189;148,0.0030950790296392305;149,0.003066426557092194;150,0.0029660594493740302;151,0.0028500030265912746;152,0.002755143869906425;153,0.0026299631646038374;154,0.0025625324913475097;155,0.002514574372249363;156,0.0024530967369785365;157,0.0023588495748529436;158,0.0022492469128769;159,0.0021587829898448967;160,0.002091074137243452;161,0.0020535199256526758;162,0.0020171340673113903;163,0.001976631154662375;164,0.0019111477368218659;165,0.001813506786685847;166,0.0016796468858156133;167,0.0016157769081767818;168,0.0015744950933614392;169,0.0015693209575422659;170,0.0015863455334634176;171,0.0016083217017276497;172,0.0015714351205651537;173,0.0015398339469598781;174,0.0014994423060489099;175,0.0014389104805514806;176,0.0013352608565609379;177,0.0012454089280881917;178,0.0011682976136217975;179,0.0010948026306419221;180,0.000907421023771204;181,0.0007362850906553104;182,0.0006131629125065872;183,0.00048753712025181243;184,0.0003781570017518623;185,0.00029164322542051826;186,0.00019839750893734605;187,0.0001292977596103175;188,0.00007043501018358947;189,0.00003110045078406518;190,0.000009513733602996684;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.00007386310275764516;66,0.00013403321951420907;67,0.00020544717031248621;68,0.00027486296251138723;69,0.00033420928145599417;70,0.0003753116842820559;71,0.0004229280755000547;72,0.00047314068026393897;73,0.0005301972354740528;74,0.000579872049651244;75,0.0006232179435620665;76,0.0006472664692906568;77,0.0006291638319543078;78,0.00062242699873894;79,0.0006153028422590628;80,0.0005557639797318971;81,0.0005373133883729629;82,0.0005245283639412693;83,0.0004919711960441225;84,0.0004753361845944541;85,0.0004788787043707056;86,0.00044621787605418303;87,0.00045595726875828266;88,0.0004441932377067748;89,0.00041999520896747944;90,0.0004151190739975819;91,0.0004105597725532479;92,0.0003990303970977476;93,0.0004098813395890735;94,0.0003871163420621723;95,0.0003694936948502486;96,0.0003732866485647694;97,0.00037181141238093425;98,0.00037197854267857875;99,0.000371247003119979;100,0.0003692767104663853;101,0.0003460718285703048;102,0.00033619002320080856;103,0.00033018713623667094;104,0.00032984181261880687;105,0.00031716408418334453;106,0.00028591465646951835;107,0.0002872842402770044;108,0.0002960749384454029;109,0.000270283241975802;110,0.00025533363042885214;111,0.00025421618751353414;112,0.00025874609278052373;113,0.00024705631064830125;114,0.00022949233218758246;115,0.00020543895527762491;116,0.0001953207230026892;117,0.00019598412435308784;118,0.00018607128633697984;119,0.00016117663857710186;120,0.00014583808261912115;121,0.0001329687258797914;122,0.00012001306530618015;123,0.0001087971217266428;124,0.00010403815979501507;125,0.00009371176903788257;126,0.00009275480736998376;127,0.00007991137263073364;128,0.00006224605157134283;129,0.00004435703782991236;130,0.000034982189596194794;131,0.000024149860155130996;132,0.000013112527696019393;133,0.0000055084045865939505;134,0.0000007232662973038413;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0.00006378739314574997;75,0.000050776423588362225;76,0.00005081641186922278;77,0.00006564163234304455;78,0.00004350724957627722;", + "silktouch": false, + "dim": "deeperdarker:otherside" + }, + { + "block": "ad_astra:mars_ostrum_ore", + "distrib": "0,0;1,0.0005152188870138474;2,0.0005049921340251712;3,0.0005407857694855378;4,0.0005799061800145097;5,0.0005943838122575151;6,0.0006296845921521623;7,0.0006304238755007413;8,0.0006490291731066462;9,0.0006944334920985396;10,0.0007153182466958963;11,0.00073478604154181;12,0.0007467993959562188;13,0.0007691011103050185;14,0.0007829010661451598;15,0.0008266419976027505;16,0.0008397642770400279;17,0.0008596017135602309;18,0.000909072090969309;19,0.0009355630776267231;20,0.0009290943483266568;21,0.0009417853791439297;22,0.0009693236838784974;23,0.0009927343232501657;24,0.001018362812667571;25,0.0010403564922877961;26,0.0010776903013910355;27,0.0010956795295397914;28,0.0011293169219001357;29,0.001152665954326089;30,0.0011524195265432294;31,0.0011819292535406745;32,0.0011885828036778856;33,0.001199856874743715;34,0.0012331246254297702;35,0.0012734771748730404;36,0.0012994136990190203;37,0.0013140145451534556;38,0.001337240363687979;39,0.0013480215791880897;40,0.0013833223590827368;41,0.0013885589494685045;42,0.0014050696109201024;43,0.0014471471548433905;44,0.001473884569283664;45,0.0014668613774721636;46,0.0014999443073210738;47,0.0015332736649528438;48,0.0015489834361101474;49,0.0015749815672018424;50,0.0015895208063905625;51,0.001606893965082169;52,0.0016399768949310791;53,0.0016567955911112515;54,0.0016730598247799895;55,0.0016893240584487275;56,0.001700043667003123;57,0.0017128579117118255;58,0.0017488979749550517;59,0.0017947951495126645;60,0.0017903594494211906;61,0.001817281684698609;62,0.001840261075450273;63,0.001810073672049964;64,0.0017979987106898402;65,0.0017868478535154402;66,0.0017792085922467907;67,0.0017433533498407091;68,0.0017040481184745927;69,0.0016753392817714413;70,0.0016787892707314767;71,0.0016427492074882503;72,0.0015835449326562158;73,0.0016019038024792606;74,0.0015873029563448257;75,0.0015540968126044855;76,0.0015565610904330822;77,0.0015155924715326628;78,0.0015177487146326848;79,0.0015006835906696528;80,0.0014883005945809545;81,0.0014655060246664357;82,0.0014351338004289817;83,0.0014329159503832442;84,0.0014107990568715896;85,0.0013795027284484122;86,0.0013608358238967923;87,0.00131068777008485;88,0.0012515451021985302;89,0.0012464317257041917;90,0.0012397165686212663;91,0.0012223434099296597;92,0.0011980702733179827;93,0.0011736123158691608;94,0.0011701007199634106;95,0.0011352927956344825;96,0.001102517900514147;97,0.001053848413399363;98,0.0010498439619278934;99,0.001051630563353626;100,0.0010411573825820902;101,0.0010008048331388198;102,0.0009733897422956818;103,0.0009501023168154434;104,0.0009184979536636913;105,0.0008859078793805003;106,0.0008933007128662904;107,0.0008901587586348296;108,0.0008651463386745734;109,0.0008442615840772168;110,0.000830153593508501;111,0.0008098233014225784;112,0.0007848108814623222;113,0.0007603529240135003;114,0.0007164271717187648;115,0.0006877799419613286;116,0.0006722549916411697;117,0.0006548202260038482;118,0.0006400345590322683;119,0.0006067668083462134;120,0.0005685088950572502;121,0.0005513205572027885;122,0.0005224268996624925;123,0.0005002483992051226;124,0.00048749576144213483;125,0.0004590333525218434;126,0.00043254236586442925;127,0.00038707643992682086;128,0.0003683479284294862;129,0.0003632345519351481;130,0.00033027483597766776;131,0.00031524274122322806;132,0.00030310617291738954;133,0.0002766767932056903;134,0.00022893141027662998;135,0.00019270652619625904;136,0.00017822889395325366;137,0.00017176016465318743;138,0.00014268168627574681;139,0.0001193942607955083;140,0.00009179434911522571;141,0.00006382479576065357;142,0.00003462310349178311;143,0.000011828533577263983;144,0.0000024026708828817464;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0.000021624037945935715;38,0.00012629423871557895;39,0.000314626671766079;40,0.0005073331979623379;41,0.0007017647186386147;42,0.00090469799782355;43,0.0011229714064914993;44,0.0013437706999337602;45,0.001538263827555752;46,0.0017203739590890455;47,0.0019435759234141883;48,0.0021314771078446834;49,0.002347471059521181;50,0.002580899776835;51,0.002781430385137054;52,0.0029890457921963225;53,0.0031736818085039272;54,0.003366757976374476;55,0.0035500386398763526;56,0.0037102783056808504;57,0.0039198651350029964;58,0.004122921628079362;59,0.004392020766962117;60,0.00459292101693846;61,0.004837808626155253;62,0.005034334782985838;63,0.005124404137621046;64,0.005319082086080182;65,0.00557930982477999;66,0.005697779981389773;67,0.005968912149481122;68,0.006182934678894742;69,0.006374655493959563;70,0.0065484486878213425;71,0.0066856473559284615;72,0.006855620919155916;73,0.007094902296312652;74,0.007306275727060532;75,0.0075183268342112735;76,0.007672775447118569;77,0.007962081664195817;78,0.008309544838027948;79,0.008340471524776835;80,0.008100327650380091;81,0.007977606614515978;82,0.007777076006213924;83,0.007522331285682744;84,0.007315455161972054;85,0.007077036282055327;86,0.006902811839573543;87,0.00669679821310286;88,0.006440574925874524;89,0.0062216854477494254;90,0.006086519808850898;91,0.0059413738447465555;92,0.005739179848910198;93,0.005489117256253352;94,0.005267393858625367;95,0.005086023010440652;96,0.004851608581995395;97,0.004676028786707883;98,0.004531930140680693;99,0.004315997795949911;100,0.004065935203293064;101,0.0038437805570450748;102,0.0036654900561461064;103,0.003443520230735262;104,0.0031767005488439583;105,0.0029704404945904176;106,0.0028087222620887613;107,0.002638502271078447;108,0.0024040262356874744;109,0.0022253044861685013;110,0.0020250203056493077;111,0.0017902978424754756;112,0.0015637691030817272;113,0.0013845544979970352;114,0.0011755837381320377;115,0.0009537371266126235;116,0.0007455056500962054;117,0.0005344402540769013;118,0.000327132881746207;119,0.0001290049443270353;120,0.000024273136611677126;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "ad_astra:moon_ice_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.000018605297605904807;30,0.00012198175251553481;31,0.0003142570300917895;32,0.0005208867260196196;33,0.0007501877779705392;34,0.0009770245520928618;35,0.0012076809568495094;36,0.0014257695446803142;37,0.0016248215862852097;38,0.0018457440936189005;39,0.0020423318573951996;40,0.002221916104154181;41,0.0024640314008138034;42,0.0026765137565845504;43,0.002852648014383497;44,0.003053609871305555;45,0.003362507097120147;46,0.003574003741759455;47,0.0037262961115667285;48,0.00391727764328297;49,0.004214531156357442;50,0.004435145628962559;51,0.004634197670567454;52,0.004821914034160806;53,0.0050305767592972285;54,0.005209976185219065;55,0.005363685514777781;56,0.0054798762143961136;57,0.005806146598902312;58,0.005988071909598461;59,0.0061624811729173905;60,0.006360978752010851;61,0.006592805688736082;62,0.006722796344194556;63,0.006731421316594644;64,0.006499039917357979;65,0.006387592952559695;66,0.006160694571491657;67,0.0059469184698608965;68,0.005799000193199381;69,0.005600009758540201;70,0.005368983712109265;71,0.005104936342775132;72,0.004834605064978077;73,0.004723774169636943;74,0.0045589755898495414;75,0.004335219163012964;76,0.004131977849099454;77,0.003956582874649087;78,0.003752848705169858;79,0.0034961941693215154;80,0.0032554342254676218;81,0.003091806177648803;82,0.002890844320726745;83,0.0026926547763618585;84,0.0024828215192568524;85,0.0022184045082484305;86,0.0020461514880295243;87,0.001833607525313062;88,0.0016049841497650067;89,0.0013969374940857335;90,0.0011901845842664733;91,0.0009704942158470808;92,0.0007695939658707378;93,0.0005303125887140018;94,0.00031733737737753536;95,0.00013873884174999212;96,0.00002445795744882188;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.0002648482596284263;2,0.0002827142738857522;3,0.00030594009242027574;4,0.00030594009242027574;5,0.0003188159440746933;6,0.0003475863877235593;7,0.0003551024351007791;8,0.00035547207677506863;9,0.0003720443451723812;10,0.0003903416080497114;11,0.0004074067320127433;12,0.0004090701195470461;13,0.000413567426584235;14,0.0004314334408415608;15,0.0004494226689903164;16,0.00043907270211021045;17,0.0004626681623190234;18,0.0004846618419392487;19,0.0004898368253793017;20,0.0005005564339336971;21,0.0005295116984197079;22,0.0005391839888969498;23,0.0005551401878371132;24,0.0005540928697599596;25,0.0005618553449200391;26,0.0005696794270258335;27,0.0005869293718260102;28,0.0006060891319433492;29,0.0006235238975806706;30,0.000632888153329338;31,0.0006428684785351544;32,0.0006606112789010504;33,0.0006622130594896382;34,0.0006777380098097972;35,0.0006789085417783807;36,0.0006776764028640824;37,0.0007161807439359051;38,0.0007188298426016467;39,0.0007467377890105038;40,0.0007485243904362364;41,0.0007577038253477589;42,0.0007765555507365234;43,0.0007790198285651201;44,0.0008073590235939817;45,0.0008091456250197142;46,0.0008400107048228875;47,0.0008567677940573448;48,0.0008453089021543704;49,0.00084555532993723;50,0.0008697668596031923;51,0.0009015560435920891;52,0.0009141238605179322;53,0.0009342077248209948;54,0.0009493014265211495;55,0.0009465291139639782;56,0.0009329139789609817;57,0.0009418469860896447;58,0.0009505951723811627;59,0.000990331652367284;60,0.001022675298867615;61,0.001007766418004605;62,0.0010120789042046495;63,0.0010117708694760746;64,0.0009924262885215912;65,0.0009751147367756995;66,0.0009524433807526102;67,0.0009746218812099802;68,0.0009560165836040753;69,0.0009228104398637354;70,0.0009231800815380248;71,0.0009180050980979719;72,0.0008886185849919567;73,0.0008830739598776141;74,0.0008700748943317668;75,0.0008525785217487304;76,0.0008472187174715328;77,0.0008437687285114974;78,0.0008367455366999969;79,0.0008300919865627859;80,0.0008178322043655176;81,0.0008119179375768856;82,0.0008072358097025519;83,0.0007903555065766647;84,0.00075320651831057;85,0.0007271467802731603;86,0.0007342315790303758;87,0.0007157494953159008;88,0.0007160575300444753;89,0.0007136548591615935;90,0.0006938790295871054;91,0.0006781692584298016;92,0.0006846379877298678;93,0.0006513702370438129;94,0.000634982789483645;95,0.0006252488920606882;96,0.0006104016181433932;97,0.0005917347135917737;98,0.0005800293939059395;99,0.0005871757996088699;100,0.0005696178200801185;101,0.0005576660726114247;102,0.000529450091473993;103,0.0005001867922594077;104,0.0005004948269879823;105,0.0004860788016906918;106,0.00047770025707346306;107,0.0004923627101536133;108,0.0004603270983818566;109,0.00044671196337886006;110,0.00043630038955303917;111,0.00040531209585843616;112,0.00041831116140428353;113,0.000400999609658392;114,0.00039730319291549695;115,0.00037993003422389054;116,0.00037721932861243423;117,0.0003494962030407217;118,0.00034733995994069963;119,0.00034462925432924326;120,0.0003143802439832193;121,0.00028862854067438415;122,0.00028788925732580514;123,0.0002644786179541369;124,0.00025745542614263634;125,0.00025147955240828945;126,0.0002313340811595117;127,0.00021359128079361574;128,0.00020921718764785666;129,0.00019781990269059711;130,0.00016898785209601614;131,0.00016251912279594992;132,0.00015420218512443616;133,0.0001439138251900451;134,0.00012894333738132038;135,0.00011656034129262216;136,0.00010553269800965209;137,0.0000869890073494622;138,0.00007251137510645681;139,0.00005704803173201274;140,0.000044295393969025014;141,0.000032220432608901365;142,0.000019899043465918053;143,0.000009549076585812068;144,0.0000009241041857237486;", + "silktouch": false, + "dim": "ad_astra:mars" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0.0000007479058635819705;2,0.000040324591144794576;3,0.0002173913043478261;4,0.00042057239728759467;5,0.0004914988033506182;6,0.0005272736338252891;7,0.0005516428998803349;8,0.000565229856402074;9,0.0005839898284802552;10,0.0005989479457518946;11,0.0006129711806940566;12,0.000637153470283207;13,0.0006508650777822097;14,0.0006612111088950938;15,0.0006892575787794176;16,0.0007205449740725967;17,0.0007346305345033906;18,0.0007411123853211009;19,0.0007684109493418427;20,0.0007819355803749502;21,0.0008224471479856403;22,0.0008324192261667332;23,0.0008267476067012364;24,0.0008601540686078979;25,0.000905776326286398;26,0.0008928126246509772;27,0.0009100144595133625;28,0.0009293976864778619;29,0.0009613706621459912;30,0.0009923464299960113;31,0.0009983920023932987;32,0.001016030115676107;33,0.0010422068209014759;34,0.0010456970482648582;35,0.001074927702433187;36,0.0010820951336258475;37,0.00113868667730355;38,0.0011523359593139208;39,0.00115638711607499;40,0.0011558885121659352;41,0.0011922242720382927;42,0.0011810056840845632;43,0.0012169051655364976;44,0.0012587255684084562;45,0.0012657060231352213;46,0.001277984144395692;47,0.0013353235939369762;48,0.0013161896689270042;49,0.0013446100917431192;50,0.0013661123853211008;51,0.0013617496011168726;52,0.0013659254088552054;53,0.0014109867371360192;54,0.0014558610889509372;55,0.0014371011168727561;56,0.0014250722975668129;57,0.0014647113083366573;58,0.0014797940765855604;59,0.0015151326286398084;60,0.0014885196449940167;61,0.0015018572995612284;62,0.0015585111687275626;63,0.0015677976665337055;64,0.0015796395093737533;65,0.0015739678899082568;66,0.0016130459712804148;67,0.0016266952532907857;68,0.0016430868568009572;69,0.001644271041084962;70,0.0016707593737534904;71,0.0017340820702034302;72,0.0017426829876346231;73,0.0017780215396888711;74,0.0017895517550857599;75,0.001814107997606701;76,0.0018367944754686875;77,0.0018702632628639806;78,0.0018984343837255683;79,0.0019192510969286;80,0.0019572073195053847;81,0.0019802054248105306;82,0.0019908630833665735;83,0.0019872482050259273;84,0.0020141104906262466;85,0.00205780065815716;86,0.0020834787594734743;87,0.002098810829676905;88,0.0021621335261268445;89,0.0021800209413641806;90,0.002154779118468289;91,0.0021374526326286398;92,0.0021811428001595533;93,0.0022331222576785;94,0.0022819854407658555;95,0.0022981277423215;96,0.0022797417231751097;97,0.0023082244714798562;98,0.0022929547267650577;99,0.002336520243318707;100,0.0023446848823294774;101,0.0023695527522935777;102,0.002433748005584364;103,0.002488407459114479;104,0.0025307887913841244;105,0.0025129637016354208;106,0.0025400129637016353;107,0.0025815840646190667;108,0.0025823942959712805;109,0.002599471479856402;110,0.0026472751296370165;111,0.0026882229756681293;112,0.002667281611487834;113,0.002714088053450339;114,0.0027534154367770246;115,0.002742134523334663;116,0.0027596479856402075;117,0.0027961083964898282;118,0.0028113158157159956;119,0.0028140581372157955;120,0.0028064544276027127;121,0.002792181890706023;122,0.0027627642600717983;123,0.002730604307937774;124,0.0026942062225767845;125,0.0027040536497806144;126,0.002708416433984842;127,0.002636555145592341;128,0.00260757379337854;129,0.002605330075787794;130,0.0025878166134822495;131,0.0025833291783007575;132,0.0026080723972875947;133,0.0025730454726765055;134,0.002529729258077383;135,0.0025223748504188273;136,0.0025117795173514156;137,0.0024839200239329872;138,0.002459239130434782;139,0.0024586782010370956;140,0.0024160475668129236;141,0.0023774680893498203;142,0.0023489853410450737;143,0.0023209388711607493;144,0.002360640207419226;145,0.002344373254886318;146,0.0023004337854008773;147,0.0023213128240925406;148,0.0022625398883127238;149,0.0022721380135620264;150,0.002310966792979657;151,0.0023034254088552053;152,0.0022521315317112086;153,0.002254873853211009;154,0.0022308785400877544;155,0.002248018049461508;156,0.002239292481053051;157,0.0022280115676106896;158,0.0021850693059433587;159,0.002189369764658955;160,0.0021788367570801754;161,0.0020983745512564824;162,0.002087280614280016;163,0.002037170921420024;164,0.0019396315317112085;165,0.0017097751296370161;166,0.0014112983645791781;167,0.0010005733944954127;168,0.0006684408655763861;169,0.0005251545672118069;170,0.00039221429996011165;171,0.0002877567810131631;172,0.00021396340247307539;173,0.00017070951336258476;174,0.00012907608695652173;175,0.00010844635021938572;176,0.00008875149581172718;177,0.00005416084962106103;178,0.000034902273633825294;179,0.000023870662145991222;180,0.000015768348623853207;181,0.000013026027124052652;182,0.000008289289988033504;183,0.000005173015556441961;184,0.000004238133226964499;185,0.0000011218587953729557;186,0.0000005609293976864779;187,0.0000003116274431591543;188,0.00000006232548863183088;189,0.0000001869764658954926;190,0.00000006232548863183085;", + "silktouch": false, + "dim": "ad_astra:mercury" + }, + { + "block": "minecraft:iron_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0.00002369121442397305;38,0.00012439287762563625;39,0.00031157027385475663;40,0.0005291037888020646;41,0.0007383481790809378;42,0.0009311823428202739;43,0.0011225043013836117;44,0.0013263719621478243;45,0.0015261510681769301;46,0.0017663676607642125;47,0.0019204445659187041;48,0.0021177593375869236;49,0.002348230607928884;50,0.0025526583446842076;51,0.0027945551652448206;52,0.002983860850240161;53,0.0031889046705857052;54,0.003395628718904581;55,0.0035641555846297225;56,0.003711567585489999;57,0.003970322693383039;58,0.004178894992472579;59,0.004377385923722131;60,0.004579293318517457;61,0.004748940336224819;62,0.004969722291920568;63,0.005128335812603055;64,0.0052293735213993844;65,0.00552223725715105;66,0.0056562634418237875;67,0.0058499937271489;68,0.006082089217865081;69,0.006296206269266615;70,0.00635372607355366;71,0.006418134812531366;72,0.006647093877697326;73,0.006951719209262313;74,0.007174293408129615;75,0.007406780952039574;76,0.007514763603125672;77,0.007649741916983296;78,0.007831598591296868;79,0.007790769051544914;80,0.007560857857194064;81,0.007487991970750592;82,0.007367631640260951;83,0.007152954512868306;84,0.006958832174349415;85,0.006743034894974551;86,0.006491336744569504;87,0.0062974944440461695;88,0.006047980590006451;89,0.005890935282099075;90,0.005724256667144599;91,0.005510139615743063;92,0.005277708079432218;93,0.005083641748512439;94,0.0048390005555953835;95,0.004628019929744068;96,0.004454508387698043;97,0.004327539160513299;98,0.004127760054484193;99,0.003927308857265754;100,0.0037112875474944445;101,0.003508540038712453;102,0.0033511026776112986;103,0.0031028769983511366;104,0.00294639176643487;105,0.002752325435515091;106,0.0025611154921499754;107,0.0023997015915119364;108,0.002236439440103233;109,0.0020167776363897057;110,0.0018005883038210626;111,0.0015969446734532943;112,0.0014288098609219302;113,0.0012548502580830166;114,0.0010591597067890171;115,0.0008572523119936913;116,0.0006663784142232419;117,0.0004831215499318948;118,0.0002889992114130046;119,0.00012898550075274214;120,0.000023635206824862;", + "silktouch": false, + "dim": "ad_astra:moon" + }, + { + "block": "ad_astra:moon_cheese_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0.000001736235572442469;68,0.000011481557817764714;69,0.00003069216431285396;70,0.000051358968384830446;71,0.00006883333930747724;72,0.00008412341386479318;73,0.00010915881066743135;74,0.00013189789590651658;75,0.00014601181088250056;76,0.000159509642268263;77,0.00017356754964513587;78,0.00020028317442110545;79,0.00022548659402107674;80,0.00023668811384328626;81,0.0002594832066814825;82,0.0002711887948956915;83,0.00029650422969388485;84,0.00030787377231342747;85,0.00031806715535163813;86,0.0003532399275933759;87,0.0003661216753889168;88,0.00037973152197290133;89,0.0003969258548999928;90,0.0004245376012617392;91,0.00042352946447774036;92,0.0004371953186608359;93,0.0004676634525772457;94,0.0004989717004803212;95,0.0005148778586278587;96,0.0005386810882500538;97,0.0005445058785576027;98,0.0005727337085095706;99,0.0006087465947379741;100,0.0006217403577317371;101,0.0006102587999139723;102,0.0006061142375797547;103,0.0006261649580615099;104,0.0006641381102588;105,0.000692533963008101;106,0.0007216579145458456;107,0.0007184654813965159;108,0.0007344836547422754;109,0.000769432396587569;110,0.0007856746003297727;111,0.0007953079073768729;112,0.0008155826582550721;113,0.0008325529607857195;114,0.0008535558104523621;115,0.000891024894257653;116,0.0009025624596745287;117,0.0009030665280665281;118,0.0009217730661696178;119,0.0009357189583482687;120,0.0009678113126388989;121,0.000989374238296652;122,0.0010299797476521614;123,0.001061512025951681;124,0.0010629122159294573;125,0.0010947245322245323;126,0.0011214961645996128;127,0.0011119188651516239;128,0.0011274889777044951;129,0.0011591332712022366;130,0.0012131245967452863;131,0.0012093720876048463;132,0.0012285826940999357;133,0.0012673959602838916;134,0.0012997123449709656;135,0.001302288694530074;136,0.0013029047781202958;137,0.0013467587282242456;138,0.001369833859057997;139,0.0013889884579539754;140,0.0014278017241379313;141,0.0014658868915334434;142,0.0014686872714889956;143,0.0014766403505627646;144,0.0014918184099218584;145,0.0015271592049609292;146,0.0015950964226826294;147,0.0016325094988888095;148,0.0016663380887518818;149,0.0016872289232203025;150,0.0016879570220087463;151,0.0017463729478815685;152,0.0017707922610939852;153,0.001806917162520611;154,0.0018158223707792672;155,0.0018050689117499463;156,0.0018489788694530075;157,0.0018655571187898776;158,0.0018748543802423116;159,0.0018436021399383467;160,0.0017497334038282313;161,0.0015046441501182883;162,0.0011478197361818052;163,0.0007266985984658398;164,0.0005652286902286903;165,0.000432546687934619;166,0.00032859658398451505;167,0.00024531328410638755;168,0.00017541580041580043;169,0.00013133781991540614;170,0.0000996375188185533;171,0.00008311527708079432;172,0.00006172037422037421;173,0.00003881326618395584;174,0.000026715624775969605;175,0.000019602659688866582;176,0.000014729998566205463;177,0.000007785056276435588;178,0.000006496881496881497;179,0.00000364049394221808;180,0.0000017922431715535165;181,0.0000013441823786651373;182,0.0000007841063875546635;183,0.0000003360455946662843;184,0.000000056007599111047385;", + "silktouch": false, + "dim": "ad_astra:moon" + }, + { + "block": "ad_astra:moon_ice_shard_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0.000026995662771524838;30,0.0001428753853322819;31,0.0003435506129471647;32,0.0005563234819700337;33,0.0007584549071618038;34,0.0009680913506344541;35,0.0012038273352928527;36,0.0014065188364757331;37,0.0016159312495519396;38,0.0018372732812387983;39,0.002051838393433221;40,0.0022323508853681266;41,0.0024159998028532516;42,0.002660192934977418;43,0.0029027618467273642;44,0.0031691899956986166;45,0.00338005860635171;46,0.003542984712165747;47,0.003716776292207327;48,0.0039467995017563985;49,0.00419597731020145;50,0.004335716269983512;51,0.004542608341099721;52,0.004806908201304753;53,0.0050379955552369345;54,0.005183279267330992;55,0.005351582102659689;56,0.005598239569144741;57,0.005856042547852892;58,0.0060294420747006965;59,0.00620721019427916;60,0.006407829414294932;61,0.006623682701268909;62,0.006813268424259803;63,0.006695204405333716;64,0.0064534195999713245;65,0.0062726830776399746;66,0.006098443436805505;67,0.005857386730231558;68,0.005648870438741129;69,0.005432681106172486;70,0.005221028389131838;71,0.004936957846440605;72,0.004661624489210697;73,0.00452871845652018;74,0.0043925639830812244;75,0.00421104335436232;76,0.0040170330310416525;77,0.0038663165818338236;78,0.0035721086637034915;79,0.0033163219585633378;80,0.0031334571474657684;81,0.0029384946949602125;82,0.002748124865581762;83,0.002592199709656606;84,0.002357863914975984;85,0.002107453939350491;86,0.0019190443759409277;87,0.0017063275145171699;88,0.0014761922897698761;89,0.0012969679726145245;90,0.0011012774213205248;91,0.0008807194960212203;92,0.0006799322532081153;93,0.0004998118144669869;94,0.0002982964728654384;95,0.00011296732740698258;96,0.000021002849666642775;", + "silktouch": false, + "dim": "ad_astra:moon" + }, + { + "block": "ad_astra:moon_desh_ore", + "distrib": "0,0;1,0.0006545608108108107;2,0.0006819485267761131;3,0.0007310671911965015;4,0.0007683682522044592;5,0.0008139584378808517;6,0.0008377056599039358;7,0.000839105849881712;8,0.000852155620474586;9,0.0009061469460176357;10,0.0009419918094487061;11,0.000979684923650441;12,0.0010106571259588502;13,0.0010408452218797046;14,0.0010765780701125528;15,0.0011077182952182953;16,0.0011306814108538248;17,0.0011609815219729013;18,0.0012002428489497458;19,0.0012302069144741559;20,0.0012825180120438742;21,0.001284478278012761;22,0.0013040249301025163;23,0.0013631689547637825;24,0.00136036857480823;25,0.0013880363287690875;26,0.0014456681482543552;27,0.0014741200086027671;28,0.0014885139615743066;29,0.001523126657824934;30,0.0015728614058355436;31,0.0015926320883217437;32,0.0015842309484550864;33,0.0015866392752168614;34,0.0016511600293927882;35,0.0017226257258584846;36,0.0017424524159437953;37,0.0017605988780557747;38,0.0018060770485339452;39,0.0018044528281597248;40,0.0018023245393935048;41,0.0018287041185748084;42,0.0019092430460964946;43,0.0019571295433364402;44,0.0019856934188830742;45,0.0020194660011470357;46,0.0020260748978421393;47,0.0020511102946447774;48,0.0020719451215140874;49,0.0021482274715033337;50,0.002201714728654384;51,0.002201714728654384;52,0.0022393518352570073;53,0.002289478636461395;54,0.0022931751380027244;55,0.0023069530073840418;56,0.002311825668506703;57,0.002350806957487992;58,0.0023827312889812893;59,0.002448820255932325;60,0.0024297776722345685;61,0.002442939458025665;62,0.0024598537529572015;63,0.0024381788121012257;64,0.0023504149042942154;65,0.0023536073374435446;66,0.0023565197325973192;67,0.0023433019392071117;68,0.0023257155530862425;69,0.00227474863789519;70,0.0022131962864721487;71,0.0021350096781131266;72,0.002134897662914904;73,0.0021290728726073554;74,0.002107005878557603;75,0.0020534626138074413;76,0.002038788622840347;77,0.002031563642555022;78,0.0019506326618395583;79,0.0019192123987382612;80,0.0018986016022653957;81,0.0018554197433507777;82,0.0018140861352068248;83,0.0018159903935766005;84,0.001781041651731307;85,0.001728954584558033;86,0.0016814601405118648;87,0.0016676262635314362;88,0.0016368780916194712;89,0.001609434368055058;90,0.0015847910244461967;91,0.0015433454011040217;92,0.0015215584450498244;93,0.0014585498960498961;94,0.0014302660584988173;95,0.0014281377697325974;96,0.0014084791024446199;97,0.0013589683848304534;98,0.0013302924940855976;99,0.0013009445121514086;100,0.0012510977489425766;101,0.0012141887411283962;102,0.0011924577926733099;103,0.0011821523944368774;104,0.0011516282529213566;105,0.001119423883432504;106,0.0011055900064520755;107,0.001048462255358807;108,0.0010361405835543768;109,0.0010115532475446268;110,0.0009696595634095635;111,0.0009647869022869023;112,0.0009154442074700695;113,0.0008753427665065597;114,0.000859268585561689;115,0.0008405060398594881;116,0.0007949158541830956;117,0.0007664639938346835;118,0.0007346516775396086;119,0.0007140408810667432;120,0.0006931500465983224;121,0.0006716431285396802;122,0.0006442554125743781;123,0.0006166996738117428;124,0.0005847753423184458;125,0.0005511707828518174;126,0.0005330803283389491;127,0.000493987024159438;128,0.0004584221987239229;129,0.00044246003297727433;130,0.000413672127034196;131,0.00039026095060577814;132,0.00035520019356226253;133,0.0003240599684565202;134,0.00029062343178722495;135,0.0002597072370779267;136,0.00022582263961574305;137,0.00019339423973044665;138,0.0001652224173775898;139,0.00014427557531005808;140,0.00011117508423542908;141,0.00007734649437235645;142,0.00004721440605061295;143,0.000020274750878199156;144,0.000005936805505771024;145,0.0000001680227973331421;146,0.00000005600759911104737;147,0.0000015682127751093271;148,0.0000003360455946662844;149,0.0000032484407484407486;150,0.0000006720911893325686;151,0.0000010081367839988529;152,0.00000016802279733314216;153,0.0000008401139866657106;154,0.0000009521291848878056;155,0.00000022403039644418954;156,0.00000005600759911104739;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0.0000007841063875546632;166,0.0000001680227973331421;167,0.00000005600759911104737;", + "silktouch": false, + "dim": "ad_astra:moon" + }, + { + "block": "minecraft:gold_ore", + "distrib": "0,0;1,0.0000883696321225299;2,0.0001240297451557204;3,0.00019847257306388695;4,0.00029677207904329475;5,0.00037683559026667517;6,0.0004183037427255868;7,0.0004562121290848628;8,0.0005092339083583807;9,0.0005407097349235787;10,0.0006023498952804247;11,0.0006686115063631132;12,0.0007035221949542751;13,0.0007492995379548507;14,0.0008153113408901964;15,0.000852907467065294;16,0.0008875058954722774;17,0.0009419016195561809;18,0.0009926751255036133;19,0.0010423869468248383;20,0.0010678673778538083;21,0.0011137696249280552;22,0.0011468692044509818;23,0.0012164407734859628;24,0.0012842012334527086;25,0.001349276255835518;26,0.0013898076277418943;27,0.0014111037723028713;28,0.0014400190653578052;29,0.0015060308682931507;30,0.0015992717592888664;31,0.0016258763269808788;32,0.0016459858828419775;33,0.001706002290241095;34,0.0017165566844663301;35,0.0017499685241734349;36,0.0017858784453539682;37,0.0018498293310737352;38,0.0019400725243013367;39,0.0020038360539105966;40,0.0020292540329027308;41,0.0020433681932276013;42,0.002091456261591098;43,0.002161714803031272;44,0.002201184490311441;45,0.002221668758393554;46,0.002269507018609708;47,0.0022692572104623648;48,0.0022092408030632473;49,0.0021505358884376796;50,0.0020956405480590905;51,0.002090082316780713;52,0.0020205107477457318;53,0.001967926132730063;54,0.0019180894073351665;55,0.0018601339171516276;56,0.001807486850099124;57,0.0017791960774125471;58,0.0017291095438703077;59,0.0016857678303063245;60,0.0016279996962332928;61,0.0015987096909573447;62,0.0015381936672635415;63,0.0014782397119012598;64,0.0014345857381530983;65,0.0013908693123681013;66,0.0013487766395408325;67,0.0013061218983820427;68,0.0012233729495747265;69,0.0011809680165632795;70,0.001169851554006523;71,0.0011620450494020593;72,0.0010779846078211933;73,0.0010486321505084094;74,0.000982183183315214;75,0.0009319717456993031;76,0.0008984350019185266;77,0.0008552181924282151;78,0.0008121887390484108;79,0.0007420551016819083;80,0.0006974643473812113;81,0.0006677996298842489;82,0.000619524205410245;83,0.0005655031935473556;84,0.000533090586429622;85,0.00048556458639764666;86,0.0004318558347189359;87,0.00039226124336509563;88,0.0003486072696169342;89,0.00030226785828483724;90,0.0002626108148941613;91,0.0002159591433778858;92,0.00017399137462428854;93,0.00011984545868772782;94,0.00006338881738824583;95,0.000027166636023533926;96,0.000006370107757242437;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "minecraft:coal_ore", + "distrib": "0,0;1,0.000875077940141971;2,0.0009735023501950503;3,0.0013826880955426233;4,0.001836776855375072;5,0.0020311275940078023;6,0.0020930800145488263;7,0.0021557818595318795;8,0.0021884442747969564;9,0.0021875699462812564;10,0.002299421544254013;11,0.0024582995259640594;12,0.0025270592185201767;13,0.002595069486634265;14,0.0027047977153546073;15,0.002798850482829187;16,0.0028603657391123617;17,0.0029062679861866086;18,0.0029761518154057687;19,0.0030535298890452135;20,0.0031685040888597563;21,0.003266928498912835;22,0.003320200086333696;23,0.003434612217816717;24,0.0035397814478480526;25,0.0035514599787363306;26,0.0036016089643154062;27,0.0036961613480846704;28,0.0037374421444330754;29,0.003790588827780265;30,0.003875273789729488;31,0.003907374136663043;32,0.0039748223364456095;33,0.004114090378589244;34,0.00417716693579331;35,0.004317933826821002;36,0.004410675101522031;37,0.00442204137222613;38,0.004589974899277355;39,0.004678906599731407;40,0.004669039177911364;41,0.004758720302807443;42,0.0048212347916799896;43,0.004904046192524141;44,0.0049510101242245955;45,0.004978988636726993;46,0.005094400000799387;47,0.005208250063950886;48,0.005362756403082432;49,0.005461742881467033;50,0.00539029775132698;51,0.0054584329235147395;52,0.0055372473940014065;53,0.005664399740998912;54,0.005758452508473492;55,0.005765509588635928;56,0.005787180445417919;57,0.0059538649317324305;58,0.0061532742853488516;59,0.006201299901675512;60,0.006128855538946088;61,0.006084077428534885;62,0.006186561220982286;63,0.0062955400252606;64,0.006327577920157318;65,0.0064293747401995265;66,0.006449921460318476;67,0.006470468180437424;68,0.006567019029385432;69,0.0067321422147790504;70,0.006799965126782631;71,0.006802275852145552;72,0.006833252062416065;73,0.006987258785252927;74,0.007114161324103089;75,0.007174052827428536;76,0.007324000167871075;77,0.00750517352673147;78,0.0076065331825158275;79,0.007620085274509176;80,0.007706393989416128;81,0.00789712250991239;82,0.008026897842456993;83,0.008063369831969047;84,0.00811620425513206;85,0.008296940449734603;86,0.008383436520752064;87,0.008308369172475539;88,0.008398362557555798;89,0.00858334549066317;90,0.008645422815277866;91,0.008694260308083393;92,0.008777383969111723;93,0.008842334087420863;94,0.008963990655176824;95,0.009012266079650829;96,0.009157029901036003;97,0.009336766863049179;98,0.009425198947208543;99,0.009538424489991686;100,0.009537862421660166;101,0.009578830957824393;102,0.009549603404585279;103,0.009622609835646223;104,0.009806031467832705;105,0.009978149281351921;106,0.010127347197352435;107,0.010239760863656713;108,0.010273110251326982;109,0.010390145368357102;110,0.010503121102992901;111,0.010563387318539362;112,0.010651756950661891;113,0.010721578327844216;114,0.010861470890356207;115,0.011027156144081347;116,0.011118710830082496;117,0.011139944522606639;118,0.011165549857709279;119,0.011221069718456225;120,0.011183723400428471;121,0.011016726653929781;122,0.010980442020528235;123,0.010930105678838651;124,0.010816130711613482;125,0.01068566840666368;126,0.010610850866534502;127,0.010487882806004989;128,0.010416000511607085;129,0.01044535296891987;130,0.010342931628509305;131,0.010134216921404362;132,0.009996197919997443;133,0.009974901775436466;134,0.009902270056596534;135,0.009907828287874914;136,0.009825329147214939;137,0.0097595047003901;138,0.009815087013173882;139,0.009743829239144339;140,0.009581329039297821;141,0.009383793246786468;142,0.009292113656711645;143,0.00927443973028714;144,0.0092427140955746;145,0.00926569644513014;146,0.009108504668414657;147,0.008980290636790945;148,0.009038683291232336;149,0.009075342636854895;150,0.009060853764309009;151,0.009013015504092857;152,0.008936261950821771;153,0.008497536392050906;154,0.00838493536963612;155,0.006786600390899789;156,0.006749378976945705;157,0.0049105412043550555;158,0.004751475866534502;159,0.00411864937727825;160,0.00407992911444011;161,0.0037548038106734027;162,0.0032418852321417155;163,0.0025166921804054485;164,0.0017762608316812686;165,0.0012427330809937965;166,0.0009320966497729745;167,0.0007049585918014964;168,0.0005301553406983436;169,0.0003918865311440813;170,0.00027235333264053206;171,0.00019997142194794394;172,0.00014863584766899022;173,0.00010585620243652873;174,0.00007868956641299481;175,0.00005439572408390356;176,0.000034973140627997696;177,0.000021233692524141458;178,0.000014488872545884758;179,0.00001136627070409925;180,0.000008431024972820874;181,0.000004059382394321162;182,0.000001124136663042783;183,0.0000004996162946856814;184,0.0000004996162946856813;185,0.00000006245203683571019;186,0;187,0;188,0.0000006245203683571018;189,0.00000012490407367142035;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "minecraft:nether_quartz_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0.000028197094631323144;171,0.00000469951577188719;172,0.0000010638405027857025;173,0.0000062992046517132515;174,0.000002530110570929381;175,0.0000011323456905409147;176,0;177,0;178,0;179,0.0000037851084465216032;180,0.0000006308514077536006;181,0;182,0;183,0;184,0.0000014543518078116005;185,0.00000166084597168287;186,0.000013176292769451166;187,0.000003824940432076508;188,0.0000010443619774117022;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "minecraft:diamond_ore", + "distrib": "0,0;1,0.00018623197384408775;2,0.00021945645744068557;3,0.0003000195849587517;4,0.0003828934378397391;5,0.00043285506730830726;6,0.00045371404761143435;7,0.00046589219479439793;8,0.000495619364328196;9,0.0005168530568523374;10,0.0005099833328004093;11,0.0005161660844471445;12,0.0005528878821065421;13,0.0005677514668734412;14,0.0005858625575557972;15,0.0006135288098740168;16,0.0006388218847924794;17,0.0006402582816397006;18,0.0006416322264500864;19,0.0006634279873057494;20,0.0006979639636758969;21,0.0006991505523757754;22,0.0007066447967960606;23,0.0007071444130907461;24,0.0007393072120611371;25,0.0007564815221909574;26,0.0007620397534693355;27,0.0007743428047259705;28,0.0007801508441516915;29,0.000819682983468696;30,0.000852470302807444;31,0.0008745783238472853;32,0.0008836338691884632;33,0.0008997464946920766;34,0.0008945629756347126;35,0.0009343449230990599;36,0.0009571399165440941;37,0.0009523311097077445;38,0.0009371552647566668;39,0.000963822284485515;40,0.0010223398430005755;41,0.0010199666656008186;42,0.0010453221925561169;43,0.0010331440453731533;44,0.0010213406104112041;45,0.001029958991494532;46,0.0010626214067596088;47,0.0011376263029992965;48,0.0011533642162818956;49,0.0011581105710814095;50,0.001156923982381531;51,0.0011845902346997506;52,0.0012065733516659208;53,0.0012059488312975634;54,0.0012358009049050329;55,0.0012428579850674681;56,0.001228931180853105;57,0.0012510392018929462;58,0.0012731472229327878;59,0.0012875736434418367;60,0.0013222345238856556;61,0.0013154897039073991;62,0.0013296038642322697;63,0.0013168636487177847;64,0.0012896970126942508;65,0.0012813284397582656;66,0.0012968165448935217;67,0.0012727100586749376;68,0.0012395480271151756;69,0.0012070105159237704;70,0.0012013898326085567;71,0.0011973304502142354;72,0.0011709132386327299;73,0.0011932710678199143;74,0.0011612331729231949;75,0.001150616326661124;76,0.0011257604160005116;77,0.0011064002845814415;78,0.0011072121610603055;79,0.0010836052911364074;80,0.0010637455434226516;81,0.0010310206761207392;82,0.0010550647103024875;83,0.0010606853936177016;84,0.0010418873305301527;85,0.001013221845622562;86,0.0009893027155144847;87,0.0009696927759480719;88,0.0009436502765875807;89,0.0009379046891986954;90,0.0009132361346485899;91,0.0009184196537059539;92,0.0009031189046812048;93,0.0008661472988744643;94,0.0008421657167295518;95,0.000820557311984396;96,0.0007882696089403339;97,0.0007825864735882843;98,0.0007587922475538786;99,0.0007359348020720087;100,0.0007351853776299802;101,0.0007435539505659654;102,0.0007166371226897741;103,0.0006876593775980048;104,0.0006807896535460766;105,0.0006882838979663619;106,0.0006551843184434355;107,0.0006111556324742598;108,0.000599477101585982;109,0.0005839265444138901;110,0.0005864246258873184;111,0.000588485543102897;112,0.0005780560529513334;113,0.000557259524685042;114,0.000535900928087229;115,0.0005029887046748098;116,0.00048100558770863974;117,0.0004554627046428344;118,0.0004443462420860779;119,0.0004228002893777579;120,0.00041118421052631577;121,0.00038664056004988163;122,0.00036509460734156164;123,0.00035635132218456226;124,0.00033917701205474194;125,0.00032387626302999293;126,0.00031232263621538655;127,0.00028677975314958114;128,0.0002676069778410181;129,0.0002510571880795549;130,0.0002463108332800409;131,0.00022857445481869925;132,0.00019816031287970838;133,0.000184233508665345;134,0.0001596898581889109;135,0.00015400672283686126;136,0.0001350837556756411;137,0.00011360025500415681;138,0.00010379528522095032;139,0.00008293630491782311;140,0.00006107809202532455;141,0.000041468152458911554;142,0.00002604249936049114;143,0.000009929873856877917;144,0.0000023107253629212763;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "minecraft:ancient_debris", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0;69,0;70,0;71,0;72,0;73,0;74,0;75,0;76,0;77,0;78,0;79,0;80,0;81,0;82,0;83,0;84,0;85,0;86,0;87,0;88,0;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0;124,0;125,0;126,0;127,0;128,0;129,0;130,0;131,0;132,0;133,0;134,0;135,0;136,0;137,0;138,0;139,0;140,0;141,0;142,0;143,0;144,0;145,0;146,0;147,0;148,0;149,0;150,0;151,0;152,0;153,0;154,0;155,0;156,0;157,0;158,0;159,0;160,0;161,0;162,0;163,0;164,0;165,0;166,0;167,0;168,0;169,0;170,0.00000939903154377438;171,0.00000469951577188719;172,0.000005054129272815758;173,0.000007502219273404876;174,0.00000157507163085275;175,0.0000002654191898475515;176,0;177,0;178,0;179,0.0000012617028155072013;180,0.0000006308514077536006;181,0.0000006308514077536006;182,0;183,0;184,0.0000004847839359372002;185,0.000002370072973540005;186,0.000009626383286016453;187,0.0000024259649537362393;188,0.0000013816029763245371;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "ad_astra:venus_calorite_ore", + "distrib": "0,0;1,0.0002524311328899405;2,0.00029377438127518065;3,0.0003882643130076102;4,0.0005140427151947304;5,0.0005806165864615974;6,0.000606596633785253;7,0.000630265955745987;8,0.0006475027179126431;9,0.0006579946601010424;10,0.0006780417639253055;11,0.0007180110675001598;12,0.0007315631594935091;13,0.0007512980031335934;14,0.000788456965050841;15,0.0008091910412802967;16,0.0008481611122657798;17,0.0008572166576069579;18,0.0008748281319946281;19,0.0008855698823303703;20,0.0009246024053526892;21,0.0009442747969559378;22,0.0009764375959263286;23,0.0010069766419389908;24,0.0010220900348532327;25,0.0010396390572040672;26,0.001066181172859244;27,0.001082606058547036;28,0.0010861658246466713;29,0.0011149562136279338;30,0.0011491799298139027;31,0.0011524274357293599;32,0.0011732239639956512;33,0.001180655756379101;34,0.001211694418686449;35,0.0012471671756091323;36,0.0012575966657606959;37,0.0012804541112425658;38,0.0013038736250559572;39,0.0013285421796060625;40,0.0013502754884248897;41,0.0013818137670269233;42,0.0013982386527147152;43,0.0014353351625951269;44,0.001461627470102961;45,0.001480800245411524;46,0.0015168975227025645;47,0.0015350086133849201;48,0.0015649231390292256;49,0.0015712307947496325;50,0.0015782878749120675;51,0.0016136357277610795;52,0.001590653378205538;53,0.0015900288578371813;54,0.0016828325845750461;55,0.0016998195385943596;56,0.0017036291128413377;57,0.0017099992205985804;58,0.0017168689446505087;59,0.001711060905224787;60,0.0017623964795037412;61,0.0017971822640212318;62,0.0018180412443243588;63,0.00175746276859372;64,0.0017533409341625632;65,0.0017778221326021615;66,0.0017319823375647504;67,0.0017056900300569163;68,0.0017042536332096952;69,0.001659038358540641;70,0.0016472349235786918;71,0.0016241276699494789;72,0.0015756648893649676;73,0.0015656101114344184;74,0.001572354931412675;75,0.0015448760352049628;76,0.0015162730023342073;77,0.0014879822296476307;78,0.001449574226993669;79,0.0014635010312080321;80,0.0014645627158342395;81,0.0014584424162243398;82,0.001414663538402507;83,0.0013704474963228239;84,0.0013618915672763317;85,0.0013603927183922747;86,0.0013203609627805847;87,0.0013040609811664642;88,0.0012852629180789153;89,0.0012697123609068236;90,0.0012354886447208543;91,0.0011912101506043357;92,0.0011463695881562957;93,0.001170288718264373;94,0.0011744105526955298;95,0.0011385630835518323;96,0.0010945968496194924;97,0.0010754240743109293;98,0.0010633708312016371;99,0.00104338617941421;100,0.0010268988416895822;101,0.00101878007690094;102,0.001003729136023534;103,0.0009645717089275436;104,0.0009342824710622242;105,0.0009146100794589754;106,0.0008866315669565773;107,0.0008538442476178295;108,0.0008238672699366887;109,0.0008133128757114535;110,0.0007812125287778985;111,0.0007800259400780201;112,0.0007814623369252415;113,0.0007296895983884377;114,0.0007000873329283112;115,0.0006905321712924475;116,0.0006653015484108205;117,0.0006348249544349939;118,0.000597103924186225;119,0.0005818656271983117;120,0.0005650660292895056;121,0.000547766815086014;122,0.0005148545916735947;123,0.0004888745443499393;124,0.00046027151147918404;125,0.0004417857085758138;126,0.0004276090962141076;127,0.000406625211837309;128,0.0003716520712093112;129,0.00033911456001790624;130,0.00032874752190317834;131,0.0002934621210910021;132,0.00026973034709343226;133,0.00024968324326916924;134,0.00022270396335614246;135,0.00020590436544733645;136,0.00018492048107053783;137,0.0001681833351985675;138,0.0001410791512118693;139,0.00010698033909957154;140,0.00008343592121250879;141,0.00005764322999936049;142,0.00004140570042207585;143,0.000017486570313998848;144,0.000002373177399756987;", + "silktouch": false, + "dim": "ad_astra:venus" + }, + { + "block": "blue_skies:ventium_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002024300658708147;66,0.0019447055385642354;67,0.001969749532560769;68,0.0019539316600556762;69,0.0019712749595886515;70,0.001959172456080307;71,0.001988495087677352;72,0.0019848253142781707;73,0.0019287469374043118;74,0.001959556931737794;75,0.0019304116494779139;76,0.0019151198516274125;77,0.0019481499601433317;78,0.001922443664913819;79,0.001960667578280979;80,0.0019846386365634334;81,0.0019962862272537942;82,0.001933867099917358;83,0.0018505271047639313;84,0.0017628835411678018;85,0.00163209600157728;86,0.001492214075439282;87,0.001391927464696747;88,0.001318085031837806;89,0.0012971254559789062;90,0.001289864887912489;91,0.0012648152714108863;92,0.0012838807924364795;93,0.0012981658282570886;94,0.0013043078634455574;95,0.0013137744333058875;96,0.0012933706370348058;97,0.0012551461462240018;98,0.001248274424322076;99,0.001182243666836019;100,0.0011217262880124038;101,0.0010500662068188003;102,0.001008207307638378;103,0.0010200405652560475;104,0.0010179828735447775;105,0.0009629643762066832;106,0.0009816484487160649;107,0.0009969048110533758;108,0.0009809017905893123;109,0.0009899156446324321;110,0.000994741593865546;111,0.0009960650638945565;112,0.0009943978175429706;113,0.000986785510070375;114,0.0009771392064378674;115,0.0009766024558631667;116,0.000978357534734512;117,0.000992145326836775;118,0.0009680489700707973;119,0.0009792628786559738;120,0.0009592662229664719;121,0.0009535518437940884;122,0.0009369660876704528;123,0.0009127721486716818;124,0.0008611052898317704;125,0.0007579347219097302;126,0.0003705861361038578;127,0.00005562284118944856;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:falsite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0020275886760736605;66,0.0020011767849124626;67,0.0019695076035136008;68,0.0020031955942001072;69,0.001979600890817052;70,0.00199294785742901;71,0.0019384598762582402;72,0.0019371121781349091;73,0.0019453650961567528;74,0.0019799409335957744;75,0.0019634071004110496;76,0.001977629298772507;77,0.0019292728977187963;78,0.001939115856415087;79,0.0019163282949868784;80,0.0019670433705926355;81,0.001981811491798183;82,0.0019246114123715428;83,0.0018278485809853353;84,0.001729242472737362;85,0.0016155755299999222;86,0.0015227219440530208;87,0.0014095716776310737;88,0.0013646276202744414;89,0.0013304974936242603;90,0.0013049937845252572;91,0.0012969388926042762;92,0.0012936500508413714;93,0.0013071151349604644;94,0.001308124008888677;95,0.0013126839576105853;96,0.00131983402823315;97,0.0012799066341867686;98,0.0012504821203335528;99,0.0011883439527445776;100,0.0011569549782236156;101,0.0010875288599399972;102,0.0010292922801357774;103,0.0009906464945867934;104,0.0009906155595837422;105,0.0010052675838128095;106,0.0009982426868916415;107,0.000979130707757721;108,0.0009946289547636197;109,0.0010197650317037002;110,0.0010075915673676114;111,0.00100044211230206;112,0.0010117784838405302;113,0.0010053545204073483;114,0.0009736515935360525;115,0.0009448285102109219;116,0.0009866858107182527;117,0.0009685014645172072;118,0.0009631759054042679;119,0.0009772061945995262;120,0.0009591533729357642;121,0.0009506236949464552;122,0.000941658486614619;123,0.0009268080327006594;124,0.0008802376418666385;125,0.0007511567275693258;126,0.00036603392387374214;127,0.00006443636457813806;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:everbright_aquite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.002740027523785108;66,0.0026521797377941094;67,0.00263126094898308;68,0.00260310960021079;69,0.0026409414523158436;70,0.002624862915171196;71,0.0025673918810174895;72,0.0025894233713610205;73,0.0025679482317837402;74,0.0025843049443115135;75,0.002595932675326155;76,0.0025644432219563604;77,0.002558100823221102;78,0.0025937629073377773;79,0.0025778512754230046;80,0.0025888113855181455;81,0.0025821908113997606;82,0.002572510308066997;83,0.0025237739809434285;84,0.002451837826867202;85,0.0023517503240186866;86,0.002312638865151256;87,0.002275641539195579;88,0.002237253336324275;89,0.002224512903777132;90,0.0022114386607702385;91,0.0022419266827607815;92,0.002185790890446077;93,0.002215889466900245;94,0.0022107154047741125;95,0.002248602891955791;96,0.002234471582493021;97,0.002199032038682846;98,0.00220531880234148;99,0.0021506851570956527;100,0.0021120187788412235;101,0.0021057320151825895;102,0.0020864822786703127;103,0.0020742425618127955;104,0.0020615577643422777;105,0.0020630042763345293;106,0.002054714649917393;107,0.0020720171587477925;108,0.0020644507883267817;109,0.0020784151925596767;110,0.0020627817360280294;111,0.0020552153656070186;112,0.0020672881772346606;113,0.002076746140260924;114,0.002071572078134792;115,0.0021074010674813418;116,0.001957186360593631;117,0.0010693618078106307;118,0.00016245442374522874;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:everbright_charoite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0009155864560189142;66,0.0008784778599099869;67,0.0008854322444881217;68,0.0008646803609069674;69,0.0008708558544123512;70,0.0008882139983193756;71,0.0008967818001196378;72,0.0008774207934541104;73,0.0008660156027459694;74,0.0008695206125733493;75,0.0007868468887084828;76,0.00043228454537685865;77,0.00007249250484247706;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0.0001142946235451734;69,0.00010371128324858882;70,0.00011112661314475753;71,0.00011074711431424362;72,0.00012130049137095916;73,0.00011278124057771647;74,0.0001169934524793038;75,0.00013271786609329089;76,0.00011404795976816928;77,0.00010302724535165712;78,0.00011561163146424822;79,0.00010737199509363455;80,0.00011493224274599688;81,0.00010739261774986387;82,0.00011150262069239652;83,0.00011464838309860147;84,0.0001035856898389041;85,0.00010932256111008402;86,0.00010668768082546171;87,0.00010764306771284058;88,0.00011328255090712082;89,0.00010757240923509674;90,0.00011511775499827439;91,0.00011609109886489182;92,0.00010180990294997579;93,0.00010943338471872406;94,0.00010063235720933692;95,0.0001112315197437779;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:everbright_diopside_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0006542685011109212;66,0.0006374110728935224;67,0.0006228903178943771;68,0.0006209430902124992;69,0.0006004693820144704;70,0.0006090928188913576;71,0.0006235579388138779;72,0.0006072568613627301;73,0.0006072568613627299;74,0.0005969087371104654;75,0.0006031398656924742;76,0.0006068117807497294;77,0.0006136548951746138;78,0.0006060328896769784;79,0.0006074794016692304;80,0.000610817506266735;81,0.0005506203533584002;82,0.0002953666218025409;83,0.000051017365265196835;84,0.00000033381045975047005;85,0.00000022254030650031333;86,0.0000007232559961260181;87,0.00000033381045975046994;88,0.00000027817538312539163;89,0.000000500715689625705;90,0.00000027817538312539163;91,0.0000002781753831253917;92,0.00000022254030650031333;93,0.00000033381045975047;94,0.0000007232559961260182;95,0.0000003894455363755483;96,0.0000005007156896257049;97,0.00000038944553637554835;98,0.0000002781753831253917;99,0.00000027817538312539163;100,0.00000044508061300062666;101,0.000000166905229875235;102,0.0000002781753831253917;103,0.00000033381045975046994;104,0.0000003338104597504699;105,0.0000002781753831253917;106,0.00000016690522987523497;107,0.00000038944553637554835;108,0.00000016690522987523497;109,0.00000011127015325015666;110,0.00000016690522987523497;111,0.00000011127015325015665;112,0.00000005563507662507833;", + "silktouch": false, + "dim": "blue_skies:everbright" + }, + { + "block": "blue_skies:horizonite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0013012241242756767;66,0.0012333201248605947;67,0.0012069823025720676;68,0.0012024537363317165;69,0.0012117497451182477;70,0.0011874388557016565;71,0.0012006827947912413;72,0.0011625981924950467;73,0.0011657928684984478;74,0.0011893933491310196;75,0.001178948450785278;76,0.001190217130471962;77,0.0011862331543022837;78,0.001158702109515691;79,0.0011532391131005154;80,0.0011944154308057334;81,0.001187786255951053;82,0.0011994767263653597;83,0.0012004678911116074;84,0.0012068460391512913;85,0.0011999475827420853;86,0.0011231837952050555;87,0.0005901876090230997;88,0.00006528580615427083;89,0;90,0;91,0;92,0;93,0;94,0;95,0;96,0;97,0;98,0;99,0;100,0;101,0;102,0;103,0;104,0;105,0;106,0;107,0;108,0;109,0;110,0;111,0;112,0;113,0;114,0;115,0;116,0;117,0;118,0;119,0;120,0;121,0;122,0;123,0.00000016690047568860917;", + "silktouch": false, + "dim": "blue_skies:everdawn" + }, + { + "block": "blue_skies:everdawn_aquite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0027259854694220527;66,0.0026583351432762697;67,0.0026393084890477684;68,0.0026217283056085682;69,0.002605650226450565;70,0.0026342458412852137;71,0.0026418676296749936;72,0.002610212172786054;73,0.0025889601788817045;74,0.0026089326024724413;75,0.0025727708327399094;76,0.002545399154726977;77,0.002566039180220469;78,0.002548180829321787;79,0.0025686539543395906;80,0.002541671710769932;81,0.00254228367918079;82,0.0025343280898396333;83,0.002558918093257755;84,0.0025588624597658585;85,0.00257026732560458;86,0.0025768877111402282;87,0.002586957373173441;88,0.0025742729370211064;89,0.002561866668328254;90,0.0025596413286524053;91,0.002586178504286894;92,0.002559474428176717;93,0.0025726039322642212;94,0.002572993366707494;95,0.0025551350158088135;96,0.0025470125259919674;97,0.0025629793381661773;98,0.00256954409020993;99,0.0025790017838322843;100,0.002575051805907654;101,0.0026098227383427805;102,0.002597694637109409;103,0.0026073192312074515;104,0.0025983622390121624;105,0.0025866792057139603;106,0.0026192804319651354;107,0.002621895206084257;108,0.0026440929693508416;109,0.0026333557054148745;110,0.00262067126926254;111,0.0026553865682057715;112,0.002654218264875951;113,0.0026598928810493633;114,0.002621617038624776;115,0.0026231747763978694;116,0.0024499320826330932;117,0.001311114503517817;118,0.00019488412211239923;", + "silktouch": false, + "dim": "blue_skies:everdawn" + }, + { + "block": "blue_skies:everdawn_charoite_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0009152822086763324;66,0.0008929731784259548;67,0.0008837380187711853;68,0.0008654345999373344;69,0.0008903027708149372;70,0.0008590923818611672;71,0.0008568670421853191;72,0.0008692733108781724;73,0.0008623747578830434;74,0.0008570895761529039;75,0.0007863237744609338;76,0.00042765465220611276;77,0.00007382564374626144;", + "silktouch": false, + "dim": "blue_skies:everdawn" + }, + { + "block": "minecraft:emerald_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0;66,0;67,0;68,0.00014422438864620466;69,0.00011988284720848758;70,0.00016107983631492167;71,0.00013593160272981132;72,0.00014069141218961542;73,0.00014245421075963699;74,0.00014314878117134956;75,0.00016033510855332809;76,0.00013626358176647594;77,0.00016293130888334984;78,0.00013788694864619582;79,0.00015875086697681297;80,0.00013850264342579516;81,0.00014624353874940279;82,0.00014750629977595365;83,0.00014797842228755329;84,0.00016130542532039304;85,0.00014823207303789706;86,0.0001558534009625048;87,0.00013833234840395013;88,0.0001470933277671521;89,0.0001424956756354172;90,0.0001376871243310926;91,0.00016073294013070432;92,0.00014350590351748516;93,0.00014278994263078825;94,0.00014564858496092455;95,0.00013592428734860923;", + "silktouch": false, + "dim": "blue_skies:everdawn" + }, + { + "block": "blue_skies:everdawn_diopside_ore", + "distrib": "0,0;1,0;2,0;3,0;4,0;5,0;6,0;7,0;8,0;9,0;10,0;11,0;12,0;13,0;14,0;15,0;16,0;17,0;18,0;19,0;20,0;21,0;22,0;23,0;24,0;25,0;26,0;27,0;28,0;29,0;30,0;31,0;32,0;33,0;34,0;35,0;36,0;37,0;38,0;39,0;40,0;41,0;42,0;43,0;44,0;45,0;46,0;47,0;48,0;49,0;50,0;51,0;52,0;53,0;54,0;55,0;56,0;57,0;58,0;59,0;60,0;61,0;62,0;63,0;64,0;65,0.0006418992294983906;66,0.0006020656493007093;67,0.0006175873935397499;68,0.0006229282087617854;69,0.000624485946534879;70,0.0006086860348363573;71,0.0006171979590964764;72,0.0006076846319822257;73,0.0006135817821232232;74,0.0006252091819295298;75,0.000589937548067337;76,0.0006048473238955193;77,0.0006032339526305295;78,0.0006183662624262968;79,0.0006004522780357194;80,0.0006010642464465777;81,0.0005662933140114508;82,0.0003101567173213319;83,0.000052629283333808076;", + "silktouch": false, + "dim": "blue_skies:everdawn" + } +] \ No newline at end of file diff --git a/minecraft/config/wormhole-common.toml b/minecraft/config/wormhole-common.toml new file mode 100644 index 0000000..9971f87 --- /dev/null +++ b/minecraft/config/wormhole-common.toml @@ -0,0 +1,90 @@ +# Power consumption will be calculated as follows: +#Idle power drain = idlePowerDrain + portal size * sizePowerDrain +#Interdimensional teleport power drain = travelPowerDrain + dimensionPowerDrain +#Same dimension teleport power drain = travelPowerDrain + (target distance)^(1/2) * distancePowerDrain +["Power Consumption"] + # If false, a portal will not require power. + # Allowed values: true, false - Default: true + requirePower = true + + # How much power will a portal drain per tick when idle? + # Allowed range: 0 ~ 1000000 - Default: 1 + idlePowerDrain = 1 + + # How much idle power does the portal drain per block of its size? + # Allowed range: 0.0 ~ 1000000.0 - Default: 0.5 + sizePowerDrain = 0.5 + + # How much power will be drained when an entity is teleported? + # Allowed range: 0 ~ 1000000 - Default: 100 + travelPowerDrain = 100 + + # How much energy is drained when an entity is teleported multiplied by the distance? + # Allowed range: 0.0 ~ 1000000.0 - Default: 0.5 + distancePowerDrain = 0.5 + + # How much energy is drained when an entity is teleported to another dimension? + # Allowed range: 0 ~ 1000000 - Default: 400 + dimensionPowerDrain = 400 + +[General] + # If true, a portal will require frame blocks at its corners. Previously build portals won't be affected. + # Allowed values: true, false - Default: false + requireCorners = false + + # How big can the area inside a portal be? Higher numbers can impact performance when activating a portal. Previously build portals won't be affected. + # Allowed range: 1 ~ 2000 - Default: 400 + maxPortalSize = 400 + + # Does a portal require a dimensional core for interdimensional travel? (WIP) + # Allowed values: true, false - Default: true + requireDimensionalCore = true + +["Target Devices"] + # The maximum number of targets that can be stored in the basic target definition device. + # Allowed range: 1 ~ 10 - Default: 1 + basicDeviceTargetCount = 1 + + # The maximum number of targets that can be stored in the advanced target definition device. + # Allowed range: 1 ~ 10 - Default: 5 + advancedDeviceTargetCount = 5 + +["Energy Cells"] + # The amount of energy the portal stabilizer can store. + # Allowed range: 1 ~ 1000000 - Default: 5000 + stabilizerEnergyCapacity = 5000 + + # The amount of energy the basic energy cell can store. + # Allowed range: 1 ~ 1000000 - Default: 10000 + basicEnergyCellCapacity = 10000 + + # The amount of energy the advanced energy cell can store. + # Allowed range: 1 ~ 1000000 - Default: 25000 + advancedEnergyCellCapacity = 25000 + +["Target Cells"] + # The number of targets the portal stabilizer can store. + # Allowed range: 1 ~ 20 - Default: 1 + stabilizerTargetCapacity = 1 + + # The number of targets the basic target cell can store. + # Allowed range: 1 ~ 20 - Default: 4 + basicTargetCellCapacity = 4 + + # The number of targets the advanced target cell can store. + # Allowed range: 1 ~ 20 - Default: 8 + advancedTargetCellCapacity = 8 + +[Generators] + # How much energy does the coal generator generate per tick? + # Allowed range: 1 ~ 1000000 - Default: 10 + coalGeneratorPower = 10 + + # How much energy can the coal generator store? + # Allowed range: 1 ~ 1000000 - Default: 5000 + coalGeneratorCapacity = 5000 + + # In what area (coalGeneratorRange^3) should the coal generator send energy? + # Allowed range: 1 ~ 4 - Default: 2 + coalGeneratorRange = 2 + diff --git a/minecraft/config/wstweaks.cfg b/minecraft/config/wstweaks.cfg new file mode 100644 index 0000000..1665d17 --- /dev/null +++ b/minecraft/config/wstweaks.cfg @@ -0,0 +1,48 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# + +general { + # The chance for a skull shard to drop. 1 = 100%, 0.5 = 50%, etc + # Default: 1.0; Range: [0.0 ~ 1.0] + S:"Shard Drop Chance"=1.0 + + # If skeletons in ALL biomes are converted, instead of just the nether. + # Default: false + B:"Convert All Biomes"=false + + # The chance for skeletons to be converted in all biomes, when enabled. 1 = 100%, 0.5 = 50%, etc + # Default: 0.15; Range: [0.0 ~ 1.0] + S:"All Biomes Chance"=0.15 + + # If stone swords and other trash are removed from wither skeleton drop tables. + # Default: true + B:"Delete Swords"=true + + # If converted skeletons receive bows (Wither Skeletons always shoot flaming arrows). + # Default: true + B:"Give Bows"=true +} + + +blades { + # [Unsynced] + # [Requires Restart] + # The durability of immolation blades. + # Default: 4096; Range: [1 ~ 65536] + I:Durability=4096 + + # [Unsynced] + # [Requires Restart] + # The attack damage of immolation blades. This is a modifier, so the real value is always 1 higher. + # Default: 11.0; Range: [1.0 ~ 4096.0] + S:"Attack Damage"=11.0 + + # [Unsynced] + # [Requires Restart] + # The attack speed of immolation blades. This is a modifier, so the real value is a bit different. + # Default: -2.0; Range: [-4096.0 ~ 4096.0] + S:"Attack Speed"=-2.0 +} + + diff --git a/minecraft/config/xnet-client.toml b/minecraft/config/xnet-client.toml new file mode 100644 index 0000000..3d78654 --- /dev/null +++ b/minecraft/config/xnet-client.toml @@ -0,0 +1,9 @@ + +#General settings +[general] + #Maximum size of the packet used to send copy/pasted channels/connectors to the server. -1 means no maximum (packets are split) + #Range: -1 ~ 1000000000 + controllerMaxPaste = -1 + #If true then cables are also shown when sneaking even if they are not in a facade + showNonFacadedCablesWhileSneaking = true + diff --git a/minecraft/config/zeta-common.toml b/minecraft/config/zeta-common.toml new file mode 100644 index 0000000..e898b44 --- /dev/null +++ b/minecraft/config/zeta-common.toml @@ -0,0 +1,28 @@ + +[general] + #Disable this to turn off the module system logic that makes features turn off when specified mods with the same content are loaded + "Use Anti Overlap" = true + #Enable Zeta's piston structure resolver, needed for some Quark or other mod features. If you're having troubles, try turning this off, but be aware other Zeta-using mods can enable it too. + "Use Piston Logic Replacement" = true + #Changes the piston push limit. Only has an effect if Zeta's piston structure resolver is in use. + #Allowed values: (0,) + "Piston Push Limit" = 12 + #Set to false to disable the behavior where Zeta will automatically hide any disabled items from creative and JEI + "Hide Disabled Content" = true + #Set to false to disable Zeta's item info when viewing recipe/uses for an item in JEI + "Enable Jei Item Info" = true + #For JEI info purposes, add any items here to specifically disable their JEI info from Zeta. Note that Zeta already only shows info that's relevant to which features are enabled + "Suppressed Info" = [] + #Set to false to stop Zeta from adding mod items to multi-requirement vanilla advancements + "Enable Advancement Modification" = true + #Set to false to stop Zeta mods from adding their own advancements + "Enable Modded Advancements" = true + #Set to true to enable a system that debugs Zeta mod worldgen features. This should ONLY be used if you're asked to by a dev. + "Enable Worldgen Watchdog" = false + #Set to true to make the Zeta big worldgen features generate as spheres rather than unique shapes. It's faster, but won't look as cool + "Use Fast Worldgen" = false + #Set to true to enable verbose logging of creative tab logic, for debugging purposes + "Enable Creative Verbose Logging" = false + #Set to true to force all creative tab additions to be added to the end of the creative tabs rather than the middle, as a failsafe + "Force Creative Tab Appends" = false +