mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
Randomized bloodtype for new humans and monkeys
This commit is contained in:
@@ -166,4 +166,17 @@ proc/add_ghostlogs(var/mob/user, var/obj/target, var/what_done, var/admin=1, var
|
||||
log_ghost("[subject_text] [what_done] [target_text] [addition]")
|
||||
|
||||
/mob/proc/isVentCrawling()
|
||||
return (istype(loc, /obj/machinery/atmospherics)) // Crude but no other situation would put them inside of this
|
||||
return (istype(loc, /obj/machinery/atmospherics)) // Crude but no other situation would put them inside of this
|
||||
|
||||
/proc/random_blood_type()
|
||||
return pick(4;"O-", 36;"O+", 3;"A-", 28;"A+", 1;"B-", 20;"B+", 1;"AB-", 5;"AB+")
|
||||
//https://en.wikipedia.org/wiki/Blood_type_distribution_by_country
|
||||
/*return pick(\
|
||||
41.9; "O+",\
|
||||
31.2; "A+",\
|
||||
15.4; "B+",\
|
||||
4.8; "AB+",\
|
||||
2.9; "O-",\
|
||||
2.7; "A-",\
|
||||
0.8; "B-",\
|
||||
0.3; "AB-")*/
|
||||
|
||||
Reference in New Issue
Block a user