From 68a335b0c5bf3284cebdc716f93699a8c8aa5584 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Tue, 21 Mar 2017 23:31:10 -0500 Subject: [PATCH] Xeno race tweaks --- .../carbon/human/species/station/station.dm | 17 +++++++- html/changelogs/Anewbe - Xeno Tweaks.yml | 43 +++++++++++++++++++ 2 files changed, 58 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/Anewbe - Xeno Tweaks.yml diff --git a/code/modules/mob/living/carbon/human/species/station/station.dm b/code/modules/mob/living/carbon/human/species/station/station.dm index 868c2d2f68..ca005f7169 100644 --- a/code/modules/mob/living/carbon/human/species/station/station.dm +++ b/code/modules/mob/living/carbon/human/species/station/station.dm @@ -31,9 +31,11 @@ unarmed_types = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws, /datum/unarmed_attack/bite/sharp) primitive_form = "Stok" darksight = 3 + ambiguous_genders = TRUE gluttonous = 1 slowdown = 0.5 - brute_mod = 0.8 + brute_mod = 0.9 + burn_mod = 0.9 num_alternate_languages = 3 secondary_langs = list(LANGUAGE_UNATHI) name_language = LANGUAGE_UNATHI @@ -94,6 +96,7 @@ slowdown = -0.5 brute_mod = 1.15 burn_mod = 1.15 + flash_mod = 1.1 metabolic_rate = 1.1 gluttonous = 1 num_alternate_languages = 3 @@ -136,6 +139,15 @@ ) cold_discomfort_level = 275 + has_organ = list( //No appendix. + O_HEART = /obj/item/organ/internal/heart, + O_LUNGS = /obj/item/organ/internal/lungs, + O_LIVER = /obj/item/organ/internal/liver, + O_KIDNEYS = /obj/item/organ/internal/kidneys, + O_BRAIN = /obj/item/organ/internal/brain, + O_EYES = /obj/item/organ/internal/eyes + ) + /datum/species/tajaran/equip_survival_gear(var/mob/living/carbon/human/H) ..() H.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(H),slot_shoes) @@ -158,9 +170,10 @@ health_hud_intensity = 2 min_age = 19 - max_age = 80 + max_age = 130 darksight = 4 + flash_mod = 1.2 ambiguous_genders = TRUE diff --git a/html/changelogs/Anewbe - Xeno Tweaks.yml b/html/changelogs/Anewbe - Xeno Tweaks.yml new file mode 100644 index 0000000000..21e507e009 --- /dev/null +++ b/html/changelogs/Anewbe - Xeno Tweaks.yml @@ -0,0 +1,43 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Anewbe + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Skrell can now be up to 130 years old." + - tweak: "Skrell are more vulnerable to flashes, due to their large eyes." + - tweak: "Tajaran no longer have appendicies." + - tweak: "Tajaran are more vulnerable to flashes." + - tweak: "Unathi have less brute resist, but some burn resist." + - tweak: "Unathi gender is now unclear to non-Unathi." + +