mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-31 00:58:26 +01:00
also fixes the vore button covering the up and down icons ## About The Pull Request Something mentioned during the original vore bounty, but that wasn't implemented makes some vore defines into configs for easier customization Also fixes the vore icon covering the up and down buttons. ## Why It's Good For The Game Makes the system easier to configure also makes the down button available again. ## Proof Of Testing <details> <summary>Screenshots/Videos</summary> Proof of config editing on the fly:  </details> It should work the same, since the defines were just made into configs. ## Changelog 🆑 config: Makes vore defines into configs fix: makes the down button available again /🆑 --------- Co-authored-by: The Sharkening <95130227+StrangeWeirdKitten@users.noreply.github.com>
66 lines
1.3 KiB
Plaintext
66 lines
1.3 KiB
Plaintext
// Configuration entries for vore system parameters
|
|
/datum/config_entry/number/vore_max_bellies
|
|
default = 10
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_max_prey
|
|
default = 3
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_delay
|
|
default = 4 SECONDS
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_eject_delay
|
|
default = 2 SECONDS
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_max_belly_layouts
|
|
default = 20
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_max_burn_damage
|
|
default = 2.5
|
|
integer = FALSE
|
|
min_val = 0
|
|
|
|
/datum/config_entry/number/vore_max_brute_damage
|
|
default = 2.5
|
|
integer = FALSE
|
|
min_val = 0
|
|
|
|
/datum/config_entry/number/vore_min_escape_time
|
|
default = 2 SECONDS
|
|
integer = FALSE
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_default_escape_time
|
|
default = 15 SECONDS
|
|
integer = FALSE
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_max_escape_time
|
|
default = 60 SECONDS
|
|
integer = FALSE
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_max_verb_length
|
|
default = 20
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_max_message_length
|
|
default = 160
|
|
min_val = 1
|
|
|
|
/datum/config_entry/number/vore_min_message_length
|
|
default = 10
|
|
min_val = 1
|
|
|
|
/datum/config_entry/flag/vore_matryoshka_banned
|
|
|
|
/datum/config_entry/flag/vore_disables_sensors
|
|
|
|
/datum/config_entry/flag/vore_no_dead
|
|
|
|
/datum/config_entry/flag/vore_requires_player
|