Running with scissors (#32685)

* Running with scissors.

* Fix.

* Text stuff.

* Change comment.

* Fix randomized targeting.

* Clumsyness.

* .

* .

* .

* Monkey messages.

* .

* .

* Nicer conjugation.

* .

* More flexible attack messages.

* .

* .

* Butter, butter on a stick, and slippery sliders.

* Refactor slipping messages.

* .

* .

* Nicer syringe messages.

* You hit the camera with.

* Remove debug.

* Update items.dm

Only when running.

* Update items.dm

* Update effect_system.dm

* Remove unneeded arg.
This commit is contained in:
Hinaichigo
2022-06-04 00:00:58 -04:00
committed by GitHub
parent e37b65ea5d
commit f1a4acff8d
20 changed files with 227 additions and 117 deletions

View File

@@ -45,12 +45,13 @@
size = "huge"
var/pronoun = "it is"
if(src.gender == FEMALE)
pronoun = "she is"
else if(src.gender == MALE)
pronoun = "he is"
else if(src.gender == PLURAL)
pronoun = "they are"
switch(gender)
if(FEMALE)
pronoun = "she is"
if(MALE)
pronoun = "he is"
if(PLURAL)
pronoun = "they are"
..(user, " [capitalize(pronoun)] [size].", show_name, FALSE)
if(meat_taken > 0)