made a lil hacky command to unlock all the special sets. gotta do it once you're in-game, save after the command is done (just in case, move one screen) and reset to the menu to see it work. theres prolly a more efficient way to do it but who cares
JavaScript:
for (let i = 0; i < SugarCube.State.variables.specialClothes.length; i++) {
SugarCube.State.variables.specialClothes[i].unlocked = 3
}
and btw heres a console command i stole from someone to unlock all feats. gotta do the same thing, be in-game, use the command, move one screen just in case, save and reset
JavaScript:
for (featName in SugarCube.setup.feats) {
$.wiki("<<earnFeat \""+ featName + "\">>")
}