1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-08-08 21:55:25 +01:00

Tan(nin) pluralization

This commit is contained in:
ChrisANG 2021-02-04 22:28:42 -05:00
parent 5068d3e994
commit cafdde0c55

View file

@ -2884,6 +2884,16 @@ const char *oldstr;
Strcpy(spot-1, "oth");
goto bottom;
}
/* Hebrew (plural of tannin is tanninim */
if (len >= 6 && !strcmp(spot-5, "tannin")) {
Strcpy(spot, "nim");
goto bottom;
}
/* Hebrew (maybe-plural of tannah, which is maybe the feminine form of tan (NOT tannin)) */
if (len >= 6 && !strcmp(spot-5, "tannah")) {
Strcpy(spot-1, "oth");
goto bottom;
}
/* Elves (plural of alfr is alfar) */
if (len >= 4 && !strcmp(spot-3, "alfr")) {