diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm index b340d4a7249..54529600b54 100644 --- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_boxes_vr.dm @@ -140,3 +140,16 @@ new /obj/item/weapon/card/id/centcom/fluff/aro(src) new /obj/item/weapon/reagent_containers/hypospray/fluff/aronai(src) new /obj/item/clothing/glasses/sunglasses/omnihud(src) + +//ivymoomoo:Ivy Baladeva +/obj/item/weapon/storage/backpack/messenger/sec/fluff/ivymoomoo + name = "Ivy's Courier" + desc = "A bag resembling something used by college students. Contains items for ''MooMoo''." + + New() + ..() + new /obj/item/clothing/head/beretg(src) + new /obj/item/weapon/card/id/fluff/ivyholoid(src) + new /obj/item/weapon/storage/fancy/cigarettes/dromedaryco(src) + new /obj/item/weapon/storage/box/matches(src) + new /obj/item/weapon/reagent_containers/food/snacks/sliceable/plaincake(src) diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 29e64679744..81dc1dcc34a 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -513,3 +513,19 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie w_class = ITEMSIZE_SMALL matter = list(DEFAULT_WALL_MATERIAL = 50) attack_verb = list("bludgeoned", "whacked", "disciplined", "thrashed") + +/obj/item/weapon/card/id/fluff/ivyholoid + name = "Holo-ID" + registered_name = "Unconfigured" + desc = "A thin screen that seems to show an ID card's information. It keeps flickering between the ID and being blank." + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "ivyholoid" + var/configured = 0 + + attack_self(mob/user as mob) + if(configured == 1) return ..() + + assignment = user.job + user.set_id_info(src) + configured = 1 + user << "Card settings set." diff --git a/config/custom_items.txt b/config/custom_items.txt index b1d2dda6632..7a5e0981240 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -159,6 +159,13 @@ item_path: /obj/item/clothing/accessory/medal/bronze_heart # ######## G CKEYS # ######## H CKEYS # ######## I CKEYS + +{ +ckey: ivymoomoo +character_name: Ivy Baladeva +item_path: /obj/item/weapon/storage/backpack/messenger/sec/fluff/ivymoomoo +} + # ######## J CKEYS { diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi index b63967d0b14..36b7f591cd1 100644 Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ