|
1 | | -/obj/item/organ/external/tail/cat/fox |
| 1 | +// fox tails. Renault Geckers. |
| 2 | +/obj/item/organ/external/tail/fox // redundant, this is either a failsafe, or if someone specifically wants a fox tail for whatever purpose (EG. Limbgrower), that is detached from cat tails |
2 | 3 | name = "fox tail" |
3 | 4 | icon = 'maplestation_modules/icons/obj/surgery.dmi' |
4 | 5 | icon_state = "severedfoxtail" |
5 | 6 |
|
| 7 | + bodypart_overlay = /datum/bodypart_overlay/mutant/tail/fox |
| 8 | + wag_flags = WAG_ABLE |
| 9 | + preference = "feature_human_tail" |
| 10 | + |
| 11 | + |
| 12 | +/datum/bodypart_overlay/mutant/tail/fox // also redundant, used exclusively for above, the ones accesible through character creator are just different sprite_accessories on cat_tail |
| 13 | + feature_key = "tail_cat" |
| 14 | + color_source = ORGAN_COLOR_HAIR |
| 15 | + sprite_datum = /datum/sprite_accessory/tails/human/fox |
| 16 | + |
6 | 17 | /datum/sprite_accessory/tails/human/fox |
7 | 18 | name = "Fox" |
8 | 19 | icon_state = "fox" |
9 | 20 | icon = 'maplestation_modules/icons/mob/mutant_bodyparts.dmi' |
10 | 21 | color_src = HAIR_COLOR |
11 | 22 |
|
12 | | -/obj/item/organ/external/tail/cat/fivefox |
| 23 | +/datum/design/fox_tail |
| 24 | + name = "Fox Tail" |
| 25 | + id = "foxtail" |
| 26 | + build_type = LIMBGROWER |
| 27 | + reagents_list = list(/datum/reagent/medicine/c2/synthflesh = 20) |
| 28 | + build_path = /obj/item/organ/external/tail/fox |
| 29 | + category = list(SPECIES_HUMAN) |
| 30 | + |
| 31 | +// five fox tails, because having 9 would be impossible to sprite and have it look good |
| 32 | + |
| 33 | +/obj/item/organ/external/tail/fivefox // ditto. |
13 | 34 | name = "five fox tails" |
14 | 35 | icon = 'maplestation_modules/icons/obj/surgery.dmi' |
15 | 36 | icon_state = "severedfivefoxtail" |
16 | 37 |
|
| 38 | + bodypart_overlay = /datum/bodypart_overlay/mutant/tail/cat/fivefox |
| 39 | + wag_flags = WAG_ABLE |
| 40 | + preference = "feature_human_tail" |
| 41 | + |
| 42 | +/datum/bodypart_overlay/mutant/tail/cat/fivefox // ditto. |
| 43 | + feature_key = "tail_cat" |
| 44 | + color_source = ORGAN_COLOR_HAIR |
| 45 | + sprite_datum = /datum/sprite_accessory/tails/human/fivefox |
| 46 | + |
17 | 47 | /datum/sprite_accessory/tails/human/fivefox |
18 | 48 | name = "Five Fox" |
19 | 49 | icon_state = "fivefox" |
20 | 50 | icon = 'maplestation_modules/icons/mob/mutant_bodyparts.dmi' |
21 | 51 | color_src = HAIR_COLOR |
| 52 | + |
| 53 | +/datum/design/fivefox_tail |
| 54 | + name = "Five Fox Tails" |
| 55 | + id = "fivefoxtails" |
| 56 | + build_type = LIMBGROWER |
| 57 | + reagents_list = list(/datum/reagent/medicine/c2/synthflesh = 20) |
| 58 | + build_path = /obj/item/organ/external/tail/fivefox |
| 59 | + category = list(SPECIES_HUMAN) |
| 60 | + |
0 commit comments