fix ore vents spawning the wrong wolves and remove simple wolves (#81864)

## About The Pull Request
wolves got refactored but the ore vents were still spawning the old
versions, this fixes it and removes the old wolves from the code

## Why It's Good For The Game
fixes ore vents spawning old wolves

## Changelog
🆑
fix: fixes ore vent spawned wolves being untammable
/🆑
This commit is contained in:
Ben10Omintrix
2024-03-07 11:10:07 -07:00
committed by GitHub
parent 0056f134e1
commit 6b6bd5ce95
5 changed files with 16 additions and 76 deletions
@@ -470,3 +470,17 @@
continue
return possible_turf
return get_turf(user)
//wolf trophy
/obj/item/crusher_trophy/wolf_ear
name = "wolf ear"
desc = "It's a wolf ear."
icon_state = "wolf_ear"
denied_type = /obj/item/crusher_trophy/wolf_ear
/obj/item/crusher_trophy/wolf_ear/effect_desc()
return "mark detonation to gain a slight speed boost temporarily"
/obj/item/crusher_trophy/wolf_ear/on_mark_detonation(mob/living/target, mob/living/user)
user.apply_status_effect(/datum/status_effect/speed_boost, 1 SECONDS)