mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-10 06:34:45 +01:00
Lavaland Syndiebase Fixes & Tweaks (#12169)
* recreate, minus odds changes * CRLF->LF Co-authored-by: Kyep <Kyep@users.noreply.github.com>
This commit is contained in:
@@ -163,11 +163,11 @@
|
||||
var/pda = -1
|
||||
var/backpack_contents = -1
|
||||
var/suit_store = -1
|
||||
|
||||
var/hair_style
|
||||
var/facial_hair_style
|
||||
var/skin_tone
|
||||
|
||||
var/list/del_types = list(/obj/item/pda, /obj/item/radio/headset)
|
||||
|
||||
/obj/effect/mob_spawn/human/Initialize()
|
||||
if(ispath(outfit))
|
||||
@@ -227,7 +227,6 @@
|
||||
if(!isnum(T))
|
||||
outfit.vars[slot] = T
|
||||
H.equipOutfit(outfit)
|
||||
var/list/del_types = list(/obj/item/pda, /obj/item/radio/headset)
|
||||
for(var/del_type in del_types)
|
||||
var/obj/item/I = locate(del_type) in H
|
||||
qdel(I)
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
<br><i>You are free to attack anyone not aligned with the Syndicate in the vicinity of your base. <font size=6>DO NOT</font> work against Syndicate personnel (such as traitors or nuclear operatives). You may work with or against non-Syndicate antagonists on a case-by-case basis. <font size=6>DO NOT</font> leave your base without admin permission.</i>"
|
||||
outfit = /datum/outfit/lavaland_syndicate
|
||||
assignedrole = "Lavaland Syndicate"
|
||||
del_types = list() // Necessary to prevent del_types from removing radio!
|
||||
allow_species_pick = TRUE
|
||||
|
||||
/obj/effect/mob_spawn/human/lavaland_syndicate/Destroy()
|
||||
@@ -46,7 +47,7 @@
|
||||
suit = /obj/item/clothing/suit/storage/labcoat
|
||||
shoes = /obj/item/clothing/shoes/combat
|
||||
gloves = /obj/item/clothing/gloves/combat
|
||||
r_ear = /obj/item/radio/headset/syndicate/alt
|
||||
r_ear = /obj/item/radio/headset/syndicate/alt/lavaland // See del_types above
|
||||
back = /obj/item/storage/backpack
|
||||
r_pocket = /obj/item/gun/projectile/automatic/pistol
|
||||
id = /obj/item/card/id/syndicate/anyone
|
||||
@@ -74,9 +75,13 @@
|
||||
|
||||
/datum/outfit/lavaland_syndicate/comms
|
||||
name = "Lavaland Syndicate Comms Agent"
|
||||
r_ear = /obj/item/radio/headset/syndicate/alt // See del_types above
|
||||
r_hand = /obj/item/melee/energy/sword/saber
|
||||
mask = /obj/item/clothing/mask/chameleon/gps
|
||||
suit = /obj/item/clothing/suit/armor/vest
|
||||
backpack_contents = list(
|
||||
/obj/item/paper/monitorkey = 1 // message console on lavaland does NOT spawn with this
|
||||
)
|
||||
|
||||
/obj/item/clothing/mask/chameleon/gps/New()
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user