Adds a bunch of animal furs

Whooeee
This commit is contained in:
Ketrai
2021-01-09 22:04:09 +01:00
parent 020fd33c35
commit 12ce67b2fa
6 changed files with 73 additions and 1 deletions
@@ -0,0 +1,27 @@
/datum/gear/head/bearpelt
display_name = "brown bear pelt"
path = /obj/item/clothing/head/pelt
/datum/gear/head/bearpeltblack
display_name = "black bear pelt"
path = /obj/item/clothing/head/pelt/black
/datum/gear/head/wolfpelt
display_name = "brown wolf pelt"
path = /obj/item/clothing/head/pelt/wolfpelt
/datum/gear/head/wolfpeltblack
display_name = "black wolf pelt"
path = /obj/item/clothing/head/pelt/wolfpeltblack
/datum/gear/head/tigerpelt
display_name = "shiny tiger pelt"
path = /obj/item/clothing/head/pelt/tigerpelt
/datum/gear/head/tigerpeltsnow
display_name = "snow tiger pelt"
path = /obj/item/clothing/head/pelt/tigerpeltsnow
/datum/gear/head/tigerpeltpink
display_name = "pink tiger pelt"
path = /obj/item/clothing/head/pelt/tigerpeltpink
+45 -1
View File
@@ -54,4 +54,48 @@
/obj/item/clothing/head/crown/goose_queen/christmas
name = "Crown of the Goose Queen of Holiday Cheer"
desc = "It's the crown from the golden goose casino of the Goose Queen! Given to the one to spread christmas cheer on Southern Cross, happy holidays!"
desc = "It's the crown from the golden goose casino of the Goose Queen! Given to the one to spread christmas cheer on Southern Cross, happy holidays!"
/obj/item/clothing/head/pelt
name = "Bear pelt"
desc = "A luxurious bear pelt, good to keep warm in winter. Or to sleep through winter."
icon = 'icons/obj/clothing/hats_ch.dmi'
icon_override = 'icons/mob/head_ch.dmi'
icon_state = "bearpelt_brown"
item_state = "bearpelt_brown"
/obj/item/clothing/head/pelt/black
icon_state = "bearpelt_black"
item_state = "bearpelt_black"
/obj/item/clothing/head/pelt/wolfpelt
name = "Wolf pelt"
desc = "A fuzzy wolf pelt, demanding respect as a hunter, well if it isn't synthetic or anything at least. Or bought."
icon_override = 'icons/mob/wolfpelt_ch.dmi'
icon_state = "wolfpelt_brown"
item_state = "wolfpelt_brown"
/obj/item/clothing/head/pelt/wolfpeltblack
name = "Wolf pelt"
desc = "A fuzzy wolf pelt, demanding respect as a hunter, well if it isn't synthetic or anything at least. Or bought."
icon_override = 'icons/mob/wolfpelt_ch.dmi'
icon_state = "wolfpelt_gray"
item_state = "wolfpelt_gray"
/obj/item/clothing/head/pelt/tigerpelt
name = "Shiny tiger pelt"
desc = "A vibrant tiger pelt, particularly fabulous."
icon_state = "tigerpelt_shiny"
item_state = "tigerpelt_shiny"
/obj/item/clothing/head/pelt/tigerpeltsnow
name = "Snow tiger pelt"
desc = "A pelt of a less vibrant tiger, but rather warm."
icon_state = "tigerpelt_snow"
item_state = "tigerpelt_snow"
/obj/item/clothing/head/pelt/tigerpeltpink
name = "Pink tiger pelt"
desc = "A particularly vibrant tiger pelt, for those who want to be the most fabulous at parties."
icon_state = "tigerpelt_pink"
item_state = "tigerpelt_pink"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 701 B

After

Width:  |  Height:  |  Size: 1.9 KiB

+1
View File
@@ -1915,6 +1915,7 @@
#include "code\modules\client\preference_setup\loadout\loadout_gloves.dm"
#include "code\modules\client\preference_setup\loadout\loadout_gloves_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head_ch.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head_vr.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head_yw.dm"
#include "code\modules\client\preference_setup\loadout\loadout_mask.dm"