diff --git a/code/modules/mob/living/simple_animal/vore/deathclaw.dm b/code/modules/mob/living/simple_animal/vore/deathclaw.dm
index 5033e1eb18..c0e6e85df3 100644
--- a/code/modules/mob/living/simple_animal/vore/deathclaw.dm
+++ b/code/modules/mob/living/simple_animal/vore/deathclaw.dm
@@ -41,3 +41,29 @@
vore_min_size = RESIZE_SMALL
vore_pounce_chance = 0 // Beat them into crit before eating.
vore_icons = SA_ICON_LIVING
+
+//CHOMPEDIT Adding mining friendly dedclaws
+/mob/living/simple_animal/hostile/deathclaw/minor //or miner
+ name = "minor deathclaw"
+ desc = "Big! The size of two men! Claws as long as my hand! Ripped apart! Ripped apart!"
+ maxHealth = 150
+ health = 150
+ melee_damage_lower = 5
+ melee_damage_upper = 30
+
+//Activate Lootdrops
+/mob/living/simple_animal/hostile/deathclaw/minor/death()
+ ..()
+ if(prob(80))
+ visible_message("\The [src] dropped some ore!")
+ var/location = get_turf(src)
+ new /obj/item/weapon/ore/diamond(location)
+ if(prob(40))
+ visible_message("\The [src] dropped some ore!")
+ var/location = get_turf(src)
+ new /obj/item/weapon/ore/uranium(location)
+ if(prob(1))
+ visible_message("\The [src] suddenly regenerates!")
+ var/location = get_turf(src)
+ new /mob/living/simple_animal/hostile/deathclaw/minor(location)
+ qdel(src)