var fDesc=new Array(); fDesc[0] = "Triangle Wizard is a hack 'n slash game developed by Wouter van den Wollenberg. Triangle Wizard, named after the main character who is (the only person not to be represented by a letter) represented by a triangle. The wizard part it just because you only get to play a wizard; although there are many types of wizards you could opt to play. So anyways, you get to play a wizard and your goal is to rid a lengthy dungeon of all baddies and stay alive (read: 'refrain from being destroyed' should you opt to play as a vampire or lich) while doing it. There are many spells you can learn, shops to buy them and wreak havoc with. In addition the game features 106 mostly randomized dungeon levels inhabited by a wide variety of creatures both hostile and friendly. You will also have to deal with some boss monsters, magical traps, spiked walls and rivers of lava. In order to obtain the 'retro' look the dungeon will be minimalistically displayed; mind you that this is also to avoid the ridiculous situation where a fully beautified dungeon is populated by a bunch of ASCII characters. But the greatest thing about the game is its modability. All creatures, traps, unique monsters and even level parameters (remember the levels are randomly generated) are contained in .ini files which can be easily read and modified by using some text editor. Want to add a unique monster that bears your name? Feel free to put it in! Want to create a trap so fiendishly difficult even I did not include it? Again feel free to put it in (or even give it to your friends and laugh as they run away in fright from your demonic contraption!)."; 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 = ''; } }