From 0f4ebdc8b1439744c46bd4b836d79b15e21333eb Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Wed, 16 Sep 2020 12:02:02 +1000 Subject: [PATCH] add binnie's mods and magicbees --- .minecraft/config/forestry/binnie-mods.conf | 17 +++++ .../config/forestry/binniecore/main.conf | 2 + .minecraft/config/forestry/botany/modules.cfg | 40 ++++++++++++ .../config/forestry/extrabees/main.conf | 29 +++++++++ .../config/forestry/extrabees/modules.cfg | 24 +++++++ .../config/forestry/extratrees/main.cfg | 11 ++++ .../config/forestry/extratrees/modules.cfg | 44 +++++++++++++ .minecraft/config/forestry/genetics/main.conf | 59 +++++++++++++++++ .../config/forestry/genetics/modules.cfg | 20 ++++++ .minecraft/config/magicbees.cfg | 63 +++++++++++++++++++ .minecraft/mods/MagicBees-1.12.2-3.1.10.jar | 3 + .../mods/binnie-mods-1.12.2-2.5.1.203.jar | 3 + 12 files changed, 315 insertions(+) create mode 100644 .minecraft/config/forestry/binnie-mods.conf create mode 100644 .minecraft/config/forestry/binniecore/main.conf create mode 100644 .minecraft/config/forestry/botany/modules.cfg create mode 100644 .minecraft/config/forestry/extrabees/main.conf create mode 100644 .minecraft/config/forestry/extrabees/modules.cfg create mode 100644 .minecraft/config/forestry/extratrees/main.cfg create mode 100644 .minecraft/config/forestry/extratrees/modules.cfg create mode 100644 .minecraft/config/forestry/genetics/main.conf create mode 100644 .minecraft/config/forestry/genetics/modules.cfg create mode 100644 .minecraft/config/magicbees.cfg create mode 100644 .minecraft/mods/MagicBees-1.12.2-3.1.10.jar create mode 100644 .minecraft/mods/binnie-mods-1.12.2-2.5.1.203.jar diff --git a/.minecraft/config/forestry/binnie-mods.conf b/.minecraft/config/forestry/binnie-mods.conf new file mode 100644 index 0000000..2a70f09 --- /dev/null +++ b/.minecraft/config/forestry/binnie-mods.conf @@ -0,0 +1,17 @@ +# Configuration file + +general { + # Enables the Botany Mod. Default value is true. + B:botany=true + + # Enables the Extra Bees Mod. Default value is true. + B:extraBees=true + + # Enables the Extra Trees Mod. Default value is true. + B:extraTrees=true + + # Enables the Genetics Mod. Default value is true. + B:genetics=true +} + + diff --git a/.minecraft/config/forestry/binniecore/main.conf b/.minecraft/config/forestry/binniecore/main.conf new file mode 100644 index 0000000..d68983e --- /dev/null +++ b/.minecraft/config/forestry/binniecore/main.conf @@ -0,0 +1,2 @@ +# Configuration file + diff --git a/.minecraft/config/forestry/botany/modules.cfg b/.minecraft/config/forestry/botany/modules.cfg new file mode 100644 index 0000000..cd1e4d8 --- /dev/null +++ b/.minecraft/config/forestry/botany/modules.cfg @@ -0,0 +1,40 @@ +# Configuration file + +########################################################################################################## +# modules +#--------------------------------------------------------------------------------------------------------# +# Disabling these modules can greatly change how the mod functions. +# Your mileage may vary, please report any issues. +########################################################################################################## + +modules { + # Adds decorative ceramic blocks. And the Tileworker. + # Dependencies: [ botany:botany.core ] + B:botany.ceramic=true + + # + # Dependencies: [ forestry:core ] + B:botany.core=true + + # Adds a Botanist database. + # Dependencies: [ botany:botany.flowers ] + B:botany.database=true + + # Adds the farm integration for the botany flowers. + # Dependencies: [ botany:botany.flowers ] + B:botany.farming=true + + # Adds an entirely new breeding system to Forestry: Flowers. + # Dependencies: [ botany:botany.gardening ] + B:botany.flowers=true + + # Adds soil, loam, flowerbeds and trowels. + # Dependencies: [ botany:botany.core ] + B:botany.gardening=true + + # botany.module.machines + # Dependencies: [ botany:botany.core ] + B:botany.machines=true +} + + diff --git a/.minecraft/config/forestry/extrabees/main.conf b/.minecraft/config/forestry/extrabees/main.conf new file mode 100644 index 0000000..d66537d --- /dev/null +++ b/.minecraft/config/forestry/extrabees/main.conf @@ -0,0 +1,29 @@ +# Configuration file + +general { + # Sets whether a quarry will be able to mine hives or not. [default: true] + B:canQuarryMineHives=true +} + + +########################################################################################################## +# world-gen +#--------------------------------------------------------------------------------------------------------# +# WorldGen settings for ExtraBees +########################################################################################################## + +world-gen { + # Sets the worldgen spawn chance for marble hives. [range: 0.0 ~ 10.0, default: 2.0] + S:marbleHiveRate=2.0 + + # Sets the worldgen spawn chance for nether hives. [range: 0.0 ~ 10.0, default: 2.0] + S:netherHiveRate=2.0 + + # Sets the worldgen spawn chance for rock hives. [range: 0.0 ~ 10.0, default: 2.0] + S:rockHiveRate=2.0 + + # Sets the worldgen spawn chance for water hives. [range: 0.0 ~ 10.0, default: 2.0] + S:waterHiveRate=2.0 +} + + diff --git a/.minecraft/config/forestry/extrabees/modules.cfg b/.minecraft/config/forestry/extrabees/modules.cfg new file mode 100644 index 0000000..94f64cc --- /dev/null +++ b/.minecraft/config/forestry/extrabees/modules.cfg @@ -0,0 +1,24 @@ +# Configuration file + +########################################################################################################## +# modules +#--------------------------------------------------------------------------------------------------------# +# Disabling these modules can greatly change how the mod functions. +# Your mileage may vary, please report any issues. +########################################################################################################## + +modules { + # extrabees.module.alveary + # Dependencies: [ extrabees:extrabees.core ] + B:extrabees.alveary=true + + # extrabees.module.core + # Dependencies: [ forestry:apiculture ] + B:extrabees.core=true + + # extrabees.module.frames + # Dependencies: [ extrabees:extrabees.core ] + B:extrabees.frames=true +} + + diff --git a/.minecraft/config/forestry/extratrees/main.cfg b/.minecraft/config/forestry/extratrees/main.cfg new file mode 100644 index 0000000..0c95f35 --- /dev/null +++ b/.minecraft/config/forestry/extratrees/main.cfg @@ -0,0 +1,11 @@ +# Configuration file + +general { + # Uses reflection to convert the Forestry lemon tree to the Citrus family. [default: true] + B:lemon.citrus.family=true + + # Adds a hope field to the village generation. [default: true] + B:village.hopeField=true +} + + diff --git a/.minecraft/config/forestry/extratrees/modules.cfg b/.minecraft/config/forestry/extratrees/modules.cfg new file mode 100644 index 0000000..a08b74a --- /dev/null +++ b/.minecraft/config/forestry/extratrees/modules.cfg @@ -0,0 +1,44 @@ +# Configuration file + +########################################################################################################## +# modules +#--------------------------------------------------------------------------------------------------------# +# Disabling these modules can greatly change how the mod functions. +# Your mileage may vary, please report any issues. +########################################################################################################## + +modules { + # + # Dependencies: [ extratrees:extratrees.core ] + B:extratrees.alcohol=true + + # Adds decorative glass and wood blocks. And the Woodworker, Panelworker and Glassworker. + # Dependencies: [ extratrees:extratrees.machines ] + B:extratrees.carpentry=true + + # extratrees.module.core + # Dependencies: [ forestry:arboriculture ] + B:extratrees.core=true + + # Adds a database for butterflies. + # Dependencies: [ extratrees:extratrees.core, forestry:lepidopterology ] + B:extratrees.database.moth=true + + # Adds a database for trees. + # Dependencies: [ extratrees:extratrees.core ] + B:extratrees.database.tree=true + + # + # Dependencies: [ extratrees:extratrees.core ] + B:extratrees.kitchen=true + + # Adds the Lumbermill, Fruit Press, Brewery and Distillery. + # Dependencies: [ extratrees:extratrees.core ] + B:extratrees.machines=true + + # Adds wood stairs, fences, planks, logs and doors. + # Dependencies: [ extratrees:extratrees.core ] + B:extratrees.wood=true +} + + diff --git a/.minecraft/config/forestry/genetics/main.conf b/.minecraft/config/forestry/genetics/main.conf new file mode 100644 index 0000000..c724f39 --- /dev/null +++ b/.minecraft/config/forestry/genetics/main.conf @@ -0,0 +1,59 @@ +# Configuration file + +########################################################################################################## +# machines +#--------------------------------------------------------------------------------------------------------# +# Energy and time settings for machines +########################################################################################################## + +machines { + # Energy used per tick by the acclimatiser [range: 0 ~ 10, default: 2] + I:acclimatiserEnergy=2 + + # Energy used per process by the analyzer [range: 0 ~ 50000, default: 9000] + I:analyserEnergy=9000 + + # Time per process for the analyzer [range: 0 ~ 1500, default: 300] + I:analyserTime=300 + + # Energy used per process by the genepool [range: 0 ~ 50000, default: 8000] + I:genepoolEnergy=8000 + + # Time per process for the genepool [range: 0 ~ 1500, default: 400] + I:genepoolTime=400 + + # Energy used by the incubator per tick [range: 0 ~ 10, default: 2] + I:incubatorEnergy=2 + + # Energy used per gene by the inoculator [range: 0 ~ 100000, default: 60000] + I:inoculatorEnergy=60000 + + # Time per gene for the inoculator [range: 0 ~ 20000, default: 12000] + I:inoculatorTime=12000 + + # Energy used per process by the isolator [range: 0 ~ 400000, default: 192000] + I:isolatorEnergy=192000 + + # Time per process for the isolator [range: 0 ~ 10000, default: 4800] + I:isolatorTime=4800 + + # Energy used per process by the polymeriser [range: 0 ~ 200000, default: 96000] + I:polymeriserEnergy=96000 + + # Time per process by the polymeriser [range: 0 ~ 5000, default: 2400] + I:polymeriserTime=2400 + + # Energy multiplier for sequencer [range: 0 ~ 40, default: 20] + I:sequencerEnergyMultiplier=20 + + # Time multiplier for sequencer [range: 0 ~ 40000, default: 19200] + I:sequencerTimeMultiplier=19200 + + # Base energy for the splicer [range: 0 ~ 30000000, default: 12000000] + I:splicerEnergy=12000000 + + # Base time for the splicer [range: 0 ~ 500, default: 1200] + I:splicerTime=1200 +} + + diff --git a/.minecraft/config/forestry/genetics/modules.cfg b/.minecraft/config/forestry/genetics/modules.cfg new file mode 100644 index 0000000..e687fc4 --- /dev/null +++ b/.minecraft/config/forestry/genetics/modules.cfg @@ -0,0 +1,20 @@ +# Configuration file + +########################################################################################################## +# modules +#--------------------------------------------------------------------------------------------------------# +# Disabling these modules can greatly change how the mod functions. +# Your mileage may vary, please report any issues. +########################################################################################################## + +modules { + # genetics.module.core + # Dependencies: [ forestry:core ] + B:genetics.core=true + + # genetics.module.machines + # Dependencies: [ genetics:genetics.core ] + B:genetics.machines=true +} + + diff --git a/.minecraft/config/magicbees.cfg b/.minecraft/config/magicbees.cfg new file mode 100644 index 0000000..1a72ca9 --- /dev/null +++ b/.minecraft/config/magicbees.cfg @@ -0,0 +1,63 @@ +# Configuration file + +client { + # Whether to render the bee inside the Bee Collector's Jar with a TESR. [default: true] + B:fancyJarRenderer=true + + # Set to true to use the old model for the Bee Collector's Jar [default: false] + B:oldJarmodel=false +} + + +general { + # Sets base range of the Mysterious Magnet. [range: 1 ~ 8, default: 3] + I:magnetBaseRange=3 + + # Used to calculate the range of the Mysterious Magnet; Range = baseValue + level * multiplier [range: 0.1 ~ 8.0, default: 0.75] + S:magnetLevelMultiplier=0.75 + + # Sets max level of the Mysterious Magnet. [range: 1 ~ 16, default: 9] + I:magnetMaxLevel=9 + + # Enables/Disables the magnet sounds. [default: true] + B:magnetSound=true + + # Whether the MoonDial should show the MoonPhase in it's tooltip. [default: true] + B:moonDialShowsPhaseInText=true + + # When true, removes all bees related to mods that are not present from the game. [default: true] + B:removeUnneededBees=true + + # Set to true to show all MagicBees bees in the creative tab/JEI. [default: true] + B:showAllBees=true +} + + +integration { + + botania { + # Sets the beegonia mana multiplier. [range: 0.0 ~ 16.0, default: 1.0] + S:beegoniaManaMultiplier=1.0 + + # Sets the hibeescus mana cost multiplier. [range: 0.0 ~ 16.0, default: 1.0] + S:hibeescusManaCostMultiplier=1.0 + + # Sets the hibeescus tick multiplier. [range: 0.0 ~ 2.0, default: 1.0] + S:hibeescusTicksMultiplier=1.0 + + # Sets hiveacynt mana multiplier. [range: 0.0 ~ 1.0, default: 1.0] + S:hiveacynthManaMultiplier=1.0 + + # Sets hiveacynt princess spawn rate. [range: 0.0 ~ 1.0, default: 0.09] + S:hiveacynthPrincessSpawnRate=0.09 + + # Sets hiveacynt pristine chance. [range: 0.0 ~ 1.0, default: 0.15] + S:hiveacynthPristineRate=0.15 + + # Sets the chance a hiveacynt will spawn bees with rain-resistance. [range: 0.0 ~ 1.0, default: 0.1] + S:hiveacynthRainResistRate=0.1 + } + +} + + diff --git a/.minecraft/mods/MagicBees-1.12.2-3.1.10.jar b/.minecraft/mods/MagicBees-1.12.2-3.1.10.jar new file mode 100644 index 0000000..2ba990f --- /dev/null +++ b/.minecraft/mods/MagicBees-1.12.2-3.1.10.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d98de4f52b41a874cff48ea300152a834515fcf38c0fb7ba1de2e81de1f3f9b +size 1035863 diff --git a/.minecraft/mods/binnie-mods-1.12.2-2.5.1.203.jar b/.minecraft/mods/binnie-mods-1.12.2-2.5.1.203.jar new file mode 100644 index 0000000..77bd6fb --- /dev/null +++ b/.minecraft/mods/binnie-mods-1.12.2-2.5.1.203.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ead1181ab49131241862d98a78d72f4b171f102d2774c730b0f67677fcfd03f +size 5857998