[modular][ready]adds a fashionable baseball cap (#7780)

* [modular][ready]adds a fashionable baseball cap

* Update head.dm

* the rumors were true....

* Update head.dm

* timb living ass

* huh

* improved sprite

* Update head.dmi

* ok there

Co-authored-by: louiseedwardstuart <bonniefluff>
This commit is contained in:
death and coding
2021-09-01 17:43:41 +01:00
committed by GitHub
co-authored by louiseedwardstuart <bonniefluff>
parent ce2828029b
commit 222a5dca6d
10 changed files with 33 additions and 0 deletions
+1
View File
@@ -220,6 +220,7 @@
/obj/item/clothing/under/costume/swagoutfit = 1,
/obj/item/clothing/shoes/swagshoes = 1,
/obj/item/clothing/shoes/jackboots/timbs = 2, //SKYRAT EDIT ADDITION
/obj/item/clothing/head/soft/yankee = 3, //SKYRAT EDIT ADDITION
/obj/item/instrument/piano_synth/headphones/spacepods = 1,
/obj/item/clothing/suit/brownbattlecoat = 1, //SKYRAT EDIT ADDITION BEGIN
/obj/item/clothing/suit/blackfurrich = 1,
Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 263 KiB

After

Width:  |  Height:  |  Size: 264 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 135 KiB

After

Width:  |  Height:  |  Size: 136 KiB

@@ -0,0 +1,7 @@
/datum/crafting_recipe/rimlessyankee
name = "Rimless fashionable hat"
result = /obj/item/clothing/head/soft/yankee/rimless
time = 120
tool_behaviors = list(TOOL_WIRECUTTER)
reqs = list(/obj/item/clothing/head/soft/yankee = 1)
category = CAT_CLOTHING
@@ -421,3 +421,21 @@
icon_state = "deputy_hat"
mutant_variants = NONE
desc = "A light brown hat with a smell of iron. There's a small set of antlers embroidered on the inside."
/obj/item/clothing/head/soft/yankee
name = "fashionable baseball cap"
desc = "Rimmed and brimmed."
icon = 'modular_skyrat/master_files/icons/obj/clothing/hats.dmi'
worn_icon = 'modular_skyrat/master_files/icons/mob/clothing/head.dmi'
icon_state = "yankeesoft"
soft_type = "yankee"
dog_fashion = /datum/dog_fashion/head/yankee
mutant_variants = NONE
/obj/item/clothing/head/soft/yankee/rimless
name = "rimless fashionable baseball cap"
desc = "Rimless for her pleasure."
icon = 'modular_skyrat/master_files/icons/obj/clothing/hats.dmi'
worn_icon = 'modular_skyrat/master_files/icons/mob/clothing/head.dmi'
icon_state = "yankeenobrimsoft"
soft_type = "yankeenobrim"
@@ -0,0 +1,5 @@
/datum/dog_fashion/head/yankee
name = "MC REAL_NAME"
desc = "They're a big deal in the dog rapping world, apperently."
icon_file = 'modular_skyrat/master_files/icons/mob/dog/corgi_head.dmi'
emote_see = list("mumbles some bars.", "practises their beatboxing.")
+2
View File
@@ -4174,6 +4174,7 @@
#include "modular_skyrat\modules\customization\_globalvars\lists.dm"
#include "modular_skyrat\modules\customization\_globalvars\names.dm"
#include "modular_skyrat\modules\customization\datums\dna.dm"
#include "modular_skyrat\modules\customization\datums\components\crafting\clothing.dm"
#include "modular_skyrat\modules\customization\datums\components\crafting\recipes.dm"
#include "modular_skyrat\modules\customization\datums\elements\polychromic.dm"
#include "modular_skyrat\modules\customization\datums\keybinding\communication.dm"
@@ -4356,6 +4357,7 @@
#include "modular_skyrat\modules\decay_subsystem\code\decaySS.dm"
#include "modular_skyrat\modules\decay_subsystem\code\nests.dm"
#include "modular_skyrat\modules\digi_bloodsole\code\modules\clothing\shoes\_shoes.dm"
#include "modular_skyrat\modules\dogfashion\code\datums\head.dm"
#include "modular_skyrat\modules\electric_welder\code\electric_welder.dm"
#include "modular_skyrat\modules\emotes\code\dna_screams.dm"
#include "modular_skyrat\modules\emotes\code\emotes.dm"
Executable → Regular
View File