mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-30 00:35:45 +01:00
Merge pull request #3902 from CHOMPStation2/upstream-merge-12504
[MIRROR] Robs You In Public
This commit is contained in:
@@ -995,4 +995,40 @@
|
||||
prob(6);/obj/item/device/flashlight/color/orange,
|
||||
prob(6);/obj/item/device/flashlight/color/yellow,
|
||||
prob(2);/obj/item/device/flashlight/maglight
|
||||
)
|
||||
)
|
||||
|
||||
/obj/random/mug
|
||||
name = "Random Mug"
|
||||
desc = "This is a random coffee mug."
|
||||
icon = 'icons/obj/drinks_mugs.dmi'
|
||||
icon_state = "coffeecup_spawner"
|
||||
|
||||
/obj/random/mug/item_to_spawn()
|
||||
return pick(/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/sol,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/fleet,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/fivearrows,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/psc,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/alma,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/almp,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/nt,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/metal/wulf,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/gilthari,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/zeng,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/wt,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/aether,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/bishop,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/oculum,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/one,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/puni,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/heart,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/pawn,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/diona,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/britcup,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/flame,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/blue,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/black,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/green,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/green/dark,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/rainbow,
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/metal) //CHOMPedit: deleted talon mug
|
||||
|
||||
@@ -148,4 +148,50 @@
|
||||
/datum/gear/wizoffguide
|
||||
display_name = "WizOff Guide"
|
||||
path = /obj/item/weapon/book/manual/wizzoffguide
|
||||
description = "The guide to playing the ever popular card game: Wiz-Off!"
|
||||
description = "The guide to playing the ever popular card game: Wiz-Off!"
|
||||
|
||||
/datum/gear/coffeemug
|
||||
display_name = "coffee mugs"
|
||||
description = "A coffee mug in various designs."
|
||||
cost = 1
|
||||
path = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug
|
||||
|
||||
/datum/gear/coffeemug/New()
|
||||
..()
|
||||
var/list/coffeemugs = list()
|
||||
coffeemugs["plain coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug
|
||||
coffeemugs["SCG coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/sol
|
||||
coffeemugs["Fleet coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/fleet
|
||||
coffeemugs["Five Arrows coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/fivearrows
|
||||
coffeemugs["Pearlshield coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/psc
|
||||
coffeemugs["Almach Association coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/alma
|
||||
coffeemugs["Almach Protectorate coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/almp
|
||||
coffeemugs["NT coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/nt
|
||||
coffeemugs["Wulf Aeronautics mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/metal/wulf
|
||||
coffeemugs["Gilthari Exports coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/gilthari
|
||||
coffeemugs["Zeng-Hu coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/zeng
|
||||
coffeemugs["Ward-Takahashi coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/wt
|
||||
coffeemugs["Aether Atmospherics coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/aether
|
||||
coffeemugs["Bishop Cybernetics coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/bishop
|
||||
coffeemugs["Oculum Broadcast coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/oculum
|
||||
coffeemugs["#1 coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/one
|
||||
coffeemugs["#1 monkey coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/puni
|
||||
coffeemugs["heart coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/heart
|
||||
coffeemugs["pawn coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/pawn
|
||||
coffeemugs["diona coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/diona
|
||||
coffeemugs["british coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/britcup
|
||||
coffeemugs["flame coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/flame
|
||||
coffeemugs["blue coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/blue
|
||||
coffeemugs["black coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/black
|
||||
coffeemugs["green coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/green
|
||||
coffeemugs["dark green coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/green/dark
|
||||
coffeemugs["rainbow coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/rainbow
|
||||
coffeemugs["metal coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/metal
|
||||
coffeemugs["glass coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/glass
|
||||
coffeemugs["tall coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/tall
|
||||
coffeemugs["tall black coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/tall/black
|
||||
coffeemugs["tall metal coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/tall/metal
|
||||
coffeemugs["tall rainbow coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/tall/rainbow
|
||||
//coffeemugs["Talon coffee mug"] = /obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/talon //CHOMPedit
|
||||
gear_tweaks += new /datum/gear_tweak/path(coffeemugs)
|
||||
gear_tweaks += new /datum/gear_tweak/reagents(lunchables_drink_reagents())
|
||||
|
||||
@@ -81,4 +81,4 @@
|
||||
|
||||
/obj/item/weapon/storage/box/glasses/coffeemug
|
||||
name = "box of coffee mugs"
|
||||
starts_with = list(/obj/item/weapon/reagent_containers/food/drinks/britcup = 7)
|
||||
starts_with = list(/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug = 7)
|
||||
@@ -0,0 +1,253 @@
|
||||
/* Warm Mugs!
|
||||
*
|
||||
* Contains:
|
||||
* Britcup
|
||||
* Text Mug
|
||||
* Coffee Mugs
|
||||
* Tall Mugs
|
||||
*/
|
||||
|
||||
/*
|
||||
* Britcup
|
||||
*/
|
||||
/obj/item/weapon/reagent_containers/food/drinks/britcup
|
||||
name = "cup"
|
||||
desc = "A cup with the British flag emblazoned on it."
|
||||
icon_state = "britcup"
|
||||
volume = 30
|
||||
center_of_mass = list("x"=15, "y"=13)
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/britcup/on_reagent_change()
|
||||
..()
|
||||
|
||||
/*
|
||||
* Text Mug
|
||||
*/
|
||||
/obj/item/weapon/reagent_containers/food/drinks/textmug
|
||||
name = "mug with text"
|
||||
desc = "A mug with something written on it."
|
||||
icon = 'icons/obj/drinks_vr.dmi'
|
||||
icon_state = "textmug"
|
||||
volume = 30
|
||||
center_of_mass = list("x"=15, "y"=13)
|
||||
|
||||
/*
|
||||
* Coffee Mugs
|
||||
*/
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug
|
||||
name = "coffee mug"
|
||||
base_name = "mug"
|
||||
desc = "A plain white coffee mug."
|
||||
icon = 'icons/obj/drinks_mugs.dmi'
|
||||
base_icon = "coffeecup"
|
||||
volume = 30
|
||||
var/fillsource = "coffeecup"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/update_icon()
|
||||
cut_overlays()
|
||||
|
||||
if(reagents.total_volume)
|
||||
var/image/filling = image('icons/obj/drinks_mugs.dmi', src, null)
|
||||
var/percent = round((reagents.total_volume / volume) * 100)
|
||||
switch(percent)
|
||||
if(0 to 39)
|
||||
filling.icon_state = null
|
||||
return
|
||||
if(40 to 79) filling.icon_state = "[fillsource]40"
|
||||
if(80 to 99) filling.icon_state = "[fillsource]80"
|
||||
if(100 to INFINITY) filling.icon_state = "[fillsource]100"
|
||||
filling.color = reagents.get_color()
|
||||
add_overlay(filling)
|
||||
|
||||
// Government
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/sol
|
||||
name = "\improper SCG coffee mug"
|
||||
desc = "A blue coffee mug emblazoned with the crest of the Solar Confederate Government."
|
||||
base_icon = "coffeecup_sol"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/fleet
|
||||
name = "\improper SCG Fleet coffee cup"
|
||||
desc = "A coffee mug imprinted with the emblem of the Solar Confederate Fleet."
|
||||
base_icon = "coffeecup_fleet"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/fivearrows
|
||||
name = "\improper Five Arrows coffee mug"
|
||||
desc = "A coffee mug with the flag of the Five Arrows proudly displayed on it."
|
||||
base_icon = "coffeecup_fivearrows"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/alma
|
||||
name = "\improper Almach Association coffee cup"
|
||||
desc = "A grey coffee cup emblazoned with the star of the Almach Association."
|
||||
icon_state = "coffeecup_alma"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/almp
|
||||
name = "\improper Almach Protectorate coffee cup"
|
||||
desc = "A purple coffee cup emblazoned with the star of the Almach Protectorate."
|
||||
icon_state = "coffeecup_almp"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/psc
|
||||
name = "\improper Pearlshield coffee mug"
|
||||
desc = "A coffee mug bearing the symbol of the Pearlshield Coalition."
|
||||
base_icon = "coffeecup_psc"
|
||||
|
||||
// Corporations
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/nt
|
||||
name = "\improper NT coffee mug"
|
||||
desc = "A blue NanoTrasen coffee mug."
|
||||
base_icon = "coffeecup_NT"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/metal/wulf
|
||||
name = "\improper Wulf Aeronautics coffee mug"
|
||||
desc = "A metal coffee mug bearing the livery of Wulf Aeronautics."
|
||||
base_icon = "coffeecup_wulf"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/gilthari
|
||||
name = "\improper Gilthari Exports coffee mug"
|
||||
desc = "A coffee mug bearing golden G of Gilthari Exports."
|
||||
base_icon = "coffeecup_gilth"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/wt
|
||||
name = "\improper Ward-Takahashi coffee mug"
|
||||
desc = "A coffee mug in a geometric Ward-Takahashi design."
|
||||
base_icon = "coffeecup_wt"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/aether
|
||||
name = "\improper Aether Atmospherics coffee mug"
|
||||
desc = "A coffee mug in Aether Atmospherics colours."
|
||||
base_icon = "coffeecup_aether"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/zeng
|
||||
name = "\improper Zeng-Hu coffee cup"
|
||||
desc = "A coffee cup bearing the Zeng-Hu logo."
|
||||
icon_state = "coffeecup_zeng"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/bishop
|
||||
name = "\improper Bishop coffee mug"
|
||||
desc = "A black coffee mug adorned with Bishop's logo."
|
||||
base_icon = "coffeecup_bishop"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/oculum
|
||||
name = "pawn coffee mug"
|
||||
desc = "A black and blue coffee mug decorated with the logo of Oculum Broadcast."
|
||||
base_icon = "coffeecup_oculum"
|
||||
|
||||
/* //CHOMPedit
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/talon
|
||||
name = "\improper Talon coffee mug"
|
||||
desc = "A teal colored coffee mug with the Talon star logo on its face."
|
||||
base_icon = "coffeecup_talon"
|
||||
*/
|
||||
|
||||
// Symbols, markings
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/one
|
||||
name = "#1 coffee mug"
|
||||
desc = "A white coffee mug, prominently featuring a #1."
|
||||
base_icon = "coffeecup_one"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/puni
|
||||
name = "#1 monkey coffee mug"
|
||||
desc = "A white coffee mug, prominently featuring a \"#1 monkey\" decal."
|
||||
base_icon = "coffeecup_puni"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/heart
|
||||
name = "heart coffee mug"
|
||||
desc = "A white coffee mug, it prominently features a red heart."
|
||||
base_icon = "coffeecup_heart"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/pawn
|
||||
name = "pawn coffee mug"
|
||||
desc = "A black coffee mug adorned with the image of a red chess pawn."
|
||||
base_icon = "coffeecup_pawn"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/diona
|
||||
name = "diona nymph coffee mug"
|
||||
desc = "A green coffee mug featuring the image of a diona nymph."
|
||||
base_icon = "coffeecup_diona"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/britcup
|
||||
name = "british coffee mug"
|
||||
desc = "A coffee mug with the British flag emblazoned on it."
|
||||
base_icon = "coffeecup_brit"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/flame
|
||||
name = "flame coffee cup"
|
||||
desc = "A coffee cup with the a flame emblazoned on it."
|
||||
icon_state = "coffeecup_flame"
|
||||
|
||||
// Pure colors & other
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/black
|
||||
name = "black coffee mug"
|
||||
desc = "A sleek black coffee mug."
|
||||
base_icon = "coffeecup_black"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/green
|
||||
name = "green coffee mug"
|
||||
desc = "A pale green and pink coffee mug."
|
||||
base_icon = "coffeecup_green"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/green/dark
|
||||
desc = "A dark green coffee mug."
|
||||
base_icon = "coffeecup_corp"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/blue
|
||||
name = "blue coffee mug"
|
||||
desc = "A blue coffee mug."
|
||||
base_icon = "coffeecup_blue"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/rainbow
|
||||
name = "rainbow coffee mug"
|
||||
desc = "A rainbow coffee mug. The colors are almost as blinding as a welder."
|
||||
base_icon = "coffeecup_rainbow"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/metal
|
||||
name = "metal coffee mug"
|
||||
desc = "A metal coffee mug. You're not sure which metal."
|
||||
base_icon = "coffeecup_metal"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/glass
|
||||
name = "glass coffee mug"
|
||||
desc = "A glass coffee mug, using space age technology to keep it cool for use."
|
||||
base_icon = "glasscoffeecup"
|
||||
fillsource = "glasscoffeecup"
|
||||
|
||||
/*
|
||||
* Tall Mugs
|
||||
*/
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/tall
|
||||
name = "tall coffee mug"
|
||||
desc = "An unreasonably tall coffee mug, for when you really need to wake up in the morning."
|
||||
icon = 'icons/obj/drinks_mugs_tall.dmi'
|
||||
base_icon = "coffeecup_tall"
|
||||
fillsource = "coffeecup_tall"
|
||||
volume = 60
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/tall/update_icon()
|
||||
cut_overlays()
|
||||
|
||||
if(reagents.total_volume)
|
||||
var/image/filling = image('icons/obj/drinks_mugs_tall.dmi', src, null)
|
||||
var/percent = round((reagents.total_volume / volume) * 100)
|
||||
switch(percent)
|
||||
if(0 to 69)
|
||||
filling.icon_state = null
|
||||
return
|
||||
if(70 to 89) filling.icon_state = "[fillsource]70"
|
||||
if(90 to 99) filling.icon_state = "[fillsource]90"
|
||||
if(100 to INFINITY) filling.icon_state = "[fillsource]100"
|
||||
filling.color = reagents.get_color()
|
||||
add_overlay(filling)
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/tall/black
|
||||
name = "tall black coffee mug"
|
||||
desc = "An unreasonably tall coffee mug, for when you really need to wake up in the morning. This one is black."
|
||||
base_icon = "coffeecup_tall_black"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/tall/metal
|
||||
name = "tall metal coffee mug"
|
||||
desc = "An unreasonably tall coffee mug, for when you really need to wake up in the morning. This one is made of metal."
|
||||
base_icon = "coffeecup_tall_metal"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/tall/rainbow
|
||||
name = "tall rainbow coffee mug"
|
||||
desc = "An unreasonably tall coffee mug, for when you really need to wake up in the morning. This one is rainbow colored."
|
||||
base_icon = "coffeecup_tall_rainbow"
|
||||
@@ -420,10 +420,3 @@
|
||||
volume = 60
|
||||
center_of_mass = list("x"=15, "y"=4)
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/britcup
|
||||
name = "cup"
|
||||
desc = "A cup with the British flag emblazoned on it."
|
||||
icon_state = "britcup"
|
||||
volume = 30
|
||||
center_of_mass = list("x"=15, "y"=13)
|
||||
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
/obj/item/weapon/reagent_containers/food/drinks/textmug
|
||||
name = "mug with text"
|
||||
desc = "A mug with something written on it."
|
||||
icon = 'icons/obj/drinks_vr.dmi'
|
||||
icon_state = "textmug"
|
||||
volume = 30
|
||||
center_of_mass = list("x"=15, "y"=13)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 6.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.7 KiB |
@@ -1458,7 +1458,14 @@
|
||||
/obj/machinery/atmospherics/unary/vent_scrubber/on{
|
||||
dir = 1
|
||||
},
|
||||
/obj/item/weapon/paper/dockingcodes,
|
||||
/obj/item/weapon/paper/dockingcodes{
|
||||
pixel_x = 5;
|
||||
pixel_y = -1
|
||||
},
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/talon{
|
||||
pixel_x = -13;
|
||||
pixel_y = 7
|
||||
},
|
||||
/turf/simulated/floor/carpet/blucarpet,
|
||||
/area/talon_v2/crew_quarters/cap_room)
|
||||
"ep" = (
|
||||
@@ -15657,6 +15664,10 @@
|
||||
/obj/machinery/atmospherics/unary/vent_scrubber/on{
|
||||
dir = 1
|
||||
},
|
||||
/obj/item/weapon/reagent_containers/food/drinks/glass2/coffeemug/talon{
|
||||
pixel_x = 6;
|
||||
pixel_y = -1
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/talon_v2/crew_quarters/meditation)
|
||||
"XO" = (
|
||||
|
||||
+1
-1
@@ -2411,6 +2411,7 @@
|
||||
#include "code\modules\food\drinkingglass\metaglass.dm"
|
||||
#include "code\modules\food\drinkingglass\metaglass_ch.dm"
|
||||
#include "code\modules\food\drinkingglass\metaglass_vr.dm"
|
||||
#include "code\modules\food\drinkingglass\mugs.dm"
|
||||
#include "code\modules\food\drinkingglass\serving_glasses.dm"
|
||||
#include "code\modules\food\drinkingglass\shaker.dm"
|
||||
#include "code\modules\food\drinkingglass\shaker_vr.dm"
|
||||
@@ -2418,7 +2419,6 @@
|
||||
#include "code\modules\food\food\cans_ch.dm"
|
||||
#include "code\modules\food\food\condiment.dm"
|
||||
#include "code\modules\food\food\drinks.dm"
|
||||
#include "code\modules\food\food\drinks_vr.dm"
|
||||
#include "code\modules\food\food\lunch.dm"
|
||||
#include "code\modules\food\food\sandwich.dm"
|
||||
#include "code\modules\food\food\snacks.dm"
|
||||
|
||||
Reference in New Issue
Block a user