FeTK is a Stardew Valley mod framework which is a collection of helper functions and mod services. It simplifies common developer tasks building Stardew-Valley mods and empowers developers to build rich and high-quality mod experiences!
This documentation is for modders. If you are a player, please see the Nexus page instead.
- Install the latest version of SMAPI.
- Install this mod from Nexus mods.
- Run the game using SMAPI.
For a list of APIs this framework provides please check the documentation here.
Make sure you have the framework installed. Include the following mod dependency in the manifest of your consuming mod:
"Dependencies": [
{
"UniqueID": "Felix-Dev.FeTK",
"MinimumVersion": "1.0.0" // optional; pick the required minimum version you need
}
]
If you want to use SMAPI-mod specific APIs, you will also need to add a reference to the FeTK.dll
library file to your project. This library is included in the downloaded mod folder.
For compatibility please check the documentation for each particular framework feature.