Jump to content

Darkest Dungeon Erotic Mods


Recommended Posts

Posted (edited)
1 hour ago, Prodoxa said:

Oh wow, pretty shocked that a NSFW skin exists for that class, since I thought I remembered reading there wouldnt be one.

 

Thank you for sharing that

Kaze's afdian was available two months ago, and Mage's NSFW.

Edited by xx123v0
Posted
39 minutes ago, xx123v0 said:

Kaze's afdian was available two months ago, and Mage's NSFW.

I see, I wasn't aware of that site until today, I only knew about his Patreon, thank you for that info

 

And I am sorry to ask, but do you think you could share the Astral Mage skins as well? It's all good if you can't or don't want to though

 

Posted
On 6/13/2026 at 2:35 AM, Burgermuffin said:

 

*btw I have no idea if there is an easier way to do this, I honestly was just curious if I could delete out the extra animations if that would allow me to do what I was trying to do. I tried the override method, but wasn't workin for what I was trying to do.

 

https://steamcommunity.com/sharedfiles/filedetails/?l=swedish&id=2129596601

 

The only part you need from that link is:

 

image.png.c7cdce439b94f0b4eac6b68b0ba637cf.png

 

 

 

 

 

I'll make this a little easier to follow. 90 edits later I have revised.

 

*******************************************************
*** Editing the .skele files as .json   my guide to the above link.
****************************************************
 
***NOTE!!!  I would advise using the skeleton viewer, as this lets you test your file when done and also is an easy way to quickly see what all animations are present along with the animation names. https://drive.google.com/file/d/19gtG6dMBKTFIwQk_WOiKqP10zkPm6lCM/view  *easy google to understand this, but to view a skeleton you need the .skele, .atlas and the .png all in the same folder.
 
---------------------------------------------------------------------------------
 
First let's get all the tools.
 
 
Once that is done, download the spine converter.
Unzip that into a folder.
 
Download notepad++.
Download the plugin json viewer for notepad++ (simple enough of a google search) You will want this otherwise it crams the entire file as a massive runon sentence. You want this thing structured.
-----------------------------------------------------------
Now we start.
------------------------------------------------
Open the folder you unzipped the contents of spineconverter. Grab the .skele file you are wanting to edit, and drop this within the same folder.
*Example image here; with the marika.sprite.walk.skele being the skeleton file I was working with.
 
image.png.390c5acbff7577a64b1c09db417e3318.png
 
Now you will need to open python from this directory, to do that type cmd in the address bar. Meaning, click in the address bar- hit delete(clear it out) and type cmd and press enter.
 
image.png.afcf1c0df2e5fdc084ea1deffd6b0826.png
 
This will bring up the cmd prompt pointing to that folder location:
 
image.png.30a313cea813e98e0f647b323668f1f7.png
 
Now we need to run python. Type python and press enter.
 
image.png.7499c59eeb0bb57cede8d2d9dbe294ae.png
 
 
Now we are ready to use the code snippit provided for us. Change the highlighted text to what yours would be, and copy paste this into the prompt.
 
 
 
from spBinaryReader import spBinaryReader
from spJsonWriter import spJsonWriter
binaryReader = spBinaryReader()
jsonWriter = spJsonWriter()
skeletonData = binaryReader.readSkeletonDataFile( "marika.sprite.walk.skel" )
jsonWriter.writeSkeletonDataFile( skeletonData, "marika.sprite.walk.json" )
 
 
image.png.a86937c9244151e4098bdbe669662f0e.png
 
 
Now press enter twice
 
image.png.6634a271107d766e78a0ce13b7388fa0.png
 
If you got here, you will now have a .json file in your directory.
 
image.png.0ed47d098c8b277ad5dbbc2c78d04b27.png
 
 
So now we open our .json file and it'll look like this at first. Which is why we want the json viewer plugin.
 
image.png.97e57b3a4db0ae8a0de23523dbbfd7ae.png
 
We can now sort the file:
 
image.png.ef35a1300ea64f0d33a0cd8d22381efd.png
 
 
Which finally gives us something we can read!
 
image.png.640b530c676f0b00bf9d5753d84af66c.png
 
So right away it defines our animations, the first in this example being "walk_Mrk_mode_HEAL" and all of it's properties follow. They are rather lengthy, and to remove the animation you will need to delete the entire code section. The easiest way to do this is to place your cursor at the starting curly brace- which is on line 3 in this example directly after "walk_Mrk_mode_HEAL": and press ctrl+alt+b. You should see a wall of text highlighted, press delete.
 
image.png.912c48db81361f63869be325abc819dd.png
 
As you see it left the animation name behind, and you will need to also delete that*The highlighted line.  
 
and that's it. "walk_Mrk_mode_SKA is the second animation with marika walk skele. 
***************************************************************************************************************************************************************
 
 
Also do not leave hanging commas as in this example here**
 

image.png.281e7911d05bd1ecaaf0727595822536.png

 

animationName1:{
bla bla 
},  <-- This comma I am referencing 
animationName2:{
bla bla}
 
If you remove animationName2, you will also want to go back up to the previous line and drop the comma since there is not another animation to follow. It will expect something to follow the comma. I can't remember what all hiccups I ran into, but hopefully that's all helpful. I could be wrong on this, but eitherway- good housekeeping.
 
 
 
Now be mindful if you are doing what I did in this example, I made my vestal utilize the marika skele; cloned marika into my vestal. Vestals walk animation tag is called "walk" so I changed "walk_Mrk_mode_SKA" to "walk" (just the tag name) otherwise it will not recognize the animation. At least for me it did not, my vestal was a frozen statue until I figured this out. 

 

 

 

Coming out of lurking to thank you for this guide, Burgermuffin. 

I've tried to make conversions in the past but I gave up due to this specific issue and I could not find a solution anywhere. Seeing your post made my day!

 

The conversion I wanted to make was a Eulogy skin for the Hellion. Eulogy has a few .skel files with multiple animations, confirming that it was indeed the issue and now having removed the extra animations, it works flawlessly. 

Hellionconversion.png.9e3db86703ff7e13a0eb5215557b7083.png

 

Here is the skin for those who are interested. It includes both her SFW & NSFW skins. Enjoy and let me know if there are any issues!

 

 

 

Hellion to Eulogy.rar

Posted
20 hours ago, Prodoxa said:

I see, I wasn't aware of that site until today, I only knew about his Patreon, thank you for that info

 

And I am sorry to ask, but do you think you could share the Astral Mage skins as well? It's all good if you can't or don't want to though

 

298 Astral FS NSFW Skin.7z

Posted
1 hour ago, autismxie said:

ZIMIK's mods are now publicly available. Does anyone have their NSFW version?

For most of them i already saw AI-generated versions 

And for those of them which i took into my game (its almost any of them except like 3 or 4 from all skins) - i will make my own or polished NSFW versions in time when will encounter them (usual pattern)

Cant tell when exactly it will be - since for now i still on break from DD completly (both playing and editing), and since its random when i encounter exact skin (may be next day i return to playing, may be in months)

Posted
2시간 전에 roropang님이 말했습니다:

이미지.png.4e3455479671791531eb0841d908d01a.png

 

안녕하세요, 이 보스가 나타나지 않네요. 별도의 모드를 설치해야 하나요? 아니면 아직 출시되지 않은 건가요?

 

Posted
On 6/17/2026 at 8:41 PM, horroratheart90 said:

Does anyone have some of Kairos mods? I'm after the Hellion Cultist specifically but I'd take any that are available 

hellion_N Cultist Helion Skin TOPLESS.jpgleper Nun TOPLESS.jpg

 

Also looking for this Leper Nun skin as well

Posted

A new Kemono.cr replacement recently popped up again, currently the only DD mod author that has been imported is Deovolente, but I thought I should mention this here for those who are unaware, you can also still view anything else that was up on Kemono before, but you can only preview that content until the creator gets imported again.

 

Here is the site:

https://pawchive.st/ 

Posted

And I guess to top off my search, any have the nsfw for EvilMeow/poisonous tongues - (Queen Thorns, Mai Shiran, rabbithole, MagicianGirl, Zhuma, and Yanzhi). Have the classes, just not the reskins. Much appreciated!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...