Added rubber stamps specific to each head of staff, these don't spawn yet. Added extra paper iconstates for the different stamp colours. Added a constant to the supply shuttle file in preparation for QM paperwork expansion.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@358 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
musketstgstation@gmail.com
2010-10-27 21:32:51 +00:00
parent 6fd88401af
commit aff76097dc
4 changed files with 39 additions and 1 deletions

View File

@@ -94,7 +94,22 @@ CLIPBOARDS
if ((!in_range(src, usr) && src.loc != user && !( istype(src.loc, /obj/item/weapon/clipboard) ) && src.loc.loc != user && user.equipped() != P))
return
src.info += text("<BR><i>This paper has been stamped with the [].</i><BR>", P.name)
src.icon_state = "paper_stamped"
switch(P.type)
if(/obj/item/weapon/stamp/captain)
src.icon_state = "paper_stamped_cap"
if(/obj/item/weapon/stamp/hop)
src.icon_state = "paper_stamped_hop"
if(/obj/item/weapon/stamp/hos)
src.icon_state = "paper_stamped_hos"
if(/obj/item/weapon/stamp/ce)
src.icon_state = "paper_stamped_ce"
if(/obj/item/weapon/stamp/rd)
src.icon_state = "paper_stamped_rd"
else
src.icon_state = "paper_stamped"
if(!stamped)
stamped = new
stamped += P.type
user << "\blue You stamp the paper with your rubber stamp."
/*