Merge branch 'master' of https://github.com/Citadel-Station-13/Citadel-Station-13 into tgui-alerts-and-what-not
This commit is contained in:
@@ -169,14 +169,21 @@
|
||||
/obj/item/clothing/mask/gas/mime/sexy,
|
||||
/obj/item/clothing/under/rank/civilian/mime/sexy)
|
||||
|
||||
/obj/effect/spawner/bundle/crate
|
||||
var/pickone = FALSE
|
||||
|
||||
/obj/effect/spawner/bundle/crate/Initialize(mapload)
|
||||
SHOULD_CALL_PARENT(FALSE)
|
||||
if(items && items.len)
|
||||
var/turf/T = get_turf(src)
|
||||
var/obj/structure/closet/LC = locate(/obj/structure/closet) in T
|
||||
if(LC)
|
||||
for(var/path in items)
|
||||
new path(LC)
|
||||
if(pickone)
|
||||
var/tospawn = pick(items)
|
||||
new tospawn(LC)
|
||||
else
|
||||
for(var/path in items)
|
||||
new path(LC)
|
||||
return INITIALIZE_HINT_QDEL
|
||||
|
||||
/obj/effect/spawner/bundle/crate/mosin
|
||||
@@ -192,3 +199,29 @@
|
||||
/obj/item/gun/ballistic/automatic/surplus,
|
||||
/obj/item/ammo_box/magazine/m10mm/rifle
|
||||
)
|
||||
|
||||
/obj/effect/spawner/bundle/crate/levergun
|
||||
name = "lever-action rifle spawner"
|
||||
items = list(
|
||||
/obj/item/gun/ballistic/shotgun/leveraction,
|
||||
/obj/item/ammo_box/c38/pouch
|
||||
)
|
||||
|
||||
/obj/effect/spawner/bundle/crate/cowboyhat
|
||||
name = "cowboy hat spawner"
|
||||
pickone = TRUE
|
||||
items = list(
|
||||
/obj/item/clothing/head/cowboyhat,
|
||||
/obj/item/clothing/head/cowboyhat/black,
|
||||
/obj/item/clothing/head/cowboyhat/white,
|
||||
/obj/item/clothing/head/cowboyhat/pink,
|
||||
/obj/item/clothing/head/cowboyhat/sec
|
||||
)
|
||||
|
||||
/obj/effect/spawner/bundle/crate/cowboyboots
|
||||
name = "cowboy boots spawner"
|
||||
pickone = TRUE
|
||||
items = list(
|
||||
/obj/item/clothing/shoes/cowboyboots,
|
||||
/obj/item/clothing/shoes/cowboyboots/black
|
||||
)
|
||||
|
||||
@@ -300,6 +300,17 @@ CIGARETTE PACKETS ARE IN FANCY.DM
|
||||
desc = "A Xeno Filtered brand cigarette."
|
||||
list_reagents = list (/datum/reagent/drug/nicotine = 20, /datum/reagent/medicine/regen_jelly = 15, /datum/reagent/drug/krokodil = 4)
|
||||
|
||||
/obj/item/clothing/mask/cigarette/dart
|
||||
name = "fat dart"
|
||||
desc = "Chuff back this fat dart"
|
||||
icon_state = "bigoff"
|
||||
icon_on = "bigon"
|
||||
icon_off = "bigoff"
|
||||
w_class = WEIGHT_CLASS_BULKY
|
||||
smoketime = 10000
|
||||
chem_volume = 50
|
||||
list_reagents = list(/datum/reagent/drug/nicotine = 15)
|
||||
|
||||
// Rollies.
|
||||
|
||||
/obj/item/clothing/mask/cigarette/rollie
|
||||
|
||||
Reference in New Issue
Block a user