Skip to content

Commit

Permalink
vawx
Browse files Browse the repository at this point in the history
  • Loading branch information
maaacha committed Nov 9, 2024
1 parent 51866ea commit 35bc0ec
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/datum/sprite_accessory/body_marking/vox
icon = 'modular_doppler/modular_customization/markings/icons/markings/vox_markings.dmi'

/datum/sprite_accessory/body_marking/vox/vox
name = "Vox Talon"
icon_state = "vox"
body_zones = ARM_LEFT | ARM_RIGHT | HAND_LEFT | HAND_RIGHT | LEG_RIGHT | LEG_LEFT

/datum/sprite_accessory/body_marking/vox/tiger
name = "Vox Tiger Tattoo"
icon_state = "voxtiger"
body_zones = CHEST | LEG_RIGHT | LEG_LEFT | ARM_LEFT | ARM_RIGHT

/datum/sprite_accessory/body_marking/vox/hive
name = "Vox Hive Tattoo"
icon_state = "voxhive"
body_zones = CHEST
/datum/sprite_accessory/body_marking/vox/nightling
name = "Vox Nightling Tattoo"
icon_state = "voxnightling"
body_zones = CHEST | ARM_LEFT | ARM_RIGHT

/datum/sprite_accessory/body_marking/vox/heart
name = "Vox Heart Tattoo"
icon_state = "voxheart"
body_zones = ARM_RIGHT
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
var/datum/sprite_accessory/body_marking/accessory = markings.get_accessory(i)
if(accessory.body_zones & body_zone)
returnval += i
return returnval
return sort_list(returnval)

/datum/preference/choiced/markings/create_default_value()
return SPRITE_ACCESSORY_NONE
Expand Down
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -6877,6 +6877,7 @@
#include "modular_doppler\modular_customization\markings\body_markings\secondary.dm"
#include "modular_doppler\modular_customization\markings\body_markings\tattoos.dm"
#include "modular_doppler\modular_customization\markings\body_markings\tertiary.dm"
#include "modular_doppler\modular_customization\markings\body_markings\vox.dm"
#include "modular_doppler\modular_customization\markings\preferences\markings.dm"
#include "modular_doppler\modular_customization\organs\_organs.dm"
#include "modular_doppler\modular_customization\organs\external\fluff.dm"
Expand Down

0 comments on commit 35bc0ec

Please sign in to comment.