mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Some new isX checks.
This commit is contained in:
@@ -114,7 +114,25 @@ proc/isorgan(A)
|
|||||||
return
|
return
|
||||||
|
|
||||||
/proc/istajaran(A)
|
/proc/istajaran(A)
|
||||||
return istype(A, /mob/living/carbon/human/tajaran)
|
if(istype(A, /mob/living/carbon/human))
|
||||||
|
var/mob/living/carbon/human/M = A
|
||||||
|
if(M.dna.mutantrace == "tajaran")
|
||||||
|
return 1
|
||||||
|
return 0
|
||||||
|
|
||||||
|
/proc/issoghun(A)
|
||||||
|
if(istype(A, /mob/living/carbon/human))
|
||||||
|
var/mob/living/carbon/human/M = A
|
||||||
|
if(M.dna.mutantrace == "lizard")
|
||||||
|
return 1
|
||||||
|
return 0
|
||||||
|
|
||||||
|
/proc/isskrell(A)
|
||||||
|
if(istype(A, /mob/living/carbon/human))
|
||||||
|
var/mob/living/carbon/human/M = A
|
||||||
|
if(M.dna.mutantrace == "skrell")
|
||||||
|
return 1
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
/proc/check_zone(zone)
|
/proc/check_zone(zone)
|
||||||
|
|||||||
Reference in New Issue
Block a user