Skip to content

Commit

Permalink
New Varadero CO Survivor (#3799)
Browse files Browse the repository at this point in the history
# About the pull request

Adds a USASF Commander as a CO survivor to New Varadero. The idea is the
commander was visiting the outpost when the xeno infestation started.
Lore and flavor is up for grabs if someone has a better way to make the
role naval.

# Explain why it's good for the game

It's neat.

# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog

:cl: Morrow
add: Added a visiting USASF Commander (CO survivor) to New Varadero
/:cl:
  • Loading branch information
morrowwolf committed Jul 6, 2023
1 parent bae9545 commit b684369
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
40 changes: 40 additions & 0 deletions code/modules/gear_presets/survivors.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1369,3 +1369,43 @@
return
var/shoespath = /obj/item/clothing/shoes/combat
human.equip_to_slot_or_del(new shoespath, WEAR_FEET)

/datum/equipment_preset/survivor/new_varadero/commander
name = "Survivor - USASF Commander"
assignment = "USASF Commander"
skills = /datum/skills/commander
paygrade = "NO5"
idtype = /obj/item/card/id/gold
role_comm_title = "USASF CDR"
flags = EQUIPMENT_PRESET_START_OF_ROUND
access = list(
ACCESS_CIVILIAN_PUBLIC,
ACCESS_CIVILIAN_RESEARCH,
ACCESS_CIVILIAN_ENGINEERING,
ACCESS_CIVILIAN_LOGISTICS,
ACCESS_CIVILIAN_BRIG,
ACCESS_CIVILIAN_MEDBAY,
ACCESS_CIVILIAN_COMMAND,
)

/datum/equipment_preset/survivor/new_varadero/commander/load_gear(mob/living/carbon/human/new_human)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/bridge(new_human), WEAR_BODY)

var/obj/item/clothing/suit/storage/jacket/marine/service/suit = new()
suit.icon_state = "[suit.initial_icon_state]_o"
suit.buttoned = FALSE

var/obj/item/clothing/accessory/ranks/navy/o5/pin = new()
suit.attach_accessory(new_human, pin)

new_human.equip_to_slot_or_del(suit, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full(new_human), WEAR_L_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/notepad(new_human), WEAR_IN_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/tool/pen/fountain(new_human), WEAR_IN_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/med_small_stack(new_human), WEAR_IN_BACK)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911(new_human), WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap(new_human), WEAR_HEAD)
3 changes: 3 additions & 0 deletions maps/new_varadero.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"/datum/equipment_preset/survivor/security/lv",
"/datum/equipment_preset/survivor/colonial_marshal/lv"
],
"CO_survivor_types": [
"/datum/equipment_preset/survivor/new_varadero/commander"
],

"defcon_triggers": [
3300,
Expand Down

0 comments on commit b684369

Please sign in to comment.