Skip to content

Commit

Permalink
[MODULAR] Documents akula features in the perks window (#2786)
Browse files Browse the repository at this point in the history
womnp

Co-authored-by: nikothedude <[email protected]>
  • Loading branch information
Steals-The-PRs and nikothedude authored Apr 9, 2024
1 parent 8b5f70c commit 0c6d6d7
Showing 1 changed file with 28 additions and 0 deletions.
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

0 comments on commit 0c6d6d7

Please sign in to comment.