Change or add slots to crests.
This mods allows you to add crest slots, as well as change the color of existing slots.
This is a
BepInEx mod. Install it, then create and place the mod into the folder BepInEx/plugins. After you start the game once, you can change the config file BepInEx/config/ExtraCrestSlots.json
See this example
Spoiler:
Show
{
"Version": 1,
"Slots": [
// this adds 1 yellow slot to every crest
{
"CrestID": "ALL",
"SlotCount": 1,
"PositionX": -4.5,
"PositionY": -3.5,
"SlotType": "Yellow"
},
// this adds 5 blue slots to every crest (right to the first extra slot)
{
"CrestID": "ALL",
"SlotCount": 5,
"PositionX": -3,
"PositionY": -3.5,
"SlotType": "Blue"
// this changes the already existing forth slot of the wanderers crest from yellow to red down
// note: when OverrideSlot is set, the positions are ignored, so you can leave them out
{
"CrestID": "Wanderer",
"SlotType": "RedDown",
"OverrideSlot": 4
},
// this changes the fifth slot of the cursed crest from blue to yellow
{
"CrestID": "Witch",
"SlotType": "Yellow",
"OverrideSlot": 5
},
// this unlocks all slots (10 slots starting from index 0) of all crests
// note: that if you remove this or uninstall the mod, the game will remember which slots have been legitimately unlocked (or not) and restore the correct state
{
"CrestID": "ALL",
"OverrideSlot": 0,
"SlotCount": 10,
"IsLocked": false
}
]
}
Slot types are {Auto, Blue, Yellow, RedUp, RedNeutral, RedDown, WhiteUp, WhiteNeutral, WhiteDown}.
Crest IDs are {Hunter, Hunter_v2, Hunter_v3, Reaper, Wanderer, Warrior, Witch, Toolmaster, Spell}.
Check out the post section for some great suggestions.
Source