Skip to content

Commit

Permalink
[MODULAR] Adds various chaplain drip to the loadout (#668)
Browse files Browse the repository at this point in the history
* Adds chaplain stuff to loadout

Adds chaplain vendor items to the loadout, not joblocked. Mostly.

* Only one portion of pasta, please
  • Loading branch information
burgerenergy authored and FFMirrorBot committed Feb 5, 2024
1 parent dc85592 commit fa36a02
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
12 changes: 12 additions & 0 deletions modular_nova/modules/loadouts/loadout_items/loadout_datum_heads.dm
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,18 @@ GLOBAL_LIST_INIT(loadout_helmets, generate_loadout_items(/datum/loadout_item/hea
name = "Blastwave Peaked Cap"
item_path = /obj/item/clothing/head/blastwave/officer

/datum/loadout_item/head/chap_nunh
name = "Nun's Hood"
item_path = /obj/item/clothing/head/chaplain/nun_hood

/datum/loadout_item/head/chap_kippah
name = "Jewish Kippah"
item_path = /obj/item/clothing/head/chaplain/kippah

/datum/loadout_item/head/chap_nunv
name = "Nun's Veil"
item_path = /obj/item/clothing/head/chaplain/habit_veil

/*
* COWBOY
*/
Expand Down
10 changes: 10 additions & 0 deletions modular_nova/modules/loadouts/loadout_items/loadout_datum_neck.dm
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,16 @@ GLOBAL_LIST_INIT(loadout_necks, generate_loadout_items(/datum/loadout_item/neck)
item_path = /obj/item/clothing/neck/mantle/capmantle
restricted_roles = list(JOB_CAPTAIN)

/datum/loadout_item/neck/mantle_chap
name = "Bishop's Cloak"
item_path = /obj/item/clothing/neck/chaplain
restricted_roles = list(JOB_CHAPLAIN)

/datum/loadout_item/neck/mantle_bchap
name = "Bishop's Cloak (Black)"
item_path = /obj/item/clothing/neck/chaplain/black
restricted_roles = list(JOB_CHAPLAIN)

/*
* MISC
*/
Expand Down
28 changes: 28 additions & 0 deletions modular_nova/modules/loadouts/loadout_items/loadout_datum_suit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -736,3 +736,31 @@ GLOBAL_LIST_INIT(loadout_exosuits, generate_loadout_items(/datum/loadout_item/su
/datum/loadout_item/suit/heart_sweater
name = "Colourable Heart Sweater"
item_path = /obj/item/clothing/suit/heart_sweater

/*
* CHAPLAIN
*/

/datum/loadout_item/suit/chap_nun
name = "Nun's Habit"
item_path = /obj/item/clothing/suit/chaplainsuit/nun

/datum/loadout_item/suit/chap_holiday
name = "Chaplain's Holiday Robe"
item_path = /obj/item/clothing/suit/chaplainsuit/holidaypriest

/datum/loadout_item/suit/chap_brownmonk
name = "Monk's Brown Habit"
item_path = /obj/item/clothing/suit/hooded/chaplainsuit/monkhabit

/datum/loadout_item/suit/chap_eastmonk
name = "Eastern Monk's Robe"
item_path = /obj/item/clothing/suit/chaplainsuit/monkrobeeast

/datum/loadout_item/suit/chap_shrinehand
name = "Shrinehand Robe"
item_path = /obj/item/clothing/suit/chaplainsuit/shrinehand

/datum/loadout_item/suit/chap_blackmonk
name = "Monk's Black Habit"
item_path = /obj/item/clothing/suit/chaplainsuit/habit

0 comments on commit fa36a02

Please sign in to comment.