diff --git a/src/SUMMARY.md b/src/SUMMARY.md index df3f361..c7f2d06 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -20,6 +20,7 @@ Mapping - [Cargo](mapping/guidelines/cargo/README.md) - [Cargo Bay](mapping/guidelines/cargo/cargo_bay.md) - [Cargo Reception](mapping/guidelines/cargo/cargo_reception.md) + - [Cargo Shuttle](mapping/guidelines/cargo/cargo_shuttle.md) - [Quartermaster](mapping/guidelines/cargo/quartermaster.md) - [Salvage](mapping/guidelines/cargo/salvage.md) - [Command](mapping/guidelines/command/README.md) diff --git a/src/assets/images/mapping/cargo/cargo_shuttle/core.webp b/src/assets/images/mapping/cargo/cargo_shuttle/core.webp new file mode 100644 index 0000000..e1141fd Binary files /dev/null and b/src/assets/images/mapping/cargo/cargo_shuttle/core.webp differ diff --git a/src/assets/images/mapping/cargo/cargo_shuttle/elkridge.webp b/src/assets/images/mapping/cargo/cargo_shuttle/elkridge.webp new file mode 100644 index 0000000..da91673 Binary files /dev/null and b/src/assets/images/mapping/cargo/cargo_shuttle/elkridge.webp differ diff --git a/src/assets/images/mapping/cargo/cargo_shuttle/exo.webp b/src/assets/images/mapping/cargo/cargo_shuttle/exo.webp new file mode 100644 index 0000000..8e00c4d Binary files /dev/null and b/src/assets/images/mapping/cargo/cargo_shuttle/exo.webp differ diff --git a/src/assets/images/mapping/cargo/cargo_shuttle/fland.webp b/src/assets/images/mapping/cargo/cargo_shuttle/fland.webp new file mode 100644 index 0000000..fff367d Binary files /dev/null and b/src/assets/images/mapping/cargo/cargo_shuttle/fland.webp differ diff --git a/src/assets/images/mapping/cargo/cargo_shuttle/generic.webp b/src/assets/images/mapping/cargo/cargo_shuttle/generic.webp new file mode 100644 index 0000000..3c91268 Binary files /dev/null and b/src/assets/images/mapping/cargo/cargo_shuttle/generic.webp differ diff --git a/src/assets/images/mapping/cargo/cargo_shuttle/plasma.webp b/src/assets/images/mapping/cargo/cargo_shuttle/plasma.webp new file mode 100644 index 0000000..470411c Binary files /dev/null and b/src/assets/images/mapping/cargo/cargo_shuttle/plasma.webp differ diff --git a/src/assets/images/mapping/cargo/cargo_shuttle/relic.webp b/src/assets/images/mapping/cargo/cargo_shuttle/relic.webp new file mode 100644 index 0000000..17986a8 Binary files /dev/null and b/src/assets/images/mapping/cargo/cargo_shuttle/relic.webp differ diff --git a/src/assets/images/mapping/cargo/cargo_shuttle/senpeak.webp b/src/assets/images/mapping/cargo/cargo_shuttle/senpeak.webp new file mode 100644 index 0000000..92765ae Binary files /dev/null and b/src/assets/images/mapping/cargo/cargo_shuttle/senpeak.webp differ diff --git a/src/mapping/guidelines/cargo/cargo_shuttle.md b/src/mapping/guidelines/cargo/cargo_shuttle.md new file mode 100644 index 0000000..a0656fc --- /dev/null +++ b/src/mapping/guidelines/cargo/cargo_shuttle.md @@ -0,0 +1,28 @@ +{% import "templates/mapping.md" as map %} +# Custom Cargo Shuttle +#### Required +- Cargo Shuttle Console +- Pilot Seat +- Pair of thrusters in each cardinal direction +- Gyroscope +- Mini Gravity Generator +- Basic air replenishment setup + - Air Vent + - Connector Port + - Air Canister +- At least one standard cargo dock consisting of (in order from "top" to "bottom"): + - Blast Door with conveyor + - External Airlock + - Wall + - External Airlock + - Blast Door with conveyor, orientated in the opposite direction + +#### Optional +- Long Range Holopad (Cargo - Shuttle) +- Atmos Scrubber Network +- Extra Thrusters +- Decoration + + +## Examples +{{ map::shuttle_examples(path="cargo/cargo_shuttle") }} \ No newline at end of file diff --git a/src/templates/mapping.md b/src/templates/mapping.md index 9510e62..28e14dc 100644 --- a/src/templates/mapping.md +++ b/src/templates/mapping.md @@ -50,3 +50,27 @@ These maps are work-in-progress, don't judge them yet :3c )}} {% endmacro examples %} + + +{% macro shuttle_examples(path) %} +{{ self::table( + title="In Rotation", + maps=["generic", "elkridge", "exo", "fland", "plasma"], + names=["Generic", "Elkridge", "Exo", "Fland", "Plasma"], + path=path +)}} +These shuttles belong to derotated and likely very outdated maps, not recommended to use for reference. +{{ self::table( + title="Derotated", + maps=["core", "relic"], + names=["Core", "Relic"], + path=path +)}} +These shuttles belong to work-in-progress maps, don't judge them yet :3c +{{ self::table( + title="Work In Progress", + maps=["senpeak"], + names=["Serenity Peak"], + path=path +)}} +{% endmacro shuttle_examples %}