Darkest Dungeon®

Darkest Dungeon®

View Stats:
Modding Question.
Hello. Pretty much the title as I like to mod games that I play a lot (like paradox games). Anyways, I want to create a fun OP trinket set to get the general idea of modding and for fun but the page for the modding guide is kinda lacking.

Also, would like to know how to get the trinkets asap to see if they work. In a game like crusader kings 2/3, when I made a new trait for the character I would be able to see if it works just by typing on the console "give trait "trait id" "character id"" but Im not sure how to have a console in this game.

Thanks in advance for the help :crusader_helmet:
< >
Showing 1-6 of 6 comments
Nakos Apr 25, 2024 @ 7:04pm 
Getting started with Modding (Official Guide): https://steamcommunity.com/sharedfiles/filedetails/?id=819597757
Officer's Ushanka Apr 25, 2024 @ 7:22pm 
Originally posted by Nakos:
Getting started with Modding (Official Guide): https://steamcommunity.com/sharedfiles/filedetails/?id=819597757
Thanks! But this post still doesnt solve my second issue. How can I force a save to give me the trinket immediately? Do I need to download a cheat console from somewhere else?
Last edited by Officer's Ushanka; Apr 25, 2024 @ 7:22pm
Nakos Apr 26, 2024 @ 12:53am 
Originally posted by Officer's Ushanka:
Thanks! But this post still doesnt solve my second issue. How can I force a save to give me the trinket immediately? Do I need to download a cheat console from somewhere else?

Sorry, dunno what to tell you on that one.
ZatroolMG Apr 26, 2024 @ 3:36am 
This will guide you on how to create your own mod:
https://steamcommunity.com/sharedfiles/filedetails/?id=2918752848
>>>>>>

To create a trinket, you need all of these in your mod folder:

└📁localization
⠀└ YOUR_TRINKET.string_table.xml
⠀⠀└ <entry id="str_inventory_title_trinketYOUR_TRINKET"><![CDATA[YOUR_TRINKET]]></entry>

└📁panels
⠀└📁icons_equip
⠀⠀└📁trinket
⠀⠀⠀└ inv_trinket+YOUR_TRINKET.png

└📁trinkets
⠀└ YOUR_TRINKET.entries.trinkets.json

└📁shared
⠀└📁buffs
⠀⠀└ YOUR_TRINKET.buffs.json

>>>>>>

To spawn your trinkets in game, copy and paste this to your mod folder:

└📁trinkets
⠀└ base.starting.trinkets.json

Open it, add your trinkets IDs, save. Once you launch a new game, they will be automatically added to your trinket storage.

>>>>>>

Lastly, if you need further assistance, please go to the "mod-help" channel on the official Discord:
https://discord.com/invite/darkestdungeon
Last edited by ZatroolMG; Apr 26, 2024 @ 3:42am
Officer's Ushanka Apr 26, 2024 @ 1:06pm 
Originally posted by ZatroolMG:
This will guide you on how to create your own mod:
https://steamcommunity.com/sharedfiles/filedetails/?id=2918752848
>>>>>>

To create a trinket, you need all of these in your mod folder:

└📁localization
⠀└ YOUR_TRINKET.string_table.xml
⠀⠀└ <entry id="str_inventory_title_trinketYOUR_TRINKET"><![CDATA[YOUR_TRINKET]]></entry>

└📁panels
⠀└📁icons_equip
⠀⠀└📁trinket
⠀⠀⠀└ inv_trinket+YOUR_TRINKET.png

└📁trinkets
⠀└ YOUR_TRINKET.entries.trinkets.json

└📁shared
⠀└📁buffs
⠀⠀└ YOUR_TRINKET.buffs.json

>>>>>>

To spawn your trinkets in game, copy and paste this to your mod folder:

└📁trinkets
⠀└ base.starting.trinkets.json

Open it, add your trinkets IDs, save. Once you launch a new game, they will be automatically added to your trinket storage.

>>>>>>

Lastly, if you need further assistance, please go to the "mod-help" channel on the official Discord:
https://discord.com/invite/darkestdungeon
Nice! Ur a live saver. But I still got a question. If I want to create a custom buff that heals +55 stress can it be done by modifying the ancestor's scroll buff? From:

{
"id" : "TRINKET_ancestors_scroll_STRESSHEALDONE_BUFF",
"stat_type" : "stress_heal_percent",
"stat_sub_type" : "",
"amount" : 0.25,
"remove_if_not_active" : false,
"rule_type" : "always",
"is_false_rule" : false,
"rule_data" : {
"float" : 0,
"string" : ""
}
}
To>>>>>>>>>

{
"id" : "TRINKET_darkest_scroll_STRESSHEALDONE_BUFF",
"stat_type" : "stress_heal_percent",
"stat_sub_type" : "",
"amount" : 0.55,
"remove_if_not_active" : false,
"rule_type" : "always",
"is_false_rule" : false,
"rule_data" : {
"float" : 0,
"string" : ""
}
}
Would that work? Rn working on the first trinket which would be basically buffed CC scroll for crusader
Last edited by Officer's Ushanka; Apr 26, 2024 @ 1:07pm
ZatroolMG Apr 27, 2024 @ 10:07am 
You can directly edit this buff (it's the one from the Crusader CC Trinket)
"TRINKET_cru_signed_conscription_STRESSHEALDONE_B1"

But to answer your question, yes, it would work !
< >
Showing 1-6 of 6 comments
Per page: 1530 50

Date Posted: Apr 25, 2024 @ 3:21pm
Posts: 6