62f61a5867
* durayeet * Update code/modules/clothing/head/jobs.dm Co-Authored-By: Qustinnus <Floydje123@hotmail.com> * Update code/modules/clothing/head/beanie.dm Co-Authored-By: Qustinnus <Floydje123@hotmail.com> * Update code/modules/clothing/masks/miscellaneous.dm Co-Authored-By: Qustinnus <Floydje123@hotmail.com> * Update code/modules/clothing/under/miscellaneous.dm Co-Authored-By: Qustinnus <Floydje123@hotmail.com> * yeet * adds armor * webedits yeet * adds crafting stuff and removes normal cloth crafting * ff * final fixes * Update code/game/objects/items/stacks/sheets/sheet_types.dm Co-Authored-By: Qustinnus <Floydje123@hotmail.com> * done
87 lines
2.4 KiB
Plaintext
87 lines
2.4 KiB
Plaintext
|
|
//BeanieStation13 Redux
|
|
|
|
/obj/item/clothing/head/beanie //Default is white, this is meant to be seen
|
|
name = "white beanie"
|
|
desc = "A stylish beanie. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their heads."
|
|
icon_state = "beanie" //Default white
|
|
item_color = "beanie"
|
|
custom_price = 10
|
|
|
|
/obj/item/clothing/head/beanie/black
|
|
name = "black beanie"
|
|
icon_state = "beanie"
|
|
color = "#4A4A4B" //Grey but it looks black
|
|
|
|
/obj/item/clothing/head/beanie/red
|
|
name = "red beanie"
|
|
icon_state = "beanie"
|
|
color = "#D91414" //Red
|
|
|
|
/obj/item/clothing/head/beanie/green
|
|
name = "green beanie"
|
|
icon_state = "beanie"
|
|
color = "#5C9E54" //Green
|
|
|
|
/obj/item/clothing/head/beanie/darkblue
|
|
name = "dark blue beanie"
|
|
icon_state = "beanie"
|
|
color = "#1E85BC" //Blue
|
|
|
|
/obj/item/clothing/head/beanie/purple
|
|
name = "purple beanie"
|
|
icon_state = "beanie"
|
|
color = "#9557C5" //purple
|
|
|
|
/obj/item/clothing/head/beanie/yellow
|
|
name = "yellow beanie"
|
|
icon_state = "beanie"
|
|
color = "#E0C14F" //Yellow
|
|
|
|
/obj/item/clothing/head/beanie/orange
|
|
name = "orange beanie"
|
|
icon_state = "beanie"
|
|
color = "#C67A4B" //orange
|
|
|
|
/obj/item/clothing/head/beanie/cyan
|
|
name = "cyan beanie"
|
|
icon_state = "beanie"
|
|
color = "#54A3CE" //Cyan (Or close to it)
|
|
|
|
//Striped Beanies have unique sprites
|
|
|
|
/obj/item/clothing/head/beanie/christmas
|
|
name = "christmas beanie"
|
|
icon_state = "beaniechristmas"
|
|
item_color = "beaniechristmas"
|
|
|
|
/obj/item/clothing/head/beanie/striped
|
|
name = "striped beanie"
|
|
icon_state = "beaniestriped"
|
|
item_color = "beaniestriped"
|
|
|
|
/obj/item/clothing/head/beanie/stripedred
|
|
name = "red striped beanie"
|
|
icon_state = "beaniestripedred"
|
|
item_color = "beaniestripedred"
|
|
|
|
/obj/item/clothing/head/beanie/stripedblue
|
|
name = "blue striped beanie"
|
|
icon_state = "beaniestripedblue"
|
|
item_color = "beaniestripedblue"
|
|
|
|
/obj/item/clothing/head/beanie/stripedgreen
|
|
name = "green striped beanie"
|
|
icon_state = "beaniestripedgreen"
|
|
item_color = "beaniestripedgreen"
|
|
|
|
/obj/item/clothing/head/beanie/durathread
|
|
name = "durathread beanie"
|
|
desc = "A beanie made from durathread, its resilient fibres provide some protection to the wearer."
|
|
icon_state = "beaniedurathread"
|
|
item_color = null
|
|
armor = list("melee" = 15, "bullet" = 5, "laser" = 15, "energy" = 5, "bomb" = 10, "bio" = 0, "rad" = 0, "fire" = 30, "acid" = 5)
|
|
|
|
|
|
//No dog fashion sprites yet :( poor Ian can't be dope like the rest of us yet
|