diff --git a/code/game/objects/items/weapons/material/material_weapons.dm b/code/game/objects/items/weapons/material/material_weapons.dm index 3f2b1978d3..9d4592c17c 100644 --- a/code/game/objects/items/weapons/material/material_weapons.dm +++ b/code/game/objects/items/weapons/material/material_weapons.dm @@ -26,6 +26,7 @@ var/default_material = DEFAULT_WALL_MATERIAL var/material/material var/drops_debris = 1 + var/named_from_material = 1 //YW EDIT, Does it prepend the material's name to it's name? /obj/item/weapon/material/New(var/newloc, var/material_key) ..(newloc) @@ -65,7 +66,8 @@ if(!material) qdel(src) else - name = "[material.display_name] [initial(name)]" + if(named_from_material) //YW EDIT + name = "[material.display_name] [initial(name)]" health = round(material.integrity/10) if(applies_material_colour) color = material.icon_colour diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm index 3149f5f83a..30bbd07f30 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm @@ -348,17 +348,17 @@ //Foxicide //Kaith -/datum/gear/fluff/kaith_knife - path = /obj/item/weapon/kitchenknife/tacknife/unathiknife/fluff/kaith - display_name = "Trusty Survival Knife" - description = "An old looking knife with an outdated wooden handle. Still looks robust, though." +/datum/gear/fluff/kaith_modkit + path = /obj/item/device/modkit_conversion/fluff/kaith_knife_kit + display_name = "Kaith's modkit" + description = "A kit containing all the needed tools and parts to modify a survival knife" ckeywhitelist = list("foxicide") character_name = list("Kaith") /datum/gear/fluff/kaith_bag path = /obj/item/weapon/storage/backpack/fluff/kaith - display_name = "Light Duffel bag" - description = "A compact duffel bag, meant for long hikes." + display_name = "Light duffle bag" + description = "A compact duffle bag, meant for long hikes." ckeywhitelist = list("foxicide") character_name = list("Kaith") diff --git a/code/modules/vore/fluffstuff/custom_clothes_yw.dm b/code/modules/vore/fluffstuff/custom_clothes_yw.dm index 5e5197ef5d..22cc6ef33f 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_yw.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_yw.dm @@ -1596,7 +1596,7 @@ // Foxicide // ****** /obj/item/weapon/storage/backpack/fluff/kaith - name = "Light Duffel bag" - desc = "A compact duffel bag, meant for long hikes." + name = "Light duffle bag" + desc = "A compact duffle bag, meant for long hikes." icon = 'icons/obj/clothing/backpack.dmi' icon_state = "duffle" \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_items_yw.dm b/code/modules/vore/fluffstuff/custom_items_yw.dm index 0e01c857cc..32c8215359 100644 --- a/code/modules/vore/fluffstuff/custom_items_yw.dm +++ b/code/modules/vore/fluffstuff/custom_items_yw.dm @@ -571,8 +571,20 @@ // ************* // Foxicide // ************* -/obj/item/weapon/kitchenknife/tacknife/unathiknife/fluff/kaith +/obj/item/weapon/material/knife/tacknife/survival/fluff/kaith name = "Trusty Survival Knife" desc = "An old looking knife with an outdated wooden handle. Still looks robust, though." icon = 'icons/vore/custom_items_yw.dmi' - icon_state = "kaithknife" \ No newline at end of file + icon_state = "kaithknife" + named_from_material = 0 + +/obj/item/device/modkit_conversion/fluff/kaith_knife_kit + name = "Kaith's modkit" + desc = "A kit containing all the needed tools and parts to modify a survival knife" + + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "modkit" + + from_suit = /obj/item/weapon/material/knife/tacknife/survival + to_suit = /obj/item/weapon/material/knife/tacknife/survival/fluff/kaith +