-
-
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.
Adds OBS trade station, more updates
- Loading branch information
1 parent
2c96e6e
commit 16d7606
Showing
7 changed files
with
101 additions
and
4 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
35 changes: 35 additions & 0 deletions
35
code/modules/trading_stations/trading_station_types/3_very_rare/obs.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,35 @@ | ||
// Sells stolen shit; | ||
// Unlocked inventory contains their own unique items | ||
/datum/trading_station/obs | ||
name_pool = list( | ||
"FTB \"Eclipse\"" = "Free Trade Beacon \"Eclipse\": DATA MISSING | CONTACT SUP-#*@$! <b>Glory to the Order and the new humanity!</b>", | ||
) | ||
uid = "obs" | ||
unlock_favor = 10000 | ||
faction = FACTION_TERRASENATE_OBS | ||
spawn_probability = 15 | ||
start_hidden = TRUE | ||
markup = 1.5 | ||
inventory = list( | ||
TRADE_CAT_EQUIPMENT = list( | ||
/obj/item/device/personal_shield = GOODS_DEFAULT, | ||
/obj/item/silencer = GOODS_DEFAULT, | ||
/obj/item/clothing/glasses/tacgoggles = GOODS_DEFAULT, | ||
/obj/item/clothing/glasses/thermal = GOODS_DEFAULT, | ||
/obj/item/clothing/glasses/night = GOODS_DEFAULT, | ||
/obj/item/contraband/poster/order_black_of_sun = GOODS_DEFAULT, | ||
), | ||
TRADE_CAT_CLOTHING = list( | ||
/obj/item/clothing/gloves/thick/combat = GOODS_DEFAULT, | ||
), | ||
TRADE_CAT_WEAPONS = list( | ||
/obj/item/tank/phoron/onetankbomb = GOODS_DEFAULT, | ||
/obj/item/grenade/frag = GOODS_DEFAULT, | ||
), | ||
) | ||
hidden_inventory = list( | ||
TRADE_CAT_VOIDSUIT = list( | ||
/obj/item/clothing/suit/space/void/merc/obs = GOODS_DATA("eclipse void suit", list(1, 3), 4000), | ||
/obj/item/clothing/head/helmet/space/void/merc/obs = GOODS_DATA("eclipse void suit helmet", list(1, 3), 3000), | ||
), | ||
) |