diff --git a/code/modules/client/preference_setup/loadout/items/pants.dm b/code/modules/client/preference_setup/loadout/items/pants.dm index c30282d3fa9..32918a7cd36 100644 --- a/code/modules/client/preference_setup/loadout/items/pants.dm +++ b/code/modules/client/preference_setup/loadout/items/pants.dm @@ -64,6 +64,7 @@ ABSTRACT_TYPE(/datum/gear/pants) // Pants colorpants["dress pants"] = /obj/item/clothing/pants/dress colorpants["dress pants, with belt"] = /obj/item/clothing/pants/dress/belt + colorpants["cargo pants"] = /obj/item/clothing/pants/cargo colorpants["striped pants"] = /obj/item/clothing/pants/striped colorpants["flared pants"] = /obj/item/clothing/pants/flared colorpants["mustang jeans"] = /obj/item/clothing/pants/mustang/colourable diff --git a/code/modules/clothing/pants/pants.dm b/code/modules/clothing/pants/pants.dm index c8f6e653005..370b8d1e234 100644 --- a/code/modules/clothing/pants/pants.dm +++ b/code/modules/clothing/pants/pants.dm @@ -78,6 +78,12 @@ ABSTRACT_TYPE(/obj/item/clothing/pants) build_from_parts = TRUE worn_overlay = "belt" +/obj/item/clothing/pants/cargo + name = "cargo pants" + desc = "A pair of pants with large pockets." + icon_state = "cargopants" + item_state = "cargopants" + /obj/item/clothing/pants/striped name = "striped pants" desc = "A pair of striped pants. Typically seen among privateers." diff --git a/html/changelogs/ElorgRHG-cargo-pant.yml b/html/changelogs/ElorgRHG-cargo-pant.yml new file mode 100644 index 00000000000..b8bfa69a579 --- /dev/null +++ b/html/changelogs/ElorgRHG-cargo-pant.yml @@ -0,0 +1,13 @@ +# Your name. +author: ElorgRHG + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added colorable cargo pants to the loadout." diff --git a/icons/obj/item/clothing/pants/pants.dmi b/icons/obj/item/clothing/pants/pants.dmi index e7627b9dd3b..3367bb643c0 100644 Binary files a/icons/obj/item/clothing/pants/pants.dmi and b/icons/obj/item/clothing/pants/pants.dmi differ