NHSE/NHSE.Core/Structures/GameLists.cs
2020-04-06 20:11:35 -07:00

185 lines
5.7 KiB
C#

using System.Collections.Generic;
namespace NHSE.Core
{
public static class GameLists
{
public static IReadOnlyList<ushort> Bugs = new ushort[]
{
582, // brown cicada
583, // tiger butterfly
584, // Rajah Brooke's birdwing
585, // red dragonfly
586, // Queen Alexandra's birdwing
587, // pondskater
588, // ant
590, // pill bug
591, // wharf roach
592, // moth
594, // diving beetle
595, // darner dragonfly
596, // goliath beetle
597, // fly
598, // orchid mantis
599, // tiger beetle
600, // horned hercules
601, // evening cicada
602, // cyclommatus stag
603, // firefly
604, // dung beetle
605, // rice grasshopper
606, // mosquito
607, // mantis
608, // stinkbug
609, // citrus long-horned beetle
610, // peacock butterfly
611, // snail
612, // horned dynastid
613, // grasshopper
614, // earth-boring dung beetle
615, // horned atlas
616, // walking leaf
617, // cricket
618, // giant cicada
619, // spider
620, // agrias butterfly
621, // robust cicada
622, // bagworm
623, // honeybee
624, // miyama stag
625, // yellow butterfly
626, // common butterfly
627, // emperor butterfly
628, // centipede
630, // walking stick
631, // rainbow stag
632, // saw stag
633, // flea
634, // mole cricket
635, // banded dragonfly
636, // monarch butterfly
637, // giant stag
638, // golden stag
639, // scarab beetle
640, // scorpion
641, // cicada shell
642, // bell cricket
643, // wasp
644, // long locust
645, // jewel beetle
646, // tarantula
647, // ladybug
648, // migratory locust
649, // walker cicada
650, // violin beetle
651, // hermit crab
652, // Atlas moth
653, // horned elephant
3477, // common bluebottle
3478, // paper kite butterfly
3479, // great purple emperor
3480, // drone beetle
3482, // giraffe stag
3483, // man-faced stink bug
3484, // Madagascan sunset moth
3485, // blue weevil beetle
3487, // rosalia batesi beetle
3539, // snowflake
3540, // large snowflake
4702, // Wisp spirit piece
5157, // giant water bug
5339, // damselfly
5859, // cherry-blossom petal
7374, // maple leaf
};
public static IReadOnlyList<ushort> Fish = new ushort[]
{
0328, // crucian carp
0329, // goldfish
2215, // bitterling
2216, // pale chub
2217, // dace
2219, // carp
2220, // koi
2221, // pop-eyed goldfish
2222, // killifish
2223, // crawfish
2224, // soft-shelled turtle
2225, // tadpole
2226, // frog
2227, // freshwater goby
2228, // loach
2229, // catfish
2231, // giant snakehead
2232, // bluegill
2233, // yellow perch
2234, // black bass
2235, // pike
2236, // pond smelt
2237, // sweetfish
2238, // cherry salmon
2239, // char
2241, // stringfish
2242, // salmon
2243, // king salmon
2244, // mitten crab
2245, // guppy
2246, // nibble fish
2247, // angelfish
2248, // neon tetra
2249, // piranha
2250, // arowana
2251, // dorado
2252, // gar
2253, // arapaima
2254, // saddled bichir
2255, // sea butterfly
2256, // sea horse
2257, // clown fish
2258, // surgeonfish
2259, // butterfly fish
2260, // Napoleonfish
2261, // zebra turkeyfish
2262, // blowfish
2263, // puffer fish
2264, // horse mackerel
2265, // barred knifejaw
2266, // sea bass
2267, // red snapper
2268, // dab
2269, // olive flounder
2270, // squid
2271, // moray eel
2272, // ribbon eel
2273, // football fish
2274, // tuna
2275, // blue marlin
2276, // giant trevally
2277, // ray
2278, // ocean sunfish
2279, // hammerhead shark
2280, // great white shark
2281, // saw shark
2282, // whale shark
2283, // oarfish
2284, // coelacanth
2502, // stone
3466, // empty can
3469, // boot
3470, // old tire
4189, // sturgeon
4190, // tilapia
4191, // betta
4192, // snapping turtle
4193, // golden trout
4194, // rainbowfish
4201, // anchovy
4202, // mahi-mahi
4203, // suckerfish
4204, // barreleye
5254, // ranchu goldfish
};
}
}