diff --git a/hyperstation/code/obj/rewards.dm b/hyperstation/code/obj/rewards.dm index 667e7e81c..addd0a897 100644 --- a/hyperstation/code/obj/rewards.dm +++ b/hyperstation/code/obj/rewards.dm @@ -198,3 +198,18 @@ min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT flags_inv = HIDEHAIR|HIDEFACE|HIDEEARS mutantrace_variation = NO_MUTANTRACE_VARIATION + +/obj/item/clothing/mask/lamask + name = "sheep mask" + desc = "A mask with a spiral pattern." + icon = 'hyperstation/icons/obj/rewards.dmi' + alternate_worn_icon = 'hyperstation/icons/mobs/rewards.dmi' + icon_state = "lamask" + flags_inv = HIDEFACE|HIDEFACIALHAIR + w_class = WEIGHT_CLASS_SMALL + mutantrace_variation = NO_MUTANTRACE_VARIATION + +/obj/item/clothing/mask/lamask/Initialize() + . = ..() + ADD_TRAIT(src, TRAIT_NODROP, CURSED_MASK_TRAIT) + playsound(get_turf(src), 'sound/magic/horsehead_curse.ogg', 50, 1) \ No newline at end of file diff --git a/hyperstation/icons/mobs/rewards.dmi b/hyperstation/icons/mobs/rewards.dmi index 7a92799b4..2010a15c4 100644 Binary files a/hyperstation/icons/mobs/rewards.dmi and b/hyperstation/icons/mobs/rewards.dmi differ diff --git a/hyperstation/icons/obj/rewards.dmi b/hyperstation/icons/obj/rewards.dmi index 9c5f069fd..eace13b80 100644 Binary files a/hyperstation/icons/obj/rewards.dmi and b/hyperstation/icons/obj/rewards.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index e2df1e45e..811fabf8c 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -167,4 +167,10 @@ datum/gear/lyricalpawsring name = "Occult Robes" category = SLOT_IN_BACKPACK path = /obj/item/clothing/suit/hooded/occultrobes + + ckeywhitelist = list("relquen") +/datum/gear/relquenmask + name = "Lamask" + category = SLOT_IN_BACKPACK + path = /obj/item/clothing/mask/lamask ckeywhitelist = list("relquen")