Skip to content

Commit

Permalink
Lower max strength cap in character creation
Browse files Browse the repository at this point in the history
There's really no reason for the ability to start with more than
top-tier athlete strength. Mutants might have higher strength, but that
should be done with strength boosting mutations, not with stats taken in
character generation.
  • Loading branch information
anothersimulacrum committed Feb 28, 2020
1 parent dfe44a4 commit b9a2da3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/game_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ constexpr time_duration CORPSE_ROT_TIME = 24_hours;
#define MAX_SKILL 10

// Maximum (effective) level for a stat.
#define MAX_STAT 20
#define MAX_STAT 14

// Maximum range at which ranged attacks can be executed.
#define RANGE_HARD_CAP 60
Expand Down
4 changes: 2 additions & 2 deletions src/newcharacter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@
#define COL_NOTE_MAJOR c_green // Important note
#define COL_NOTE_MINOR c_light_gray // Just regular note

#define HIGH_STAT 14 // The point after which stats cost double
#define MAX_STAT 20 // The point after which stats can not be increased further
#define HIGH_STAT 12 // The point after which stats cost double
#define MAX_STAT 14 // The point after which stats can not be increased further

#define NEWCHAR_TAB_MAX 6 // The ID of the rightmost tab

Expand Down

0 comments on commit b9a2da3

Please sign in to comment.