[modular][ready]adds a bald and poly clown mask (#6538)

Co-authored-by: louiseedwardstuart <bonniefluff>
This commit is contained in:
death and coding
2021-06-28 14:23:49 +01:00
committed by GitHub
co-authored by louiseedwardstuart <bonniefluff>
parent b0d32104ce
commit 35cd037773
6 changed files with 29 additions and 0 deletions
+2
View File
@@ -154,6 +154,8 @@
/obj/item/clothing/suit/duster/colorable = 1,
/obj/item/clothing/suit/frenchtrench = 1,
/obj/item/clothing/suit/dutchjacketsr = 1,
/obj/item/clothing/mask/gas/polyclown = 1,
/obj/item/clothing/mask/gas/clownbald = 1,
/obj/item/clothing/under/costume/loincloth/sensor = 1,
/obj/item/clothing/under/costume/loincloth/cloth/sensor = 1) //SKYRAT EDIT ADDITION END
Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

@@ -173,3 +173,30 @@
worn_icon = 'modular_skyrat/master_files/icons/mob/clothing/mask.dmi'
icon_state = "ringgag"
/obj/item/clothing/mask/gas/polyclown
name = "polychromaic clown mask"
desc = "The face of pure evil, now multicoloured."
clothing_flags = MASKINTERNALS
icon = 'modular_skyrat/master_files/icons/obj/clothing/masks.dmi'
worn_icon = 'modular_skyrat/master_files/icons/mob/clothing/mask.dmi'
icon_state = "polyclown"
inhand_icon_state = "clown_hat"
flags_cover = MASKCOVERSEYES
resistance_flags = FLAMMABLE
species_exception = list(/datum/species/golem/bananium)
var/is_polychromic = TRUE
var/poly_colors = list("0BB", "FC0", "FFF")
/obj/item/clothing/mask/gas/clownbald
name = "bald clown mask"
desc = "HE'S BALD, HE'S FUCKIN' BALDIN!"
clothing_flags = MASKINTERNALS
icon = 'modular_skyrat/master_files/icons/obj/clothing/masks.dmi'
worn_icon = 'modular_skyrat/master_files/icons/mob/clothing/mask.dmi'
icon_state = "baldclown"
inhand_icon_state = "clown_hat"
flags_cover = MASKCOVERSEYES
resistance_flags = FLAMMABLE
species_exception = list(/datum/species/golem/bananium)