diff --git a/shared.c b/shared.c
index 842db59..512d650 100644
--- a/shared.c
+++ b/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("
");
}
@@ -3379,10 +3379,32 @@ void dumpinfo(void) {
}
+ for (i = 0; i < MAXPTYPES; i++) {
+ if ((isfruit(i) == FT_GEM)) {
+ if (count % 2 == 0) {
+ printf("
");
+ }
+ printf(" %s | Worth %d points. | \n",
+ spriteinfo[i].file, spriteinfo[i].name,getpoints(i));
+ if (count % 2 == 1) {
+ printf("
");
+ }
+ count++;
+ }
+
+ }
+
+ printf(" %s | Worth %d points. | \n",
+ spriteinfo[P_DIAMOND].file, spriteinfo[P_DIAMOND].name,getpoints(P_DIAMOND));
+
if (count % 2 == 1) {
+ printf("");
+ } else {
printf(" | ");
}
+
+
// perm powerup
printf("Permenant Powerups |
\n");
count = 0;
diff --git a/website/info.html b/website/info.html
index 79955a7..c06d6ad 100644
--- a/website/info.html
+++ b/website/info.html
@@ -26,17 +26,17 @@
Ice Cream | Worth 1000 points. |
Chips | Worth 1500 points. |
Burger | Worth 2000 points. |
+
Pizza | Worth 2500 points. |
+ Sundae | Worth 3000 points. |
+
Cake | Worth 3500 points. |
+ Chocolate | Worth 4000 points. |
Sunflower | Worth 5 points. |
Tulip | Worth 10 points. |
Orchid | Worth 30 points. |
Ruby | Worth 75 points. |
Topaz | Worth 50 points. |
Amethyst | Worth 100 points. |
-
Diamond | Worth 2500 points. |
- Pizza | Worth 2500 points. |
-
Sundae | Worth 3000 points. |
- Cake | Worth 3500 points. |
-
Chocolate | Worth 4000 points. |
+
Diamond | Worth 2500 points. |
| Permenant Powerups |
Speed Up | Makes you walk faster. |
More Nets | Increases the number of monsters you can catch simultaneously. |