2013-07-04 13:09:03 -04:00
|
|
|
return Def.ActorFrame {
|
|
|
|
|
LoadFont("Common Normal") .. {
|
|
|
|
|
Text=GetLifeDifficulty();
|
|
|
|
|
AltText="";
|
|
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:horizalign(left);
|
|
|
|
|
self:zoom(0.675);
|
|
|
|
|
end;
|
|
|
|
|
OnCommand=function(self)
|
|
|
|
|
self:shadowlength(1);
|
|
|
|
|
end;
|
|
|
|
|
BeginCommand=function(self)
|
|
|
|
|
self:settextf( Screen.String("LifeDifficulty"), "" );
|
|
|
|
|
end
|
|
|
|
|
};
|
|
|
|
|
LoadFont("Common Normal") .. {
|
|
|
|
|
Text=GetLifeDifficulty();
|
|
|
|
|
AltText="";
|
|
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:x(136);
|
|
|
|
|
self:zoom(0.675);
|
|
|
|
|
self:halign(0);
|
|
|
|
|
end;
|
|
|
|
|
OnCommand=function(self)
|
|
|
|
|
self:shadowlength(1);
|
|
|
|
|
self:skewx(-0.125);
|
|
|
|
|
end;
|
|
|
|
|
};
|
2010-04-26 13:24:16 -05:00
|
|
|
};
|