Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Попошная кастомка #10663

Merged
merged 2 commits into from
Oct 11, 2023
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
30 changes: 30 additions & 0 deletions code/modules/clothing/custom_clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,33 @@
icon_closed = "heart_jacket"
body_parts_covered = UPPER_TORSO|ARMS
initial_closed = TRUE

// Popky_dau
/obj/item/clothing/under/soviet/tcc
name = "TCC uniform"
desc = "For Magnitka!"
icon_state = "soviet_tcc"

/obj/item/clothing/head/helmet/tcc
name = "TCC army helmet"
desc = "For Magnitka! Protects the head from Gaian sentiments."
icon_state = "tcchelm"
valid_accessory_slots = null
body_parts_covered = HEAD
visor_body_parts_covered = NO_BODYPARTS

/obj/item/device/modkit/helmet_tcc
name = "TCC army helmet modkit"
desc = "A kit containing all the needed tools and parts to modify a helmet into a TCC army helmet."
icon_state = "modkit"

/obj/item/device/modkit/helmet_tcc/New()
..()
parts = new /list(1)
original = new /list(1)
finished = new /list(1)

parts[1] = 1
original[1] = /obj/item/clothing/head/helmet
finished[1] = /obj/item/clothing/head/helmet/tcc

Binary file modified icons/inv_slots/hats/icon.dmi
Binary file not shown.
Binary file modified icons/inv_slots/hats/mob.dmi
Binary file not shown.
Binary file modified icons/inv_slots/uniforms/icon.dmi
Binary file not shown.
Binary file modified icons/inv_slots/uniforms/mob.dmi
Binary file not shown.
Binary file modified icons/inv_slots/uniforms/mob_fat.dmi
Binary file not shown.
Binary file modified icons/inv_slots/uniforms/mob_slim.dmi
Binary file not shown.
Binary file modified icons/inv_slots/uniforms/mob_slim_m.dmi
Binary file not shown.
Binary file modified icons/inv_slots/uniforms/mob_slimalt.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/hats.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/uniforms.dmi
Binary file not shown.
Loading