Fish Ass: ports over large shark tails from CHOMP (#3448)

## About The Pull Request

see title
if you want to see who made the sprites, follow the accreditation chain:
https://github.com/CHOMPStation2/CHOMPStation2/pull/9926

it doesn't fully use all the sprites, because our system here is so much
clunkier to use - if someone wants they can probably bash out several
more tail variants by copying and rearranging the existing sprites

## Why It's Good For The Game

people wanted them, gushed over them in #suggestions, and then no one
did anything, so...
also, 🦈

## Proof Of Testing

yeah i compiled it, they finally showed up in game, thanks #coder-longue

## Changelog

🆑
add: 4 new tail options
image: new tail sprites
/🆑

---------

Co-authored-by: Roxy <75404941+TealSeer@users.noreply.github.com>
This commit is contained in:
sippykot
2025-04-07 02:04:27 +02:00
committed by GitHub
parent fa6845f9e6
commit c29d36ada5
3 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
// Ported over from CHOMP
// https://github.com/CHOMPStation2/CHOMPStation2/pull/9926
// because we are just running skyratcode pretty much
// this system is so much worse than what they have on CHOMP apparently (lol)
// 🦈
/datum/sprite_accessory/tails/mammal/largeshark
icon = 'modular_zubbers/icons/customization/shark_tails64x32.dmi'
dimension_x = 64
dimension_y = 32
center = TRUE
color_src = USE_MATRIXED_COLORS
/datum/sprite_accessory/tails/mammal/largeshark/default
name = "Large Shark"
icon_state = "large-shark"
/datum/sprite_accessory/tails/mammal/largeshark/finless
name = "Large Shark (finless)"
icon_state = "large-shark-finless"
/datum/sprite_accessory/tails/mammal/largeshark/striped
name = "Large Shark (striped)"
icon_state = "large-shark-s"
/datum/sprite_accessory/tails/mammal/largeshark/striped_finless
name = "Large Shark (striped, finless)"
icon_state = "large-shark-finless-s"
// you could definitely cook up more combinations and use the "stripes-underbelly" sprite but... yeah

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -9171,6 +9171,7 @@
#include "modular_zubbers\code\modules\customization\sprite_accessories\genitals.dm"
#include "modular_zubbers\code\modules\customization\sprite_accessories\horns.dm"
#include "modular_zubbers\code\modules\customization\sprite_accessories\ipc_screens.dm"
#include "modular_zubbers\code\modules\customization\sprite_accessories\shark_tails64x32.dm"
#include "modular_zubbers\code\modules\customization\sprite_accessories\snouts.dm"
#include "modular_zubbers\code\modules\customization\sprite_accessories\tails.dm"
#include "modular_zubbers\code\modules\customization\sprite_accessories\taurs.dm"