Translated russian text in airlock electronics menu.

Proper assembly for ED-209 is "Frame - Metal sheet - leg - leg - weld - security vest - helmet - proximity - wires - taser - *screwdriver* - battery".
Tweaked some hunger-related values.
Fixed nutrition icon.
Made slower metabolism 10 times slower than normal.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@531 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
Rygzengrho
2010-12-04 00:12:57 +00:00
parent 963bff9df3
commit 403069fca7
8 changed files with 18 additions and 18 deletions
@@ -21,19 +21,19 @@
if(H.brainloss >= 60)
return
var/t1 = text("<B>Íàñòðîéêà äîñòóïà</B><br>\n")
var/t1 = text("<B>Access control</B><br>\n")
if (last_configurator)
t1 += "Íàñòðîéùèê: [last_configurator]<br>"
t1 += "Operator: [last_configurator]<br>"
if (locked)
t1 += "<a href='?src=\ref[src];login=1'>Âñòàâüòå ID</a><hr>"
t1 += "<a href='?src=\ref[src];login=1'>Swipe ID</a><hr>"
else
t1 += "<a href='?src=\ref[src];logout=1'>Çàáëîêèðîâàòü</a><hr>"
t1 += "<a href='?src=\ref[src];logout=1'>Block</a><hr>"
t1 += conf_access == null ? "<font color=red>Âñå</font><br>" : "<a href='?src=\ref[src];access=all'>Âñå</a><br>"
t1 += conf_access == null ? "<font color=red>All</font><br>" : "<a href='?src=\ref[src];access=all'>All</a><br>"
t1 += "<br>"
@@ -46,7 +46,7 @@
else
t1 += "<font color=red>[aname]</font><br>"
t1 += text("<p><a href='?src=\ref[];close=1'>Çàêðûòü</a></p>\n", src)
t1 += text("<p><a href='?src=\ref[];close=1'>Close</a></p>\n", src)
user << browse(t1, "window=airlock_electronics")
onclose(user, "airlock")
+1 -1
View File
@@ -72,7 +72,7 @@ datum/controller/game_controller
for(var/mob/M in world)
if (M.metabslow)
if (air_master.current_cycle%5==1) // For everyone who has their metabolism slowed, make updates not so frequently
if (air_master.current_cycle%10==1) // For everyone who has their metabolism slowed, make updates not so frequently
M.Life()
else
M.Life()
@@ -103,7 +103,7 @@
if (src.nutrition < 100)
usr << "\red [src.name] looks like flesh and bones."
else if (src.nutrition >= 600)
else if (src.nutrition >= 500)
if (usr.nutrition < 100)
usr << "\red [src.name] looks very round and delicious. Like a little piggy. A tasty piggy."
else
+4 -4
View File
@@ -427,9 +427,9 @@
mymob.healths.screen_loc = ui_health
mymob.nutrition_icon = new /obj/screen( null )
mymob.nutrition_icon.icon = 'fullness.dmi'
mymob.nutrition_icon.icon_state = "fullness0"
mymob.nutrition_icon.name = "fullness"
mymob.nutrition_icon.icon = ui_style
mymob.nutrition_icon.icon_state = "nutrition0"
mymob.nutrition_icon.name = "nutrition"
mymob.nutrition_icon.screen_loc = ui_nutrition
mymob.pullin = new /obj/screen( null )
@@ -566,7 +566,7 @@
mymob.client.screen = null
//, mymob.i_select, mymob.m_select
mymob.client.screen += list( mymob.throw_icon, mymob.zone_sel, mymob.oxygen, mymob.toxin, mymob.bodytemp, mymob.internals, mymob.fire, mymob.hands, mymob.healths, mymob.pullin, mymob.blind, mymob.flash, mymob.rest, mymob.sleep) //, mymob.mach )
mymob.client.screen += list( mymob.throw_icon, mymob.zone_sel, mymob.oxygen, mymob.toxin, mymob.bodytemp, mymob.internals, mymob.fire, mymob.hands, mymob.healths, mymob.nutrition_icon, mymob.pullin, mymob.blind, mymob.flash, mymob.rest, mymob.sleep) //, mymob.mach )
mymob.client.screen += src.adding + src.other
//if(istype(mymob,/mob/living/carbon/monkey)) mymob.client.screen += src.mon_blo
+5 -5
View File
@@ -742,15 +742,15 @@
if (src.nutrition_icon)
switch(nutrition)
if(450 to INFINITY)
src.nutrition_icon.icon_state = "fullness0"
src.nutrition_icon.icon_state = "nutrition0"
if(350 to 450)
src.nutrition_icon.icon_state = "fullness1"
src.nutrition_icon.icon_state = "nutrition1"
if(250 to 350)
src.nutrition_icon.icon_state = "fullness2"
src.nutrition_icon.icon_state = "nutrition2"
if(150 to 250)
src.nutrition_icon.icon_state = "fullness3"
src.nutrition_icon.icon_state = "nutrition3"
else
src.nutrition_icon.icon_state = "fullness4"
src.nutrition_icon.icon_state = "nutrition4"
if(src.pullin) src.pullin.icon_state = "pull[src.pulling ? 1 : 0]"
+1 -1
View File
@@ -19,7 +19,7 @@
//Amount of air needed before pass out/suffocation commences
// Factor of how fast mob nutriment decreases
#define HUNGER_FACTOR 0.15
#define HUNGER_FACTOR 0.1
#define MINIMUM_AIR_RATIO_TO_SUSPEND 0.05
Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 118 KiB