diff --git a/code/game/machinery/deployable.dm b/code/game/machinery/deployable.dm index 2e78d72b..f4154eac 100644 --- a/code/game/machinery/deployable.dm +++ b/code/game/machinery/deployable.dm @@ -191,6 +191,17 @@ /obj/item/grenade/barrier/ui_action_click(mob/user) toggle_mode(user) +/obj/item/grenade/secbed + name = "security bed grenade" + desc = "A nice red and black pet bed, now in a compact, throwable package! No more wrestling entire beds out of vending machines!" + icon = 'icons/obj/grenade.dmi' + icon_state = "flashbang" + item_state = "flashbang" + +/obj/item/grenade/secbed/prime() + new /obj/structure/bed/secbed(get_turf(src.loc)) + qdel(src) + #undef SINGLE #undef VERTICAL diff --git a/code/modules/vending/security.dm b/code/modules/vending/security.dm index c9e174ef..03b67a3c 100644 --- a/code/modules/vending/security.dm +++ b/code/modules/vending/security.dm @@ -24,7 +24,7 @@ /obj/item/storage/belt/slut = 5, /obj/item/clothing/mask/gas/sechailer/slut = 5, /obj/item/bdsm_whip/ridingcrop = 3, - /obj/structure/bed/secbed = 3, + /obj/item/grenade/secbed = 3, /obj/item/dildo/flared/gigantic = 1) premium = list(/obj/item/coin/antagtoken = 1, /obj/item/clothing/head/helmet/blueshirt = 1,