mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-11 07:03:30 +01:00
21 viro symptoms
Im an idiot that cant use github edition Conflicts: code/game/objects/effects/decals/Cleanable/humans.dm code/modules/virus2/effect.dm
This commit is contained in:
@@ -384,3 +384,17 @@
|
||||
spawn(DRYING_TIME * 2)
|
||||
dry=1
|
||||
|
||||
/obj/effect/decal/cleanable/blood/viralsputum
|
||||
name = "viral sputum"
|
||||
desc = "It's black and nasty."
|
||||
// basecolor="#030303"
|
||||
icon = 'icons/mob/robots.dmi'
|
||||
icon_state = "floor1"
|
||||
random_icon_states = list("floor1", "floor2", "floor3", "floor4", "floor5", "floor6", "floor7")
|
||||
|
||||
Del()
|
||||
for(var/datum/disease/D in viruses)
|
||||
D.cure(0)
|
||||
..()
|
||||
|
||||
|
||||
|
||||
@@ -406,6 +406,39 @@
|
||||
viewers(user) << "<span class='suicide'>[user] is jamming the [src.name] up \his nose and into \his brain. It looks like \he's trying to commit suicide.</span>"
|
||||
return (BRUTELOSS|OXYLOSS)
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Snap pops viral shit
|
||||
*/
|
||||
/obj/item/toy/snappop/virus
|
||||
name = "unstable goo"
|
||||
desc = "Your palm is oozing this stuff!"
|
||||
icon = 'icons/mob/slimes.dmi'
|
||||
icon_state = "red slime extract"
|
||||
throwforce = 30.0
|
||||
throw_speed = 10
|
||||
throw_range = 30
|
||||
w_class = 1
|
||||
|
||||
|
||||
throw_impact(atom/hit_atom)
|
||||
..()
|
||||
var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread
|
||||
s.set_up(3, 1, src)
|
||||
s.start()
|
||||
new /obj/effect/decal/cleanable/ash(src.loc)
|
||||
src.visible_message("\red The [src.name] explodes!","\red You hear a bang!")
|
||||
|
||||
|
||||
playsound(src, 'sound/effects/snap.ogg', 50, 1)
|
||||
del(src)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Snap pops
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user