This commit is contained in:
Hubblenaut
2015-05-24 15:39:43 +02:00
parent 7564dcf843
commit 7a8bbab694
2 changed files with 8 additions and 1 deletions
+1
View File
@@ -79,6 +79,7 @@
desc = "It's a small rodent."
icon_state = "mouse_gray"
origin_tech = null
w_class = 1
/obj/item/weapon/holder/mouse/gray
icon_state = "mouse_gray"
@@ -63,7 +63,13 @@
if(!body_color)
body_color = pick( list("brown","gray","white") )
holder_type = text2path("/obj/item/weapon/holder/mouse/[body_color]")
switch(body_color)
if("brown")
holder_type = /obj/item/weapon/holder/mouse/brown
if("gray")
holder_type = /obj/item/weapon/holder/mouse/gray
if("white")
holder_type = /obj/item/weapon/holder/mouse/white
icon_state = "mouse_[body_color]"
icon_living = "mouse_[body_color]"
icon_dead = "mouse_[body_color]_dead"