Files
fulpstation/code/__DEFINES/pronouns.dm
A miscellaneous Fern 9bd86e85b5 June/July TGU: Loadout menu, flatpackers and... whatever else! (#1230)
* Initial Commit

* Not quite all was staged, apparently.

* Multiline no longer necessary

* For my convenience...

* Forgot an important little tidbit in routes.tsx

* This updated, apparently.

* And now hell breaks loose

* First batch

* Second Batch

* Third batch (Unit Tests)

* Improvised shotgun ammo is gone; Vibebots are refactored

* UpdatePath sweeps in our fulp_modules/_maps folder

* I can't bring myself to do it.

* Map stuff

* Didn't mean to leave this uncommented

* I carpet-bombed them with Find-Replace. Let's see what linters think

* I sure do hope this is comprehensive and doesn't break other things

* This may take a while

* Next Round

* Hopefully the last batch before getting on with actual fixes

* Telescreens

* :/

* Stragglers

* Helio Emergency Shuttle; NearStation adjustments.

* Only one more commit for greenchecks... Shuttle code be dammed.

* Pff, the file was missing

* Same treatment as the other map files.

* Missed a comma :P

* BZ chambers for Xenobiology

* Odd. Most of these got done earlier. Not sure why this one wasn't.

* Mapping sweep. I didn't adjust C_tags in Theia. Another time.

* The balloon alerts overlap

* I hate TGU I hate TGU

* I meant to say "I hate TG" on the last one. Freudian slip.

* Fix Fix

* Nanite research cost rebalance

* TGU-Update: Step 0

* Yeah I figured it'd do this.

* I accidentally undid this

* Failed to catch this one

* I don't trust hundredths not to break or be broken somewhere.

* Little air alarm tweaks

* Ports #1228

* Stuff I missed

* Silly

* TGU so nice we're going to make it thrice

* Yarn

* Should be all? Fixes cult stun too.

* Thermomachine layers

* Free square spellcheck to rerun tests and see if it's consistent

* All credit goes to QLA for reminding me to actually do this

* Update to e40becd742

* github folder
2024-08-06 20:17:51 -04:00

43 lines
2.1 KiB
Plaintext

/// she, he, they, it "%PRONOUN_they" = "p_they"
/// She, He, They, It "%PRONOUN_They" = "p_They"
/// her, his, their, its "%PRONOUN_their" = "p_their"
/// Her, His, Their, Its "%PRONOUN_Their" = "p_Their"
/// hers, his, theirs, its "%PRONOUN_theirs" = "p_theirs"
/// Hers, His, Theirs, Its "%PRONOUN_Theirs" = "p_Theirs"
/// her, him, them, it "%PRONOUN_them" = "p_them"
/// Her, Him, Them, It "%PRONOUN_Them" = "p_Them"
/// has, have "%PRONOUN_have" = "p_have"
/// is, are "%PRONOUN_are" = "p_are"
/// was, were "%PRONOUN_were" = "p_were"
/// does, do "%PRONOUN_do" = "p_do"
/// she has, he has, they have, it has "%PRONOUN_theyve" = "p_theyve"
/// She has, He has, They have, It has "%PRONOUN_Theyve" = "p_Theyve"
/// she is, he is, they are, it is "%PRONOUN_theyre" = "p_theyre"
/// She is, He is, They are, It is "%PRONOUN_Theyre" = "p_Theyre"
/// s, null (she looks, they look) "%PRONOUN_s" = "p_s"
/// es, null (she goes, they go) "%PRONOUN_es" = "p_es"
/// Don't forget to update the grep if you add more! tools/ci/check_grep.sh -> pronoun helper spellcheck
/// A list for all the pronoun procs, if you need to iterate or search through it or something.
#define ALL_PRONOUNS list( \
"%PRONOUN_they" = TYPE_PROC_REF(/datum, p_they), \
"%PRONOUN_They" = TYPE_PROC_REF(/datum, p_They), \
"%PRONOUN_their" = TYPE_PROC_REF(/datum, p_their), \
"%PRONOUN_Their" = TYPE_PROC_REF(/datum, p_Their), \
"%PRONOUN_theirs" = TYPE_PROC_REF(/datum, p_theirs), \
"%PRONOUN_Theirs" = TYPE_PROC_REF(/datum, p_Theirs), \
"%PRONOUN_them" = TYPE_PROC_REF(/datum, p_them), \
"%PRONOUN_Them" = TYPE_PROC_REF(/datum, p_Them), \
"%PRONOUN_have" = TYPE_PROC_REF(/datum, p_have), \
"%PRONOUN_are" = TYPE_PROC_REF(/datum, p_are), \
"%PRONOUN_were" = TYPE_PROC_REF(/datum, p_were), \
"%PRONOUN_do" = TYPE_PROC_REF(/datum, p_do), \
"%PRONOUN_theyve" = TYPE_PROC_REF(/datum, p_theyve), \
"%PRONOUN_Theyve" = TYPE_PROC_REF(/datum, p_Theyve), \
"%PRONOUN_theyre" = TYPE_PROC_REF(/datum, p_theyre), \
"%PRONOUN_Theyre" = TYPE_PROC_REF(/datum, p_Theyre), \
"%PRONOUN_s" = TYPE_PROC_REF(/datum, p_s), \
"%PRONOUN_es" = TYPE_PROC_REF(/datum, p_es) \
)