diff --git a/code/datums/components/pet_commands/pet_commands_basic.dm b/code/datums/components/pet_commands/pet_commands_basic.dm index 5ff476a85b959..0679c7488ba55 100644 --- a/code/datums/components/pet_commands/pet_commands_basic.dm +++ b/code/datums/components/pet_commands/pet_commands_basic.dm @@ -9,7 +9,7 @@ command_desc = "Command your pet to stay idle in this location." radial_icon = 'icons/obj/bed.dmi' radial_icon_state = "dogbed" - speech_commands = list("sit", "stay", "stop") + speech_commands = list("sit", "stay", "stop", "сидеть", "лежать", "место", "фу", "стоп", "стой", "стоять") command_feedback = "sits" /datum/pet_command/idle/execute_action(datum/ai_controller/controller) @@ -24,7 +24,7 @@ command_desc = "Allow your pet to resume its natural behaviours." radial_icon = 'icons/mob/actions/actions_spells.dmi' radial_icon_state = "repulse" - speech_commands = list("free", "loose") + speech_commands = list("free", "loose", "гулять", "вон", "свобод", "брысь") command_feedback = "relaxes" /datum/pet_command/free/execute_action(datum/ai_controller/controller) @@ -40,7 +40,7 @@ command_desc = "Command your pet to accompany you." radial_icon = 'icons/testing/turf_analysis.dmi' radial_icon_state = "red_arrow" - speech_commands = list("heel", "follow") + speech_commands = list("heel", "follow", "за мной", "след", "охран", "к ноге", "ко мне") ///the behavior we use to follow var/follow_behavior = /datum/ai_behavior/pet_follow_friend @@ -61,7 +61,7 @@ command_desc = "Play a macabre trick." radial_icon = 'icons/mob/simple/pets.dmi' radial_icon_state = "puppy_dead" - speech_commands = list("play dead") // Don't get too creative here, people talk about dying pretty often + speech_commands = list("play dead", "притворись", "мертв", "умри") // Don't get too creative here, people talk about dying pretty often /datum/pet_command/play_dead/execute_action(datum/ai_controller/controller) controller.queue_behavior(/datum/ai_behavior/play_dead) @@ -124,7 +124,7 @@ radial_icon = 'icons/effects/effects.dmi' radial_icon_state = "bite" - speech_commands = list("attack", "sic", "kill") + speech_commands = list("attack", "sic", "kill", "апорт", "фас", "бить", "атак") command_feedback = "growl" pointed_reaction = "and growls" /// Balloon alert to display if providing an invalid target @@ -165,7 +165,7 @@ command_desc = "Command your pet to attempt to breed with a partner." radial_icon = 'icons/mob/simple/animal.dmi' radial_icon_state = "heart" - speech_commands = list("breed", "consummate") + speech_commands = list("breed", "consummate", "размножайся", "ебитес") var/datum/ai_behavior/reproduce_behavior = /datum/ai_behavior/make_babies /datum/pet_command/point_targeting/breed/set_command_target(mob/living/parent, atom/target) @@ -197,7 +197,7 @@ command_desc = "Command your pet to use one of its special skills on something that you point out to it." radial_icon = 'icons/mob/actions/actions_spells.dmi' radial_icon_state = "projectile" - speech_commands = list("shoot", "blast", "cast") + speech_commands = list("shoot", "blast", "cast", "стреля", "выстрел", "пиу", "паф", "каст") command_feedback = "growl" pointed_reaction = "and growls" /// Blackboard key where a reference to some kind of mob ability is stored