diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 3905458d864..e488fe74e86 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -510,6 +510,20 @@ /obj/item/stack/sheet/sinew = 1) category = CAT_PRIMAL +/datum/crafting_recipe/bonepickaxe + name = "Bone Pickaxe" + result = list(/obj/item/pickaxe/bone) + time = 40 + reqs = list(/obj/item/stack/sheet/bone = 4, + /obj/item/stack/sheet/sinew = 2) + category = CAT_PRIMAL +/datum/crafting_recipe/bonescythe + name = "Bone Scythe" + result = list(/obj/item/scythe/bone) + time = 40 + reqs = list(/obj/item/stack/sheet/bone = 5, + /obj/item/stack/sheet/sinew = 2) + category = CAT_PRIMAL /datum/crafting_recipe/boneaxe name = "Bone Axe" result = list(/obj/item/twohanded/fireaxe/boneaxe) diff --git a/code/modules/hydroponics/hydroitemdefines.dm b/code/modules/hydroponics/hydroitemdefines.dm index b1464d998a9..9c759ff672e 100644 --- a/code/modules/hydroponics/hydroitemdefines.dm +++ b/code/modules/hydroponics/hydroitemdefines.dm @@ -129,6 +129,14 @@ var/extend = 1 var/swiping = FALSE +/obj/item/scythe/bone + icon_state = "bone_scythe" + item_state = "bone_scythe" + name = "bone scythe" + desc = "Perfect for harvesting. And it's not about plants." + force = 14 + throw_range = 4 + origin_tech = "materials=1;combat=2" /obj/item/scythe/suicide_act(mob/user) user.visible_message("[user] is beheading [user.p_them()]self with [src]! It looks like [user.p_theyre()] trying to commit suicide.") if(ishuman(user)) diff --git a/code/modules/mining/equipment/mining_tools.dm b/code/modules/mining/equipment/mining_tools.dm index 7815bad0c37..dabeb930838 100644 --- a/code/modules/mining/equipment/mining_tools.dm +++ b/code/modules/mining/equipment/mining_tools.dm @@ -42,6 +42,15 @@ w_class = WEIGHT_CLASS_NORMAL materials = list(MAT_METAL = 1000) +/obj/item/pickaxe/bone + name = "bone pickaxe" + icon_state = "bone_pickaxe" + item_state = "bone_pickaxe" + origin_tech = "materials=1;engineering=2" + toolspeed = 0.7 + desc = "Do it yourself pickaxe." + force = 16 + materials = list() /obj/item/pickaxe/silver name = "silver-plated pickaxe" icon_state = "spickaxe" @@ -50,6 +59,7 @@ toolspeed = 0.5 //mines faster than a normal pickaxe, bought from mining vendor desc = "A silver-plated pickaxe that mines slightly faster than standard-issue." force = 17 + materials = list(MAT_METAL=1900,MAT_SILVER=100) /obj/item/pickaxe/gold name = "golden pickaxe" @@ -59,6 +69,7 @@ toolspeed = 0.4 desc = "A gold-plated pickaxe that mines faster than standard-issue." force = 18 + materials = list(MAT_METAL=1900,MAT_GOLD=100) /obj/item/pickaxe/diamond name = "diamond-tipped pickaxe" @@ -68,6 +79,7 @@ toolspeed = 0.3 desc = "A pickaxe with a diamond pick head. Extremely robust at cracking rock walls and digging up dirt." force = 19 + materials = list(MAT_METAL=1900,MAT_DIAMOND=100) /obj/item/pickaxe/drill name = "mining drill" diff --git a/icons/mob/inhands/items_lefthand.dmi b/icons/mob/inhands/items_lefthand.dmi index b5659069b65..50f0045f9b7 100644 Binary files a/icons/mob/inhands/items_lefthand.dmi and b/icons/mob/inhands/items_lefthand.dmi differ diff --git a/icons/mob/inhands/items_righthand.dmi b/icons/mob/inhands/items_righthand.dmi index f712201f5e4..fa6e4b84054 100644 Binary files a/icons/mob/inhands/items_righthand.dmi and b/icons/mob/inhands/items_righthand.dmi differ diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index fd2b776aa43..33225545601 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ