diff --git a/hyperstation/code/obj/condom.dm b/hyperstation/code/obj/condom.dm index 43048f44..f7eea6bb 100644 --- a/hyperstation/code/obj/condom.dm +++ b/hyperstation/code/obj/condom.dm @@ -16,8 +16,10 @@ obj/item/condom/Initialize() obj/item/condom/update_icon() switch(reagents.total_volume) - if(0 to 100) + if(0 to 49) icon_state = "b_condom_inflated" + if(50 to 100) + icon_state = "b_condom_inflated_med" if(101 to 249) icon_state = "b_condom_inflated_large" if(250 to 300) diff --git a/hyperstation/code/obj/rewards.dm b/hyperstation/code/obj/rewards.dm index 289fcec5..38c1acb3 100644 --- a/hyperstation/code/obj/rewards.dm +++ b/hyperstation/code/obj/rewards.dm @@ -74,3 +74,18 @@ /obj/item/storage/pill_bottle/heat/PopulateContents() for(var/i in 1 to 7) new /obj/item/reagent_containers/pill/heat(src) + +/obj/item/storage/pill_bottle/betablock + name = "Anaphrodisiacs pill bottle" + desc = "a bottle of pills from a sketchy pharmaceutical corporation. at the bottom of the label is a small red S." + +/obj/item/reagent_containers/pill/betablock + name = "Anaphrodisiac pill" + desc = "Prescribed to races that have trouble keeping their urges in check." + icon_state = "pill5" + list_reagents = list(/datum/reagent/drug/anaphrodisiac = 10) + roundstart = 1 + +/obj/item/storage/pill_bottle/betablock/PopulateContents() + for(var/i in 1 to 7) + new /obj/item/reagent_containers/pill/betablock(src) diff --git a/hyperstation/icons/obj/condom.dmi b/hyperstation/icons/obj/condom.dmi index 0646484a..7d8db7a6 100644 Binary files a/hyperstation/icons/obj/condom.dmi and b/hyperstation/icons/obj/condom.dmi differ