Adds three new mixed modes!

This commit is contained in:
Datraen
2016-04-17 22:53:24 -04:00
parent a1ae964c16
commit a681213a02
5 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/datum/game_mode/mercren
name = "Mercenaries & Renegades"
round_description = "A mercenary team has invaded the station, as well as other having brought their own form protection."
extended_round_description = "Mercenaries and traitors spawn during this round."
config_tag = "mercren"
required_players = 12 //What could possibly go wrong?
required_players_secret = 12
required_enemies = 8
end_on_antag_death = 0
antag_tags = list(MODE_MERCENARY, MODE_RENEGADE)
require_all_templates = 1

View File

@@ -0,0 +1,11 @@
/datum/game_mode/mercwiz
name = "Mercenaries & Wizard"
round_description = "A mercenary team and a wizard have invaded the station!"
extended_round_description = "Mercenaries and wizard spawn during this round."
config_tag = "mercwiz"
required_players = 15 //I don't think we can have it lower and not need an ERT every round.
required_players_secret = 15 //I don't think we can have it lower and not need an ERT every round.
required_enemies = 7
end_on_antag_death = 0
antag_tags = list(MODE_MERCENARY, MODE_WIZARD)
require_all_templates = 1

View File

@@ -0,0 +1,11 @@
/datum/game_mode/traitorren
name = "Traitors & Renegades"
round_description = "Subversive elements have invaded the station, and certain individuals are feeling uncertain about their safety."
extended_round_description = "Traitors and renegades spawn during this round."
config_tag = "traitorren"
required_players = 10 //I don't think we can have it lower and not need an ERT every round.
required_players_secret = 11 //I don't think we can have it lower and not need an ERT every round.
required_enemies = 4
end_on_antag_death = 0
antag_tags = list(MODE_TRAITOR, MODE_RENEGADE)
require_all_templates = 1

View File

@@ -0,0 +1,4 @@
author: Datraen
delete-after: True
changes:
- rscadd: "Added three mixed modes, 'Mercenaries & Wizard', 'Mercenaries & Renegades', and 'Traitors & Renegades'."

View File

@@ -339,8 +339,11 @@
#include "code\game\gamemodes\mixed\infestation.dm"
#include "code\game\gamemodes\mixed\intrigue.dm"
#include "code\game\gamemodes\mixed\lizard.dm"
#include "code\game\gamemodes\mixed\mercrenegade.dm"
#include "code\game\gamemodes\mixed\mercwiz.dm"
#include "code\game\gamemodes\mixed\paranoia.dm"
#include "code\game\gamemodes\mixed\traitorling.dm"
#include "code\game\gamemodes\mixed\traitorrenegade.dm"
#include "code\game\gamemodes\mixed\uprising.dm"
#include "code\game\gamemodes\mixed\visitors.dm"
#include "code\game\gamemodes\ninja\ninja.dm"