-
Notifications
You must be signed in to change notification settings - Fork 270
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
09a53fc
commit 93ee5f6
Showing
29 changed files
with
580 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/// the uplink flag for contractors | ||
#define UPLINK_CONTRACTORS (1 << 6) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
//this file contains extra stuff we have for uplink components like contractors | ||
#define STARTING_COMMON_CONTRACTS 3 | ||
#define STARTING_UNCOMMON_CONTRACTS 2 | ||
#define STARTING_RARE_CONTRACTS 1 | ||
/datum/component/uplink/proc/become_contractor() | ||
uplink_handler.uplink_flag = UPLINK_CONTRACTORS | ||
uplink_handler.clear_secondaries() | ||
uplink_handler.generate_objectives(list( | ||
/datum/traitor_objective/target_player/kidnapping/common = STARTING_COMMON_CONTRACTS, | ||
/datum/traitor_objective/target_player/kidnapping/uncommon = STARTING_UNCOMMON_CONTRACTS, | ||
/datum/traitor_objective/target_player/kidnapping/rare = STARTING_RARE_CONTRACTS, | ||
)) | ||
for(var/item as anything in subtypesof(/datum/contractor_item)) | ||
uplink_handler.contractor_market_items += new item | ||
|
||
#undef STARTING_COMMON_CONTRACTS | ||
#undef STARTING_UNCOMMON_CONTRACTS | ||
#undef STARTING_RARE_CONTRACTS |
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
4 changes: 0 additions & 4 deletions
4
monkestation/code/modules/antagonists/contractor/datums/contractor_hub.dm
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.