Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[V] Sorokyne Strata: Expanded Small corridors, removed 3000 unused tiles, Xenos can now weed everything except LZ's and surrounding of LZ's, allow LAZ for CAS inside structures with light blue Areas on Tacmap (glass ceiling hallways) #6071

Merged
merged 38 commits into from
Sep 29, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
3ba9bae
Strata.. fixes?
Venuska1117 Apr 3, 2024
f0d4b67
fixed missed areas.
Venuska1117 Apr 3, 2024
b3d1395
damn installing hooks is pain
Venuska1117 Apr 3, 2024
f2cfc3c
Merge branch 'master' of https://github.com/Venuska1117/cmss13 into m…
Venuska1117 Apr 3, 2024
33be46c
small fixes
Venuska1117 Apr 3, 2024
a886fc3
Forgot about this jungle-chockes
Venuska1117 Apr 4, 2024
082d169
Big Changes, Removed around 3000+ unused tiles.
Venuska1117 Apr 16, 2024
c64858b
Merge branch 'master' into mapping-strata-1
Venuska1117 Apr 18, 2024
4724a0a
Merge branch 'master' into mapping-strata-1
Venuska1117 May 3, 2024
8d3428e
Fucked up and need checks.
Venuska1117 May 11, 2024
5e81a45
Merge branch 'cmss13-devs:master' into mapping-strata-1
Venuska1117 May 11, 2024
bc3a609
???
Venuska1117 May 11, 2024
2f22e09
Merge branch 'mapping-strata-1' of https://github.com/Venuska1117/cms…
Venuska1117 May 11, 2024
47ce60f
Fat changes:
Venuska1117 May 16, 2024
b6620be
Merge branch 'master' into mapping-strata-1
Venuska1117 May 16, 2024
c0f0135
Removed duplicated queen spawners in same area.
Venuska1117 May 16, 2024
ffbb5ee
Removed that door with lead to wall
Venuska1117 May 16, 2024
7b0dbf0
Merge branch 'master' into mapping-strata-1
Venuska1117 May 25, 2024
77b1ffb
changes:
Venuska1117 May 31, 2024
2a4fc00
Merge branch 'master' of https://github.com/Venuska1117/cmss13 into m…
Venuska1117 Jul 9, 2024
3b221cf
Merge branch 'master' of https://github.com/Venuska1117/cmss13 into m…
Venuska1117 Jul 11, 2024
0fcafb0
Merge branch 'master' of https://github.com/Venuska1117/cmss13 into m…
Venuska1117 Jul 15, 2024
e5356b4
Fixed multiple APC's duplication.
Venuska1117 Jul 15, 2024
db4a213
Even More fixing
Venuska1117 Jul 15, 2024
3f3b763
updated code to match incomming APC PR.
Venuska1117 Jul 15, 2024
65dd060
Merge branch 'master' into mapping-strata-1
Venuska1117 Jul 17, 2024
be27f58
Fat batch of changes.
Venuska1117 Jul 25, 2024
bf4f773
Added LZ smoke.
Venuska1117 Jul 28, 2024
c4bf3d6
updating.
Venuska1117 Jul 29, 2024
9d5e6d4
woops
Venuska1117 Jul 29, 2024
844462d
removed custom ceiling
Venuska1117 Aug 6, 2024
84fcc7f
inc change
Venuska1117 Aug 7, 2024
ca2492b
Merge branch 'master' of https://github.com/Venuska1117/cmss13 into m…
Venuska1117 Aug 7, 2024
03e636e
why do it exist
Venuska1117 Aug 7, 2024
82a3d4b
Changes in minimap and Areas.
Venuska1117 Aug 8, 2024
0ea4fbc
swapped some areas color for visibility
Venuska1117 Aug 8, 2024
817ed55
Merge branch 'master' into mapping-strata-1
Venuska1117 Aug 8, 2024
300a417
Make pipes straight.
Venuska1117 Sep 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions code/modules/power/apc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1371,4 +1371,43 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list(
desc = "A control terminal for the area electrical systems. This one is hardened against sudden power fluctuations caused by electrical grid damage."
crash_break_probability = 0

//------Groundsite APCs ------//
/obj/structure/machinery/power/apc/groundsite
name = "area power controller"

/obj/structure/machinery/power/apc/groundsite/no_power
start_charge = 0

/obj/structure/machinery/power/apc/groundsite/no_power/north
pixel_y = 24
dir = 1
/obj/structure/machinery/power/apc/groundsite/no_power/south
pixel_y = -24

/obj/structure/machinery/power/apc/groundsite/no_power/east
pixel_x = 24
dir = 4

/obj/structure/machinery/power/apc/groundsite/no_power/west
pixel_x = -24
dir = 8

// Powered APCs with directions
/obj/structure/machinery/power/apc/groundsite/power

/obj/structure/machinery/power/apc/groundsite/power/north
pixel_y = 24
dir = 1

/obj/structure/machinery/power/apc/groundsite/power/south
pixel_y = -24

/obj/structure/machinery/power/apc/groundsite/power/east
pixel_x = 24
dir = 4

/obj/structure/machinery/power/apc/groundsite/power/west
pixel_x = -24
dir = 8

#undef APC_UPDATE_ICON_COOLDOWN
Loading
Loading