Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
To veiw/alter base game events - darkestdungeon/campaign/town_events is where you go, then open base.town_events.events. You will need something like notepad+ to open the file.
So for example in that file you will find this...
{
"id": "dead_recruit",
"base_chance": 3.0,
"per_not_rolled_additional_chance": 1.0,
"cooldown": 3,
"requirements": {
"minimum_week": 15,
"dead_heroes": 3,
"hero_level_counts": [],
"upgrades_purchased": [],
"trinket_storage_count": 0
},
"town_ambience_paramater_ids": [],
"tone": "good",
"sprite": "town_event_day_of_the_dead",
"sprite_attachment": "graveyard",
"data": [
{
"type": "dead_recruit",
"string_data": "",
"number_data": 3.0
}
]
},
Which is the event for dead heroes coming back. You can alter the minimum number of deaths - and increase the number of options as well. As well a probability of the event occuring - I believe 20.0 is considered extremely likely.
Once you're happy with your alterations save and close the file and your good to go when you launch your game. Be sure to keep a backup of any changes you make.
My recommendation is to experiment and try it yourself.
{
"id": "dead_recruit",
"base_chance": 20.0,
"per_not_rolled_additional_chance": 1.0,
"cooldown": 3,
"requirements": {
"minimum_week": 10,
"dead_heroes": 1,
"hero_level_counts": [],
"upgrades_purchased": [],
"trinket_storage_count": 0
},
"town_ambience_paramater_ids": [],
"tone": "good",
"sprite": "town_event_day_of_the_dead",
"sprite_attachment": "graveyard",
"data": [
{
"type": "dead_recruit",
"string_data": "",
"number_data": 3.0
}
]
},
If you want to change the number of options to pick from - you can try changeing the "number_data": 3.0 to say 5.0 or something else - but I have never tested that as teh event screens are made to only fit 3, so not sure if a arrow/slider will generate or if it will glitch. You can certainly try it if you wish.
Have a look at file setup for some of the mods out there and there is a workshop guide somewhere... check the stickies.
Pretty sure this is it:
https://steamcommunity.com/sharedfiles/filedetails/?id=819597757
I've never used it as I started modding before there was ever any form of a guide. But it should be able to get you started.
This is very helpful! Thank you!