deco stuff (#8667)
* deco * Thalar not credits * adjustments * indent * The linter does not like Latin Small Letter O With Diaeresis * hopefully it will work now
@@ -188,3 +188,13 @@
|
||||
cost = 60
|
||||
containertype = /obj/structure/closet/crate/large/xion
|
||||
containername = "pump crate"
|
||||
|
||||
/datum/supply_pack/misc/desktoys
|
||||
name = "Desk toys"
|
||||
contains = list(
|
||||
/obj/item/toy/desk/newtoncradle = 2,
|
||||
/obj/item/toy/desk/fan = 2,
|
||||
/obj/item/toy/desk/officetoy = 2,
|
||||
/obj/item/toy/desk/dippingbird = 2)
|
||||
cost = 15
|
||||
containertype = /obj/structure/closet/crate/oculum
|
||||
@@ -660,3 +660,33 @@
|
||||
name = "Chat With Sally"
|
||||
desc = "A poster depicting a familiar face readying to slurp a big mug of coffee. Thanks to a partnership with Kaleidoscope Cosmetics, the latest incarnation of Vir's 'Sally' chat-show host comes with the latest in cosmetic gene-mods! Or not, she's a drone."
|
||||
listing_name = "Ad - Chat With Sally"
|
||||
|
||||
/decl/poster/nanotrasen/pol_11
|
||||
icon_state = "tgposter63"
|
||||
name = "Phoron and the body"
|
||||
desc = "This informational poster provides information on the effects of Phoron exposure, and what you should do if exposed to Phoron."
|
||||
listing_name = "Safety - Phoron and the body"
|
||||
|
||||
/decl/poster/pol_17
|
||||
icon_state = "tgposter64"
|
||||
name = "Periodic Table of the Elements"
|
||||
desc = "It is displaying the periodic table of the elements, from Hydrogen to Oganesson, and everything inbetween."
|
||||
listing_name = "Info - Periodic Table"
|
||||
|
||||
/decl/poster/pol_18
|
||||
icon_state = "tgposter65"
|
||||
name = "Shop-N-Large Supermarkets"
|
||||
desc = "An advertisement for Shop-N-Large supermarkets, advertising their new Stop-N-Shop locations as part of their partnership with Nanotrasen."
|
||||
listing_name = "Ad - Stop-N-Shop"
|
||||
|
||||
/decl/poster/pol_19
|
||||
icon_state = "tgposter66"
|
||||
name = "Midtown Slice Pizza"
|
||||
desc = "An advertisement for Midtown Slice Pizza, a subsidiary of Nanotrasen. Midtown Slice: like a slice of home, no matter where you are."
|
||||
listing_name = "Ad - Midtown Pizza"
|
||||
|
||||
/decl/poster/pol_20
|
||||
icon_state = "tgposter67"
|
||||
name = "Jim Norton's Coffee"
|
||||
desc = "An advertisement for Jim Norton's, the coffee joint that's taken the galaxy by storm."
|
||||
listing_name = "Ad - Jim Norton Coffee"
|
||||
@@ -3,7 +3,7 @@
|
||||
if(exact)
|
||||
return decls_repository.get_decl(path)
|
||||
else
|
||||
var/list/L = decls_repository.get_decls_of_type(path)
|
||||
var/list/L = decls_repository.get_decls_of_type(path)
|
||||
return L[pick(L)]
|
||||
return null
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
src.poster_decl = get_poster_decl(poster_decl, TRUE)
|
||||
else
|
||||
src.poster_decl = get_poster_decl(/decl/poster, FALSE)
|
||||
|
||||
|
||||
name += " - [src.poster_decl.name]"
|
||||
return ..()
|
||||
|
||||
@@ -58,8 +58,8 @@
|
||||
if (locate(/obj/structure/sign/poster) in T)
|
||||
stuff_on_wall = 1
|
||||
break
|
||||
|
||||
if(stuff_on_wall)
|
||||
|
||||
if(stuff_on_wall)
|
||||
to_chat(user, "<span class='notice'>There is already a poster there!</span>")
|
||||
return FALSE
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
to_chat(user, "<span class='notice'>You place the poster!</span>")
|
||||
qdel(src)
|
||||
return TRUE
|
||||
|
||||
|
||||
P.roll_and_drop(P.loc)
|
||||
qdel(src)
|
||||
return FALSE
|
||||
@@ -155,7 +155,7 @@
|
||||
else if(ispath(P))
|
||||
src.poster_decl = get_poster_decl(P, TRUE)
|
||||
else
|
||||
src.poster_decl = get_poster_decl(target_poster_decl_path, FALSE)
|
||||
src.poster_decl = get_poster_decl(target_poster_decl_path, FALSE)
|
||||
|
||||
name = "[initial(name)] - [poster_decl.name]"
|
||||
desc = "[initial(desc)] [poster_decl.desc]"
|
||||
|
||||
@@ -1433,4 +1433,57 @@
|
||||
/obj/structure/balloon/ghost
|
||||
name = "giant ghost balloon"
|
||||
desc = "Oh no, it's a ghost! Oh wait, it's just a balloon. Phew!"
|
||||
icon_state = "ghostballoon"
|
||||
icon_state = "ghostballoon"
|
||||
|
||||
//ship models
|
||||
/obj/item/toy/modelship
|
||||
name = "Model ship"
|
||||
desc = "A model of a SolGov ship, in 1:250th scale, on a handsome wooden stand. Small lights blink on the hull and at the engine exhaust."
|
||||
icon_state = "ship_model_1"
|
||||
icon = 'icons/obj/toy.dmi'
|
||||
|
||||
/obj/item/toy/modelship/two
|
||||
desc = "A small model of a spaceship, in 1:278th scale, it has small lights iluminating it's windows and engines."
|
||||
icon_state = "ship_model_2"
|
||||
|
||||
//desk toys
|
||||
/obj/item/toy/desk
|
||||
name = "desk toy master"
|
||||
desc = "A object that does not exist. Parent Item"
|
||||
icon = 'icons/obj/toy.dmi'
|
||||
|
||||
var/on = 0
|
||||
var/activation_sound = 'sound/weapons/empty.ogg'
|
||||
|
||||
/obj/item/toy/desk/update_icon()
|
||||
if(on)
|
||||
icon_state = "[initial(icon_state)]-on"
|
||||
else
|
||||
icon_state = "[initial(icon_state)]"
|
||||
|
||||
/obj/item/toy/desk/attack_self(mob/user)
|
||||
on = !on
|
||||
if(on && activation_sound)
|
||||
playsound(src.loc, activation_sound, 15, 1, -3)
|
||||
update_icon()
|
||||
return 1
|
||||
|
||||
/obj/item/toy/desk/newtoncradle
|
||||
name = "\improper Newton's cradle"
|
||||
desc = "An ancient 21th century super-weapon model demonstrating that Sir Isaac Newton is the deadliest sonuvabitch in space."
|
||||
icon_state = "newtoncradle"
|
||||
|
||||
/obj/item/toy/desk/fan
|
||||
name = "desk fan"
|
||||
desc = "Your greatest fan."
|
||||
icon_state= "fan"
|
||||
|
||||
/obj/item/toy/desk/officetoy
|
||||
name = "office toy"
|
||||
desc = "A generic microfusion powered office desk toy. Only generates magnetism and ennui."
|
||||
icon_state= "desktoy"
|
||||
|
||||
/obj/item/toy/desk/dippingbird
|
||||
name = "dipping bird toy"
|
||||
desc = "An ancient human bird idol, worshipped by clerks and desk jockeys."
|
||||
icon_state= "dippybird"
|
||||
@@ -0,0 +1,54 @@
|
||||
/obj/structure/prop/billboard
|
||||
name = "billboard"
|
||||
desc = "A large advertisement board, this one is blank"
|
||||
icon = 'icons/obj/props/billboard.dmi'
|
||||
icon_state = "billboard_blank"
|
||||
bound_width = 96
|
||||
bound_height = 64
|
||||
|
||||
/obj/structure/prop/billboard/donkburger
|
||||
name = "\improper Donk-n-Go billboard"
|
||||
desc = "A billboard advertising Donk-n-Go, Donk Co's ever-present and ever-unhealthy fast-food venture: GET IN, GET FED, GET GONE!"
|
||||
icon_state = "billboard_donk_n_go"
|
||||
|
||||
/obj/structure/prop/billboard/space_cola
|
||||
name = "\improper Space Cola billboard"
|
||||
desc = "A billboard advertising Space Cola: Relax, have a Spoke."
|
||||
icon_state = "billboard_space_cola"
|
||||
|
||||
/obj/structure/prop/billboard/NT
|
||||
name = "\improper NanoTrasen billboard"
|
||||
desc = "A billboard advertising NanoTrasen: A Better Tomorrow, Today."
|
||||
icon_state = "billboard_nanotrasen"
|
||||
|
||||
/obj/structure/prop/billboard/NT/defaced
|
||||
name = "defaced NanoTrasen billboard"
|
||||
desc = "A billboard advertising Nanotrasen. Someone's sprayed a message onto it: Fuck Corpo Pigs."
|
||||
icon_state = "billboard_fuck_corps"
|
||||
|
||||
/obj/structure/prop/billboard/azik
|
||||
name = "\improper Azik Interstellar billboard"
|
||||
desc = "A billboard advertising Azik Interstellar and their newest model: the Autocrat Solar Sailer. Azik Interstellar: Tau Cetian Refinement for Galactic Necessities."
|
||||
icon_state = "billboard_azik"
|
||||
description_fluff = "Azik Interstellar is a subsidiary of Wulf Aeronautics, producing smaller spacecraft for private civillian use."
|
||||
|
||||
/obj/structure/prop/billboard/cvr
|
||||
name = "\improper Charlemagne von Rheinland billboard"
|
||||
desc = "A billboard advertising Charlemagne von Rheinland's Germania-class superyacht. Charlemagne von Rheinland: Die Werft der Könige."
|
||||
icon_state = "billboard_cvr"
|
||||
description_fluff = "The Germania-class superyacht is a type of luxury vessel, built by Wulf Aeronautics and furnished by a subsidiary of Gilthari Exports."
|
||||
|
||||
/obj/structure/prop/billboard/shop_n_large
|
||||
name = "\improper Shop-N-Large billboard"
|
||||
desc = "A billboard advertising Shop-N-Large's new range of limited-edition Ice Slush flavours. Shop-N-Large: The products you want for great prices."
|
||||
icon_state = "billboard_shop_n_large"
|
||||
|
||||
/obj/structure/prop/billboard/starway
|
||||
name = "\improper Starway Transit billboard"
|
||||
desc = "A billboard advertising Starway Transit's direct flight from Kalmar to New York: only 2000 Thaler for an economy class berth. Starway: Your Ticket to the Stars. Interstellar travel prices haven't been this low since before the Incursion..."
|
||||
icon_state = "billboard_starway"
|
||||
|
||||
/obj/structure/prop/billboard/smoothies
|
||||
name = "\improper Spinward Smoothies billboard"
|
||||
desc = "A billboard advertising Spinward Smoothies. "
|
||||
icon_state = "billboard_smoothies"
|
||||
@@ -31,6 +31,7 @@
|
||||
//var/icon/I = icon('icons/obj/decals.dmi', icon_state)
|
||||
//S.icon = I.Scale(24, 24)
|
||||
S.sign_state = icon_state
|
||||
S.original_type = type
|
||||
qdel(src)
|
||||
else ..()
|
||||
|
||||
@@ -40,12 +41,14 @@
|
||||
icon = 'icons/obj/decals.dmi'
|
||||
w_class = ITEMSIZE_NORMAL //big
|
||||
var/sign_state = ""
|
||||
var/original_type
|
||||
|
||||
/obj/item/sign/attackby(obj/item/tool as obj, mob/user as mob) //construction
|
||||
if(tool.is_screwdriver() && isturf(user.loc))
|
||||
var/direction = input("In which direction?", "Select direction.") in list("North", "East", "South", "West", "Cancel")
|
||||
if(direction == "Cancel") return
|
||||
var/obj/structure/sign/S = new(user.loc)
|
||||
var/target_type = original_type || /obj/structure/sign
|
||||
var/obj/structure/sign/S = new target_type(user.loc)
|
||||
switch(direction)
|
||||
if("North")
|
||||
S.pixel_y = 32
|
||||
@@ -123,6 +126,11 @@
|
||||
desc = "A warning sign which reads 'NO SMOKING'."
|
||||
icon_state = "nosmoking2"
|
||||
|
||||
/obj/structure/sign/nosmoking_2/burnt
|
||||
name = "\improper NO SMOKING"
|
||||
desc = "A warning sign which reads 'NO SMOKING'. It looks like someone didn't follow its advice..."
|
||||
icon_state = "nosmoking2_burnt"
|
||||
|
||||
/obj/structure/sign/warning
|
||||
name = "\improper WARNING"
|
||||
icon_state = "securearea"
|
||||
@@ -1111,3 +1119,33 @@
|
||||
|
||||
/obj/structure/sign/bigname/seg_7
|
||||
icon_state = "cyno_7"
|
||||
|
||||
/obj/structure/sign/clock
|
||||
name = "wall clock"
|
||||
desc = "A basic wall clock, synced to the current system time."
|
||||
icon_state = "clock"
|
||||
|
||||
/obj/structure/sign/clock/examine(mob/user)
|
||||
. = ..()
|
||||
. += "The clock shows that the time is [stationtime2text()]."
|
||||
|
||||
/obj/structure/sign/calendar
|
||||
name = "calendar"
|
||||
desc = "It's an old-school, NanoTrasen branded wall calendar. Sure, it might be obsolete with modern technology, but it's still hard to imagine an office without one."
|
||||
icon_state = "calendar"
|
||||
|
||||
/obj/structure/sign/calendar/examine(mob/user)
|
||||
. = ..()
|
||||
. += "The calendar shows that the date is [stationdate2text()]."
|
||||
if (Holiday.len)
|
||||
. += "Today is <strong><span class='green'>[english_list(Holiday)]</span></strong>."
|
||||
|
||||
/obj/structure/sign/explosive
|
||||
name = "\improper HIGH EXPLOSIVES sign"
|
||||
desc = "A warning sign which reads 'HIGH EXPLOSIVES'."
|
||||
icon_state = "explosives"
|
||||
|
||||
/obj/structure/sign/chemdiamond
|
||||
name = "\improper HAZARDOUS CHEMICALS sign"
|
||||
desc = "A sign that warns of potentially hazardous chemicals nearby, indicating health risk, flash point, and reactivity."
|
||||
icon_state = "chemdiamond"
|
||||
|
Before Width: | Height: | Size: 165 KiB After Width: | Height: | Size: 168 KiB |
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 86 KiB |
@@ -5123,9 +5123,9 @@
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/alarm/monitor/isolation{
|
||||
alarm_id = "isolation_one";
|
||||
dir = 4;
|
||||
pixel_x = -22;
|
||||
alarm_id = "isolation_one"
|
||||
pixel_x = -22
|
||||
},
|
||||
/obj/machinery/camera/network/research_outpost{
|
||||
c_tag = "OPR - Isolation Cell A";
|
||||
@@ -10364,9 +10364,9 @@
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/alarm/monitor/isolation{
|
||||
alarm_id = "isolation_three";
|
||||
dir = 4;
|
||||
pixel_x = -22;
|
||||
alarm_id = "isolation_three"
|
||||
pixel_x = -22
|
||||
},
|
||||
/obj/machinery/camera/network/research_outpost{
|
||||
c_tag = "OPR - Isolation Cell C";
|
||||
@@ -14945,6 +14945,10 @@
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/surface/station/maintenance/medical/south)
|
||||
"FU" = (
|
||||
/obj/structure/sign/explosive,
|
||||
/turf/simulated/wall/r_wall,
|
||||
/area/surface/station/rnd/storage)
|
||||
"FV" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/machinery/door/firedoor/border_only,
|
||||
@@ -18727,9 +18731,9 @@
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/alarm/monitor/isolation{
|
||||
alarm_id = "isolation_two";
|
||||
dir = 4;
|
||||
pixel_x = -22;
|
||||
alarm_id = "isolation_two"
|
||||
pixel_x = -22
|
||||
},
|
||||
/obj/machinery/camera/network/research_outpost{
|
||||
c_tag = "OPR - Isolation Cell B";
|
||||
@@ -50172,7 +50176,7 @@ JV
|
||||
JV
|
||||
JV
|
||||
uB
|
||||
uB
|
||||
FU
|
||||
uB
|
||||
yq
|
||||
tM
|
||||
|
||||
@@ -7190,6 +7190,9 @@
|
||||
/area/surface/station/engineering/reactor_airlock)
|
||||
"dpQ" = (
|
||||
/obj/machinery/appliance/cooker/grill,
|
||||
/obj/structure/sign/clock{
|
||||
pixel_y = -32
|
||||
},
|
||||
/turf/simulated/floor/tiled/eris/cafe,
|
||||
/area/surface/station/crew_quarters/kitchen)
|
||||
"dpS" = (
|
||||
@@ -30617,6 +30620,10 @@
|
||||
},
|
||||
/obj/item/folder/red_hos,
|
||||
/obj/item/pen/multi,
|
||||
/obj/item/toy/desk/fan{
|
||||
pixel_x = -4;
|
||||
pixel_y = 16
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/surface/station/crew_quarters/heads/hos)
|
||||
"nWU" = (
|
||||
@@ -50556,6 +50563,11 @@
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/chemical_dispenser/full,
|
||||
/obj/structure/sign/poster/custom{
|
||||
dir = 4;
|
||||
pixel_x = 32;
|
||||
poster_decl = /decl/poster/pol_17
|
||||
},
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/surface/station/medical/chemistry)
|
||||
"wRL" = (
|
||||
|
||||
@@ -319,6 +319,9 @@
|
||||
"akZ" = (
|
||||
/obj/structure/table/wooden_reinforced,
|
||||
/obj/machinery/computer/med_data/laptop,
|
||||
/obj/structure/sign/calendar{
|
||||
pixel_y = 32
|
||||
},
|
||||
/turf/simulated/floor/carpet/sblucarpet,
|
||||
/area/surface/station/medical/psych)
|
||||
"ala" = (
|
||||
@@ -1787,8 +1790,11 @@
|
||||
/obj/item/material/ashtray/glass,
|
||||
/obj/item/flashlight/lamp/green,
|
||||
/obj/item/sticky_pad/random{
|
||||
pixel_x = 8;
|
||||
pixel_y = -1
|
||||
pixel_x = 3;
|
||||
pixel_y = -13
|
||||
},
|
||||
/obj/item/toy/desk/fan{
|
||||
pixel_x = 13
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/surface/station/command/internalaffairs)
|
||||
@@ -7249,6 +7255,12 @@
|
||||
/obj/structure/window/reinforced/full,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/surface/station/security/prison)
|
||||
"eQv" = (
|
||||
/obj/structure/sign/clock{
|
||||
pixel_x = -32
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/surface/station/command/liaison)
|
||||
"eQB" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden{
|
||||
dir = 5
|
||||
@@ -7281,6 +7293,14 @@
|
||||
},
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/surface/station/hallway/secondary/secondfloor/command)
|
||||
"eQQ" = (
|
||||
/obj/structure/bed/padded,
|
||||
/obj/item/bedsheet/brown,
|
||||
/obj/structure/sign/clock{
|
||||
pixel_x = -32
|
||||
},
|
||||
/turf/simulated/floor/carpet,
|
||||
/area/surface/station/crew_quarters/sleep/Dorm_2)
|
||||
"eRj" = (
|
||||
/obj/item/radio/intercom{
|
||||
dir = 1;
|
||||
@@ -7929,6 +7949,9 @@
|
||||
/obj/item/reagent_containers/food/drinks/flask,
|
||||
/obj/random_multi/single_item/captains_spare_id,
|
||||
/obj/item/material/ashtray/bronze,
|
||||
/obj/structure/sign/clock{
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/carpet,
|
||||
/area/surface/station/crew_quarters/captain)
|
||||
"fnz" = (
|
||||
@@ -10160,6 +10183,9 @@
|
||||
/obj/item/retail_scanner/command{
|
||||
name = "retail scanner COM"
|
||||
},
|
||||
/obj/structure/sign/clock{
|
||||
pixel_x = -32
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/surface/station/command/meeting_room)
|
||||
"gGy" = (
|
||||
@@ -12419,6 +12445,9 @@
|
||||
pixel_x = 8;
|
||||
pixel_y = -1
|
||||
},
|
||||
/obj/item/toy/desk/officetoy{
|
||||
pixel_x = -16
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/surface/station/crew_quarters/captain)
|
||||
"hXU" = (
|
||||
@@ -18892,6 +18921,14 @@
|
||||
},
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/surface/station/hallway/secondary/secondfloor/westskybridge)
|
||||
"miE" = (
|
||||
/obj/structure/bed/double/padded,
|
||||
/obj/item/bedsheet/browndouble,
|
||||
/obj/structure/sign/clock{
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/carpet,
|
||||
/area/surface/station/crew_quarters/sleep/Dorm_5)
|
||||
"mjt" = (
|
||||
/obj/machinery/porta_turret/ai_defense,
|
||||
/obj/structure/cable{
|
||||
@@ -22505,6 +22542,9 @@
|
||||
d2 = 2;
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/obj/item/toy/desk/newtoncradle{
|
||||
pixel_y = 18
|
||||
},
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/surface/station/crew_quarters/heads/rdoffice)
|
||||
"oFy" = (
|
||||
@@ -26389,6 +26429,9 @@
|
||||
/area/surface/station/maintenance/substation/research/snd)
|
||||
"rmw" = (
|
||||
/obj/structure/table/reinforced,
|
||||
/obj/item/toy/desk/officetoy{
|
||||
pixel_y = 15
|
||||
},
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/surface/station/crew_quarters/heads/cmo)
|
||||
"rmP" = (
|
||||
@@ -26587,6 +26630,10 @@
|
||||
/obj/structure/table/wooden_reinforced,
|
||||
/obj/item/paper_bin,
|
||||
/obj/item/pen/multi,
|
||||
/obj/item/toy/desk/fan{
|
||||
pixel_x = -13;
|
||||
pixel_y = 3
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/surface/station/crew_quarters/captain)
|
||||
"rvR" = (
|
||||
@@ -26600,6 +26647,9 @@
|
||||
/obj/structure/table/wooden_reinforced,
|
||||
/obj/item/melee/chainofcommand,
|
||||
/obj/item/hand_tele,
|
||||
/obj/structure/sign/calendar{
|
||||
pixel_x = -32
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/surface/station/crew_quarters/captain)
|
||||
"rwZ" = (
|
||||
@@ -26714,6 +26764,9 @@
|
||||
/obj/machinery/light{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/sign/clock{
|
||||
pixel_y = 32
|
||||
},
|
||||
/turf/simulated/floor/carpet,
|
||||
/area/surface/station/crew_quarters/captain)
|
||||
"rCU" = (
|
||||
@@ -27853,6 +27906,9 @@
|
||||
dir = 4;
|
||||
pixel_x = 30
|
||||
},
|
||||
/obj/structure/sign/calendar{
|
||||
pixel_y = -32
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/surface/station/command/internalaffairs)
|
||||
"spA" = (
|
||||
@@ -28429,6 +28485,9 @@
|
||||
/obj/effect/floor_decal/corner/pink/border{
|
||||
dir = 9
|
||||
},
|
||||
/obj/structure/sign/clock{
|
||||
pixel_y = 32
|
||||
},
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/surface/station/medical/exam_room)
|
||||
"sGK" = (
|
||||
@@ -29984,6 +30043,12 @@
|
||||
"twZ" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
/area/surface/station/rnd/lab)
|
||||
"txx" = (
|
||||
/obj/structure/sign/clock{
|
||||
pixel_y = 32
|
||||
},
|
||||
/turf/simulated/floor/wood/sif,
|
||||
/area/surface/station/rnd/research)
|
||||
"txz" = (
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 8
|
||||
@@ -30833,6 +30898,9 @@
|
||||
"ucJ" = (
|
||||
/obj/structure/bed/padded,
|
||||
/obj/item/bedsheet/brown,
|
||||
/obj/structure/sign/clock{
|
||||
pixel_x = -32
|
||||
},
|
||||
/turf/simulated/floor/carpet,
|
||||
/area/surface/station/crew_quarters/sleep/Dorm_4)
|
||||
"udq" = (
|
||||
@@ -31335,6 +31403,9 @@
|
||||
pixel_y = -2
|
||||
},
|
||||
/obj/item/pen,
|
||||
/obj/structure/sign/clock{
|
||||
pixel_y = 32
|
||||
},
|
||||
/turf/simulated/floor/carpet/sblucarpet,
|
||||
/area/surface/station/medical/psych)
|
||||
"uvJ" = (
|
||||
@@ -31483,6 +31554,12 @@
|
||||
/obj/machinery/computer/skills{
|
||||
dir = 4
|
||||
},
|
||||
/obj/item/toy/desk/fan{
|
||||
pixel_y = 19
|
||||
},
|
||||
/obj/structure/sign/clock{
|
||||
pixel_y = -32
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/surface/station/command/internalaffairs)
|
||||
"uzg" = (
|
||||
@@ -33264,6 +33341,9 @@
|
||||
},
|
||||
/obj/item/cartridge/quartermaster,
|
||||
/obj/item/retail_scanner/cargo,
|
||||
/obj/item/toy/desk/fan{
|
||||
pixel_x = 15
|
||||
},
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/surface/station/quartermaster/qm)
|
||||
"vKq" = (
|
||||
@@ -33766,6 +33846,14 @@
|
||||
/obj/structure/sign/warning/lethal_turrets,
|
||||
/turf/simulated/wall/r_wall,
|
||||
/area/surface/station/ai/upload_foyer)
|
||||
"wdD" = (
|
||||
/obj/structure/bed/padded,
|
||||
/obj/item/bedsheet/brown,
|
||||
/obj/structure/sign/clock{
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/carpet,
|
||||
/area/surface/station/crew_quarters/sleep/Dorm_1)
|
||||
"wdL" = (
|
||||
/obj/effect/floor_decal/borderfloor/corner{
|
||||
dir = 8
|
||||
@@ -33908,6 +33996,10 @@
|
||||
dir = 8;
|
||||
pixel_x = -21
|
||||
},
|
||||
/obj/item/toy/desk/dippingbird{
|
||||
pixel_x = 16;
|
||||
pixel_y = -3
|
||||
},
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/surface/station/crew_quarters/heads/chief)
|
||||
"wkn" = (
|
||||
@@ -34276,6 +34368,9 @@
|
||||
/area/surface/station/hallway/primary/secondfloor/east)
|
||||
"wvP" = (
|
||||
/obj/effect/zone_divider,
|
||||
/obj/structure/sign/calendar{
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/surface/station/command/liaison)
|
||||
"wvW" = (
|
||||
@@ -37640,6 +37735,9 @@
|
||||
"ymd" = (
|
||||
/obj/structure/bed/padded,
|
||||
/obj/item/bedsheet/brown,
|
||||
/obj/structure/sign/clock{
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/carpet,
|
||||
/area/surface/station/crew_quarters/sleep/Dorm_3)
|
||||
|
||||
@@ -62247,7 +62345,7 @@ frL
|
||||
cDA
|
||||
xvn
|
||||
pjt
|
||||
xvn
|
||||
eQQ
|
||||
kYR
|
||||
gWu
|
||||
pHu
|
||||
@@ -64560,7 +64658,7 @@ ovn
|
||||
cCD
|
||||
aPH
|
||||
isJ
|
||||
aPH
|
||||
wdD
|
||||
fya
|
||||
cpQ
|
||||
uiu
|
||||
@@ -64568,7 +64666,7 @@ ymd
|
||||
vXG
|
||||
xgD
|
||||
nmx
|
||||
xgD
|
||||
miE
|
||||
aMD
|
||||
sBb
|
||||
sBb
|
||||
@@ -64774,7 +64872,7 @@ sBb
|
||||
sBb
|
||||
sBb
|
||||
gae
|
||||
rNi
|
||||
txx
|
||||
rNi
|
||||
rNi
|
||||
tXh
|
||||
@@ -67387,7 +67485,7 @@ uiT
|
||||
tsE
|
||||
hEv
|
||||
goT
|
||||
rXY
|
||||
eQv
|
||||
jUn
|
||||
sDi
|
||||
tcI
|
||||
|
||||
@@ -1,38 +1,381 @@
|
||||
"a" = (/obj/structure/sign/poster/custom{dir = 1; pixel_y = 32; poster_decl = /decl/poster/nanotrasen/pol_6},/turf/template_noop,/area/template_noop)
|
||||
"e" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/effect/spider/stickyweb,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; name = "Janitorial RC"; pixel_y = 24},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"j" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/machinery/light_construct{dir = 4},/obj/structure/mopbucket,/obj/item/mop,/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"l" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/obj/item/reagent_containers/glass/bucket,/obj/structure/sink/generic{dir = 8; pixel_x = 12; pixel_y = -4},/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled,/area/template_noop)
|
||||
"o" = (/turf/simulated/wall,/area/template_noop)
|
||||
"p" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/obj/machinery/light{dir = 8},/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"q" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/item/camera_assembly,/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"r" = (/obj/effect/spider/stickyweb,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"t" = (/obj/effect/spider/stickyweb,/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"u" = (/obj/effect/spider/stickyweb,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"y" = (/obj/item/stool{dir = 1},/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"z" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/effect/decal/remains/mouse,/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"C" = (/turf/simulated/wall/r_wall,/area/template_noop)
|
||||
"D" = (/obj/effect/decal/cleanable/cobweb2{icon_state = "spiderling"; name = "dead spider"},/obj/effect/spider/stickyweb,/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"G" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/item/stool/padded{dir = 8},/obj/random/plushie,/obj/effect/spider/stickyweb,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"H" = (/obj/effect/spider/stickyweb,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"I" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/loot_pile/maint/trash,/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"J" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/structure/table/steel,/obj/item/storage/box/mousetraps,/obj/item/storage/box/lights/mixed,/obj/item/reagent_containers/spray/cleaner{pixel_x = 2; pixel_y = 2},/obj/effect/spider/stickyweb,/obj/machinery/newscaster{pixel_y = 26},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"K" = (/obj/effect/decal/cleanable/cobweb2{icon_state = "spiderling"; name = "dead spider"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/spider/stickyweb,/obj/effect/catwalk_plated,/obj/machinery/atmospherics/pipe/cap/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/template_noop)
|
||||
"L" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/structure/closet/jcloset,/obj/item/clothing/mask/gas/clear,/obj/random/soap,/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"M" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"N" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/machinery/disposal,/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"O" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/steeldecal/steel_decals_central7,/obj/structure/cable,/obj/effect/spider/stickyweb,/obj/structure/sign/poster/nanotrasen{dir = 8; pixel_x = -32; poster_decl = /decl/poster/nanotrasen/pol_7},/obj/machinery/power/apc{name = "south bump"; operating = 0; pixel_y = -24},/obj/machinery/light_switch{dir = 1; pixel_x = -12; pixel_y = -24},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"P" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/effect/decal/cleanable/cobweb2{icon_state = "spiderling"; name = "dead spider"},/obj/effect/spider/stickyweb,/obj/item/radio/intercom{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"Q" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/closet/crate/trashcart,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/junk,/obj/effect/spider/stickyweb,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"W" = (/obj/random/trash,/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
"X" = (/obj/effect/decal/cleanable/spiderling_remains,/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_grid,/area/template_noop)
|
||||
"Z" = (/obj/effect/spider/stickyweb,/turf/simulated/floor/tiled/steel_dirty,/area/template_noop)
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/obj/structure/sign/poster/custom{
|
||||
dir = 1;
|
||||
pixel_y = 32;
|
||||
poster_decl = /decl/poster/nanotrasen/pol_6
|
||||
},
|
||||
/turf/template_noop,
|
||||
/area/template_noop)
|
||||
"e" = (
|
||||
/obj/effect/floor_decal/borderfloor{
|
||||
dir = 1
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/border{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/table/steel,
|
||||
/obj/random/maintenance/clean,
|
||||
/obj/random/maintenance/clean,
|
||||
/obj/random/maintenance/clean,
|
||||
/obj/random/maintenance/engineering,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/machinery/requests_console{
|
||||
department = "Janitorial";
|
||||
departmentType = 1;
|
||||
name = "Janitorial RC";
|
||||
pixel_y = 24
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"j" = (
|
||||
/obj/effect/floor_decal/borderfloor/corner,
|
||||
/obj/effect/floor_decal/corner/purple/bordercorner,
|
||||
/obj/machinery/light_construct{
|
||||
dir = 4
|
||||
},
|
||||
/obj/structure/mopbucket,
|
||||
/obj/item/mop,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"l" = (
|
||||
/obj/effect/floor_decal/borderfloor/corner{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/bordercorner{
|
||||
dir = 4
|
||||
},
|
||||
/obj/item/reagent_containers/glass/bucket,
|
||||
/obj/structure/sink/generic{
|
||||
dir = 8;
|
||||
pixel_x = 12;
|
||||
pixel_y = -4
|
||||
},
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/template_noop)
|
||||
"o" = (
|
||||
/turf/simulated/wall,
|
||||
/area/template_noop)
|
||||
"p" = (
|
||||
/obj/effect/floor_decal/borderfloor/corner{
|
||||
dir = 1
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/bordercorner{
|
||||
dir = 1
|
||||
},
|
||||
/obj/machinery/light{
|
||||
dir = 8
|
||||
},
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"q" = (
|
||||
/obj/effect/floor_decal/borderfloor{
|
||||
dir = 6
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/border{
|
||||
dir = 6
|
||||
},
|
||||
/obj/item/camera_assembly,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"r" = (
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"t" = (
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/machinery/atmospherics/unary/vent_pump,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"u" = (
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
dir = 9
|
||||
},
|
||||
/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"y" = (
|
||||
/obj/item/stool{
|
||||
dir = 1
|
||||
},
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"z" = (
|
||||
/obj/effect/floor_decal/borderfloor/corner{
|
||||
dir = 8
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/bordercorner{
|
||||
dir = 8
|
||||
},
|
||||
/obj/effect/decal/remains/mouse,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"C" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
/area/template_noop)
|
||||
"D" = (
|
||||
/obj/effect/decal/cleanable/cobweb2{
|
||||
icon_state = "spiderling";
|
||||
name = "dead spider"
|
||||
},
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/machinery/atmospherics/unary/vent_scrubber{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"G" = (
|
||||
/obj/effect/floor_decal/borderfloor{
|
||||
dir = 9
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/border{
|
||||
dir = 9
|
||||
},
|
||||
/obj/item/stool/padded{
|
||||
dir = 8
|
||||
},
|
||||
/obj/random/plushie,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/machinery/firealarm{
|
||||
pixel_y = 24
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"H" = (
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 10
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"I" = (
|
||||
/obj/effect/floor_decal/borderfloor,
|
||||
/obj/effect/floor_decal/corner/purple/border,
|
||||
/obj/structure/loot_pile/maint/trash,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"J" = (
|
||||
/obj/effect/floor_decal/borderfloor{
|
||||
dir = 1
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/border{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/table/steel,
|
||||
/obj/item/storage/box/mousetraps,
|
||||
/obj/item/storage/box/lights/mixed,
|
||||
/obj/item/reagent_containers/spray/cleaner{
|
||||
pixel_x = 2;
|
||||
pixel_y = 2
|
||||
},
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/machinery/newscaster{
|
||||
pixel_y = 26
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"K" = (
|
||||
/obj/effect/decal/cleanable/cobweb2{
|
||||
icon_state = "spiderling";
|
||||
name = "dead spider"
|
||||
},
|
||||
/obj/effect/floor_decal/steeldecal/steel_decals4{
|
||||
dir = 1
|
||||
},
|
||||
/obj/effect/floor_decal/steeldecal/steel_decals4{
|
||||
dir = 6
|
||||
},
|
||||
/obj/structure/cable{
|
||||
d1 = 2;
|
||||
d2 = 8;
|
||||
icon_state = "2-8"
|
||||
},
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/effect/catwalk_plated,
|
||||
/obj/machinery/atmospherics/pipe/cap/hidden/supply{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/template_noop)
|
||||
"L" = (
|
||||
/obj/effect/floor_decal/borderfloor{
|
||||
dir = 10
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/border{
|
||||
dir = 10
|
||||
},
|
||||
/obj/structure/closet/jcloset,
|
||||
/obj/item/clothing/mask/gas/clear,
|
||||
/obj/random/soap,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"M" = (
|
||||
/obj/effect/floor_decal/steeldecal/steel_decals4,
|
||||
/obj/effect/floor_decal/steeldecal/steel_decals4{
|
||||
dir = 10
|
||||
},
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"N" = (
|
||||
/obj/effect/floor_decal/borderfloor{
|
||||
dir = 5
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/border{
|
||||
dir = 5
|
||||
},
|
||||
/obj/machinery/disposal,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"O" = (
|
||||
/obj/effect/floor_decal/borderfloor,
|
||||
/obj/effect/floor_decal/corner/purple/border,
|
||||
/obj/effect/floor_decal/steeldecal/steel_decals_central7,
|
||||
/obj/structure/cable,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/structure/sign/poster/nanotrasen{
|
||||
dir = 8;
|
||||
pixel_x = -32;
|
||||
poster_decl = /decl/poster/nanotrasen/pol_7
|
||||
},
|
||||
/obj/machinery/power/apc{
|
||||
name = "south bump";
|
||||
operating = 0;
|
||||
pixel_y = -24
|
||||
},
|
||||
/obj/machinery/light_switch{
|
||||
dir = 1;
|
||||
pixel_x = -12;
|
||||
pixel_y = -24
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"P" = (
|
||||
/obj/effect/floor_decal/borderfloor{
|
||||
dir = 1
|
||||
},
|
||||
/obj/effect/floor_decal/corner/purple/border{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/table/steel,
|
||||
/obj/item/paper_bin,
|
||||
/obj/item/pen,
|
||||
/obj/effect/decal/cleanable/cobweb2{
|
||||
icon_state = "spiderling";
|
||||
name = "dead spider"
|
||||
},
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/item/radio/intercom{
|
||||
dir = 1;
|
||||
pixel_y = 21
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"Q" = (
|
||||
/obj/effect/floor_decal/borderfloor,
|
||||
/obj/effect/floor_decal/corner/purple/border,
|
||||
/obj/structure/closet/crate/trashcart,
|
||||
/obj/random/contraband,
|
||||
/obj/random/maintenance,
|
||||
/obj/random/maintenance,
|
||||
/obj/random/junk,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/obj/machinery/alarm{
|
||||
dir = 1;
|
||||
pixel_y = -22
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"W" = (
|
||||
/obj/random/trash,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
"X" = (
|
||||
/obj/effect/decal/cleanable/spiderling_remains,
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_grid,
|
||||
/area/template_noop)
|
||||
"Z" = (
|
||||
/obj/effect/spider/stickyweb,
|
||||
/turf/simulated/floor/tiled/steel_dirty,
|
||||
/area/template_noop)
|
||||
|
||||
(1,1,1) = {"
|
||||
oCCCCCC
|
||||
oGJPeNo
|
||||
optyWlo
|
||||
oKurHMX
|
||||
oOzZDjo
|
||||
ooLIQqo
|
||||
aoooooo
|
||||
o
|
||||
o
|
||||
o
|
||||
o
|
||||
o
|
||||
o
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
C
|
||||
G
|
||||
p
|
||||
K
|
||||
O
|
||||
o
|
||||
o
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
C
|
||||
J
|
||||
t
|
||||
u
|
||||
z
|
||||
L
|
||||
o
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
C
|
||||
P
|
||||
y
|
||||
r
|
||||
Z
|
||||
I
|
||||
o
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
C
|
||||
e
|
||||
W
|
||||
H
|
||||
D
|
||||
Q
|
||||
o
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
C
|
||||
N
|
||||
l
|
||||
M
|
||||
j
|
||||
q
|
||||
o
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
C
|
||||
o
|
||||
o
|
||||
X
|
||||
o
|
||||
o
|
||||
o
|
||||
"}
|
||||
|
||||
@@ -1261,6 +1261,7 @@
|
||||
#include "code\game\objects\structures\ghost_pods\silicon.dm"
|
||||
#include "code\game\objects\structures\props\alien_props.dm"
|
||||
#include "code\game\objects\structures\props\beam_prism.dm"
|
||||
#include "code\game\objects\structures\props\billboard.dm"
|
||||
#include "code\game\objects\structures\props\blackbox.dm"
|
||||
#include "code\game\objects\structures\props\esoteric.dm"
|
||||
#include "code\game\objects\structures\props\fake_ai.dm"
|
||||
|
||||