Files
nikothedudeandGitHub be4c58986c Allows cursekin to load a preference slot instead of simply changing species. (#5568)
## About The Pull Request

Title.

Adds a new preference option that allows you to designate a character
slot as your lycan transformation. Does not transfer quirks and does not
change the name.

Additionally, allows peopel to use the lycan species as a prefs-only
species for customization.

### Note

This will likely transfer languages and a few other things, but nothing
gamechanging. If the SAD does it (excluding quirks), this probably also
does it.
## Why It's Good For The Game

Adds for customization of the lycan form. Hair, Augments (NOT IMPLANTS).
Even taur mode.
## Proof Of Testing
<details>
<summary>Screenshots/Videos</summary>

<img width="923" height="643" alt="image"
src="https://github.com/user-attachments/assets/92586859-0bc3-49f5-be8a-f39ac798b730"
/>

</details>

## Changelog
🆑
add: Cursekin can select a character slot to transform into rather than
just siwtching species.
/🆑
2026-05-17 20:40:01 +02:00
..
2026-04-12 16:32:35 -04:00

This folder contains the results for screenshot tests. Screenshot tests make sure an icon looks the same as it did before a change to prevent regressions.

You can create one by simply using the test_screenshot proc.

This example test screenshots a red image and keeps it.

/// This is an example for screenshot tests, and a meta-test to make sure they work in the success case.
/// It creates a picture that is red on the left side, green on the other.
/datum/unit_test/screenshot_basic

/datum/unit_test/screenshot_basic/Run()
	var/icon/red = icon('icons/blanks/32x32.dmi', "nothing")
	red.Blend(COLOR_RED, ICON_OVERLAY)
	test_screenshot("red", red)

Unfortunately, screenshot tests are sanest to test through a pull request directly, due to limitations with both DM and GitHub.