Skip to content

Commit

Permalink
комментирование
Browse files Browse the repository at this point in the history
  • Loading branch information
nixsilvam404 committed Jul 1, 2024
1 parent 0f7a20c commit 427b32d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Content.Shared/Humanoid/NamingSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,11 @@ public string GetName(string species, Gender? gender = null)
case SpeciesNaming.FirstDashFirst:
return Loc.GetString("namepreset-firstdashfirst",
("first1", GetFirstName(speciesProto, gender)), ("first2", GetFirstName(speciesProto, gender)));
// Start ADT Tweak: Drask naming
case SpeciesNaming.FirstDashFirstDashFirst:
return Loc.GetString("namepreset-firstdashfirstdashfirst",
("first1", GetFirstName(speciesProto, gender)), ("first2", GetFirstName(speciesProto, gender)), ("first3", GetFirstName(speciesProto, gender)));
// End ADT Tweak
case SpeciesNaming.FirstLast:
default:
return Loc.GetString("namepreset-firstlast",
Expand Down
2 changes: 2 additions & 0 deletions Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ public enum SpeciesNaming : byte
First,
FirstLast,
FirstDashFirst,
// ADT Start tweak: Drask naming
FirstDashFirstDashFirst,
// ADT End tweak
TheFirstofLast,
}
3 changes: 2 additions & 1 deletion Resources/Prototypes/Chemistry/metabolizer_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
id: Arachnid
name: metabolizer-type-arachnid

#ADT
# Start ADT tweak: Drask
- type: metabolizerType
id: Drask
name: drask
# End ADT tweak
4 changes: 3 additions & 1 deletion Resources/Prototypes/Reagents/gases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@
conditions:
- !type:OrganType
type: Human
# Start ADT tweak: Drask
- !type:Oxygenate
conditions:
- !type:OrganType
type: Drask #ADT
type: Drask
# End ADT tweak
- !type:Oxygenate
conditions:
- !type:OrganType
Expand Down

0 comments on commit 427b32d

Please sign in to comment.