diff --git a/code/__DEFINES/borer.dm b/code/__DEFINES/borer.dm index ee65cffd26c..cb61176fe58 100644 --- a/code/__DEFINES/borer.dm +++ b/code/__DEFINES/borer.dm @@ -1,10 +1,10 @@ #define REPRODUCTIONS_TO_MATURE 3 #define REPRODUCTIONS_TO_ADULT 6 #define REPRODUCTIONS_TO_ELDER 10 -#define HEAD_FOCUS_COST 9 -#define TORSO_FOCUS_COST 15 -#define HANDS_FOCUS_COST 5 -#define LEGS_FOCUS_COST 10 +#define HEAD_FOCUS_COST 4.5 +#define TORSO_FOCUS_COST 7.5 +#define HANDS_FOCUS_COST 2.5 +#define LEGS_FOCUS_COST 5 #define SCALING_MAX_CHEM 355 #define SCALING_CHEM_GAIN 15 #define BORER_RANK_YOUNG /datum/borer_rank/young diff --git a/code/modules/antagonists/borer/borer_spell.dm b/code/modules/antagonists/borer/borer_spell.dm index c987e70370c..d5f8ca41088 100644 --- a/code/modules/antagonists/borer/borer_spell.dm +++ b/code/modules/antagonists/borer/borer_spell.dm @@ -112,8 +112,6 @@ action_icon_state = "god_transmit" need_active_overlay = TRUE - var/evo_cost = 0.3 - /obj/effect/proc_holder/spell/borer_force_say/create_new_targeting() return new /datum/spell_targeting/self @@ -121,10 +119,6 @@ if (user.stat || user.host?.stat) return FALSE - if(user.antag_datum.evo_points < evo_cost) - to_chat(user, "Вам требуется еще [evo_cost - user.antag_datum.evo_points] очков эволюции для подчинения голосовых связок хозяина.") - return FALSE - . = ..() /obj/effect/proc_holder/spell/borer_force_say/cast(list/targets, mob/living/simple_animal/borer/user) @@ -133,10 +127,8 @@ if(!force_say_content) return - if(user.controlling || user.stat || user.host?.stat || user.antag_datum.evo_points < evo_cost) // we really need that double check + if(user.controlling || user.stat || user.host?.stat) // we really need that double check return user.host.say(force_say_content) - user.antag_datum.evo_points -= evo_cost - add_attack_logs(user, user.host, "Forcesaid: [force_say_content]")