-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: Cosmetic Wryn Update: Resprite and Character Setup Update (#6168)
* Wryn body, tail and antannae resprite changed body, tail and antannae sprites for Wryn * New tail sprite Made it more good * Added test hair Addedd test hair "Curvy" * New hair styles for Wryn Added seven new hair style for wryn in character setup menu. Renamed original "antennae" to "Normal Antennae". Renamed icons/mob/sprite_accessories/wryn/wryn_face.dm to "wryn_head_accesories"/ * Small fixes for new resprite Added unique eyes overlay for wryn Fixed species sprite in r_wryn.dmi * fixed new wryn hair now it shows new hair styles ingame * minor sprite changes + comments fixed wryn tail sprite, changed female sprite and some comments were rewriten. * new customization element for wryn added mane customization for wryn with six new options including shaved variant * Small updates and changes Added wryn tail variant, fixed body_accessories visibility in Character setup, light changes in r_wryn * final touches changed: * hands in r_wryn.dmi * head in r_wryn * wryn tails in body_accessory.dmi * Light changes Почистил код где надо, переместил иконки органов вринов в отдельный файл. * tweak bullshit Deleted antennae icon state from r_wryn.dmi since it pointless now. * Update wryn.dm * fix #1 * contibutor fix * final final touches fixes * доработка * доработка x2 * fix * Hair path cleared Сделал красивые пути к прическам переименовал wryn_face в wryn_hair * fix * доработка x10 * error fix * fix x2 * fix x3 * Update code/__HELPERS/mobs.dm * may be better * Update code/__HELPERS/mobs.dm --------- Co-authored-by: Antoonij <[email protected]>
- Loading branch information
Showing
24 changed files
with
175 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
code/modules/mob/new_player/sprite_accessories/wryn/wryn_face.dm
This file was deleted.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
code/modules/mob/new_player/sprite_accessories/wryn/wryn_facial_hair.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/datum/sprite_accessory/facial_hair/wryn | ||
icon = 'icons/mob/sprite_accessories/wryn/wryn_facial_hair.dmi' | ||
species_allowed = list(SPECIES_WRYN) | ||
unsuitable_gender = null | ||
over_hair = TRUE | ||
|
||
/datum/sprite_accessory/facial_hair/wryn/default | ||
name = "Default mane" | ||
icon_state = "default" | ||
|
||
/datum/sprite_accessory/facial_hair/wryn/fluff | ||
name = "Fluff mane" | ||
icon_state = "fluff" | ||
|
||
/datum/sprite_accessory/facial_hair/wryn/sharp | ||
name = "Sharp mane" | ||
icon_state = "sharp" | ||
|
||
/datum/sprite_accessory/facial_hair/wryn/square | ||
name = "Square mane" | ||
icon_state = "square" | ||
|
||
/datum/sprite_accessory/facial_hair/wryn/round | ||
name = "Round mane" | ||
icon_state = "round" |
36 changes: 36 additions & 0 deletions
36
code/modules/mob/new_player/sprite_accessories/wryn/wryn_hair.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/datum/sprite_accessory/hair/wryn | ||
icon = 'icons/mob/sprite_accessories/wryn/wryn_head_accessories.dmi' | ||
species_allowed = list(SPECIES_WRYN) | ||
glasses_over = 1 | ||
|
||
/datum/sprite_accessory/hair/wryn/default | ||
name = "Normal antennae" | ||
icon_state = "antennae" | ||
|
||
/datum/sprite_accessory/hair/wryn/curvy | ||
name = "Curvy antennae" | ||
icon_state = "curvy" | ||
|
||
/datum/sprite_accessory/hair/wryn/nian | ||
name = "Nian antennae" | ||
icon_state = "moth" | ||
|
||
/datum/sprite_accessory/hair/wryn/perky | ||
name = "Perky antennae" | ||
icon_state = "perky" | ||
|
||
/datum/sprite_accessory/hair/wryn/sweep | ||
name = "Sweep antennae" | ||
icon_state = "sweep" | ||
|
||
/datum/sprite_accessory/hair/wryn/short | ||
name = "Short antennae" | ||
icon_state = "short" | ||
|
||
/datum/sprite_accessory/hair/wryn/long | ||
name = "Long antennae" | ||
icon_state = "long" | ||
|
||
/datum/sprite_accessory/hair/wryn/long | ||
name = "Low Long antennae" | ||
icon_state = "low_long" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.