Skip to content

Commit

Permalink
add: сатанинская одежда (#6474)
Browse files Browse the repository at this point in the history
* dedededededead

* давайте удалим ебучие равно
  • Loading branch information
Etrnlmelancholy authored Jan 28, 2025
1 parent b8c6948 commit be30205
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 4 deletions.
7 changes: 7 additions & 0 deletions code/modules/client/preference/loadout/loadout_racial.dm
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,10 @@

gear_tweaks += new /datum/gear_tweak/path(available_chips, src)


// HUMAN //

/datum/gear/racial/satan
index_name = "Satanic clothes"
path = /obj/item/clothing/under/satan
whitelisted_species = list(SPECIES_HUMAN)
8 changes: 4 additions & 4 deletions code/modules/clothing/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,7 @@ BLIND // can't see anything


/obj/item/clothing/under/verb/rollsuit()
set name = "Roll Down Jumpsuit"
set name = "Adjust suit style"
set category = "Object"
set src in usr

Expand All @@ -1178,11 +1178,11 @@ BLIND // can't see anything

var/mob/living/carbon/human/owner = usr
if(owner.incapacitated() || HAS_TRAIT(owner, TRAIT_HANDS_BLOCKED))
to_chat(owner, span_notice("You cannot roll down the uniform right now!"))
to_chat(owner, span_notice("You cannot adjust style of this uniform right now!"))
return

if(!can_adjust)
to_chat(owner, span_notice("You cannot roll down this uniform!"))
to_chat(owner, span_notice("You cannot adjust style of this uniform right now!"))
return

var/icon/our_icon = onmob_sheets[ITEM_SLOT_CLOTH_INNER_STRING]
Expand All @@ -1192,7 +1192,7 @@ BLIND // can't see anything
var/initial_state = replacetext(item_color, "_d", "")

if(!icon_exists(our_icon, "[initial_state]_d_s"))
to_chat(owner, span_notice("You cannot roll down this uniform!"))
to_chat(owner, span_notice("You cannot adjust style of this uniform right now!"))
return

item_color = findtext(item_color, "_d") ? initial_state : "[initial_state]_d"
Expand Down
28 changes: 28 additions & 0 deletions code/modules/clothing/under/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1224,3 +1224,31 @@
SPECIES_NEARA = 'icons/mob/clothing/species/monkey/uniform.dmi',
SPECIES_STOK = 'icons/mob/clothing/species/monkey/uniform.dmi'
)

/obj/item/clothing/under/satan
name = "satanic clothes"
desc = "Костюм, который обычно носят сатанисты."
ru_names = list(
NOMINATIVE = "сатанинские одеяния",
GENITIVE = "сатанинских одеяний",
DATIVE = "сатанинским одеяниям",
ACCUSATIVE = "сатанинские одеяния",
INSTRUMENTAL = "сатанинскими одеяниями",
PREPOSITIONAL = "сатанинских одеяниях"
)
over_shoes = TRUE
can_adjust = TRUE
icon_state = "satan"
item_state = "satan"
item_color = "satan"
sprite_sheets = list(
SPECIES_VOX = 'icons/mob/clothing/species/vox/uniform.dmi',
SPECIES_DRASK = 'icons/mob/clothing/species/drask/uniform.dmi',
SPECIES_GREY = 'icons/mob/clothing/species/grey/uniform.dmi',
SPECIES_UNATHI = 'icons/mob/clothing/species/unathi/uniform.dmi',
SPECIES_MONKEY = 'icons/mob/clothing/species/monkey/uniform.dmi',
SPECIES_FARWA = 'icons/mob/clothing/species/monkey/uniform.dmi',
SPECIES_WOLPIN = 'icons/mob/clothing/species/monkey/uniform.dmi',
SPECIES_NEARA = 'icons/mob/clothing/species/monkey/uniform.dmi',
SPECIES_STOK = 'icons/mob/clothing/species/monkey/uniform.dmi'
)
Binary file modified icons/mob/clothing/species/drask/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/grey/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/monkey/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/unathi/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/vox/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/uniform.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/obj/clothing/uniforms.dmi
Binary file not shown.

0 comments on commit be30205

Please sign in to comment.