[EE] Adds a new medium midround event: Irradiated mouse (#31947)

* added irradiated mouse

* mouse pulling buff

* adds upgrade spells

* cooldown on upgrades

* icons and cats

* radioactive sludge, health decrease, upgrades counter

* objectives and sound

* spells to new file + check if alive in life

* afterimage

* description fix, contaminate, comments

* lintma?

* removed empty lines, , -> :, new -> new()

---------

Signed-off-by: Christer2222 <25958019+Christer2222@users.noreply.github.com>
This commit is contained in:
Christer2222
2026-05-14 00:09:02 +02:00
committed by GitHub
parent 93e6c06c1a
commit 2f2ebafb31
12 changed files with 295 additions and 10 deletions
@@ -125,10 +125,10 @@
cable.deconstruct()
/mob/living/basic/mouse/start_pulling(atom/movable/AM, state, force = pull_force, show_message = FALSE)// Prevents mouse from pulling things
if(istype(AM, /obj/item/food/sliced/cheesewedge))
if(istype(AM, /obj/item/food/sliced/cheesewedge) || istype(AM, /mob/living/basic/mouse))
return ..() // Get dem
if(show_message)
to_chat(src, SPAN_WARNING("You are too small to pull anything except cheese."))
to_chat(src, SPAN_WARNING("You are too small to pull anything except cheese and other mice."))
return
/mob/living/basic/mouse/proc/on_atom_entered(datum/source, atom/movable/entered)