From fe3f63b423dfd916c0f6516f465ed3a255961adb Mon Sep 17 00:00:00 2001 From: Lunaball Date: Tue, 18 May 2021 13:13:47 -0600 Subject: [PATCH] Adding an approved custom item Adds Antoinette's ritual supplies. One glass knife, one harness, one bottle of ground poppy reagents. --- .../loadout/loadout_fluffitems_vr.dm | 9 ++++- .../vore/fluffstuff/custom_items_vr.dm | 33 ++++++++++++++++++- 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm index 2ded432e8b8..5725f397b5b 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -139,6 +139,13 @@ ckeywhitelist = list("storesund97") character_name = list("Aurora") +/datum/gear/fluff/ashling + path = /obj/item/clothing/accessory/storage/ritualharness/fluff/antoinette + display_name = "Ritual Harness" + description = "Antoinette's ritual supplies." + ckeywhitelist = list("ashling") + character_name = list("Antoinette DeKaultieste") + // B CKEYS /datum/gear/fluff/yuuko_kimono path = /obj/item/clothing/under/fluff/sakura_hokkaido_kimono @@ -835,7 +842,7 @@ display_name = "LUNA's Nobel Science Award" ckeywhitelist = list("residentcody") character_name = list("LUNA") - + /datum/gear/fluff/luna_conduct_medal path = /obj/item/clothing/accessory/medal/conduct display_name = "LUNA's Distinguished Conduct Medal" diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 5811130768a..ba633a1cf24 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1372,4 +1372,35 @@ icon_type = "charlotte" //brand = "\improper Professional 120" w_class = ITEMSIZE_TINY - starts_with = list(/obj/item/clothing/mask/smokable/cigarette = 7) \ No newline at end of file + starts_with = list(/obj/item/clothing/mask/smokable/cigarette = 7) + +//Ashling - Antoinette deKaultieste +/obj/item/weapon/material/knife/machete/hatchet/unathiknife/fluff/antoinette + name = "sawtooth ritual knife" + desc = "A mostly decorative knife made from thin ceramic and toothed with large black fangs. Printed on the flat is an eight-armed cross, like an asterisk with an extra stroke, ringed by a calligraphy-style crescent." + attack_verb = list("mauled", "bit", "sawed", "butchered") + dulled = 1 + default_material = "glass" + + +//Ashling - Antoinette deKaultieste +/obj/item/clothing/accessory/storage/ritualharness/fluff/antoinette + name = "silk knife loops" + desc = "A clip-on pair of pouched loops made from surprisingly sturdy silk. Made for holding knives and small vials in a pinch." + icon_state = "unathiharness1" + slots = 2 + +/obj/item/weapon/reagent_containers/glass/bottle/poppy + name = "poppy flour bottle" + desc = "A small bottle of finely ground poppyseed and mixed dried berries." + icon = 'icons/obj/chemical.dmi' + icon_state = "bottle3" + prefill = list("bicaridine" = 30, "nutriment" = 30) + +/obj/item/clothing/accessory/storage/ritualharness/fluff/antoinette/Initialize() + . = ..() + hold.max_storage_space = ITEMSIZE_COST_SMALL * 2 + hold.can_hold = list(/obj/item/weapon/material/knife, /obj/item/weapon/reagent_containers/glass/bottle) + + new /obj/item/weapon/material/knife/machete/hatchet/unathiknife/fluff/antoinette(hold) + new /obj/item/weapon/reagent_containers/glass/bottle/poppy(hold) \ No newline at end of file