diff --git a/code/modules/clothing/ears/ears.dm b/code/modules/clothing/ears/ears.dm index 10f291af765..4d483f38060 100644 --- a/code/modules/clothing/ears/ears.dm +++ b/code/modules/clothing/ears/ears.dm @@ -9,3 +9,23 @@ strip_delay = 15 put_on_delay = 25 resistance_flags = FLAMMABLE + +/obj/item/clothing/ears/earrings + name = "Earrings" + desc = "Простые золотые серёжки" + icon_state = "earring_gold" + item_state = "earring_gold" + slot_flags = ITEM_SLOT_EARS + species_restricted = list(SPECIES_HUMAN, SPECIES_VOX, SPECIES_VULPKANIN, SPECIES_TAJARAN, SPECIES_DIONA, SPECIES_DRASK, SPECIES_SLIMEPERSON, SPECIES_SKRELL, SPECIES_MACNINEPERSON, SPECIES_MOTH, SPECIES_NUCLEATION) + +/obj/item/clothing/ears/earrings/Nt + name = "Earrings NT" + desc = "Золотые серьги с гравировкой НТ" + icon_state = "earring_NT" + item_state = "earring_NT" + +/obj/item/clothing/ears/earrings/silver + name = "Silver earings" + desc = "Простые серебряные серьги" + icon_state = "earring_silver" + item_state = "earring_silver" diff --git a/code/modules/instruments/objs/items/headphones.dm b/code/modules/instruments/objs/items/headphones.dm index 0ba3c4420a6..cbe4533ecd8 100644 --- a/code/modules/instruments/objs/items/headphones.dm +++ b/code/modules/instruments/objs/items/headphones.dm @@ -3,7 +3,7 @@ desc = "Unce unce unce unce." icon_state = "headphones0" item_state = "headphones0" - slot_flags_2 = ITEM_FLAG_TWOEARS + slot_flags = ITEM_SLOT_EARS actions_types = list(/datum/action/item_action/change_headphones_song) var/datum/song/headphones/song var/on = FALSE diff --git a/icons/mob/clothing/ears.dmi b/icons/mob/clothing/ears.dmi index 99c91c85957..3e55861f85f 100644 Binary files a/icons/mob/clothing/ears.dmi and b/icons/mob/clothing/ears.dmi differ diff --git a/icons/mob/clothing/species/monkey/ears.dmi b/icons/mob/clothing/species/monkey/ears.dmi index e8e80063a39..b55a433dfb3 100644 Binary files a/icons/mob/clothing/species/monkey/ears.dmi and b/icons/mob/clothing/species/monkey/ears.dmi differ diff --git a/icons/mob/clothing/species/vox/ears.dmi b/icons/mob/clothing/species/vox/ears.dmi index c09c4b33a2a..5168e567419 100644 Binary files a/icons/mob/clothing/species/vox/ears.dmi and b/icons/mob/clothing/species/vox/ears.dmi differ diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index 886b6f3fd37..bb24519cbf5 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ