mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-28 07:20:09 +01:00
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:
@@ -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
|
||||
Reference in New Issue
Block a user