forked from Curve/chalchiu
-
Notifications
You must be signed in to change notification settings - Fork 1
Mod Setup
Noah edited this page Sep 1, 2023
·
5 revisions
On this page we'll explain how to create your first mod.
We recommend using our vscode-mod-template for an easy quick-start.
To start off, create a folder in <GameDirectory>/mods
.
The folder name does not matter, however it should generally have the same name as your mod.
Then create the following files:
π C:/GOG Games/Coromon
βββ mods
βββ my_awesome_mod
βββ config.json
βββ init.lua
This file contains important information about your mod.
The required fields and appropriate descriptions are described by this schema.
Note
Our mod-template has auto-complete support for the config.json
This file contains the actual code of your mod, you can go ahead and implement your awesome mod here.
For more information on special functions, et cetera see Lua Environment