Skip to content

Commit

Permalink
feat(customs): TvarAnimeshka special order
Browse files Browse the repository at this point in the history
  • Loading branch information
Doster-d committed Sep 28, 2023
1 parent fce25e3 commit 73e6966
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions code/modules/clothing/custom_clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,45 @@
/obj/item/grenade
)

// AnimeshkaTvar
/obj/item/clothing/head/helmet/space/void/syndi/clown_syndie
name = "strange clown helmet"
desc = "A strange helmet with a clown face on it. It looks like it was made by an unknown party."
icon_state = "clown_syndie"
item_state = "clown_syndie"
item_state_slots = list(
slot_l_hand_str = "syndie_clown",
slot_r_hand_str = "syndie_clown",
)

/obj/item/clothing/suit/space/void/syndi/clown_syndie
name = "Syndicate “Honk” voidsuit"
desc = "A suit that protects you against the void. It has a clown face on it."
icon_state = "rig-syndie-clown"
item_state = "rig-syndie-clown"
item_state_slots = list(
slot_l_hand_str = "syndie_clown",
slot_r_hand_str = "syndie_clown",
)

/obj/item/device/modkit/clown_syndie
name = "clown syndie voidsuit modkit"
desc = "A kit containing all the needed tools and parts to modify a voidsuit into a clown syndie voidsuit."
icon_state = "modkit"

/obj/item/device/modkit/clown_syndie/New()
..()
parts = new /list(2)
original = new /list(2)
finished = new /list(2)

parts[1] = 1
original[1] = /obj/item/clothing/head/helmet/space/void/syndi
finished[1] = /obj/item/clothing/head/helmet/space/void/syndi/clown_syndie
parts[2] = 1
original[2] = /obj/item/clothing/suit/space/void/syndi
finished[2] = /obj/item/clothing/suit/space/void/syndi/clown_syndie

// NoTips
/obj/item/clothing/suit/fire/firefighter/atmos
name = "atmospherics firesuit"
Expand Down
Binary file modified icons/inv_slots/hats/mob.dmi
Binary file not shown.
Binary file modified icons/inv_slots/suits/mob.dmi
Binary file not shown.
Binary file modified icons/inv_slots/suits/mob_fat.dmi
Binary file not shown.
Binary file modified icons/mob/onmob/items/lefthand_hats.dmi
Binary file not shown.
Binary file modified icons/mob/onmob/items/lefthand_spacesuits.dmi
Binary file not shown.
Binary file modified icons/mob/onmob/items/righthand_hats.dmi
Binary file not shown.
Binary file modified icons/mob/onmob/items/righthand_spacesuits.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/hats.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/suits.dmi
Binary file not shown.

0 comments on commit 73e6966

Please sign in to comment.