•New matchbox and match sprites, so they don't look fucking awkward anymore.

Project shrink silly sprites is only just starting.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@887 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
polyxenitopalidou@gmail.com
2011-01-17 21:30:06 +00:00
parent 37d9b954ed
commit e466429b67
3 changed files with 7 additions and 9 deletions

View File

@@ -29,10 +29,10 @@
/obj/item/weapon/matchbox
name = "Matchbox"
desc = "A box of matches"
desc = "A small box of Almost But Not Quite Plasma Premium Matches."
icon = 'cigarettes.dmi'
icon_state = "matchbox"
var/matchcount = 20
var/matchcount = 10
/obj/item/weapon/rcd
name = "rapid-construction-device (RCD)"

View File

@@ -49,13 +49,11 @@ ZIPPO
else
return ..()
if(src.matchcount <= 0)
src.icon_state = "matchbox_e"
else if(src.matchcount <= 5)
src.icon_state = "matchbox_1q"
else if(src.matchcount <= 10)
src.icon_state = "matchbox_h"
else if(src.matchcount <= 15)
src.icon_state = "matchbox_3q"
src.icon_state = "matchbox_empty"
else if(src.matchcount <= 3)
src.icon_state = "matchbox_almostempty"
else if(src.matchcount <= 6)
src.icon_state = "matchbox_almostfull"
else
src.icon_state = "matchbox"
src.update_icon()