No description
Find a file
2023-12-18 20:21:08 +01:00
.gitignore Added command to add mod 2023-12-16 16:19:19 +01:00
index.ts Added assets support 2023-12-18 20:21:08 +01:00
LICENSE.md Initial Commit 2023-12-16 13:10:08 +01:00
package.json Fixed extracted file being empty 2023-12-16 20:22:27 +01:00
README.md Added assets support 2023-12-18 20:21:08 +01:00
tsconfig.json Added command to add mod 2023-12-16 16:19:19 +01:00

thunderstore-modpack

Assets and Mods are automatically installed in your BepInEx folder (yes this means that you can't automatically install online-fix)

Example of modpack.json

{
  "game": "lethal-company",
  "mods": [
    {
      "author": "2018",
      "mod_name": "LC_API"
    },
    {
      "author": "Steven",
      "mod_name": "Custom_Boombox_Music"
    },
    {
      "custom_link": "https://example.com"
    }
  ],
  "assets": [
    {
      "custom_link": "https://www.myinstants.com/media/sounds/metal-pipe-clang.mp3",
      "save_path": "Custom Songs/Boombox Music",
      "file_name": "funny_music.mp3"
    }
  ]
}