From 6dcc95c379c92fd751e58845cc15c6602a721a19 Mon Sep 17 00:00:00 2001 From: DEATHB4DEFEAT Date: Sun, 29 Oct 2023 18:04:04 -0700 Subject: [PATCH] update species guidebooks --- .../Prototypes/Guidebook/species.ftl | 42 ++++++++----- .../Guidebook/speciesCategories.yml | 24 +++++-- .../Guidebook/speciesSpecific.yml | 62 ++++++++++++++----- .../Guidebook/Species/DeltaSpecies.xml | 7 +++ .../Guidebook/Species/DeltaSpecies/Harpy.xml | 21 +++++++ .../Species/DeltaSpecies/Vulpkanin.xml | 20 ++++++ .../Species/NyanoSpecies/Arachne.xml | 16 ++--- .../Species/NyanoSpecies/Felinid.xml | 19 ++++-- .../Guidebook/Species/NyanoSpecies/Moth.xml | 20 +++--- .../Guidebook/Species/NyanoSpecies/Oni.xml | 15 +++-- .../Species/SimpleStationSpecies/IPC.xml | 23 +++++++ .../SimpleStationSpecies/Plasmaman.xml | 28 +++++++++ .../SimpleStationSpecies/Shadowkin.xml | 8 +-- .../Species/WizdenSpecies/Arachnid.xml | 13 ++++ .../Guidebook/Species/WizdenSpecies/Diona.xml | 18 +++--- .../Guidebook/Species/WizdenSpecies/Moth.xml | 28 +++++++++ .../Species/WizdenSpecies/Reptilian.xml | 19 +++--- .../Species/WizdenSpecies/Skeleton.xml | 15 ++--- .../Guidebook/Species/WizdenSpecies/Slime.xml | 26 ++++---- .../Guidebook/Species/WizdenSpecies/Vox.xml | 10 +-- 20 files changed, 324 insertions(+), 110 deletions(-) create mode 100644 Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies.xml create mode 100644 Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Harpy.xml create mode 100644 Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Vulpkanin.xml create mode 100644 Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/IPC.xml create mode 100644 Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Plasmaman.xml create mode 100644 Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Arachnid.xml create mode 100644 Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Moth.xml diff --git a/Resources/Locale/en-US/simplestation14/Prototypes/Guidebook/species.ftl b/Resources/Locale/en-US/simplestation14/Prototypes/Guidebook/species.ftl index af208e3148..e846261948 100644 --- a/Resources/Locale/en-US/simplestation14/Prototypes/Guidebook/species.ftl +++ b/Resources/Locale/en-US/simplestation14/Prototypes/Guidebook/species.ftl @@ -1,23 +1,33 @@ # species_categories.yml guide-entry-species = Species -guide-entry-wizden-species = Wizard Den Species -guide-entry-nyano-species = Nyanotrasen Species -guide-entry-simplestation-species = ParkStation Species +guide-entry-species-wizden-species = Wizard's Den Species +guide-entry-species-nyano-species = Nyanotrasen Species +guide-entry-species-delta-species = Delta-V Species +guide-entry-species-simplestation-species = ParkStation Species # species_specific.yml # wizden-species -guide-entry-diona = Diona -guide-entry-dwarf = Dwarf -guide-entry-human = Human -guide-entry-reptilian = Reptilian -guide-entry-skeleton = Skeleton -guide-entry-slime = Slime -guide-entry-vox = Vox +guide-entry-species-arachnid = Arachnid +guide-entry-species-diona = Diona +guide-entry-species-dwarf = Dwarf +guide-entry-species-human = Human +guide-entry-species-moth = Moth +guide-entry-species-reptilian = Reptilian +guide-entry-species-skeleton = Skeleton +guide-entry-species-slime = Slime +guide-entry-species-vox = Vox + # nyano-species -guide-entry-arachne = Arachne -guide-entry-felinid = Felinid -guide-entry-moth = Moth -guide-entry-oni = Oni +guide-entry-species-arachne = Arachne +guide-entry-species-felinid = Felinid +guide-entry-species-moff = Moth +guide-entry-species-oni = Oni + +# delta-species +guide-entry-species-harpy = Harpy +guide-entry-species-vulpkanin = Vulpkanin + # parkstation-species -guide-entry-plasmaman = Plasmaman -guide-entry-shadowkin = Shadowkin +guide-entry-species-ipc = IPC +guide-entry-species-plasmaman = Plasmaman +guide-entry-species-shadowkin = Shadowkin diff --git a/Resources/Prototypes/SimpleStation14/Guidebook/speciesCategories.yml b/Resources/Prototypes/SimpleStation14/Guidebook/speciesCategories.yml index 0e56012092..fb2e33e29d 100644 --- a/Resources/Prototypes/SimpleStation14/Guidebook/speciesCategories.yml +++ b/Resources/Prototypes/SimpleStation14/Guidebook/speciesCategories.yml @@ -5,25 +5,28 @@ children: - WizdenSpecies - NyanoSpecies + - DeltaSpecies - SimpleStationSpecies - type: guideEntry id: WizdenSpecies - name: guide-entry-wizden-species + name: guide-entry-species-wizden-species text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies.xml" children: - - SpeciesHuman + - SpeciesArachnid - SpeciesDiona - SpeciesDwarf + - SpeciesHuman + - SpeciesMoth + - SpeciesReptilian - SpeciesSlime - SpeciesSkeleton - - SpeciesReptilian - SpeciesVox - type: guideEntry id: NyanoSpecies - name: guide-entry-nyano-species + name: guide-entry-species-nyano-species text: "/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies.xml" children: - SpeciesArachne @@ -31,10 +34,19 @@ - SpeciesMoff - SpeciesOni +- type: guideEntry + id: DeltaSpecies + name: guide-entry-species-delta-species + text: "/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies.xml" + children: + - SpeciesHarpy + - SpeciesVulpkanin + - type: guideEntry id: SimpleStationSpecies - name: guide-entry-simplestation-species + name: guide-entry-species-simplestation-species text: "/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies.xml" children: - # - SpeciesPlasmaman + - SpeciesIPC + - SpeciesPlasmaman - SpeciesShadowkin diff --git a/Resources/Prototypes/SimpleStation14/Guidebook/speciesSpecific.yml b/Resources/Prototypes/SimpleStation14/Guidebook/speciesSpecific.yml index 4fa70ad2bf..86155f81ad 100644 --- a/Resources/Prototypes/SimpleStation14/Guidebook/speciesSpecific.yml +++ b/Resources/Prototypes/SimpleStation14/Guidebook/speciesSpecific.yml @@ -1,37 +1,48 @@ # Wizden Species + +- type: guideEntry + id: SpeciesArachnid + name: guide-entry-species-arachnid + text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Arachnid.xml" + - type: guideEntry id: SpeciesDiona - name: guide-entry-diona + name: guide-entry-species-diona text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Diona.xml" - type: guideEntry id: SpeciesDwarf - name: guide-entry-dwarf + name: guide-entry-species-dwarf text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Dwarf.xml" - type: guideEntry id: SpeciesHuman - name: guide-entry-human + name: guide-entry-species-human text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Human.xml" +- type: guideEntry + id: SpeciesMoth + name: guide-entry-species-moth + text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Moth.xml" + - type: guideEntry id: SpeciesReptilian - name: guide-entry-reptilian + name: guide-entry-species-reptilian text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Reptilian.xml" - type: guideEntry id: SpeciesSkeleton - name: guide-entry-skeleton + name: guide-entry-species-skeleton text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Skeleton.xml" - type: guideEntry id: SpeciesSlime - name: guide-entry-slime + name: guide-entry-species-slime text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Slime.xml" - type: guideEntry id: SpeciesVox - name: guide-entry-vox + name: guide-entry-species-vox text: "/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Vox.xml" @@ -39,32 +50,51 @@ - type: guideEntry id: SpeciesArachne - name: guide-entry-arachne + name: guide-entry-species-arachne text: "/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Arachne.xml" - type: guideEntry id: SpeciesFelinid - name: guide-entry-felinid + name: guide-entry-species-felinid text: "/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Felinid.xml" - type: guideEntry id: SpeciesMoff - name: guide-entry-moth + name: guide-entry-species-moff text: "/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Moth.xml" - type: guideEntry id: SpeciesOni - name: guide-entry-oni + name: guide-entry-species-oni text: "/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Oni.xml" + +# Delta Species + +- type: guideEntry + id: SpeciesHarpy + name: guide-entry-species-harpy + text: "/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Harpy.xml" + +- type: guideEntry + id: SpeciesVulpkanin + name: guide-entry-species-vulpkanin + text: "/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Vulpkanin.xml" + + # SimpleStation Species -# - type: guideEntry -# id: SpeciesPlasmaman -# name: guide-entry-plasmaman -# text: "/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Plasmaman.xml" +- type: guideEntry + id: SpeciesIPC + name: guide-entry-species-ipc + text: "/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/IPC.xml" + +- type: guideEntry + id: SpeciesPlasmaman + name: guide-entry-species-plasmaman + text: "/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Plasmaman.xml" - type: guideEntry id: SpeciesShadowkin - name: guide-entry-shadowkin + name: guide-entry-species-shadowkin text: "/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Shadowkin.xml" diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies.xml new file mode 100644 index 0000000000..d6c7f9f342 --- /dev/null +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies.xml @@ -0,0 +1,7 @@ + +# Species + +Simple and general information about the many species you may or may not encounter in your time on the station. + +Lore will be written in the future and will replace these meta guides with a more in-world perspective. + diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Harpy.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Harpy.xml new file mode 100644 index 0000000000..cc4f5ba88a --- /dev/null +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Harpy.xml @@ -0,0 +1,21 @@ + +# Harpy + +[color=#FF0000]Harpies are disabled for character creation.[/color] + +[color=#66bbff]Harpies can be achieved via the metem machine.[/color] + +An avian humanoid species that features colorful feathered wings and tails. They can mimic almost any sound. + +## Ability Differences + +- Can intrinsically make the sounds of several instruments +- Can replicate a very large variety of sounds and voices (Scream, Laugh, Sneeze, Cough, Sigh, Cry, Whistle, Hiss, Meow, Mew, Growl, Purr, Boom, Ring, Honk, Pew, Bang, Beep, Rev, Click, Chitter, Squeak, Caw, Chirp, Snarl, Bark, Whine) +- Take slightly more blunt, slash, piercing, and airloss +- Deal slash damage instead of blunt when punching + +## Physical Differences + +- Slightly shorter +- Several marking options that can use a variety of colors and patterns + diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Vulpkanin.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Vulpkanin.xml new file mode 100644 index 0000000000..d71c840220 --- /dev/null +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/DeltaSpecies/Vulpkanin.xml @@ -0,0 +1,20 @@ + +# Vulpkanin + +[color=#FF0000]Vulpkanin are disabled for character creation.[/color] + +[color=#66bbff]Vulpkanin can be achieved via the metem machine.[/color] + +Vulpkanin are a race of humanoid canine-like beings. + +## Ability Differences + +- Deal slash damage instead of blunt when punching +- Faster at thieving + +## Physical Differences + +- Can withstand colder environments better +- Theobromine (Chocolate, Tea, Coffee) and Allicin (Onion, Garlic) is toxic +- Can eat raw meat + diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Arachne.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Arachne.xml index 2653cdd71e..90c6ee3d1d 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Arachne.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Arachne.xml @@ -1,6 +1,8 @@ # Arachne +## THIS SPECIES DOES NOT EXIST ANYMORE + [color=#FF0000]Arachne are disabled for character creation.[/color] [color=#66bbff]Arachne can be achieved via the metem machine.[/color] @@ -9,14 +11,14 @@ Arachne appear very similarly to humans, but have a tauric spider body. ## Ability Differences -- Slightly more blunt damage. -- Slightly more slash damage. -- Slighly less piercing damage. -- Can spin webs, using food as fuel. +- Can spin webs, using food as fuel +- Take slightly more blunt damage +- Take slightly more slash damage +- Slighly less piercing damage ## Physical Differences -- Look like a spider. -- Only female. -- Can be 60-666 years old. +- Look like a spider +- Only female +- Can be 60-666 years old diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Felinid.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Felinid.xml index 7e2daa12df..633aee9568 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Felinid.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Felinid.xml @@ -9,13 +9,20 @@ Felinids are shorter humans, with cat ears and a tail. ## Ability Differences -- Can cough up hairballs. -- Slightly more blunt damage. -- Slightly more slash damage. -- Slightly more piercing damage. +- Can cough up hairballs to get rid of some chemicals from their bloodstream +- Can eat live mice to regenerate hairballs +- Take slightly more blunt damage +- Take slightly more slash damage +- Take slightly more piercing damage +- Deal mostly slash damage with unarmed attacks ## Physical Differences -- Several ear/tail markings. -- Short. +- Several ear/tail markings +- Short +- Can fit inside duffelbags +- Can eat raw meat +- Immune to OwOnavirus +- Fast at thieving +- Slightly less stamina diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Moth.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Moth.xml index f64868a1ea..7e60baae38 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Moth.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Moth.xml @@ -1,6 +1,8 @@ # Moth +## THIS SPECIES DOES NOT EXIST ANYMORE + [color=#008000]Moths are enabled for character creation.[/color] [color=#66bbff]Moths can be achieved via the metem machine.[/color] @@ -9,16 +11,16 @@ Moths are a very fuzzy and friendly species, looking similarly to a human with w ## Ability Differences -- Can fly in space somehow. -- Slightly more blunt damage. -- Slightly more slash damage. -- Slightly less piercing damage. -- Slightly less poison damage. +- Can fly in space somehow +- Take slightly more blunt damage +- Take slightly more slash damage +- Take slightly less piercing damage +- Take slightly less poison damage ## Physical Differences -- Can have any skin color. -- Several wing markings. -- Fuzzy. -- Have no humanoid hair. +- Can have any skin color +- Several wing markings +- Fuzzy +- Have no humanoid hair diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Oni.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Oni.xml index 747d060829..39ffeeac77 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Oni.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/NyanoSpecies/Oni.xml @@ -5,17 +5,20 @@ [color=#66bbff]Oni can be achieved via the metem machine.[/color] -Oni are taller, much stronger humans with horns. +Large horned people that come in a variety of colors. ## Ability Differences -- Very strong. -- Slightly less blunt damage. -- Slightly less slash damage. -- Slightly less piercing damage. +- Very strong +- Take slightly less blunt damage +- Take slightly less slash damage +- Take slightly less piercing damage +- Can pry doors twice as fast +- Horrible aim with guns ## Physical Differences -- Several horn markings. +- Several horn markings - Tall +- Slightly more stamina diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/IPC.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/IPC.xml new file mode 100644 index 0000000000..9c70b163eb --- /dev/null +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/IPC.xml @@ -0,0 +1,23 @@ + +# IPC + +[color=#008000]IPCs are enabled for character creation.[/color] + +They're finally replacing the humans? Oh god, we're all doomed. + +## Ability Differences + +- Can drink from APCs to charge +- Can hop in industrial chargers and charge +- Harder to put into a critical state, but easier to kill +- Has some intrinsic eye protection + +## Physical Differences + +- Requires a battery charge to operate +- Slows down when low on charge +- EMPs will stun, blind, and remove charge +- Encryption keys are inside them instead of in a radio headset +- Can be 50-240 years old +- Genderless + diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Plasmaman.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Plasmaman.xml new file mode 100644 index 0000000000..a11e1a14be --- /dev/null +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Plasmaman.xml @@ -0,0 +1,28 @@ + +# Plasmaman + +## THIS SPECIES DOES NOT EXIST ANYMORE + +## THIS GUIDE MAY BE INACCURATE + +[color=#FF0000]Plasmamen are disabled for character creation.[/color] + +FIIREE OH GOD EVERYTHING IS ON FIRE!! + +## Ability Differences + +- Take a lot more burn damage +- Take way less cold damage +- Can survive in much warmer or colder environments + +## Physical Differences + +- Breathe Plasma instead of Oxygen +- Must wear an envirosuit in an environment with Oxygen, otherwise they burn +- Can have any color of skeleton +- Genderless +- No marking options +- Slightly more resistant against disease +- Doesn't require food or drink (thank god, I didn't want to take off my envirosuit) +- No blood + diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Shadowkin.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Shadowkin.xml index f916a3bf73..7195a2230a 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Shadowkin.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/SimpleStationSpecies/Shadowkin.xml @@ -13,14 +13,14 @@ Fluffy lil' guys. - Dims nearby lights when in the The Dark - When too low on energy, they may fall into a powerful sleep - Can "speak" in the Empathy chat (~), which only other Shadowkin can understand -- Slightly less blunt damage +- Take slightly less blunt damage - A bit more slash damage -- Slightly more piercing damage +- Take slightly more piercing damage - Less cold damage -- Slightly more heat damage +- Take slightly more heat damage - Near no cellular damage - More bloodloss damage -- Slightly more shock damage +- Take slightly more shock damage - More radiation damage ## Physical Differences diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Arachnid.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Arachnid.xml new file mode 100644 index 0000000000..be65a34fa3 --- /dev/null +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Arachnid.xml @@ -0,0 +1,13 @@ + +# Arachnid + +## THIS IS A PLACEHOLDER GUIDE + +[color=#FF0000]Arachnids are disabled for character creation.[/color] + +[color=#66bbff]Arachnids can be achieved via the metem machine.[/color] + +## Ability Differences + +## Physical Differences + diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Diona.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Diona.xml index b2f8768ea8..c0a45f8366 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Diona.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Diona.xml @@ -7,14 +7,18 @@ Dionae are a large tree looking species, very minimally resembling a human. ## Ability Differences -- Take less blunt damage. -- Take less slash damage. -- Take much more heat damage. -- Take more shock damage. -- Are much slower. +- Take less blunt damage +- Take less slash damage +- Take much more heat damage +- Take more shock damage +- Suffocates slower +- Much slower ## Physical Differences -- Have lots of markings. -- Have no hair. +- Have lots of markings +- Have no hair +- Too big for shoes +- Botanical chemicals have different effects +- Can heal from Robust Harvest diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Moth.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Moth.xml new file mode 100644 index 0000000000..b7e33e6635 --- /dev/null +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Moth.xml @@ -0,0 +1,28 @@ + +# Moth + +## THIS GUIDE MAY BE INACCURATE + +[color=#008000]Moths are enabled for character creation.[/color] + +[color=#66bbff]Moths can be achieved via the metem machine.[/color] + +Moths are a very fuzzy and friendly species, looking similarly to a human with wings. + +## Ability Differences + +- Can fly in space somehow +- Take slightly less poison damage +- Take slightly less cold damage + +## Physical Differences + +- Can have any skin color +- Several wing markings +- Fuzzy +- Have no human hair +- Can eat raw meat +- Theobromine (Chocolate, Tea, Coffee) and Allicin (Onion, Garlic) is toxic +- Lighter +- Slightly more resistant against disease + diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Reptilian.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Reptilian.xml index 60bc5bf627..9a03a81fb3 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Reptilian.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Reptilian.xml @@ -5,19 +5,20 @@ [color=#66bbff]Reptilians can be achieved via the metem machine.[/color] -Reptilians are a very large species of humanoid looking lizards. +A very large species of humanoid looking lizards. ## Ability Differences -- Take more cold damage. -- Take slightly less heat damage. -- Slightly less slash damage. -- Slightly more blunt damage. +- Take a lot more cold damage +- Take slightly less heat damage +- Take slightly less slash damage +- Take slightly more blunt damage ## Physical Differences -- Have tons of various markings. -- Have no hair. -- Have a different voice (scream/laugh). -- Can have any color of skin. +- Have tons of various markings +- Have no hair +- Have a different voice (scream/laugh) +- Can have any color of skin +- Theobromine (Chocolate, Tea, Coffee) and Allicin (Onion, Garlic) is toxic diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Skeleton.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Skeleton.xml index 2533424441..5a27947772 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Skeleton.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Skeleton.xml @@ -9,14 +9,15 @@ Skeletons are the somehow living remains of dead humanoids. ## Ability Differences -- Takes [color=#FF0000]zero[/color] cold, poison, radiation, asphyxiation, bloodloss (no blood), or cellular damage. -- Takes a slight bit more blunt but takes 5 less blunt damage. -- Takes less slash and piercing. -- Can't be cloned, instead needs to be rebuilt using their bones. +- Takes [color=#FF0000]zero[/color] cold, poison, radiation, asphyxiation, bloodloss (no blood), or cellular damage +- Takes a slight bit more blunt but takes 5 less blunt damage +- Takes less slash and piercing +- Can't be cloned, instead needs to be rebuilt using their bones ## Physical Differences -- Has a skeleton, unlike the other crew who are missing them (maybe this is how they exist?). -- Can be any color. -- Has no marking options. +- Has a skeleton, unlike the other crew who are missing them (maybe this is how they exist?) +- Can be any color +- Has no marking options +- Very spooky diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Slime.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Slime.xml index a42400b541..b5ff27b2fb 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Slime.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Slime.xml @@ -1,6 +1,8 @@ # Slime People +## THIS GUIDE MAY BE INACCURATE + [color=#008000]Slimes are enabled for character creation.[/color] [color=#66bbff]Slimes can be achieved via the metem machine.[/color] @@ -9,19 +11,19 @@ Slimes are sentient beings made from jelly that commonly appear as humans to ble ## Ability Differences -- Slimes have jelly instead of blood, which is toxic to other species when consumed. -- Slimes are incapable of living in cold environments, dying very quickly. -- To contrast, Slimes are able to survive longer in hot environments. -- Take less brute damage. -- Take more slash damage. -- Breathe Nitrogen instead of Oxygen. +- Slimes have jelly instead of blood, which is toxic to other species when consumed +- Slimes are incapable of living in cold environments, dying very quickly +- To contrast, Slimes are able to survive longer in hot environments +- Take less brute damage +- Take more slash damage +- Breathe Nitrogen instead of Oxygen ## Physical Differences -- Slimes are slightly transparent. -- Can have any color of skin. -- Have several additional marking options. -- Have different voices (screams/laughs). -- Can "Squish" (emote). -- Can be Genderless. +- Slimes are slightly transparent +- Can have any color of skin +- Have several additional marking options +- Have different voices (screams/laughs) +- Can "Squish" (emote) +- Can be Genderless diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Vox.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Vox.xml index f7369698bd..950b8cfd88 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Vox.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/Species/WizdenSpecies/Vox.xml @@ -3,15 +3,15 @@ [color=#FF0000]Vox are disabled for character creation.[/color] -Vox are a species of bird-like humanoids that are commonly very rude, normally travelling in veyr high-density groups. +Vox are a species of bird-like humanoids that are commonly very rude, normally travelling in very high-density groups. ## Ability Differences -- Breathe Nitrogen instead of Oxygen. +- Breathe Nitrogen instead of Oxygen ## Physical Differences -- Clothing looks awful on them. -- Can have any color of skin. -- Have no human markings, instead have their own hairs. +- Clothing looks awful on them +- Can have any color of skin +- Have no human markings, instead have their own hairs