Skip to content

Commit

Permalink
Перевод слимефрендов (без цвета
Browse files Browse the repository at this point in the history
  • Loading branch information
VERG-SS220 committed Jul 13, 2024
1 parent b4f772d commit 746a6ce
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions code/modules/mob/living/simple_animal/slime/slime_mob.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/mob/living/simple_animal/slime
name = "grey baby slime (123)"
name = "серый малыш слайм"
icon = 'icons/mob/slimes.dmi'
icon_state = "grey baby slime"
hud_type = /datum/hud/slime
Expand All @@ -16,7 +16,7 @@
response_help = "pets"
response_disarm = "shoos"
response_harm = "stomps on"
emote_see = list("jiggles", "bounces in place")
emote_see = list("jiggles", "прыгает на месте")
speak_emote = list("blorbles")
bubble_icon = "slime"

Expand Down Expand Up @@ -67,14 +67,14 @@

///////////TIME FOR SUBSPECIES

var/colour = "grey"
var/colour = "серый"
var/coretype = /obj/item/slime_extract/grey
var/list/slime_mutation[4]

var/static/list/slime_colours = list("rainbow", "grey", "purple", "metal", "orange",
"blue", "dark blue", "dark purple", "yellow", "silver", "pink", "red",
"gold", "green", "adamantine", "oil", "light pink", "bluespace",
"cerulean", "sepia", "black", "pyrite")
var/static/list/slime_colours = list("радужный", "серый", "фиолетоый", "металлический", "оранжевый",
"синий", "тёмносиний", "тёмнофиолетовый", "жёлый", "серебрянный", "розовый", "красный",
"золотой", "зеленый", "адамантитовый", "масляный", "светлорозовый", "блюспейс",
"лазурный", "сепия", "чёрный", "пиритовый")

///////////CORE-CROSSING CODE

Expand Down Expand Up @@ -121,7 +121,7 @@
. = ..()
if(slime_name_regex.Find(name))
number = rand(1, 1000)
name = "[colour] [is_adult ? "adult" : "baby"] slime ([number])"
name = "[colour] [is_adult ? "взрослый" : "малыш"] слайм ([number])"
real_name = name

/mob/living/simple_animal/slime/proc/random_colour()
Expand Down Expand Up @@ -312,13 +312,13 @@
M.do_attack_animation(src, ATTACK_EFFECT_DISARM)
if(buckled == M)
if(prob(60))
M.visible_message("<span class='warning'>[M] attempts to wrestle \the [name] off!</span>", \
"<span class='danger'>You attempt to wrestle \the [name] off!</span>")
M.visible_message("<span class='warning'>[M] пытается скинуть [name] с себя!</span>", \
"<span class='danger'>Вы пытаетесь скинуть [name] с себя!</span>")
playsound(loc, 'sound/weapons/punchmiss.ogg', 25, TRUE, -1)

else
M.visible_message("<span class='warning'>[M] manages to wrestle \the [name] off!</span>", \
"<span class='notice'>You manage to wrestle \the [name] off!</span>")
M.visible_message("<span class='warning'>[M] пытается снять [name] с себя!</span>", \
"<span class='notice'>Вы пытаетесь скинуть [name] с себя!</span>")
playsound(loc, 'sound/weapons/thudswoosh.ogg', 50, TRUE, -1)

discipline_slime(M)
Expand Down

0 comments on commit 746a6ce

Please sign in to comment.