-
Notifications
You must be signed in to change notification settings - Fork 23
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
3c64a99
commit d7a94a8
Showing
18 changed files
with
1,176 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ | |
|
||
#define SECHUD_DEACON "huddeacon" | ||
#define SECHUD_FISCAL "hudfiscal" | ||
|
||
#define SENTIENT_DISEASE_HUD "23" |
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 |
---|---|---|
|
@@ -137,6 +137,10 @@ | |
"weight": 0 | ||
}, | ||
|
||
"Sentient Disease": { | ||
"weight": 0 | ||
}, | ||
|
||
"Paradox Clone": { | ||
"weight": 0 | ||
} | ||
|
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
16 changes: 16 additions & 0 deletions
16
tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/sentientdisease.ts
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,16 @@ | ||
import { Antagonist, Category } from '../base'; | ||
|
||
const SentientDisease: Antagonist = { | ||
key: 'sentientdisease', | ||
name: 'Sentient Disease', | ||
description: [ | ||
` | ||
Mutate and spread yourself and infect as much of the crew as possible | ||
with a deadly plague of your own creation. Don't forget, one infected | ||
crew must survive. | ||
`, | ||
], | ||
category: Category.Midround, | ||
}; | ||
|
||
export default SentientDisease; |
1 change: 1 addition & 0 deletions
1
zov_modular_arkstation/_master_files/code/_globalvars/lists/mobs.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 @@ | ||
GLOBAL_LIST_EMPTY(sentient_disease_instances) |
19 changes: 19 additions & 0 deletions
19
..._arkstation/_master_files/code/controllers/subsystem/dynamic/dynamic_rulesets_midround.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,19 @@ | ||
/// Midround Sentient Disease Ruleset (From Ghosts) | ||
/datum/dynamic_ruleset/midround/from_ghosts/sentient_disease | ||
name = "Sentient Disease" | ||
midround_ruleset_style = MIDROUND_RULESET_STYLE_HEAVY | ||
antag_datum = /datum/antagonist/disease | ||
antag_flag = ROLE_SENTIENT_DISEASE | ||
required_candidates = 1 | ||
minimum_players = 25 | ||
weight = 4 | ||
cost = 8 | ||
repeatable = TRUE | ||
|
||
/datum/dynamic_ruleset/midround/from_ghosts/sentient_disease/generate_ruleset_body(mob/applicant) | ||
var/mob/camera/disease/virus = new /mob/camera/disease(SSmapping.get_station_center()) | ||
virus.key = applicant.key | ||
INVOKE_ASYNC(virus, TYPE_PROC_REF(/mob/camera/disease, pick_name)) | ||
message_admins("[ADMIN_LOOKUPFLW(virus)] has been made into a sentient disease by the midround ruleset.") | ||
log_game("[key_name(virus)] was spawned as a sentient disease by the midround ruleset.") | ||
return virus |
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 @@ | ||
/datum/atom_hud/sentient_disease | ||
hud_icons = list(SENTIENT_DISEASE_HUD) |
Oops, something went wrong.