diff --git a/code/modules/mob/living/simple_animal/hostile/bear.dm b/code/modules/mob/living/simple_animal/hostile/bear.dm index 5b187521815..1c0125e68b5 100644 --- a/code/modules/mob/living/simple_animal/hostile/bear.dm +++ b/code/modules/mob/living/simple_animal/hostile/bear.dm @@ -14,7 +14,7 @@ emote_hear = list("grumbles","grawls") emote_see = list("stares ferociously", "stomps") speak_chance = 10 - turns_per_move = 7 + turns_per_move = 10 see_in_dark = 6 meat_type = /obj/item/weapon/reagent_containers/food/snacks/bearmeat response_help = "pets" @@ -22,8 +22,8 @@ response_harm = "hits" stop_automated_movement_when_pulled = 0 maxHealth = 80 - melee_damage_lower = 16 - melee_damage_upper = 24 + melee_damage_lower = 10 + melee_damage_upper = 18 break_stuff_probability = 80 mob_size = 17 var/safety //used to prevent infinite loops @@ -64,7 +64,7 @@ var/stance_step = 0 faction = "russian" - + var/always_space_mode = FALSE // If true, bear will always be in BEARMODE_SPACE, regardless of surroundings. @@ -204,7 +204,7 @@ if(!L.client) continue - + if(L.stat == CONSCIOUS) if (dist < nearest_dist) nearest_target = L diff --git a/html/changelogs/chaoko99-BEARS.yml b/html/changelogs/chaoko99-BEARS.yml new file mode 100644 index 00000000000..d63d38060d6 --- /dev/null +++ b/html/changelogs/chaoko99-BEARS.yml @@ -0,0 +1,37 @@ +################################ +# 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 +# balance +################################# + +# Your name. +author: Chaoko99 + +# 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: "Nerfed space bear speed, damage." \ No newline at end of file