Minor cigarette fixes, and added the DromedaryCo cigarette crate as a new contraband crate.

Also added WJohnston's new rolled up poster sprite.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3566 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
petethegoat@gmail.com
2012-05-07 16:45:08 +00:00
parent e89e7acdb3
commit 6e2c65183b
4 changed files with 38 additions and 16 deletions
+20 -7
View File
@@ -567,10 +567,10 @@
"/obj/item/clothing/head/collectable/xenom",
"/obj/item/clothing/head/collectable/xenom",
"/obj/item/clothing/head/collectable/petehat")
name = "Collectable Hat Crate!"
name = "Collectable hat crate!"
cost = 200
containertype = "/obj/structure/closet/crate/hat"
containername = "Collectable Hats Crate! Brought to you by Bass.inc!"
containername = "Collectable hats crate! Brought to you by Bass.inc!"
/datum/supply_packs/hats/New()
var/list/tempContains = list()
@@ -580,19 +580,32 @@
..()
/datum/supply_packs/contraband
/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 = "Contraband Crate"
name = "Poster crate"
cost = 30
containertype = "/obj/structure/closet/crate/contraband"
containername = "Contraband crate"
containertype = "/obj/structure/closet/crate/poster"
containername = "Poster crate"
contraband = 1
/datum/supply_packs/contraband/New()
/datum/supply_packs/poster/New()
var/list/tempContains = list()
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