diff --git a/GainStation13/code/modules/cargo/packs.dm b/GainStation13/code/modules/cargo/packs.dm index 8ad82555fb..5c153e5aff 100644 --- a/GainStation13/code/modules/cargo/packs.dm +++ b/GainStation13/code/modules/cargo/packs.dm @@ -31,9 +31,24 @@ crate_name = "strange seeds crate" crate_type = /obj/structure/closet/crate/hydroponics +/datum/supply_pack/misc/stripperpole //oldcode port + name = "Stripper Pole Crate" + desc = "No private bar is complete without a stripper pole, show off the goods! Comes with a ready-to-assemble stripper pole, and a complementary wrench to get things set up!" + cost = 3550 + contains = list(/obj/item/polepack, + /obj/item/wrench) + crate_name = "stripper pole crate" + /datum/supply_pack/critter/fennec //ported from CHOMPstation2 name = "Fennec Crate" desc = "Why so ears?" cost = 5000 contains = list(/mob/living/simple_animal/pet/fox/fennec) crate_name = "fennec crate" + +/datum/supply_pack/vending/wardrobes/clothing //existing game item not in cargo for some reason + name = "ClothesMate Supply Crate" + desc = "ClothesMate missing your favorite outfit? Solve that issue today with this autodrobe refill." + cost = 1500 + contains = list(/obj/item/vending_refill/clothing) + crate_name = "clothesmate supply crate" diff --git a/tgstation.dme b/tgstation.dme index 5e428c8471..80e99c4284 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -4158,6 +4158,7 @@ #include "hyperstation\code\obj\decal.dm" #include "hyperstation\code\obj\fleshlight.dm" #include "hyperstation\code\obj\kinkyclothes.dm" +#include "hyperstation\code\obj\pole.dm" #include "hyperstation\code\obj\sizeitems.dm" #include "hyperstation\code\obj\stargate_clothing.dm" #include "hyperstation\code\obj\ZaoCorp\hat.dm"