mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-07-13 16:12:30 +01:00
22 lines
902 B
Plaintext
22 lines
902 B
Plaintext
/obj/item/clothing/head/wiggler
|
|
icon_override = 'icons/vore/misc_ch.dmi'
|
|
icon = 'icons/vore/misc_ch.dmi'//lets use our own DMI with blackjack and deers
|
|
icon_state = "flailing_helmet"
|
|
item_state = "flailing_helmet_worn"
|
|
name = "Flailing hat"
|
|
desc = "It's a hat, it flails."
|
|
body_parts_covered = 0
|
|
|
|
/obj/item/clothing/head/wiggler/make_worn_icon(var/body_type,var/slot_name,var/inhands,var/default_icon,var/default_layer)
|
|
var/image/so_far = ..()
|
|
so_far.pixel_y += 16
|
|
so_far.pixel_x += 0
|
|
return so_far
|
|
|
|
/obj/item/clothing/head/soft/purple/wah
|
|
name = "assistant cap"
|
|
desc = "What a lovely purple cap, its said its given out as a trophy to assistants. Why does that sound so depressing?"
|
|
icon_state = "wahcap"
|
|
item_state_slots = list(slot_r_hand_str = "wahcap", slot_l_hand_str = "wahcap")
|
|
icon = 'icons/obj/clothing/hats_vr.dmi'
|
|
icon_override = 'icons/mob/head_vr.dmi' |