mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-25 05:36:47 +01:00
14 lines
424 B
Plaintext
14 lines
424 B
Plaintext
/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/genital_equipment/condom)
|
|
|
|
/datum/bounty/item/assistant/condom/applies_to(obj/O)
|
|
if(!..())
|
|
return FALSE
|
|
var/obj/item/genital_equipment/condom/T = O
|
|
return T.reagents.total_volume > 0
|
|
|