Skip to content

Commit

Permalink
excellent test
Browse files Browse the repository at this point in the history
  • Loading branch information
QuickLode committed Oct 24, 2023
1 parent df97104 commit fa487f4
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 10 deletions.
8 changes: 5 additions & 3 deletions code/datums/map_config.dm
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,14 @@
/datum/equipment_preset/synth/survivor/janitor_synth,
/datum/equipment_preset/synth/survivor/chef_synth,
/datum/equipment_preset/synth/survivor/teacher_synth,
/datum/equipment_preset/synth/survivor/freelancer_synth,
/datum/equipment_preset/synth/survivor/trucker_synth,
/datum/equipment_preset/synth/survivor/bartender_synth,
/datum/equipment_preset/synth/survivor/detective_synth,
/datum/equipment_preset/synth/survivor/cmb_synth,
/datum/equipment_preset/synth/survivor/security_synth,
/datum/equipment_preset/synth/survivor/protection_synth,
/datum/equipment_preset/synth/survivor/corporate_synth,
/datum/equipment_preset/synth/survivor/wy/security_synth,
/datum/equipment_preset/synth/survivor/wy/protection_synth,
/datum/equipment_preset/synth/survivor/wy/corporate_synth,
/datum/equipment_preset/synth/survivor/radiation_synth,
)

Expand Down
2 changes: 1 addition & 1 deletion code/modules/clothing/under/marine_uniform.dm
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@
worn_state = "freelancer_uniform"
min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT
has_sensor = UNIFORM_NO_SENSORS
suit_restricted = list(/obj/item/clothing/suit/storage/marine/faction/freelancer, /obj/item/clothing/suit/storage/webbing)
suit_restricted = list(/obj/item/clothing/suit/storage/marine/faction/freelancer, /obj/item/clothing/suit/storage/webbing, /obj/item/clothing/suit/storage/utility_vest)

//=========================//Dutch Dozen\\================================\\
Expand Down
25 changes: 19 additions & 6 deletions code/modules/gear_presets/synths.dm
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,18 @@

/datum/equipment_preset/synth/survivor/New()
. = ..()
access = get_access(ACCESS_LIST_COLONIAL_ALL) + get_region_accesses(2) + get_region_accesses(4) + ACCESS_MARINE_RESEARCH + ACCESS_WY_GENERAL//Access to civillians stuff + medbay stuff + engineering stuff + research + admin building and faxes
access = get_access(ACCESS_LIST_COLONIAL_ALL) + get_region_accesses(2) + get_region_accesses(4) + ACCESS_MARINE_RESEARCH //Access to civillians stuff + medbay stuff + engineering stuff + research

/datum/equipment_preset/synth/survivor/pmc/New()
. = ..()
access = get_access(ACCESS_LIST_WY_PMC)

/datum/equipment_preset/synth/survivor/wy/New()
. = ..()
access = get_access(ACCESS_LIST_COLONIAL_ALL) + get_region_accesses(2) + get_region_accesses(4) + ACCESS_MARINE_RESEARCH + ACCESS_WY_GENERAL //admin building and wy fax machines




/datum/equipment_preset/synth/survivor/load_gear(mob/living/carbon/human/new_human)
for(var/equipment in equipment_to_spawn)
Expand Down Expand Up @@ -300,15 +311,16 @@
name = "Survivor - Synthetic - Freelancer Synth"
equipment_to_spawn = list(
WEAR_HEAD = /obj/item/clothing/head/welding,
WEAR_FACE = /obj/item/clothing/mask/rebreather/scarf,
WEAR_BODY = /obj/item/clothing/under/marine/veteran/freelancer,
WEAR_BACK = /obj/item/storage/backpack/lightpack,
WEAR_IN_BACK = /obj/item/tool/weldpack/minitank,
WEAR_JACKET = /obj/item/clothing/suit/storage/webbing,
WEAR_JACKET = /obj/item/clothing/suit/storage/utility_vest,
WEAR_IN_JACKET = /obj/item/explosive/grenade/smokebomb,
WEAR_WAIST = /obj/item/storage/belt/marine,
WEAR_HANDS = /obj/item/clothing/gloves/marine/veteran,
WEAR_R_HAND = /obj/item/storage/pouch/flare/full,
WEAR_FEET = /obj/item/clothing/shoes/marine/knife,
WEAR_FEET = /obj/item/clothing/shoes/marine/upp,
WEAR_L_HAND = /obj/item/storage/large_holster/katana/full
)

Expand Down Expand Up @@ -371,6 +383,7 @@
WEAR_L_EAR = /obj/item/device/radio/headset/distress/CMB/limited,
WEAR_EYES = /obj/item/clothing/glasses/sunglasses/sechud,
WEAR_BODY = /obj/item/clothing/under/CM_uniform,
WEAR_ACCESSORY = /obj/item/clothing/accessory/holobadge/cord,
WEAR_BACK = /obj/item/storage/backpack/satchel/sec,
WEAR_IN_BACK = /obj/item/device/camera,
WEAR_IN_BACK = /obj/item/device/taperecorder,
Expand All @@ -385,7 +398,7 @@

survivor_variant = SECURITY_SURVIVOR

/datum/equipment_preset/synth/survivor/security_synth
/datum/equipment_preset/synth/survivor/wy/security_synth
name = "Survivor - Synthetic - Corporate Security Synth"
idtype = /obj/item/card/id/silver/cl
role_comm_title = "WY Syn"
Expand All @@ -406,7 +419,7 @@

survivor_variant = SECURITY_SURVIVOR

/datum/equipment_preset/synth/survivor/protection_synth
/datum/equipment_preset/synth/survivor/wy/protection_synth
name = "Survivor - Synthetic - Corporate Protection Synth"
idtype = /obj/item/card/id/pmc
role_comm_title = "WY Syn"
Expand All @@ -430,7 +443,7 @@

survivor_variant = SECURITY_SURVIVOR

/datum/equipment_preset/synth/survivor/corporate_synth
/datum/equipment_preset/synth/survivor/wy/corporate_synth
name = "Survivor - Synthetic - Corporate Clerical Synth"
idtype = /obj/item/card/id/data
role_comm_title = "WY Syn"
Expand Down

0 comments on commit fa487f4

Please sign in to comment.