var fDesc=new Array();
fDesc[0] = "X3: Time Of The Truth is a global modification of X3: Terrain Conflict. A lot of new content are added in game.
New 2 races are available in this game : The Ancient and The Fallen; several Yaki clans with their own Headquarters (Homes) and manufacture specialization were also added.
The X3: Time Of The Truth game was designed with a new map which includes :
- over 80 new sectors;
- most of the old sectors were remodeled.
Also, the player may choose several types of weapons and the existing weaponry’s parameters were changed :
- ships of M0-class can be equipped with new weapons, being much more powerful than the others;
- the parameters of Ion Pulse Generator, Point Singularity Projector, Concussion Impulse Generator, Ion Shard Railgun were improved;
- the boarding pod’s cargo-class was changed to L;
- the boarding pod’s capacity was increased up to 10 persons.
The several races’ economics was changed:
- new xenon economics
- new Yaki economics
- new Ancients economics.";
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 = '';
}
}