website chnage: monster table headings now have yellow bg

This commit is contained in:
Rob Pearce 2008-11-06 02:25:38 +00:00
parent be2905f66b
commit 831c940b6e
2 changed files with 4 additions and 4 deletions

View File

@ -3070,7 +3070,7 @@ void dumpinfo(void) {
printf("<center><h2>Creatures</h2></center>\n");
printf("<table border=1>\n");
// monsters
printf("<tr><th colspan=2>Monsters</th></tr>\n");
printf("<tr bgcolor=\"#ffff00\"><th colspan=2>Monsters</th></tr>\n");
for (i = 0; i < MAXPTYPES; i++) {
if (ismonster(i) == MT_MONSTER) {
printf("<tr><td align=center><img src=\"img/%s\"><br>%s</td><td>%s</td></tr>\n",
@ -3078,7 +3078,7 @@ void dumpinfo(void) {
}
}
// bosses
printf("<tr><th colspan=2>Bosses</th></tr>\n");
printf("<tr bgcolor=\"#ffff00\"><th colspan=2>Bosses</th></tr>\n");
for (i = 0; i < MAXPTYPES; i++) {
if (ismonster(i) == MT_BOSS) {
printf("<tr><td align=center><img src=\"img/%s\"><br>%s</td><td>%s</td></tr>\n",

View File

@ -55,7 +55,7 @@
</table>
<center><h2>Creatures</h2></center>
<table border=1>
<tr><th colspan=2>Monsters</th></tr>
<tr bgcolor="#ffff00"><th colspan=2>Monsters</th></tr>
<tr><td align=center><img src="img/rat.png"><br>Rat</td><td>The weakest of the monsters, the rat will simply walk back and forth waiting to be caught. Beward an angry rat though, as it will try to fall or jump in order to catch you!</td></tr>
<tr><td align=center><img src="img/newbee.png"><br>Bee</td><td>Bees, while still relatively weak, gain an advantage over bats in that they are able to fly. They move in a simple diagonal pattern, changing direction when they get near a wall or spikes. Bees will speed up when angry.</td></tr>
<tr><td align=center><img src="img/spider.png"><br>Spider</td><td>Spiders will lurk quietly on the ceiling, crawling back and forth. If they notice a player nearby however they will swiftly pounce down onto their prey!</td></tr>
@ -65,7 +65,7 @@
<tr><td align=center><img src="img/slug.png"><br>Slug</td><td>Slugs are faster moving than snails and capable of launching themselves through the air at their prey!</td></tr>
<tr><td align=center><img src="img/fish.png"><br>Pirahna</td><td>These fish at at home in the water and unhampered by slowness while swimming.</td></tr>
<tr><td align=center><img src="img/plant.png"><br>Plant</td><td>Evil venus fly trap plants will lie in wait and devour any player foolish enough to wander into their clutches.</td></tr>
<tr><th colspan=2>Bosses</th></tr>
<tr bgcolor="#ffff00"><th colspan=2>Bosses</th></tr>
<tr><td align=center><img src="img/cloud.png"><br>Cloud of Doom</td><td>This unkillable cloud will appear if you spend too much time on one level. Beware, as the only way to defeat the cloud of doom is to complete the level before it grows too large to handle!</td></tr>
<tr><td align=center><img src="img/kingrat.png"><br>King Rat</td><td>This mighty creature is the ruler of the rats, and impervious to the player's net. It can only be harmed by slamming another monster into it! King Rat will roam the level searching for a player, and upon locating them will charge at high speed.</td></tr>
<tr><td align=center><img src="img/kingsnail.png"><br>King Snail</td><td>The absolute ruler of the snail kingdom is far too large and heavy to catch in a net. In addition, its shell provides protection against all attacks, leaving only its head vulnerable. While King Snail is too proud to chase down enemies itself, it can use its snail army to destroy its foes.</td></tr>