Contract kit's specialist space suit now has it's own sprite + greet sound when assigning to tablet (#44767)

About The Pull Request

Gives the specialist space suit supplied in the contract kit it's own custom sprite. Sorry about quality, compression seems to mess it up a bit.

When first assigning yourself to the tablet too, a greeting soundclip will play.

Sprite
Why It's Good For The Game

Laying down the foundation for it's own antag type.
Changelog

cl
add: Contract kit's specialist space suit now has its custom sprite.
add: Assigning to tablet now plays greeting soundclip.
/cl
This commit is contained in:
Akrilla
2019-06-28 08:24:25 +01:00
committed by oranges
parent ecc330d842
commit 31949285c8
8 changed files with 11 additions and 10 deletions

View File

@@ -248,8 +248,8 @@
return ..() return ..()
/obj/item/storage/box/syndicate/contractor_loadout/PopulateContents() /obj/item/storage/box/syndicate/contractor_loadout/PopulateContents()
new /obj/item/clothing/head/helmet/space/syndicate/contract/black/red(src) new /obj/item/clothing/head/helmet/space/syndicate/contract(src)
new /obj/item/clothing/suit/space/syndicate/contract/black/red(src) new /obj/item/clothing/suit/space/syndicate/contract(src)
new /obj/item/clothing/under/chameleon(src) new /obj/item/clothing/under/chameleon(src)
new /obj/item/clothing/mask/chameleon(src) new /obj/item/clothing/mask/chameleon(src)
new /obj/item/card/id/syndicate(src) new /obj/item/card/id/syndicate(src)

View File

@@ -135,21 +135,21 @@
item_state = "syndicate-black-red" item_state = "syndicate-black-red"
//Black-red syndicate contract varient //Black-red syndicate contract varient
/obj/item/clothing/head/helmet/space/syndicate/contract/black/red /obj/item/clothing/head/helmet/space/syndicate/contract
name = "contractor helmet" name = "contractor helmet"
desc = "A specalised black and red helmet that's quicker, and more compact that it's counterpart. Can be ultra-compressed into even the tightest of spaces." desc = "A specialised black and gold helmet that's quicker, and more compact than its standard Syndicate counterpart. Can be ultra-compressed into even the tightest of spaces."
slowdown = 0.55 slowdown = 0.55
w_class = WEIGHT_CLASS_SMALL w_class = WEIGHT_CLASS_SMALL
icon_state = "syndicate-helm-black-red" icon_state = "syndicate-contract-helm"
item_state = "syndicate-helm-black-red" item_state = "syndicate-contract-helm"
/obj/item/clothing/suit/space/syndicate/contract/black/red /obj/item/clothing/suit/space/syndicate/contract
name = "contractor space suit" name = "contractor space suit"
desc = "A specalised black and red space suit that's quicker, and more compact that it's counterpart. Can be ultra-compressed into even the tightest of spaces." desc = "A specialised black and gold space suit that's quicker, and more compact than its standard Syndicate counterpart. Can be ultra-compressed into even the tightest of spaces."
slowdown = 0.55 slowdown = 0.55
w_class = WEIGHT_CLASS_SMALL w_class = WEIGHT_CLASS_SMALL
icon_state = "syndicate-black-red" icon_state = "syndicate-contract"
item_state = "syndicate-black-red" item_state = "syndicate-contract"
//Black with yellow/red engineering syndicate space suit //Black with yellow/red engineering syndicate space suit
/obj/item/clothing/head/helmet/space/syndicate/black/engie /obj/item/clothing/head/helmet/space/syndicate/black/engie

View File

@@ -42,6 +42,7 @@
// We don't give them more contracts if they somehow assign themselves to a new uplink. // We don't give them more contracts if they somehow assign themselves to a new uplink.
if (!traitor_data.assigned_contracts.len) if (!traitor_data.assigned_contracts.len)
traitor_data.create_contracts() traitor_data.create_contracts()
user.playsound_local(user, 'sound/effects/contractstartup.ogg', 100, 0)
hard_drive.traitor_data = traitor_data hard_drive.traitor_data = traitor_data
else else
error = "Incorrect login details." error = "Incorrect login details."

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 KiB

After

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 338 KiB

After

Width:  |  Height:  |  Size: 343 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 KiB

After

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.