Adding the new cigarettes and tobacco in the loadout. (#7764)

This commit is contained in:
Wowzewow (Wezzy)
2019-12-26 01:34:30 +08:00
committed by Werner
parent 8a2ee318fa
commit cb12b6db1c
5 changed files with 136 additions and 38 deletions

View File

@@ -1,35 +1,90 @@
/datum/gear/smokingpipe
display_name = "pipe, smoking"
path = /obj/item/clothing/mask/smokable/pipe
/datum/gear/cornpipe
display_name = "pipe, corn"
path = /obj/item/clothing/mask/smokable/pipe/cobpipe
/datum/gear/matchbook
/datum/gear/smoking
display_name = "matchbook"
path = /obj/item/storage/box/matches
sort_category = "Smoking"
/datum/gear/zippo
/datum/gear/smoking/zippo
display_name = "zippo"
path = /obj/item/flame/lighter/zippo
/datum/gear/lighter
/datum/gear/smoking/lighter
display_name = "cheap lighter"
path = /obj/item/flame/lighter
/datum/gear/cigarcase
/datum/gear/smoking/cigarcase
display_name = "cigar case"
path = /obj/item/storage/fancy/cigar
cost = 2
/datum/gear/cigarette
display_name = "cigarette packet"
/datum/gear/smoking/cigarettes
display_name = "cigarette packet selection"
description = "A selection of cigarette packets."
path = /obj/item/storage/fancy/cigarettes
cost = 2
/datum/gear/dromedaryco
display_name = "dromedaryco cigarette packet"
path = /obj/item/storage/fancy/cigarettes/dromedaryco
/datum/gear/smoking/cigarettes/New()
..()
var/cigarettes = list()
cigarettes["Lucky Strike cigarette packet"] = /obj/item/storage/fancy/cigarettes/rugged
cigarettes["Trans-Stellar Duty Free cigarette packet"] = /obj/item/storage/fancy/cigarettes
cigarettes["DromedaryCo cigarette packet"] = /obj/item/storage/fancy/cigarettes/dromedaryco
cigarettes["Nico-Tine cigarette packet"] = /obj/item/storage/fancy/cigarettes/nicotine
cigarettes["Working Tajara cigarette packet"] = /obj/item/storage/fancy/cigarettes/pra
gear_tweaks += new/datum/gear_tweak/path(cigarettes)
/datum/gear/pracigarette
display_name = "working tajara cigarette packet"
path = /obj/item/storage/fancy/cigarettes/pra
/datum/gear/smoking/chew
display_name = "chewing tobacco selection"
description = "A selection of chewing tobacco."
path = /obj/item/storage/chewables/tobacco
cost = 2
/datum/gear/smoking/chew/New()
..()
var/chews = list()
chews["Rredouane Cuts chewing tobacco"] = /obj/item/storage/chewables/tobacco/bad
chews["Mendell Smooth chewing tobacco"] = /obj/item/storage/chewables/tobacco
chews["Taba-Kamu chewing tobacco"] = /obj/item/storage/chewables/tobacco/fine
chews["box of Nico-Tine gum"] = /obj/item/storage/fancy/chewables/tobacco/nico
gear_tweaks += new/datum/gear_tweak/path(chews)
/datum/gear/smoking/leaves
display_name = "tobacco leaf selection"
description = "A selection of tobacco leaves."
path = /obj/item/storage/chewables/rollable
cost = 2
/datum/gear/smoking/leaves/New()
..()
var/leaves = list()
leaves["S'th Kasavakh tobacco leaves"] = /obj/item/storage/chewables/rollable/bad
leaves["Agyre Lake tobacco leaves"] = /obj/item/storage/chewables/rollable
leaves["Excelsior Epsilon tobacco leaves"] = /obj/item/storage/chewables/rollable/fine
leaves["Golden Sol tobacco leaves"] = /obj/item/storage/chewables/rollable/nico
gear_tweaks += new/datum/gear_tweak/path(leaves)
/datum/gear/smoking/pipe
display_name = "pipe selection"
path = /obj/item/clothing/mask/smokable/pipe
/datum/gear/smoking/pipe/New()
..()
var/pipe = list()
pipe["smoking pipe"] = /obj/item/clothing/mask/smokable/pipe
pipe["smoking pipe, corn"] = /obj/item/clothing/mask/smokable/pipe/cobpipe
gear_tweaks += new/datum/gear_tweak/path(pipe)
/datum/gear/smoking/cigfilters
display_name = "cigarette filters"
path = /obj/item/storage/cigfilters
/datum/gear/smoking/cigpaper
display_name = "cigarette paper selection"
description = "A selection of cigarette papers."
path = /obj/item/storage/fancy/cigpaper
/datum/gear/smoking/cigpaper/New()
..()
var/cigpaper = list()
cigpaper["Gen. Eric cigarette paper"] = /obj/item/storage/fancy/cigpaper
cigpaper["Trident cigarette paper"] = /obj/item/storage/fancy/cigpaper/fine
gear_tweaks += new/datum/gear_tweak/path(cigpaper)