<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://dwarffortresswiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Evil4zerggin</id>
	<title>Dwarf Fortress Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://dwarffortresswiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Evil4zerggin"/>
	<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php/Special:Contributions/Evil4zerggin"/>
	<updated>2026-06-04T09:43:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.11</generator>
	<entry>
		<id>https://dwarffortresswiki.org/index.php?title=40d:Body_token&amp;diff=34739</id>
		<title>40d:Body token</title>
		<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php?title=40d:Body_token&amp;diff=34739"/>
		<updated>2008-08-10T12:47:33Z</updated>

		<summary type="html">&lt;p&gt;Evil4zerggin: /* Body Part Types */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Modding]]&lt;br /&gt;
&lt;br /&gt;
'''Body tokens''' are one of the fundamental parts of creatures, and determine their bodily structure.  There are two major types of body tokens: ''body templates'' (BODY) and ''body parts'' (BP).&lt;br /&gt;
&lt;br /&gt;
A creature uses the [[creature tokens#B|BODY creature token]] to list all of the body templates it includes.  Each part listed in each template is then included in the creature.  In other words: a creature lists the ''body templates'' it is made of.  Each ''body template'' contains a set of ''body parts''.  Each ''body part'' specifies which other body part it is attached to.&lt;br /&gt;
&lt;br /&gt;
Body parts can connect specifically to another body part, or generally to any body part of a certain category.  These connections are handled by the CON and CONTYPE body part tokens respectively.&lt;br /&gt;
&lt;br /&gt;
Body parts can be renamed with a ''[[bodygloss]]'', allowing someone to reuse an existing template instead of defining a similar template with only the names of the body parts changed.&lt;br /&gt;
&lt;br /&gt;
== Convention ==&lt;br /&gt;
&lt;br /&gt;
The convention in the unmodded raw object data in Dwarf Fortress is to make the centre of mass the core of the creature.  All other body parts then attach to this central mass, or to those body parts that attach to this central mass.  Creating chains of attachments in this fashion produces limbs.&lt;br /&gt;
&lt;br /&gt;
While it is possible to use the CON token to connect to a specific body part ID even if it is in another template, it is convention within the default raw object data to use a CONTYPE if the connected part is in another template, for safety.  Otherwise, a creature must have both templates within its BODY token to prevent unpredictable behaviour when the creature is used during world generation or simulated during gameplay.&lt;br /&gt;
&lt;br /&gt;
==Basic Syntax==&lt;br /&gt;
&lt;br /&gt;
 filename&lt;br /&gt;
 &lt;br /&gt;
 [OBJECT:BODY]&lt;br /&gt;
 &lt;br /&gt;
 [BODY:TEMPLATE1]&lt;br /&gt;
 [BP:CORE][UPPERBODY][...]&lt;br /&gt;
 [BP:PART1][CONTYPE:UPPERBODY][...]&lt;br /&gt;
 [BP:PART2][CON:CORE][...]&lt;br /&gt;
 &lt;br /&gt;
 [BODYGLOSS:FOOBAR:foo:bar]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Body==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; | Token&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; | Arguments&lt;br /&gt;
! width=&amp;quot;60%&amp;quot; | Description&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| BODY&lt;br /&gt;
|&lt;br /&gt;
* id&lt;br /&gt;
| The name of the body template.  Each BP token underneath a given Body Token BODY template is added to a creature when the Creature Token BODY specifies this ID.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| BODYGLOSS&lt;br /&gt;
|&lt;br /&gt;
* id&lt;br /&gt;
* match&lt;br /&gt;
* replacement&lt;br /&gt;
| Replaces all occurrences of &amp;quot;match&amp;quot; in the creature's body parts with &amp;quot;replacement&amp;quot;.  E.g., the Body Token [BODYGLOSS:TENTACLE:leg:tentacle], used by the Creature Token [BODYGLOSS:TENTACLE], will cause any &amp;quot;right leg&amp;quot; to appear as &amp;quot;right tentacle&amp;quot;.  Testing required: would &amp;quot;brain legend&amp;quot; appear as &amp;quot;brain tentacleend&amp;quot;?{{verify}}&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Body Parts==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; | Token&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; | Arguments&lt;br /&gt;
! width=&amp;quot;60%&amp;quot; | Description&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| APERTURE&lt;br /&gt;
| &lt;br /&gt;
| Unknown effect.  An opening in the body, apparently, but no known purpose.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| BP&lt;br /&gt;
|&lt;br /&gt;
* id&lt;br /&gt;
| The internal object ID of the body part.  Unlike many other tokens in the game, the id of the BP does not need to be unique throughout all of the raw object files, though it does need to be unique within the BODY it is in.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| BREATHE&lt;br /&gt;
| &lt;br /&gt;
| The body part is necessary to breathe.  If the body part is destroyed, the creature can suffocate unless it has the NOBREATHE token.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| CIRCULATION&lt;br /&gt;
| &lt;br /&gt;
| If this body part is destroyed, the creature will bleed to death?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| CON&lt;br /&gt;
|&lt;br /&gt;
* id&lt;br /&gt;
| The specific body part ''object ID'' to which this body part attaches.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| CONTYPE&lt;br /&gt;
|&lt;br /&gt;
* type&lt;br /&gt;
| The body part ''token type'' to which this body part attaches. Note that if the creature has more than one body part with that token type each of them will get its own additional body part attached.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| DIGIT&lt;br /&gt;
| &lt;br /&gt;
| Is a finger/toe.  Unknown effect.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EMBEDDED&lt;br /&gt;
| &lt;br /&gt;
| The body part is embedded into the body -- it is external, but is not shown until injured.  Compare INTERNAL.  Can be gouged out?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| FLIER&lt;br /&gt;
| &lt;br /&gt;
| The body part is necessary for the creature to fly, and damage to the body part will ground the creature.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| GRASP&lt;br /&gt;
| &lt;br /&gt;
| The body part can be used to hold items (if the creature has the EQUIPS token) or [[wrestling|wrestle]].&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| GUTS&lt;br /&gt;
| &lt;br /&gt;
| Can be disembowelled?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| HEAD&lt;br /&gt;
|&lt;br /&gt;
| Vital bodypart. If severed, creature dies.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| HEAR&lt;br /&gt;
| &lt;br /&gt;
| Unknown effect.  Presumably allows the creature to listen.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| INTERNAL&lt;br /&gt;
| &lt;br /&gt;
| The body part is an internal organ and is not visible until injured.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| JOINT&lt;br /&gt;
| &lt;br /&gt;
| Can be broken by [[wrestling]] (possibly falling damage in a future version).&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| LEFT&lt;br /&gt;
| &lt;br /&gt;
| The body part is on the left side of the creature and is thus vulnerable to attacks from the left side.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| LIMB&lt;br /&gt;
|&lt;br /&gt;
| The body part is usable for [[wrestling]] (i.e. can grab, lock, choke, etc).&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| LOWERBODY&lt;br /&gt;
|&lt;br /&gt;
| The body part is another part of the &amp;quot;core&amp;quot; of the creature.  When the lowerbody body part is destroyed, the creature is bisected.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| MOUTH&lt;br /&gt;
|&lt;br /&gt;
| Allows the creature to eat?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| NERVOUS&lt;br /&gt;
| &lt;br /&gt;
| Causes pain when destroyed.  Other effects?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| RIGHT&lt;br /&gt;
| &lt;br /&gt;
| The body part is on the right side of the creature and is thus vulnerable to attacks from the right side.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| SIGHT&lt;br /&gt;
|&lt;br /&gt;
| Allows creatures to see; creatures without this tag on any part of their bodies cannot see for the purposes of aiming missile weapons (though apparently can find and kill mad adventurers fairly well with melee attacks).  May need more testing.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| SKELETON&lt;br /&gt;
|&lt;br /&gt;
| Prevents game code from removing this bodypart when the creature is converted to skeletal undead.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| SMALL&lt;br /&gt;
| &lt;br /&gt;
| Unknown effect.  Reduces chance to hit?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| SMELL&lt;br /&gt;
| &lt;br /&gt;
| Unknown effect.  Presumably allows creature to smell.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| STANCE&lt;br /&gt;
|&lt;br /&gt;
| The body part is used to keep the creature standing; injury to the body part will cause the creature to collapse. It also makes the body part act like a foot, and adds toes to the body part. This can be problematic as the body part can be armored by a boot.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| THOUGHT&lt;br /&gt;
| &lt;br /&gt;
| Necessary for the creature to think.  Without a working brain, the creature dies unless it has the NOTHOUGHT Creature Token.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| THROAT&lt;br /&gt;
| &lt;br /&gt;
| Can be strangled with [[wrestling]] to cause winding, unconsciousness, and eventual death. Strangely, even creatures with the NOBREATHE token can be rendered unconscious (but not dead) by strangulation.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| UPPERBODY&lt;br /&gt;
| &lt;br /&gt;
| The body part is the &amp;quot;core&amp;quot; of the creature; when the upperbody body part is destroyed, the creature is blown apart.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Body Part Types==&lt;br /&gt;
&lt;br /&gt;
Legal token types for use with the Attack Token &amp;quot;BYTYPE&amp;quot; argument or for the Body Token &amp;quot;CONTYPE&amp;quot; argument:&lt;br /&gt;
&lt;br /&gt;
* APERTURE&lt;br /&gt;
* BREATHE{{verify}}&lt;br /&gt;
* CIRCULATION{{verify}}&lt;br /&gt;
* DIGIT{{verify}}&lt;br /&gt;
* FLIER{{verify}}&lt;br /&gt;
* GRASP&lt;br /&gt;
* GUTS{{verify}}&lt;br /&gt;
* HEAD&lt;br /&gt;
* HEAR{{verify}}&lt;br /&gt;
* JOINT{{verify}}&lt;br /&gt;
* LIMB{{verify}}&lt;br /&gt;
* LOWERBODY&lt;br /&gt;
* MOUTH&lt;br /&gt;
* NERVOUS{{verify}}&lt;br /&gt;
* SMELL&lt;br /&gt;
* STANCE&lt;br /&gt;
* THOUGHT&lt;br /&gt;
* UPPERBODY&lt;br /&gt;
&lt;br /&gt;
Entries suffixed with &amp;quot;Verify&amp;quot; have not yet been tested and are included based on reasonable assumption.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
An [[elephant]] is comprised of a large number of body parts, but only includes a small list of templates.  When an elephant asks for the following 15 templates in its CREATURE:ELEPHANT token:&lt;br /&gt;
 [BODY:QUADRUPED:TAIL:2EYES:2EARS:TRUNK:2LUNGS:HEART:GUTS:ORGANS:THROAT:NECK:SPINE:BRAIN:MOUTH:2TUSKS]&lt;br /&gt;
&lt;br /&gt;
...it gets all of the following 35 body parts:&lt;br /&gt;
&lt;br /&gt;
 QUADRUPED:&lt;br /&gt;
   - upper body&lt;br /&gt;
   - lower body&lt;br /&gt;
   - head&lt;br /&gt;
   - right front leg&lt;br /&gt;
   - left front leg&lt;br /&gt;
   - right front foot&lt;br /&gt;
   - left front foot&lt;br /&gt;
   - right rear leg&lt;br /&gt;
   - left rear leg&lt;br /&gt;
   - right rear foot&lt;br /&gt;
   - left rear foot&lt;br /&gt;
 TAIL:&lt;br /&gt;
   - tail&lt;br /&gt;
 2EYES:&lt;br /&gt;
   - right eye&lt;br /&gt;
   - left eye&lt;br /&gt;
 2EARS:&lt;br /&gt;
   - right ear&lt;br /&gt;
   - left ear&lt;br /&gt;
 TRUNK:&lt;br /&gt;
   - trunk&lt;br /&gt;
 2LUNGS:&lt;br /&gt;
   - right lung&lt;br /&gt;
   - left lung&lt;br /&gt;
 HEART:&lt;br /&gt;
   - heart&lt;br /&gt;
 GUTS:&lt;br /&gt;
   - guts&lt;br /&gt;
 ORGANS:&lt;br /&gt;
   - liver&lt;br /&gt;
   - stomach&lt;br /&gt;
   - pancreas&lt;br /&gt;
   - spleen&lt;br /&gt;
   - right kidney&lt;br /&gt;
   - left kidney&lt;br /&gt;
 THROAT:&lt;br /&gt;
   - throat&lt;br /&gt;
 NECK:&lt;br /&gt;
   - neck&lt;br /&gt;
 SPINE:&lt;br /&gt;
   - upper spine&lt;br /&gt;
   - lower spine&lt;br /&gt;
 BRAIN:&lt;br /&gt;
   - brain&lt;br /&gt;
 MOUTH:&lt;br /&gt;
   - mouth&lt;br /&gt;
 2TUSKS:&lt;br /&gt;
   - right tusk&lt;br /&gt;
   - left tusk&lt;br /&gt;
&lt;br /&gt;
The body part tree of the elephant, after connections are made, is as follows:&lt;br /&gt;
&lt;br /&gt;
 + upper body&lt;br /&gt;
   - heart&lt;br /&gt;
   - upper spine&lt;br /&gt;
   - right lung&lt;br /&gt;
   - left lung&lt;br /&gt;
   + head&lt;br /&gt;
     - brain&lt;br /&gt;
     - mouth&lt;br /&gt;
     - trunk&lt;br /&gt;
     - right tusk&lt;br /&gt;
     - left tusk&lt;br /&gt;
     - right eye&lt;br /&gt;
     - left eye&lt;br /&gt;
     - right ear&lt;br /&gt;
     - left ear&lt;br /&gt;
     - neck&lt;br /&gt;
     - throat&lt;br /&gt;
   + right front leg&lt;br /&gt;
     - right front foot&lt;br /&gt;
   + left front leg&lt;br /&gt;
     - left front foot&lt;br /&gt;
   + lower body&lt;br /&gt;
     - lower spine&lt;br /&gt;
     - guts&lt;br /&gt;
     - tail&lt;br /&gt;
     - liver&lt;br /&gt;
     - stomach&lt;br /&gt;
     - pancreas&lt;br /&gt;
     - spleen&lt;br /&gt;
     - right kidney&lt;br /&gt;
     - left kidney&lt;br /&gt;
     + right rear leg&lt;br /&gt;
       - right rear foot&lt;br /&gt;
     + left rear leg&lt;br /&gt;
       - left rear foot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding]]&lt;br /&gt;
[[Category:Tokens]]&lt;/div&gt;</summary>
		<author><name>Evil4zerggin</name></author>
	</entry>
	<entry>
		<id>https://dwarffortresswiki.org/index.php?title=40d:Body_token&amp;diff=34738</id>
		<title>40d:Body token</title>
		<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php?title=40d:Body_token&amp;diff=34738"/>
		<updated>2008-08-10T12:44:45Z</updated>

		<summary type="html">&lt;p&gt;Evil4zerggin: /* Body Parts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Modding]]&lt;br /&gt;
&lt;br /&gt;
'''Body tokens''' are one of the fundamental parts of creatures, and determine their bodily structure.  There are two major types of body tokens: ''body templates'' (BODY) and ''body parts'' (BP).&lt;br /&gt;
&lt;br /&gt;
A creature uses the [[creature tokens#B|BODY creature token]] to list all of the body templates it includes.  Each part listed in each template is then included in the creature.  In other words: a creature lists the ''body templates'' it is made of.  Each ''body template'' contains a set of ''body parts''.  Each ''body part'' specifies which other body part it is attached to.&lt;br /&gt;
&lt;br /&gt;
Body parts can connect specifically to another body part, or generally to any body part of a certain category.  These connections are handled by the CON and CONTYPE body part tokens respectively.&lt;br /&gt;
&lt;br /&gt;
Body parts can be renamed with a ''[[bodygloss]]'', allowing someone to reuse an existing template instead of defining a similar template with only the names of the body parts changed.&lt;br /&gt;
&lt;br /&gt;
== Convention ==&lt;br /&gt;
&lt;br /&gt;
The convention in the unmodded raw object data in Dwarf Fortress is to make the centre of mass the core of the creature.  All other body parts then attach to this central mass, or to those body parts that attach to this central mass.  Creating chains of attachments in this fashion produces limbs.&lt;br /&gt;
&lt;br /&gt;
While it is possible to use the CON token to connect to a specific body part ID even if it is in another template, it is convention within the default raw object data to use a CONTYPE if the connected part is in another template, for safety.  Otherwise, a creature must have both templates within its BODY token to prevent unpredictable behaviour when the creature is used during world generation or simulated during gameplay.&lt;br /&gt;
&lt;br /&gt;
==Basic Syntax==&lt;br /&gt;
&lt;br /&gt;
 filename&lt;br /&gt;
 &lt;br /&gt;
 [OBJECT:BODY]&lt;br /&gt;
 &lt;br /&gt;
 [BODY:TEMPLATE1]&lt;br /&gt;
 [BP:CORE][UPPERBODY][...]&lt;br /&gt;
 [BP:PART1][CONTYPE:UPPERBODY][...]&lt;br /&gt;
 [BP:PART2][CON:CORE][...]&lt;br /&gt;
 &lt;br /&gt;
 [BODYGLOSS:FOOBAR:foo:bar]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Body==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; | Token&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; | Arguments&lt;br /&gt;
! width=&amp;quot;60%&amp;quot; | Description&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| BODY&lt;br /&gt;
|&lt;br /&gt;
* id&lt;br /&gt;
| The name of the body template.  Each BP token underneath a given Body Token BODY template is added to a creature when the Creature Token BODY specifies this ID.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| BODYGLOSS&lt;br /&gt;
|&lt;br /&gt;
* id&lt;br /&gt;
* match&lt;br /&gt;
* replacement&lt;br /&gt;
| Replaces all occurrences of &amp;quot;match&amp;quot; in the creature's body parts with &amp;quot;replacement&amp;quot;.  E.g., the Body Token [BODYGLOSS:TENTACLE:leg:tentacle], used by the Creature Token [BODYGLOSS:TENTACLE], will cause any &amp;quot;right leg&amp;quot; to appear as &amp;quot;right tentacle&amp;quot;.  Testing required: would &amp;quot;brain legend&amp;quot; appear as &amp;quot;brain tentacleend&amp;quot;?{{verify}}&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Body Parts==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; | Token&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; | Arguments&lt;br /&gt;
! width=&amp;quot;60%&amp;quot; | Description&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| APERTURE&lt;br /&gt;
| &lt;br /&gt;
| Unknown effect.  An opening in the body, apparently, but no known purpose.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| BP&lt;br /&gt;
|&lt;br /&gt;
* id&lt;br /&gt;
| The internal object ID of the body part.  Unlike many other tokens in the game, the id of the BP does not need to be unique throughout all of the raw object files, though it does need to be unique within the BODY it is in.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| BREATHE&lt;br /&gt;
| &lt;br /&gt;
| The body part is necessary to breathe.  If the body part is destroyed, the creature can suffocate unless it has the NOBREATHE token.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| CIRCULATION&lt;br /&gt;
| &lt;br /&gt;
| If this body part is destroyed, the creature will bleed to death?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| CON&lt;br /&gt;
|&lt;br /&gt;
* id&lt;br /&gt;
| The specific body part ''object ID'' to which this body part attaches.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| CONTYPE&lt;br /&gt;
|&lt;br /&gt;
* type&lt;br /&gt;
| The body part ''token type'' to which this body part attaches. Note that if the creature has more than one body part with that token type each of them will get its own additional body part attached.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| DIGIT&lt;br /&gt;
| &lt;br /&gt;
| Is a finger/toe.  Unknown effect.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| EMBEDDED&lt;br /&gt;
| &lt;br /&gt;
| The body part is embedded into the body -- it is external, but is not shown until injured.  Compare INTERNAL.  Can be gouged out?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| FLIER&lt;br /&gt;
| &lt;br /&gt;
| The body part is necessary for the creature to fly, and damage to the body part will ground the creature.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| GRASP&lt;br /&gt;
| &lt;br /&gt;
| The body part can be used to hold items (if the creature has the EQUIPS token) or [[wrestling|wrestle]].&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| GUTS&lt;br /&gt;
| &lt;br /&gt;
| Can be disembowelled?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| HEAD&lt;br /&gt;
|&lt;br /&gt;
| Vital bodypart. If severed, creature dies.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| HEAR&lt;br /&gt;
| &lt;br /&gt;
| Unknown effect.  Presumably allows the creature to listen.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| INTERNAL&lt;br /&gt;
| &lt;br /&gt;
| The body part is an internal organ and is not visible until injured.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| JOINT&lt;br /&gt;
| &lt;br /&gt;
| Can be broken by [[wrestling]] (possibly falling damage in a future version).&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| LEFT&lt;br /&gt;
| &lt;br /&gt;
| The body part is on the left side of the creature and is thus vulnerable to attacks from the left side.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| LIMB&lt;br /&gt;
|&lt;br /&gt;
| The body part is usable for [[wrestling]] (i.e. can grab, lock, choke, etc).&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| LOWERBODY&lt;br /&gt;
|&lt;br /&gt;
| The body part is another part of the &amp;quot;core&amp;quot; of the creature.  When the lowerbody body part is destroyed, the creature is bisected.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| MOUTH&lt;br /&gt;
|&lt;br /&gt;
| Allows the creature to eat?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| NERVOUS&lt;br /&gt;
| &lt;br /&gt;
| Causes pain when destroyed.  Other effects?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| RIGHT&lt;br /&gt;
| &lt;br /&gt;
| The body part is on the right side of the creature and is thus vulnerable to attacks from the right side.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| SIGHT&lt;br /&gt;
|&lt;br /&gt;
| Allows creatures to see; creatures without this tag on any part of their bodies cannot see for the purposes of aiming missile weapons (though apparently can find and kill mad adventurers fairly well with melee attacks).  May need more testing.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| SKELETON&lt;br /&gt;
|&lt;br /&gt;
| Prevents game code from removing this bodypart when the creature is converted to skeletal undead.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| SMALL&lt;br /&gt;
| &lt;br /&gt;
| Unknown effect.  Reduces chance to hit?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| SMELL&lt;br /&gt;
| &lt;br /&gt;
| Unknown effect.  Presumably allows creature to smell.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| STANCE&lt;br /&gt;
|&lt;br /&gt;
| The body part is used to keep the creature standing; injury to the body part will cause the creature to collapse. It also makes the body part act like a foot, and adds toes to the body part. This can be problematic as the body part can be armored by a boot.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| THOUGHT&lt;br /&gt;
| &lt;br /&gt;
| Necessary for the creature to think.  Without a working brain, the creature dies unless it has the NOTHOUGHT Creature Token.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| THROAT&lt;br /&gt;
| &lt;br /&gt;
| Can be strangled with [[wrestling]] to cause winding, unconsciousness, and eventual death. Strangely, even creatures with the NOBREATHE token can be rendered unconscious (but not dead) by strangulation.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| UPPERBODY&lt;br /&gt;
| &lt;br /&gt;
| The body part is the &amp;quot;core&amp;quot; of the creature; when the upperbody body part is destroyed, the creature is blown apart.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Body Part Types==&lt;br /&gt;
&lt;br /&gt;
Legal token types for use with the Attack Token &amp;quot;BYTYPE&amp;quot; argument or for the Body Token &amp;quot;CONTYPE&amp;quot; argument:&lt;br /&gt;
&lt;br /&gt;
* APERTURE&lt;br /&gt;
* BREATHE{{verify}}&lt;br /&gt;
* CIRCULATION{{verify}}&lt;br /&gt;
* DIGIT{{verify}}&lt;br /&gt;
* FLIER{{verify}}&lt;br /&gt;
* GRASP&lt;br /&gt;
* GUTS{{verify}}&lt;br /&gt;
* HEAD{{verify}}&lt;br /&gt;
* HEAR{{verify}}&lt;br /&gt;
* JOINT{{verify}}&lt;br /&gt;
* LIMB{{verify}}&lt;br /&gt;
* LOWERBODY{{verify}}&lt;br /&gt;
* MOUTH&lt;br /&gt;
* NERVOUS{{verify}}&lt;br /&gt;
* SMELL&lt;br /&gt;
* STANCE&lt;br /&gt;
* THOUGHT&lt;br /&gt;
* UPPERBODY{{verify}}&lt;br /&gt;
&lt;br /&gt;
Entries suffixed with &amp;quot;Verify&amp;quot; have not yet been tested and are included based on reasonable assumption.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
An [[elephant]] is comprised of a large number of body parts, but only includes a small list of templates.  When an elephant asks for the following 15 templates in its CREATURE:ELEPHANT token:&lt;br /&gt;
 [BODY:QUADRUPED:TAIL:2EYES:2EARS:TRUNK:2LUNGS:HEART:GUTS:ORGANS:THROAT:NECK:SPINE:BRAIN:MOUTH:2TUSKS]&lt;br /&gt;
&lt;br /&gt;
...it gets all of the following 35 body parts:&lt;br /&gt;
&lt;br /&gt;
 QUADRUPED:&lt;br /&gt;
   - upper body&lt;br /&gt;
   - lower body&lt;br /&gt;
   - head&lt;br /&gt;
   - right front leg&lt;br /&gt;
   - left front leg&lt;br /&gt;
   - right front foot&lt;br /&gt;
   - left front foot&lt;br /&gt;
   - right rear leg&lt;br /&gt;
   - left rear leg&lt;br /&gt;
   - right rear foot&lt;br /&gt;
   - left rear foot&lt;br /&gt;
 TAIL:&lt;br /&gt;
   - tail&lt;br /&gt;
 2EYES:&lt;br /&gt;
   - right eye&lt;br /&gt;
   - left eye&lt;br /&gt;
 2EARS:&lt;br /&gt;
   - right ear&lt;br /&gt;
   - left ear&lt;br /&gt;
 TRUNK:&lt;br /&gt;
   - trunk&lt;br /&gt;
 2LUNGS:&lt;br /&gt;
   - right lung&lt;br /&gt;
   - left lung&lt;br /&gt;
 HEART:&lt;br /&gt;
   - heart&lt;br /&gt;
 GUTS:&lt;br /&gt;
   - guts&lt;br /&gt;
 ORGANS:&lt;br /&gt;
   - liver&lt;br /&gt;
   - stomach&lt;br /&gt;
   - pancreas&lt;br /&gt;
   - spleen&lt;br /&gt;
   - right kidney&lt;br /&gt;
   - left kidney&lt;br /&gt;
 THROAT:&lt;br /&gt;
   - throat&lt;br /&gt;
 NECK:&lt;br /&gt;
   - neck&lt;br /&gt;
 SPINE:&lt;br /&gt;
   - upper spine&lt;br /&gt;
   - lower spine&lt;br /&gt;
 BRAIN:&lt;br /&gt;
   - brain&lt;br /&gt;
 MOUTH:&lt;br /&gt;
   - mouth&lt;br /&gt;
 2TUSKS:&lt;br /&gt;
   - right tusk&lt;br /&gt;
   - left tusk&lt;br /&gt;
&lt;br /&gt;
The body part tree of the elephant, after connections are made, is as follows:&lt;br /&gt;
&lt;br /&gt;
 + upper body&lt;br /&gt;
   - heart&lt;br /&gt;
   - upper spine&lt;br /&gt;
   - right lung&lt;br /&gt;
   - left lung&lt;br /&gt;
   + head&lt;br /&gt;
     - brain&lt;br /&gt;
     - mouth&lt;br /&gt;
     - trunk&lt;br /&gt;
     - right tusk&lt;br /&gt;
     - left tusk&lt;br /&gt;
     - right eye&lt;br /&gt;
     - left eye&lt;br /&gt;
     - right ear&lt;br /&gt;
     - left ear&lt;br /&gt;
     - neck&lt;br /&gt;
     - throat&lt;br /&gt;
   + right front leg&lt;br /&gt;
     - right front foot&lt;br /&gt;
   + left front leg&lt;br /&gt;
     - left front foot&lt;br /&gt;
   + lower body&lt;br /&gt;
     - lower spine&lt;br /&gt;
     - guts&lt;br /&gt;
     - tail&lt;br /&gt;
     - liver&lt;br /&gt;
     - stomach&lt;br /&gt;
     - pancreas&lt;br /&gt;
     - spleen&lt;br /&gt;
     - right kidney&lt;br /&gt;
     - left kidney&lt;br /&gt;
     + right rear leg&lt;br /&gt;
       - right rear foot&lt;br /&gt;
     + left rear leg&lt;br /&gt;
       - left rear foot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding]]&lt;br /&gt;
[[Category:Tokens]]&lt;/div&gt;</summary>
		<author><name>Evil4zerggin</name></author>
	</entry>
</feed>