Skip to content
Draft
Show file tree
Hide file tree
Changes from 10 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
61 changes: 61 additions & 0 deletions modular_darkpack/modules/jobs/code/_alt_job_outfits.dm

@chazzyjazzy chazzyjazzy Jul 22, 2026

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the file isn't ticked

its not apart of tgstation.dme

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops, ticked. Let's see if it works.

Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
// TOWER ROLES BEGIN HERE

/datum/outfit/job/towerwork/towercleaner
name = "Tower Employee (Tower Cleaner)"
uniform = /obj/item/clothing/under/vampire/janitor
suit = null
shoes = /obj/item/clothing/shoes/vampire/jackboots/work
gloves = /obj/item/clothing/gloves/vampire/cleaning
r_pocket = /obj/item/vamp/keys/camarilla/ghoul
l_pocket = /obj/item/smartphone/tower_employee
backpack_contents = list(/obj/item/card/credit=1)

/datum/outfit/job/towerwork/towerassistant
name = "Tower Employee (Tower Assistant)"
uniform = /obj/item/clothing/under/vampire/office
gloves = null
suit = null
r_pocket = /obj/item/vamp/keys/camarilla/ghoul
l_pocket = /obj/item/smartphone/tower_employee
backpack_contents = list(/obj/item/passport=1, /obj/item/cockclock=1, /obj/item/flashlight=1, /obj/item/card/credit=1, /obj/item/clipboard=1, /obj/item/pen=1, /obj/item/folder/blue=1)

/datum/outfit/job/towerwork/towersecurityguard
name = "Tower Employee (Tower Security Guard)"
uniform = /obj/item/clothing/under/vampire/guard
shoes = /obj/item/clothing/shoes/vampire
gloves = null
suit = null
belt = /obj/item/gun/ballistic/automatic/vampire/m1911
r_pocket = /obj/item/vamp/keys/camarilla/ghoul
l_pocket = /obj/item/smartphone/tower_employee
backpack_contents = list(/obj/item/flashlight=1, /obj/item/card/credit=1,/obj/item/food/vampire/donut=5, /obj/item/cockclock=1)

/datum/outfit/job/towerwork/towerpersonaldriver
name = "Tower Employee (Tower Personal Driver)"
uniform = /obj/item/clothing/under/vampire/suit
suit = null
head = /obj/item/clothing/head/vampire/chauffeur
gloves = /obj/item/clothing/gloves/vampire/white
r_pocket = /obj/item/vamp/keys/camarilla/ghoul
l_pocket = /obj/item/smartphone/tower_employee
backpack_contents = list(/obj/item/passport=1, /obj/item/cockclock=1, /obj/item/flashlight=1, /obj/item/card/credit=1, /obj/item/clipboard=1, /obj/item/pen=1, /obj/item/folder/red=1)

/datum/outfit/job/towerwork/towerpersonaldriver/pre_equip(mob/living/carbon/human/H)
..()
if(H.gender == FEMALE)
uniform = /obj/item/clothing/under/vampire/suit/female

/datum/outfit/job/towerwork/towerpersonalattendant
name = "Tower Employee (Tower Personal Attendant)"
uniform = /obj/item/clothing/under/vampire/suit
r_pocket = /obj/item/vamp/keys/camarilla/ghoul
l_pocket = /obj/item/smartphone/tower_employee
backpack_contents = list(/obj/item/passport=1, /obj/item/cockclock=1, /obj/item/flashlight=1, /obj/item/card/credit=1, /obj/item/clipboard=1, /obj/item/pen=1, /obj/item/folder/red=1)

/datum/outfit/job/towerwork/towerpersonalattendant/pre_equip(mob/living/carbon/human/H)
..()
if(H.gender == FEMALE)
uniform = /obj/item/clothing/under/vampire/suit/female
shoes = /obj/item/clothing/shoes/vampire/heels

// TOWER ROLES END HERE
2 changes: 1 addition & 1 deletion modular_darkpack/modules/jobs/code/anarchs/emissary.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
)

known_contacts = list("Baron", "Bouncer", "Emissary", "Sweeper", "Prince", "Sheriff")
allowed_clans = list(VAMPIRE_CLAN_DAUGHTERS_OF_CACOPHONY, VAMPIRE_CLAN_TRUE_BRUJAH, VAMPIRE_CLAN_BRUJAH, VAMPIRE_CLAN_NOSFERATU, VAMPIRE_CLAN_GANGREL, VAMPIRE_CLAN_CITY_GANGREL, VAMPIRE_CLAN_TREMERE, VAMPIRE_CLAN_TOREADOR, VAMPIRE_CLAN_MALKAVIAN, VAMPIRE_CLAN_BANU_HAQIM, VAMPIRE_CLAN_TZIMISCE, VAMPIRE_CLAN_CAITIFF, VAMPIRE_CLAN_VENTRUE, VAMPIRE_CLAN_LASOMBRA, VAMPIRE_CLAN_GARGOYLE, VAMPIRE_CLAN_KIASYD, VAMPIRE_CLAN_CAPPADOCIAN, VAMPIRE_CLAN_SETITE, VAMPIRE_CLAN_HEALER_SALUBRI, VAMPIRE_CLAN_SAMEDI, VAMPIRE_CLAN_NAGARAJA)
allowed_clans = list(VAMPIRE_CLAN_DAUGHTERS_OF_CACOPHONY, VAMPIRE_CLAN_TRUE_BRUJAH, VAMPIRE_CLAN_BRUJAH, VAMPIRE_CLAN_NOSFERATU, VAMPIRE_CLAN_GANGREL, VAMPIRE_CLAN_CITY_GANGREL, VAMPIRE_CLAN_TREMERE, VAMPIRE_CLAN_TOREADOR, VAMPIRE_CLAN_MALKAVIAN, VAMPIRE_CLAN_BANU_HAQIM, VAMPIRE_CLAN_TZIMISCE, VAMPIRE_CLAN_CAITIFF, VAMPIRE_CLAN_VENTRUE, VAMPIRE_CLAN_LASOMBRA, VAMPIRE_CLAN_GARGOYLE,VAMPIRE_CLAN_KIASYD, VAMPIRE_CLAN_CAPPADOCIAN, VAMPIRE_CLAN_SETITE, VAMPIRE_CLAN_HEALER_SALUBRI, VAMPIRE_CLAN_SAMEDI, VAMPIRE_CLAN_NAGARAJA)
Comment thread
SixplyDev marked this conversation as resolved.
Outdated
allowed_splats = list(SPLAT_KINDRED)
description = "You are a diplomat for the anarchs. Make deals, keep the peace, all through words, not violence. But the latter may come to pass if the former fails."
minimal_masquerade = 2
Expand Down
Loading