diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw index 1890dbbee556ba2b0fb99afc1e8addc09448fff2..1a0ad015dff05c6b4ab6a95ae3964a8224c1d5d5 100644 --- a/src/gui/Encyclopedia/encyclopedia.tw +++ b/src/gui/Encyclopedia/encyclopedia.tw @@ -2600,6 +2600,7 @@ __I do not give credit without explicit permission to do so.__ If you have contr <br>''anon'' for the slave mutiny event. <br>''onithyr'' for various little tweaks and additions. <br>''anonNeo'' for spellchecking. +<br>''kopareigns'' for many text and bug fixes. <br>''Utopia'' for dirty dealings gang leader focus and updates to it. <br>''hexall90'' for height growth drugs, incubator organ farm support and detailing, the dispensary cleanup, the joint Eugenics bad end rework, the Hippolyta Academy, and the Security Expansion Mod. <br>''sensei'' for coding in support for commas and an excellent family tree rework. diff --git a/src/pregmod/editGenetics.tw b/src/pregmod/editGenetics.tw index 18afeacda2868d5af973a811c023ac7542426fa5..4f7dec669f857cf5351294f09cf72675e82d387b 100644 --- a/src/pregmod/editGenetics.tw +++ b/src/pregmod/editGenetics.tw @@ -175,7 +175,7 @@ '7': 'gigantic', '8': 'titanic', '9': 'absurd', '10': 'inhuman', '11': 'hypertrophied'}[s] || 'unknown') + ' (' + Number(s) + ')'; }; tmpl.testesDesc = function(s) { - return ({'0': 'none', '1': 'vestigal', '2': 'small', '3': 'average', '4': 'big', '5': 'huge', '6': 'enormous', + return ({'0': 'none', '1': 'vestigial', '2': 'small', '3': 'average', '4': 'big', '5': 'huge', '6': 'enormous', '7': 'hypertrophied', '8': 'hypertrophied', '9': 'hypertrophied', '10': 'hypertrophied'}[s] || 'unknown') + ' (' + Number(s) + ')'; }; tmpl.hormonalCat = new Categorizer([-Infinity, 'heavy male'], [-49, 'male'], [-24, 'natural'], [25, 'female'], [50, 'heavy female']); @@ -185,7 +185,7 @@ res.push('Immune system damaged (' + slave.chem.toFixed(0) + ').'); } if(slave.addict > 0) { - res.push('Addicted to aphrodisiaca (' + slave.addict.toFixed(0) + ').'); + res.push('Addicted to aphrodisiacs (' + slave.addict.toFixed(0) + ').'); } return res.join(' '); };