@@ -927,7 +927,6 @@
|
||||
contained_sprite = FALSE
|
||||
sprite_sheets = list(BODYTYPE_VAURCA = 'icons/mob/species/vaurca/back.dmi', BODYTYPE_VAURCA_BULWARK = 'icons/mob/species/bulwark/back.dmi')
|
||||
var/hooded = FALSE
|
||||
var/cape_backing_state = "cape_backing"
|
||||
|
||||
/obj/item/storage/backpack/cloak/verb/toggle_cloak_hood()
|
||||
set name = "Toggle Cloak Hood"
|
||||
@@ -946,7 +945,7 @@
|
||||
|
||||
/obj/item/storage/backpack/cloak/get_mob_overlay(var/mob/living/carbon/human/human, var/mob_icon, var/mob_state, var/slot)
|
||||
var/image/I = ..()
|
||||
var/image/cape_backing = image(mob_icon, null, "[icon_state]_backing", MOB_SHADOW_LAYER)
|
||||
var/image/cape_backing = image(mob_icon, null, "[initial(icon_state)]_backing", MOB_SHADOW_LAYER)
|
||||
I.AddOverlays(cape_backing)
|
||||
return I
|
||||
|
||||
|
||||
@@ -83,6 +83,7 @@
|
||||
description = "A selection of vaurca colored Hive cloaks."
|
||||
path = /obj/item/clothing/suit/vaurca
|
||||
cost = 1
|
||||
slot = slot_wear_suit
|
||||
whitelisted = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_BULWARK)
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
|
||||
@@ -147,7 +148,8 @@
|
||||
description = "A selection of vaurca colored shrouds."
|
||||
path = /obj/item/clothing/head/shroud
|
||||
cost = 1
|
||||
whitelisted = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR)
|
||||
slot = slot_head
|
||||
whitelisted = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_BULWARK)
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
|
||||
/datum/gear/suit/vaurca_shroud/New()
|
||||
@@ -165,6 +167,7 @@
|
||||
description = "A selection of vaurca colored shrouds."
|
||||
path = /obj/item/clothing/head/shroud/colorable
|
||||
cost = 1
|
||||
slot = slot_head
|
||||
whitelisted = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR)
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
flags = GEAR_HAS_COLOR_SELECTION
|
||||
@@ -294,6 +297,6 @@
|
||||
path = /obj/item/clothing/accessory/badge/passcard/tret
|
||||
cost = 1
|
||||
whitelisted = list(SPECIES_VAURCA_BREEDER, SPECIES_VAURCA_BULWARK, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_WORKER)
|
||||
culture_restriction = list(/singleton/origin_item/culture/klax)
|
||||
culture_restriction = list(/singleton/origin_item/culture/klax, /singleton/origin_item/culture/klax_breeder)
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
################################
|
||||
# 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: SimpleMaroon
|
||||
|
||||
# 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:
|
||||
- bugfix: "Hive cloaks and Vaurcan shrouds will now show up on character preview."
|
||||
- bugfix: "Vaurca shoes and clothes can now be properly colored for Bulwarks."
|
||||
- bugfix: "The tunnel cloak backing now remains properly when the cloak's hood is pulled up."
|
||||
- bugfix: "The Tret passcard can now be taken by K'lax Breeders."
|
||||
- bugfix: "Fixes the misaligned sombrero sprite for Bulwarks."
|
||||
- bugfix: "Moves the Bulwark sprites for the webbing vests and waistcoat to accessories.dmi where they belong."
|
||||
- rscdel: "Removed Bulwark sprites for the defunct Internal Affairs jacket and blue lawyer jacket."
|
||||
- bugfix: "Added the proper suffixes to Bulwark sprites needed to work with the contained sprite system."
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 860 B After Width: | Height: | Size: 831 B |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 109 KiB After Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 296 KiB After Width: | Height: | Size: 296 KiB |