diff --git a/hyperstation/code/obj/rewards.dm b/hyperstation/code/obj/rewards.dm index d57ad4c4..40523e0a 100644 --- a/hyperstation/code/obj/rewards.dm +++ b/hyperstation/code/obj/rewards.dm @@ -152,3 +152,22 @@ /obj/item/toy/sword/chloesabre/get_worn_belt_overlay(icon_file) return mutable_appearance(icon_file, "darksheath-darksabre") + +/obj/item/mialasscale + name = "Miala's Scale" + desc = "A bright, and familiar, cyan scale from an equally familiar snake being." + icon = 'hyperstation/icons/obj/rewards.dmi' + icon_state = "m_scale" + item_state = "m_scale" + w_class = WEIGHT_CLASS_SMALL + +/obj/item/bong/kiseru + name = "black lacquered kiseru" + desc = "it is a black lacquered kiseru with a ornate silver head and mouthpiece, you can feel it's old age as you hold it" + icon = 'hyperstation/icons/obj/rewards.dmi' + icon_state = null + item_state = null + w_class = WEIGHT_CLASS_NORMAL + light_color = "#FFCC66" + icon_off = "pipe" + icon_on = "pipe_lit" diff --git a/hyperstation/icons/obj/rewards.dmi b/hyperstation/icons/obj/rewards.dmi index 8864b6ba..9c5f069f 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 a2e12b01..8d2d706c 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -150,3 +150,16 @@ datum/gear/darksabresheath category = SLOT_IN_BACKPACK path = /obj/item/clothing/under/touchinfuzzy ckeywhitelist = list("touchinfuzzy") + +/datum/gear/mscale + name = "Miala's Scale" + category = SLOT_IN_BACKPACK + path = /obj/item/mialasscale + ckeywhitelist = list("python13579") + +/datum/gear/pipe + name = "Black Lacquered Kiseru" + category = SLOT_IN_BACKPACK + path = /obj/item/bong/kiseru + ckeywhitelist = list("madness_18") +