Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. <html> <style type="text/css"> :root { /* Margin/padding */ --spacing-medium: 16px; --spacing-small: 8px; --spacing-tiny: 4px; /* Border radius */ --brad-default: 10px; /* Text size */ --txsize-default: 16px; /* Colour */ --color-lightblue: #edf7ff; --color-lightblue-hover: #ccdeec; --color-blue: #93afc7; --color-darkblue: #286090; --color-gray: #dddddd; --color-lightgray: #f2f2f2; --color-white: #ffffff; } /* Collapse box */ .collapse-header { display: flex; align-items: center; gap: 10px; margin-top: var(--spacing-medium); border: 1px solid var(--color-darkblue); border-radius: var(--brad-default); padding: var(--spacing-medium); transition: border-radius .3s ease-in-out; cursor: pointer; } .collapse-header:before { content: '^'; height: 20px; line-height: 28px; font-size: 24px; transform: rotate(180deg); } .collapse-header.collapse-open:before { transform: none; } .collapse-header > * { margin: 0 !important; border: 0; padding: 0 !important; } .collapse-header.collapse-open { border-radius: var(--brad-default) var(--brad-default) 0 0; } .collapse-body-wrapper { margin-top: -1px; max-height: 0; overflow: hidden; transition: max-height .3s ease-in-out; } .collapse-body { border: 1px solid var(--color-darkblue); border-radius: var(--brad-default); padding: 0 var(--spacing-medium); transition: border-radius .3s ease-in-out; } .collapse-body > p { margin: 10px 0; } .collapse-header.collapse-open + .collapse-body-wrapper .collapse-body { border-radius: 0 0 var(--brad-default) var(--brad-default); } /* Table */ .flex-table { display: inline-flex; flex-direction: column; width: auto; } .flex-table .table-row { display: flex; flex-direction: column; } .flex-table .table-head .table-row { border-radius: var(--brad-default) var(--brad-default) 0 0; background-color: var(--color-darkblue); color: var(--color-white); } /* Table borders */ .flex-table .table-body { display: flex; flex-direction: column; border: 1px solid var(--color-darkblue); border-top: 0; } .flex-table .table-body .table-row { order: 0; border-top: 1px solid var(--color-darkblue); background-color: var(--color-white); } .flex-table .table-body .table-row-data > *:nth-child(n + 2) { border-left: 1px solid var(--color-darkblue); } /* Table body */ .flex-table .table-row .table-row-data { display: flex; cursor: pointer; } .flex-table .table-body .table-row:hover .table-row-data { background-color: var(--color-lightblue-hover); } .flex-table .table-row .table-row-data div { padding: 8px; min-width: 100px; } .flex-table .table-row .table-row-data div:nth-child(1) { min-width: 240px; } .flex-table .table-body .table-row:nth-child(even) { background-color: var(--color-lightblue); } /* Override row background for sorting */ .flex-table .table-body .table-row.even { background-color: var(--color-lightblue) !important; } .flex-table .table-body .table-row.odd { background-color: var(--color-white) !important; } /* Table row description */ .flex-table .table-row .table-row-description { display: none; border-top: 1px solid var(--color-blue); padding: 8px; width: 0; min-width: 100%; box-sizing: border-box; } .flex-table .table-row .table-row-description-active { display: block; } </style> <script type="text/javascript"> document.addEventListener("DOMContentLoaded", function() { if (document.querySelectorAll(".collapse-header").length > 0 && document.querySelectorAll(".collapse-body-wrapper").length > 0) { document.querySelectorAll(".collapse-header").forEach((element) => { element.addEventListener("click", function(item) { console.log(element); console.log(element.nextElementSibling); if (element.classList.contains("collapse-open")) { element.classList.remove("collapse-open"); element.nextElementSibling.style.maxHeight = 0; } else { element.classList.add("collapse-open"); element.nextElementSibling.style.maxHeight = element.nextElementSibling.scrollHeight + "px"; } }); }); } // Add table sorting. if (document.querySelectorAll(".flex-table.table-sortable .table-headers").length > 0) { var i = 1; document.querySelectorAll(".flex-table.table-sortable .table-headers > *").forEach((element) => { var table = element.closest(".flex-table"); var tableRows = table.querySelectorAll(".table-body .table-row"); var index = i; element.addEventListener("click", function(item) { // First undo all sorting for the table. tableRows.forEach((item) => { item.style.order = ""; item.classList.remove("even"); item.classList.remove("odd"); }); // Sorting was desc; remove all sorting. if (element.classList.contains("sort-desc")) { element.classList.remove("sort-asc"); element.classList.remove("sort-desc"); } // Asc or desc sorting will be applied. else { var sortMultiplier = 1; // Sorting was asc; sort desc. if (element.classList.contains("sort-asc")) { sortMultiplier = -1; element.classList.remove("sort-asc"); element.classList.add("sort-desc"); } // No sorting; sort asc. else { element.classList.add("sort-asc"); element.classList.remove("sort-desc"); } // Get the row cells for the given column index, and sort them based on their content. var rows = Array .from(table.querySelectorAll(`.table-body .table-row-data > *:nth-child(${index})`)) .sort((a, b) => { if ((!isNaN(a.innerHTML) && parseFloat(a.innerHTML) < parseFloat(b.innerHTML)) || (isNaN(a.innerHTML) && a.innerHTML.toLowerCase() < b.innerHTML.toLowerCase()) ) return -1 * sortMultiplier; else if ((!isNaN(a.innerHTML) && parseFloat(a.innerHTML) > parseFloat(b.innerHTML)) || (isNaN(a.innerHTML) && a.innerHTML.toLowerCase() > b.innerHTML.toLowerCase()) ) return 1 * sortMultiplier; else return 0; }); var rowIndex = 1; rows.forEach((item) => { var itemRow = item.closest(".table-row"); if (itemRow != null) { // Sort the row. itemRow.style.order = rowIndex; // Set the even/odd class to ensure correct styling. if (rowIndex % 2 == 0) itemRow.classList.add("even"); else itemRow.classList.add("odd"); } rowIndex++; }); } }); i++; }); } // Add table row event. if (document.querySelectorAll(".flex-table .table-row-data").length > 0) { document.querySelectorAll(".flex-table .table-row-data").forEach((element) => { element.addEventListener("click", function(item) { var desc = element.parentElement.querySelector(".table-row-description"); if (desc != null) { if (desc.classList.contains("table-row-description-active")) desc.classList.remove("table-row-description-active"); else desc.classList.add("table-row-description-active"); } }); }); } }); </script> <div class="mw-indicators mw-body-content"></div> <h1 id="firstHeading" class="firstHeading" lang="en">Animals</h1> <center> <p style="border:3px; border-style:solid; border-color:#FF0000; padding: 1em;"><b>This info might be out of date.</b><br> Please proceed with caution while we work on getting it updated. <br>September 2024</p> </center> </div> <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"> <div style="font-size: 48px;">TODO: Short intro summary!</div> <div>Draft summary:</div> <div id="toc" class="toc"> <div class="toctitle"> <h2>Contents</h2> </div> <ul> <li class="toclevel-1 tocsection-1"><a href="#Spawning"><span class="tocnumber">1</span> <span class="toctext">Spawning</span></a></li> <li class="toclevel-1 tocsection-2"><a href="#Attacks"><span class="tocnumber">2</span> <span class="toctext">Attacks</span></a></li> <li class="toclevel-1 tocsection-3"><a href="#Taming"><span class="tocnumber">3</span> <span class="toctext">Taming</span></a></li> <li class="toclevel-1 tocsection-4"><a href="#Husbandry"><span class="tocnumber">4</span> <span class="toctext">Husbandry</span></a></li> <li class="toclevel-1 tocsection-5"><a href="#Stealing"><span class="tocnumber">5</span> <span class="toctext">Stealing</span></a></li> <li class="toclevel-1 tocsection-6"><a href="#Mounts"><span class="tocnumber">6</span> <span class="toctext">Mounts</span></a></li> <li class="toclevel-1 tocsection-7"><a href="#Carriers"><span class="tocnumber">7</span> <span class="toctext">Carriers</span></a></li> <li class="toclevel-1 tocsection-8"><a href="#Animal_List"><span class="tocnumber">8</span> <span class="toctext">Animal List</span></a></li> </ul> </div> <div id="Spawning" class="collapse-header"> <h2>Spawning</h2> </div> <div class="collapse-body-wrapper"> <div class="collapse-body"> <p> Each biome type has a respective resource and animal. Any map tile with that biome has a chance of spawning that animal. The more powerful and aggressive the animal, the more likely it will spawn. This makes it more difficult to be a lone character, and makes traditional passive animals meant for taming rarer. In addition, this makes it much more difficult to grind attributes up through hunting. Meat is a luxury, not a standard. To train properly, and safely, the better bet is with other characters. Also animals will not spawn if there are no people in an area, if there is already 30 wilds, or if there is 30 domesticated animals. Animals do not grow old and die, they do not migrate, they do not follow when tamed, and they do not breed. When a resource associated with an animal is depleted, the animal does not go extinct. </p> </div> </div> <div id="Attacks" class="collapse-header"> <h2>Attacks</h2> </div> <div class="collapse-body-wrapper"> <div class="collapse-body"> <p> The likelihood of an animal attacking depends on how naturally aggressive and attack chance towards people is per hour per person with aggression. An animal attack can be on a person, on a project thereby decreasing its progress after having disrupted it, or on a domesticated animal. Animals attacking people can put them into an incapable state if they are low on health and standing outside. Animals will not finish off an incapable person. Tamed animals have a natural regeneration rate of +6 health per day. Barns allow them to heal +12 health per day. Walls completely remove attacks from wild animals against domesticated animals.<br><br> Characters are safe from animal attacks in buildings and <a href="http://www.marosia.com/doku/doku.php?id=travel#Vehicle_List"> vehicles</a>, but not on mounts. </p> <p> If an animal attack nearly brings a character into an incapable state, they will incur an animal attack delay. There is then a 3 hour delay where animals will not attack that character, providing time for an in-character reaction. Animal attacks on that character resume after 3 hours. A delay will only ever be able to be triggered within a 24 hour period that has not had a previous delay already instantiated in that time-frame. </p> </div> </div> <div id="Taming" class="collapse-header"> <h2>Taming</h2> </div> <div class="collapse-body-wrapper"> <div class="collapse-body"> <p> The more powerful and/or aggressive an animal is, the harder it is to tame.<br> Taming requires 10 ingredients of the same type and quality. These must be raw food resources. You need all ten (10) ingredients in your inventory to see the option to initiate a taming project under the animal tab.<br> The quality of ingredients depends on the harvesting skill if it is not from animals, or the ranching skill if its collected/butchered from domesticated animals. It has the lowest quality if obtained through hunting.<br> Taming success is determined by ranching skill and the quality of the offered ingredients. If unsuccessful, you will be attacked. You can change the description of animals you tame, and you can name any animal. <br><br>You can tame any animal that can be ridden or herded regardless of whether they are wild or not, but when starting the project it will be indicated if it is already owned. To re-tame an animal, normal taming conditions must be met, the owner must not be anywhere on the map tile, and the animal must not be travelling. </p> <p> A town tile can have a total of 100 tamed animals by citizens. You can see how many animals the town can have on the tile by checking the Animals tab through the Area tab in-game. </p> </div> </div> <div id="Husbandry" class="collapse-header"> <h2>Husbandry</h2> </div> <div class="collapse-body-wrapper"> <div class="collapse-body"> <p> You will need to offer domesticated animals that you own ingredients if you want any of their produce. The maximum amount of produce you can potentially get is determined by how big the animal herd is. An animal herd is considered to be all animals of the same type under the same owner. The actual amount of produce you will get is determined by amount of ingredients offered scaled to herd size. The quality of the product you get is determined by the ranching skill averaged with the ingredient quality. You are limited to giving only as much ingredients as you have animals in a herd (one ingredient per animal). After deciding how much and what ingredients will be offered, a project will be initiated. The length of this project scales with the size of the herd, and your ranching skill will determine how much progress you make each hour. Hunted animal products will always have a quality of 1 (lowest). Meat, fur, and hide procured from ranching will have a quality in the same manner as collection. Eggs, milk, wool, and honey can only be obtained through domestication. You can get higher quality furs hide and meats scaling with ranching skill through butchering tamed herdable animals or tamed mounts without a vehicle attached to them. </p> </div> </div> <div id="Stealing" class="collapse-header"> <h2>Stealing</h2> </div> <div class="collapse-body-wrapper"> <div class="collapse-body"> <p> Tamed animals are able to have their ownership potentially stolen based on the guile of the thief. This action does initiate a law break for theft. Stealing projects may only be worked on by the original project employer. Experience for guile is not awarded hourly like most other projects. Instead, experience for each hour worked is awarded all at once at the end of the project, and only if the attempt to steal is successful. If you're not a part of the <a href="http://www.marosia.com/doku/doku.php?id=groups" title="Groups">group</a>, you can initiate a project to steal the mount. </p> </div> </div> <div id="Mounts" class="collapse-header"> <h2>Mounts</h2> </div> <div class="collapse-body-wrapper"> <div class="collapse-body"> <p> Many animals can be tamed into mounts, but they have zero capacity on their own (meaning you cannot drop your things on it); you can only bring what you can carry. Capacity for <a href="http://www.marosia.com/doku/doku.php?id=travel">travelling</a> can only be extended with <a href="http://www.marosia.com/doku/doku.php?id=travel#Vehicle_List">vehicles</a>. If you are a part of the owner's group (they do not have to be the leader), then you can get on their mount freely. If you're not a part of the <a href="http://www.marosia.com/doku/doku.php?id=groups" title="Groups">group</a>, you can initiate a project to steal the mount. Those who own a mount can assign a new owner through the animal's information section. You cannot ride nor butcher a mount when a vehicle is attached. </p> <p> Any mounts owned by a non-citizen will not be counted towards a town's total limit of tamed animals. </p> </div> </div> <div id="Carriers" class="collapse-header"> <h2>Carriers</h2> </div> <div class="collapse-body-wrapper"> <div class="collapse-body"> <p> Any tamed animal can be a carrier. Communication is not instant, but it is as fast or faster than any person can travel. Carrier animals do not go around tiles impassable to characters, they are able to traverse any tile by themselves and will move on the most direct route possible to its destination. Arrival messages appear on tiles where carriers come through, and when looking at the animal you can see how long it will remain on the tile and what direction it is moving. Animals who have a package attached are labelled with the word 'carrier' by their name. </p> <p> An animal that can't be sent into a location will send a message saying "animal refuses". This is due to a town's limit being reached. </p> <p><b>You can attach a package if</b></p> <ul> <li> The animal is domesticated AND</li> <li> There is not already a package attached AND</li> <li> You have an item in your inventory which is of valid weight (1) AND</li> <li> That item is not a single item i.e. one apple. It must be manufactured in some way like a container or note.</li> </ul> <p><b>Removing a package will start a stealing project if</b></p> <ul> <li> You are not the owner, OR the animal is neither in its hometown or its destination AND</li> <li> There is not a project to steal the mail already in the vicinity</li> </ul> <p><b>You can send a package if</b></p> <ul> <li> The animal has a package attached AND</li> <li> The target town has under 30 tamed animals AND</li> <li> The animal you are using does not have a vehicle attached AND</li> <li> The animal is not currently travelling AND</li> <li> You are the owner of the animal AND you have a citizenship OR </li> <li> You are not the owner, and the owner is not on the same tile as the animal</li> </ul> <p><b>You can stop an animal from travelling entirely only if you become its new owner.</b> Otherwise if you just remove the package it will continue to its destination.</p> <p> This is also a viable way to get tamed animals back to town quickly, but the inherent downside is that your character cannot escort them safely. They could be hunted or stolen by people, or the package they carry could be intercepted along the way, so be careful to weigh your options when choosing an animal to send. The further away the mail is sent, the more chances there are for something to go wrong. Wild animals will not attack carrier animals. </p> <p>The design is intended to allow for individuals to send their animals back to a town with a message if there is an emergency, but back and forth letters will only be viable between established towns.</p> <p>If an animal who has a package dies, the package will be dropped.</p> </div> </div> <div id="Animal_List" class="collapse-header"> <h2>Animal List</h2> </div> <div class="collapse-body-wrapper"> <div class="collapse-body"> <p>Click a row to show the animal's description, and click a header column to sort.</p> <p>On desktop, hover a table header for an explanation. (Tap and hold on mobile to show it.)</p> <p>An animal's health = [Power * 10], i.e. power 3 = 30 health.</p> <div class="table-responsive"> <div id="animalinfo" class="flex-table table-sortable"> <div class="table-head"> <div class="table-row"> <div class="table-row-data table-headers"> <div title="The animal's name.">Name</div> <div title="Determines an animal's damage and health. Health is 10 * power.">Power</div> <div title="Determines how often an animal may attack on its own. Only aggression 3+ will do so, thus 1-2 are functionally identical. An animal with lower power can attack one with higher power, but not kill it, and will back off if it would have killed.">Aggression</div> <div title="Whether an animal can be tamed - which requires a project with 10 ingredients.">Tameable</div> <div title="Whether an animal can be used to ride or pull a vehicle.">Mount</div> <div title="Whether an animal drops meat on death.">Meat</div> <div title="Whether an animal drops fur on death.">Fur</div> <div title="Whether an animal drops hide on death.">Hide</div> <div title="Whether an animal may give special items such as eggs, honey, milk, or wool from attention projects.">Special</div> </div> </div> </div> <div class="table-body"> <div class="table-row"> <div class="table-row-data"> <div>aardvark</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This animal resembles a pig, but with larger ears, an arched back, and a long snout. Their tails are long and tapered and they have strong claws for digging. A thin and snake-like tongue can extend from their snouts quickly.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>abyssal wasp</div> <div>5</div> <div>5</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A large insectoid creature that tends to abruptly fly towards anything that moves, either narrowly avoiding at the last possible second, or aggressively attacking. Its exoskeleton is encased in a scaly armored carapace earned from exposure to a harsh environment. A young wasp's vibrant colors fade to muted shades of ashen black and burnt oranges as it matures, blending with the shadows that shroud its habitat. Its most striking feature is an oversized stinger, sporting venom that glistens on the tip with sickly luminescence that pierces the gloom. It endlessly searches the chasm for a living host to lay its eggs inside.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>albatross</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A large colonial seabird with a white-feathered body and dark grey wingtips. It generally feeds on fish and crustaceans and will often spend extraordinary times out at sea.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>alligator</div> <div>5</div> <div>5</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This large, imposing reptile is tiled with plates all over its body like a scaley green armor. A huge mouth opens wide as it sits in the water, water to clamp tightly on prey that wanders into its jaws with tremendous force. It rolls when it captures large prey, so that it can rip off pieces of flesh and swallow it whole.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>anaconda</div> <div>5</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description"> A massive snake reaching nearly twenty feet long with primarily emerald green scales. Lacking venom, it hunts by squeezing its prey in a suffocating coil. Shy and moderately aggressive, it prefers to hide in aquatic foliage, only venturing out in the evening.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>antelope</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This mammal stands around 5 feet tall, covered in a brown color with a cream underside. They graze constantly, and watch with skittish paranoia for the many predators who would make them a meal. They stand on hooves, which can be used to kick anyone who might threaten their safety.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>antweeater</div> <div>5</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">The curved back of this enormous quadrupedal creature is layered with an uncountable amount of densely layered, acorn-shaped green leaves. It has an elongated snout that tapers off into a point, from where a spiny, vine-like tongue coated in a viscous mucus can whip out to ensnare its favored prey. It walks on four legs and the front two are capped with strong, curved claws; when threatened it may rear up on its hind legs while using its tail for balance.<br>The living greenery of its fur allows it to climb along surfaces at frightening speeds and make a magnificent camouflage; it has a prominent pattern of a stripe of darker leaves stretching from its chest to its middle back.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>anumpet</div> <div>3</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A low to the ground plant that creeps along on four rooty, vine-like legs that bend and form much like one would expect from an amphibian. Its body is bulbous and fat like a pitcher, with a wide mouth that stretches across its entire face. From its head, a single leaf grows that bobs and bounces as it strolls and hops. From this leaf, it secretes a sweet nectar that lures insects to perch upon it, which would then lead them to slip and fall directly into the creature's maw. Occasionally, it can be heard making unusual tooting sounds, like a call. When threatened, it will bite, leaving strange ringed marks and a numb, stinging sensation wherever its peristome latches onto.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>araatan</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A small grey furry creature with wide black eyes that is characterized by the loud sniffling noises it makes and its tendency to scurry around on its four stubby legs. This creature can typically be found biting into rocks and climbing on top of anything it can find.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>arctic fox</div> <div>2</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This mammal seems to be some sort of mix between a feline and a canine. It is rather short, but lithe with lengthy legs. Its white fur flows down to a bushy tail, which has a grey tip.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>arctic hare</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This mammal is small enough to be held in the arms, and is covered in white fur. It has long ears, and is very skittish, its first instinct to run at the notice of a predator. A tiny nose is constantly working to understand its surrounding, and large red eyes seem constantly alert.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>armadillo</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A grey armored mammal with small pointed ears a long small snout.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>badger</div> <div>1</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A medium sized animal covered in black and white silky fur. Though it may seem like a potential friend, it is actually quite aggressive, and eager to defend itself.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>barn owl</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">The large bird, with lovely white and tan ruffled feathers, and huge eyes, is normally only seen at night. It hoots ominously, searching for small rodents to eat as it sits in a tree.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>basidium ant</div> <div>3</div> <div>3</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A carpenter ant of mind-bogglingly large proportions. From antennae to tarsus it is covered with a shaggy layer of mycelium and dust-like spores. Spindly ghost white mushrooms sprout through its exoskeleton, spreading even more spores into the open air. It moves disjointedly, attempting to clumsily climb to the highest peaks around it in a perpetual zombie-like state.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>basilisk</div> <div>5</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A massive snake which can rise to 7 feet tall. Its green scales are like tightly knitted pieces of armor. It has red eyes, a forked tongue, and huge fangs.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>beaded raven</div> <div>2</div> <div>5</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This scrappy black bird sports shimmering beads of glass buried between its feathers throughout its diminutive body. It is unclear if it grows with them or if it puts it there - but the violence with which these small critters seek everything that glitters under the sun might attest to the latter.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>beaver</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">These hairy mammals generally weigh over 60 pounds and are a reddish-brown color. They have a hairless tail that is flattened from top to bottom. It has back feet that are webbed for swimming while the front legs are smaller and act as bumpers and graspers.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>bison</div> <div>2</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This very large grazing mammal stands around 6 feet. It is bulky, with thick matted fur. It has a low voice, usually coming out as a moan. Large horns sit on its head for defense, but it is normally quite peaceful.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>black bear</div> <div>4</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This large, seemingly husky, and imposing mammal is covered in thick black hair with brown markings. On two feet it can stand up to nine feet tall, and on all fours, around seven. It roars and groans with great ferocity, defending itself with three inch claws, and a deadly bite.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>black snake</div> <div>2</div> <div>3</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small reptile with glossy black scales running the length of a long serpent body. It has large fangs dripping with venom, and a forked tongue that flickers out to understand its surroundings. When threatened, it coils as a warning, before striking with deadly accuracy.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>black wolf</div> <div>4</div> <div>4</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This canine mammal is a vicious predator, with large fangs and sharp claws for defense. These creatures travel in packs, ambushing their prey with surprising strategy. They are covered in black fur, that may have many different markings.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>bladderworsk</div> <div>1</div> <div>3</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">Poking out of the water and sometimes peppered throughout wet soil is a tall stem that supports a bright yellow flower with a mildly reptilian shape to its bloom. At first glance, it appears to be an unassuming plant, but upon being agitated it will rise up on its leg-like roots and shoot across the water at high speeds. These roots double as a means of aggression, as they can sometimes be seen coiling around other plants and small animals to feed on them.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>bloom bear</div> <div>4</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This imposingly large mammal is covered in thick brown hair with a coating of what appears to be flourishing green moss over its back. Wound around its legs and creeping up its sides are blossoming vines sporting fragrant red and yellow flowers; these blossoms extending further to be found sprinkled through the bear's fur. From its head, a set of massive tree branch-like antlers sprout, able to extend up as tall as five feet alone and often growing their own feathery leaves when the weather permits it. Without considering these protrusions, it can stand up to fourteen feet tall on two legs, and on all fours, around twelve.<br><br>While most certainly strong enough to pack a punch, these giant creatures seem to have a bit less of a temper compared to their counterparts and are even willing to approach people who don't pose a threat. When it does find the need to defend itself, the three-inch claws and deadly teeth it harbors would be more than capable of delivering blows. Each one looks upon the world through gentle, glowing green eyes.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>blossom mantis</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A large insect with claws on the front of its body, and six legs that extend from its thorax. These particular variants are bright pink, much like the blossoms they are often found in.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>blue beetles</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A swarm of large glistening blue beetles that defend their nests relentlessly.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>blue snake</div> <div>2</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small reptile with glossy blue scales running the length of a long serpent body. It has large fangs dripping with venom, and a forked tongue that flickers out to understand its surroundings. When threatened, it coils as a warning, before striking with deadly accuracy.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>blush puff</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A light spherical creature that can grow no bigger than half a foot in size, with the smallest sometimes no bigger than an inch or two. They are covered from head to toe in extremely soft fur of various blossom pink shades, though their skin underneath is a pale white. Little black beady eyes peek out from between large tufts of fur, and the creatures typically bask in the sunlight for energy. During good weather they can be found floating peacefully in warm spring pools or drifting about on the breeze, and they take refuge under the cover of nearby foliage during during rainfall. On occasion they can be seen munching on royal tea leaves, and whenever they do, they act somewhat disorientated and clumsy but certainly relaxed.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>bobcat</div> <div>3</div> <div>4</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This medium sized feline is covered in bright red fur, with a bobbed tail. It hides high in the trees, living off of the birds and mammals who also make their home there.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>bog swan</div> <div>1</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A graceful looking but notoriously foul-tempered water bird.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>bonefeather swan</div> <div>2</div> <div>4</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">This sleek, willowy bird is covered in feathers as pale as bone, a slight translucence giving them an almost ghostly appearance. Though their graceful movements and mournful cries may make them seem serene, albeit eerie, when seen from a distance, their temper is quick to flare against anyone or anything that dares get too close.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>bonewhittler</div> <div>3</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A fist-sized crustacean with glossy, bumpy black chitin nestled in a bone shell. It has four, stake-like legs and two larger claws in front of it that frame a pair of stalked, beady red eyes. One of its claws is curved and specializes in snapping and grabbing, while the other is sharp with a straight edge that is perfect for carving.<br>This void-like invertebrate makes its home in the large bones of deceased creatures; bones that it has claw-shaped itself.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>botfly swarm</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A collection of small, black flies that typically lay their eggs under the skin of those who linger too close to their nests for too long.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>brown rat</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This dirty looking rodent is rather large, about two feet in width. It has a long fleshy tail, and is covered in auburn fur. Beady black eyes stare around the landscape, looking for scraps of food where it can. When it feels threatened, it tries to run away, squeaking fearfully.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>brown snake</div> <div>2</div> <div>3</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small reptile with glossy brown scales running the length of a long serpent body. It has large fangs dripping with venom, and a forked tongue that flickers out to understand its surroundings. When threatened, it coils as a warning, before striking with deadly accuracy.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>camel</div> <div>2</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This large mammal is covered in tan fur, with two humps on its back. They stand on all fours with hooves, and can go without drinking anything for weeks on end. It has potential to be docile, but if annoyed, they have a habit of spitting at the nuisance.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>carrion beetles</div> <div>1</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A swarm of beetles that come in a variety of shapes and sizes. All of them favor feeding upon the carcasses of dead animals, other decaying organic matter, or even the occasional living being, should their scent be enticing enough.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>chepelago</div> <div>4</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Eggs</div> </div> <div class="table-row-description">A docile reptile sporting a protective shell, usually seen resting from its long forays into the sea in search for food. This scaled creature grows to a whopping five feet tall. The protective covering that makes up most of its body looks to be made of translucent blown glass. When threatened, the creature is able to retract its head, short tail and all of six flippers into its natural defense. Reflective scales lining its limbs create a mosaic of azure hues that glitter as the large turtle slowly pushes itself along the ground. When they swim, the scales might camouflage them against the ocean, with the shells appearing as large floating bubbles which move unexpectedly fast.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>chicken</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A small flightless bird with varying colors of plumage.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>chimaera</div> <div>5</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large beast with the head of a lion on the front, the head of a goat on its back, and a snake for a tail. It can breathe fire when antagonized, and is quite ferocious.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>chimpanzee</div> <div>3</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This large mammal is of the apes, and is small compared to its bulkier brethren. Contrary to what may be believed though, this creature does not let its size hinder it. It is a very capable fighter if pressed. It is covered in green fur, and stands around three feet.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>clover-foot gecko</div> <div>3</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">Small, traditionally sized green geckos with bright, colourful markings upon their backs, most commonly recognised for their unique clover-shaped feet. They're incredibly fast when they wish to be, being capable of moving across water by using a half-running, half-swimming motion while utilising their splayed, almost comically large webbed feet. Their bright markings allude to their poisonous tongue and, if eaten raw, they could cause vivid hallucinations and fevers.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>coati</div> <div>1</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This rotund animal is typically found in autumnal colors with a paler underside. They have small beady black eyes, rounded ears, and an elongated snout which they use to root through the ground for food. By far the most striking thing about this animal is their long rainbow colored banded tails. They are easily approached, but will nip or scratch with their short claws if frightened.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>cobra lily</div> <div>3</div> <div>3</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A tall, snake-like plant that has evolved beyond its need for roots and can achieve a height about as large as an average person. Blending in seamlessly with its surroundings, it surveys the lands for prey which it lures closer via the delectably sweet scent it produces. Behaving much like the reptile it resembles, it will often swallow small animals whole. When angered, however, its head will flare open similar to a cobra; revealing a crimson coloration to intimidate anything that attempts to challenge it, and several sharp spines that imitate teeth.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>cone snail</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A cone-shaped shell that comes in various colorations and sizes that is home to a snail whose flesh has a distinctly herbal smell. The creature uses a radular tooth that launches out and injects its prey with a neurotoxic venom. When left alone, the larger shells are known for hosting groupings of sticky leaves.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>cougar</div> <div>5</div> <div>5</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large predatory feline with a tan coat and cream underbelly.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>cow</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Milk</div> </div> <div class="table-row-description">This large grazing mammal stands around 5 feet tall, with a large gut in order to digest huge amounts of vegatation. It moos lazily, seeming oblivious to its surroundings. It has white hide with brown markings, and floppy ears on the sides of its large square-shaped head.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>coyote</div> <div>3</div> <div>4</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A skittish canine mammal, this animal is covered in dirty blonde fur. It scavanges the landscape for animals that have already been killed, and has a very complacent demeanor; though it is wild. If tempted it has a fearsome bite.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>crab</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This small crustacean has short dull spines along its body, with large claws, and tiny eyes. It walks sideways along beaches and in grottos.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>cracklesnake</div> <div>4</div> <div>3</div> <div>Yes</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">Concealed amidst jagged splinters of glass is a serpent seemingly made from the same vitreous surface. Its scales are composed of fractured shards, refracting light into a kaleidoscope of colors that turns its very presence into a mesmerizing spectacle. The twin translucent orbs in its head allowing for sight are the only smooth things to be found, for its craggy exterior is mirrored by fangs of broken glass that can be seen when its reflective jaw unhinges. Juxtaposing its deceptive beauty is the hidden lethality only revealed when the creature feel threatened. Its scales often lift to make it appear larger before they are launched as serrated projectiles.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>crocodile</div> <div>5</div> <div>5</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This large reptile is scaled in the color brown all over, residing within bodies of water and attacking fish who swim near. Its teeth are fearsome, and its bite is potentially fatal.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>dazed pterodactyl</div> <div>5</div> <div>2</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A long and narrow-beaked flying reptile with massive blanket-like leathery wings that block out the sky and cast shadows upon the ground below. Their earth-toned markings are coated with a beige dust that seems to find and embed itself into the breathing passages and over the eyes of the beast. They avoid the ground as if they fear it and fly in an unpredictable but sluggish manner.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>deer</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This mammal stands around 5 feet tall, covered in a lovely pale red color. They graze constantly, and watch with skittish paranoia for the many predators who would make them a meal. They stand on hooves, which can be used to kick anyone who might threaten their safety.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>desert mouse</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This tiny rodent has grey fur and a short tail. It squeaks as it scurries underneath brush, trying to find fruit and bugs.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>dew worm</div> <div>1</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Milk</div> </div> <div class="table-row-description">A rope-thick, pale green worm measuring roughly a foot long that is covered in vermillion knobs that drip with a milky dew. This slimy invertebrate coils amongst plant life in order to disguise itself from predators.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>dingo</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">The dog-like creatures are far from your average mutt, they pack a mean bite and are often seen in packs.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>dire wolf</div> <div>5</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A massive wolf with a thick coat of black fur that shimmers with an iridescent purple under the right lighting. Its teeth gleam with a golden hue as it strategically prowls, bearing large fangs and sharp claws in order to ambush its prey.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>dolphin</div> <div>2</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A smooth-bodied mammalian with an aptitude for causing general chaos and havoc while it actively seeks out new ways to amuse itself. It is swift in the water and physically strong, often seen surfing the waves when it is not busy fiddling with shiny things in the water.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>dragon fae</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A small lizard with brightly colored wings like that of a butterfly. They are very friendly, and curious creatures who primarily eat insects but will sometimes eat fruit.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>duck</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A small water bird with webbed feet that quacks.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>eagle</div> <div>3</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">This large bird is equipped with deadly three inch talons. It actively hunts its prey without fear, and screeches loudly when it has been victorious in the kill. If someone comes too close for its comfort, it will hiss.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>elephant</div> <div>4</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This huge mammal stands around ten feet, and is hairless with grey hide. A large trunk of a nose falls almost to the ground, used for many tasks that these beasts complete throughout their lifetime. They are highly intelligent, and majestic, with large flapping ears, and slow movement. They could easily trample any creature not quick enough, or intelligent enough, to stay out of their path.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>elk</div> <div>2</div> <div>2</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This large mammals stands around six feet tall, on large hooves meant for long travel. Long shaggy blue fur covers this creature, right up to its giant, twisted antlers.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>falcon</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A bird of prey with superb vision, a hooked upper beak and strong, grasping feet with sharp talons.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>famished mouse</div> <div>1</div> <div>2</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This diminutive rodent has faded to a pale hue that mirrors the bleached landscape it lives in. Its whiskers, delicate as spider silk, twitch in response to the sudden gusts of wind that whip across the glass expanse. Its body is lean, a product of scarcity, with every contour visible through its translucent fur. Dexterous paws perched at the ends of overlong hind legs have evolved to navigate the delicate terrain via jumping without shattering the ground beneath them and its tail, once plump, now resembles a thin rope with a tuft of fur at the end that flicks rhythmically to help maintain balance while moving.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>ferret</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A long and slender mammal that comes in brown, black, white or mixed furs. They have little claws, a fluffy tail, small round eyes and a button nose. They can be found hunting other burrowing mammals.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>festering bloodtooth</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">Varying in sizes comparable to a pumpkin, this sentient ivory fungus charges around on top of flailing crimson tentacles. It has a funnel-shaped cap where the top surface is dotted with bleeding red droplets; the red fluid irritates the skin for extended periods of time, even after the liquid has been washed off.<br>It wraps its octopus-like limbs around that which it finds threatening in an attempt to weakly choke the life out whatever could be encroaching, but it does not appear to be capable of distinguishing what is actually a threat over what is just something that has moved in its vicinity.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>finch</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">This tiny bird tweets all day long, fluttering with light brown wings around its flock.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>fire ants</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A swath of miniscule red ants. Individually these tiny beasts are warm to the touch but in droves can cause a small animal to overheat, if they do not succumb to these insects painful bites and razor-sharp horns.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>flowering doe</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This female earthen mammal stands around 5 feet tall, covered in a lovely pure white color. Wound around its legs and creeping up its sides are blossoming vines sporting fragrant red and yellow flowers. Their gaze harbors a gentle green glow. These doe seem much calmer than their counterparts, often grazing and lingering with an air of serenity. Curiously, these doe are willing to approach people if they don't appear to pose a threat, though when threatened they would kick their predators with their hooves.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>flying lemur</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A small furry creature no larger than a conventional hand with a banded white and brown tail, almost disproportionately huge eyes, and large wide ears. Its diet is composed of fruit, and constantly looks as though it has been caught in the middle of misbehavior.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>flying squirrel</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This small mammal is rodentlike and chipper, dashing from the ground to the tree in a mad dash to store winter stockpiles. It glides from branch to branch on skin flaps when it needs to cross small aerial distances.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>fogglet</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A tiny pitch black, blob-like creature with smooth almost oily skin and a pointy head. It lacks legs, and moves around by bouncing on its flat bottom. Lastly this creature has well-hidden razor-sharp teeth that it only reveals when its readying itself to bite someone or something.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>frog</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small amphibian covered in bright colors of all sorts. It is very lithe, and chirps soothingly in the background, always staying near water.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>fruit bat</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This animal is small with featherless, leathery wings. It is black all over with large ears and tiny eyes, squeaking as it flies around at night looking for bugs to eat.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>fruit moth</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A giant moth with colorful wings and a fat abdomen. It flutters around seemingly at random, but appears to be attracted to light sources.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>funghog</div> <div>3</div> <div>5</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large mammal with leathery, fungus-covered skin and mycelium-like hair. It has large tusks under its upper jaw, presenting with a large overbite. It squeals and attacks aggressively when threatened.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>fuzzbee</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Honey</div> </div> <div class="table-row-description">This large bee is 3 feet in height, and makes a loud buzzing sound when it flies. It has fur on its body that is very soft, and is used to collect pollens in the air while it flies. It has a face that looks more like a mammal than an insect, with round black eyes with small mandibles and small antenna. Unlike normal bees, they don’t have a queen, but live on their own and only building a hive with a single mate.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>gazelle</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">Agile and graceful, these animals resemble a goat crossed with a deer. They have long ringed horns that gently curve. When threatened, they stomp their cloven hooves or flick their tails as warning flags. When fleeing, they tend to bound with all four legs off of the ground, pronking away in a great burst of speed.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>geodillo</div> <div>2</div> <div>3</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This adapted armadillo is a small, rounded creature that scavenges within the mountainous rubble, deftly tucking itself into a geodesic shape for protection or to hasten its movement through its habitat. It viciously protects its den and stashes carved into the ground or stone. Its dainty head, adorned with pointed ears and a canine-like snout, emerges from a series of overlapping purple glass plates. Delicate ivory streaks embellish its sturdy carapace, giving the creature an almost marble-like elegance.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>giant centipede</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">This large and thick critter has upward to 120 legs, and it has a tendency to bite with their painful mandibles when provoked.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>giant crab</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A massive crab over 9 feet in height with huge pincers. It burrows in the sand to hide.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>giant crystal crab</div> <div>3</div> <div>4</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">These animals are often elusive, burying themselves beneath the sand with only their unique shells emerging above ground. Each one is shaped differently, ranging from auger to conch, yet consistently covering their surfaces are varying types of crystalline coral. Inhabiting these shells are crustaceans with pearlescent carapaces and diamond-like eyes on the ends of twitching stalks. They skitter adeptly across coastal terrains and tend to be quite protective of their glittering, colorful shells even after they have abandoned them to grow a larger one.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>giant dragonfly</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A vibrantly colored flying insect of massive size. Large enough to hunt small animals, it has a long body with an almost metallic appearance and four iridescent wings. They gather around water and move at incredible speeds, producing an almost deafeningly loud buzzing as they fly about.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>giant metallic crab</div> <div>4</div> <div>5</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">These animals are often elusive, burying themselves beneath the sand with only their unique shells emerging above ground. Each one is shaped differently, ranging from auger to conch, yet they are consistently coated in gold, as if deliberately gilded. Inhabiting these shells are crustaceans with similarly metallic-looking carapaces and glowing eyes on the ends of twitching stalks. They skitter adeptly across coastal terrains and tend to be quite protective of their shining shells even after they have abandoned them to grow a larger one.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>giant mongoose</div> <div>3</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A giant version of the common mongoose, with fur of midnight blue and reaching heights of over 5ft. It can usually be heard before it can be seen, its large yellow eyes visible through the brush and a long tail that swishes with plenty of expression. Visibly anxious near the waters edge, they're also surprisingly skittish around loud, deep noises, as though they've learned to fear something, and it's very common for these animals to have large scars across their fur, or to be missing a chunk of tail or ear: a hint of something bigger in the area.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>giant spider</div> <div>3</div> <div>3</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A massive spider over 9 feet in height with huge mandible. It spins webs as traps.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>giant termites</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">These primitive-looking termites are capable of building huge and complex mounds to live in and are a good source of protein.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>gilled bell-trapper</div> <div>1</div> <div>5</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">At first glance, this creature appears to be your ordinary, if massive, mushroom. At least until it starts to move. Extending beneath its cap and partially hidden by a delicate lacy "skirt" of fungal matter are two pale, lanky legs that allow the mushroom to skitter across the ground to chase down its chosen prey - which it considers almost everything. When it catches up after tripping often, it slams down onto whatever unfortunate soul was too slow to outrun it and poorly traps it with its netted veil.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>giraffe</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">These animals have almost deer-like heads, with large long-lashed eyes and hair covered horns. Their head is held nearly fifteen feet off of the ground at the end of an elongated neck that barely bends. Their front legs are longer than their back legs, and their tails have a scraggly brush-like tuft at the end. They are patterned all over with large blocky splotches. When threatened, they can deliver a mighty kick.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>glasshorn antelope</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This starved animal is covered in patches of grey fur, damaged by the inhospitable environment it lives in. It's common to see scars, cuts, and scrapes all over its body, making most of its hide unusable. It has very long, spiraling white horns on its head, seemingly made of glass, and tends to be quite skittish.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>glow frog</div> <div>2</div> <div>2</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large species of frog that can be ridden. They seem to constantly be hopping around the area looking for food. They come in a variety of bright colors, and the designs on their back seem to glow in dim light.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>glowing cave jellyfish</div> <div>1</div> <div>3</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A small bloom of bright cyan jellyfish, floating about in idle search for their next meal. While painful and extremely prone to smacking into things while riding the surf, these small nuisances are generally passive about their business.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>goat</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Milk</div> </div> <div class="table-row-description">Large spiraling horns come out of this animals head, whose eyes are large with slit pupils. It is nearly covered in matted fuzzy pale green fur that is rough to the touch. It can usually be found grazing, and bleating without rhyme or reason.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>goldscale</div> <div>1</div> <div>5</div> <div>Yes</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Eggs</div> </div> <div class="table-row-description">A small serpent that ranges from six inches to a foot long, these slender snakes have scales that look like molten gold and a gentle heat emanates from their bodies. With small black eyes and tiny yellow tongues, each serpent has a pair of feathery bird wings in the center of their body and decorating the tips of their tails. These feathers can come in a wide variety of colors and patterns. The small winged serpents' preferred diet consists of mussels, sea fish, and fruit.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>golimid</div> <div>3</div> <div>1</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A collection of rocks, ranging from small boulders to pebbles all connected and animated by the same multicolored light. Many of them do not necessarily take the shape of any identifiable animal, oftentimes taking the form of an ever-changing arrangement depending on the activity. They are nocturnal, extremely social, and communicate by changing the color and intensity of their light. Primarily ground dwellers, these nonsapient stone creatures move with surprising agility and intelligence, following complex social structures in their communities.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>goose</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A large white water bird that is very territorial.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>gorilla</div> <div>5</div> <div>5</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This large and intimidating ape is covered in dark purple fur, with huge, powerful hands, and enough weight on its body to break a bone or two. Despite its size, is it very fast. These animals travel in packs, and eat fruits.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>gourd dog</div> <div>3</div> <div>2</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This orange creature appears to be a living pumpkin with four stubby legs. The top of the creature occasionally opens up like a lid to reveal a huge mouth, from which a tongue often hangs out. It moves and behaves like a small and very excitable dog.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>grassland fox</div> <div>2</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This mammal seems to be some sort of mix between a feline and a canine. It is rather short, but lithe with lengthy legs. Its red-brown fur flows down to a bushy tail, which has a black tip.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>green snake</div> <div>2</div> <div>3</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small reptile with glossy green scales running the length of a long serpent body. It has large fangs dripping with venom, and a forked tongue that flickers out to understand its surroundings. When threatened, it coils as a warning, before striking with deadly accuracy.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>grey wolf</div> <div>4</div> <div>4</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This canine mammal is a vicious predator, with large fangs and sharp claws for defense. These creatures travel in packs, ambushing their prey with surprising strategy. They are covered in grey fur, that may have many different markings.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>gryphon</div> <div>5</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large beast with the head, coloring, and front legs of an eagle, and the tail and back legs of a lion. They are covered in fur that becomes a mane when fully mature, and have large wings on their backs.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hare</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This mammal is small enough to be held in the arms, and is covered in brown fur. It has long ears, and is very skittish, its first instinct to run at the notice of a predator. A tiny nose is constantly working to understand its surrounding, and large red eyes seem constantly alert.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>harpy</div> <div>4</div> <div>4</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A bestial being with the head of a woman and large wings on its back. It screeches when threatened. It has large talons which it uses to steal from people, often disrupting projects.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>haunting coyote</div> <div>4</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This sickly canine mammal is covered in a pelt of filthy fur, once a mosaic of earthy hues and patterns blending seamlessly with its surroundings, now patchy, pallid, and clinging to its bony frame. Every rib protrudes, and every sharp contour of its body speaks to its constant state of starvation. Tough as it is, there is a feeble grace in each step it takes as it scavenges food from anything it comes across. Black marble eyes are sunken into hollow sockets with a distant vacant gaze, continuing to spend every waking moment in search of its next meal.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hawk</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">This large bird is predatory, and soars the skies searching for their meals. It is black with a sharp white beak, and chirps out high pitched vocals as it dives down for its kills.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hawk owl</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">The large bird, with lovely brown speckled ruffled feathers, and huge eyes, is normally only seen at night. It hoots ominously, searching for small rodents to eat as it sits in a tree.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hedgehog</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A tiny mammal with quills on its back that it can spike if threatened.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hippo</div> <div>5</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">These large semi-aquatic animals have short stumpy legs and long wide bodies. They resemble pigs, but with broader snouts and tiny ears. They look almost friendly until they open their mouth to reveal long tusks capable of stripping the flesh from the unwary. Clumsy on land, they are remarkably agile and fast in the water.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hollow wyvern</div> <div>4</div> <div>5</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This stunted reptile that reaches barely half the height of its counterpart of old has a crocodilian dragon head, dull colorations to its scales, a starved appearance, and is ravenously aggressive to match. Its thin leathery wings are kept flat against its forms as it prowls the labyrinthine shards with haunting voracity, often using its glass-like talons and barb-tipped tails to attack whatever prey it can manage to pick a fight with.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hornbill</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">These birds are often muted in color but with contrasting and vibrantly pigmented bills. Their bills are long and hook downward like a horn, and some bear an additional growth along the top mandible that they use to defend themselves against threats. Their necks are very strong to support their heavy bills, which they wield with a deft precision when eating, hunting, or building nests.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>horse</div> <div>3</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This large mammal can be covered in variety of fur colors with various white markings, and a lengthy mane. It grazes on grass, flicking its long flowing tail lazily. Standing on large hooves, it can easily outrun any other animal in the area, as it can handle the rough terrain much more easily.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>humintling</div> <div>2</div> <div>2</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This leggy creature is about the same height as an elk, though unlike an elk it is taller than it is long. It's "fur" consists of hundreds of mint leaves with one large one on the rump as the tail. Great variation is found among herds of them from catmint to peppermint to name a couple of examples.<br><br>It does not feature any traditional hooves or claws, instead more closely resembling branches. It has a long and slender neck where its head resembles a half oval mask, dark eyes set in. Atop it are horn-like protrusions that are similarly branch-like and from it grow fresh mint leaves. They grow larger as the creatures age. On the back of the neck and shoulders are what resemble vents, open sections where glands can be found. Humintlings produce a near constant humid fog from these glands, that smell strongly of their associated mint. This means wherever they are found you're likely to be met with a fresh scent.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hummingbird</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A thumb-sized bird that is typically very brightly colored and thrives off flower nectar. These tiny, curious creatures are quite fragile and tend to flit very quickly from one spot to another.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hydra</div> <div>5</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A massive multi-headed dragon like beast. The heads join together at a large body which drags itself along with two clawed legs. Reaching behind the beast is a large tail, often sporting another head on the end.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>hyena</div> <div>3</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">These hyenas have speckled coats and, on occasion, even sound like they're laughing.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>incantor</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A medium-sized bird covered in dark feathers of a deep, midnight blue color, with the exception of its talons and wings. These near-translucent wings with their thin, wide shape and vividly bright blue coloration look like they would fit better on a butterfly than on a bird. It has a tendency of singing loud, ringing songs. Wherever this creature goes, a symphony of chirps and squawks follows.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>jadoisguar</div> <div>4</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A rather large beast with the build of a jaguar that has dark green fur with swirling white symbols that flow around its body. It walks on four large paws with retractable claws and has a short but broad muzzle filled with two rows of teeth that drip with plant-killing venom.<br>There are sharper teeth in the front of the cat's mouth and flatter ones in the back. Behind those is a small, almost birdlike tongue and what appears to be a plump, scaled carnivorous plant resting atop it. When eating, the plant opens its trichome-lined maw to swallow whatever the feline aspect has put into its mouth.<br>These two beings have a symbiotic relationship and cannot live apart for long periods of time. The big cat has a sensitive stomach that struggles to digest anything but the outer skin of the parasite, and the plant can't live outside of the cat's stomach, or else it will grow heavy with the overgrowth of scales far too quickly, become unable to move, then shrivel up and die.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>jaguar</div> <div>4</div> <div>4</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This large feline is covered in dark green fur, with swirling white symbols that flow around its body. It seems calm, and complacent, with modest claws and teeth; but the real danger is that poison drips from them. A sickening poison, that kills the plants on the earth that it touches.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>kestrel</div> <div>3</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">These birds of prey are often seen circling high above before diving down for their next meal.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>koala</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">These fluffy creatures are usually seen in treetops, though on occasion they're known to venture down. They have large ears and noses but when angered make terrible screams and growls.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>komodo dragon</div> <div>4</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This reptile is fairly large, with long claws and a tongue that flickers out of its mouth. It stands on all fours, its long scaled tail flicking about on the ground. This creature can climb trees, trying to search for eggs or small mammals to eat. Its bite is poisonous, the saliva it produces full of bacteria.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>kookaburra</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A large brown bird with a white underside, and a long slender beak. It has a loud call which sounds like deep laughter.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>lemite</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A round, fat lemon shaped yellow bug that scurries around on eight legs. It often hangs from lemon trees using its strong retractable feeding apparatus that can be easily mistaken as a lemon stem.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>lemur</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A lanky mammal with a long, bushy, black-and-white ringed tail. It spends a lot of time on the ground, but uses its long tail as a tool in tree climbing. It is extremely territorial. When threatened it will make loud calls to warn its brethren.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>lion</div> <div>4</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">These large wild cats have long muscular bodies and shorter legs. Built powerful and sleek, they move with a prowling gait and strike with a ferocity. Males tend to exhibit impressive manes that serve to make them look more imposing. Females are only slightly smaller than the males, and just as dangerous.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>luminous butterfly</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Honey</div> </div> <div class="table-row-description">A bioluminescent, person-sized insect with a long feeding tube and enormous iridescent eyes. Though docile, these creatures are apt to accidentally smash into different things and are drawn to movement. A small flock of butterflies follows in its wake, drawn by its natural lights.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>lynx</div> <div>3</div> <div>3</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This feline animal stand about three feet tall and three feet in length. It has light tan fur, with black markings on the tips of their ears, and spots along their bodies. It has sharp teeth and claws, and stalks the prey it decides to hunt.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>manatee</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A slow moving, semi-aquatic, hairless mammal which lives in the water. They are very gentle creatures with whiskers on their muzzles, webbed feet, and a fat flap for a tail.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>meerkat</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">These animals have a brindled coat pattern, broad heads, large eyes, and a long tapered tail. They can often be seen standing on their hind legs with their forelegs held close to their body, keeping watch for trouble. When cornered, they fight viciously with sharp little teeth, but most often evade trouble by disappearing into convoluted tunnel systems.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>megarachnid</div> <div>5</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">These strange creatures vary in size from the size of an average person to roughly two stories tall. Shape and leg number vary from creature to creature, but their hunger for living flesh is universal.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>mirebear</div> <div>4</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This monstrously large, seemingly husky, and imposing mammal is covered in thick black hair with contrasting ice blue floral markings that cluster together, often forming larger miredew formations. On two feet it can stand up to fourteen feet tall, and on all fours, around twelve. It roars and groans with great ferocity, defending itself with five inch claws and a deadly bite. The eyes of the mirebear always range in metallic colours.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>mongoose</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This small weasel-like rodent is an expert at catching reptiles. It squeaks with adorably large yellow eyes, and loves to socialize with other beings. It is covered in midnight blue fur, with a long tail that swishes with plenty of expression. Surprisingly, it is a fearless against its prey, standing up to a venomous foe with a puffed out chest and determined eyes.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>monkey</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This small monkey is covered in bright orange fur, obnoxiously screeching and making mayhem as it wills. It eats fruits and vegetation, and is very charismatic and sociable It is easily threatened, and will attack with quick vengeance if required.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>moose</div> <div>3</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large hoofed mammal with brown and long faces. Males have huge sets of antlers, but both genders have a flap of skin that hangs just below the chin.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>mountain goat</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Milk / Wool</div> </div> <div class="table-row-description">An ornery horned, four-legged creature with a thick coat of wool and a permanently annoyed look on its often-scarred mug. It is highly territorial, and when it is not territorial, it is generally quite grumpy on pure principle.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>mouse deer</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This mammal stands around 3 feet tall, covered in a lovely pale red color. They graze constantly, and watch with skittish paranoia for the many predators who would make them a meal. They stand on hooves, which can be used to kick anyone who might threaten their safety.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>mutated raccoon</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">An unnerving imitation of a common mammal with dexterous front paws and long fingers. Rather than four limbs, these specimens can have up to eight, each one tending to a different number. It is longer than its normal cousins, but sports the same black and grey colouration - with a stripe across its face and several along its tail.<br><br>When this horrific morph opens its mouth to feast, it expands to an absurd degree. The corners of its maw stop just before its shoulders begin, with the top half of its neck lifting open with the top of the head. Inside, there are far too many teeth pointing every which way.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>mycelodile</div> <div>5</div> <div>5</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large, mutated crocodile covered in brown scales. Oddly enough, it is averse to diving under the surface of the water, a phenomenon likely caused by the variety of mushrooms that dislocate its scales and grow freely from the animal. It is extremely aggressive and appears emaciated, armed with fearsome teeth and a potentially fatal bite.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>needlepoint lizard</div> <div>2</div> <div>4</div> <div>Yes</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">Measuring only an inch in length, this little lizard is a radiant shade of gold that glimmers like a sliver of sunlight caught in motion. It has brown beady eyes and a tongue often mistaken for a fine golden thread when unfurled. Each of its skittering legs end in a tiny, hook-like structure that allows it to cling effortlessly to the glassy surface of the fissure it inhabits. While it may look to be harmless, this diminutive reptile is deceptively dangerous and quite territorial. Its bite delivers a potent toxin, swift and insidious, that causes a pain almost indistinguishable from the electric shock of lightning.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>octipillar</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A long winged eight-legged worm-like creature that tends to be found slithering around trees. This animal possesses a pair of small wings that flutter as it moves around yet it is not clear if the wings are strong enough to achieve flight.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>octopus</div> <div>3</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">An eight-tentacled creature ranging from very small to the size of a large dog, they are shockingly smart and are frequently seen to be using rudimentary tools or even making small personal piles of shiny rocks.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>oozing elk</div> <div>3</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This large mammal stands at around six feet tall and is covered in dingy, shaggy light blue fur from its large hooves to its twisted antlers. It is gaunt, frequently seeming disoriented and in a ravenous zombie-like state, unaware of its surroundings as it constantly drools a thick red substance. Spores and oozing mushrooms grow from its flesh in painful-looking clusters that do not seem to bother the elk, its apparent focus appearing to be exclusively on protecting and eating the gigantic mushrooms eerily similar to the ones that grow on its back.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>orange snake</div> <div>1</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small reptile with glossy orange scales running the length of a long serpent body. It has large fangs dripping with venom, and a forked tongue that flickers out to understand its surroundings. When threatened, it coils as a warning, before striking with deadly accuracy.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>orangutan</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This large mammal is of the apes, and is pretty bulky with long lanky arms. It is covered in shaggy orange fur, and it has very expressive facial features. They tend to be shy and gentle.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>orbus pig</div> <div>2</div> <div>2</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">Unexplainably circular and large, it appears this giant round pig can be ridden but very, very slowly. They don't appear particularly hostile but do bump into things due to their sheer size. All Orbus Pigs feature a bow like bit of skin above one eye in various colours.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>ostrich</div> <div>2</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Eggs</div> </div> <div class="table-row-description">These flightless birds have a round body with bold black and white coloring and long fluffy looking feathers. Their legs and necks are of great length, boosting them to a height of nearly nine feet. When moving, they can run at impressive speeds but will defend themselves with powerful kicks with their taloned two-toed feet.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>otter</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A small furry brown mammal with a long body, little claws, and small round dark eyes with a button nose. It has webbed toes that help it swim to catch fish.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>pale megarachnid</div> <div>4</div> <div>3</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">These arachnids vary in size from being about as tall as the average person to roughly two stories tall. They have powder-white exoskeletons and fuzzy hair of the same color all over their robust bodies. Their temperament varies from creature to creature, but generally they are territorial, and they favor the hunt of fogglets.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>panda bear</div> <div>2</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This ursine creature is large and covered in black and white fur. It is particularly slow and lazy, to such an extent that it is a miracle that it have not been claimed by extinction or evolution yet.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>panther</div> <div>4</div> <div>5</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This feline is large and as black as a shadow, stalking along the foliage like a silent assassin. It has fearsome claws, and sharp teeth, with large slitted yellow eyes.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>parakeet</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">This large colorful bird is quite talkative, and beautiful. If tempted to become docile, it would not be a difficult task, as these birds are very sociable. It has white around its small eyes, a large curved beak, and feathers of all colors on its body. They love fruits and nuts, and can even be affectionate.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>peacock</div> <div>3</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A large flightless bird composed of green and blue plumage. Their tails splay in a fan pattern to show off their unique feathers which have an eye of yellow on the tips.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>penguin</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A 6-foot-tall bird with a red hue that swims faster than it walks. Its large eyes allow it to see clearly in the deep ocean. Although its beak may be used as a weapon, the penguin prefers to either flee or intimidate the danger. The flesh obtained from a penguin has an interesting taste.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>pheasant</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A large, dramatic bird, approaching nearly 3 feet. The male is more boldly colored with a darker, mottled body, a white collar, or ring, around his neck, and an iridescent blue-green head with a bold red patch around the eye. </div> </div> <div class="table-row"> <div class="table-row-data"> <div>pig</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A highly intelligent large hairless mammal with even toes, and a short snout to overturn earth in search for mushrooms and insects. They make snort and squeal sounds to express their mood.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>pink river dolphin</div> <div>2</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A powder puff pink dolphin that thrives in freshwater rivers, sporting a long beak, a short dorsal fin, and an overall boxy body shape. At first glance, they are exceptionally friendly and social creatures, coming to the shore to cajole passersby for interaction. If anything approaches the dolphin, it will bite them and attempt to drag them to the bottom of the river.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>plaslug</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">Thriving in decomposing aquatic plants, this green creature can be seen sluggishly roaming through the dying plant matter, eating whatever it lays its slimy foot on. Looking at it from the bottom, it spreads out into a large leaf, complete with veins and ridges. On its head, it has two antennae that wiggle and move about, seemingly utilized as eyes.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>polar bear</div> <div>4</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This large, seemingly husky, and imposing mammal is covered in thick white hair with brown markings. On two feet it can stand up to nine feet tall, and on all fours, around seven. It roars and groans with great ferocity, defending itself with three inch claws, and a deadly bite.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>prairie dog</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">These small rodents burrow holes into the ground, perking up to view its surroundings for predators and food sources, and are herbivorous.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>prismatic fish</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This shimmering fish can often be found in small schools of rainbow colors. Measuring anywhere from two to four inches in length, it strongly resembles male beta fish with long flowing tails and top fins. Its side fins are stiff and pointed at the tips for the purpose of giving this tiny fish the ability to leap out of the water and flitter like dragonflies across the surface. Much like a flying fish, it leaps from the water to snap up insects, or berries, before disappearing down into the deeper waters. While during the day it is vibrantly colored, at night under the moonlight it glows dimly with an eerie aura.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>puffin</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Eggs</div> </div> <div class="table-row-description">A squat auk with a large bright-orange beak and black-and-white plumage. It tends to hop on both webbed feet when it waddles on land, but shows considerable dexterity when moving through water.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>purple snake</div> <div>2</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small reptile with glossy purple scales running the length of a long serpent body. It has large fangs dripping with venom, and a forked tongue that flickers out to understand its surroundings. When threatened, it coils as a warning, before striking with deadly accuracy.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>quail</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">This large bird is ground-bound, unable to fly anywhere. To compensate, it is very quick, able to run off at a moments notice. It is covered in dull brown feathers.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>rabbit</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This mammal is small enough to be held in the arms, and is covered in tan fur. It has long ears, and is very skittish, its first instinct to run at the notice of a predator. A tiny nose is constantly working to understand its surrounding, and large red eyes seem constantly alert.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>raccoon</div> <div>2</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A very adaptable mammal that will use dexterous front paws and long fingers to find and feast on a wide variety of fare. It is primarily grey but has a black stripe across its face, and a striped tail.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>rattlesnake</div> <div>3</div> <div>5</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small reptile with glossy brindle scales running the length of a long serpent body. It has large fangs dripping with venom, and a forked tongue that flickers out to understand its surroundings. When threatened, it coils as a warning, before striking with deadly accuracy.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>ravaging guardian</div> <div>4</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A worm-like creature warped by starvation and disaster designed for little more than destruction and consumption. Glass shrapnel protrudes from its leathery body as it burrows endless labyrinthian tunnels underfoot in search of anything foolish enough to rattle the glass above it. Its pale skin festers with sores from the magnified sun above that burns it relentlessly when caught at the right angle. Determining which end is which is difficult until it opens its segmented maw and displays countless rows of countless teeth which rip and shred both glass and flesh.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>raven</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A scrappy black bird that will sometimes give gifts of shiny objects to those who befriend it.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>ravenous goat</div> <div>4</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">Disguntingly thin, this mountain goat has an unwavering hunger, its wiry frame and gleaming eyes resonating with an insatiable drive to consume all in its path, be it foliage, forgotten baubles, and particularly pieces of thunderstone - almost obsessively so. Armed with agile hooves and formidable jaws, it relentlessly devours materials without pause, while its fur has taken on a cactus-like texture, adding to its formidable visage.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>red snake</div> <div>2</div> <div>3</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small reptile with glossy red scales running the length of a long serpent body. It has large fangs dripping with venom, and a forked tongue that flickers out to understand its surroundings. When threatened, it coils as a warning, before striking with deadly accuracy.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>reef fish</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A small and extremely colorful icthyian well-adapted to the many colors and conditions of the shallow reefs. Its fins are suited for the eddies of shallow water, capable of short and agile bursts of speed.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>reindeer</div> <div>2</div> <div>1</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This hearty animal is covered in deep creamy brown fur. They graze constantly, and watch with skittish paranoia for the many predators who would make them a meal. They stand on hooves, which can be used to kick anyone who might threaten their safety.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>rhinoceros</div> <div>4</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large, herbivorous mammal identified by their characteristic horned snout. They are heavily territorial and will charge at anything perceived as a threat.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>rusageist </div> <div>5</div> <div>5</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This looks like a gaunt skeleton recently disinterred from the grave. What lips it has are tattered and bloody. Unclean and suffering from suppuration of the flesh, it gives off an eerie odor of decay. It has the appearance of a large, gaunt man with the head of deer skull.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>sand leviathan</div> <div>5</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">Resembling a monstrous fusion of a crocodile and a stingray, this enormous creature glides beneath the surface of the sand and shallow waters, concealed from unsuspecting prey. Its hardened, mottled hide is adapted well to harsh sunlight and sandy terrain, offering both protection and camouflage.<br><br>These beasts are as comfortable in water as they are on land. It hunts by sensing the vibrations of movement above, lunging with terrifying speed to strike at its prey with its whip-like tail tipped with venomous barbs before latching on with a mouth full of razor-sharp teeth. Often, the only indication of its approach is its dorsal fin sticking out of the sand as it hunts.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>sarconid</div> <div>3</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This lumbering 9-foot long monster trundles and thuds on massive legs, covered from snout to tailtip in absurdly dense scales too fungus-laden to be of any use. Its cloudy eyes glimmer like lights in the dark, amplified by the sonorous boom of its slow plod through life. It almost appears to be a beast from another era entirely.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>sasscat</div> <div>1</div> <div>5</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This small cat is the size of a domestic kitten, and is covered in varying shades of pink fur that seem to become more pink the longer you stare at it. It is highly aggressive, but is mostly harmless. They tend to make independent but affectionate pets, though they may be considered high-maintenance to keep pleased.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>screwhorn antelope</div> <div>3</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This hearty animal is covered in grey fur. They have very long white spiralling horns on their heads, and are very skittish.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>seagull</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">This sea bird is a dark blue, and is often seen scouring the ocean for fish to snatch from the water. It has an average beak and is quite spritely in personality, on typical terms.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>sentinel of sorrow</div> <div>3</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A solemn bird of prey of purplish feathers trimmed in gold, these sentinels of sorrow are a rare sight. Its owlish face rests beneath two darker feathered crests that closely resemble horns and sports solid golden eyes that mirror deep wisdom. While usually aloof, upon sensing threats they exhibit unwavering loyalty to their kin, both living and departed, guarding them with unyielding dedication. Their flights can be infrequent yet awe-inspiring, embodying a mesmerizing blend of grace and power. When these majestic creatures take to the sky, their three pairs of wings crafted from iridescent crystal catch the light, casting delicate patterns upon the landscape beneath.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>serrated crab</div> <div>2</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A crystalline crustacean that makes its home along the shoreline. Its thick, pearl-coloured exoskeleton covers an oblong body. Fragments of gleaming glass protrude from its carapace, making it a sight to behold in the sun, but only from a good distance away.Four spider-like legs adorn the creature's sides, giving it a height of around one foot. Geode-encrusted joints link each section of its limbs together till they end in a glassy point that digs into the ground it walks on. Along with its legs, the decapod sports two massive claws that span about half the length of its body. The same glassy shards that litter its upper body can be found inside the prominent pincers.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>shardhog</div> <div>1</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A tiny mammal with detachable prickly spikes on its back, this creature is one of the less harmful creatures of the glassland, having adapted surprisingly well by developing the ability to eat crystal. This allows it to burrow in the new crystalline landscape, and more remarkably, to grow quills of the same crystalline material on its back. Its young tend not to have the glassy spikes, remaining fluffy and soft through their youth until their diet begins to enact the change to their natural defenses.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>sheep</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Milk / Wool</div> </div> <div class="table-row-description">This grazing mammal is covered in thick, fluffy white wool. It bleats happily, usually while it's within its herd. Its face is black, as are its legs. They stand on sturdy hooves.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>shrew</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A small furry mammal with an elongated nose, and very sharp teeth. It is a voracious hunter, feeding on insects and other animals. </div> </div> <div class="table-row"> <div class="table-row-data"> <div>siren</div> <div>5</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">These are the graceful birds which nest within the gleaming grove. Caught somewhere between songbird and swan, their small bodies and elegant necks are shrouded in sleek, iridescent feathers that catch the light as they soar. Longer, lacey pinions trail behind them, sprouting from their flawless tail fans. Matching feathers form an opulent crest upon their heads. A needlelike beak allows them to feed from the nectar of the gleamweave flowers, while raptorially sharp talons promise pain to those who earn their ire. Each member of the 'chorus' possesses an otherworldly, soprano voice that echoes angelically throughout the treetops. They sing in perfect, mesmerizing harmony - capable of casting a trance over their audience.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>sloth</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A slow moving hairy mammal with long toes that help it clasp to branches.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>snaggleweed</div> <div>3</div> <div>5</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A collection of thorny vines taking a shape similar to a starfish that lurks silently on the ground. About five feet wide, it primarily hunts small animals by injecting them with venom through their thorns and cocooning its prey with its body for consumption. A sting from one of these is not generally fatal but is extremely painful, leaving a radiating hot sting that can last for several days.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>snapdragon</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A plant creature that presents itself as a bulbous flower on plant stems and branches with a head that appears as the bloom. Their petal-like snouts are lined with several rows of razor-sharp teeth that deliver a long-lasting sting. They come in a variety of vibrant colors and sizes, generally only growing to be about as big as a small dog, camouflaging as a group as flowers in the clusters they assimilate into. They are group hunters, oftentimes living in small packs and chittering to communicate.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>snaphog</div> <div>3</div> <div>5</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Milk / Wool</div> </div> <div class="table-row-description">Viciously territorial, these hogs sport long, protruding canines and strong jaws which they clack together to herald their arrival. A layer of cream or gray colored fur helps insulate them from the heat of the jungle. They stand on small hooves, but their narrow legs are strong enough to support their stocky bodies, which stand at around three feet at the shoulder. Though they usually feed on fruit, these animals are omnivorous and tend to gather in large packs which can quickly prove deadly when they attack in groups.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>snareberries</div> <div>1</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A swarm of insects with a plump, berry-like shape and a distinct indigo hue. They cling to bushes in clusters to feast on the leaves and are likely to attack anything that disturbs them. They bite with gnashing teeth and leave stinging, rash-like marks.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>snow leopard</div> <div>4</div> <div>4</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This large feline has long, thick fur, with the base color varying from smoky gray to yellowish tan, with whitish underparts. They have dark grey to black open rosettes on their bodies, with small spots of the same color on their heads and larger spots on their legs and tails.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>snowy owl</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">The large bird, with lovely white ruffled feathers, and huge eyes, is normally only seen at night. It hoots ominously, searching for small rodents to eat as it sits in a tree.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>spider monkey</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large, disproportionately long-limbed monkey with dark fur and a prehensile tail. They are social animals and prefer to live in large troupes. Primarily feeding on fruit and insects, they commonly appear unusually thin and aggressive, as if struggling to succeed in a harsh environment. Though it varies from monkey to monkey, some of them sport various parasitic mutations at the hands of their ecosystem; vines that weave through their fur or carnivorous plants from their surroundings choosing the very creatures as their host.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>spinosaurus</div> <div>5</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A massive, semi-aquatic reptile with a long, narrow snout and a flexible, ridged sail down the length of its back. The creature has a sturdy and mostly horizontal posture, squat back legs, a pair of small arms, and a fatty eel-like tail. Its arms and paddle-like feet are capped with sharp claws and its maw is lined with conical teeth.<br>The colors on its scales are mostly muted, allowing it to camouflage well in muddied water and plant life.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>spore cloud</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A thick cloud of mushroom spores that is dense enough to be difficult to see through and even harder to breathe in the presence of; potentially causing bouts of euphoria or hallucinations. These clouds can be massive, large enough to envelop entire stretches of forest as they drift aimlessly until they dissipate on their own or are disrupted. The mushrooms that bloom from these clouds are not picky on where they grow, taking up residence on anything living, dead, or in the middle; including stones.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>sporic fuzzbee</div> <div>2</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This large bee sports a few feet in height and makes a stifled buzzing sound when it flies. The soft fur on its body is constantly deeply saturated in a powdery substance that lacks the usual sweetness of pollen, betraying the sporic nature of the residue. It has big round eyes that look more mammalian than insectoid, though it still dons small mandibles and antennae. The spores gather so thickly in the insect's fur that it struggles to fly, often opting to walk instead, which leaves it open to becoming easy prey for other plants or animals. When threatened, they have little means to fight back, so they will usually resort to ramming their bodies into their pursuer, releasing a cloud of spores and confusing their opponent.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>spring crane</div> <div>2</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Eggs</div> </div> <div class="table-row-description">A graceful bird that wanders around, picking out small bugs and critters from the soil and in shallow water pools. It has pale white feathers, a red crested head, and black-tipped wings.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>springe fowl</div> <div>2</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A bird of prey whose wings are woven vines that it sends out and uses to traverse the forests and ensnare its meals. It has coarse marbled crimson and green plumage and a broad bill. The inside of its mouth is equally vibrant to the rest of it, a purple tone with strange markings that mimic the veins of a pitcher plant's interior.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>stalk spider</div> <div>3</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This docile spider stands between fifteen to twenty feet tall with extremely long legs and a surprisingly small body. Its legs are almost identical to bamboo, and it makes little to no noise as it moves among the bamboo stalks with ease.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>starfish</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A bottom feeding creature with anywhere from four to eight limbs. It travels quite slowly, and hardly appears to pay much mind to its going ons aside from immediate threats and tasty looking clams.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>stoneraptor</div> <div>2</div> <div>2</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large flightless construct organically born from stone and heat. Their leathery, stonelike skin hides away extremely hot magma that composes their interior, cracked in some places and imbued with glowing runes of an unknown language on smoother patches of stoneskin. Their eyes, and the inside of their beaks glow a bright fiery yellow.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>stork</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">These birds are tall, with long legs and an impressive wingspan. They tend to hunt in the shallows, wading in the water and striking with long dagger-like beaks. When at rest, they hunch slightly but can extend their neck to add to their impressive height.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>swarm of bees</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Honey</div> </div> <div class="table-row-description">A swarm of a hive of insects with black and yellow stripes. They can sting only once before they die, but will do anything to protect their queen.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>swarm of fireflies</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">Tiny bugs flitter through the air, lighting up the fog with a sea of tiny specks of light.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>swarm of gnats</div> <div>1</div> <div>2</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A swarm of traveling pests almost too small to see but too annoying to ignore. They constantly swarm and bite, proving an endless nuisance for weary travelers.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>tan wolf</div> <div>4</div> <div>4</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This canine mammal is a vicious predator, with large fangs and sharp claws for defense. These creatures travel in packs, ambushing their prey with surprising strategy. They are covered in tan fur, that may have many different markings.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>tapir</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A mammal that looks a lot like a pig but has a small short trunk and is much more skittish. It is a very shy animal that prefers to remain unseen, and is mostly herbivorous.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>tea puff</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A little spherical creature that grows to no bigger than half a foot in size. They're extremely soft and are various shades of light green. They have little black eyes that watch the world around them and seem to bask in the sun for energy. During good weather they can be seen drifting about on the breeze but like to settle under the cover of nearby bushes during poorer weather.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>therizinosaurus</div> <div>3</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A lumbering bi-pedal, six-tonned feathered maniraptoran creature with a long neck. Its small, beaked head stands tall at the height equivalent of approximately two people stacked on top of one another. It has a robust stomach and a body coated with sparse feathering; Its tail is half the length of its neck and it has two arms with a set of three digits each, every one of them carrying a gigantic, scythe-like claw bone.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>tiger</div> <div>5</div> <div>5</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large muscular predatory cat with orange fur on the back and a white underbelly. It has black stripes all over the body to help it camouflage in brush.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>tipitiwitchet</div> <div>4</div> <div>4</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>Yes</div> <div>Honey</div> </div> <div class="table-row-description">Appearing at first glance to be an unusually large venus fly trap, this ambush hunter spends much of its time lying in wait for prey in overhead locations where they commonly make nests or hives. Their main body appears to be the large toothed bloom, their limbs consisting of vine-like tendrils and shockingly enough, a pair of translucent wings. Entirely blind, they rely on sound and touch to detect prey, and can frequently be observed attempting to consume creatures much larger than themselves.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>toad</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A small amphibian with bumpy skin. It sits on lily pads or in brush and croaks, lapping up bugs in the air with its tongue. It hardly moves as it is very fat, but when it does move, it hops short distances.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>tortoise</div> <div>1</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A large reptile that has a hard shell on its back. It can live for many years.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>toucan</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">This large bird making a curiously melodic call, though it is extremely loud. The majority of its feathers are black with a sudden splash of color on its face and beak. It also looks like a fruit, but the large beak is actually ideal for eating it instead of being it. They are sociable, but less so than others of its kind.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>turkey</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Eggs</div> </div> <div class="table-row-description">A large flightless bird composed of brown and white plumage. Their tails splay in a fan pattern.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>turtle</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">This creature is slow moving and small, usually found by bodies of water. It has a hard shell that it hides in if threatened by predators, but it can pack a nasty bite with its sharp beak if need be. It has green skin and a brown shell.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>venus fly mouse</div> <div>2</div> <div>4</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A strange, sentient plant only over a foot tall that thrives in humid and dense environments. It stands on two legs made from thin vines that ooze small amounts of sticky sap that allow them to climb surfaces vertically. They have no neck, no eyes, just the flower of a fully bloomed venus flytrap, the only difference being that its cilia are sharper and sturdier, like teeth. Behind it trails a thin tail that bares a resemblance to a sundew plant. Coming in contact with the tail may leave one in a world of pain, the sticky nectar coming from it able to cause a searing, stinging sensation.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>vibat</div> <div>2</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This small critter resembles a bat in form though with smaller ears. Unlike a bat though, you would have to be blind to miss it in flight despite its eerie quiet as not only is it bright orange but there is also a slight glow to it. When at rest, the animal prefers to hide among vines trying its best to disguise its bright colors. For the most part, these creatures try their best to avoid contact with others.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>warped hedgehog</div> <div>1</div> <div>4</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A fleshy, twisted creature covered in barbs that function as mosquito-like tubes. It is highly territorial and irrationally ill-tempered. Despite its sickly blue coloration and misshapen body, it moves with an alarmingly fast speed.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>warthog</div> <div>3</div> <div>5</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">The mammal has large tusks under its upper jaw, which consists of a large overbite. It squeals and attacks aggressively when threatened, and is covered in a thin layer of black, wiry hair.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>waterwheel</div> <div>4</div> <div>2</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A long, watery vine that makes its home in plant-rich waters as one of the few that can sustain itself within them. It cuts through the water much like a serpent, with an excess of leaves that come together at the front of its "face" to form a bulb like a snout. Upon closer inspection, it would become clear that this vine is comprised of innumerable little stems that end in jaw-like leaves that can grasp onto anything it makes contact with. It swims freely, without any need to root itself into the earth, collecting smaller prey in its several spiny maws as it goes. It does not usually attack unprovoked, but when faced with a larger opponent, it will tangle itself around and dig its planty teeth into whatever flesh it can reach.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>weasel</div> <div>1</div> <div>1</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small furry brown mammal with a long body, little claws, and small round dark eyes with a button nose that hunts other burrowing mammals.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>weeping vineling</div> <div>1</div> <div>1</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>-</div> </div> <div class="table-row-description">A plantlike hummingbird donning an emerald and crimson coloration. It is most active in the evening and prefers taking cover in thick foliage. Instead of birdsong, it sings startlingly believable cries of melancholy. Mimicking a masculine adult voice, it alternates between wails of sorrow and pleas for help. Most often found alone, they do not seem to sing to communicate with one another, instead yearning for people.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>wetlug</div> <div>2</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A low-to-the-ground, amphibious lizard that spans roughly the length of half of the height of the average person. It has a flat, wide head that narrows into a pointed snout and raised eyes capable of peering out over the surface of water when submerged below. Its lower jaw carries no teeth, but its upper jaw is lined with tiny gripping nubs. The creature has four stout and chubby legs and a modestly sized tail that has the hint of a membranous fin.<br>Light earth-toned scaling details its otherwise smooth, slick skin that is kept in a constant state of moisture.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>white snake</div> <div>2</div> <div>3</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A small reptile with glossy white scales running the length of a long serpent body. It has large fangs dripping with venom, and a forked tongue that flickers out to understand its surroundings. When threatened, it coils as a warning, before striking with deadly accuracy.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>wildebeest</div> <div>2</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">Resembling a mix between a cow and an antelope, wildebeests have heavy forequarters and a broad muzzle. Their faces are almost doleful in expression, with a slight curve to their nose. Horns erupt from the top of their head, split in the center like a parting in hair. They swoop down and then curve back up. Their tails are long, with a brush-like tassel on the end.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>wolfdog</div> <div>2</div> <div>3</div> <div>No</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A furry canine with varying shades of earthy coats. They are vicious if cornered and are quick to snap at small animals, meat, or bone scraps.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>woodland fox</div> <div>1</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">This mammal seems to be some sort of mix between a feline and a canine. It is rather short, but lithe with lengthy legs. Its red-brown fur flows down to a bushy tail, which has a white tip.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>wyvern</div> <div>5</div> <div>5</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">A large reptile with a crocodilian dragon head, and webbed leathery wings. It has a barbed tail tip that it can use to attack, and large talons on all four feet.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>yikeet</div> <div>1</div> <div>3</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>Eggs</div> </div> <div class="table-row-description">A pigeon-sized bipedal reptile with red fur-like feathers. It sports leathery wings and is capable of gliding short distances, but is not capable of full-fledged flight. They are adept climbers, making good use of their hooked snout and claws. It is aggressively curious, as well as prone to getting itself into various kinds of trouble, and its cry sounds like yi-yi-yi.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>zebra</div> <div>3</div> <div>3</div> <div>No</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>Yes</div> <div>-</div> </div> <div class="table-row-description">These equines bear distinctive stripes on their coat that helps them to confuse predators while in herds. When threatened, they will snap with flat teeth or turn to deliver a devastating kick. They are hardy animals that stand about five feet at the shoulder and can run for great distances at a moderate speed.</div> </div> <div class="table-row"> <div class="table-row-data"> <div>zogii</div> <div>1</div> <div>2</div> <div>Yes</div> <div>No</div> <div>Yes</div> <div>No</div> <div>No</div> <div>Honey</div> </div> <div class="table-row-description">A large two-foot-long insect with green and yellow fur, large eyes and four legs. It possesses the wings of a bee and has a small mouth. It can usually be found nibbling on something and it can both fly and walk.</div> </div> </div> </div> </div> </div> </div> </div> </html> user/lorantine.txt Last modified: 2026/02/23 02:36by lorantine