Skip to content

Commit 0a09171

Browse files
committed
Added some hidden options to FacialScars & Teeth.
1 parent 820002d commit 0a09171

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

CP2077SaveEditor/Resources/AppearanceValues.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,9 @@
300300
"__silver",
301301
"__gold",
302302
"__cooper",
303-
"__pink"
303+
"__pink",
304+
"__metal",
305+
"__metal_rusty"
304306
],
305307
"FacialScars":
306308
[
@@ -312,7 +314,9 @@
312314
"tribe_03",
313315
"beatup_01",
314316
"beatup_02",
315-
"seal_01"
317+
"seal_01",
318+
"witcher_01",
319+
"burn_01"
316320
],
317321
"BodyScars":
318322
[

CP2077SaveEditor/Utils/AppearanceHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ public int Teeth
527527
}
528528
set
529529
{
530-
if (value > 4 || value < 0)
530+
if (value > (AppearanceValueLists.Teeth.Count - 1) || value < 0)
531531
{
532532
return;
533533
}

0 commit comments

Comments
 (0)