diff --git a/code/modules/cargo/bounties/assistant.dm b/code/modules/cargo/bounties/assistant.dm index 5601dfe4..613f9872 100644 --- a/code/modules/cargo/bounties/assistant.dm +++ b/code/modules/cargo/bounties/assistant.dm @@ -236,3 +236,10 @@ reward = 2250 required_count = 5 wanted_types = list(/obj/structure/chair/plaswood) + +/datum/bounty/item/assistant/condom + name = "Filled Condom" + description = "Something wack is happening at Central Command, and now they requested some filled condoms?" + reward = 1150 + required_count = 5 + wanted_types = list(/obj/item/condom/filled) \ No newline at end of file diff --git a/code/modules/cargo/exports/lewd.dm b/code/modules/cargo/exports/lewd.dm new file mode 100644 index 00000000..bbd9110e --- /dev/null +++ b/code/modules/cargo/exports/lewd.dm @@ -0,0 +1,7 @@ + +//Condom +/datum/export/gear/condom + cost = 150 + unit_name = "filled condom" + export_types = list(/obj/item/condom/filled) + include_subtypes = TRUE diff --git a/tgstation.dme b/tgstation.dme index b2866276..10c1bc8a 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -1554,6 +1554,7 @@ #include "code\modules\cargo\exports\food_wine.dm" #include "code\modules\cargo\exports\gear.dm" #include "code\modules\cargo\exports\large_objects.dm" +#include "code\modules\cargo\exports\lewd.dm" #include "code\modules\cargo\exports\manifest.dm" #include "code\modules\cargo\exports\materials.dm" #include "code\modules\cargo\exports\organs_robotics.dm"