var fDesc=new Array();
fDesc[0] = "Alien Shooter 2 (Alien Shooter - Vengeance) is a large-scale sequel to the first part of Alien Shooter. This is the unique alloy of arcade action and RPG elements which combines well-established world of classical games and unmatched dynamics of the first part.
The player will find well-built plot line with several ways to pass, many additional quests, ability to choose and upgrade the character.
The most impressive technical innovations are:
- dynamic shadows and lighting;
- about 10 000 monsters on each map, showing up to 100 monsters simultaneously on one playing screen;
- natural phenomena (fog, rain, water);
- NPC characters;
You will also find:
- more than 50 types of weapons - now you can not just kill but also burn, freeze and even diminish the enemies;
- more than 20 types of useful gadgets - from flash lights, radars and medkits to battle drones;
- 3 game modes: Campaign, Survive and Network game;
And, to crown it all, dynamic music and sound effects.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}