Merge pull request #1625 from SquishyRolls/threepwood

Monkeying Around Update
This commit is contained in:
QuoteFox
2022-06-08 04:24:46 +01:00
committed by GitHub
17 changed files with 61 additions and 4 deletions
+41 -3
View File
@@ -160,9 +160,6 @@ obj/item/clothing/neck/stole/black
var/firstpickup = TRUE
var/pickupsound = TRUE
/obj/item/clothing/under/vaultsuit/no_sound
pickupsound = FALSE
/obj/item/clothing/under/vaultsuit/equipped(mob/user, slot)
. = ..()
if(!pickupsound)
@@ -198,3 +195,44 @@ obj/item/clothing/neck/stole/black
body_parts_covered = CHEST|LEGS|ARMS
min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT
/obj/item/clothing/suit/threepwoodjacket
name = "threepwood's jacket"
desc = "A jacket fit for a Mighty Pirate!"
icon = 'hyperstation/icons/obj/clothing/suits.dmi'
icon_state = "threepwoodjacket"
alternate_worn_icon = 'hyperstation/icons/mobs/suits.dmi'
item_state = "b_suit"
var/firstpickup = TRUE
var/pickupsound = TRUE
/obj/item/clothing/suit/threepwoodjacket/equipped(mob/user, slot)
. = ..()
if(!pickupsound)
return
if(!ishuman(user))
return
if(slot == SLOT_WEAR_SUIT)
if(!firstpickup)
SEND_SOUND(user, sound('hyperstation/sound/effects/vaultsuit/FalloutEXPUp.ogg', volume = 00))
else
firstpickup = FALSE
SEND_SOUND(user, sound('hyperstation/sound/effects/vaultsuit/bartandfink.ogg', volume = 60))
return
/obj/item/clothing/under/threepwood
name = "threepwood's outfit"
desc = "An outfit fit for a Mighty Pirate!."
icon = 'hyperstation/icons/obj/clothing/uniforms.dmi'
icon_state = "threepwood"
alternate_worn_icon = 'hyperstation/icons/mobs/uniforms.dmi'
item_state = "w_suit"
can_adjust = FALSE
/obj/item/clothing/shoes/threepwoodboots
name = "threepwood's boots"
desc = "A pair of boots fit for a Mighty Pirate!."
icon = 'hyperstation/icons/obj/clothing/shoes.dmi'
icon_state = "threepwoodboots"
alternate_worn_icon = 'hyperstation/icons/obj/clothing/shoes.dmi'
item_state = "threepwoodboots"
alternate_worn_icon = 'hyperstation/icons/mobs/feet.dmi'