-
Notifications
You must be signed in to change notification settings - Fork 1
Adding New MODs
Fun117 edited this page Apr 8, 2024
·
1 revision
Here are the steps to add a new MOD to this repository.
Please place the file for the new MOD in the following location:
-
File Path:
/contents/mods.ts
Add information for the new MOD to the contentObj_modsAll
object in the mods.ts
file.
- version: Specify the version number of the MOD.
- project_type: Specify the type of the project. Example: "SBMOD", "SBAPI", "SBAddons", "SBaddonAPI".
- project_id: Specify the ID of the project.
- creator: Specify the creator of the MOD.
- title: Specify the title of the MOD.
- title_en: Specify the English title of the MOD (optional).
- description: Specify the description of the MOD.
- description_en: Specify the English description of the MOD (optional).
- tags: Specify tags related to the MOD. Each tag has a label and a color.
{
"version": 7,
"project_type": "SBMOD",
"project_id": YOUR_PROJECT_ID,
"creator": "YOUR_NAME",
"title": "YOUR_MOD_TITLE",
"title_en": "YOUR_MOD_EN_TITLE", // Optional
"description": "YOUR_MOD_DESCRIPTION",
"description_en": "YOUR_MOD_EN_DESCRIPTION", // Optional
"tags": [
{
"label": "YOUR_TAG_LABEL",
"color": "YOUR_TAG_COLOR"
},
// Add additional tags here if needed
]
}
Note
- Choose the color for the tags from the following values: "dark", "blue", "red", "green", "yellow", "indigo", "purple", "pink", "" (empty string).
- Don't forget to create a pull request after making changes to the file.
If you are unable to report issues using GitHub, please submit them through this form.