adds fannypacks

To custom loadout as well.
This commit is contained in:
nachomeep
2017-02-01 18:31:49 -05:00
parent 867c0ba2f4
commit c81b18b40a
4 changed files with 61 additions and 1 deletions

View File

@@ -286,3 +286,51 @@
/obj/item/device/ano_scanner, /obj/item/device/ano_scanner,
/obj/item/weapon/pickaxe/hand /obj/item/weapon/pickaxe/hand
) )
/obj/item/weapon/storage/belt/fannypack
desc = "A dorky fannypack for keeping small items in."
icon_state = "fannypack_leather"
item_state = "fannypack_leather"
max_storage_space = 5
max_w_class = ITEMSIZE_SMALL
/obj/item/weapon/storage/belt/fannypack/black
name = "black fannypack"
icon_state = "fannypack_black"
item_state = "fannypack_black"
/obj/item/weapon/storage/belt/fannypack/red
name = "red fannypack"
icon_state = "fannypack_red"
item_state = "fannypack_red"
/obj/item/weapon/storage/belt/fannypack/purple
name = "purple fannypack"
icon_state = "fannypack_purple"
item_state = "fannypack_purple"
/obj/item/weapon/storage/belt/fannypack/orange
name = "orange fannypack"
icon_state = "fannypack_orange"
item_state = "fannypack_orange"
/obj/item/weapon/storage/belt/fannypack/white
name = "white fannypack"
icon_state = "fannypack_white"
item_state = "fannypack_white"
/obj/item/weapon/storage/belt/fannypack/green
name = "green fannypack"
icon_state = "fannypack_green"
item_state = "fannypack_green"
/obj/item/weapon/storage/belt/fannypack/cyan
name = "cyan fannypack"
icon_state = "fannypack_cyan"
item_state = "fannypack_cyan"
/obj/item/weapon/storage/belt/fannypack/yellow
name = "yellow fannypack"
icon_state = "fannypack_yellow"
item_state = "fannypack_yellow"

View File

@@ -280,6 +280,18 @@
path = /obj/item/clothing/accessory/storage/white_drop_pouches path = /obj/item/clothing/accessory/storage/white_drop_pouches
allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor") allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor")
/datum/gear/accessory/fannypacks
display_name = "fannypack selection"
path = /obj/item/weapon/storage/belt/fannypack
/datum/gear/accessory/fannypack/New()
..()
var/list/fannypacks = list()
for(var/fanny in typesof(/obj/item/weapon/storage/belt/fannypack))
var/obj/item/weapon/storage/belt/fannys = fanny
fannypacks[initial(fannys.name)] = fannys
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(fannypacks))
/datum/gear/accessory/webbing /datum/gear/accessory/webbing
display_name = "webbing, simple" display_name = "webbing, simple"
path = /obj/item/clothing/accessory/storage/webbing path = /obj/item/clothing/accessory/storage/webbing

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB