Adds two away missions ghost roles (#7450)

This commit is contained in:
Alberyk
2019-11-21 16:55:59 -03:00
committed by Werner
parent a60804c24f
commit beb35d6fd3
29 changed files with 571 additions and 342 deletions
+2 -1
View File
@@ -169,6 +169,7 @@
mob_name_prefix = "Zosaa "
uses_species_whitelist = FALSE // Anyone should be able to play a Kataphract Unathi
possible_species = list("Unathi")
extra_languages = list(LANGUAGE_UNATHI, LANGUAGE_AZAZIBA)
/datum/ghostspawner/human/ert/kataphract/specialist
name = "Kataphract-Hopeful Specialist"
@@ -184,4 +185,4 @@
desc = "A brave Saa (Knight) of the local Kataphract Guild. Two together operate as leaders of the team."
max_count = 2
outfit = /datum/outfit/admin/ert/kataphract/leader
mob_name_prefix = "Saa "
mob_name_prefix = "Saa "
@@ -16,6 +16,7 @@
var/possible_species = list("Human")
var/possible_genders = list(MALE,FEMALE)
var/allow_appearance_change = APPEARANCE_PLASTICSURGERY
var/list/extra_languages = list() //Which languages are added to this mob
var/assigned_role = null
var/special_role = null
@@ -122,6 +123,9 @@
M.preEquipOutfit(outfit, FALSE)
M.equipOutfit(outfit, FALSE)
for(var/language in extra_languages)
M.add_language(language)
M.force_update_limbs()
M.update_eyes()
M.regenerate_icons()
@@ -0,0 +1,73 @@
/datum/ghostspawner/human/pra_cosmonaut
short_name = "pra_cosmonaut"
name = "Kosmostrelki"
desc = "Protect the People's Republic of Adhomai's possessions on space."
tags = list("External")
enabled = TRUE
spawnpoints = list("pra_cosmonaut")
req_perms = null
max_count = 3
outfit = /datum/outfit/admin/pra_cosmonaut
possible_species = list("Tajara", "M'sai Tajara", "Zhan-Khazan Tajara")
possible_genders = list(MALE,FEMALE)
allow_appearance_change = APPEARANCE_PLASTICSURGERY
assigned_role = "Kosmostrelki"
special_role = "Kosmostrelki"
respawn_flag = null
extra_languages = list(LANGUAGE_SIIK_MAAS)
/datum/ghostspawner/human/pra_cosmonaut/commissar
short_name = "pra_commissar"
name = "Kosmostrelki Party Commissar"
desc = "Protect the People's Republic of Adhomai's possessions on space, and ensure that the Kosmostrelki follow the principles of Hadiism."
max_count = 1
assigned_role = "Party Commissar"
special_role = "Party Commissar"
req_species_whitelist = "Tajara"
outfit = /datum/outfit/admin/pra_cosmonaut/commissar
possible_species = list("Tajara", "M'sai Tajara")
/datum/outfit/admin/pra_cosmonaut
name = "Kosmostrelki"
uniform = /obj/item/clothing/under/tajaran/cosmonaut
shoes = /obj/item/clothing/shoes/jackboots/unathi
belt = /obj/item/storage/belt/military
back = /obj/item/gun/projectile/shotgun/pump/rifle
id = /obj/item/card/id/syndicate
accessory = /obj/item/clothing/accessory/badge/hadii_card
belt_contents = list(
/obj/item/ammo_magazine/boltaction = 3,
/obj/item/grenade/smokebomb = 2,
/obj/item/plastique = 1,
/obj/item/gun/projectile/pistol/adhomai = 1
)
l_hand = /obj/item/clothing/accessory/storage/bayonet
r_hand = /obj/item/storage/field_ration
/datum/outfit/admin/pra_cosmonaut/commissar
name = "Party Commissar"
uniform = /obj/item/clothing/under/tajaran/cosmonaut/commissar
head = /obj/item/clothing/head/tajaran/cosmonaut_commissar
accessory = /obj/item/clothing/accessory/hadii_pin
belt = /obj/item/gun/projectile/deagle/adhomai
belt_contents = null
back = /obj/item/storage/backpack/satchel
backpack_contents = list(
/obj/item/clothing/accessory/holster/hip = 1,
/obj/item/ammo_magazine/a50 = 2,
/obj/item/material/knife/trench = 1,
/obj/item/storage/box/hadii_manifesto = 1,
/obj/item/storage/box/hadii_card = 1
)
l_hand = /obj/item/device/megaphone
r_hand = null