mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 15:42:35 +00:00
Removes genetics for real now (#4831)
-removes all genetics things from the map/rd -fixes #4829 -fully removes the geneticist job
This commit is contained in:
@@ -133,33 +133,3 @@
|
||||
H.equip_to_slot_or_del(new /obj/item/weapon/storage/belt/utility/full(H), slot_belt)
|
||||
H.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/toggle/labcoat(H), slot_wear_suit)
|
||||
return TRUE
|
||||
|
||||
/datum/job/geneticist
|
||||
title = "Geneticist"
|
||||
flag = GENETICIST
|
||||
department = "Science"
|
||||
department_flag = MEDSCI
|
||||
faction = "Station"
|
||||
total_positions = 0
|
||||
spawn_positions = 0
|
||||
supervisors = "the research director"
|
||||
selection_color = "#ffeeff"
|
||||
economic_modifier = 7
|
||||
access = list(access_genetics, access_tox, access_tox_storage, access_morgue, access_research)
|
||||
minimal_access = list(access_morgue, access_genetics, access_research)
|
||||
|
||||
bag_type = /obj/item/weapon/storage/backpack/genetics
|
||||
satchel_type = /obj/item/weapon/storage/backpack/satchel_gen
|
||||
duffel_type = /obj/item/weapon/storage/backpack/duffel/gen
|
||||
messenger_bag_type = /obj/item/weapon/storage/backpack/messenger/gen
|
||||
|
||||
equip(var/mob/living/carbon/human/H)
|
||||
if(!H)
|
||||
return FALSE
|
||||
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sci(H), slot_l_ear)
|
||||
H.equip_to_slot_or_del(new /obj/item/clothing/under/rank/geneticist(H), slot_w_uniform)
|
||||
H.equip_to_slot_or_del(new /obj/item/clothing/shoes/white(H), slot_shoes)
|
||||
H.equip_to_slot_or_del(new /obj/item/device/pda/geneticist(H), slot_belt)
|
||||
H.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/toggle/labcoat/genetics(H), slot_wear_suit)
|
||||
H.equip_to_slot_or_del(new /obj/item/device/flashlight/pen(H), slot_s_store)
|
||||
return TRUE
|
||||
|
||||
@@ -23,14 +23,13 @@ var/const/SCIENTIST =(1<<1)
|
||||
var/const/CHEMIST =(1<<2)
|
||||
var/const/CMO =(1<<3)
|
||||
var/const/DOCTOR =(1<<4)
|
||||
var/const/GENETICIST =(1<<5)
|
||||
var/const/VIROLOGIST =(1<<6)
|
||||
var/const/PSYCHIATRIST =(1<<7)
|
||||
var/const/ROBOTICIST =(1<<8)
|
||||
var/const/XENOBIOLOGIST =(1<<9)
|
||||
var/const/PARAMEDIC =(1<<10)
|
||||
var/const/INTERN_MED =(1<<11)
|
||||
var/const/INTERN_SCI =(1<<12)
|
||||
var/const/VIROLOGIST =(1<<5)
|
||||
var/const/PSYCHIATRIST =(1<<6)
|
||||
var/const/ROBOTICIST =(1<<7)
|
||||
var/const/XENOBIOLOGIST =(1<<8)
|
||||
var/const/PARAMEDIC =(1<<9)
|
||||
var/const/INTERN_MED =(1<<10)
|
||||
var/const/INTERN_SCI =(1<<11)
|
||||
|
||||
var/const/CIVILIAN =(1<<2)
|
||||
|
||||
@@ -85,7 +84,6 @@ var/list/medical_positions = list(
|
||||
var/list/science_positions = list(
|
||||
"Research Director",
|
||||
"Scientist",
|
||||
"Geneticist", //Part of both medical and science
|
||||
"Roboticist",
|
||||
"Xenobiologist",
|
||||
"Lab Assistant"
|
||||
|
||||
@@ -79,12 +79,6 @@
|
||||
build_path = /obj/item/weapon/circuitboard/pandemic
|
||||
sort_string = "FAEAA"
|
||||
|
||||
/datum/design/circuit/scan_console
|
||||
name = "DNA machine"
|
||||
id = "scan_console"
|
||||
build_path = /obj/item/weapon/circuitboard/scan_consolenew
|
||||
sort_string = "FAGAA"
|
||||
|
||||
/datum/design/circuit/clonecontrol
|
||||
name = "cloning control console"
|
||||
id = "clonecontrol"
|
||||
|
||||
Reference in New Issue
Block a user