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

More Mail to be had #2455

Closed
wants to merge 3 commits into from
Closed
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
37 changes: 32 additions & 5 deletions code/modules/jobs/job_mail.dm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/obj/item/toy/figure/atmos = 5,
)

//BART ENDER
//BARTENDER
/datum/job/bartender
mail_goodies = list(
/obj/item/storage/box/rubbershot = 30,
Expand Down Expand Up @@ -77,6 +77,8 @@

//NSV13
/obj/item/reagent_containers/food/drinks/drinkingglass/doctor_delight = 8,
// it's pretty easy to make, I will make it rarer, but it's not rare enough to warrant removing it..
/obj/item/reagent_containers/hypospray/medipen/atropine = 5,
)

//CAPTAIN
Expand Down Expand Up @@ -283,6 +285,8 @@
//NSV13
/obj/item/paper/fluff/jobs/medical/hippocratic = 15,
/obj/item/reagent_containers/food/drinks/drinkingglass/doctor_delight = 8,
/obj/item/tank/internals/emergency_oxygen/double = 7,
/obj/item/powertool/jaws_of_life = 1,
)

//EXPLORATION CREW
Expand Down Expand Up @@ -346,6 +350,9 @@
/obj/item/toy/figure/hos = 5,
/obj/item/reagent_containers/food/drinks/drinkingglass/quintuple_sec = 4,
/obj/item/megaphone/command/rudiger = 4,
/obj/item/clothing/shoes/jackboots/fast = 2,
// You want it don't you?
/obj/item/melee/classic_baton/police/telescopic = 1,
BlueHNT marked this conversation as resolved.
Show resolved Hide resolved
)

//JANITOR
Expand All @@ -359,7 +366,9 @@
/obj/item/grenade/clusterbuster/cleaner = 2,

//NSV13
/obj/item/clothing/head/kitty = 5, // he already has the maid outfit..
/obj/item/toy/figure/janitor = 5,
/obj/item/trash/syndi_cakes = 1, // the best trash can
)

//LAWYER
Expand Down Expand Up @@ -407,6 +416,8 @@
//NSV13
/obj/item/reagent_containers/food/drinks/drinkingglass/doctor_delight = 8,
/obj/item/toy/figure/md = 5,
/obj/item/reagent_containers/pill/patch/synthflesh = 1,

)

//MIME
Expand All @@ -415,9 +426,10 @@
/obj/item/reagent_containers/food/snacks/baguette/mime = 15,
/obj/item/reagent_containers/food/snacks/store/cheesewheel = 10,
/obj/item/reagent_containers/food/drinks/bottle/bottleofnothing = 10,
/obj/item/book/mimery = 2,
// annoy them silent boy
/obj/item/book/mimery = 4,
//when you thought it could get worse...
/obj/item/book/granter/spell/mimery_blockade = 1,
/obj/item/book/granter/spell/mimery_blockade = 2,

//NSV13
/obj/item/toy/dummy = 5,
Expand Down Expand Up @@ -447,6 +459,8 @@

//NSV13
/obj/item/toy/figure/qm = 5,
// the chef has nothing on your cargo pizza (it's just pizza)
/obj/item/bombcore/miniature/pizza/bomb = 1,
/obj/structure/mecha_wreckage/ripley = 1,
)

Expand Down Expand Up @@ -476,12 +490,13 @@
//eh.
/obj/item/clothing/glasses/hud/diagnostic/sunglasses = 7,
/obj/item/borg/upgrade/rename = 5,
//do anyone ever use this???
//do anyone ever use this??? Yes.
/obj/item/modular_computer/tablet/preset/advanced = 5,

//NSV13
/obj/item/toy/figure/borg = 5,
/obj/item/toy/figure/roboticist = 5,
/obj/item/stack/sheet/plasteel/five = 2,
/obj/structure/mecha_wreckage/phazon = 1,
)

Expand All @@ -495,6 +510,8 @@

//NSV13
/obj/item/toy/figure/scientist = 5,
// Christmas.
/obj/item/slime_extract/rainbow = 1,
)

//SECURITY OFFICER
Expand All @@ -506,12 +523,18 @@
/obj/item/assembly/flash/handheld = 7,
/obj/effect/spawner/mail/rdonut = 5,
//we don't have boomerangs here, ask ausstation
/obj/item/melee/classic_baton/police/telescopic = 1,
/obj/item/melee/classic_baton/police/telescopic = 2,

//NSV13
/obj/item/reagent_containers/food/drinks/drinkingglass/quadruple_sec = 8,
/obj/item/toy/figure/secofficer = 5,
/obj/item/reagent_containers/food/drinks/drinkingglass/quintuple_sec = 4,
// They're mocking you boy
/obj/item/clothing/under/syndicate/tacticool = 8,
// he will buy the SWAT pack anyway
/obj/item/combatgloves = 2,
// Don't let the warden know
/obj/item/ammo_box/magazine/glock/lethal = 1,
)

//SHAFT MINER
Expand Down Expand Up @@ -549,6 +572,8 @@
//NSV13
/obj/item/reagent_containers/food/drinks/drinkingglass/screwdrivercocktail = 8,
/obj/item/toy/figure/engineer = 5,
/obj/item/powertool/hand_drill = 2,
/obj/item/powertool/jaws_of_life = 1,
)

//VIROLOGIST
Expand Down Expand Up @@ -587,6 +612,8 @@

//NSV13
/obj/item/dance_trance = 20,
// go on.. shoot it
/obj/item/gun/ballistic/revolver/reverse = 1,
)

//WARDEN
Expand Down
Loading