adds all the new items

This commit is contained in:
FreeStylaLT
2016-11-24 16:04:35 +02:00
parent 60306d29ce
commit 4108d3610c
8 changed files with 96 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/*
Donator Glasses Loadout for Patreon
*/
//Kamina shades
/obj/item/clothing/glasses/fluff/kamina
name = "Spiky Orange-tinted Shades"
desc = "Row row!"
icon_state = "gar"
item_state = "gar"
species_fit = list("Vox")
sprite_sheets = list(
"Vox" = 'icons/mob/species/vox/eyes.dmi'
)
//Green Kamina shades
/obj/item/clothing/glasses/fluff/kamina/green
name = "Spiky Green-tinted Shades"
desc = "Fight the power!"
icon_state = "garm"
item_state = "garm"
+75
View File
@@ -0,0 +1,75 @@
/*
Donator Loadout for Patreon
*/
//mushroom hat
/obj/item/clothing/head/fluff/mushhat
name = "Mushroom Hat"
desc = "A horrifying display of Nanotrasen's ruthless pursuit in being the forefront of fashion. Or genocide."
icon_state = "mushhat"
item_state = "mushhat"
flags = BLOCKHAIR
species_fit = list("Vox")
sprite_sheets = list(
"Vox" = 'icons/mob/species/vox/head.dmi'
)
//gold top hat and recolours
/obj/item/clothing/head/fluff/goldtophat
name = "Gold-trimmed Top Hat"
desc = "Poshness incarnate."
icon_state = "goldtophat"
item_state = "goldtophat"
species_fit = list("Vox")
sprite_sheets = list(
"Vox" = 'icons/mob/species/vox/head.dmi'
)
/obj/item/clothing/head/fluff/goldtophat/blue
name = "Gold-trimmed Blue Top Hat"
desc = "Poshness incarnate. With blue."
icon_state = "goldtophatblue"
item_state = "goldtophatblue"
/obj/item/clothing/head/fluff/goldtophat/red
name = "Gold-trimmed Red Top Hat"
desc = "Poshness incarnate. With red."
icon_state = "goldtophatred"
item_state = "goldtophatred"
//black pete hat
/obj/item/clothing/head/fluff/blackpetehat
name = "Black Hat"
desc = "All that soot from the massive explosions had finally done its job."
icon_state = "blackpetehat"
item_state = "blackpetehat"
flags = BLOCKHAIR
species_fit = list("Vox")
sprite_sheets = list(
"Vox" = 'icons/mob/species/vox/head.dmi'
)
//medieval guard helm
/obj/item/clothing/head/fluff/guardhelm
name = "Plastic Guard helm"
desc = "A plastic re-creation of a medieval-era headwear worn by extremely bored recruits of the local army. Kintergarden only."
icon_state = "guardhelm"
item_state = "guardhelm"
flags = BLOCKHAIR
species_fit = list("Vox")
sprite_sheets = list(
"Vox" = 'icons/mob/species/vox/head.dmi'
)
//black sombrero
/obj/item/clothing/head/fluff/blacksombrero
name = "Black sombrero"
desc = "A rare identifying hat of the infamous ancient renegade gang known as 'El Loco Pocos'"
icon_state = "blacksombrero"
item_state = "blacksombrero"
flags = BLOCKHAIR
species_fit = list("Vox")
sprite_sheets = list(
"Vox" = 'icons/mob/species/vox/head.dmi'
)