Skip to content

Commit

Permalink
Artificer Webbing Harness examinetext and some markings fixes (#37)
Browse files Browse the repository at this point in the history
## About The Pull Request
This PR does two things: clarifies the Artificer Webbing Harness'
adjustability in its examinetext, and fixes the modular longsock and
corvid markings. The modular long socks were missing hands and feet, and
this was fixed in code. The corvid belly markings were missing separate
groin sprites, and this was fixed in the .dmi.


![dreamseeker_BetCCRE4Eg](https://github.com/user-attachments/assets/dcaf64af-882d-421c-b0f5-496489d46937)


![ae2mZCELm4](https://github.com/user-attachments/assets/5bde1302-4562-40bd-928a-acbb319068ab)


## Changelog
:cl: Toriate
add: Artificer Guild Web Harness now has clearer examine text to
describe its usability.
fix: Fixed the modular longsock and corvid belly markings
/:cl:

Co-authored-by: michiyamenotehifunana <[email protected]>
Co-authored-by: valkyria-gk <[email protected]>
  • Loading branch information
3 people authored Aug 17, 2024
1 parent 8033480 commit 7931b1b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion code/game/objects/items/weapons/storage/belt.dm
Original file line number Diff line number Diff line change
Expand Up @@ -584,12 +584,16 @@

/obj/item/storage/belt/webbing/artificer
name = "artificer guild web harness"
desc = "Everything you need at hand, at belt. This one is hand crafted by the artificer guild, allowing it to better store larger items by sacrificing space. Better than most tool belts."
desc = "Everything you need at hand, in a modular series of belts and harnesses. Hand crafted by the artificer guild, it holds more than most tool belts and can be adjusted to accomodate various setups."
cant_hold = list(/obj/item/storage/pouch,
/obj/item/storage/firstaid,
/obj/item/storage/toolbox,
/obj/item/storage/briefcase) //These types of storage in a belt

/obj/item/storage/belt/webbing/artificer/examine(mob/user)
..()
to_chat(user, "<span class='info'>\The [src] can be adjusted to fit varying amounts of differently sized items by right clicking on it and selecting the Adjust Storage option.</span>")

/obj/item/storage/belt/webbing/artificer/verb/toggle_storage()
set name = "Adjust Storage"
set category = "Object"
Expand Down
8 changes: 4 additions & 4 deletions code/modules/sprite_accessories/_accessory_marking.dm
Original file line number Diff line number Diff line change
Expand Up @@ -483,25 +483,25 @@
name = "Modular Longsock (Right Arm)"
icon_state = "osocks"
blend = ICON_MULTIPLY
body_parts = list(BP_R_ARM)
body_parts = list(BP_R_ARM, BP_R_HAND)

osocks_larm
name = "Modular Longsock (Left Arm)"
icon_state = "osocks"
blend = ICON_MULTIPLY
body_parts = list(BP_L_ARM)
body_parts = list(BP_L_ARM, BP_L_HAND)

osocks_rleg
name = "Modular Longsock (Right Leg)"
icon_state = "osocks"
blend = ICON_MULTIPLY
body_parts = list(BP_R_LEG)
body_parts = list(BP_R_LEG, BP_R_FOOT)

osocks_lleg
name = "Modular Longsock (Left Leg)"
icon_state = "osocks"
blend = ICON_MULTIPLY
body_parts = list(BP_L_LEG)
body_parts = list(BP_L_LEG, BP_L_FOOT)

monoeye
name = "Monoeye"
Expand Down
Binary file modified icons/mob/human_races/markings.dmi
Binary file not shown.

0 comments on commit 7931b1b

Please sign in to comment.