TG: -Wallets now have sprites for holding silver head IDs and red Centcom IDs.
-New spare ID box sprite. New pill-bottle box sprite. -Added spades for botanists who want to play with dirt. -A spade can be found in the hydroponics supply area, along with a couple spare tools useful for the job. Revision: r3782 Author: d_h2...@yahoo.com
@@ -88,7 +88,7 @@
|
|||||||
/obj/item/weapon/storage/pillbottlebox
|
/obj/item/weapon/storage/pillbottlebox
|
||||||
name = "box of pill bottles"
|
name = "box of pill bottles"
|
||||||
desc = "It has pictures of pill bottles on its front."
|
desc = "It has pictures of pill bottles on its front."
|
||||||
icon_state = "box"
|
icon_state = "pillbox"
|
||||||
item_state = "syringe_kit"
|
item_state = "syringe_kit"
|
||||||
foldable = /obj/item/stack/sheet/cardboard //BubbleWrap
|
foldable = /obj/item/stack/sheet/cardboard //BubbleWrap
|
||||||
|
|
||||||
@@ -292,12 +292,19 @@
|
|||||||
|
|
||||||
update_icon()
|
update_icon()
|
||||||
for(var/obj/item/weapon/card/id/ID in contents)
|
for(var/obj/item/weapon/card/id/ID in contents)
|
||||||
if(ID.icon_state == "gold")
|
switch(ID.icon_state)
|
||||||
icon_state = "walletid_gold"
|
if("id")
|
||||||
return
|
icon_state = "walletid"
|
||||||
else if(ID.icon_state == "id")
|
return
|
||||||
icon_state = "walletid"
|
if("silver")
|
||||||
return
|
icon_state = "walletid_silver"
|
||||||
|
return
|
||||||
|
if("gold")
|
||||||
|
icon_state = "walletid_gold"
|
||||||
|
return
|
||||||
|
if("centcom")
|
||||||
|
icon_state = "walletid_centcom"
|
||||||
|
return
|
||||||
icon_state = "wallet"
|
icon_state = "wallet"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -266,7 +266,8 @@ proc/move_mining_shuttle()
|
|||||||
/*****************************Shovel********************************/
|
/*****************************Shovel********************************/
|
||||||
|
|
||||||
/obj/item/weapon/shovel
|
/obj/item/weapon/shovel
|
||||||
name = "Shovel"
|
name = "shovel"
|
||||||
|
desc = "A large tool for digging and moving dirt."
|
||||||
icon = 'items.dmi'
|
icon = 'items.dmi'
|
||||||
icon_state = "shovel"
|
icon_state = "shovel"
|
||||||
flags = FPRINT | TABLEPASS| CONDUCT
|
flags = FPRINT | TABLEPASS| CONDUCT
|
||||||
@@ -278,11 +279,14 @@ proc/move_mining_shuttle()
|
|||||||
m_amt = 50
|
m_amt = 50
|
||||||
origin_tech = "materials=1;engineering=1"
|
origin_tech = "materials=1;engineering=1"
|
||||||
|
|
||||||
|
/obj/item/weapon/shovel/spade
|
||||||
|
name = "spade"
|
||||||
|
desc = "A small tool for digging and moving dirt."
|
||||||
|
icon_state = "spade"
|
||||||
|
item_state = "spade"
|
||||||
|
force = 5.0
|
||||||
|
throwforce = 7.0
|
||||||
|
w_class = 2.0
|
||||||
|
|
||||||
|
|
||||||
/**********************Mining car (Crate like thing, not the rail car)**************************/
|
/**********************Mining car (Crate like thing, not the rail car)**************************/
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 130 KiB After Width: | Height: | Size: 131 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 66 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 54 KiB |