Skip to content

Commit

Permalink
For my next trick, I shall do the following:
Browse files Browse the repository at this point in the history
-Engineers and Miners will now start with an 'industrial backpack'.
-Added two new graffiti decals. Now with alpha channels!

that's it I think.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1761 316c924e-a436-60f5-8080-3fe189b3f50e
  • Loading branch information
matty-1@talktalk.net committed Jul 4, 2011
1 parent bc6b563 commit dfe4e68
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions code/defines/obj/storage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@
desc = "A very robust backpack."
icon_state = "securitypack"

/obj/item/weapon/storage/backpack/industrial
name = "industrial backpack"
desc = "A tough backpack for the daily grind"
icon_state = "engiepack"

/obj/item/weapon/storage/briefcase
name = "briefcase"
desc = "Used by the lawyer to robust security in the court room."
Expand Down
2 changes: 2 additions & 0 deletions code/game/jobs/jobprocs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@
src.miming = 1

if ("Station Engineer")
src.equip_if_possible(new /obj/item/weapon/storage/backpack/industrial (src), slot_back)
src.equip_if_possible(new /obj/item/device/radio/headset/headset_eng (src), slot_ears) // -- TLE
src.equip_if_possible(new /obj/item/device/pda/engineering(src), slot_belt)
src.equip_if_possible(new /obj/item/clothing/under/rank/engineer(src), slot_w_uniform)
Expand All @@ -358,6 +359,7 @@
src.equip_if_possible(new /obj/item/device/t_scanner(src), slot_r_store)

if ("Shaft Miner")
src.equip_if_possible(new /obj/item/weapon/storage/backpack/industrial (src), slot_back)
src.equip_if_possible(new /obj/item/device/radio/headset/headset_mine (src), slot_ears)
src.equip_if_possible(new /obj/item/clothing/under/rank/miner(src), slot_w_uniform)
src.equip_if_possible(new /obj/item/clothing/shoes/black(src), slot_shoes)
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/toys.dm
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ CRAYONS
if("rune")
type = "rune[rand(1,6)]"
if("graffiti")
type = pick("amyjon","face","matt","revolution","engie","guy","end")
type = pick("amyjon","face","matt","revolution","engie","guy","end","dwarf","uboa")

var/icon/mainOverlay = new/icon('crayondecal.dmi',"[type]",2.1)
var/icon/shadeOverlay = new/icon('crayondecal.dmi',"[type]s",2.1)
Expand Down
Binary file modified icons/mob/back.dmi
Binary file not shown.
Binary file modified icons/obj/crayondecal.dmi
Binary file not shown.
Binary file modified icons/obj/storage.dmi
Binary file not shown.

0 comments on commit dfe4e68

Please sign in to comment.