Addition Ratvar conversion effects and related changes

This commit is contained in:
Nerd Lord
2016-06-03 23:19:13 -04:00
parent b6e61c0cf5
commit 3793e6187a
39 changed files with 422 additions and 104 deletions
@@ -73,6 +73,16 @@
else
return ..()
/obj/structure/table_frame/narsie_act()
if(prob(20))
new /obj/structure/table_frame/wood(src.loc)
qdel(src)
/obj/structure/table_frame/ratvar_act()
if(prob(20))
new /obj/structure/table_frame/brass(src.loc)
qdel(src)
/*
* Wooden Frames
*/
@@ -109,3 +119,16 @@
qdel(src)
else
return ..()
/obj/structure/table_frame/brass
name = "brass table frame"
desc = "Four pieces of brass arranged in a square. It's slightly warm to the touch."
icon_state = "brass_frame"
framestackamount = 0
/obj/structure/table_frame/brass/narsie_act()
..()
if(src) //do we still exist?
var/previouscolor = color
color = "#960000"
animate(src, color = previouscolor, time = 8)