characteristics: expanded version of bottom line strength, dexterity, &c */
| 824 | |
| 825 | /* characteristics: expanded version of bottom line strength, dexterity, &c */ |
| 826 | staticfn void |
| 827 | characteristics_enlightenment(int mode, int final) |
| 828 | { |
| 829 | char buf[BUFSZ]; |
| 830 | |
| 831 | enlght_out(""); |
| 832 | Sprintf(buf, "%sCharacteristics:", !final ? "" : "Final "); |
| 833 | enlght_out(buf); |
| 834 | |
| 835 | /* bottom line order */ |
| 836 | one_characteristic(mode, final, A_STR); /* strength */ |
| 837 | one_characteristic(mode, final, A_DEX); /* dexterity */ |
| 838 | one_characteristic(mode, final, A_CON); /* constitution */ |
| 839 | one_characteristic(mode, final, A_INT); /* intelligence */ |
| 840 | one_characteristic(mode, final, A_WIS); /* wisdom */ |
| 841 | one_characteristic(mode, final, A_CHA); /* charisma */ |
| 842 | } |
| 843 | |
| 844 | /* display one attribute value for characteristics_enlightenment() */ |
| 845 | staticfn void |
no test coverage detected