Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] [MODULAR] Documents akula features in the perks window #2786

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,34 @@
"Yet, despite their differences, all Agurkrral citizens swim freely in their kingdom's waters. Even the most controlling border princes, even those in the Old Principalities working the slave trade, know better than to openly erode a citizen's right to life, property, and speech. Any alien species can become an Agurkrral citizen, and even non-citizens enjoy the right to life, with executions outright banned. The aristocracy remains well-educated, even the edgerunner warlords of the New Principalities, and the Kingdom as a whole enjoys its status as a nation that's now a true rival to Sol. Larger, more populated, and better developed; though, having to 'integrate' Solarian technologies, goods, and peoples to fully succeed. The Azuleans are even known as an environmentally-focused people; although they hold no care for lands they cannot make use of, modern nobles are still in charge of maintaining the biosphere of lands they control, to allow their strangely engineered flora and fauna to thrive, and for the people to have healthy and clean waters to live in.",
)

/datum/species/akula/create_pref_unique_perks()
var/list/perks = list()
perks += list(list(
SPECIES_PERK_TYPE = SPECIES_POSITIVE_PERK,
SPECIES_PERK_ICON = FA_ICON_HAND,
SPECIES_PERK_NAME = "Slippery Skin",
SPECIES_PERK_DESC = "When sufficiently wet, you have a bonus chance to escape from grabs."
))
perks += list(list(
SPECIES_PERK_TYPE = SPECIES_NEUTRAL_PERK,
SPECIES_PERK_ICON = FA_ICON_SHIRT,
SPECIES_PERK_NAME = "Wetsuits",
SPECIES_PERK_DESC = "You spawn with clothing that will keep you perpetually wet if not removed."
))
perks += list(list(
SPECIES_PERK_TYPE = SPECIES_NEGATIVE_PERK,
SPECIES_PERK_ICON = FA_ICON_WATER,
SPECIES_PERK_NAME = "Aqua Affinity",
SPECIES_PERK_DESC = "If you are dry for more than five minutes, you begin to feel sad."
))
perks += list(list(
SPECIES_PERK_TYPE = SPECIES_NEGATIVE_PERK,
SPECIES_PERK_ICON = FA_ICON_PERSON_FALLING,
SPECIES_PERK_NAME = "Slippery Soles",
SPECIES_PERK_DESC = "When sufficiently wet, all slips will send you flying, even just a wet floor.",
))
return perks

/datum/species/akula/randomize_features()
var/list/features = ..()
var/main_color
Expand Down
Loading