[modular][ready]adds a bald and poly clown mask (#6538)
Co-authored-by: louiseedwardstuart <bonniefluff>
@@ -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
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 52 KiB |
|
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)
|
||||
|
||||
|
||||