-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fbd555
commit c7eb310
Showing
10 changed files
with
102 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
code/modules/trading_stations/trading_station_types/0_always_spawn/atmos.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/datum/trading_station/atmospherics | ||
name_pool = list( | ||
"FTB \"Deuterium Star\"" = "Free Trade Beacon \"Deuterium Star\": All the gases of the world in convenient packaging.", | ||
"FTB \"Breathe-Easy\"" = "Free Trade Beacon \"Breathe-Easy\": Fill those corridors with fresh-fresh air!", | ||
) | ||
uid = "atmospherics" | ||
unlock_favor = 9000 | ||
random_factions = list( | ||
FACTION_INDEPENDENT, | ||
FACTION_ISC, | ||
) | ||
spawn_always = TRUE | ||
markup = 1.4 | ||
inventory = list( | ||
TRADE_CAT_EQUIPMENT = list( | ||
/obj/item/tank/oxygen = GOODS_DEFAULT, | ||
/obj/item/tank/nitrogen = GOODS_DEFAULT, | ||
/obj/item/tank/emergency/oxygen = GOODS_DEFAULT, | ||
/obj/item/tank/emergency/oxygen/double = GOODS_DEFAULT, | ||
/obj/item/tank/jetpack/carbondioxide = GOODS_DEFAULT, | ||
/obj/item/tank/jetpack/oxygen = GOODS_DEFAULT, | ||
), | ||
TRADE_CAT_CANISTERS = list( | ||
/obj/machinery/portable_atmospherics/canister/empty = CUSTOM_GOODS_NAME("empty canister"), | ||
/obj/machinery/portable_atmospherics/canister/oxygen = GOODS_DEFAULT, | ||
/obj/machinery/portable_atmospherics/canister/nitrogen = GOODS_DEFAULT, | ||
/obj/machinery/portable_atmospherics/canister/air = GOODS_DEFAULT, | ||
/obj/machinery/portable_atmospherics/canister/carbon_dioxide = GOODS_DEFAULT, | ||
/obj/machinery/portable_atmospherics/canister/phoron = GOODS_DEFAULT, | ||
), | ||
TRADE_CAT_MACHINES = list( | ||
/obj/machinery/portable_atmospherics/powered/pump = GOODS_DEFAULT, | ||
/obj/machinery/portable_atmospherics/powered/scrubber = GOODS_DEFAULT, | ||
), | ||
) | ||
hidden_inventory = list( | ||
TRADE_CAT_EQUIPMENT = list( | ||
/obj/item/tank/jetpack/ascent = CUSTOM_GOODS_NAME("unidentified alien jetpack"), | ||
), | ||
TRADE_CAT_CANISTERS = list( | ||
/obj/machinery/portable_atmospherics/canister/tritium = GOODS_DEFAULT, | ||
/obj/machinery/portable_atmospherics/canister/deuterium = GOODS_DEFAULT, | ||
), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.