I answered you in a PM (and you succeeded), but I’ll duplicate the answer here (with some editing), maybe someone will need it in the future.
1. In this case, it’s easier not to import dbrs one by one, but to unpack the entire database.arz.
Unpack database.arz completely in a way convenient for you (attention, this can take a very long time, since for the current version it is ~74,000 files (~650 MB)). Although the forum recommends using ARZ Explorer (which unpacks both arc and arz files), I use ARZExtractor (since I use my own program to unpack arc, and this one is intended only for arz).
You can find ARZ Explorer on the forum - https://titanquestfans.net/index.php?topic=350.0, and if you need ARZExtractor - https://drive.google.com/file/d/1UGwUA2G1wiBHFkQkz1wUZ51BZax0CL0R
2. Either delete all other files that are not relevant, or move/copy the enemy files to a separate folder (you can directly into the modification folder (empty)) (I recommend copying):records\creature\devices\
records\creature\monster\
records\xpack\creatures\monster\
records\xpack2\creatures\monster\
records\xpack3\creatures\devices\
records\xpack3\creatures\monster\
records\xpack4\creatures\traps\
records\xpack4\creatures\monster\
3. Run the PowerShell script (REMEMBER TO CHANGE THE PATH TO THE FOLDER IN THE SCRIPT):
Open the Start menu, start typing "powershell" (without quotes) and open the "Windows PowerShell ISE" application. Paste the script code from the spoiler below. Change the first 3 values (path to the folder and, if necessary, the remaining 2).
Run the script by clicking on the green triangle (see screenshot), a red square will appear (see screenshot). The script will finish when the red square disappears and the green triangle appears again.(https://i.imgur.com/L6uRYRr.jpg)(https://i.imgur.com/XZxH3ol.jpg)
$directoryToTarget="D:\Users\HekTo\Desktop\folder"
$replace1 = "deleteBehavior,Fade,"
$replace2 = "dissolveTime,0.1,"
$search1 = "deleteBehavior,.*"
$search2 = "dissolveTime,.*"
$wordToFind1 = "deleteBehavior,"
$wordToFind2 = "dissolveTime,"
$addStr = $replace1 + "`r`n" + $replace2
Get-ChildItem -Path $directoryToTarget -Filter *.dbr -Recurse | Foreach-Object {
$file = Get-Content $_.FullName
$containsWord1 = $file | %{$_ -match $wordToFind1}
$containsWord2 = $file | %{$_ -match $wordToFind2}
If($containsWord1 -contains $true -and $containsWord2 -contains $true)
{
$file | ForEach-Object { $_ -replace $search1 , $replace1 ` -replace $search2 , $replace2 } |
Set-Content $_.FullName
}
ElseIf($containsWord1 -contains $true -and $containsWord2 -contains $false)
{
$file | ForEach-Object { $_ -replace $search1 , $replace1 } | Set-Content $_.FullName
Add-Content -path $_.FullName -value $replace2
}
ElseIf($containsWord1 -contains $false -and $containsWord2 -contains $true)
{
$file | ForEach-Object { $_ -replace $search2 , $replace2 } | Set-Content $_.FullName
Add-Content -path $_.FullName -value $replace1
}
Else
{
Add-Content -path $_.FullName -value $addStr
}
}
Drop the files into the modification folder (if they were not in it). That's it, the files are ready for "Build" in ArtManager.
Upd. There is a ready-made dll file that deletes bodies - https://titanquestfans.net/index.php?topic=1658.msg20878#msg20878