Skip to content

Commit

Permalink
add: new sprites from kisik
Browse files Browse the repository at this point in the history
  • Loading branch information
Etrnlmelancholy committed Apr 7, 2024
1 parent 9506bf8 commit e679aae
Show file tree
Hide file tree
Showing 13 changed files with 76 additions and 0 deletions.
14 changes: 14 additions & 0 deletions code/modules/client/preference/loadout/loadout_accessories.dm
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,17 @@
display_name = "armband, science"
path = /obj/item/clothing/accessory/armband/science
allowed_roles = list(JOB_TITLE_RD, JOB_TITLE_SCIENTIST, JOB_TITLE_SCIENTIST_STUDENT, JOB_TITLE_ROBOTICIST)

/datum/gear/accessory/holsters
display_name = "holster, select"
path = /obj/item/clothing/accessory/holster/
allowed_roles = list(JOB_TITLE_HOS, JOB_TITLE_WARDEN, JOB_TITLE_DETECTIVE, JOB_TITLE_OFFICER, JOB_TITLE_BRIGDOC, JOB_TITLE_PILOT)

/datum/gear/accessory/holsters/New()
..()
var/list/holsters = list(/obj/item/clothing/accessory/holster/leg,
/obj/item/clothing/accessory/holster/leg/black,
/obj/item/clothing/accessory/holster/belt,
/obj/item/clothing/accessory/holster/belt/black,
)
gear_tweaks += new /datum/gear_tweak/path(holsters, src, TRUE)
12 changes: 12 additions & 0 deletions code/modules/client/preference/loadout/loadout_donor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -238,3 +238,15 @@
cost = 1
display_name = "backpack, Military Satchel"
path = /obj/item/storage/backpack/fluff/syndiesatchel

/datum/gear/donor/hazardbelt
path = /obj/item/clothing/suit/storage/hazardvest/beltdonor
donator_tier = 3
cost = 1
allowed_roles = list(JOB_TITLE_CHIEF, JOB_TITLE_ENGINEER)

/datum/gear/donor/atmosbelt
path = /obj/item/clothing/suit/storage/hazardvest/beltdonor/atmos
donator_tier = 3
cost = 1
allowed_roles = list(JOB_TITLE_CHIEF, JOB_TITLE_ATMOSTECH)
26 changes: 26 additions & 0 deletions code/modules/clothing/suits/jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,32 @@
SPECIES_STOK = 'icons/mob/clothing/species/monkey/suit.dmi'
)

/obj/item/clothing/suit/storage/hazardvest/beltdonor
name = "hazard belt"
desc = "A high-visibility webbing used in work zones. This one comes with premial quality materials."
icon_state = "hazard_belt"
item_state = "hazard_belt"

sprite_sheets = list(
SPECIES_UNATHI = 'icons/mob/clothing/species/unathi/suit.dmi',
SPECIES_ASHWALKER_BASIC = 'icons/mob/clothing/species/unathi/suit.dmi',
SPECIES_ASHWALKER_SHAMAN = 'icons/mob/clothing/species/unathi/suit.dmi',
SPECIES_GREY = 'icons/mob/clothing/species/grey/suit.dmi',
SPECIES_VOX = 'icons/mob/clothing/species/vox/suit.dmi',
SPECIES_MONKEY = 'icons/mob/clothing/species/monkey/suit.dmi',
SPECIES_FARWA = 'icons/mob/clothing/species/monkey/suit.dmi',
SPECIES_WOLPIN = 'icons/mob/clothing/species/monkey/suit.dmi',
SPECIES_NEARA = 'icons/mob/clothing/species/monkey/suit.dmi',
SPECIES_STOK = 'icons/mob/clothing/species/monkey/suit.dmi',
SPECIES_DRASK = 'icons/mob/clothing/species/drask/suit.dmi'
)


/obj/item/clothing/suit/storage/hazardvest/beltdonor/atmos
name = "atmospherics hazard belt"
icon_state = "atmos_belt"
item_state = "atmos_belt"

//Lawyer
/obj/item/clothing/suit/storage/lawyer
sprite_sheets = list(
Expand Down
24 changes: 24 additions & 0 deletions code/modules/clothing/under/accessories/holster.dm
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,30 @@
icon_state = "holster"
item_color = "holster_low"

/obj/item/clothing/accessory/holster/leg
name = "leg holster"
desc = "A handgun holster. This one for spies."
icon_state = "leg_holster"
item_color = "leg_holster"

/obj/item/clothing/accessory/holster/leg/black
name = "black leg holster"
desc = "A handgun holster. This one for spies. Comes in stealthy black."
icon_state = "leg_holster_black"
item_color = "leg_holster_black"

/obj/item/clothing/accessory/holster/belt
name = "belt holster"
desc = "A handgun holster. This one for security officers to remind some good ol' times."
icon_state = "belt_holster"
item_color = "belt_holster"

/obj/item/clothing/accessory/holster/belt/black
name = "black belt holster"
desc = "A handgun holster. This one for security officers to remind some good ol' times. Comes in black, just like in the America!"
icon_state = "belt_holster_black"
item_color = "belt_holster_black"

/obj/item/clothing/accessory/holster/knives
name = "knife holster"
desc = "A bunch of straps connected into one holster. Has 7 special slots for holding knives."
Expand Down
Binary file modified icons/mob/clothing/species/drask/suit.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/grey/suit.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/monkey/suit.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/unathi/suit.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/vox/suit.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/suit.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/ties.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/suits.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/ties.dmi
Binary file not shown.

0 comments on commit e679aae

Please sign in to comment.