I'm working on the oft-requested ability to display more skills, and the current solution is to have a page displaying ALL skills -- potentially allowing paging through it in the future, if it becomes necessary. However, I've run into a snag. At the moment there's only two columns worth of skills to consider, but we're only three skills from needing a third column, so I need to make room for that. Unfortunately, due to the length of the skill names, it won't fit with the current system.
I can:
a) Not display the maximum skill level for each skill, or
b) Shorten the maximum skill name length by three letters
There's always removing the third column idea and just implementing paging already, but it will look worse that way. We're 90% of the way to the third column, we just need at least three more letters of space.
So this is a call for suggestions on shorter skill names. Specifically, if the skill names get shortened, then:
3 letters too long:
Sleight of Hand
2 letters too long:
Improv Weapons
Submachine Gun
Garment Making
1 letter too long:
Interrogation
~~~
Reducing skill name size isn't the only solution here, so here's more details on the problem, if you want to make an alternate suggestion:
The LCS game uses the standard DOS window size of 80x25 characters. That means that working across, I need to fit three columns in 80 characters of space. That means:
X characters for the skill name
+ 1 character for the colon
+ 1 character spacing
+ 5 characters for the current skill amount
+ 1 character spacing
+ 5 characters for the max skill amount
= X+13 characters for the columnThere's at least one space required between columns, absolute minimum (more is better), but that means that to fit three columns, we need 78/3 = 26 character columns, at most, which means only 13 characters for the skill name (3 less than now), OR we hack off the information about how much your maximum skill is, and give 16 characters (the current max) and increased space between columns.
There will be headers at the top of the columns so you can see what the numbers mean.