mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-06-05 22:31:04 +01:00
48cc57010d
## About The Pull Request Fixes #76484 Then I noticed some weird stuff which slipped through the PR and poked at that too. - Spiderlings and Spiders once more have names ending in (###) - Removed an unused property on Spiderlings. - Rewrote the descriptions for a bunch of web-abilities and web-objects to be clearer and have better capitalisation. - Refactored the "Web Carcass" ability to not extend from "lay web" as it didn't need to perform most of that behaviour. - Also I renamed it and made the description give you a hint about why you would want to instantly spawn a statue. - The web effigy now despawns at the same rate as the ability cools down so you're not dumping spider statues all over the place. - I made spiderlings move at about the same speed as humans except if they're on webs in which case they're still pretty fast. To be honest I am not certain an instant statue spawning button is great to begin with and I didn't even know it was added to the game but I am not interested in messing much with the balance for now. This made me look at spiderlings enough that I'm going to try and make a new sprite for them that isn't awful. ## Why It's Good For The Game Lets you differentiate individual spiders a little bit. Makes usage of abilities clearer. ## Changelog 🆑 balance: Guard spider web statues despawn as the ability comes back off cooldown. balance: Spiderlings now only move at light speed if they're on webs, stay safe little guys. fix: Spiders once again have random numbers after their names. /🆑
158 lines
3.8 KiB
Plaintext
158 lines
3.8 KiB
Plaintext
/datum/movespeed_modifier/obesity
|
|
multiplicative_slowdown = 1.5
|
|
|
|
/datum/movespeed_modifier/monkey_reagent_speedmod
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/monkey_health_speedmod
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/monkey_temperature_speedmod
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/hunger
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/golem_hunger
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/slaughter
|
|
multiplicative_slowdown = -1
|
|
|
|
/datum/movespeed_modifier/resonance
|
|
multiplicative_slowdown = 0.75
|
|
|
|
/datum/movespeed_modifier/damage_slowdown
|
|
blacklisted_movetypes = FLOATING|FLYING
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/damage_slowdown_flying
|
|
movetypes = FLYING
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/equipment_speedmod
|
|
variable = TRUE
|
|
blacklisted_movetypes = FLOATING
|
|
|
|
/datum/movespeed_modifier/grab_slowdown
|
|
id = MOVESPEED_ID_MOB_GRAB_STATE
|
|
blacklisted_movetypes = FLOATING
|
|
|
|
/datum/movespeed_modifier/grab_slowdown/aggressive
|
|
multiplicative_slowdown = 3
|
|
|
|
/datum/movespeed_modifier/grab_slowdown/neck
|
|
multiplicative_slowdown = 6
|
|
|
|
/datum/movespeed_modifier/grab_slowdown/kill
|
|
multiplicative_slowdown = 9
|
|
|
|
/datum/movespeed_modifier/slime_reagentmod
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/slime_healthmod
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/config_walk_run
|
|
multiplicative_slowdown = 1
|
|
id = MOVESPEED_ID_MOB_WALK_RUN
|
|
flags = IGNORE_NOSLOW
|
|
|
|
/datum/movespeed_modifier/config_walk_run/proc/sync()
|
|
|
|
/datum/movespeed_modifier/config_walk_run/walk/sync()
|
|
var/mod = CONFIG_GET(number/movedelay/walk_delay)
|
|
multiplicative_slowdown = isnum(mod)? mod : initial(multiplicative_slowdown)
|
|
|
|
/datum/movespeed_modifier/config_walk_run/run/sync()
|
|
var/mod = CONFIG_GET(number/movedelay/run_delay)
|
|
multiplicative_slowdown = isnum(mod)? mod : initial(multiplicative_slowdown)
|
|
|
|
/datum/movespeed_modifier/turf_slowdown
|
|
movetypes = GROUND
|
|
blacklisted_movetypes = (FLYING|FLOATING)
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/bulky_drag
|
|
variable = TRUE
|
|
blacklisted_movetypes = FLOATING
|
|
|
|
/datum/movespeed_modifier/cold
|
|
blacklisted_movetypes = FLOATING
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/shove
|
|
multiplicative_slowdown = SHOVE_SLOWDOWN_STRENGTH
|
|
|
|
/datum/movespeed_modifier/human_carry
|
|
multiplicative_slowdown = HUMAN_CARRY_SLOWDOWN
|
|
blacklisted_movetypes = FLOATING
|
|
|
|
/datum/movespeed_modifier/limbless
|
|
variable = TRUE
|
|
movetypes = GROUND
|
|
flags = IGNORE_NOSLOW
|
|
|
|
/datum/movespeed_modifier/simplemob_varspeed
|
|
variable = TRUE
|
|
flags = IGNORE_NOSLOW
|
|
|
|
/datum/movespeed_modifier/fast_web
|
|
multiplicative_slowdown = 0.2
|
|
|
|
/datum/movespeed_modifier/spiderling_web
|
|
multiplicative_slowdown = 0.7
|
|
|
|
/datum/movespeed_modifier/average_web
|
|
multiplicative_slowdown = 1.2
|
|
|
|
/datum/movespeed_modifier/slow_web
|
|
multiplicative_slowdown = 5
|
|
|
|
/datum/movespeed_modifier/gravity
|
|
blacklisted_movetypes = FLOATING
|
|
variable = TRUE
|
|
flags = IGNORE_NOSLOW
|
|
|
|
/datum/movespeed_modifier/carbon_softcrit
|
|
multiplicative_slowdown = SOFTCRIT_ADD_SLOWDOWN
|
|
flags = IGNORE_NOSLOW
|
|
|
|
/datum/movespeed_modifier/slime_tempmod
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/carbon_crawling
|
|
multiplicative_slowdown = CRAWLING_ADD_SLOWDOWN
|
|
flags = IGNORE_NOSLOW
|
|
|
|
/datum/movespeed_modifier/mob_config_speedmod
|
|
variable = TRUE
|
|
flags = IGNORE_NOSLOW
|
|
|
|
/datum/movespeed_modifier/metabolicboost
|
|
multiplicative_slowdown = -1.5
|
|
|
|
/datum/movespeed_modifier/dragon_rage
|
|
multiplicative_slowdown = -0.5
|
|
|
|
/datum/movespeed_modifier/dragon_depression
|
|
multiplicative_slowdown = 5
|
|
|
|
/datum/movespeed_modifier/morph_disguised
|
|
multiplicative_slowdown = -1
|
|
|
|
/datum/movespeed_modifier/auto_wash
|
|
multiplicative_slowdown = 3
|
|
|
|
/datum/movespeed_modifier/player_spider_modifier
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/health_scaling_speed_buff
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/alien_speed
|
|
variable = TRUE
|
|
|
|
/datum/movespeed_modifier/grown_killer_tomato
|
|
variable = TRUE
|