Skip to content

Commit

Permalink
Merge pull request #86 from Artemchik542/master
Browse files Browse the repository at this point in the history
Команды питомцев теперь на Русском
  • Loading branch information
Huz2e authored May 21, 2024
2 parents 26c0877 + 2bf1090 commit 4e7d7a4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions code/datums/components/pet_commands/pet_commands_basic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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

Expand All @@ -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)
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 4e7d7a4

Please sign in to comment.