Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

why do they call it a load out when you load in the #145

Merged
merged 5 commits into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion modular_doppler/loadout_categories/categories/belts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,13 @@
name = "Satchel Med-kit"
item_path = /obj/item/storage/backpack/duffelbag/deforest_medkit

/datum/loadout_item/belts/synth_repair
name = "Android Repair Kit"
item_path = /obj/item/storage/medkit/robotic_repair/stocked

/datum/loadout_item/belts/frontier_med
name = "Frontier Med-kit"
item_path = /obj/item/storage/medkit/frontier
item_path = /obj/item/storage/medkit/frontier/stocked

/datum/loadout_item/belts/deforest_paramed
name = "Satchel Tech-kit"
Expand Down
12 changes: 12 additions & 0 deletions modular_doppler/loadout_categories/categories/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,10 @@
name = "Messy Ian Shirt"
item_path = /obj/item/clothing/suit/costume/wellworn_shirt/messy/graphic/ian

/datum/loadout_item/suit/dagger_mantle
name = "'Dagger' Designer Mantle"
item_path = /obj/item/clothing/suit/dagger_mantle

/*
* HAWAIIAN
*/
Expand All @@ -319,6 +323,14 @@
name = "Hawaiian Shirt"
item_path = /obj/item/clothing/suit/costume/hawaiian

/*
* MAID OUT WITH THE FIT
*/

/datum/loadout_item/suit/maid_costume
name = "Maid Costume"
item_path = /obj/item/clothing/under/costume/maid

/*
* MISC
*/
Expand Down
4 changes: 4 additions & 0 deletions modular_doppler/loadout_categories/categories/gloves.dm
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,7 @@
/datum/loadout_item/gloves/translationgloves
name = "Translation Gloves"
item_path = /obj/item/clothing/gloves/radio

/datum/loadout_item/gloves/maid_arm_covers
name = "Maid Costume"
item_path = /obj/item/clothing/gloves/maid
4 changes: 4 additions & 0 deletions modular_doppler/loadout_categories/categories/heads.dm
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,7 @@
/datum/loadout_item/head/bow_sweet
name = "Bow (Sweet)"
item_path = /obj/item/clothing/head/bow/sweet

/datum/loadout_item/head/maid_headband
name = "Maid Headband"
item_path = /obj/item/clothing/head/costume/maidheadband
24 changes: 24 additions & 0 deletions modular_doppler/loadout_categories/categories/neck.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/datum/loadout_item/neck/colonial_cloak
name = "Colonial Cloak"
item_path = /obj/item/clothing/neck/cloak/colonial

/datum/loadout_item/neck/robe_cape
name = "Robe Cape"
item_path = /obj/item/clothing/neck/robe_cape

/datum/loadout_item/neck/long_cape
name = "Long Cape"
item_path = /obj/item/clothing/neck/long_cape

/datum/loadout_item/neck/wide_cape
name = "Wide Cape"
item_path = /obj/item/clothing/neck/wide_cape

/datum/loadout_item/neck/ranger_poncho
name = "Ranger Poncho"
item_path = /obj/item/clothing/neck/ranger_poncho

/datum/loadout_item/neck/face_scarf
name = "Face Scarf"
item_path = /obj/item/clothing/neck/face_scarf

/datum/loadout_item/neck/maid_neck_cover
name = "Maid Neck Cover"
item_path = /obj/item/clothing/neck/maid_neck_cover
2 changes: 1 addition & 1 deletion modular_doppler/loadout_categories/categories/pockets.dm
Original file line number Diff line number Diff line change
Expand Up @@ -238,4 +238,4 @@

/datum/loadout_item/pocket_items/civil_defense
name = "Civil Defense Med-kit"
item_path = /obj/item/storage/medkit/civil_defense
item_path = /obj/item/storage/medkit/civil_defense/stocked
Loading