diff --git a/code/modules/mob/dead/new_player/sprite_accessories_Citadel.dm b/code/modules/mob/dead/new_player/sprite_accessories_Citadel.dm index 185c6e918b..76fdd3a526 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories_Citadel.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories_Citadel.dm @@ -414,6 +414,21 @@ name = "Wolf" icon_state = "wolf" +/datum/sprite_accessory/mam_tails/gulimon + name = "Gulimon" + icon_state = "gulimon" + extra = 1 + +/datum/sprite_accessory/mam_tails_animated/gulimon + name = "Gulimon" + icon_state = "gulimon" + extra = 1 + +/datum/sprite_accessory/mam_ears/gulimon + name = "Gulimon" + icon_state = "gulimon" + icon = 'icons/mob/mam_bodyparts.dmi' + /****************************************** ************ Body Markings **************** *******************************************/ @@ -529,6 +544,13 @@ color_src = MUTCOLORS2 gender_specific = 1 +/datum/sprite_accessory/mam_body_markings/gulimon + name = "Gulimon" + icon_state = "gulimon" + extra = 1 + extra2 = 1 + icon = 'icons/mob/mam_body_markings.dmi' + /****************************************** ************ Taur Bodies ****************** *******************************************/ diff --git a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm index 434c049f96..d24341158f 100644 --- a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm @@ -204,4 +204,16 @@ datum/species/mammal // roundstart = 1 whitelisted = 1 whitelist = list("rubyflamewing") - blacklisted = 0 \ No newline at end of file + blacklisted = 0 + +datum/species/digimon/gulimon + name = "Gulimon" + id = "gulimon" + default_color = "4B4B4B" + species_traits = list(MUTCOLORS,EYECOLOR,LIPS,HAIR) + mutant_bodyparts = list("mam_tail", "mam_ears", "mam_body_markings") + default_features = list("mcolor" = "FFF", "mcolor2" = "FFF", "mcolor3" = "FFF", "mam_tail" = "gulimon", "mam_ears" = "gulimon", "mam_body_markings" = "gulimon") + attack_verb = "claw" + attack_sound = 'sound/weapons/slash.ogg' + miss_sound = 'sound/weapons/slashmiss.ogg' + roundstart = 1 \ No newline at end of file diff --git a/icons/mob/human_parts.dmi b/icons/mob/human_parts.dmi index c1163bc3d5..c354807fd8 100644 Binary files a/icons/mob/human_parts.dmi and b/icons/mob/human_parts.dmi differ diff --git a/icons/mob/human_parts_greyscale.dmi b/icons/mob/human_parts_greyscale.dmi index 105def8775..83deb85ce9 100644 Binary files a/icons/mob/human_parts_greyscale.dmi and b/icons/mob/human_parts_greyscale.dmi differ diff --git a/icons/mob/mam_body_markings.dmi b/icons/mob/mam_body_markings.dmi index 07fe5b841f..9cd5fde56e 100644 Binary files a/icons/mob/mam_body_markings.dmi and b/icons/mob/mam_body_markings.dmi differ diff --git a/icons/mob/mam_bodyparts.dmi b/icons/mob/mam_bodyparts.dmi index 5011c4d0ed..08ed5b1331 100644 Binary files a/icons/mob/mam_bodyparts.dmi and b/icons/mob/mam_bodyparts.dmi differ