diff --git a/code/modules/mob/dead/new_player/sprite_accessories.dm b/code/modules/mob/dead/new_player/sprite_accessories.dm index 0783f4766eb..396d8646423 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories.dm @@ -1874,6 +1874,18 @@ name = "Snow" icon_state = "snow" +/datum/sprite_accessory/moth_wings/oakworm + name = "Oak Worm" + icon_state = "oakworm" + +/datum/sprite_accessory/moth_wings/jungle + name = "Jungle" + icon_state = "jungle" + +/datum/sprite_accessory/moth_wings/witchwing + name = "Witch Wing" + icon_state = "witchwing" + /datum/sprite_accessory/moth_markings // the markings that moths can have. finally something other than the boring tan icon = 'icons/mob/moth_markings.dmi' color_src = null @@ -1925,3 +1937,15 @@ /datum/sprite_accessory/moth_markings/moonfly name = "Moon Fly" icon_state = "moonfly" + +/datum/sprite_accessory/moth_markings/oakworm + name = "Oak Worm" + icon_state = "oakworm" + +/datum/sprite_accessory/moth_markings/jungle + name = "Jungle" + icon_state = "jungle" + +/datum/sprite_accessory/moth_markings/witchwing + name = "Witch Wing" + icon_state = "witchwing" diff --git a/icons/mob/moth_markings.dmi b/icons/mob/moth_markings.dmi index 06d0d2e2302..7f1798957d2 100644 Binary files a/icons/mob/moth_markings.dmi and b/icons/mob/moth_markings.dmi differ diff --git a/icons/mob/moth_wings.dmi b/icons/mob/moth_wings.dmi index b05f3a52840..52626c54c83 100644 Binary files a/icons/mob/moth_wings.dmi and b/icons/mob/moth_wings.dmi differ