This commit is contained in:
redstryker
2016-09-24 00:20:48 -04:00
parent 57c5de6d1c
commit 83b080f65c
10 changed files with 54 additions and 1 deletions
@@ -13,6 +13,8 @@
slot_flags = SLOT_BACK
max_w_class = ITEMSIZE_LARGE
max_storage_space = INVENTORY_STANDARD_SPACE
var/flippable = 0
var/side = 0 //0 = right, 1 = left
/obj/item/weapon/storage/backpack/attackby(obj/item/weapon/W as obj, mob/user as mob)
if (src.use_sound)
@@ -338,4 +340,13 @@
item_state_slots = list(slot_r_hand_str = "securitypack", slot_l_hand_str = "securitypack")
/obj/item/weapon/storage/backpack/messenger/black
icon_state = "courierbagblk"
icon_state = "courierbagblk"
/obj/item/weapon/storage/backpack/purse
name = "purse"
desc = "A small, fashionable bag typically worn over the shoulder."
icon_state = "purse"
item_state_slots = list(slot_r_hand_str = "lgpurse", slot_l_hand_str = "lgpurse")
w_class = ITEMSIZE_LARGE
max_w_class = ITEMSIZE_MEDIUM
max_storage_space = ITEMSIZE_COST_NORMAL * 5
@@ -9,3 +9,13 @@
w_class = ITEMSIZE_LARGE
max_w_class = ITEMSIZE_NORMAL
max_storage_space = ITEMSIZE_COST_NORMAL * 4
/obj/item/weapon/storage/briefcase/clutch
name = "clutch purse"
desc = "A fashionable handheld bag typically used by women."
icon_state = "clutch"
item_state_slots = list(slot_r_hand_str = "smpurse", slot_l_hand_str = "smpurse")
force = 0
w_class = ITEMSIZE_NORMAL
max_w_class = ITEMSIZE_SMALL
max_storage_space = ITEMSIZE_COST_SMALL * 4
@@ -111,3 +111,9 @@
if(src)
icon_state = original_state
update_icon()
/obj/item/weapon/storage/wallet/womens
name = "women's wallet"
desc = "A stylish wallet typically used by women."
icon_state = "girl_wallet"
item_state_slots = list(slot_r_hand_str = "wowallet", slot_l_hand_str = "wowallet")
@@ -36,6 +36,32 @@
display_name = "wallet, polychromic"
path = /obj/item/weapon/storage/wallet/poly
/datum/gear/accessory/wallet/womens
display_name = "wallet, womens"
path = /obj/item/weapon/storage/wallet/womens
/datum/gear/accessory/wallet/womens/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
/datum/gear/accessory/clutch
display_name = "clutch bag"
path = /obj/item/weapon/storage/briefcase/clutch
cost = 2
/datum/gear/accessory/clutch/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
/datum/gear/accessory/purse
display_name = "purse"
path = /obj/item/weapon/storage/backpack/purse
cost = 3
/datum/gear/accessory/purse/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
/datum/gear/accessory/holster
display_name = "holster, armpit"
path = /obj/item/clothing/accessory/holster/armpit
Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 71 KiB