Skip to content

Commit

Permalink
Adds mindflayer to antag mix (#1703)
Browse files Browse the repository at this point in the history
<!-- Пишите **НИЖЕ** заголовков и **ВЫШЕ** комментариев, иначе что то
может пойти не так. -->
<!-- Вы можете прочитать Contributing.MD, если хотите узнать больше. -->

## Что этот PR делает
Добавляет нового антагониста пожирателя разума в режим Antag Mix
fix #1636
<!-- Вкратце опишите изменения, которые вносите. -->
<!-- Опишите **все** изменения, так как противное может сказаться на
рассмотрении этого PR'а! -->
<!-- Если вы исправляете Issue, добавьте "Fixes #xxxx" (где xxxx - номер
Issue) где-нибудь в описании PR'а. Это автоматически закроет Issue после
принятия PR'а. -->

## Почему это хорошо для игры
Исправлен не дочет разработки.
<!-- Опишите, почему, по вашему, следует добавить эти изменения в игру.
-->


## Тестирование

![image](https://github.com/user-attachments/assets/5c334371-f37b-4f0b-b5bf-0bb4c4c1f642)
Получил нужную роль на локалке
<!-- Как вы тестировали свой PR, если делали это вовсе? -->

## Changelog

:cl:
tweak: Пожиратель разума теперь может появляться в режиме Antag Mix.
/:cl:

<!-- Оба :cl:'а должны быть на месте, что-бы чейнджлог работал! Вы
можете написать свой ник справа от первого :cl:, если хотите. Иначе
будет использован ваш ник на ГитХабе. -->
<!-- Вы можете использовать несколько записей с одинаковым префиксом
(Они используются только для иконки в игре) и удалить ненужные. Помните,
что чейнджлог должен быть понятен обычным игроком. -->
<!-- Если чейнджлог не влияет на игроков(например, это рефактор), вы
можете исключить всю секцию. -->
  • Loading branch information
Drsmail authored Dec 19, 2024
1 parent d4d76a6 commit 024aac7
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
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

0 comments on commit 024aac7

Please sign in to comment.