mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-13 11:12:14 +00:00
* Species & Taurs Initial Launch * Fixes and a quick attempt to update branch * 'A quick fix' * Cleaning up variables, applying crew vote, adding PR to readme * changes 'exclamate' to 'exclaim', removes unused list. * Fixes an overlay oversight, adds sound effects to all turf styles * typo fix * volume fix (also failcheck again) * added suggestion and removed a switch * patch cycle 1 * buff prints * patch 2 Co-authored-by: Gandalf <jzo123@hotmail.com>
20 lines
1018 B
Plaintext
20 lines
1018 B
Plaintext
//Human sub species helpers
|
|
#define isrobotic(A) (is_species(A,/datum/species/robotic))
|
|
#define isipc(A) (is_species(A,/datum/species/robotic/ipc))
|
|
#define issynthliz(A) (is_species(A,/datum/species/robotic/synthliz))
|
|
#define issynthanthro(A) (is_species(A,/datum/species/robotic/synthetic_mammal))
|
|
#define issynthhuman(A) (is_species(A,/datum/species/robotic/synthetic_human))
|
|
|
|
#define isvox(A) (is_species(A,/datum/species/vox))
|
|
#define ismammal(A) (is_species(A,/datum/species/mammal))
|
|
#define ispodweak(A) (is_species(A,/datum/species/pod/podweak))
|
|
#define isxenohybrid(A) (is_species(A,/datum/species/xeno))
|
|
#define isdwarf(A) (is_species(A,/datum/species/dwarf))
|
|
#define isroundstartslime(A) (is_species(A,/datum/species/jelly/roundstartslime))
|
|
|
|
#define ishorrorling(A) (istype(A, /mob/living/simple_animal/hostile/true_changeling))
|
|
|
|
#define isaquatic(A) (is_species(A,/datum/species/aquatic))
|
|
#define isakula(A) (is_species(A,/datum/species/akula))
|
|
#define ishumanoid(A) (is_species(A,/datum/species/humanoid))
|