diff --git a/code/modules/clothing/under/ties.dm b/code/modules/clothing/under/ties.dm index e83317bfe78..15c3cecd3a0 100644 --- a/code/modules/clothing/under/ties.dm +++ b/code/modules/clothing/under/ties.dm @@ -305,4 +305,18 @@ icon = 'icons/obj/clothing/ties.dmi' icon_state = "bling" item_state = "" //no inhands - item_color = "bling" \ No newline at end of file + item_color = "bling" + +//////////////// +//OONGA BOONGA// +//////////////// + +/obj/item/clothing/tie/talisman + name = "bone talisman" + desc = "A hunter's talisman, some say the old gods smile on those who wear it." + icon = 'icons/obj/clothing/ties.dmi' + icon_state = "talisman" + item_state = "" + item_color = "talisman" + body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS|HEAD + armor = list(melee = 5, bullet = 5, laser = 5, energy = 5, bomb = 50, bio = 65, rad = 5) //Faith is the best armor. //This won't actually work because of accessories kill me with a fucking knife jesus christ I hate code \ No newline at end of file diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 418ff16968a..02b8105d3e0 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -358,3 +358,11 @@ time = 30 reqs = list(/obj/item/stack/sheet/bone = 6) category = CAT_MISC + +/datum/table_recipe/bonetalisman + name = "Bone Talisman" + result = /obj/item/clothing/tie/talisman + time = 20 + reqs = list(/obj/item/stack/sheet/bone = 2, + /obj/item/stack/sheet/sinew = 1) + category = CAT_MISC \ No newline at end of file diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index 4b4a8ac79c0..bf66012f555 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index c8761f7f298..b3eb878c9a9 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ