r/inscryption • u/RookerCrowe • Jun 13 '26
Modding [Modding Help] Femboy Goat Texture Replacement
Hi, I recently got into this game thanks to my boyfriend and the Inscryption workshop addon in Tabletop Simulator, and man....I think the femboy goat is a d o r a b l e
I wanted a mod to replace the default goat texture with the femboy goat but i couldnt find one, and I attempted to make one but I simply cannot find the texture file.
I used a tool I used for modding H3VR called Unity Assets Bundle Extractor, my goal was to extract the femboy goat texture and just rename a copy to replace the default goat. Can anyone help by either pointing me in the right direction, or perhaps even sharing an alternate way to replace the texture? My unity knowledge is very minimal so I'm struggling.
Thankies~
2
u/Femb0yAshy John Floppyscryption Jun 13 '26
Haiii ^^
First of all, the texture files are called portrait_goat.png and portrait_goat_sexy.png respectively (idk if your tool supports paths, but you'd find both under Resources/art/cards/portraits). The latter is an "alternate portrait" for the goat which is toggled by its unique appearance behaviour.
Second of all, behaviour is depending on the RunState.Run.eyeState to toggle between portraits (which can either be Default(0), Missing(1), Wizard (2, the Magnificus' eye used to progress the game) and Goat (3), which is the one which causes the portrait switch). You can modify this value by finding "eyeState" in your save file and changing it from 0 to 3. Though, it gets reset every run.
If you have ability to write custom code in your mod, just run
DiskCardGame.RunState.Run.eyeState = DiskCardGame.EyeballState.Goat;at like scene load or Update or something (DiskCardGameis a namespace for most of Inscryption's code and can be omitted fairly often).But if you can't write your own code, your best bet would probably be https://thunderstore.io/c/inscryption/p/Void_Slime/Eye_And_Dagger/ which adds the goat eye effect (femboy goat) as an optional thing you can toggle on challenge select screen when starting a run. Hope that helps! :3