diff --git a/.github/workflows/cursePackCreate.yml b/.github/workflows/cursePackCreate.yml index 06e62a77..937e2a98 100644 --- a/.github/workflows/cursePackCreate.yml +++ b/.github/workflows/cursePackCreate.yml @@ -1,7 +1,10 @@ -name: Create CurseForge Modpack +name: Create CurseForge Modpack and Server on: + push: + branches: + - develop workflow_dispatch: jobs: @@ -63,11 +66,36 @@ jobs: run: mkdir cursePack/overrides/warpDrive_schematics - name: move warpDrive_schematics to overrides directory run: mv warpDrive_schematics/* cursePack/overrides/warpDrive_schematics/ + # manifest.json - name: Move manifest.json to overrides directory run: mv manifest.json cursePack/manifest.json + # Upload cursePack directory as archive/artifact - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: GalacticDrive-development path: cursePack + + createServerPack: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + repository: ShadowRaptorMC/galacticdrive + ref: develop + + # Root directory + - name: Create root directory + run: mkdir serverPack + + # Copy files from repository to root directory + - name: Move server files to created directory + run: mv server_files/* serverPack/ + + # Upload serverPack dirctory as archive/artifact + - uses: actions/upload-artifact@v4 + with: + name: GalacticDrive-development-server + path: serverPack diff --git a/.gitignore b/.gitignore index d8a0a605..82a06f39 100644 --- a/.gitignore +++ b/.gitignore @@ -1,45 +1,76 @@ -# Curse Client Files +# Curse App files .curseclient minecraftinstance.json -# Client files +# GDLauncher files + +/natives +config*.json + +# Prism Launcher Files +icon.png + +# IDEA +/.idea + +# Client only directories and files /.mixin.out /armourers_workshop /asm /backups +/crash-reports +/downloads +/dumps +/encyclopedia-servers /journeymap /llibrary /local /logs /mods +/resourcepacks /saves /tmp +/simple-rpc +config/biomesoplenty/biomes/defaults/* +config/biomesoplenty/biome_ids.json +config/jei/worldSettings.cfg +config/jei/bookmarks.ini +config/jei/lookupHistory.zip +config/littletiles-client.json +config/oauth.cfg +config/fancymenu/user_variables.db +config/fancymenu/menu_identifiers.db +fancymenu_data/last_world.fmdata +BotaniaVars.dat +crafttweaker.log +knownkeys.txt +options.txt +patchouli_data.json +servers.dat +usercache.json +usernamecache.json + +# Bloat config/creativecor*.json config/acronym/* config/opencomputers/*.recipes config/splash.properties +config/AppliedEnergistics2/VersionChecker.cfg config/AppliedEnergistics2/items.csv config/laser_drill_ores/default_ores.json -config/littletiles-client.json config/littletiles.json config/machinemuse/missingConfigDoubles.txt config/icbmclassic/explosive_reg.json -config/jei/worldSettings.cfg -config/oauth.cfg -config/InvTweaks/InvTweaks.cfg +config/InvTweaks/* +config/InvTweaks.cfg +config/InvTweaksRules.txt +config/InvTweaksTree.txt config/worldedit/* resources/pack.mcmeta -simple-rpc/server-entries.toml - -BotaniaVars.dat -crafttweaker.log -knownkeys.txt OpenComputersMod*.dll -options.txt -patchouli_data.json -servers.dat -usercache.json -usernamecache.json + +# Do not ignore server files +!/server_files diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 96d8e5ee..a48b691d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,47 +1,42 @@ # Collaborator Guidelines -We use GDLauncher or the CurseForge app as a development environment. +We use [Prism Launcher](https://prismlauncher.org/) as a development environment. You may have success using other launchers, however do don't support this. ## Requirements -- [GDLauncher](https://gdevs.io/#downloadContainer) or the [CurseForge App](https://download.curseforge.com/#download-options) -- Software for Git ([Git](https://git-scm.com/downloads), [GitHub Desktop](https://desktop.github.com/), GitHub Desktop is extremely user friendly) -- Text Editor ([Sublime Text](https://www.sublimetext.com/), [Visual Studio Code](https://code.visualstudio.com/), [Notepad++](https://notepad-plus-plus.org/), etc) +- [Prism Launcher](https://prismlauncher.org/) +- Git implementation ([Git](https://git-scm.com/downloads), [GitHub Desktop](https://desktop.github.com/)). You can use your IDE's built in Git functionality as well. +- Text Editor/IDE ([Visual Studio Code](https://code.visualstudio.com/), [Sublime Text](https://www.sublimetext.com/), [Notepad++](https://notepad-plus-plus.org/), etc) - Have created a [fork](https://github.com/ShadowRaptorMC/galacticdrive/fork) of the Galactic Drive repository. ## Downloading the latest development build -Download the latest development artifact from [actions](https://github.com/ShadowRaptorMC/galacticdrive/actions). Click on the latest run of the "Create Curseforge Modpack" workflow, and download the GalacticDrive-development artifact. Alternatively, you can use our [nightly.link](https://nightly.link/ShadowRaptorMC/galacticdrive/workflows/cursePackCreate/develop/GalacticDrive-development.zip). +These builds are needed to properly create the development environment, as Forge and mod binaries are not served in the repository. -## Instructions for setting up development environment with GDLauncher +Download the latest development artifact from [actions](https://github.com/ShadowRaptorMC/galacticdrive/actions). Click on the latest run of the "Create Curseforge Modpack" workflow, and download the GalacticDrive-development artifact. Alternatively, you can use our [nightly.link](https://nightly.link/ShadowRaptorMC/galacticdrive/workflows/cursePackCreate/develop/GalacticDrive-development.zip). **If the latest artifact has expired, create an issue to manually push the workflow.** -**1)** Launch GDLauncher, and click "**+**" button at the bottom left. Then. click "Import Zip" at the top of the pop up box. Select the downloaded *GalacticDrive-development.zip* and allow GDLauncher to download the mods. GDLauncher has a process that will open a native browser window to download mods unavailable through third-party launchers. After installation, DO NOT LAUNCH THE PACK! Open the installed instance directory by right clicking the modpack, "Open Folder", and close GDLauncher. +## Instructions for setting up development environment with Prism Launcher -**2)** Open your preferred Git client. and clone your fork of the Galactic Drive Repository, such that the local path will be \(path before GDLauncher)\GDLauncher\instances\galacticdrive. +**1)** Launch Prism Launcher, and click "**Add Instance**" button at the top left. Then. click "Import" in the left navigation, and use the Browse option. Select the downloaded *GalacticDrive-development.zip* and allow Prism Launcher to download the mods and install the modpack. Prism Launcher has a process that will provide instant download links to download mods unavailable through third-party launchers, which will be auto-pulled from your Downloads directory. After installation, DO NOT LAUNCH THE PACK! Open the installed instance directory by right clicking, "Folder" option on the right navigation after selecting the installed modpack, and close Prism Launcher. -**3)** WITHOUT OPENING GDLauncher, copy the **"mods"** directory, the **"natives"** directory, and the **"config.json"** file from the "Galactic Drive" directory (the instance you downloaded with GalacticDrive-development.zip), into the "galacticdrive" directory (where you cloned the repository to). You can then delete the "Galactic Drive" directory. +**2)** Open your preferred Git client. and clone your fork of the Galactic Drive Repository, such that the local path will be a new directory at `\()\\instances\galacticdrive\minecraft`. DO NOT clone the repository to the same directory you already installed the mod list, you should be making a new directory in `instances` to clone the repository to. -**4)** Open GDLauncher, and launch the galacticdrive instance. After fully launching the modpack, ensure that no files have appeared and remained in your changed files within Git. +**3)** WITHOUT OPENING Prism Launcher, perform the following steps to move files from the installed modpack instance directory, the new instance directory containing the Git repository: -## Instructions for setting up development environment with the CurseForge App +- Copy the **"mods"** directory from `instances\\minecraft\mods` to `instances\galacticdrive\minecraft` +- Copy the **""flame" and "natives""** directories, and the **"instance.cfg" and "mmc-pack.json"** files from `instances\` (the instance you downloaded with GalacticDrive-development.zip), into `instances\galacticdrive` (where you cloned the repository to). You can then delete the instance folder created when downloading the modpack with the development artifact. -**1)** Launch the CurseForge App, and click "Create Custom Profile" button at the top right. Then. click "import" at the top of the pop up box. Select the downloaded GalacticDrive-development.zip and allow the CurseForge app to download the mods. After installation, DO NOT LAUNCH THE PACK! Open the installed instance directory by right clicking the modpack, "Open Folder", and close the CurseForge App. - -**2)** Open your preferred Git client. and clone your fork of the Galactic Drive Repository, such that the local path will be \(path before Curse App)\CurseForge\Instances\galacticdrive. - -**3)** WITHOUT OPENING THE CURSEFORGE APP, copy the **"mods"** directory, and the **".curseclient"** and **"minecraftinstance.json"** from the "Galactic Drive" directory (the instance you downloaded with GalacticDrive-development.zip), into the "galacticdrive" directory (where you cloned the repository to). You can then delete the "Galactic Drive" directory. - -**4)** Open the CurseForge App, and launch the Galactic Drive instance. After fully launching the modpack, ensure that no files have appeared and remained in your changed files within Git. +**4)** Open Prism Launcher, and launch the galacticdrive instance. After fully launching the modpack, ensure that no files have appeared and remained in your changed files within Git.
This concludes the setup of the development environment. Any changes you make to the modpack will be reflected in your preferred Git client. -If you ever encounter any files appearing changed when you did not directly change them, create an [issue](https://github.com/ShadowRaptorMC/galacticdrive/issues) so we can add the file to our .gitignore. +Keep in mind that you may see some files marked as changed *while the modpack is launching**. These should be removed after the pack finishes launching. If you ever encounter any persisting file changes when you did not directly change them, create an [issue](https://github.com/ShadowRaptorMC/galacticdrive/issues) so we can add the file to our .gitignore. ## Submitting a Pull Request -Be sure that you are working from the **develop** branch of the repository. This is where active development takes place. Your pull request from the **develop** branch of your fork must be merged into the **develop** branch of the main repository. +Be sure that you are working from the **develop** branch of the repository. This is where active development takes place. Your pull request from the **develop** branch of your fork must be merged into the **develop** branch of the upstream repository. -If you plan to make large changes to the modpack and would like to see them upstream, it would be best to consult Zediious on our [Discord](http://www.discord.shadowraptor.net/) so that we can see if the changes would make it into the modpack before you spend effort making the changes. +If you plan to make large changes to the modpack and would like to see them upstream, it would be best to consult Zediious on our [Discord](http://www.discord.shadowraptor.net/) or by making an issue on the upstream repository so that we can see if the changes would make it into the modpack before you spend effort making the changes. diff --git a/config/AppliedEnergistics2/VersionChecker.cfg b/config/AppliedEnergistics2/VersionChecker.cfg deleted file mode 100644 index 8e741e65..00000000 --- a/config/AppliedEnergistics2/VersionChecker.cfg +++ /dev/null @@ -1,30 +0,0 @@ -# Configuration file - -cache { - # Waits as many hours, until it checks again. [range: 0 ~ 168, default: 24] - I:interval=24 - S:lastCheck=1655023909895 -} - - -channel { - # Determines the channel level which should be checked for updates. Can be either Stable, Beta or Alpha. [default: Beta] - S:level=Beta -} - - -client { - # If true, the player is getting a notification including changelog. Only happens if notification are enabled. [default: true] - B:changelog=true - - # If true, the player is getting a notification, that a new version is available. [default: true] - B:notify=true -} - - -general { - # If true, the version checker is enabled. Acts as a master switch. [default: true] - B:enabled=true -} - - diff --git a/config/CustomMainMenu/mainmenu.json b/config/CustomMainMenu/mainmenu.json deleted file mode 100644 index f59b472d..00000000 --- a/config/CustomMainMenu/mainmenu.json +++ /dev/null @@ -1,214 +0,0 @@ -{ - "images": - { - "title": - { - "image" : "menu:background.png", - "posX" : 0, - "posY" : 0, - "width" : 960, - "height" : 540, - "alignment" : "top_left" - } - }, - - "buttons": - { - "singleplayer": - { - "text" : "menu.singleplayer", - "posX" : -100, - "posY" : 200, - "width" : 200, - "height" : 20, - "tooltip": "Play Galactic Drive Singleplayer!\nBe sure to use the TOPOGRAPHY world type!", - "action" : - { - "type" : "openGui", - "gui" : "singleplayer" - } - }, - - "serverlist": - { - "text" : "Server List", - "posX" : -100, - "posY" : 228, - "width" : 200, - "height" : 20, - "tooltip": "View the server list.", - "action" : - { - "type" : "openGui", - "gui" : "multiplayer" - } - }, - - "officialserver": { - "text" : "Offical Galactic Drive Server", - "tooltip": "Join the official server at ShadowRaptor Network!", - "posX" : -80, - "posY" : 255, - "width" : 160, - "height" : 20, - "action" : { - "type" : "connectToServer", - "ip" : "gd.shadowraptor.net" - } - }, - - "mods": - { - "text" : "fml.menu.mods", - "posX" : -25, - "posY" : 285, - "width" : 50, - "height" : 20, - "tooltip": "View mods included in Galactic Drive.", - "action" : - { - "type" : "openGui", - "gui" : "mods" - } - }, - - "options": - { - "text" : "Settings", - "posX" : -100, - "posY" : 312, - "width" : 60, - "height" : 20, - "tooltip": "Open the Settings menu.", - "action" : - { - "type" : "openGui", - "gui" : "options" - } - }, - - "wiki": - { - "text" : "Wiki", - "posX" : -100, - "posY" : 283, - "width" : 60, - "height" : 20, - "tooltip": "Click to open the Galactic Drive Wiki. Useful information!", - "action" : { - "type": "openLink", - "link" : "https://github.com/zediious/galacticdrive/wiki" - } - }, - - "issues": - { - "text" : "Issues", - "posX" : 40, - "posY" : 283, - "width" : 60, - "height" : 20, - "tooltip": "If you find a bug or a have suggestion, make an issue here!", - "action" : { - "type": "openLink", - "link" : "https://github.com/zediious/galacticdrive/issues" - } - }, - - "quit": - { - "text" : "Quit", - "posX" : 40, - "posY" : 312, - "width" : 60, - "height" : 20, - "tooltip": "Run from the parasites", - "action" : - { - "type" : "quit" - } - }, - - "language": - { - "text" : "", - "posX" : 455, - "posY" : -123, - "width" : 20, - "height" : 20, - "action" : - { - "type" : "openGui", - "gui" : "languages" - } - }, - - "discord": { - "text" : " ", - "posX" : -477, - "posY" : -125, - "width" : 30, - "height" : 30, - "imageWidth" : 128, - "imageHeight" : 128, - "texture" : "menu:buttons/discord.png", - "tooltip": "Join the ShadowRaptor Discord!", - "action" : { - "type": "openLink", - "link" : "www.discord.shadowraptor.net" - } - }, - - "refresh": - { - "text" : "", - "posX" : 455, - "posY" : -103, - "width" : 20, - "height" : 20, - "texture" : "custommainmenu:textures/gui/buttons.png", - "action" : - { - "type" : "refresh" - } - } - }, - - "labels": { - "copyrightmodpack": { - "text" : "ShadowRaptor Packs", - "posX" : -90, - "posY" : -20, - "color" : -1, - "alignment" : "bottom_right" - }, - - "mojang": { - "text" : "Copyright Mojang AB. Do not distribute!", - "posX" : -165, - "posY" : -10, - "color" : -1, - "alignment" : "bottom_right" - }, - - "version": { - "text" : "Mods: #modsactive#\nMinecraft #mcversion#\nForge #forgeversion#\nGalactic Drive 0.2alpha-dev", - "posX" : 2, - "posY" : -36, - "color" : -1, - "alignment" : "bottom_left" - } - }, - - "other": - { - "splash-text": - { - "posX" : -180, - "posY" : 65, - "color" : -256, - "alignment" : "top_center", - "file" : "text:splashes.txt" - } - } -} \ No newline at end of file diff --git a/config/RTG/biomes/biomesoplenty/bamboo_forest.cfg b/config/RTG/biomes/biomesoplenty/bamboo_forest.cfg index cdb3fbae..2b723fe1 100644 --- a/config/RTG/biomes/biomesoplenty/bamboo_forest.cfg +++ b/config/RTG/biomes/biomesoplenty/bamboo_forest.cfg @@ -78,11 +78,11 @@ surfaces { "surface bleed" { # Set to false if other biomes shouldn't bleed into this one # [default: false] - B:"Surface Bleed In"=false + B:"Surface Bleed In"=true # Set to false if this biome shouldn't bleed into other biomes # [default: false] - B:"Surface Bleed Out"=false + B:"Surface Bleed Out"=true } lakes { diff --git a/config/RTG/biomes/biomesoplenty/bayou.cfg b/config/RTG/biomes/biomesoplenty/bayou.cfg index 5aadd4d8..10800d88 100644 --- a/config/RTG/biomes/biomesoplenty/bayou.cfg +++ b/config/RTG/biomes/biomesoplenty/bayou.cfg @@ -88,11 +88,11 @@ surfaces { "surface bleed" { # Set to false if other biomes shouldn't bleed into this one # [default: false] - B:"Surface Bleed In"=false + B:"Surface Bleed In"=true # Set to false if this biome shouldn't bleed into other biomes # [default: false] - B:"Surface Bleed Out"=false + B:"Surface Bleed Out"=true } lakes { diff --git a/config/RTG/biomes/biomesoplenty/cherry_blossom_grove.cfg b/config/RTG/biomes/biomesoplenty/cherry_blossom_grove.cfg index ead5f3c2..4c950573 100644 --- a/config/RTG/biomes/biomesoplenty/cherry_blossom_grove.cfg +++ b/config/RTG/biomes/biomesoplenty/cherry_blossom_grove.cfg @@ -131,7 +131,7 @@ terrain { villages { # Set this to TRUE to allow villages to generate in this biome. # [default: false] - B:"Allow Villages"=false + B:"Allow Villages"=true } diff --git a/config/RTG/biomes/biomesoplenty/land_of_lakes.cfg b/config/RTG/biomes/biomesoplenty/land_of_lakes.cfg index fd9357e8..4c950573 100644 --- a/config/RTG/biomes/biomesoplenty/land_of_lakes.cfg +++ b/config/RTG/biomes/biomesoplenty/land_of_lakes.cfg @@ -88,11 +88,11 @@ surfaces { "surface bleed" { # Set to false if other biomes shouldn't bleed into this one # [default: false] - B:"Surface Bleed In"=false + B:"Surface Bleed In"=true # Set to false if this biome shouldn't bleed into other biomes # [default: false] - B:"Surface Bleed Out"=false + B:"Surface Bleed Out"=true } lakes { @@ -131,7 +131,7 @@ terrain { villages { # Set this to TRUE to allow villages to generate in this biome. # [default: false] - B:"Allow Villages"=false + B:"Allow Villages"=true } diff --git a/config/RTG/biomes/biomesoplenty/mangrove.cfg b/config/RTG/biomes/biomesoplenty/mangrove.cfg index cdb3fbae..2b723fe1 100644 --- a/config/RTG/biomes/biomesoplenty/mangrove.cfg +++ b/config/RTG/biomes/biomesoplenty/mangrove.cfg @@ -78,11 +78,11 @@ surfaces { "surface bleed" { # Set to false if other biomes shouldn't bleed into this one # [default: false] - B:"Surface Bleed In"=false + B:"Surface Bleed In"=true # Set to false if this biome shouldn't bleed into other biomes # [default: false] - B:"Surface Bleed Out"=false + B:"Surface Bleed Out"=true } lakes { diff --git a/config/RTG/biomes/biomesoplenty/overgrown_cliffs.cfg b/config/RTG/biomes/biomesoplenty/overgrown_cliffs.cfg index fd9357e8..ead5f3c2 100644 --- a/config/RTG/biomes/biomesoplenty/overgrown_cliffs.cfg +++ b/config/RTG/biomes/biomesoplenty/overgrown_cliffs.cfg @@ -88,11 +88,11 @@ surfaces { "surface bleed" { # Set to false if other biomes shouldn't bleed into this one # [default: false] - B:"Surface Bleed In"=false + B:"Surface Bleed In"=true # Set to false if this biome shouldn't bleed into other biomes # [default: false] - B:"Surface Bleed Out"=false + B:"Surface Bleed Out"=true } lakes { diff --git a/config/SRParasites.cfg b/config/SRParasites.cfg index a514ff58..8819c5e4 100644 --- a/config/SRParasites.cfg +++ b/config/SRParasites.cfg @@ -12,17 +12,16 @@ general { I:"Day Tick Value"=24000 # Global armor multiplier for all the mobs. [range: 0.01 ~ 100.0, default: 1.0] - S:"Global Armor Multiplier"=1.0 + S:"Global Armor Multiplier"=0.2 # Global damage multiplier for all the mobs. [range: 0.01 ~ 100.0, default: 1.0] - S:"Global Damage Multiplier"=0.5 + S:"Global Damage Multiplier"=0.3 # Global health multiplier for all the mobs. [range: 0.01 ~ 100.0, default: 1.0] - S:"Global Health Multiplier"=1.0 + S:"Global Health Multiplier"=0.7 # Parasites can't spawn in these dimensions (This list is ignored if Evolution Phases are enabled, it has its own option) I:"Mobs Blacklisted Dimensions" < - 1 66 > @@ -89,7 +88,21 @@ general { lycanitesmobs:maug lycanitesmobs:bobeko lycanitesmobs:feradon - + lycanitesmobs:quetzodracl + lycanitesmobs:geken + lycanitesmobs:ghoul + lycanitesmobs:dawon + lycanitesmobs:concapede + lycanitesmobs:roa + lycanitesmobs:wendigo + lycanitesmobs:arix + lycanitesmobs:khalk + lycanitesmobs:amalgalich + lycanitesmobs:grell + lycanitesmobs:behemoth + lycanitesmobs:salamander + lycanitesmobs:spectre + lycanitesmobs:epion > # Set to true if you want to use the list as a BlackList. [default: false] @@ -3215,7 +3228,7 @@ parasite_properties { srparasites:vigilante;5;20;2 srparasites:overseer;5;20;2 srparasites:bomber_light;5;20;2 - srparasites:grunt;3;20;1 + srparasites:grunt;1;20;1 srparasites:anc_dreadnaut;9;5;4 srparasites:anc_overlord;9;5;4 srparasites:crux;4;30;2 @@ -3933,6 +3946,7 @@ status_effects { minecraft:villager;srparasites:sim_villager minecraft:polar_bear;srparasites:sim_bear minecraft:enderman;srparasites:sim_enderman + minecraft:squid;srparasites:pri_devourer atum:brigand;srparasites:sim_human atum:barbarian;srparasites:sim_human atum:nomad;srparasites:sim_human @@ -3947,17 +3961,32 @@ status_effects { techguns:bandit;srparasites:sim_human techguns:psychosteve;srparasites:sim_villager techguns:zombiepigmansoldier;srparasites:sim_pig - lycanitesmobs:aspid;srparasites:incompleteform_medium - lycanitesmobs:feradon;srparasites:sim_wolf + lycanitesmobs:aspid;srparasites:pri_bolster + lycanitesmobs:feradon;srparasites:pri_manducater lycanitesmobs:herma;srparasites:incompleteform_small - lycanitesmobs:arisaur;srparasites:sim_horse + lycanitesmobs:arisaur;srparasites:pri_reeker lycanitesmobs:maug;srparasites:sim_bear lycanitesmobs:frostweaver;srparasites:sim_bigspider lycanitesmobs:kobold;srparasites:incompleteform_small - lycanitesmobs:calpod;srparasites:sim_bigspider + lycanitesmobs:calpod;srparasites:pri_arachnida nuclearcraft:feral_ghoul;srparasites:sim_human lycanitesmobs:sutiramu;srparasites:sim_bigspider - lycanitesmobs:warg;srparasites:sim_wolf + lycanitesmobs:warg;srparasites:pri_manducater + lycanitesmobs:shambler;srparasites:pri_bolster + lycanitesmobs:geken;srparasites:pri_summoner + lycanitesmobs:ghoul;srparasites:sim_villager + lycanitesmobs:dawon;srparasites:pri_manducater + lycanitesmobs:concapede;srparasites:sim_bigspider + lycanitesmobs:roa;srparasites:pri_devourer + lycanitesmobs:wendigo;srparasites:pri_longarms + lycanitesmobs:arix;srparasites:pri_yelloweye + lycanitesmobs:bobeko;srparasites:pri_reeker + lycanitesmobs:grell;srparasites:heed + lycanitesmobs:khalk;srparasites:heed + lycanitesmobs:afrit;srparasites:crux + lycanitesmobs:behemoth;srparasites:crux + lycanitesmobs:salamander;srparasites:heed + lycanitesmobs:epion;srparasites:incompleteform_medium > # Set to false if you dont want the effect to spread from mob to mob [range: 0 ~ 10, default: 3] diff --git a/config/biomesoplenty/biome_ids.json b/config/biomesoplenty/biome_ids.json deleted file mode 100644 index d3f29106..00000000 --- a/config/biomesoplenty/biome_ids.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "oasis": 100, - "woodland": 93, - "white_beach": 41, - "shrubland": 84, - "xeric_shrubland": 94, - "tropical_rainforest": 89, - "fen": 57, - "steppe": 87, - "alps_foothills": 95, - "redwood_forest_edge": 97, - "bayou": 45, - "mountain": 71, - "phantasmagoric_inferno": 110, - "overgrown_cliffs": 76, - "highland": 61, - "volcanic_island": 106, - "quagmire": 78, - "marsh": 68, - "chaparral": 49, - "flower_island": 107, - "flower_field": 58, - "wetland": 92, - "mystic_grove": 72, - "cold_desert": 51, - "mountain_foothills": 96, - "maple_woods": 67, - "coral_reef": 102, - "orchard": 74, - "moor": 70, - "land_of_lakes": 62, - "bog": 46, - "coniferous_forest": 52, - "eucalyptus_forest": 56, - "outback": 75, - "shield": 83, - "snowy_tundra": 101, - "alps": 43, - "wasteland": 91, - "lush_desert": 64, - "mangrove": 66, - "boreal_forest": 47, - "redwood_forest": 80, - "cherry_blossom_grove": 50, - "visceral_heap": 112, - "snowy_forest": 86, - "seasonal_forest": 82, - "temperate_rainforest": 88, - "dead_forest": 54, - "bamboo_forest": 44, - "corrupted_sands": 108, - "dead_swamp": 55, - "kelp_forest": 103, - "pasture": 98, - "glacier": 99, - "meadow": 69, - "lush_swamp": 65, - "fungi_forest": 109, - "tropical_island": 105, - "grassland": 59, - "prairie": 77, - "snowy_coniferous_forest": 85, - "tundra": 90, - "undergarden": 111, - "origin_island": 104, - "gravel_beach": 40, - "grove": 60, - "lavender_fields": 63, - "origin_beach": 42, - "rainforest": 79, - "sacred_springs": 81, - "crag": 53, - "brushland": 48, - "ominous_woods": 73 -} \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/alps.json b/config/biomesoplenty/biomes/alps.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/alps.json rename to config/biomesoplenty/biomes/alps.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/alps_foothills.json b/config/biomesoplenty/biomes/alps_foothills.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/alps_foothills.json rename to config/biomesoplenty/biomes/alps_foothills.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/bamboo_forest.json b/config/biomesoplenty/biomes/bamboo_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/bamboo_forest.json rename to config/biomesoplenty/biomes/bamboo_forest.json index b1c6b9c5..5de04f97 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/bamboo_forest.json +++ b/config/biomesoplenty/biomes/bamboo_forest.json @@ -107,7 +107,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "algae": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/bayou.json b/config/biomesoplenty/biomes/bayou.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/bayou.json rename to config/biomesoplenty/biomes/bayou.json index e6d41ed8..ddc15914 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/bayou.json +++ b/config/biomesoplenty/biomes/bayou.json @@ -115,7 +115,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "trees": { "amountPerChunk": 8.0, diff --git a/config/biomesoplenty/biomes/defaults/vanilla/beaches.json b/config/biomesoplenty/biomes/beaches.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/vanilla/beaches.json rename to config/biomesoplenty/biomes/beaches.json diff --git a/config/biomesoplenty/biomes/defaults/vanilla/birch_forest.json b/config/biomesoplenty/biomes/birch_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/vanilla/birch_forest.json rename to config/biomesoplenty/biomes/birch_forest.json index 6aff7e32..013d86cc 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/birch_forest.json +++ b/config/biomesoplenty/biomes/birch_forest.json @@ -95,7 +95,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/birch_forest_hills.json b/config/biomesoplenty/biomes/birch_forest_hills.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/vanilla/birch_forest_hills.json rename to config/biomesoplenty/biomes/birch_forest_hills.json index 6aff7e32..013d86cc 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/birch_forest_hills.json +++ b/config/biomesoplenty/biomes/birch_forest_hills.json @@ -95,7 +95,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/bog.json b/config/biomesoplenty/biomes/bog.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/bog.json rename to config/biomesoplenty/biomes/bog.json index dfe76b31..4b69458f 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/bog.json +++ b/config/biomesoplenty/biomes/bog.json @@ -132,7 +132,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "trees": { "amountPerChunk": 2.0, diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/boreal_forest.json b/config/biomesoplenty/biomes/boreal_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/boreal_forest.json rename to config/biomesoplenty/biomes/boreal_forest.json index 7d2ffc53..af58c64a 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/boreal_forest.json +++ b/config/biomesoplenty/biomes/boreal_forest.json @@ -104,7 +104,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/brushland.json b/config/biomesoplenty/biomes/brushland.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/brushland.json rename to config/biomesoplenty/biomes/brushland.json index 6a06c9c0..f5c88415 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/brushland.json +++ b/config/biomesoplenty/biomes/brushland.json @@ -123,7 +123,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/chaparral.json b/config/biomesoplenty/biomes/chaparral.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/chaparral.json rename to config/biomesoplenty/biomes/chaparral.json index 57dcf65c..7c9547c1 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/chaparral.json +++ b/config/biomesoplenty/biomes/chaparral.json @@ -156,7 +156,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "bushes": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/cherry_blossom_grove.json b/config/biomesoplenty/biomes/cherry_blossom_grove.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/cherry_blossom_grove.json rename to config/biomesoplenty/biomes/cherry_blossom_grove.json index c9c537d8..d37a5bf3 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/cherry_blossom_grove.json +++ b/config/biomesoplenty/biomes/cherry_blossom_grove.json @@ -173,7 +173,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "tiny_lily": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/cold_desert.json b/config/biomesoplenty/biomes/cold_desert.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/cold_desert.json rename to config/biomesoplenty/biomes/cold_desert.json index 4ce2b1eb..3793f88b 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/cold_desert.json +++ b/config/biomesoplenty/biomes/cold_desert.json @@ -102,7 +102,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/coniferous_forest.json b/config/biomesoplenty/biomes/coniferous_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/coniferous_forest.json rename to config/biomesoplenty/biomes/coniferous_forest.json index dc0527b3..a5b4ff66 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/coniferous_forest.json +++ b/config/biomesoplenty/biomes/coniferous_forest.json @@ -100,7 +100,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/coral_reef.json b/config/biomesoplenty/biomes/coral_reef.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/coral_reef.json rename to config/biomesoplenty/biomes/coral_reef.json index fb32b7ce..f4632872 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/coral_reef.json +++ b/config/biomesoplenty/biomes/coral_reef.json @@ -134,7 +134,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": {} diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/corrupted_sands.json b/config/biomesoplenty/biomes/corrupted_sands.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/corrupted_sands.json rename to config/biomesoplenty/biomes/corrupted_sands.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/crag.json b/config/biomesoplenty/biomes/crag.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/crag.json rename to config/biomesoplenty/biomes/crag.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/dead_forest.json b/config/biomesoplenty/biomes/dead_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/dead_forest.json rename to config/biomesoplenty/biomes/dead_forest.json index 75600ae5..3ca83cb3 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/dead_forest.json +++ b/config/biomesoplenty/biomes/dead_forest.json @@ -127,7 +127,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/dead_swamp.json b/config/biomesoplenty/biomes/dead_swamp.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/dead_swamp.json rename to config/biomesoplenty/biomes/dead_swamp.json index a3a2fc54..e61d330a 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/dead_swamp.json +++ b/config/biomesoplenty/biomes/dead_swamp.json @@ -101,7 +101,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "mud": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/desert.json b/config/biomesoplenty/biomes/desert.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/desert.json rename to config/biomesoplenty/biomes/desert.json index 0db02f0b..ec45c246 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/desert.json +++ b/config/biomesoplenty/biomes/desert.json @@ -71,7 +71,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/desert_hills.json b/config/biomesoplenty/biomes/desert_hills.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/desert_hills.json rename to config/biomesoplenty/biomes/desert_hills.json index 3e311b8c..fb829e6d 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/desert_hills.json +++ b/config/biomesoplenty/biomes/desert_hills.json @@ -55,7 +55,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/eucalyptus_forest.json b/config/biomesoplenty/biomes/eucalyptus_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/eucalyptus_forest.json rename to config/biomesoplenty/biomes/eucalyptus_forest.json index e1bc65e7..2cdc1251 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/eucalyptus_forest.json +++ b/config/biomesoplenty/biomes/eucalyptus_forest.json @@ -151,7 +151,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "tiny_lily": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/extreme_hills.json b/config/biomesoplenty/biomes/extreme_hills.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/vanilla/extreme_hills.json rename to config/biomesoplenty/biomes/extreme_hills.json diff --git a/config/biomesoplenty/biomes/defaults/vanilla/extreme_hills_with_trees.json b/config/biomesoplenty/biomes/extreme_hills_with_trees.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/vanilla/extreme_hills_with_trees.json rename to config/biomesoplenty/biomes/extreme_hills_with_trees.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/fen.json b/config/biomesoplenty/biomes/fen.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/fen.json rename to config/biomesoplenty/biomes/fen.json index dd8b1548..f5d1ae61 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/fen.json +++ b/config/biomesoplenty/biomes/fen.json @@ -106,7 +106,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "trees": { "amountPerChunk": 6.0, diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/flower_field.json b/config/biomesoplenty/biomes/flower_field.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/flower_field.json rename to config/biomesoplenty/biomes/flower_field.json index 9cadecdf..dc973c01 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/flower_field.json +++ b/config/biomesoplenty/biomes/flower_field.json @@ -73,7 +73,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/flower_island.json b/config/biomesoplenty/biomes/flower_island.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/flower_island.json rename to config/biomesoplenty/biomes/flower_island.json index 6ea53efe..8d2652d1 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/flower_island.json +++ b/config/biomesoplenty/biomes/flower_island.json @@ -96,7 +96,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/forest.json b/config/biomesoplenty/biomes/forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/vanilla/forest.json rename to config/biomesoplenty/biomes/forest.json index fe220785..cae135c9 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/forest.json +++ b/config/biomesoplenty/biomes/forest.json @@ -60,7 +60,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/forest_hills.json b/config/biomesoplenty/biomes/forest_hills.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/vanilla/forest_hills.json rename to config/biomesoplenty/biomes/forest_hills.json index f5f8825c..91f2f4b0 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/forest_hills.json +++ b/config/biomesoplenty/biomes/forest_hills.json @@ -60,7 +60,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/fungi_forest.json b/config/biomesoplenty/biomes/fungi_forest.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/fungi_forest.json rename to config/biomesoplenty/biomes/fungi_forest.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/glacier.json b/config/biomesoplenty/biomes/glacier.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/glacier.json rename to config/biomesoplenty/biomes/glacier.json index 300bc78a..134f21a5 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/glacier.json +++ b/config/biomesoplenty/biomes/glacier.json @@ -69,7 +69,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": {} diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/grassland.json b/config/biomesoplenty/biomes/grassland.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/grassland.json rename to config/biomesoplenty/biomes/grassland.json index 3a1d16b4..a6c5b46a 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/grassland.json +++ b/config/biomesoplenty/biomes/grassland.json @@ -154,7 +154,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "lakes": { "liquid": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/gravel_beach.json b/config/biomesoplenty/biomes/gravel_beach.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/gravel_beach.json rename to config/biomesoplenty/biomes/gravel_beach.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/grove.json b/config/biomesoplenty/biomes/grove.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/grove.json rename to config/biomesoplenty/biomes/grove.json index 05b521aa..b06216f8 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/grove.json +++ b/config/biomesoplenty/biomes/grove.json @@ -117,7 +117,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/hell.json b/config/biomesoplenty/biomes/hell.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/vanilla/hell.json rename to config/biomesoplenty/biomes/hell.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/highland.json b/config/biomesoplenty/biomes/highland.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/highland.json rename to config/biomesoplenty/biomes/highland.json diff --git a/config/biomesoplenty/biomes/defaults/vanilla/ice_flats.json b/config/biomesoplenty/biomes/ice_flats.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/ice_flats.json rename to config/biomesoplenty/biomes/ice_flats.json index 8555983c..92292484 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/ice_flats.json +++ b/config/biomesoplenty/biomes/ice_flats.json @@ -54,7 +54,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/ice_mountains.json b/config/biomesoplenty/biomes/ice_mountains.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/ice_mountains.json rename to config/biomesoplenty/biomes/ice_mountains.json index 8555983c..92292484 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/ice_mountains.json +++ b/config/biomesoplenty/biomes/ice_mountains.json @@ -54,7 +54,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/jungle.json b/config/biomesoplenty/biomes/jungle.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/jungle.json rename to config/biomesoplenty/biomes/jungle.json index f777a487..2f2f285c 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/jungle.json +++ b/config/biomesoplenty/biomes/jungle.json @@ -65,7 +65,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/jungle_hills.json b/config/biomesoplenty/biomes/jungle_hills.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/jungle_hills.json rename to config/biomesoplenty/biomes/jungle_hills.json index f777a487..2f2f285c 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/jungle_hills.json +++ b/config/biomesoplenty/biomes/jungle_hills.json @@ -65,7 +65,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/kelp_forest.json b/config/biomesoplenty/biomes/kelp_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/kelp_forest.json rename to config/biomesoplenty/biomes/kelp_forest.json index 05358950..3f15836b 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/kelp_forest.json +++ b/config/biomesoplenty/biomes/kelp_forest.json @@ -118,7 +118,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": {} diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/land_of_lakes.json b/config/biomesoplenty/biomes/land_of_lakes.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/land_of_lakes.json rename to config/biomesoplenty/biomes/land_of_lakes.json index 9fd3fb66..f43134a2 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/land_of_lakes.json +++ b/config/biomesoplenty/biomes/land_of_lakes.json @@ -119,7 +119,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "trees": { "amountPerChunk": 40.0, diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/lavender_fields.json b/config/biomesoplenty/biomes/lavender_fields.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/lavender_fields.json rename to config/biomesoplenty/biomes/lavender_fields.json index 86ee7484..aa3b66aa 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/lavender_fields.json +++ b/config/biomesoplenty/biomes/lavender_fields.json @@ -69,7 +69,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/lush_desert.json b/config/biomesoplenty/biomes/lush_desert.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/lush_desert.json rename to config/biomesoplenty/biomes/lush_desert.json index 1ce78674..96dd78bd 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/lush_desert.json +++ b/config/biomesoplenty/biomes/lush_desert.json @@ -125,7 +125,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "sand": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/lush_swamp.json b/config/biomesoplenty/biomes/lush_swamp.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/lush_swamp.json rename to config/biomesoplenty/biomes/lush_swamp.json index 2058ffa5..60363055 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/lush_swamp.json +++ b/config/biomesoplenty/biomes/lush_swamp.json @@ -241,7 +241,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "water_reeds": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/mangrove.json b/config/biomesoplenty/biomes/mangrove.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/mangrove.json rename to config/biomesoplenty/biomes/mangrove.json index f9933c68..38ebc3e9 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/mangrove.json +++ b/config/biomesoplenty/biomes/mangrove.json @@ -92,7 +92,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/maple_woods.json b/config/biomesoplenty/biomes/maple_woods.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/maple_woods.json rename to config/biomesoplenty/biomes/maple_woods.json index 84a96655..a831f195 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/maple_woods.json +++ b/config/biomesoplenty/biomes/maple_woods.json @@ -131,7 +131,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/marsh.json b/config/biomesoplenty/biomes/marsh.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/marsh.json rename to config/biomesoplenty/biomes/marsh.json index 41cb196f..82dfbdaa 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/marsh.json +++ b/config/biomesoplenty/biomes/marsh.json @@ -122,7 +122,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "water_reeds": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/meadow.json b/config/biomesoplenty/biomes/meadow.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/meadow.json rename to config/biomesoplenty/biomes/meadow.json index 81b99568..c216a9f4 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/meadow.json +++ b/config/biomesoplenty/biomes/meadow.json @@ -186,7 +186,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "bushes": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/mesa.json b/config/biomesoplenty/biomes/mesa.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/mesa.json rename to config/biomesoplenty/biomes/mesa.json index b3301f81..e3a0f987 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/mesa.json +++ b/config/biomesoplenty/biomes/mesa.json @@ -66,7 +66,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/mesa_clear_rock.json b/config/biomesoplenty/biomes/mesa_clear_rock.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/mesa_clear_rock.json rename to config/biomesoplenty/biomes/mesa_clear_rock.json index b3301f81..e3a0f987 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/mesa_clear_rock.json +++ b/config/biomesoplenty/biomes/mesa_clear_rock.json @@ -66,7 +66,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/moor.json b/config/biomesoplenty/biomes/moor.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/moor.json rename to config/biomesoplenty/biomes/moor.json index 5e9052e1..9cadff73 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/moor.json +++ b/config/biomesoplenty/biomes/moor.json @@ -100,7 +100,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "flax": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/mountain.json b/config/biomesoplenty/biomes/mountain.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/mountain.json rename to config/biomesoplenty/biomes/mountain.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/mountain_foothills.json b/config/biomesoplenty/biomes/mountain_foothills.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/mountain_foothills.json rename to config/biomesoplenty/biomes/mountain_foothills.json diff --git a/config/biomesoplenty/biomes/defaults/vanilla/mushroom_island.json b/config/biomesoplenty/biomes/mushroom_island.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/vanilla/mushroom_island.json rename to config/biomesoplenty/biomes/mushroom_island.json index 5d76ae41..58e7b789 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/mushroom_island.json +++ b/config/biomesoplenty/biomes/mushroom_island.json @@ -99,7 +99,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/mutated_forest.json b/config/biomesoplenty/biomes/mutated_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/vanilla/mutated_forest.json rename to config/biomesoplenty/biomes/mutated_forest.json index 96df15bc..e3471368 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/mutated_forest.json +++ b/config/biomesoplenty/biomes/mutated_forest.json @@ -49,7 +49,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/mystic_grove.json b/config/biomesoplenty/biomes/mystic_grove.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/mystic_grove.json rename to config/biomesoplenty/biomes/mystic_grove.json index 4ad6ceb6..b0b92d08 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/mystic_grove.json +++ b/config/biomesoplenty/biomes/mystic_grove.json @@ -212,7 +212,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "blue_milk_caps": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/oasis.json b/config/biomesoplenty/biomes/oasis.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/oasis.json rename to config/biomesoplenty/biomes/oasis.json index c6c7464f..875f09ac 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/oasis.json +++ b/config/biomesoplenty/biomes/oasis.json @@ -147,7 +147,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": {} diff --git a/config/biomesoplenty/biomes/defaults/vanilla/ocean.json b/config/biomesoplenty/biomes/ocean.json similarity index 97% rename from config/biomesoplenty/biomes/defaults/vanilla/ocean.json rename to config/biomesoplenty/biomes/ocean.json index db09736c..e59e4ae9 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/ocean.json +++ b/config/biomesoplenty/biomes/ocean.json @@ -44,7 +44,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/ominous_woods.json b/config/biomesoplenty/biomes/ominous_woods.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/ominous_woods.json rename to config/biomesoplenty/biomes/ominous_woods.json index 16d9a98e..5e056f96 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/ominous_woods.json +++ b/config/biomesoplenty/biomes/ominous_woods.json @@ -145,7 +145,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "trees": { "amountPerChunk": 11.0, diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/orchard.json b/config/biomesoplenty/biomes/orchard.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/orchard.json rename to config/biomesoplenty/biomes/orchard.json index 128a51cc..069788a3 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/orchard.json +++ b/config/biomesoplenty/biomes/orchard.json @@ -114,7 +114,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/origin_beach.json b/config/biomesoplenty/biomes/origin_beach.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/origin_beach.json rename to config/biomesoplenty/biomes/origin_beach.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/origin_island.json b/config/biomesoplenty/biomes/origin_island.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/origin_island.json rename to config/biomesoplenty/biomes/origin_island.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/outback.json b/config/biomesoplenty/biomes/outback.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/outback.json rename to config/biomesoplenty/biomes/outback.json index f8ff8828..102966fc 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/outback.json +++ b/config/biomesoplenty/biomes/outback.json @@ -140,7 +140,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/overgrown_cliffs.json b/config/biomesoplenty/biomes/overgrown_cliffs.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/overgrown_cliffs.json rename to config/biomesoplenty/biomes/overgrown_cliffs.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/pasture.json b/config/biomesoplenty/biomes/pasture.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/pasture.json rename to config/biomesoplenty/biomes/pasture.json index 382e751b..584cdad8 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/pasture.json +++ b/config/biomesoplenty/biomes/pasture.json @@ -69,7 +69,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "barley": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/phantasmagoric_inferno.json b/config/biomesoplenty/biomes/phantasmagoric_inferno.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/phantasmagoric_inferno.json rename to config/biomesoplenty/biomes/phantasmagoric_inferno.json diff --git a/config/biomesoplenty/biomes/defaults/vanilla/plains.json b/config/biomesoplenty/biomes/plains.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/plains.json rename to config/biomesoplenty/biomes/plains.json index 8c618d25..18ffe468 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/plains.json +++ b/config/biomesoplenty/biomes/plains.json @@ -43,7 +43,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/prairie.json b/config/biomesoplenty/biomes/prairie.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/prairie.json rename to config/biomesoplenty/biomes/prairie.json index ce77924c..b9f034d9 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/prairie.json +++ b/config/biomesoplenty/biomes/prairie.json @@ -136,7 +136,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/quagmire.json b/config/biomesoplenty/biomes/quagmire.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/quagmire.json rename to config/biomesoplenty/biomes/quagmire.json index e638c1d7..9c989f5b 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/quagmire.json +++ b/config/biomesoplenty/biomes/quagmire.json @@ -94,7 +94,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "water_reeds": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/rainforest.json b/config/biomesoplenty/biomes/rainforest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/rainforest.json rename to config/biomesoplenty/biomes/rainforest.json index 8c603318..87895b23 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/rainforest.json +++ b/config/biomesoplenty/biomes/rainforest.json @@ -183,7 +183,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "tiny_lily": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/redwood_forest.json b/config/biomesoplenty/biomes/redwood_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/redwood_forest.json rename to config/biomesoplenty/biomes/redwood_forest.json index 014cf6cd..527f1473 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/redwood_forest.json +++ b/config/biomesoplenty/biomes/redwood_forest.json @@ -121,7 +121,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/redwood_forest_edge.json b/config/biomesoplenty/biomes/redwood_forest_edge.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/redwood_forest_edge.json rename to config/biomesoplenty/biomes/redwood_forest_edge.json index 7f6a4d79..5ff19950 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/redwood_forest_edge.json +++ b/config/biomesoplenty/biomes/redwood_forest_edge.json @@ -100,7 +100,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/redwood_taiga.json b/config/biomesoplenty/biomes/redwood_taiga.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/redwood_taiga.json rename to config/biomesoplenty/biomes/redwood_taiga.json index ee6d3bc5..ca1cc768 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/redwood_taiga.json +++ b/config/biomesoplenty/biomes/redwood_taiga.json @@ -54,7 +54,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/redwood_taiga_hills.json b/config/biomesoplenty/biomes/redwood_taiga_hills.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/redwood_taiga_hills.json rename to config/biomesoplenty/biomes/redwood_taiga_hills.json index ee6d3bc5..ca1cc768 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/redwood_taiga_hills.json +++ b/config/biomesoplenty/biomes/redwood_taiga_hills.json @@ -54,7 +54,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/roofed_forest.json b/config/biomesoplenty/biomes/roofed_forest.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/roofed_forest.json rename to config/biomesoplenty/biomes/roofed_forest.json index 594c4314..aed96917 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/roofed_forest.json +++ b/config/biomesoplenty/biomes/roofed_forest.json @@ -38,7 +38,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/sacred_springs.json b/config/biomesoplenty/biomes/sacred_springs.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/sacred_springs.json rename to config/biomesoplenty/biomes/sacred_springs.json index caab2b84..6d5a175e 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/sacred_springs.json +++ b/config/biomesoplenty/biomes/sacred_springs.json @@ -230,7 +230,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "tiny_lily": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/savanna.json b/config/biomesoplenty/biomes/savanna.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/savanna.json rename to config/biomesoplenty/biomes/savanna.json index 0fd1855b..e795f46c 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/savanna.json +++ b/config/biomesoplenty/biomes/savanna.json @@ -70,7 +70,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/savanna_rock.json b/config/biomesoplenty/biomes/savanna_rock.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/savanna_rock.json rename to config/biomesoplenty/biomes/savanna_rock.json index 2fdba63a..a48e012e 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/savanna_rock.json +++ b/config/biomesoplenty/biomes/savanna_rock.json @@ -54,7 +54,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/seasonal_forest.json b/config/biomesoplenty/biomes/seasonal_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/seasonal_forest.json rename to config/biomesoplenty/biomes/seasonal_forest.json index 304bcf56..b97958ea 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/seasonal_forest.json +++ b/config/biomesoplenty/biomes/seasonal_forest.json @@ -99,7 +99,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/shield.json b/config/biomesoplenty/biomes/shield.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/shield.json rename to config/biomesoplenty/biomes/shield.json index 937ca5fc..e869898e 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/shield.json +++ b/config/biomesoplenty/biomes/shield.json @@ -111,7 +111,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/shrubland.json b/config/biomesoplenty/biomes/shrubland.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/shrubland.json rename to config/biomesoplenty/biomes/shrubland.json index f1085e97..3251d1e6 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/shrubland.json +++ b/config/biomesoplenty/biomes/shrubland.json @@ -170,7 +170,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "bushes": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/sky.json b/config/biomesoplenty/biomes/sky.json similarity index 97% rename from config/biomesoplenty/biomes/defaults/vanilla/sky.json rename to config/biomesoplenty/biomes/sky.json index 94a62f9e..b151a2e3 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/sky.json +++ b/config/biomesoplenty/biomes/sky.json @@ -21,7 +21,7 @@ "maxRadius": 7, "generationAttempts": 1500, "amountPerChunk": 12.0, - "enable": true + "enable": false }, "miners_delight": { "with": { @@ -55,7 +55,7 @@ }, "amountPerChunk": 24.0, "maxHeight": 32, - "enable": true + "enable": false }, "biome_essence": { "minHeight": 4, diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_coniferous_forest.json b/config/biomesoplenty/biomes/snowy_coniferous_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_coniferous_forest.json rename to config/biomesoplenty/biomes/snowy_coniferous_forest.json index 55adf612..cd94073a 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_coniferous_forest.json +++ b/config/biomesoplenty/biomes/snowy_coniferous_forest.json @@ -139,7 +139,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_forest.json b/config/biomesoplenty/biomes/snowy_forest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_forest.json rename to config/biomesoplenty/biomes/snowy_forest.json index b5a77d6d..fba59ce5 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_forest.json +++ b/config/biomesoplenty/biomes/snowy_forest.json @@ -112,7 +112,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_tundra.json b/config/biomesoplenty/biomes/snowy_tundra.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_tundra.json rename to config/biomesoplenty/biomes/snowy_tundra.json index 99088fba..c3b1fb75 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/snowy_tundra.json +++ b/config/biomesoplenty/biomes/snowy_tundra.json @@ -157,7 +157,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": {} diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/steppe.json b/config/biomesoplenty/biomes/steppe.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/steppe.json rename to config/biomesoplenty/biomes/steppe.json index d2a3e840..6831d0f1 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/steppe.json +++ b/config/biomesoplenty/biomes/steppe.json @@ -111,7 +111,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/vanilla/swampland.json b/config/biomesoplenty/biomes/swampland.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/vanilla/swampland.json rename to config/biomesoplenty/biomes/swampland.json index bbf1f0fa..4a2f4983 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/swampland.json +++ b/config/biomesoplenty/biomes/swampland.json @@ -83,7 +83,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "trees": { "amountPerChunk": 0.5, diff --git a/config/biomesoplenty/biomes/defaults/vanilla/taiga.json b/config/biomesoplenty/biomes/taiga.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/taiga.json rename to config/biomesoplenty/biomes/taiga.json index ee6d3bc5..ca1cc768 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/taiga.json +++ b/config/biomesoplenty/biomes/taiga.json @@ -54,7 +54,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/taiga_cold.json b/config/biomesoplenty/biomes/taiga_cold.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/taiga_cold.json rename to config/biomesoplenty/biomes/taiga_cold.json index c38bf918..39c6641e 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/taiga_cold.json +++ b/config/biomesoplenty/biomes/taiga_cold.json @@ -54,7 +54,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/taiga_cold_hills.json b/config/biomesoplenty/biomes/taiga_cold_hills.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/taiga_cold_hills.json rename to config/biomesoplenty/biomes/taiga_cold_hills.json index c38bf918..39c6641e 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/taiga_cold_hills.json +++ b/config/biomesoplenty/biomes/taiga_cold_hills.json @@ -54,7 +54,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/vanilla/taiga_hills.json b/config/biomesoplenty/biomes/taiga_hills.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/vanilla/taiga_hills.json rename to config/biomesoplenty/biomes/taiga_hills.json index ee6d3bc5..ca1cc768 100644 --- a/config/biomesoplenty/biomes/defaults/vanilla/taiga_hills.json +++ b/config/biomesoplenty/biomes/taiga_hills.json @@ -54,7 +54,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } } } \ No newline at end of file diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/temperate_rainforest.json b/config/biomesoplenty/biomes/temperate_rainforest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/temperate_rainforest.json rename to config/biomesoplenty/biomes/temperate_rainforest.json index c7384a16..04ad7b3d 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/temperate_rainforest.json +++ b/config/biomesoplenty/biomes/temperate_rainforest.json @@ -266,7 +266,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/tropical_island.json b/config/biomesoplenty/biomes/tropical_island.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/tropical_island.json rename to config/biomesoplenty/biomes/tropical_island.json index adb5d500..0a2e28cc 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/tropical_island.json +++ b/config/biomesoplenty/biomes/tropical_island.json @@ -116,7 +116,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/tropical_rainforest.json b/config/biomesoplenty/biomes/tropical_rainforest.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/tropical_rainforest.json rename to config/biomesoplenty/biomes/tropical_rainforest.json index 9116e668..f48a668d 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/tropical_rainforest.json +++ b/config/biomesoplenty/biomes/tropical_rainforest.json @@ -242,7 +242,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "tiny_lily": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/tundra.json b/config/biomesoplenty/biomes/tundra.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/tundra.json rename to config/biomesoplenty/biomes/tundra.json index bab4189e..7f8d5d11 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/tundra.json +++ b/config/biomesoplenty/biomes/tundra.json @@ -157,7 +157,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/undergarden.json b/config/biomesoplenty/biomes/undergarden.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/undergarden.json rename to config/biomesoplenty/biomes/undergarden.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/visceral_heap.json b/config/biomesoplenty/biomes/visceral_heap.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/visceral_heap.json rename to config/biomesoplenty/biomes/visceral_heap.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/volcanic_island.json b/config/biomesoplenty/biomes/volcanic_island.json similarity index 98% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/volcanic_island.json rename to config/biomesoplenty/biomes/volcanic_island.json index d91376f7..2818f141 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/volcanic_island.json +++ b/config/biomesoplenty/biomes/volcanic_island.json @@ -95,7 +95,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": {} diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/wasteland.json b/config/biomesoplenty/biomes/wasteland.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/wasteland.json rename to config/biomesoplenty/biomes/wasteland.json index e0d86287..fbe84314 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/wasteland.json +++ b/config/biomesoplenty/biomes/wasteland.json @@ -131,7 +131,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/wetland.json b/config/biomesoplenty/biomes/wetland.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/wetland.json rename to config/biomesoplenty/biomes/wetland.json index 17e04661..a974bbb2 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/wetland.json +++ b/config/biomesoplenty/biomes/wetland.json @@ -246,7 +246,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "water_reeds": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/white_beach.json b/config/biomesoplenty/biomes/white_beach.json similarity index 100% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/white_beach.json rename to config/biomesoplenty/biomes/white_beach.json diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/woodland.json b/config/biomesoplenty/biomes/woodland.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/woodland.json rename to config/biomesoplenty/biomes/woodland.json index 3ee0b988..639be3ce 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/woodland.json +++ b/config/biomesoplenty/biomes/woodland.json @@ -90,7 +90,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false }, "roots": { "with": { diff --git a/config/biomesoplenty/biomes/defaults/biomesoplenty/xeric_shrubland.json b/config/biomesoplenty/biomes/xeric_shrubland.json similarity index 99% rename from config/biomesoplenty/biomes/defaults/biomesoplenty/xeric_shrubland.json rename to config/biomesoplenty/biomes/xeric_shrubland.json index ab7b1143..e06df824 100644 --- a/config/biomesoplenty/biomes/defaults/biomesoplenty/xeric_shrubland.json +++ b/config/biomesoplenty/biomes/xeric_shrubland.json @@ -136,7 +136,7 @@ }, "amountPerChunk": 12.0, "maxHeight": 32, - "enable": true + "enable": false } }, "weights": { diff --git a/config/cofh/world/01_thermalfoundation_ores.json b/config/cofh/world/01_thermalfoundation_ores.json index 706e4003..1876dc8b 100644 --- a/config/cofh/world/01_thermalfoundation_ores.json +++ b/config/cofh/world/01_thermalfoundation_ores.json @@ -63,7 +63,7 @@ "properties": { "type": "silver" }, - "weight": 80 + "weight": 160 } ], "material": "atum:limestone", @@ -91,7 +91,7 @@ "properties": { "type": "lead" }, - "weight": 90 + "weight": 160 } ], "material": "minecraft:stone", diff --git a/config/cofh/world/03_thermalfoundation_clathrates.json b/config/cofh/world/03_thermalfoundation_clathrates.json index a56dc3ac..cb61593e 100644 --- a/config/cofh/world/03_thermalfoundation_clathrates.json +++ b/config/cofh/world/03_thermalfoundation_clathrates.json @@ -18,7 +18,7 @@ "weight": 10 } ], - "material": "thebetweenlands:betweenstone", + "material": "minecraft:stone", "cluster-size": 24 }, "cluster-count": 1, @@ -30,7 +30,7 @@ "dimension": { "restriction": "whitelist", "value": [ - 20 + 4500 ] } }, diff --git a/config/cofh/world/06_matter_overdrive.json b/config/cofh/world/06_matter_overdrive.json index ac4ff974..5abbe32e 100644 --- a/config/cofh/world/06_matter_overdrive.json +++ b/config/cofh/world/06_matter_overdrive.json @@ -11,11 +11,11 @@ } ], "material": "minecraft:stone", - "cluster-size": 20 + "cluster-size": 10 }, "cluster-count": 2, - "chunk-chance": 1, - "min-height": 50, + "chunk-chance": 2, + "min-height": 40, "max-height": 70, "retrogen": "true", "biome": "all", @@ -36,12 +36,12 @@ } ], "material": "minecraft:stone", - "cluster-size": 20 + "cluster-size": 8 }, - "cluster-count": 2, - "chunk-chance": 1, - "min-height": 50, - "max-height": 70, + "cluster-count": 1, + "chunk-chance": 3, + "min-height": 12, + "max-height": 24, "retrogen": "true", "biome": "all", "dimension": { diff --git a/config/cofh/world/99_mangrove_mud.json b/config/cofh/world/99_mangrove_mud.json new file mode 100644 index 00000000..ff9e0763 --- /dev/null +++ b/config/cofh/world/99_mangrove_mud.json @@ -0,0 +1,37 @@ +{ + "dependencies": ["thermalfoundation","biomesoplenty"], + "populate": { + "mud_balls": { + "enabled": "true", + "distribution": "underwater", + "generator": { + "type": "boulder", + "block": "biomesoplenty:mud", + "material": ["minecraft:dirt","minecraft:grass","minecraft:sand","minecraft:gravel","biomesoplenty:mud","biomesoplenty:log_1"], + "diameter": 2, + "size-variance": 2, + "count": 1 + }, + "cluster-count": 250, + "chunk-chance": 1, + "retrogen": "true", + "biome": { + "restriction": "whitelist", + "value": [ + { + "type": "id", + "entry": [ + "biomesoplenty:mangrove" + ] + } + ] + }, + "dimension": { + "restriction": "whitelist", + "value": [ + 110 + ] + } + } + } +} \ No newline at end of file diff --git a/config/cofh/world/config.cfg b/config/cofh/world/config.cfg index 6080662d..8d6c6ff8 100644 --- a/config/cofh/world/config.cfg +++ b/config/cofh/world/config.cfg @@ -10,7 +10,7 @@ World { B:ReplaceStandardGeneration=false # If TRUE, world generation handled by CoFH World will be retroactively applied to existing chunks. [default: false] - B:RetroactiveGeneration=false + B:RetroactiveGeneration=true # This adjusts the % chance that a tree will grow as normal when it is meant to. Reducing this value will mean that trees take longer to grow, on average. [range: 1 ~ 100, default: 100] I:TreeGrowthChance=100 diff --git a/config/defaultoptions/options.txt b/config/defaultoptions/options.txt index ef140043..d3d88746 100644 --- a/config/defaultoptions/options.txt +++ b/config/defaultoptions/options.txt @@ -15,8 +15,8 @@ difficulty:2 fancyGraphics:true ao:2 renderClouds:true -resourcePacks:[] -incompatibleResourcePacks:[] +resourcePacks:["Lycanites Redux - v8.0.0.zip"] +incompatibleResourcePacks:["Lycanites Redux - v8.0.0.zip"] lastServer: lang:en_us chatVisibility:0 diff --git a/config/fancymenu/config.txt b/config/fancymenu/config.txt new file mode 100644 index 00000000..2abe9a7d --- /dev/null +++ b/config/fancymenu/config.txt @@ -0,0 +1,75 @@ +##[general] + +[Stop vanilla world music when in a customizable menu.] +B:stopworldmusicwhencustomizable = 'false'; +[If menu background sounds added by FancyMenu should be played when a world is loaded.] +B:playbackgroundsoundsinworld = 'false'; +B:forcefullscreen = 'false'; +[If menu background sounds added by FancyMenu should be played or not.] +B:playbackgroundsounds = 'true'; +[A minecraft restart is required after changing this value.] +B:enablehotkeys = 'true'; +B:playmenumusic = 'true'; +S:variables_to_reset_on_launch = ''; +B:showdebugwarnings = 'true'; +[Sets the default GUI scale on first launch. Useful for modpacks. Cache data is saved in '/mods/fancymenu/'.] +I:defaultguiscale = '-1'; + + +##[customization] + +B:advancedmode = 'false'; +B:showcustomizationbuttons = 'false'; + + +##[mainmenu] + +S:copyrightposition = 'bottom-right'; +S:copyrightcolor = '#ffffff'; + + +##[loading] + +B:allowgameintroskip = 'true'; +B:showanimationloadingstatus = 'true'; +S:gameintroanimation = ''; +B:preloadanimations = 'true'; +S:customgameintroskiptext = ''; + + +##[minecraftwindow] + +[A minecraft restart is required after changing this value.] +S:customwindowtitle = 'Galactic Drive'; +[A minecraft restart is required after changing this value.] +B:customwindowicon = 'true'; + + +##[multiplayer_screen] + +B:show_server_icons = 'true'; + + +##[singleplayer_screen] + +B:show_world_icons = 'true'; + + +##[layouteditor] + +I:gridsize = '10'; +B:editordeleteconfirmation = 'true'; +B:showgrid = 'false'; +[If the warning when trying to move an vanilla button without an orientation should be displayed or not.] +B:showvanillamovewarning = 'true'; + + +##[ui] + +B:show_unicode_warning = 'true'; +F:uiscale = '1.0'; + + +##[compatibility] + +B:allow_level_registry_interactions = 'true'; \ No newline at end of file diff --git a/config/fancymenu/customizablemenus.txt b/config/fancymenu/customizablemenus.txt new file mode 100644 index 00000000..07261b56 --- /dev/null +++ b/config/fancymenu/customizablemenus.txt @@ -0,0 +1,5 @@ +type = customizablemenus + +net.minecraft.client.gui.GuiMainMenu { +} + diff --git a/config/fancymenu/customization/galacticdrive.txt b/config/fancymenu/customization/galacticdrive.txt new file mode 100644 index 00000000..dc7b942f --- /dev/null +++ b/config/fancymenu/customization/galacticdrive.txt @@ -0,0 +1,255 @@ +type = menu + +customization-meta { + identifier = net.minecraft.client.gui.GuiMainMenu + randomgroup = 1 + renderorder = foreground + randommode = false + randomonlyfirsttime = false +} + +customization { + path = resources/menu/background.png + action = texturizebackground +} + +customization { + keepaspectratio = false + action = backgroundoptions +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_multiplayer_button% + orientation = mid-centered + x = -102 + action = movebutton + y = 126 +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_multiplayer_button% + width = 202 + action = resizebutton + height = 20 +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_multiplayer_button% + action = setbuttonlabel + value = Server List +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_options_button% + orientation = mid-centered + x = -102 + action = movebutton + y = 172 +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_options_button% + width = 99 + action = resizebutton + height = 20 +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_options_button% + action = setbuttonlabel + value = Settings +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_quit_button% + orientation = mid-centered + x = 1 + action = movebutton + y = 172 +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_quit_button% + width = 99 + action = resizebutton + height = 20 +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_quit_button% + action = setbuttonlabel + value = Quit +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_quit_button% + action = sethoverlabel + label = Run and hide +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_language_button% + action = hidebutton +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_singleplayer_button% + orientation = mid-centered + x = -102 + action = movebutton + y = 103 +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_singleplayer_button% + width = 202 + action = resizebutton + height = 20 +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_singleplayer_button% + action = sethoverlabel + label = Only use the TOPOGRAPHY world type! +} + +customization { + identifier = %id=button_compatibility_id:forge_titlescreen_mods_button% + orientation = mid-centered + x = -26 + action = movebutton + y = 149 +} + +customization { + identifier = %id=button_compatibility_id:forge_titlescreen_mods_button% + width = 51 + action = resizebutton + height = 20 +} + +customization { + identifier = %id=button_compatibility_id:forge_titlescreen_mods_button% + action = setbuttonlabel + value = Mod List +} + +customization { + identifier = %id=button_compatibility_id:mc_titlescreen_realms_button% + action = hidebutton +} + +customization { + orientation = top-left + hidden = true + x = 530 + width = 220 + action = deep_customization_element:title_screen_forge_top + actionid = b76b9953-bf6d-4b51-9fc0-cc67d6aa04611744642993200 + y = 4 + height = 19 +} + +customization { + orientation = top-left + hidden = false + x = 2 + width = 148 + action = deep_customization_element:title_screen_branding + actionid = 369dac4a-8e77-4508-ae8b-c9ebbb864af31744642993280 + y = 652 + height = 40 +} + +customization { + orientation = top-left + hidden = true + x = 1051 + width = 228 + action = deep_customization_element:title_screen_forge_copyright + actionid = 91e5d584-15b5-4739-9197-e6d37cfe2f131744642993281 + y = 674 + height = 9 +} + +customization { + orientation = top-left + hidden = true + x = 743 + width = 13 + action = deep_customization_element:title_screen_realms_notification + actionid = 5ef1f795-4156-45bb-9623-d4b12fbe517e1744642993281 + y = 273 + height = 13 +} + +customization { + orientation = top-left + hidden = true + x = 503 + width = 274 + action = deep_customization_element:title_screen_logo + actionid = 3b25cd78-a079-4fbf-88fb-7c6c96d816771744642993282 + y = 30 + height = 52 +} + +customization { + orientation = mid-centered + splash_color = #FFB833 + hidden = false + x = 273 + width = 60 + splash_rotation = 20 + action = deep_customization_element:title_screen_splash + actionid = 7efeb0b4-538d-48df-a355-48747d234c551744642993283 + y = -250 + splash_file_path = resources/text/splashes.txt + height = 30 +} + +customization { + orientation = mid-centered + loopbackgroundanimations = true + hoverlabel = Useful info! + restartbackgroundanimations = true + buttonaction = openlink;https://github.com/ShadowRaptorMC/galacticdrive/wiki%btnaction_splitter_fm% + x = -102 + width = 72 + action = addbutton + actionid = 94d82d22-0f54-4590-af3b-e3ef5ba496091744643167392 + y = 149 + label = Wiki + height = 20 +} + +customization { + orientation = mid-centered + loopbackgroundanimations = true + hoverlabel = Report bugs! + restartbackgroundanimations = true + buttonaction = openlink;https://github.com/ShadowRaptorMC/galacticdrive/issues%btnaction_splitter_fm% + x = 28 + width = 71 + action = addbutton + actionid = 4a0d870f-3e11-477e-9d0f-b35bea8369531744643199954 + y = 149 + label = Issues + height = 20 +} + +customization { + orientation = mid-centered + loopbackgroundanimations = true + restartbackgroundanimations = true + buttonaction = joinserver;gd.shadowraptor.net%btnaction_splitter_fm% + x = -87 + width = 166 + action = addbutton + actionid = 1da27dab-ed77-465e-9cad-2e2de2d410e71744644484917 + y = 43 + description = Join ShadowRaptor Network's official Galactic Drive server! + label = Join Official Server + height = 20 +} + diff --git a/config/fancymenu/locals/de_de.local b/config/fancymenu/locals/de_de.local new file mode 100644 index 00000000..57b8ad2c --- /dev/null +++ b/config/fancymenu/locals/de_de.local @@ -0,0 +1,397 @@ +loading.animation.loadingframes = Lade Animationsframes für {} +loading.animation.prerendering = Vorbereiten von Animation {} +loading.animation.done = Fertig! + +helper.button.menuinfo = Menü Info +helper.button.buttoninfo = Button Info +helper.button.reload = Neuladen +helper.button.createlayout = Layout erstellen + +helper.menuinfo.identifier = Menü Identifier + +helper.buttoninfo.idnotfound = +helper.buttoninfo.keynotfound =