mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 16:10:02 +01:00
New Wetsuits for Skrell (#20870)
Art by spookywastaken in Discord/Spookypineapple in Byond. Approved and requested by Skrell Lore.  --------- Co-authored-by: steviii <cormallenfield123@gmail.com>
This commit is contained in:
co-authored by
steviii
parent
051314ab91
commit
2667670749
@@ -54,6 +54,8 @@
|
||||
/obj/item/clothing/under/overalls = 1,
|
||||
/obj/item/clothing/under/syndicate/tacticool = 0.4,
|
||||
/obj/item/clothing/under/syndicate/tracksuit = 0.2,
|
||||
/obj/item/clothing/under/skrell/wetsuit/swimstars = 0.1, // WE LOVE SWIMSTARS!
|
||||
/obj/item/clothing/under/skrell/wetsuit/swimstars/alt = 0.1,
|
||||
/obj/item/device/firing_pin = 0.3,
|
||||
/obj/item/device/firing_pin/clown = 0.01,
|
||||
/obj/item/device/flashlight = 1,
|
||||
|
||||
@@ -410,12 +410,35 @@ ABSTRACT_TYPE(/datum/gear/accessory/skrell)
|
||||
gear_tweaks += new /datum/gear_tweak/path(dress)
|
||||
|
||||
/datum/gear/uniform/skrell/wetsuit
|
||||
display_name = "casual wetsuit"
|
||||
display_name = "casual wetsuits and swimsuits"
|
||||
path = /obj/item/clothing/under/skrell/wetsuit
|
||||
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI)
|
||||
sort_category = "Xenowear - Skrell"
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION
|
||||
|
||||
/datum/gear/uniform/skrell/wetsuit/New()
|
||||
..()
|
||||
var/list/wetsuit = list()
|
||||
wetsuit["casual wetsuit"] = /obj/item/clothing/under/skrell/wetsuit
|
||||
wetsuit["casual dark wetsuit"] = /obj/item/clothing/under/skrell/wetsuit/dark
|
||||
wetsuit["casual swimsuit"] = /obj/item/clothing/under/skrell/wetsuit/swimsuit
|
||||
wetsuit["casual swimsuit, alt"] = /obj/item/clothing/under/skrell/wetsuit/swimsuit/alt
|
||||
gear_tweaks += new /datum/gear_tweak/path(wetsuit)
|
||||
|
||||
/datum/gear/uniform/skrell/swimstars
|
||||
display_name = "swimstars swimsuits"
|
||||
path = /obj/item/clothing/under/skrell/wetsuit/swimstars
|
||||
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI)
|
||||
sort_category = "Xenowear - Skrell"
|
||||
flags = GEAR_NO_SELECTION
|
||||
|
||||
/datum/gear/uniform/skrell/swimstars/New()
|
||||
..()
|
||||
var/list/swimstars = list()
|
||||
swimstars["swimstars wetsuit"] = /obj/item/clothing/under/skrell/wetsuit/swimstars
|
||||
swimstars["swimstars wetsuit, alt"] = /obj/item/clothing/under/skrell/wetsuit/swimstars/alt
|
||||
gear_tweaks += new /datum/gear_tweak/path(swimstars)
|
||||
|
||||
/datum/gear/ears/skrell/tailband
|
||||
display_name = "SCI tailband"
|
||||
path = /obj/item/clothing/ears/skrell/tailband
|
||||
|
||||
@@ -314,12 +314,46 @@
|
||||
|
||||
/obj/item/clothing/under/skrell/wetsuit
|
||||
name = "casual wetsuit"
|
||||
desc = "A wetsuit intended as casualwear for Skrell. Can be worn on its own or under additional clothes."
|
||||
desc = "A wetsuit made as standard apparel for skrell, and functions as underclothes for non-hydrophobic apparel. Acceptable to wear on its own, or as a base for other clothing worn atop it."
|
||||
icon = 'icons/obj/item/clothing/under/skrell/wetsuit.dmi'
|
||||
icon_state = "wetsuit"
|
||||
item_state = "wetsuit"
|
||||
has_accents = TRUE
|
||||
|
||||
/obj/item/clothing/under/skrell/wetsuit/dark
|
||||
name = "casual wetsuit"
|
||||
desc = "A wetsuit made as standard apparel for skrell, and functions as underclothes for non-hydrophobic apparel. Acceptable to wear on its own, or as a base for other clothing worn atop it. This set is darker, for easier accessorizing."
|
||||
icon_state = "wetsuit_dark"
|
||||
item_state = "wetsuit_dark"
|
||||
has_accents = TRUE
|
||||
|
||||
/obj/item/clothing/under/skrell/wetsuit/swimsuit
|
||||
name = "casual swimsuit"
|
||||
desc = "A wetsuit made as standard apparel for skrell. This one is stylized after human swimwear, and is more popular among the younger generations. This swimsuit is Nioh'wan, or 'full-moon', and covers as much as the usual wetsuit would, without the pantlegs or sleeves."
|
||||
desc_extended = "Adopting human swimwear styles, modern swimsuit-style wetsuits have levels of stylization and showiness referred to by the phases of the moon. Nioh'wan, or 'full moon', covers as much as a wetsuit would usually, but lacks pantlegs. Nioh'miki, or 'half moon', cuts down further to mimic the appearance of human one-piece swimsuit. Nioh'waji, or 'crescent moon', has portions of the swimsuit with the fabric removed to further stylize itself, while Nioh'riri, or 'new moon', is essentially a two-piece swimsuit."
|
||||
icon_state = "swim"
|
||||
item_state = "swim"
|
||||
has_accents = TRUE
|
||||
|
||||
/obj/item/clothing/under/skrell/wetsuit/swimsuit/alt
|
||||
name = "casual swimsuit"
|
||||
desc = "A wetsuit made as standard apparel for skrell. This one is stylized after human swimwear, and is more popular among the younger generations. These swimsuits have varying levels of stylization."
|
||||
icon_state = "swim_alt"
|
||||
item_state = "swim_alt"
|
||||
has_accents = TRUE
|
||||
|
||||
/obj/item/clothing/under/skrell/wetsuit/swimstars
|
||||
name = "swimstars swimsuit"
|
||||
desc = "A wetsuit made as standard apparel for skrell. This one is stylized after human swimwear, and is more popular among the younger generations. These swimsuits are stylized after the original styles of the skrell characters from the animated series Swimstars, which have since caught on with younger skrell to the point of being officially produced."
|
||||
icon_state = "swimstars"
|
||||
item_state = "swimstars"
|
||||
|
||||
/obj/item/clothing/under/skrell/wetsuit/swimstars/alt
|
||||
name = "swimstars swimsuit"
|
||||
desc = "A wetsuit made as standard apparel for skrell. This one is stylized after human swimwear, and is more popular among the younger generations. These swimsuits are stylized after the original styles of the skrell characters from the animated series Swimstars, which have since caught on with younger skrell to the point of being officially produced."
|
||||
icon_state = "swimstars_alt"
|
||||
item_state = "swimstars_alt"
|
||||
|
||||
/obj/item/clothing/suit/storage/toggle/skrell/starcoat
|
||||
name = "star coat"
|
||||
desc = "A very fashionable coat, that traps moisture and provides good insulation. Starry patterns have been woven into its fabric."
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
################################
|
||||
# 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
|
||||
# - (fixes bugs)
|
||||
# wip
|
||||
# - (work in progress)
|
||||
# qol
|
||||
# - (quality of life)
|
||||
# soundadd
|
||||
# - (adds a sound)
|
||||
# sounddel
|
||||
# - (removes a sound)
|
||||
# rscadd
|
||||
# - (adds a feature)
|
||||
# rscdel
|
||||
# - (removes a feature)
|
||||
# imageadd
|
||||
# - (adds an image or sprite)
|
||||
# imagedel
|
||||
# - (removes an image or sprite)
|
||||
# spellcheck
|
||||
# - (fixes spelling or grammar)
|
||||
# experiment
|
||||
# - (experimental change)
|
||||
# balance
|
||||
# - (balance changes)
|
||||
# code_imp
|
||||
# - (misc internal code change)
|
||||
# refactor
|
||||
# - (refactors code)
|
||||
# config
|
||||
# - (makes a change to the config files)
|
||||
# admin
|
||||
# - (makes changes to administrator tools)
|
||||
# server
|
||||
# - (miscellaneous changes to server)
|
||||
#################################
|
||||
|
||||
# Your name.
|
||||
author: steviii
|
||||
|
||||
# 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:
|
||||
- imageadd: "Adds new wetsuits and swimsuits for Skrell."
|
||||
- rscadd: "Adds swimstars swimsuits and adds them to the maint loot pool."
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 656 B After Width: | Height: | Size: 2.9 KiB |
Reference in New Issue
Block a user