Skip to content
This repository has been archived by the owner on Oct 15, 2023. It is now read-only.

New costumes of fox and unicorn #206

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions code/modules/client/preference/loadout/loadout_shoes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,11 @@
/datum/gear/shoes/shark_light
display_name = "shark lightblue slippers"
path = /obj/item/clothing/shoes/shark/light

/datum/gear/shoes/fox
display_name = "fox slippers"
path = /obj/item/clothing/shoes/fox

/datum/gear/shoes/unicorn
display_name = "unicorn slippers"
path = /obj/item/clothing/shoes/unicorn
8 changes: 8 additions & 0 deletions code/modules/client/preference/loadout/loadout_suit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,14 @@
display_name = "shark lightblue costume"
path = /obj/item/clothing/suit/hooded/shark_costume/light

/datum/gear/suit/fox
display_name = "fox costume"
path = /obj/item/clothing/suit/hooded/fox_costume

/datum/gear/suit/unicorn
display_name = "unicorn costume"
path = /obj/item/clothing/suit/hooded/unicorn_costume

//SUITS!

/datum/gear/suit/blacksuit
Expand Down
16 changes: 16 additions & 0 deletions code/modules/clothing/shoes/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,22 @@
icon_state = "shark_light"
item_state = "shark_light"

/obj/item/clothing/shoes/fox
name = "fox slippers"
desc = "Cute little foxes hug your legs."
icon_state = "fox"
item_state = "fox"
lefthand_file = 'icons/mob/inhands/clothing_lefthand.dmi'
righthand_file = 'icons/mob/inhands/clothing_righthand.dmi'

/obj/item/clothing/shoes/unicorn
name = "unicorn slippers"
desc = "It feels like you're walking an rainbow."
icon_state = "unicorn"
item_state = "unicorn"
lefthand_file = 'icons/mob/inhands/clothing_lefthand.dmi'
righthand_file = 'icons/mob/inhands/clothing_righthand.dmi'


/obj/item/clothing/shoes/ducky/Initialize(mapload)
. = ..()
Expand Down
44 changes: 44 additions & 0 deletions code/modules/clothing/suits/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,50 @@
name = "lightblue shark hood"
icon_state = "shark_casual_light"

/obj/item/clothing/suit/hooded/fox_costume
name = "fox costume"
desc = "The fluffy and soft fox costume that makes you feel 'Awoo'.Easy way to became adorable."
icon_state = "fox_casual"
lefthand_file = 'icons/mob/inhands/clothing_lefthand.dmi'
righthand_file = 'icons/mob/inhands/clothing_righthand.dmi'
body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS
min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT
allowed = list(/obj/item/tank/internals/emergency_oxygen)
hoodtype = /obj/item/clothing/head/hooded/fox_hood

/obj/item/clothing/head/hooded/fox_hood
name = "fox hood"
desc = "A hood that makes you a real fox with a pointy nose and red ears."
icon_state = "fox_casual"
body_parts_covered = HEAD
cold_protection = HEAD
min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT
flags = BLOCKHAIR
flags_inv = HIDEHEADSETS

/obj/item/clothing/suit/hooded/unicorn_costume
name = "unicorn costume"
desc = "Unicorn costume, don't take a ride anyone.It smells smiles."
icon_state = "unicorn_casual"
lefthand_file = 'icons/mob/inhands/clothing_lefthand.dmi'
righthand_file = 'icons/mob/inhands/clothing_righthand.dmi'
body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS
min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT
allowed = list(/obj/item/tank/internals/emergency_oxygen)
hoodtype = /obj/item/clothing/head/hooded/unicorn_hood

/obj/item/clothing/head/hooded/unicorn_hood
name = "unicorn hood"
desc = "Rumor has it that the unicorn horn can cure any disease.Beware of poachers."
icon_state = "unicorn_casual"
body_parts_covered = HEAD
cold_protection = HEAD
min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT
flags = BLOCKHAIR
flags_inv = HIDEHEADSETS

/obj/item/clothing/suit/hooded/salmon_costume
name = "salmon suit"
desc = "A costume made from authentic salmon scales, it reeks!"
Expand Down
Binary file modified icons/mob/feet.dmi
Binary file not shown.
Binary file modified icons/mob/head.dmi
Binary file not shown.
Binary file modified icons/mob/inhands/clothing_lefthand.dmi
Binary file not shown.
Binary file modified icons/mob/inhands/clothing_righthand.dmi
Binary file not shown.
Binary file modified icons/mob/suit.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/hats.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/shoes.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/suits.dmi
Binary file not shown.
Loading