mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-11 07:03:30 +01:00
Jay Wingler Fluff Item
This commit is contained in:
@@ -85,6 +85,8 @@
|
||||
update_icon()
|
||||
|
||||
|
||||
|
||||
|
||||
/obj/item/weapon/claymore/fluff // MrBarrelrolll: Maximus Greenwood
|
||||
name = "Greenwood's Blade"
|
||||
desc = "A replica claymore with strange markings scratched into the blade."
|
||||
@@ -171,6 +173,28 @@
|
||||
icon_state = "jello_guitar"
|
||||
item_state = "jello_guitar"
|
||||
|
||||
/obj/item/fluff/wingler_comb
|
||||
name = "blue comb"
|
||||
desc = "A blue comb, it looks like it was made to groom a Tajaran's fur."
|
||||
icon = 'icons/obj/custom_items.dmi'
|
||||
icon_state = "wingler_comb"
|
||||
attack_verb = "combed"
|
||||
force = 0
|
||||
throwforce = 0
|
||||
var/used = 0
|
||||
|
||||
/obj/item/fluff/wingler_comb/attack_self(mob/user as mob)
|
||||
if(used)
|
||||
return
|
||||
|
||||
var/mob/living/carbon/human/target = user
|
||||
if(!istype(target) || !istype(target.species, /datum/species/tajaran)) // Only catbeasts, kthnx.
|
||||
return
|
||||
|
||||
if(target.change_body_accessory("Jay Wingler Tail"))
|
||||
to_chat(target, "<span class = 'notice'>You comb your tail with the [src].</span>")
|
||||
used = 1
|
||||
|
||||
//////////////////////////////////
|
||||
//////////// Clothing ////////////
|
||||
//////////////////////////////////
|
||||
|
||||
@@ -102,6 +102,13 @@ var/global/list/body_accessory_by_species = list("None" = null)
|
||||
return 0
|
||||
|
||||
|
||||
/datum/body_accessory/tail/wingler_tail // Jay wingler fluff tail
|
||||
name = "Jay Wingler Tail"
|
||||
|
||||
icon_state = "winglertail"
|
||||
animated_icon_state = "winglertail_a"
|
||||
|
||||
|
||||
//Vulpkanin
|
||||
/datum/body_accessory/tail/vulpkanin_2
|
||||
name = "Vulpkanin Alt 1 (Bushy)"
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 15 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
Reference in New Issue
Block a user