Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions src/mapping/guidelines/cargo/cargo_shuttle.md
Original file line number Diff line number Diff line change
@@ -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") }}
24 changes: 24 additions & 0 deletions src/templates/mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,27 @@ These maps are work-in-progress, don't judge them yet :3c
)}}
{% endmacro examples %}

<!-- PowerShell command for getting renders of all in rotation and outdated cargo shuttles (ran in the carpmosia repo folder) -->
<!-- dotnet run --project .\Content.MapRenderer\ -m --files ".\Resources\Maps\Shuttles\cargo_core.yml" ".\Resources\Maps\Shuttles\cargo_elkridge.yml" ".\Resources\Maps\Shuttles\cargo_exo.yml" ".\Resources\Maps\Shuttles\cargo_fland.yml" ".\Resources\Maps\Shuttles\cargo_plasma.yml" ".\Resources\Maps\Shuttles\cargo_relic.yml" ".\Resources\Maps\Shuttles\cargo.yml" -->
{% 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 %}
Loading