mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-11 08:06:33 +01:00
eae40b1854
## About The Pull Request **All the credit for this map goes to Zydras of Nova/Skyrat. See [here](https://github.com/NovaSector/NovaSector/pull/773) for the original PR.** This map is, as the name hints at, circular! It is pretty compact, about the size of MetaStation or maybe even KiloStation, however, like IceBox, it has two Z-Levels. ## Why It's Good For The Game We are currently lacking map variety for low to medium population, as we have Box/IceBox, Meta, Tram, and Kilo. That's it. Two of those are different flavors of the same map. Despite having two Z-Levels, this map plays really well on deadpop, as I actually used to run it on a server of my own, so it would work quite well for the deadpop EU hours. ## Proof Of Testing It compiled and ran locally with no issues. See below for some screenshots taken from the original PR, as I forgot to take screenshots when I tested it. <details> <summary>Screenshots/Videos</summary> <img width="1288" height="865" alt="image" src="https://github.com/user-attachments/assets/9c863303-4235-406a-adb3-10b82b24527b" /> <img width="1171" height="902" alt="image" src="https://github.com/user-attachments/assets/47ba2390-182e-4e6a-a318-3403b024cb7f" /> <img width="1304" height="861" alt="image" src="https://github.com/user-attachments/assets/50e1c2c0-7560-43db-8ac1-b6337ccb0533" /> <img width="1170" height="908" alt="image" src="https://github.com/user-attachments/assets/9050c7a4-b428-4b7d-b865-bac3efd2612d" /> <img width="1236" height="1026" alt="image" src="https://github.com/user-attachments/assets/4f4cb92c-c820-42cd-bd68-0d9a8774e314" /> <img width="1161" height="968" alt="image" src="https://github.com/user-attachments/assets/6a4054c0-4693-487a-ae07-e1d56942613b" /> <img width="1166" height="892" alt="image" src="https://github.com/user-attachments/assets/9e858938-92fd-48c8-bfe3-4c7e2702d8c9" /> <img width="1313" height="880" alt="image" src="https://github.com/user-attachments/assets/42642a5d-b757-40a0-a69b-4086f85cf376" /> <img width="1252" height="845" alt="image" src="https://github.com/user-attachments/assets/b62a5bbd-8139-4043-94c1-a57e597c432c" /> </details> ## Changelog 🆑 add: Added a new map: Ouroboros! /🆑 --------- Co-authored-by: shayoki <96078776+shayoki@users.noreply.github.com> Co-authored-by: Roxy <75404941+TealSeer@users.noreply.github.com>
43 lines
1.6 KiB
Plaintext
43 lines
1.6 KiB
Plaintext
//#define LOWMEMORYMODE //uncomment this to load centcom and runtime station and thats it.
|
|
//#define ABSOLUTE_MINIMUM //uncomment this to load a smaller centcomm and smaller runtime station, only works together with LOWMEMORYMODE
|
|
|
|
#ifdef ABSOLUTE_MINIMUM
|
|
#define LOWMEMORYMODE
|
|
#endif
|
|
|
|
#ifndef ABSOLUTE_MINIMUM
|
|
#include "map_files\generic\CentCom.dmm"
|
|
#else
|
|
#include "map_files\generic\CentCom_minimal.dmm"
|
|
#endif
|
|
|
|
#ifndef LOWMEMORYMODE
|
|
#ifdef ALL_MAPS
|
|
#include "map_files\debug\multiz.dmm"
|
|
#include "map_files\debug\runtimestation.dmm"
|
|
#include "map_files\Deltastation\DeltaStation2.dmm"
|
|
#include "map_files\IceBoxStation\IceBoxStation.dmm"
|
|
#include "map_files\MetaStation\MetaStation.dmm"
|
|
#include "map_files\Mining\Lavaland.dmm"
|
|
//#include "map_files\NorthStar\north_star.dmm" BUBBER EDIT - UNUSED
|
|
#include "map_files\tramstation\tramstation.dmm"
|
|
#include "map_files\CatwalkStation\CatwalkStation_2023.dmm"
|
|
#include "map_files\NebulaStation\NebulaStation.dmm"
|
|
// SKYRAT EDIT ADDITON START - Compiling our modular maps too!
|
|
#include "map_files\Blueshift\Blueshift.dmm"
|
|
#include "map_files\VoidRaptor\VoidRaptor.dmm"
|
|
#include "map_files\KiloStation\KiloStation.dmm"
|
|
// SKYRAT EDIT END
|
|
//#include "map_files\wawastation\wawastation.dmm" BUBBER EDIT - UNUSED
|
|
// BUBBER EDIT ADDITION START
|
|
#include "map_files\biodome\biodome.dmm"
|
|
#include "map_files\moonstation\moonstation.dmm"
|
|
#include "map_files\BoxStation\BoxStation.dmm"
|
|
#include "map_files\Ouroboros\Ouroboros.dmm"
|
|
// BUBBER EDIT ADDITION END
|
|
#endif
|
|
#ifdef ALL_TEMPLATES
|
|
#include "templates.dm"
|
|
#endif
|
|
#endif
|