Updated website
This commit is contained in:
parent
6f6a121d63
commit
cc8f692bc3
24
shared.c
24
shared.c
|
@ -3365,7 +3365,7 @@ void dumpinfo(void) {
|
|||
|
||||
count = 0;
|
||||
for (i = 0; i < MAXPTYPES; i++) {
|
||||
if ((isfruit(i) == FT_FRUIT) || (isfruit(i) == FT_GEM)) {
|
||||
if ((isfruit(i) == FT_FRUIT) && (i != P_DIAMOND)) {
|
||||
if (count % 2 == 0) {
|
||||
printf("<tr>");
|
||||
}
|
||||
|
@ -3379,10 +3379,32 @@ void dumpinfo(void) {
|
|||
|
||||
}
|
||||
|
||||
for (i = 0; i < MAXPTYPES; i++) {
|
||||
if ((isfruit(i) == FT_GEM)) {
|
||||
if (count % 2 == 0) {
|
||||
printf("<tr>");
|
||||
}
|
||||
printf("<td width=10%% align=center><img src=\"img/%s\"><br>%s</td><td width=40%%>Worth %d points.</td>\n",
|
||||
spriteinfo[i].file, spriteinfo[i].name,getpoints(i));
|
||||
if (count % 2 == 1) {
|
||||
printf("</tr>");
|
||||
}
|
||||
count++;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
printf("<td width=10%% align=center><img src=\"img/%s\"><br>%s</td><td width=40%%>Worth %d points.</td>\n",
|
||||
spriteinfo[P_DIAMOND].file, spriteinfo[P_DIAMOND].name,getpoints(P_DIAMOND));
|
||||
|
||||
if (count % 2 == 1) {
|
||||
printf("</tr>");
|
||||
} else {
|
||||
printf("<td colspan=2> </td></tr>");
|
||||
}
|
||||
|
||||
|
||||
|
||||
// perm powerup
|
||||
printf("<tr bgcolor=\"#ffff00\"><th colspan=4>Permenant Powerups</th></tr>\n");
|
||||
count = 0;
|
||||
|
|
|
@ -26,17 +26,17 @@
|
|||
<td width=10% align=center><img src="img/icecream.png"><br>Ice Cream</td><td width=40%>Worth 1000 points.</td>
|
||||
</tr><tr><td width=10% align=center><img src="img/chips.png"><br>Chips</td><td width=40%>Worth 1500 points.</td>
|
||||
<td width=10% align=center><img src="img/burger.png"><br>Burger</td><td width=40%>Worth 2000 points.</td>
|
||||
</tr><tr><td width=10% align=center><img src="img/pizza.png"><br>Pizza</td><td width=40%>Worth 2500 points.</td>
|
||||
<td width=10% align=center><img src="img/sundae.png"><br>Sundae</td><td width=40%>Worth 3000 points.</td>
|
||||
</tr><tr><td width=10% align=center><img src="img/cake.png"><br>Cake</td><td width=40%>Worth 3500 points.</td>
|
||||
<td width=10% align=center><img src="img/chocolate.png"><br>Chocolate</td><td width=40%>Worth 4000 points.</td>
|
||||
</tr><tr><td width=10% align=center><img src="img/flower-yellow.png"><br>Sunflower</td><td width=40%>Worth 5 points.</td>
|
||||
<td width=10% align=center><img src="img/flower-red.png"><br>Tulip</td><td width=40%>Worth 10 points.</td>
|
||||
</tr><tr><td width=10% align=center><img src="img/flower-purple.png"><br>Orchid</td><td width=40%>Worth 30 points.</td>
|
||||
<td width=10% align=center><img src="img/gem-red.png"><br>Ruby</td><td width=40%>Worth 75 points.</td>
|
||||
</tr><tr><td width=10% align=center><img src="img/gem-yellow.png"><br>Topaz</td><td width=40%>Worth 50 points.</td>
|
||||
<td width=10% align=center><img src="img/gem-purple.png"><br>Amethyst</td><td width=40%>Worth 100 points.</td>
|
||||
</tr><tr><td width=10% align=center><img src="img/diamond.png"><br>Diamond</td><td width=40%>Worth 2500 points.</td>
|
||||
<td width=10% align=center><img src="img/pizza.png"><br>Pizza</td><td width=40%>Worth 2500 points.</td>
|
||||
</tr><tr><td width=10% align=center><img src="img/sundae.png"><br>Sundae</td><td width=40%>Worth 3000 points.</td>
|
||||
<td width=10% align=center><img src="img/cake.png"><br>Cake</td><td width=40%>Worth 3500 points.</td>
|
||||
</tr><tr><td width=10% align=center><img src="img/chocolate.png"><br>Chocolate</td><td width=40%>Worth 4000 points.</td>
|
||||
</tr><td width=10% align=center><img src="img/diamond.png"><br>Diamond</td><td width=40%>Worth 2500 points.</td>
|
||||
<td colspan=2> </td></tr><tr bgcolor="#ffff00"><th colspan=4>Permenant Powerups</th></tr>
|
||||
<tr><td align=center><img src="img/speed.png"><br>Speed Up</td><td>Makes you walk faster.</td>
|
||||
<td align=center><img src="img/numnets.png"><br>More Nets</td><td>Increases the number of monsters you can catch simultaneously.</td>
|
||||
|
|
Loading…
Reference in New Issue