-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
linnpap
committed
Jan 6, 2023
1 parent
33bda16
commit af27b72
Showing
6 changed files
with
152 additions
and
17 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
121 changes: 121 additions & 0 deletions
121
modular_flipper/code/modules/mob/new_player/sprite_accessories_flipper.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,121 @@ | ||
/datum/sprite_accessory/marking/flipper | ||
icon = 'modular_flipper/icons/mob/human_races/sprite_accessories/markings.dmi' | ||
color_blend_mode = ICON_MULTIPLY | ||
species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_ANTHRO, SPECIES_AQUATIC) | ||
|
||
/datum/sprite_accessory/marking/flipper/floof_head | ||
name = "Floof (head)" | ||
icon_state = "floof" | ||
body_parts = list(BP_HEAD) | ||
|
||
/datum/sprite_accessory/marking/flipper/floof_chest | ||
name = "Floof (torso)" | ||
icon_state = "floof" | ||
body_parts = list(BP_TORSO) | ||
|
||
/datum/sprite_accessory/marking/flipper/bellyslim | ||
name = "Slim Belly" | ||
icon_state = "bellyslim" | ||
body_parts = list(BP_HEAD, BP_TORSO) | ||
|
||
/datum/sprite_accessory/marking/flipper/bellyslim_alt | ||
name = "Slim Belly (alt)" | ||
icon_state = "bellyslim_alt" | ||
body_parts = list(BP_HEAD, BP_TORSO) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_head | ||
name = "Plain (head)" | ||
icon_state = "plain" | ||
body_parts = list(BP_HEAD) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_torso | ||
name = "Plain (torso)" | ||
icon_state = "plain" | ||
body_parts = list(BP_TORSO) | ||
|
||
/datum/sprite_accessory/marking/flipper/plainf_torso | ||
name = "Plain (feminine torso)" | ||
icon_state = "plainf" | ||
body_parts = list(BP_TORSO) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_larm | ||
name = "Plain (left arm)" | ||
icon_state = "plain" | ||
body_parts = list(BP_L_ARM) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_rarm | ||
name = "Plain (right arm)" | ||
icon_state = "plain" | ||
body_parts = list(BP_R_ARM) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_lhand | ||
name = "Plain (left hand)" | ||
icon_state = "plain" | ||
body_parts = list(BP_L_HAND) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_rhand | ||
name = "Plain (right hand)" | ||
icon_state = "plain" | ||
body_parts = list(BP_R_HAND) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_lleg | ||
name = "Plain (left leg)" | ||
icon_state = "plain" | ||
body_parts = list(BP_L_LEG) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_rleg | ||
name = "Plain (right leg)" | ||
icon_state = "plain" | ||
body_parts = list(BP_R_LEG) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_lfoot | ||
name = "Plain (left foot)" | ||
icon_state = "plain" | ||
body_parts = list(BP_L_FOOT) | ||
|
||
/datum/sprite_accessory/marking/flipper/plain_rfoot | ||
name = "Plain (right foot)" | ||
icon_state = "plain" | ||
body_parts = list(BP_R_FOOT) | ||
|
||
//frills | ||
|
||
/datum/sprite_accessory/marking/flipper/frills_divinity | ||
name = "Divinity (frills)" | ||
icon_state = "frills_divinity" | ||
body_parts = list(BP_HEAD) | ||
|
||
/datum/sprite_accessory/marking/flipper/frills_horns | ||
name = "Horns (frills)" | ||
icon_state = "frills_horns" | ||
body_parts = list(BP_HEAD) | ||
|
||
/datum/sprite_accessory/marking/flipper/frills_doublehorns | ||
name = "Double Horns (frills)" | ||
icon_state = "frills_doublehorns" | ||
body_parts = list(BP_HEAD) | ||
|
||
/datum/sprite_accessory/marking/flipper/frills_big | ||
name = "Big (frills)" | ||
icon_state = "frills_big" | ||
body_parts = list(BP_HEAD) | ||
|
||
/datum/sprite_accessory/marking/flipper/frills_neck | ||
name = "Neck (frills)" | ||
icon_state = "frills_neck" | ||
body_parts = list(BP_HEAD) | ||
|
||
/datum/sprite_accessory/marking/flipper/frills_neckfull | ||
name = "Full Neck (frills)" | ||
icon_state = "frills_neckfull" | ||
body_parts = list(BP_HEAD) | ||
|
||
/datum/sprite_accessory/marking/flipper/frills_cobrahood | ||
name = "Cobra Hood (part A)" | ||
icon_state = "frills_cobrahood" | ||
body_parts = list(BP_HEAD) | ||
|
||
/datum/sprite_accessory/marking/flipper/frills_cobrahood_extra | ||
name = "Cobra Hood (part B)" | ||
icon_state = "frills_cobrahood_extra" | ||
body_parts = list(BP_HEAD) |
Binary file added
BIN
+2.88 KB
modular_flipper/icons/mob/human_races/sprite_accessories/markings.dmi
Binary file not shown.
Binary file modified
BIN
+15 Bytes
(100%)
modular_flipper/icons/mob/human_races/sprite_accessories/snout.dmi
Binary file not shown.
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