Original Port
This commit is contained in:
@@ -581,3 +581,14 @@
|
||||
var/mob/living/carbon/human/H = user
|
||||
H.update_sight()
|
||||
|
||||
/obj/item/clothing/glasses/osi
|
||||
name = "O.S.I. Sunglasses"
|
||||
desc = "There's no such thing as good news! Just bad news and... weird news.."
|
||||
icon_state = "osi_glasses"
|
||||
item_state = "osi_glasses"
|
||||
|
||||
/obj/item/clothing/glasses/phantom
|
||||
name = "Phantom Thief Mask"
|
||||
desc = "Lookin' cool."
|
||||
icon_state = "phantom_glasses"
|
||||
item_state = "phantom_glasses"
|
||||
|
||||
@@ -130,3 +130,9 @@
|
||||
base_knockdown = 1.75 SECONDS
|
||||
min_distance = 2
|
||||
skill_mod = -1
|
||||
|
||||
/obj/item/clothing/gloves/tackler/football
|
||||
name = "football gloves"
|
||||
desc = "Gloves for football players! Teaches them how to tackle like a pro."
|
||||
icon_state = "tackle_gloves"
|
||||
item_state = "tackle_gloves"
|
||||
|
||||
@@ -90,23 +90,34 @@
|
||||
item_state = "ushankadown"
|
||||
alternate_screams = list('sound/voice/human/cyka1.ogg', 'sound/voice/human/cheekibreeki.ogg')
|
||||
flags_inv = HIDEEARS|HIDEHAIR
|
||||
var/earflaps = 1
|
||||
var/earflaps = TRUE
|
||||
cold_protection = HEAD
|
||||
min_cold_protection_temperature = FIRE_HELM_MIN_TEMP_PROTECT
|
||||
///Sprite visible when the ushanka flaps are folded up.
|
||||
var/upsprite = "ushankaup"
|
||||
///Sprite visible when the ushanka flaps are folded down.
|
||||
var/downsprite = "ushankadown"
|
||||
|
||||
dog_fashion = /datum/dog_fashion/head/ushanka
|
||||
|
||||
/obj/item/clothing/head/ushanka/attack_self(mob/user)
|
||||
if(earflaps)
|
||||
src.icon_state = "ushankaup"
|
||||
src.item_state = "ushankaup"
|
||||
earflaps = 0
|
||||
icon_state = upsprite
|
||||
item_state = upsprite
|
||||
to_chat(user, "<span class='notice'>You raise the ear flaps on the ushanka.</span>")
|
||||
else
|
||||
src.icon_state = "ushankadown"
|
||||
src.item_state = "ushankadown"
|
||||
earflaps = 1
|
||||
icon_state = downsprite
|
||||
item_state = downsprite
|
||||
to_chat(user, "<span class='notice'>You lower the ear flaps on the ushanka.</span>")
|
||||
earflaps = !earflaps
|
||||
|
||||
/obj/item/clothing/head/ushanka/soviet
|
||||
name = "soviet ushanka"
|
||||
desc = "For the union!"
|
||||
icon_state = "sovietushankadown"
|
||||
item_state = "sovietushankadown"
|
||||
upsprite = "sovietushankaup"
|
||||
downsprite = "sovietushankadown"
|
||||
|
||||
/*
|
||||
* Pumpkin head
|
||||
@@ -315,3 +326,56 @@
|
||||
|
||||
/datum/component/storage/concrete/pockets/tiny/spacenam
|
||||
attack_hand_interact = TRUE //So you can actually see what you stuff in there
|
||||
|
||||
//families
|
||||
/obj/item/clothing/head/irs
|
||||
name = "internal revenue service cap"
|
||||
icon_state = "irs_hat"
|
||||
item_state = "irs_hat"
|
||||
|
||||
/obj/item/clothing/head/pg
|
||||
name = "powder ganger beanie"
|
||||
icon_state = "pg_hat"
|
||||
item_state = "pg_hat"
|
||||
|
||||
/obj/item/clothing/head/tmc
|
||||
name = "Lost M.C. bandana"
|
||||
icon_state = "tmc_hat"
|
||||
item_state = "tmc_hat"
|
||||
|
||||
/obj/item/clothing/head/deckers
|
||||
name = "Decker headphones"
|
||||
icon_state = "decker_hat"
|
||||
item_state = "decker_hat"
|
||||
|
||||
/obj/item/clothing/head/morningstar
|
||||
name = "Morningstar beret"
|
||||
icon_state = "morningstar_hat"
|
||||
item_state = "morningstar_hat"
|
||||
|
||||
/obj/item/clothing/head/saints
|
||||
name = "Saints hat"
|
||||
icon_state = "saints_hat"
|
||||
item_state = "saints_hat"
|
||||
|
||||
/obj/item/clothing/head/allies
|
||||
name = "allies helmet"
|
||||
icon_state = "allies_helmet"
|
||||
item_state = "allies_helmet"
|
||||
|
||||
/obj/item/clothing/head/yuri
|
||||
name = "yuri initiate helmet"
|
||||
icon_state = "yuri_helmet"
|
||||
item_state = "yuri_helmet"
|
||||
clothing_flags = SNUG_FIT
|
||||
flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR|HIDESNOUT
|
||||
|
||||
/obj/item/clothing/head/sybil_slickers
|
||||
name = "sybil slickers helmet"
|
||||
icon_state = "football_helmet_blue"
|
||||
item_state = "football_helmet_blue"
|
||||
|
||||
/obj/item/clothing/head/basil_boys
|
||||
name = "basil boys helmet"
|
||||
icon_state = "football_helmet_red"
|
||||
item_state = "football_helmet_red"
|
||||
|
||||
@@ -273,3 +273,11 @@
|
||||
item_state = "hunter"
|
||||
resistance_flags = FIRE_PROOF | ACID_PROOF
|
||||
flags_inv = HIDEFACIALHAIR|HIDEFACE|HIDEEYES|HIDEEARS|HIDEHAIR
|
||||
|
||||
/obj/item/clothing/mask/gas/driscoll
|
||||
name = "driscoll mask"
|
||||
desc = "Great for train hijackings. Works like a normal full face gas mask, but won't conceal your identity."
|
||||
icon_state = "driscoll_mask"
|
||||
flags_inv = HIDEFACIALHAIR
|
||||
w_class = WEIGHT_CLASS_NORMAL
|
||||
item_state = "driscoll_mask"
|
||||
|
||||
@@ -541,3 +541,39 @@
|
||||
desc = "They got me for my foams!"
|
||||
icon_state = "SwagShoes"
|
||||
item_state = "SwagShoes"
|
||||
|
||||
/obj/item/clothing/shoes/phantom
|
||||
name = "phantom shoes"
|
||||
desc = "Excellent for when you need to do cool flashy flips."
|
||||
icon_state = "phantom_shoes"
|
||||
item_state = "phantom_shoes"
|
||||
|
||||
/obj/item/clothing/shoes/saints
|
||||
name = "saints sneakers"
|
||||
desc = "Officially branded Saints sneakers. Incredibly valuable!"
|
||||
icon_state = "saints_shoes"
|
||||
item_state = "saints_shoes"
|
||||
|
||||
/obj/item/clothing/shoes/morningstar
|
||||
name = "morningstar boots"
|
||||
desc = "The most expensive boots on this station. Wearing them dropped the value by about 50%."
|
||||
icon_state = "morningstar_shoes"
|
||||
item_state = "morningstar_shoes"
|
||||
|
||||
/obj/item/clothing/shoes/deckers
|
||||
name = "deckers rollerskates"
|
||||
desc = "t3h c00L3st sh03z j00'LL 3v3r f1nd."
|
||||
icon_state = "decker_shoes"
|
||||
item_state = "decker_shoes"
|
||||
|
||||
/obj/item/clothing/shoes/sybil_slickers
|
||||
name = "sybil slickers shoes"
|
||||
desc = "FOOTBALL! YEAH!"
|
||||
icon_state = "sneakers_blue"
|
||||
item_state = "sneakers_blue"
|
||||
|
||||
/obj/item/clothing/shoes/basil_boys
|
||||
name = "basil boys shoes"
|
||||
desc = "FOOTBALL! YEAH!"
|
||||
icon_state = "sneakers_red"
|
||||
item_state = "sneakers_red"
|
||||
|
||||
@@ -1241,3 +1241,101 @@
|
||||
desc = "It looks like someone dragged this out of a muddy lake."
|
||||
icon_state = "bomberalt"
|
||||
item_state = "bomberalt"
|
||||
|
||||
/obj/item/clothing/suit/driscoll
|
||||
name = "driscoll poncho"
|
||||
desc = "Keeping you warm in the harsh cold of space."
|
||||
icon_state = "driscoll_suit"
|
||||
item_state = "driscoll_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/irs
|
||||
name = "internal revenue service jacket"
|
||||
desc = "I'm crazy enough to take on The Owl, but the IRS? Nooo thank you!"
|
||||
icon_state = "irs_suit"
|
||||
item_state = "irs_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/osi
|
||||
name = "\improper O.S.I. body armor"
|
||||
desc = "You're beyond good and evil, super man. You work for the government. And you're a tool, boy, a tool! Built for a single purpose by the United States of shut your third fucking damn eye for a fucking reason! You can't teach a hammer to love nails, son. That dog don't hunt!"
|
||||
icon_state = "osi_suit"
|
||||
item_state = "osi_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/tmc
|
||||
name = "\improper Lost M.C. cut"
|
||||
desc = "Making sure everyone knows you're in the best biker gang this side of Alderney."
|
||||
icon_state = "tmc_suit"
|
||||
item_state = "tmc_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/pg
|
||||
name = "powder ganger jacket"
|
||||
desc = "Remind Security of their mistakes in giving prisoners blasting charges."
|
||||
icon_state = "pg_suit"
|
||||
item_state = "pg_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/deckers
|
||||
name = "decker hoodie"
|
||||
desc = "Based? Based on what?"
|
||||
icon_state = "decker_suit"
|
||||
item_state = "decker_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/morningstar
|
||||
name = "morningstar coat"
|
||||
desc = "This coat costs more than you've ever made in your entire life."
|
||||
icon_state = "morningstar_suit"
|
||||
item_state = "morningstar_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/saints
|
||||
name = "Third Street Saints fur coat"
|
||||
desc = "Rated 10 out of 10 in Cosmo for best coat brand."
|
||||
icon_state = "saints_suit"
|
||||
item_state = "saints_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/phantom
|
||||
name = "phantom thief coat"
|
||||
desc = "Your foes will never see you coming in this stealthy yet stylish getup."
|
||||
icon_state = "phantom_suit"
|
||||
item_state = "phantom_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/allies
|
||||
name = "allies body armor"
|
||||
desc = "How 'bout some action!? Sponsored by DonkSoft Co. for historical reenactment of the Third World War!"
|
||||
icon_state = "allies_armor"
|
||||
item_state = "allies_armor"
|
||||
body_parts_covered = CHEST|GROIN
|
||||
|
||||
/obj/item/clothing/suit/soviet
|
||||
name = "soviet armored coat"
|
||||
desc = "Conscript reporting! Sponsored by DonkSoft Co. for historical reenactment of the Third World War!"
|
||||
icon_state = "soviet_suit"
|
||||
item_state = "soviet_suit"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/yuri
|
||||
name = "yuri initiate coat"
|
||||
desc = "Yuri is master! Sponsored by DonkSoft Co. for historical reenactment of the Third World War!"
|
||||
icon_state = "yuri_coat"
|
||||
item_state = "yuri_coat"
|
||||
body_parts_covered = CHEST|GROIN|ARMS
|
||||
|
||||
/obj/item/clothing/suit/sybil_slickers
|
||||
name = "sybil slickers protective gear"
|
||||
desc = "Given to members of the Sybil Slickers football team!"
|
||||
icon_state = "football_armor_blue"
|
||||
item_state = "football_armor_blue"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
/obj/item/clothing/suit/basil_boys
|
||||
name = "basil boys protective gear"
|
||||
desc = "Given to members of the Basil Boys football team!"
|
||||
icon_state = "football_armor_red"
|
||||
item_state = "football_armor_red"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
|
||||
@@ -356,6 +356,90 @@
|
||||
icon_state = "sakura_kimono"
|
||||
item_state = "sakura_kimono"
|
||||
|
||||
/obj/item/clothing/under/costume/irs
|
||||
name = "internal revenue service outfit"
|
||||
icon_state = "irs_jumpsuit"
|
||||
item_state = "irs_jumpsuit"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/osi
|
||||
name = "O.S.I. jumpsuit"
|
||||
icon_state = "osi_jumpsuit"
|
||||
item_state = "osi_jumpsuit"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/tmc
|
||||
name = "Lost MC clothing"
|
||||
icon_state = "tmc_jumpsuit"
|
||||
item_state = "tmc_jumpsuit"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/pg
|
||||
name = "powder ganger prison jumpsuit"
|
||||
icon_state = "pg_jumpsuit"
|
||||
item_state = "pg_jumpsuit"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/driscoll
|
||||
name = "O'Driscoll outfit"
|
||||
icon_state = "driscoll_jumpsuit"
|
||||
item_state = "driscoll_jumpsuit"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/deckers
|
||||
name = "deckers outfit"
|
||||
icon_state = "decker_jumpsuit"
|
||||
item_state = "decker_jumpsuit"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/morningstar
|
||||
name = "Morningstar suit"
|
||||
icon_state = "morningstar_jumpsuit"
|
||||
item_state = "morningstar_jumpsuit"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/saints
|
||||
name = "Saints outfit"
|
||||
icon_state = "saints_jumpsuit"
|
||||
item_state = "saints_jumpsuit"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/phantom
|
||||
name = "Phantom Thief outfit"
|
||||
icon_state = "phantom_jumpsuit"
|
||||
item_state = "phantom_jumpsuit"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/allies
|
||||
name = "allies tanktop"
|
||||
icon_state = "allies_uniform"
|
||||
item_state = "allies_uniform"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/soviet_families
|
||||
name = "soviet conscript uniform"
|
||||
icon_state = "soviet_uniform"
|
||||
item_state = "soviet_uniform"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/yuri
|
||||
name = "yuri initiate jumpsuit"
|
||||
icon_state = "yuri_uniform"
|
||||
item_state = "yuri_uniform"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/sybil_slickers
|
||||
name = "sybil slickers uniform"
|
||||
icon_state = "football_blue"
|
||||
item_state = "football_blue"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/basil_boys
|
||||
name = "basil boys uniform"
|
||||
icon_state = "football_red"
|
||||
item_state = "football_red"
|
||||
can_adjust = FALSE
|
||||
|
||||
/obj/item/clothing/under/costume/swagoutfit
|
||||
name = "Swag outfit"
|
||||
desc = "Why don't you go secure some bitches?"
|
||||
|
||||
Reference in New Issue
Block a user