mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-29 11:31:51 +00:00
Added a new costume landmark, which spawns one justice suit/one randomly chosen colour of helmet, so the costume has a chance of appearing in the theatre. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2713 316c924e-a436-60f5-8080-3fe189b3f50e
168 lines
5.7 KiB
Plaintext
168 lines
5.7 KiB
Plaintext
//Costume spawner
|
|
|
|
/obj/effect/landmark/costume/New() //costume spawner, selects a random subclass and disappears
|
|
|
|
var/list/options = typesof(/obj/effect/landmark/costume)
|
|
var/PICK= options[rand(1,options.len)]
|
|
new PICK(src.loc)
|
|
del(src)
|
|
|
|
//SUBCLASSES. Spawn a bunch of items and disappear likewise
|
|
/obj/effect/landmark/costume/chicken/New()
|
|
new /obj/item/clothing/suit/chickensuit(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/justice/New()
|
|
new /obj/item/clothing/suit/justice(src.loc)
|
|
var/CHOICE = pick( /obj/item/clothing/head/justice , /obj/item/clothing/head/justice/blue , /obj/item/clothing/head/justice/yellow , /obj/item/clothing/head/justice/green , /obj/item/clothing/head/justice/pink )
|
|
new CHOICE(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/madscientist/New()
|
|
new /obj/item/clothing/under/gimmick/rank/captain/suit(src.loc)
|
|
new /obj/item/clothing/head/flatcap(src.loc)
|
|
new /obj/item/clothing/suit/labcoat/mad(src.loc)
|
|
new /obj/item/clothing/glasses/gglasses(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/elpresidente/New()
|
|
new /obj/item/clothing/under/gimmick/rank/captain/suit(src.loc)
|
|
new /obj/item/clothing/head/flatcap(src.loc)
|
|
new /obj/item/clothing/mask/cigarette/cigar/havanian(src.loc)
|
|
new /obj/item/clothing/shoes/jackboots(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/nyangirl/New()
|
|
new /obj/item/clothing/under/schoolgirl(src.loc)
|
|
new /obj/item/clothing/head/kitty(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/maid/New()
|
|
new /obj/item/clothing/under/blackskirt(src.loc)
|
|
var/CHOICE = pick( /obj/item/clothing/head/beret , /obj/item/clothing/head/rabbitears )
|
|
new CHOICE(src.loc)
|
|
new /obj/item/clothing/glasses/blindfold(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/butler/New()
|
|
new /obj/item/clothing/suit/wcoat(src.loc)
|
|
new /obj/item/clothing/under/suit_jacket(src.loc)
|
|
new /obj/item/clothing/head/that(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/scratch/New()
|
|
new /obj/item/clothing/gloves/white(src.loc)
|
|
new /obj/item/clothing/shoes/white(src.loc)
|
|
new /obj/item/clothing/under/scratch(src.loc)
|
|
if (prob(30))
|
|
new /obj/item/clothing/head/helmet/cueball(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/highlander/New()
|
|
new /obj/item/clothing/under/kilt(src.loc)
|
|
new /obj/item/clothing/head/beret(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/prig/New()
|
|
new /obj/item/clothing/suit/wcoat(src.loc)
|
|
new /obj/item/clothing/glasses/monocle(src.loc)
|
|
var/CHOICE= pick( /obj/item/clothing/head/bowler, /obj/item/clothing/head/that)
|
|
new CHOICE(src.loc)
|
|
new /obj/item/clothing/shoes/black(src.loc)
|
|
new /obj/item/weapon/cane(src.loc)
|
|
new /obj/item/clothing/under/sl_suit(src.loc)
|
|
new /obj/item/clothing/mask/gas/fakemoustache(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/plaguedoctor/New()
|
|
new /obj/item/clothing/suit/bio_suit/plaguedoctorsuit(src.loc)
|
|
new /obj/item/clothing/head/plaguedoctorhat(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/nightowl/New()
|
|
new /obj/item/clothing/under/owl(src.loc)
|
|
new /obj/item/clothing/mask/owl_mask(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/waiter/New()
|
|
new /obj/item/clothing/under/waiter(src.loc)
|
|
var/CHOICE= pick( /obj/item/clothing/head/kitty, /obj/item/clothing/head/rabbitears)
|
|
new CHOICE(src.loc)
|
|
new /obj/item/clothing/suit/apron(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/pirate/New()
|
|
new /obj/item/clothing/under/pirate(src.loc)
|
|
new /obj/item/clothing/suit/pirate(src.loc)
|
|
var/CHOICE = pick( /obj/item/clothing/head/pirate , /obj/item/clothing/head/bandana )
|
|
new CHOICE(src.loc)
|
|
new /obj/item/clothing/glasses/eyepatch(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/commie/New()
|
|
new /obj/item/clothing/under/soviet(src.loc)
|
|
new /obj/item/clothing/head/ushanka(src.loc)
|
|
del(src)
|
|
/*
|
|
/obj/effect/landmark/costume/nurse/New()
|
|
new /obj/item/clothing/under/rank/nursesuit(src.loc)
|
|
new /obj/item/clothing/head/nursehat(src.loc)
|
|
new /obj/item/clothing/glasses/regular(src.loc)
|
|
new /obj/item/clothing/gloves/latex(src.loc)
|
|
new /obj/item/clothing/mask/surgical(src.loc)
|
|
del(src)*/
|
|
|
|
|
|
/obj/effect/landmark/costume/imperium_monk/New()
|
|
new /obj/item/clothing/suit/imperium_monk(src.loc)
|
|
if (prob(25))
|
|
new /obj/item/clothing/mask/gas/cyborg(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/holiday_priest/New()
|
|
new /obj/item/clothing/suit/holidaypriest(src.loc)
|
|
del(src)
|
|
|
|
/*
|
|
/obj/effect/landmark/costume/spiderman/New()
|
|
new /obj/item/clothing/under/spiderman(src.loc)
|
|
new /obj/item/clothing/mask/spiderman(src.loc)
|
|
del(src)*/
|
|
|
|
/obj/effect/landmark/costume/marisawizard/New()
|
|
new /obj/item/clothing/head/wizard/marisa(src.loc)
|
|
new/obj/item/clothing/suit/wizrobe/marisa(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/fakewizard/New()
|
|
new /obj/item/clothing/suit/wizrobe/fake(src.loc)
|
|
new /obj/item/clothing/head/wizard/fake(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/sexyclown/New()
|
|
new /obj/item/clothing/mask/gas/sexyclown(src.loc)
|
|
new /obj/item/clothing/under/sexyclown(src.loc)
|
|
del(src)
|
|
|
|
/obj/effect/landmark/costume/sexymime/New()
|
|
new /obj/item/clothing/mask/gas/sexymime(src.loc)
|
|
new /obj/item/clothing/under/sexymime(src.loc)
|
|
del(src)
|
|
|
|
|
|
/*
|
|
/obj/effect/landmark/costume/cyborg/New()
|
|
new /obj/item/clothing/mask/gas/cyborg(src.loc)
|
|
new /obj/item/clothing/shoes/cyborg(src.loc)
|
|
new /obj/item/clothing/suit/cyborg_suit(src.loc)
|
|
new /obj/item/clothing/gloves/cyborg(src.loc)
|
|
|
|
var/obj/item/weapon/card/id/W = new /obj/item/weapon/card/id(src.loc)
|
|
var/name = "Cyborg"
|
|
name += " [pick(rand(1, 999))]"
|
|
W.name = "Fake Cyborg Card"
|
|
W.access = list(access_theatre)
|
|
W.assignment = "Kill all humans! Beep. Boop."
|
|
W.registered = name
|
|
del(src)
|
|
*/ |