Skip to content

Commit

Permalink
Endermage Rcorp Updates: Reworking Maps (#2544)
Browse files Browse the repository at this point in the history
* Maps update for RCorp

* Updating Pits

* Unbreakable Catwalks

* Commenting out Zombie/Corrior Maps

---------

Co-authored-by: Anton Zenkov <[email protected]>
  • Loading branch information
EnderMage99 and azenkov authored Dec 29, 2024
1 parent abef264 commit 289fac8
Show file tree
Hide file tree
Showing 29 changed files with 10,818 additions and 10,205 deletions.
20 changes: 20 additions & 0 deletions ModularTegustation/tegu_items/rcorp/landmarks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,23 @@ GLOBAL_LIST_INIT(raidboss, list(/mob/living/simple_animal/hostile/distortion/shr

//To do: Deshit this.

/obj/effect/landmark/nobasic_incorp_move
name = "incorp barrier"
desc = "no basic incorp move"
icon = 'icons/effects/landmarks_static.dmi'
icon_state = "x2"

/obj/effect/landmark/nobasic_incorp_move/Initialize()
..()
var/turf/T = get_turf(src)
T.turf_flags |= NO_BASIC_INCORP_MOVE
return INITIALIZE_HINT_LATELOAD

/obj/effect/landmark/nobasic_incorp_move/Destroy()
var/turf/T = get_turf(src)
T.turf_flags &= ~NO_BASIC_INCORP_MOVE
. = ..()

/obj/effect/landmark/nobasic_incorp_move/disappearing
name = "disappearing incorp barrier"
desc = "no basic incorp move"
10 changes: 5 additions & 5 deletions ModularTegustation/tegu_items/rcorp/random_caves.dm
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
mappath = "_maps/RandomRooms/rcorp/caves/hallway.dmm"
weight = 5

/datum/map_template/random_room/rcorp_caves/elevator
name = "R-Corp Caves - Elevator"
room_id = "rcorp_caves_elevator"
mappath = "_maps/RandomRooms/rcorp/caves/elevator.dmm"
weight = 2 //Meme template, less common
// /datum/map_template/random_room/rcorp_caves/elevator
// name = "R-Corp Caves - Elevator"
// room_id = "rcorp_caves_elevator"
// mappath = "_maps/RandomRooms/rcorp/caves/elevator.dmm"
// weight = 2 //Meme template, less common

/datum/map_template/random_room/rcorp_caves/river
name = "R-Corp Caves - River"
Expand Down
20 changes: 10 additions & 10 deletions ModularTegustation/tegu_items/rcorp/random_maps.dm
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,15 @@
mappath = "_maps/RandomRooms/rcorp/facility/raidboss.dmm"
weight = 10

/datum/map_template/random_room/rcorp/zombies
name = "Rcorp - City"
room_id = "rcorp_inside_city"
mappath = "_maps/RandomRooms/rcorp/facility/city.dmm"
weight = 10

/datum/map_template/random_room/rcorp/xenos
name = "Rcorp - Xenos"
room_id = "rcorp_inside_xenos"
mappath = "_maps/RandomRooms/rcorp/facility/xenos.dmm"
// /datum/map_template/random_room/rcorp/zombies
// name = "Rcorp - City"
// room_id = "rcorp_inside_city"
// mappath = "_maps/RandomRooms/rcorp/facility/city.dmm"
// weight = 10

// /datum/map_template/random_room/rcorp/xenos
// name = "Rcorp - Xenos"
// room_id = "rcorp_inside_xenos"
// mappath = "_maps/RandomRooms/rcorp/facility/xenos.dmm"
// weight = 10 Currently instantly ends the round for reasons known only to god.

Loading

0 comments on commit 289fac8

Please sign in to comment.