The awesome fancy box update which looks super epic, immersive and cool (#9331)

rscadd: "The cookie snack now contains cookies, like the mint and gum packs. They've also been added to the rations box selection."
    rscadd: "Gum packs, mint packs and the cookie snack from the vending machines visibly open when clicked on."
    rscadd: "Gum packs, mint packs and the cookie snack can be crumpled up when empty. If you really wanted to, you still can crumple it with things inside, so long as you're in harm intent."
    rscadd: "Odd boxes, such as candle boxes, donut boxes, crayon boxes and egg boxes can be folded and unfolded from cardboard sheets."
    rscadd: "Donut boxes, egg cartons and cigarette packets visibly open when clicked on. Alt-click to close."
    rscadd: "Mints actually have a proper taste description now."
This commit is contained in:
Wowzewow (Wezzy)
2020-07-18 05:10:53 +08:00
committed by GitHub
parent 2b81cdd077
commit 89eb38177a
49 changed files with 533 additions and 386 deletions
@@ -1,6 +1,6 @@
/datum/gear/smoking
display_name = "matchbook"
path = /obj/item/storage/box/matches
display_name = "matchbox"
path = /obj/item/storage/box/fancy/matches
sort_category = "Smoking"
/datum/gear/smoking/zippo
@@ -13,26 +13,26 @@
/datum/gear/smoking/cigarcase
display_name = "cigar case"
path = /obj/item/storage/fancy/cigarettes/cigar
path = /obj/item/storage/box/fancy/cigarettes/cigar
cost = 2
/datum/gear/smoking/cigarettes
display_name = "cigarette packet selection"
description = "A selection of cigarette packets."
path = /obj/item/storage/fancy/cigarettes
path = /obj/item/storage/box/fancy/cigarettes
cost = 2
flags = GEAR_HAS_DESC_SELECTION
/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
cigarettes["Shastar Leaves cigarette packet"] = /obj/item/storage/fancy/cigarettes/dpra
cigarettes["Royal Choice cigarette packet"] = /obj/item/storage/fancy/cigarettes/nka
cigarettes["Lucky Strike cigarette packet"] = /obj/item/storage/box/fancy/cigarettes/rugged
cigarettes["Trans-Stellar Duty Free cigarette packet"] = /obj/item/storage/box/fancy/cigarettes
cigarettes["DromedaryCo cigarette packet"] = /obj/item/storage/box/fancy/cigarettes/dromedaryco
cigarettes["Nico-Tine cigarette packet"] = /obj/item/storage/box/fancy/cigarettes/nicotine
cigarettes["Working Tajara cigarette packet"] = /obj/item/storage/box/fancy/cigarettes/pra
cigarettes["Shastar Leaves cigarette packet"] = /obj/item/storage/box/fancy/cigarettes/dpra
cigarettes["Royal Choice cigarette packet"] = /obj/item/storage/box/fancy/cigarettes/nka
gear_tweaks += new/datum/gear_tweak/path(cigarettes)
/datum/gear/smoking/chew
@@ -48,7 +48,7 @@
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
chews["box of Nico-Tine gum"] = /obj/item/storage/box/fancy/chewables/tobacco/nico
gear_tweaks += new/datum/gear_tweak/path(chews)
/datum/gear/smoking/leaves
@@ -85,11 +85,11 @@
/datum/gear/smoking/cigpaper
display_name = "cigarette paper selection"
description = "A selection of cigarette papers."
path = /obj/item/storage/fancy/cigpaper
path = /obj/item/storage/box/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
cigpaper["Gen. Eric cigarette paper"] = /obj/item/storage/box/fancy/cigpaper
cigpaper["Trident cigarette paper"] = /obj/item/storage/box/fancy/cigpaper/fine
gear_tweaks += new/datum/gear_tweak/path(cigpaper)