CiCisTrinketAndBindingFramework
Library mod for White Knuckle. Adds custom Trinkets/Bindings to the picker, plus every vanilla perk and most items. v1.3.0: leaderboard handling fixed - only disables when needed. Picker UI polish. Required by CiCi's Climbing Axes & Pioneer's Shotgun.
By CiCisMods
| Last updated | a day ago |
| Total downloads | 3025 |
| Total rating | 2 |
| Categories | Tools Libraries |
| Dependency string | CiCisMods-CiCisTrinketAndBindingFramework-1.3.0 |
| Dependants | 4 other packages depend on this package |
This mod requires the following mods to function
BepInEx-BepInExPack
BepInEx pack for Mono Unity games. Preconfigured and ready to use.
Preferred version: 5.4.2305README
CiCi's Trinket & Binding Framework
A library mod for White Knuckle. Provides a public API that other mods can call to register custom Trinkets (run-start modifiers, optional) and Bindings (run-start modifiers with stronger effects, optional) so they show up in the trinket/binding picker on Fresh Game start.
This mod does nothing by itself. It's a dependency for other mods.
For players
Just install it. You'll only need it if a mod you use lists this as a dependency — Thunderstore Mod Manager will install it automatically in that case.
For modders
using TrinketAndBindingFramework;
[BepInDependency(TrinketAndBindingFramework.Plugin.GUID)]
public class MyMod : BaseUnityPlugin
{
private void Awake()
{
TrinketRegistry.Register(
id: "yourmod_my_trinket",
displayName: "My Trinket",
description: "...",
icon: yourSprite,
isBinding: false,
itemsToGrantFactory: () => new List<Item_Object> { yourItemTemplate }
);
}
}
See the source of CiCi's Climbing Axes or CiCi's Pioneer's Shotgun for working examples.
Compatibility
- White Knuckle (current build)
- BepInEx 5.x