Visegradi Clothes PR (#15872)
* ww * ww * awd * wdadw * waadaw * wadwad * dawad * adw * wad * d * awd * ddw * awd * adw * daw * awd * adw * adw * I woke up in a new * Update code/modules/clothing/under/accessories/shirts.dm Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> * Update code/modules/client/preference_setup/loadout/loadout_suit.dm Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> * d * adw * adw * dawd * Update code/modules/clothing/head/misc_special.dm Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> --------- Co-authored-by: DanseMacabre <rsurname1212@gmail.com> Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
@@ -625,3 +625,8 @@
|
||||
necklace_uncolored["large golden pendant"] = /obj/item/clothing/accessory/necklace/colorable/twopiece/pendant/fat
|
||||
necklace_uncolored["large silver pendant"] = /obj/item/clothing/accessory/necklace/colorable/twopiece/pendant/silver/fat
|
||||
gear_tweaks += new /datum/gear_tweak/path(necklace_uncolored)
|
||||
|
||||
/datum/gear/accessory/visegradi_sweater
|
||||
display_name = "visegradi patterned sweater"
|
||||
path = /obj/item/clothing/accessory/sweater/visegradi
|
||||
flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
@@ -415,6 +415,11 @@
|
||||
path = /obj/item/clothing/head/hairnet
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
/datum/gear/head/nyakas
|
||||
display_name = "visegradi nyakas"
|
||||
path = /obj/item/clothing/head/ushanka/nyakas
|
||||
flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
/*
|
||||
Block Hair Adjustment
|
||||
*/
|
||||
|
||||
@@ -468,4 +468,9 @@ datum/gear/suit/colorvest
|
||||
overalls["overall skirt, high back"] = /obj/item/clothing/accessory/overalls/skirt/high_back
|
||||
overalls["overall skirt, x-shaped back"] = /obj/item/clothing/accessory/overalls/skirt/x_shaped_back
|
||||
|
||||
gear_tweaks += new /datum/gear_tweak/path(overalls)
|
||||
gear_tweaks += new /datum/gear_tweak/path(overalls)
|
||||
|
||||
/datum/gear/suit/ponczo
|
||||
display_name = "visegradi ponczo"
|
||||
path = /obj/item/clothing/suit/storage/hooded/wintercoat/colorable/ponczo
|
||||
flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
@@ -135,14 +135,24 @@
|
||||
desc = "Perfect for winter in Siberia, da?"
|
||||
icon_state = "greyushanka"
|
||||
|
||||
/obj/item/clothing/head/ushanka/nyakas
|
||||
name = "visegradi nyakas"
|
||||
desc = "A type of flap hat that is extremely popular on Visegrad. It is designed to keep one's head and neck dry, and the flap can be pinned to the sides of the hat when not needed."
|
||||
contained_sprite = TRUE
|
||||
icon = 'icons/obj/item/clothing/head/nyakas.dmi'
|
||||
icon_state = "nyakas"
|
||||
item_state = "nyakas"
|
||||
|
||||
/obj/item/clothing/head/ushanka/attack_self(mob/user as mob)
|
||||
src.earsup = !src.earsup
|
||||
if(src.earsup)
|
||||
icon_state = "[icon_state]_up"
|
||||
to_chat(user, "You raise the ear flaps on the ushanka.")
|
||||
item_state = "[item_state]_up"
|
||||
to_chat(user, "You raise the ear flaps on the hat.")
|
||||
else
|
||||
src.icon_state = initial(icon_state)
|
||||
to_chat(user, "You lower the ear flaps on the ushanka.")
|
||||
item_state = initial(item_state)
|
||||
to_chat(user, "You lower the ear flaps on the hat.")
|
||||
update_clothing_icon()
|
||||
|
||||
/*
|
||||
|
||||
@@ -357,3 +357,13 @@
|
||||
/obj/item/clothing/head/winterhood/colorable/update_icon(mob/user)
|
||||
. = ..()
|
||||
|
||||
/obj/item/clothing/suit/storage/hooded/wintercoat/colorable/ponczo
|
||||
name = "visegradi ponczo"
|
||||
desc = "A type of shelter-half or zeltbahn, the ponczo is a ubiquitous article of clothing on the planet of Visegrad. Resembling a long smock or raincoat, the ponczo is as waterproof as it is rugged. While true shelter-halves can be made into a tent, most ponczos are no longer capable of this."
|
||||
icon_state = "ponczo"
|
||||
item_state = "ponczo"
|
||||
hoodtype = /obj/item/clothing/head/winterhood/colorable/ponczo
|
||||
|
||||
/obj/item/clothing/head/winterhood/colorable/ponczo
|
||||
name = "visegradi ponczo hood"
|
||||
desc = "A hood for a Visegradi ponczo."
|
||||
@@ -96,6 +96,13 @@
|
||||
icon_state = "argyle_sweater_vest"
|
||||
item_state = "argyle_sweater_vest"
|
||||
|
||||
/obj/item/clothing/accessory/sweater/visegradi
|
||||
name = "visegradi patterned sweater"
|
||||
desc = "A thick wool sweater, with a meandering pattern. These are typical of the planet Visegrad, where the wool is valued in both keeping the wearer dry and warm on the notoriously wet planet."
|
||||
icon = 'icons/obj/item/clothing/accessory/visegradi_sweater.dmi'
|
||||
icon_state = "visegradi_sweater"
|
||||
item_state = "visegradi_sweater"
|
||||
|
||||
//
|
||||
// Shirts
|
||||
//
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
################################
|
||||
# Example Changelog File
|
||||
#
|
||||
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
|
||||
#
|
||||
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
|
||||
# When it is, any changes listed below will disappear.
|
||||
#
|
||||
# Valid Prefixes:
|
||||
# bugfix
|
||||
# wip (For works in progress)
|
||||
# tweak
|
||||
# soundadd
|
||||
# sounddel
|
||||
# rscadd (general adding of nice things)
|
||||
# rscdel (general deleting of nice things)
|
||||
# imageadd
|
||||
# imagedel
|
||||
# maptweak
|
||||
# spellcheck (typo fixes)
|
||||
# experiment
|
||||
# balance
|
||||
# admin
|
||||
# backend
|
||||
# security
|
||||
# refactor
|
||||
#################################
|
||||
|
||||
# Your name.
|
||||
author: TheDanseMacabre
|
||||
|
||||
# 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, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
|
||||
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
|
||||
changes:
|
||||
- rscadd: "Added three Visegradi clothing items to the loadout. The nyakas, the ponczo, and the patterned sweater. Credits to Wezzy for nyakas and ponczo sprites."
|
||||
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 108 KiB |
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 109 KiB |
|
After Width: | Height: | Size: 475 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 809 B |