Skip to content

Commit

Permalink
Victory branch (#6789)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

God, please work.


## Why It's Good For The Game

<!-- Argue for the merits of your changes and how they benefit the game,
especially if they are controversial and/or far reaching. If you can't
actually explain WHY what you are doing will improve the game, then it
probably isn't good for the game in the first place. -->

## Changelog

<!-- If your PR modifies aspects of the game that can be concretely
observed by players or admins you should add a changelog. If your change
does NOT meet this description, remove this section. Be sure to properly
mark your PRs to prevent unnecessary GBP loss. You can read up on GBP
and it's effects on PRs in the tgstation guides for contributors. Please
note that maintainers freely reserve the right to remove and add tags
should they deem it appropriate. You can attempt to finagle the system
all you want, but it's best to shoot for clear communication right off
the bat. -->

:cl:
add: Added new mechanics or gameplay changes
add: Added more things
del: Removed old things

/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->

---------

Co-authored-by: Niezann <madarauchiha66612@gmail.com>
Co-authored-by: Shikarasu <washikarasu@hotmail.com>
Co-authored-by: silicons <2003111+silicons@users.noreply.github.com>
  • Loading branch information
4 people authored Oct 12, 2024
1 parent aaa9b25 commit e956d74
Show file tree
Hide file tree
Showing 6 changed files with 63,744 additions and 48,220 deletions.
1 change: 1 addition & 0 deletions citadel.dme
Original file line number Diff line number Diff line change
Expand Up @@ -1023,6 +1023,7 @@
#include "code\game\area\Space Station 13 areas.dm"
#include "code\game\area\ss13_deprecated_areas.dm"
#include "code\game\area\Tether_areas.dm"
#include "code\game\area\victory_areas.dm"
#include "code\game\area\station\exporation.dm"
#include "code\game\area\station\security_areas.dm"
#include "code\game\atoms\action_feedback.dm"
Expand Down
112 changes: 112 additions & 0 deletions code/game/area/victory_areas.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
/** Victory Hallways
*/

/** Deck 4
*/
/area/victory/hallway/d4aftmaint
name = "\improper Deck 4 Aft Maintenance"
icon_state = "amaint"

/area/victory/hallway/d4fwdmaint
name = "\improper Deck 4 Forward Maintenance"
icon_state = "fmaint"

/area/victory/hallway/d4fwdhall
name = "\improper Deck 4 Forward Hallway"
icon_state = "hallF"

/area/victory/hallway/d4afthall
name = "\improper Deck 4 Aft Hallway"
icon_state = "hallA"

/area/victory/hallway/d4porthall
name = "\improper Deck 4 Port Hallway"
icon_state = "hallP"

/area/victory/hallway/d4starboardhall
name = "\improper Deck 4 Starboard Hallway"
icon_state = "hallS"

/** Deck 3
*/
/area/victory/hallway/d3aftmaint
name = "\improper Deck 3 Aft Maintenance"
icon_state = "amaint"

/area/victory/hallway/d3fwdmaint
name = "\improper Deck 3 Forward Maintenance"
icon_state = "fmaint"

/area/victory/hallway/d3fwdhall
name = "\improper Deck 3 Forward Hallway"
icon_state = "hallF"

/area/victory/hallway/d3afthall
name = "\improper Deck 3 Aft Hallway"
icon_state = "hallA"

/area/victory/hallway/d3porthall
name = "\improper Deck 3 Port Hallway"
icon_state = "hallP"

/area/victory/hallway/d3starboardhall
name = "\improper Deck 3 Starboard Hallway"
icon_state = "hallS"

/** Deck 2
*/
/area/victory/hallway/d2aftmaint
name = "\improper Deck 2 Aft Maintenance"
icon_state = "amaint"

/area/victory/hallway/d2fwdmaint
name = "\improper Deck 2 Forward Maintenance"
icon_state = "fmaint"

/area/victory/hallway/d2fwdhall
name = "\improper Deck 2 Forward Hallway"
icon_state = "hallF"

/area/victory/hallway/d2afthall
name = "\improper Deck 2 Aft Hallway"
icon_state = "hallA"

/area/victory/hallway/d2porthall
name = "\improper Deck 2 Port Hallway"
icon_state = "hallP"

/area/victory/hallway/d2starboardhall
name = "\improper Deck 2 Starboard Hallway"
icon_state = "hallS"

/** Deck 1
*/
/area/victory/hallway/d1aftmaint
name = "\improper Deck 1 Aft Maintenance"
icon_state = "amaint"

/area/victory/hallway/d1fwdmaint
name = "\improper Deck 1 Forward Maintenance"
icon_state = "fmaint"

/area/victory/hallway/d1fwdhall
name = "\improper Deck 1 Forward Hallway"
icon_state = "hallF"

/area/victory/hallway/d1afthall
name = "\improper Deck 1 Aft Hallway"
icon_state = "hallA"

/area/victory/hallway/d1porthall
name = "\improper Deck 1 Port Hallway"
icon_state = "hallP"

/area/victory/hallway/d1starboardhall
name = "\improper Deck 1 Starboard Hallway"
icon_state = "hallS"

/** Science
*/
/area/rnd/robotics/morgue
name = "\improper Robotics Morgue"
icon_state = "robotics"
Loading

0 comments on commit e956d74

Please sign in to comment.