diff --git a/code/modules/client/preference/loadout/loadout_donor.dm b/code/modules/client/preference/loadout/loadout_donor.dm index 0db3f96f42b..dcdff71535e 100644 --- a/code/modules/client/preference/loadout/loadout_donor.dm +++ b/code/modules/client/preference/loadout/loadout_donor.dm @@ -195,7 +195,7 @@ "silver" = /obj/item/clothing/under/night_dress/silver, "white" = /obj/item/clothing/under/night_dress/white,) gear_tweaks += new /datum/gear_tweak/path(skirts, src) - + /datum/gear/donor/strip/cheese_badge display_name = "great fellow's badge" path = /obj/item/clothing/accessory/head_strip/cheese_badge @@ -208,3 +208,33 @@ donator_tier = 4 cost = 1 allowed_roles = list(JOB_TITLE_CAPTAIN, JOB_TITLE_QUARTERMASTER, JOB_TITLE_RD, JOB_TITLE_HOS, JOB_TITLE_HOP, JOB_TITLE_CMO, JOB_TITLE_CHIEF, JOB_TITLE_REPRESENTATIVE, JOB_TITLE_JUDGE) + +/datum/gear/donor/backpack_hiking + donator_tier = 3 + cost = 1 + display_name = "backpack, Fancy Hiking Pack" + path = /obj/item/storage/backpack/fluff/hiking + +/datum/gear/donor/backpack_brew + donator_tier = 3 + cost = 1 + display_name = "backpack, The brew" + path = /obj/item/storage/backpack/fluff/thebrew + +/datum/gear/donor/backpack_cat + donator_tier = 3 + cost = 1 + display_name = "backpack, CatPack" + path = /obj/item/storage/backpack/fluff/ssscratches_back + +/datum/gear/donor/backpack_voxcaster + donator_tier = 3 + cost = 1 + display_name = "backpack, Voxcaster" + path = /obj/item/storage/backpack/fluff/krich_back + +/datum/gear/donor/backpack_syndi + donator_tier = 3 + cost = 1 + display_name = "backpack, Military Satchel" + path = /obj/item/storage/backpack/fluff/syndiesatchel diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index bc7882f5202..26c3cbfb37d 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -1390,18 +1390,21 @@ icon = 'icons/obj/custom_items.dmi' icon_state = "rawk_satchel" sprite_sheets = null + item_state = "rawk_satchel" /obj/item/storage/backpack/fluff/krich_back //lizardzsi: Krichahka name = "Voxcaster" desc = "Battered, Sol-made military radio backpack that had its speakers fried from playing Vox opera. The words 'Swift-Talon' are crudely scratched onto its side." icon = 'icons/obj/custom_items.dmi' icon_state = "voxcaster_fluff" + item_state = "voxcaster_fluff" /obj/item/storage/backpack/fluff/ssscratches_back //Ssscratches: Lasshy-Bot name = "CatPack" desc = "It's a backpack, but it's also a cat." icon = 'icons/obj/custom_items.dmi' icon_state = "ssscratches_backpack" + item_state = "ssscratches_backpack" /obj/item/storage/backpack/fluff/thebrew //Greey: Korala Ice name = "The Brew" @@ -1613,6 +1616,7 @@ desc = "A black and red hiking pack with some nice little accessories." icon = 'icons/obj/custom_items.dmi' icon_state = "danpack" + item_state = "danpack" /obj/item/clothing/under/fluff/kiaoutfit //FullOfSkittles: Kiachi name = "Suspicious Outfit" diff --git a/icons/mob/clothing/species/grey/back.dmi b/icons/mob/clothing/species/grey/back.dmi index e4f5e1a4232..4d2c8f4bdbc 100644 Binary files a/icons/mob/clothing/species/grey/back.dmi and b/icons/mob/clothing/species/grey/back.dmi differ diff --git a/icons/mob/clothing/species/vox/back.dmi b/icons/mob/clothing/species/vox/back.dmi index 17a67e31c91..a3855361966 100644 Binary files a/icons/mob/clothing/species/vox/back.dmi and b/icons/mob/clothing/species/vox/back.dmi differ diff --git a/icons/mob/inhands/clothing_lefthand.dmi b/icons/mob/inhands/clothing_lefthand.dmi index 969efe2a696..936f716ea6f 100644 Binary files a/icons/mob/inhands/clothing_lefthand.dmi and b/icons/mob/inhands/clothing_lefthand.dmi differ diff --git a/icons/mob/inhands/clothing_righthand.dmi b/icons/mob/inhands/clothing_righthand.dmi index 1fcce3b1128..9dc88aef92d 100644 Binary files a/icons/mob/inhands/clothing_righthand.dmi and b/icons/mob/inhands/clothing_righthand.dmi differ