•Contraband supply packs now contain the DreadoryCobullshit cigarettes.

Pete, read the comments, the contraband crate is supposed to be a random-assortment-of-goodies pack, and will gradually add more contraband to it.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3573 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
polyxenitopalidou@gmail.com
2012-05-10 18:11:21 +00:00
parent d15ce2c40d
commit 98eca2a4a6
+6 -21
View File
@@ -580,12 +580,12 @@
..()
/datum/supply_packs/poster
contains = list("/obj/item/weapon/contraband/poster",) //We randomly pick 5 items from this list through the constructor, look below
name = "Poster crate"
/datum/supply_packs/contraband
contains = list("/obj/item/weapon/contraband/poster","/obj/item/weapon/cigpacket/dromedaryco") //We randomly pick 5 items from this list through the constructor, look below
name = "Contraband crate"
cost = 30
containertype = "/obj/structure/closet/crate/poster"
containername = "Poster crate"
containertype = "/obj/structure/closet/crate/contraband"
containername = "Contraband crate"
contraband = 1
/datum/supply_packs/poster/New()
@@ -593,19 +593,4 @@
for(var/i = 0,i<5,i++)
tempContains += pick(contains)
src.contains = tempContains
..()
/datum/supply_packs/cigarettes
contains = list("/obj/item/weapon/cigpacket/dromedaryco",
"/obj/item/weapon/cigpacket/dromedaryco",
"/obj/item/weapon/cigpacket/dromedaryco",
"/obj/item/weapon/cigpacket/dromedaryco",
"/obj/item/weapon/cigpacket/dromedaryco",
"/obj/item/weapon/cigpacket/dromedaryco",)
name = "DromedaryCo cigarettes crate"
cost = 15
containertype = "/obj/structure/closet/crate/cigarettes"
containername = "DromedaryCo cigarettes crate"
contraband = 1
//SUPPLY PACKS
..()