Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds mindflayer to antag mix #1703

Merged
merged 6 commits into from
Dec 19, 2024
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
27 changes: 27 additions & 0 deletions config/example/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1149,6 +1149,33 @@ tag = "blood_brothers"
"Solar Federation General",
]

[[antag_mix_gamemode_configuration.antag_scenarios_configuration]]
tag = "mindflayer"

[antag_mix_gamemode_configuration.antag_scenarios_configuration.params]
"required_players" = 1
"cost" = 1
"weight" = 1
"antag_cap" = 1
"candidates_required" = 1
"restricted_roles" = ["Cyborg", "AI"]
"protected_roles" = [
"Security Cadet",
"Security Officer",
"Warden",
"Detective",
"Head of Security",
"Captain",
"Blueshield",
"Nanotrasen Representative",
"Magistrate",
"Internal Affairs Agent",
"Nanotrasen Navy Officer",
"Special Operations Officer",
"Solar Federation General",
]
possible_species = ["Machine"]

[[antag_mix_gamemode_configuration.antag_scenarios_configuration]]
tag = "vox_raiders"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,36 @@
"Solar Federation General")
restricted_species = list("Machine")

/datum/antag_scenario/mindflayer
name = "Mindflayer"
config_tag = "mindflayer"
abstract = FALSE
antag_role = ROLE_MIND_FLAYER
antag_special_role = SPECIAL_ROLE_MIND_FLAYER
antag_datum = /datum/antagonist/mindflayer
required_players = 1
cost = 10
weight = 1
antag_cap = 1
candidates_required = 1
restricted_roles = list("Cyborg", "AI")
protected_roles = list(
"Security Cadet",
"Security Officer",
"Warden",
"Detective",
"Head of Security",
"Captain",
"Blueshield",
"Nanotrasen Representative",
"Magistrate",
"Internal Affairs Agent",
"Nanotrasen Navy Officer",
"Special Operations Officer",
"Syndicate Officer",
"Solar Federation General")
possible_species = list("Machine")

/datum/antag_scenario/team/blood_brothers
name = "Blood Brothers"
config_tag = "blood_brothers"
Expand Down
Loading