- v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
- Use this page to report any issues related to the migration.
Difference between revisions of "Random creature profile"
m (→List: fix some apparent sloppiness) |
(Updated for Lua release) |
||
| (25 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
{{av}} | {{av}} | ||
| − | {{ | + | {{Minorspoiler}} |
| − | This is a list of '''random creature profiles''' ('''RCPs''') which are used by procedurally generated creatures. RCPs | + | This is a list of '''random creature profiles''' ('''RCPs''') which are used by procedurally-generated creatures. RCPs typically use body parts from <code>body_rcp.txt</code> instead of <code>body_default.txt</code>. |
== Overview == | == Overview == | ||
| + | RCP stands for "[http://www.bay12forums.com/smf/index.php?topic=30026.msg831163#msg831163 random creature profile]". RCP is a [[Lua scripting|scripted]] [[raw]] template that defines the basic body, tissues and body attacks of a random creature before it receives [[Lua scripting#Tweaks|further randomness]] (three-eyed, wings of stretched skin, external ribs, uniform elemental composition, etc). Most amphibian, mammalian and reptilian RCPs have humanoid variations of themselves, described as "in humanoid form" or "{{Tooltip|twisted into humanoid form|If evil.}}". There are 243 standard RCPs and 81 humanoid variations, which brings the known total to 324. | ||
| − | RCP | + | The RCP of a randomly generated creature can be identified by its description. Many RCPs have identical names with normal [[creature]]s (e.g. [[albatross]]), although they are entirely unrelated; other RCPs feature animals that don't exist anywhere else, such as zebras. Some RCPs have inherent abilities like flight or [[web]]bing. |
| − | + | [[Night troll]]s and [[bogeyman|bogeymen]] only use the generic "humanoid" RCP, and werebeasts use the humanoid animal forms. Primates, hexapods, octopods and decapods are unique to beast-like [[experiment]]s, while armless bipeds, wyrms, and the generic "snake" and "worm" RCPs are unique to failed experiments. | |
| − | [[ | + | == Technical details == |
| + | {{main|Lua scripting}} | ||
| + | |||
| + | Random creature profiles can be found in ``vanilla_procedural/scripts/``. By adding data to the corresponding tables, it is possible to [[mod]] in new random creature profiles. | ||
| + | |||
| + | This [https://nm.reddit.com/r/dwarffortress/comments/kq86x5/i_made_some_calculations_towards_determining_the/gi2l7py/ explanation from Toady], shared by Meph, goes into more detail on how procedural creature generation works: | ||
| + | |||
| + | <blockquote> | ||
| + | The ``body_rcp.txt`` file has the definitions it expects for bodyparts. (rcp stands for "random creature profile") The main thing is that the base "animal" word is doing most of the heavy lifting in terms of making the descriptions evocative, so the rcp's don't end up mattering that much. There are little internal definitions for each animal word, about 230 of them. If we ignore that, then we're more just working with "feathered quadruped" and so forth. | ||
| + | |||
| + | Example of a random creature profile (for the elephant type): | ||
| + | |||
| + | <syntaxhighlight lang="lua"> | ||
| + | random_creature_types.MAMMAL_ELEPHANT={ | ||
| + | name_string="elephant", | ||
| + | tile='E', | ||
| + | body_base="QUADRUPED", | ||
| + | c_class="MAMMAL", | ||
| + | must_have_tail=true, | ||
| + | must_have_elephant_trunk=true, | ||
| + | min_size=500000, | ||
| + | weight=14 | ||
| + | } | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | So, hmm, perhaps the base and class lists are relevant here... | ||
| + | |||
| + | * classes (``random_creature_class``): mammal, chitin exo, fleshy, amphibian, reptile, feathered reptile, avian, uniform (like 'composed of iron') | ||
| + | |||
| + | * bases (``body_base_fun``): amorphous, insect, insect larva, spider, scorpion, ten legged, eight legged, worm, no limbs, quadruped, snake, humanoid, two legs + no arms, quadruped with front graspers (like a monkey) | ||
| + | |||
| + | The [[Lua functions#RCP Parameters|flags]] just force certain RCP additions, and prevent others from happening. For instance, the "slug" profile has "cannot have shell" because a slug with a shell is confusing. | ||
| + | |||
| + | Ah, here we go. The RCP are used via the "body tweak" system. A body can have a tweak from category one, a tweak from category two, and an attack tweak, respecting its profile flags. | ||
| + | |||
| + | * Category one tweaks (``options.btc``): wings, flightless wings, tail, proboscis, trunk, shell, antennae, head horns, large mandibles, twisted into humanoid form, six legged, eight legged | ||
| + | |||
| + | * Category two tweaks (``options.btc2``): hair, feathers, scales, exoskeleton, skin, skin/bones, no eyes, one eye, three eyes, beak missing, nose missing, external ribs, lidless eyes, skinless | ||
| + | |||
| + | * Attack tweaks (``options.attack_tweak``): tail stinger, insect stinger, blood proboscis, fire, webs, breath (trailing flow), breath (glob), breath (undirected), secretion, poisonous blood, poisonous bite | ||
| + | |||
| + | That material list (``random_creature_material``) looks almost right - here's the official list of variables: ash, mud, vomit, salt (powder), grime, snow, water, steam, flame, amber, coral, green glass, clear glass, crystal glass, charcoal, coke, salt (solid), ice, mineral (any), soil (any), gem (any), metal (any) | ||
| + | |||
| + | The "any" materials can't be "[[Inorganic material definition token#SPECIAL|special]]", but there don't appear to be other restrictions. | ||
| + | There are various other implicit flags on these things when it comes to werebeasts etc. "humanoidable" and "beast", for example. So all night creatures require "humanoidable" and werebeasts require "beast" on top of that. Which is why we don't have wereblobs or even wereserpents. | ||
| + | </blockquote> | ||
== List == | == List == | ||
| + | In ASCII mode, nearly all RCPs use specific uppercase or lowercase letters if the monster type does not use a fixed tile, such as '&' for demons. Lobsters uniquely use the '¥' sign instead. RCPs with humanoid versions are '''bolded'''. Humanoid forms use the same tile as their standard counterparts. | ||
| − | {{columns-list|colwidth= | + | Capitalization denotes body size. In most cases, anything larger than a [[dwarf]] (60,000) uses an uppercase letter. Only uppercase letters are shown here. |
| − | * Albatross | + | |
| − | * Alligator | + | In-game, the tile color is determined by the creature's external color modifier. If it does not have a color modifier and is not skinless, it uses the outermost tissue layer's default material color. If it is skinless, it is displayed in dark red (4:0:0). |
| − | * Anaconda | + | |
| − | * Ankylosaurid | + | {{columns-list|colwidth=15em| |
| − | * Ant | + | * {{Tile|A|7:0}} Albatross |
| − | * Anteater | + | * {{Tile|A|7:0}} '''Alligator''' |
| − | * Antelope | + | * {{Tile|A|7:0}} Anaconda |
| − | * Antlion larva | + | * {{Tile|A|7:0}} Ankylosaurid |
| − | * Ape | + | * {{Tile|I|7:0}} Ant |
| − | * Aphid | + | * {{Tile|A|7:0}} '''Anteater''' |
| − | * Armadillo | + | * {{Tile|A|7:0}} '''Antelope''' |
| − | * Armless biped | + | * {{Tile|I|7:0}} Antlion larva |
| − | + | * {{Tile|A|7:0}} '''Ape''' | |
| − | + | * {{Tile|I|7:0}} Aphid | |
| − | * Assassin bug | + | * {{Tile|A|7:0}} '''Armadillo''' |
| − | * Badger | + | * {{Tile|B|7:0}} Armless biped |
| − | * Bat | + | * {{Tile|I|7:0}} Assassin bug |
| − | * Bear | + | * {{Tile|B|7:0}} '''Badger''' |
| − | * Beaver | + | * {{Tile|B|7:0}} Bat |
| − | * Bee | + | * {{Tile|B|7:0}} '''Bear''' |
| − | * Bison | + | * {{Tile|B|7:0}} '''Beaver''' |
| − | * Blob | + | * {{Tile|I|7:0}} Bee |
| − | * Bristleworm | + | * {{Tile|B|7:0}} '''Bison''' |
| − | * Buffalo | + | * {{Tile|B|7:0}} Blob |
| − | * Bull | + | * {{Tile|W|7:0}} Bristleworm |
| − | * Bunting | + | * {{Tile|B|7:0}} '''Buffalo''' |
| − | * Bushtit | + | * {{Tile|B|7:0}} '''Bull''' |
| − | * Butterfly | + | * {{Tile|B|7:0}} Bunting |
| − | * Buzzard | + | * {{Tile|B|7:0}} Bushtit |
| − | * Caddisfly | + | * {{Tile|I|7:0}} Butterfly |
| − | * Camel | + | * {{Tile|B|7:0}} Buzzard |
| − | * Capybara | + | * {{Tile|I|7:0}} Caddisfly |
| − | * Cardinal | + | * {{Tile|C|7:0}} '''Camel''' |
| − | * Cat | + | * {{Tile|C|7:0}} '''Capybara''' |
| − | * Caterpillar | + | * {{Tile|C|7:0}} Cardinal |
| − | * Cavy | + | * {{Tile|C|7:0}} '''Cat''' |
| − | * Ceratopsid | + | * {{Tile|I|7:0}} Caterpillar |
| − | * Chameleon | + | * {{Tile|C|7:0}} '''Cavy''' |
| − | * Chickadee | + | * {{Tile|C|7:0}} Ceratopsid |
| − | * Chicken | + | * {{Tile|C|7:0}} '''Chameleon''' |
| − | * Chinchilla | + | * {{Tile|C|7:0}} Chickadee |
| − | * Cicada | + | * {{Tile|C|7:0}} Chicken |
| − | * Civet | + | * {{Tile|C|7:0}} '''Chinchilla''' |
| − | * Click beetle | + | * {{Tile|I|7:0}} Cicada |
| − | * Coati | + | * {{Tile|C|7:0}} '''Civet''' |
| − | * Cobra | + | * {{Tile|I|7:0}} Click beetle |
| − | * Cockatoo | + | * {{Tile|C|7:0}} '''Coati''' |
| − | * Cockroach | + | * {{Tile|C|7:0}} Cobra |
| − | * Condor | + | * {{Tile|C|7:0}} Cockatoo |
| − | * Coyote | + | * {{Tile|I|7:0}} Cockroach |
| − | * Crab | + | * {{Tile|C|7:0}} Condor |
| − | * Crane | + | * {{Tile|C|7:0}} '''Coyote''' |
| − | * Cricket | + | * {{Tile|C|7:0}} Crab |
| − | * Crocodile | + | * {{Tile|C|7:0}} Crane |
| − | * Crow | + | * {{Tile|I|7:0}} Cricket |
| − | * Cuckoo | + | * {{Tile|C|7:0}} '''Crocodile''' |
| − | * Damselfly | + | * {{Tile|C|7:0}} Crow |
| − | * Darkling beetle | + | * {{Tile|C|7:0}} Cuckoo |
| − | * Decapod | + | * {{Tile|I|7:0}} Damselfly |
| − | * Deer | + | * {{Tile|I|7:0}} Darkling beetle |
| − | * Dimetrodon | + | * {{Tile|D|7:0}} Decapod |
| − | * Dove | + | * {{Tile|D|7:0}} '''Deer''' |
| − | * Dragonfly | + | * {{Tile|D|7:0}} Dimetrodon |
| − | * Duck | + | * {{Tile|D|7:0}} '''Donkey''' |
| − | * Dung beetle | + | * {{Tile|D|7:0}} Dove |
| − | * Eagle | + | * {{Tile|I|7:0}} Dragonfly |
| − | * Earthworm | + | * {{Tile|D|7:0}} Duck |
| − | * Earwig | + | * {{Tile|I|7:0}} Dung beetle |
| − | * Elephant | + | * {{Tile|E|7:0}} Eagle |
| − | * Elk | + | * {{Tile|W|7:0}} Earthworm |
| − | * Falcon | + | * {{Tile|I|7:0}} Earwig |
| − | * Fantail | + | * {{Tile|E|7:0}} '''Elephant''' |
| − | * Finch | + | * {{Tile|E|7:0}} '''Elk''' |
| − | * Firefly | + | * {{Tile|F|7:0}} Falcon |
| − | * Flamingo | + | * {{Tile|F|7:0}} Fantail |
| − | * Flat worm | + | * {{Tile|F|7:0}} Finch |
| − | * Flea | + | * {{Tile|I|7:0}} Firefly |
| − | * Fly | + | * {{Tile|F|7:0}} Flamingo |
| − | * Flycatcher | + | * {{Tile|W|7:0}} Flat worm |
| − | * Fox | + | * {{Tile|I|7:0}} Flea |
| − | * Frog | + | * {{Tile|I|7:0}} Fly |
| − | * Fruit bat | + | * {{Tile|F|7:0}} Flycatcher |
| − | * Gecko | + | * {{Tile|F|7:0}} '''Fox''' |
| − | * Gila monster | + | * {{Tile|F|7:0}} '''Frog''' |
| − | * Giraffe | + | * {{Tile|F|7:0}} Fruit bat |
| − | * Goat | + | * {{Tile|G|7:0}} '''Gecko''' |
| − | * Goose | + | * {{Tile|G|7:0}} '''Gila monster''' |
| − | * Gopher | + | * {{Tile|G|7:0}} '''Giraffe''' |
| − | * Grasshopper | + | * {{Tile|G|7:0}} '''Goat''' |
| − | * Grebe | + | * {{Tile|G|7:0}} Goose |
| − | * Grouse | + | * {{Tile|G|7:0}} '''Gopher''' |
| − | * Gull | + | * {{Tile|I|7:0}} Grasshopper |
| − | * Hadrosaurid | + | * {{Tile|G|7:0}} Grebe |
| − | * Hare | + | * {{Tile|G|7:0}} Grouse |
| − | * Harrier | + | * {{Tile|G|7:0}} Gull |
| − | * Hawk | + | * {{Tile|H|7:0}} Hadrosaurid |
| − | * Hedgehog | + | * {{Tile|H|7:0}} '''Hare''' |
| − | * Hexapod | + | * {{Tile|H|7:0}} Harrier |
| − | * Hippopotamus | + | * {{Tile|H|7:0}} Hawk |
| − | * Honeyeater | + | * {{Tile|H|7:0}} '''Hedgehog''' |
| − | * Hornbill | + | * {{Tile|H|7:0}} Hexapod |
| − | * Hornet | + | * {{Tile|H|7:0}} '''Hippopotamus''' |
| − | * Horse | + | * {{Tile|H|7:0}} Honeyeater |
| − | * Humanoid | + | * {{Tile|H|7:0}} Hornbill |
| − | * Hummingbird | + | * {{Tile|I|7:0}} Hornet |
| − | * Hyena | + | * {{Tile|H|7:0}} '''Horse''' |
| − | * Iguana | + | * {{Tile|H|7:0}} Humanoid |
| − | * Iguanodont | + | * {{Tile|H|7:0}} Hummingbird |
| − | * Jackal | + | * {{Tile|H|7:0}} '''Hyena''' |
| − | * Jay | + | * {{Tile|I|7:0}} '''Iguana''' |
| − | * Kangaroo | + | * {{Tile|I|7:0}} Iguanodont |
| − | * Kestrel | + | * {{Tile|J|7:0}} '''Jackal''' |
| − | * Kingfisher | + | * {{Tile|J|7:0}} Jay |
| − | * Kinglet | + | * {{Tile|K|7:0}} '''Kangaroo''' |
| − | * Kite | + | * {{Tile|K|7:0}} Kestrel |
| − | * Koala | + | * {{Tile|K|7:0}} Kingfisher |
| − | * Lacewing | + | * {{Tile|K|7:0}} Kinglet |
| − | * Ladybug | + | * {{Tile|K|7:0}} Kite |
| − | * Lark | + | * {{Tile|K|7:0}} '''Koala''' |
| − | * Leech | + | * {{Tile|I|7:0}} Lacewing |
| − | * Lemur | + | * {{Tile|I|7:0}} Ladybug |
| − | * Lizard | + | * {{Tile|L|7:0}} Lark |
| − | * Llama | + | * {{Tile|L|7:0}} Leech |
| − | * Lobster | + | * {{Tile|L|7:0}} '''Lemur''' |
| − | * Loon | + | * {{Tile|L|7:0}} '''Lizard''' |
| − | * Loris | + | * {{Tile|L|7:0}} '''Llama''' |
| − | * Louse | + | * {{Tile|¥|7:0}} Lobster |
| − | * Lyrebird | + | * {{Tile|L|7:0}} Loon |
| − | * Maggot | + | * {{Tile|L|7:0}} '''Loris''' |
| − | * Magpie | + | * {{Tile|I|7:0}} Louse |
| − | * Mammoth | + | * {{Tile|L|7:0}} Lyrebird |
| − | * Mantis | + | * {{Tile|I|7:0}} Maggot |
| − | * Marmot | + | * {{Tile|M|7:0}} Magpie |
| − | * Martin | + | * {{Tile|M|7:0}} '''Mammoth''' |
| − | * Mayfly | + | * {{Tile|I|7:0}} Mantis |
| − | * Mite | + | * {{Tile|M|7:0}} '''Marmot''' |
| − | * Mockingbird | + | * {{Tile|M|7:0}} Martin |
| − | * Mole | + | * {{Tile|I|7:0}} Mayfly |
| − | * Mongoose | + | * {{Tile|M|7:0}} Mite |
| − | * | + | * {{Tile|M|7:0}} Mockingbird |
| − | * Monkey | + | * {{Tile|M|7:0}} '''Mole''' |
| − | * Moose | + | * {{Tile|M|7:0}} '''Mongoose''' |
| − | * Mosquito | + | * {{Tile|M|7:0}} '''Monitor''' |
| − | * Moth | + | * {{Tile|M|7:0}} '''Monkey''' |
| − | * Mouse | + | * {{Tile|M|7:0}} '''Moose''' |
| − | * Nematode | + | * {{Tile|I|7:0}} Mosquito |
| − | * Newt | + | * {{Tile|I|7:0}} Moth |
| − | * Nightjar | + | * {{Tile|M|7:0}} '''Mouse''' |
| − | * Nuthatch | + | * {{Tile|N|7:0}} Nematode |
| − | * Octopod | + | * {{Tile|N|7:0}} '''Newt''' |
| − | * Opossum | + | * {{Tile|N|7:0}} Nightjar |
| − | * Oriole | + | * {{Tile|N|7:0}} Nuthatch |
| − | * Osprey | + | * {{Tile|O|7:0}} Octopod |
| − | * Otter | + | * {{Tile|O|7:0}} '''Opossum''' |
| − | * Owl | + | * {{Tile|O|7:0}} Oriole |
| − | * Oxpecker | + | * {{Tile|O|7:0}} Osprey |
| − | * Panda | + | * {{Tile|O|7:0}} '''Otter''' |
| − | * Pangolin | + | * {{Tile|O|7:0}} Owl |
| − | * Panther | + | * {{Tile|O|7:0}} Oxpecker |
| − | * Parrot | + | * {{Tile|P|7:0}} '''Panda''' |
| − | * Pelican | + | * {{Tile|P|7:0}} '''Pangolin''' |
| − | * Penguin | + | * {{Tile|P|7:0}} '''Panther''' |
| − | * Petrel | + | * {{Tile|P|7:0}} Parrot |
| − | * Pheasant | + | * {{Tile|P|7:0}} Pelican |
| − | * Pig | + | * {{Tile|P|7:0}} Penguin |
| − | * Pigeon | + | * {{Tile|P|7:0}} Petrel |
| − | * Porcupine | + | * {{Tile|P|7:0}} Pheasant |
| − | * Primate | + | * {{Tile|P|7:0}} '''Pig''' |
| − | * Pterosaur | + | * {{Tile|P|7:0}} Pigeon |
| − | * Python | + | * {{Tile|P|7:0}} '''Porcupine''' |
| − | * Quadruped | + | * {{Tile|P|7:0}} Primate |
| − | * Quail | + | * {{Tile|P|7:0}} Pterosaur |
| − | * Quetzal | + | * {{Tile|P|7:0}} Python |
| − | * Rabbit | + | * {{Tile|Q|7:0}} Quadruped |
| − | * Raccoon | + | * {{Tile|Q|7:0}} Quail |
| − | * Rat | + | * {{Tile|Q|7:0}} Quetzal |
| − | * Rattlesnake | + | * {{Tile|R|7:0}} '''Rabbit''' |
| − | * Raven | + | * {{Tile|R|7:0}} '''Raccoon''' |
| − | * Rhinoceros | + | * {{Tile|R|7:0}} '''Rat''' |
| − | * Rhinoceros beetle | + | * {{Tile|R|7:0}} Rattlesnake |
| − | * Ribbon worm | + | * {{Tile|R|7:0}} Raven |
| − | * Rove beetle | + | * {{Tile|R|7:0}} '''Rhinoceros''' |
| − | * Salamander | + | * {{Tile|I|7:0}} Rhinoceros beetle |
| − | * Sauropod | + | * {{Tile|W|7:0}} Ribbon worm |
| − | * Scarab beetle | + | * {{Tile|I|7:0}} Rove beetle |
| − | * Scorpion | + | * {{Tile|S|7:0}} '''Salamander''' |
| − | * Scorpionfly | + | * {{Tile|S|7:0}} Sauropod |
| − | * Serpent | + | * {{Tile|I|7:0}} Scarab beetle |
| − | * Sheep | + | * {{Tile|S|7:0}} Scorpion |
| − | * Shrew | + | * {{Tile|I|7:0}} Scorpionfly |
| − | * Shrike | + | * {{Tile|S|7:0}} Serpent |
| − | * Shrimp | + | * {{Tile|S|7:0}} '''Sheep''' |
| − | * Silverfish | + | * {{Tile|S|7:0}} '''Shrew''' |
| − | * Skink | + | * {{Tile|S|7:0}} Shrike |
| − | * Skunk | + | * {{Tile|S|7:0}} Shrimp |
| − | * Sloth | + | * {{Tile|I|7:0}} Silverfish |
| − | * Slug | + | * {{Tile|S|7:0}} '''Skink''' |
| − | * Snail | + | * {{Tile|S|7:0}} '''Skunk''' |
| − | * Snake | + | * {{Tile|S|7:0}} '''Sloth''' |
| − | * Snakefly | + | * {{Tile|S|7:0}} Slug |
| − | * Sparrow | + | * {{Tile|S|7:0}} Snail |
| − | * Spider | + | * {{Tile|S|7:0}} Snake |
| − | * Squirrel | + | * {{Tile|I|7:0}} Snakefly |
| − | * Stag beetle | + | * {{Tile|S|7:0}} Sparrow |
| − | * Starling | + | * {{Tile|S|7:0}} Spider |
| − | * Stegosaurid | + | * {{Tile|S|7:0}} '''Squirrel''' |
| − | * Stick insect | + | * {{Tile|I|7:0}} Stag beetle |
| − | * Stonefly | + | * {{Tile|S|7:0}} Starling |
| − | * Stork | + | * {{Tile|S|7:0}} Stegosaurid |
| − | * Swallow | + | * {{Tile|I|7:0}} Stick insect |
| − | * Swan | + | * {{Tile|I|7:0}} Stonefly |
| − | * Swift | + | * {{Tile|S|7:0}} Stork |
| − | * Tanager | + | * {{Tile|S|7:0}} Swallow |
| − | * Tapir | + | * {{Tile|S|7:0}} Swan |
| − | * Tarantula | + | * {{Tile|S|7:0}} Swift |
| − | * Termite | + | * {{Tile|T|7:0}} Tanager |
| − | * Theropod | + | * {{Tile|T|7:0}} '''Tapir''' |
| − | * Thornbill | + | * {{Tile|S|7:0}} Tarantula |
| − | * Thrips | + | * {{Tile|I|7:0}} Termite |
| − | * Thrush | + | * {{Tile|T|7:0}} Theropod |
| − | * Tick | + | * {{Tile|T|7:0}} Thornbill |
| − | * Tiger beetle | + | * {{Tile|I|7:0}} Thrips |
| − | * Titmouse | + | * {{Tile|T|7:0}} Thrush |
| − | * Toad | + | * {{Tile|T|7:0}} Tick |
| − | * Tortoise | + | * {{Tile|I|7:0}} Tiger beetle |
| − | * Toucan | + | * {{Tile|T|7:0}} Titmouse |
| − | * Turkey | + | * {{Tile|T|7:0}} '''Toad''' |
| − | * Turtle | + | * {{Tile|T|7:0}} '''Tortoise''' |
| − | * Viper | + | * {{Tile|T|7:0}} Toucan |
| − | * | + | * {{Tile|T|7:0}} Turkey |
| − | * Walrus | + | * {{Tile|T|7:0}} '''Turtle''' |
| − | * Warbler | + | * {{Tile|V|7:0}} Viper |
| − | * Warthog | + | * {{Tile|V|7:0}} Vulture |
| − | * Wasp | + | * {{Tile|W|7:0}} Walrus |
| − | * Waxwing | + | * {{Tile|W|7:0}} Warbler |
| − | * | + | * {{Tile|W|7:0}} '''Warthog''' |
| − | * Weevil | + | * {{Tile|I|7:0}} Wasp |
| − | * Wolf | + | * {{Tile|W|7:0}} Waxwing |
| − | * Wombat | + | * {{Tile|W|7:0}} '''Weasel''' |
| − | * Woodpecker | + | * {{Tile|I|7:0}} Weevil |
| − | * | + | * {{Tile|W|7:0}} '''Wolf''' |
| − | * | + | * {{Tile|W|7:0}} '''Wombat''' |
| − | * Wyrm | + | * {{Tile|W|7:0}} Woodpecker |
| − | * Zebra | + | * {{Tile|W|7:0}} Worm |
| + | * {{Tile|W|7:0}} Wren | ||
| + | * {{Tile|W|7:0}} Wyrm | ||
| + | * {{Tile|Z|7:0}} '''Zebra''' | ||
}} | }} | ||
| + | |||
| + | == Graphics == | ||
| + | All random creatures except [[werebeast]]s use [[graphics|graphic]] sprites found in <code>beasts.png</code> and <code>beasts_small.png</code>. There are 19 primary body sprites (6 are alternate-legged variations) with additional sprite layers representing secondary body parts. Several RCPs have one or more secondary sprite layers by default. A few RCPs, like quadrupeds, have more than one body sprite to randomly select from. | ||
| + | |||
| + | {| class="wikitable"<!-- | ||
| + | |||
| + | NOTE: RCPs may look out of place. be sure to verify before changing. last updated 0.50.09 | ||
| + | |||
| + | to verify, create a world w/ compressed saves set to NO (in settings, game tab), go to its save folder and open 'world.dat' w/ a text editor that has a good find/search tool, e.g. Notepad++ | ||
| + | recommend large worlds w/ min history, no civs, no vamps/secrets/interactions/weather, & max num of procgen beasts (titans, demons, night creatures, etc.) | ||
| + | for experiments, use basic options w/ small world, max hist, max civ, min beasts & min savage | ||
| + | |||
| + | example to look for: | ||
| + | |||
| + | [PROCEDURAL_CREATURE_GRAPHICS:DEFAULT] | ||
| + | [PCG_LAYERING:BEAST_QUADRUPED_BULKY_TAIL_ONE] | ||
| + | [PCG_LAYERING:BEAST_QUADRUPED_BULKY] | ||
| + | [PCG_LAYERING:BEAST_QUADRUPED_BULKY_HORNS] | ||
| + | [PCG_LAYERING:BEAST_QUADRUPED_BULKY_EYE_TWO] | ||
| + | |||
| + | above: chinchilla with four broad horns (random body modifications are explicitly mentioned in the creature's description) | ||
| + | compare RCPs and eliminate random tokens, and you're left w/ 'default' sprite tokens | ||
| + | |||
| + | when creating/editing images: first token is the bottommost layer, last token is topmost layer (eyes layered above body, etc.) | ||
| + | note that elementals don't have eyes | ||
| + | --> | ||
| + | |+ RCP sprites, ignoring random body modifications, large sprites only | ||
| + | ! RCPs | ||
| + | ! Sprite | ||
| + | ! Secondary graphic token(s) | ||
| + | ! Primary graphic token | ||
| + | |- | ||
| + | | albatross, armless biped, bat, blob, bunting, bushtit, buzzard, cardinal, chickadee, chicken, cockatoo, condor, crane, crow, cuckoo, dove, duck, eagle, falcon, fantail, finch, flamingo, flycatcher, fruit bat, goose, grebe, grouse, gull, harrier, hawk, honeyeater, hornbill, hummingbird, jay, kestrel, kingfisher, kinglet, kite, lark, loon, lyrebird, magpie, martin, mockingbird, nightjar, nuthatch, oriole, osprey, owl, oxpecker, parrot, pelican, penguin, petrel, pheasant, pigeon, pterosaur, quail, quetzal, raven, shrike, sparrow, starling, stork, swallow, swan, swift, tanager, thornbill, thrush, titmouse, toucan, turkey, vulture, warbler, waxwing, woodpecker, wren | ||
| + | | [[File:Beast amorphous.png]] | ||
| + | | ''none'' | ||
| + | | BEAST_AMORPHOUS | ||
| + | |- | ||
| + | | snake | ||
| + | | [[File:Beast snake.png]] | ||
| + | | ''none'' | ||
| + | | rowspan="2" | BEAST_SNAKE | ||
| + | |- | ||
| + | | anaconda, cobra, python, rattlesnake, serpent, viper | ||
| + | | [[File:Beast snake, two eyes.png]] | ||
| + | | BEAST_SNAKE_EYE_TWO | ||
| + | |- | ||
| + | | bristleworm, earthworm, flat worm, leech, nematode, ribbon worm, slug, worm | ||
| + | | [[File:Beast worm long.png]] | ||
| + | | ''none'' | ||
| + | | rowspan="2" | BEAST_WORM_LONG | ||
| + | |- | ||
| + | | snail | ||
| + | | [[File:Beast worm long, shell.png]] | ||
| + | | BEAST_WORM_LONG_SHELL_BACK | ||
| + | |- | ||
| + | | caterpillar, maggot | ||
| + | | [[File:Beast worm short, two eyes.png]] | ||
| + | | BEAST_WORM_SHORT_EYE_TWO | ||
| + | | BEAST_WORM_SHORT | ||
| + | |- | ||
| + | | hexapod | ||
| + | | [[File:Beast insect.png]] | ||
| + | | ''none'' | ||
| + | | rowspan="8" | BEAST_INSECT | ||
| + | |- | ||
| + | | antlion larva, flea, louse | ||
| + | | [[File:Beast insect, two eyes.png]] | ||
| + | | BEAST_INSECT_EYE_TWO | ||
| + | |- | ||
| + | | ant, aphid, assassin bug, click beetle, cockroach, cricket, darkling beetle, dung beetle, earwig, grasshopper, ladybug, mantis, rove beetle, scarab beetle, silverfish, stick insect, stonefly, termite, thrips, tiger beetle, weevil | ||
| + | | [[File:Beast insect, two eyes, antennae.png]] | ||
| + | | BEAST_INSECT_EYE_TWO, BEAST_INSECT_ANTENNAE | ||
| + | |- | ||
| + | | stag beetle | ||
| + | | [[File:Beast insect, mandibles, two eyes, antennae.png]] | ||
| + | | BEAST_INSECT_MANDIBLES, BEAST_INSECT_EYE_TWO, BEAST_INSECT_ANTENNAE | ||
| + | |- | ||
| + | | rhinoceros beetle | ||
| + | | [[File:Beast insect, horns, two eyes, antennae.png]] | ||
| + | | BEAST_INSECT_HORNS, BEAST_INSECT_EYE_TWO, BEAST_INSECT_ANTENNAE | ||
| + | |- | ||
| + | | cicada, damselfly, dragonfly, fly | ||
| + | | [[File:Beast insect, lacy wings, two eyes.png]] | ||
| + | | BEAST_INSECT_WINGS_LACY_BACK, BEAST_INSECT_EYE_TWO | ||
| + | |- | ||
| + | | bee, butterfly, caddisfly, firefly, hornet, lacewing, mayfly, moth, scorpionfly, snakefly, wasp | ||
| + | | [[File:Beast insect, lacy wings, two eyes, antennae.png]] | ||
| + | | BEAST_INSECT_WINGS_LACY_BACK, BEAST_INSECT_EYE_TWO, BEAST_INSECT_ANTENNAE | ||
| + | |- | ||
| + | | mosquito | ||
| + | | [[File:Beast insect, lacy wings, two eyes, proboscis, antennae.png]] | ||
| + | | BEAST_INSECT_WINGS_LACY_BACK, BEAST_INSECT_EYE_TWO, BEAST_INSECT_PROBOSCIS, BEAST_INSECT_ANTENNAE | ||
| + | |- | ||
| + | | decapod, octopod | ||
| + | | [[File:Beast spider.png]] | ||
| + | | ''none'' | ||
| + | | rowspan="3" | BEAST_SPIDER | ||
| + | |- | ||
| + | | crab, lobster, mite, spider, tarantula, tick | ||
| + | | [[File:Beast spider, two eyes.png]] | ||
| + | | BEAST_SPIDER_EYE_TWO | ||
| + | |- | ||
| + | | shrimp | ||
| + | | [[File:Beast spider, two eyes, antennae.png]] | ||
| + | | BEAST_SPIDER_EYE_TWO, BEAST_SPIDER_EYE_ANTENNAE | ||
| + | |- | ||
| + | | scorpion | ||
| + | | [[File:Beast scorpion, two eyes, one tail.png]] | ||
| + | | BEAST_SCORPION_EYE_TWO, BEAST_SCORPION_TAIL_ONE | ||
| + | | BEAST_SCORPION | ||
| + | |- | ||
| + | | wyrm | ||
| + | | [[File:Beast bipedal dinosaur.png]] | ||
| + | | ''none'' | ||
| + | | BEAST_BIPEDAL_DINOSAUR | ||
| + | |- | ||
| + | | humanoid* | ||
| + | | [[File:Beast humanoid.png]] | ||
| + | | ''none'' | ||
| + | | rowspan="5" | BEAST_HUMANOID | ||
| + | |- | ||
| + | | humanoid* | ||
| + | |||
| + | ''(humanoid forms)'': ape, capybara, cavy, frog, koala, toad, wombat | ||
| + | | [[File:Beast humanoid, two eyes.png]] | ||
| + | | BEAST_HUMANOID_EYE_TWO | ||
| + | |- | ||
| + | | iguanodont, theropod | ||
| + | |||
| + | ''(humanoid forms)'': alligator, anteater, antelope, armadillo, badger, bear, beaver, bison, buffalo, bull, camel, cat, chameleon, chinchilla, civet, coati, coyote, crocodile, deer, donkey, elk, fox, gecko, gila monster, giraffe, goat, gopher, hare, hedgehog, hippopotamus, horse, hyena, iguana, jackal, kangaroo, lemur, lizard, llama, loris, marmot, mole, mongoose, monitor, monkey, moose, mouse, newt, opossum, otter, panda, pangolin, panther, pig, porcupine, rabbit, raccoon, rat, rhinoceros, salamander, sheep, shrew, skink, skunk, sloth, squirrel, tapir, warthog, weasel, wolf, zebra | ||
| + | | [[File:Beast humanoid, two eyes, one tail.png]] | ||
| + | | BEAST_HUMANOID_EYE_TWO, BEAST_HUMANOID_TAIL_ONE | ||
| + | |- | ||
| + | | ''(humanoid forms)'': elephant, mammoth | ||
| + | | [[File:Beast humanoid, two eyes, one tail, trunk.png]] | ||
| + | | BEAST_HUMANOID_EYE_TWO, BEAST_HUMANOID_TAIL_ONE, BEAST_HUMANOID_TRUNK | ||
| + | |- | ||
| + | | ''(humanoid forms)'': tortoise, turtle | ||
| + | | [[File:Beast humanoid, two eyes, shell.png]] | ||
| + | | BEAST_HUMANOID_EYE_TWO, BEAST_HUMANOID_SHELL_BACK | ||
| + | |- | ||
| + | | ape | ||
| + | | [[File:Beast front grasp, two eyes.png]] | ||
| + | | BEAST_FRONT_GRASP_EYE_TWO | ||
| + | | rowspan="2" | BEAST_FRONT_GRASP | ||
| + | |- | ||
| + | | monkey | ||
| + | | [[File:Beast front grasp, two eyes, one tail.png]] | ||
| + | | BEAST_FRONT_GRASP_EYE_TWO, BEAST_FRONT_GRASP_TAIL_ONE | ||
| + | |- | ||
| + | | primate, quadruped | ||
| + | | [[File:Beast quadruped bulky.png]] | ||
| + | | ''none'' | ||
| + | | rowspan="5" | BEAST_QUADRUPED_BULKY | ||
| + | |- | ||
| + | | capybara, cavy, koala, toad, wombat | ||
| + | | [[File:Beast quadruped bulky, two eyes.png]] | ||
| + | | BEAST_QUADRUPED_BULKY_EYE_TWO | ||
| + | |- | ||
| + | | ankylosaurid, armadillo, bear, beaver, bison, buffalo, bull, camel, ceratopsid, chinchilla, goat, gopher, hadrosaurid, hedgehog, hippopotamus, llama, loris, marmot, mole, panda, pig, porcupine, rhinoceros, sauropod, sheep, sloth, stegosaurid, tapir, warthog | ||
| + | | [[File:Beast quadruped bulky, two eyes, one tail.png]] | ||
| + | | BEAST_QUADRUPED_BULKY_EYE_TWO, BEAST_QUADRUPED_BULKY_TAIL_ONE | ||
| + | |- | ||
| + | | elephant, mammoth | ||
| + | | [[File:Beast quadruped bulky, two eyes, one tail, trunk.png]] | ||
| + | | BEAST_QUADRUPED_BULKY_EYE_TWO, BEAST_QUADRUPED_BULKY_TAIL_ONE, BEAST_QUADRUPED_BULKY_TRUNK | ||
| + | |- | ||
| + | | tortoise, turtle | ||
| + | | [[File:Beast quadruped bulky, two eyes, shell.png]] | ||
| + | | BEAST_QUADRUPED_BULKY_EYE_TWO, BEAST_QUADRUPED_BULKY_SHELL_FRONT | ||
| + | |- | ||
| + | | primate, quadruped | ||
| + | | [[File:Beast quadruped slinky.png]] | ||
| + | | ''none'' | ||
| + | | rowspan="3" | BEAST_QUADRUPED_SLINKY | ||
| + | |- | ||
| + | | frog | ||
| + | | [[File:Beast quadruped slinky, two eyes.png]] | ||
| + | | BEAST_QUADRUPED_SLINKY_EYE_TWO | ||
| + | |- | ||
| + | | alligator, anteater, antelope, badger, cat, chameleon, civet, coati, coyote, crocodile, deer, dimetrodon, donkey, elk, fox, gecko, gila monster, giraffe, hare, horse, hyena, iguana, jackal, kangaroo, lemur, lizard, mongoose, monitor, moose, mouse, newt, opossum, otter, pangolin, panther, rabbit, raccoon, rat, salamander, shrew, skink, skunk, squirrel, weasel, wolf, zebra | ||
| + | | [[File:Beast quadruped slinky, two eyes, one tail.png]] | ||
| + | | BEAST_QUADRUPED_SLINKY_EYE_TWO, BEAST_QUADRUPED_SLINKY_TAIL_ONE | ||
| + | |- | ||
| + | | walrus | ||
| + | | [[File:Beast walrus, two eyes.png]] | ||
| + | | BEAST_WALRUS_EYE_TWO | ||
| + | | BEAST_WALRUS | ||
| + | |} | ||
| + | :'''*''' The (generic) humanoid RCP has two or no eyes (by default) depending on the type of beast/monster: | ||
| + | ::2 eyes: bogeymen, experiments (intelligent humanoids), night trolls | ||
| + | ::0 eyes: experiments (amalgamations), nightmares, everything else (which are elementals) | ||
| + | |||
| + | == Gallery == | ||
| + | <gallery caption="Large sprites" heights="64px"> | ||
| + | Beast amorphous.png|Amorphous sprite | ||
| + | Beast snake.png|Snake sprite | ||
| + | Beast worm long.png|Long worm sprite | ||
| + | Beast worm short.png|Short worm sprite | ||
| + | Beast insect.png|Insect sprite | ||
| + | Beast spider.png|Spider sprite | ||
| + | Beast scorpion.png|Scorpion sprite | ||
| + | Beast scorpion, one tail.png|Scorpion sprite (with one tail) | ||
| + | Beast bipedal dinosaur.png|Bipedal dinosaur sprite | ||
| + | Beast humanoid.png|Humanoid sprite | ||
| + | Beast front grasp.png|Front grasp sprite | ||
| + | Beast front grasp hex.png|Front grasp sprite (six-legged) | ||
| + | Beast front grasp oct.png|Front grasp sprite (eight-legged) | ||
| + | Beast quadruped bulky.png|Bulky quadruped sprite | ||
| + | Beast quadruped bulky hex.png|Bulky quadruped sprite (six-legged) | ||
| + | Beast quadruped bulky oct.png|Bulky quadruped sprite (eight-legged) | ||
| + | Beast quadruped slinky.png|Slinky quadruped sprite | ||
| + | Beast quadruped slinky hex.png|Slinky quadruped sprite (six-legged) | ||
| + | Beast quadruped slinky oct.png|Slinky quadruped sprite (eight-legged) | ||
| + | Beast walrus.png|Walrus sprite | ||
| + | </gallery> | ||
| + | |||
| + | <gallery caption="Small sprites" heights="32px"> | ||
| + | Beast small amorphous.png|Small amorphous sprite | ||
| + | Beast small snake.png|Small snake sprite | ||
| + | Beast small worm long.png|Small long worm sprite | ||
| + | Beast small worm short.png|Small short worm sprite | ||
| + | Beast small insect.png|Small insect sprite | ||
| + | Beast small spider.png|Small spider sprite | ||
| + | Beast small scorpion.png|Small scorpion sprite | ||
| + | Beast small scorpion, one tail.png|Small scorpion sprite (with one tail) | ||
| + | Beast small bipedal dinosaur.png|Small bipedal dinosaur sprite | ||
| + | Beast small humanoid.png|Small humanoid sprite | ||
| + | Beast small front grasp.png|Small front grasp sprite | ||
| + | Beast small front grasp hex.png|Small front grasp sprite (six-legged) | ||
| + | Beast small front grasp oct.png|Small front grasp sprite (eight-legged) | ||
| + | Beast small quadruped bulky.png|Small bulky quadruped sprite | ||
| + | Beast small quadruped bulky hex.png|Small bulky quadruped sprite (six-legged) | ||
| + | Beast small quadruped bulky oct.png|Small bulky quadruped sprite (eight-legged) | ||
| + | Beast small quadruped slinky.png|Small slinky quadruped sprite | ||
| + | Beast small quadruped slinky hex.png|Small slinky quadruped sprite (six-legged) | ||
| + | Beast small quadruped slinky oct.png|Small slinky quadruped sprite (eight-legged) | ||
| + | Beast small walrus.png|Small walrus sprite | ||
| + | </gallery> | ||
| + | |||
| + | |||
| + | {{Creatures}} | ||
| + | |||
| + | [[Category:Creatures]] | ||
| + | [[Category:Lua]] | ||
| + | [[ru:Random creature profile]] | ||
Latest revision as of 22:17, 24 October 2025
v52.04 · v0.47.05 This article is about the current version of DF.Note that some content may still need to be updated. |
This is a list of random creature profiles (RCPs) which are used by procedurally-generated creatures. RCPs typically use body parts from body_rcp.txt instead of body_default.txt.
Overview[edit]
RCP stands for "random creature profile". RCP is a scripted raw template that defines the basic body, tissues and body attacks of a random creature before it receives further randomness (three-eyed, wings of stretched skin, external ribs, uniform elemental composition, etc). Most amphibian, mammalian and reptilian RCPs have humanoid variations of themselves, described as "in humanoid form" or "twisted into humanoid form". There are 243 standard RCPs and 81 humanoid variations, which brings the known total to 324.
The RCP of a randomly generated creature can be identified by its description. Many RCPs have identical names with normal creatures (e.g. albatross), although they are entirely unrelated; other RCPs feature animals that don't exist anywhere else, such as zebras. Some RCPs have inherent abilities like flight or webbing.
Night trolls and bogeymen only use the generic "humanoid" RCP, and werebeasts use the humanoid animal forms. Primates, hexapods, octopods and decapods are unique to beast-like experiments, while armless bipeds, wyrms, and the generic "snake" and "worm" RCPs are unique to failed experiments.
Technical details[edit]
Random creature profiles can be found in vanilla_procedural/scripts/. By adding data to the corresponding tables, it is possible to mod in new random creature profiles.
This explanation from Toady, shared by Meph, goes into more detail on how procedural creature generation works:
The
body_rcp.txtfile has the definitions it expects for bodyparts. (rcp stands for "random creature profile") The main thing is that the base "animal" word is doing most of the heavy lifting in terms of making the descriptions evocative, so the rcp's don't end up mattering that much. There are little internal definitions for each animal word, about 230 of them. If we ignore that, then we're more just working with "feathered quadruped" and so forth.Example of a random creature profile (for the elephant type):
random_creature_types.MAMMAL_ELEPHANT={ name_string="elephant", tile='E', body_base="QUADRUPED", c_class="MAMMAL", must_have_tail=true, must_have_elephant_trunk=true, min_size=500000, weight=14 }So, hmm, perhaps the base and class lists are relevant here...
- classes (
random_creature_class): mammal, chitin exo, fleshy, amphibian, reptile, feathered reptile, avian, uniform (like 'composed of iron')
- bases (
body_base_fun): amorphous, insect, insect larva, spider, scorpion, ten legged, eight legged, worm, no limbs, quadruped, snake, humanoid, two legs + no arms, quadruped with front graspers (like a monkey)The flags just force certain RCP additions, and prevent others from happening. For instance, the "slug" profile has "cannot have shell" because a slug with a shell is confusing.
Ah, here we go. The RCP are used via the "body tweak" system. A body can have a tweak from category one, a tweak from category two, and an attack tweak, respecting its profile flags.
- Category one tweaks (
options.btc): wings, flightless wings, tail, proboscis, trunk, shell, antennae, head horns, large mandibles, twisted into humanoid form, six legged, eight legged
- Category two tweaks (
options.btc2): hair, feathers, scales, exoskeleton, skin, skin/bones, no eyes, one eye, three eyes, beak missing, nose missing, external ribs, lidless eyes, skinless
- Attack tweaks (
options.attack_tweak): tail stinger, insect stinger, blood proboscis, fire, webs, breath (trailing flow), breath (glob), breath (undirected), secretion, poisonous blood, poisonous biteThat material list (
random_creature_material) looks almost right - here's the official list of variables: ash, mud, vomit, salt (powder), grime, snow, water, steam, flame, amber, coral, green glass, clear glass, crystal glass, charcoal, coke, salt (solid), ice, mineral (any), soil (any), gem (any), metal (any)The "any" materials can't be "special", but there don't appear to be other restrictions. There are various other implicit flags on these things when it comes to werebeasts etc. "humanoidable" and "beast", for example. So all night creatures require "humanoidable" and werebeasts require "beast" on top of that. Which is why we don't have wereblobs or even wereserpents.
List[edit]
In ASCII mode, nearly all RCPs use specific uppercase or lowercase letters if the monster type does not use a fixed tile, such as '&' for demons. Lobsters uniquely use the '¥' sign instead. RCPs with humanoid versions are bolded. Humanoid forms use the same tile as their standard counterparts.
Capitalization denotes body size. In most cases, anything larger than a dwarf (60,000) uses an uppercase letter. Only uppercase letters are shown here.
In-game, the tile color is determined by the creature's external color modifier. If it does not have a color modifier and is not skinless, it uses the outermost tissue layer's default material color. If it is skinless, it is displayed in dark red (4:0:0).
AAlbatrossAAlligatorAAnacondaAAnkylosauridIAntAAnteaterAAntelopeIAntlion larvaAApeIAphidAArmadilloBArmless bipedIAssassin bugBBadgerBBatBBearBBeaverIBeeBBisonBBlobWBristlewormBBuffaloBBullBBuntingBBushtitIButterflyBBuzzardICaddisflyCCamelCCapybaraCCardinalCCatICaterpillarCCavyCCeratopsidCChameleonCChickadeeCChickenCChinchillaICicadaCCivetIClick beetleCCoatiCCobraCCockatooICockroachCCondorCCoyoteCCrabCCraneICricketCCrocodileCCrowCCuckooIDamselflyIDarkling beetleDDecapodDDeerDDimetrodonDDonkeyDDoveIDragonflyDDuckIDung beetleEEagleWEarthwormIEarwigEElephantEElkFFalconFFantailFFinchIFireflyFFlamingoWFlat wormIFleaIFlyFFlycatcherFFoxFFrogFFruit batGGeckoGGila monsterGGiraffeGGoatGGooseGGopherIGrasshopperGGrebeGGrouseGGullHHadrosauridHHareHHarrierHHawkHHedgehogHHexapodHHippopotamusHHoneyeaterHHornbillIHornetHHorseHHumanoidHHummingbirdHHyenaIIguanaIIguanodontJJackalJJayKKangarooKKestrelKKingfisherKKingletKKiteKKoalaILacewingILadybugLLarkLLeechLLemurLLizardLLlama¥LobsterLLoonLLorisILouseLLyrebirdIMaggotMMagpieMMammothIMantisMMarmotMMartinIMayflyMMiteMMockingbirdMMoleMMongooseMMonitorMMonkeyMMooseIMosquitoIMothMMouseNNematodeNNewtNNightjarNNuthatchOOctopodOOpossumOOrioleOOspreyOOtterOOwlOOxpeckerPPandaPPangolinPPantherPParrotPPelicanPPenguinPPetrelPPheasantPPigPPigeonPPorcupinePPrimatePPterosaurPPythonQQuadrupedQQuailQQuetzalRRabbitRRaccoonRRatRRattlesnakeRRavenRRhinocerosIRhinoceros beetleWRibbon wormIRove beetleSSalamanderSSauropodIScarab beetleSScorpionIScorpionflySSerpentSSheepSShrewSShrikeSShrimpISilverfishSSkinkSSkunkSSlothSSlugSSnailSSnakeISnakeflySSparrowSSpiderSSquirrelIStag beetleSStarlingSStegosauridIStick insectIStoneflySStorkSSwallowSSwanSSwiftTTanagerTTapirSTarantulaITermiteTTheropodTThornbillIThripsTThrushTTickITiger beetleTTitmouseTToadTTortoiseTToucanTTurkeyTTurtleVViperVVultureWWalrusWWarblerWWarthogIWaspWWaxwingWWeaselIWeevilWWolfWWombatWWoodpeckerWWormWWrenWWyrmZZebra
Graphics[edit]
All random creatures except werebeasts use graphic sprites found in beasts.png and beasts_small.png. There are 19 primary body sprites (6 are alternate-legged variations) with additional sprite layers representing secondary body parts. Several RCPs have one or more secondary sprite layers by default. A few RCPs, like quadrupeds, have more than one body sprite to randomly select from.
- * The (generic) humanoid RCP has two or no eyes (by default) depending on the type of beast/monster:
- 2 eyes: bogeymen, experiments (intelligent humanoids), night trolls
- 0 eyes: experiments (amalgamations), nightmares, everything else (which are elementals)
Gallery[edit]
- Large sprites
- Small sprites













































