v50 Steam/Premium information for editors
  • 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.
This notice may be cached—the current version can be found here.

Editing 40d:Modding guide

Jump to navigation Jump to search

Warning: You are not logged in.
Your IP address will be recorded in this page's edit history.

You are editing a page for an older version of Dwarf Fortress ("Main" is the current version, not "40d"). Please make sure you intend to do this. If you are here by mistake, see the current page instead.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
{{av}}{{Quality|Masterwork}}
+
{{Old|0.23.130.23a|, the 2D version}}
  
This is intended to be an easy guide for general newbies on how to both edit and add civilizations, creatures, objects, and so on in Dwarf Fortress, both [[Adventure_Mode|adventurer]] and [[Dwarf Fortress Mode|fortress]] modes, without breaking anything too much. Generally breaking stuff is fine! Just always back up your work & the originals, and be patient at having to [[World generation|generate new worlds]] over and over.
+
'''A NEW UPDATE HAS MADE MOST OF THIS INFORMATION REDUNDANT IN REGARDS TO NEW CIVILISATIONS'''
  
This guide was edited for version 0.27.176.39c and may not be accurate for later versions, particularly the examples.
+
This is intended to be an easy guide for general newbies on how to both edit and add civilizations, creatures, objects, and so on in Dwarf Fortress, both [[Adventure_Mode|adventurer]] and [[Dwarf_Fortress_Mode|fortress]] modes, without breaking anything too much. Generally breaking stuff is fine! Just always back up your work + the originals, and be patient at having to [[World_Generation|generate new worlds]] over and over.
 
 
'''See also:''' [[:Category:Modding]]
 
 
 
= Modding Guide =
 
  
 
== Basics of DF modding ==
 
== Basics of DF modding ==
  
All of the data you can edit are stored in the \raw\ folder wherever you saved your DF executable. The raw folder contains two subfolders: graphics (where you insert [[Tilesets|graphic packs]] to make custom tiles), and objects, which contains all the data for generally everything in the game that is not hardcoded. Quite a lot is not hardcoded, so you can edit a wide variety of things in the game.
+
All of the data you can edit are stored in the \raw\ folder wherever you saved your DF executable. The raw folder contains two subfolders: graphics (where you insert [[Object_Tilesets|graphic packs]] to make custom tiles), and objects, which contains all the data for generally everything in the game that is not hardcoded. Quite a lot is not hardcoded, so you can edit a wide variety of things in the game.  
 
 
Editing the [[Raw file|raw text files]] is easy and simple. When you go into the \raw\objects folder you will see a wide variety of text files. When you are modding your game, you can either change existing files or add your own. I personally find it easier just to edit the existing ones in a new \DF\ game folder. When you are changing a token you can simply change the values - these are the numbers/strings after the : in a token entry. For example, [CREATURE:DWARF] is a token in the entity text file, which determines what creatures are used for dwarven civilizations. Simply open the text file, edit what you want, save and close, and generate a new world after you're done editing what you want.
 
  
 
Essentially, everything that can be modded uses text files to determine how they interact with the world or with other objects. With a bit of know-how you can tinker with just about everything.  
 
Essentially, everything that can be modded uses text files to determine how they interact with the world or with other objects. With a bit of know-how you can tinker with just about everything.  
Line 22: Line 16:
  
 
* Always back up the default text files you plan on editing. This way, if your game crashes (due to say, a typo that you can't find) you can simply copy-paste it back in for a 'vanilla' DF.
 
* Always back up the default text files you plan on editing. This way, if your game crashes (due to say, a typo that you can't find) you can simply copy-paste it back in for a 'vanilla' DF.
* You do not need to delete old saves; simply create a new world using your modded files and things should run fine. Just don't try to play a "non-modded" world with modded files! Should you desire to go back to your old sites, make sure you revert to the raw files used for the creation of that world.  
+
* When you edit any of the text files in the raw folder you must do the following: go into the \data\save folder and delete everything in it, including subfolders. Just do a ctrl-A and hit delete. If you try to play a game of DF with edited text files without making a new world first, bad stuff will happen.
 +
++[EDIT 05/01/08]
 +
It seems you do not need to delete old saves; simply create a new world using your modded files and things should run just fine. Should you desire to go back to your old sites, just make sure you revert to the raw files used for the creation of that world. I have not had any trouble "swapping mods" using this method, but would still like verification before this section is deleted.++
 
* In general it's better to make whole new text files for new stuff you're adding rather than editing the existing ones by tagging them onto the bottom. This allows you to keep track of them easier and keeps them all in one place so there's less messing about with tons of files.
 
* In general it's better to make whole new text files for new stuff you're adding rather than editing the existing ones by tagging them onto the bottom. This allows you to keep track of them easier and keeps them all in one place so there's less messing about with tons of files.
* The absolute easiest way to add an entirely new creature/entity/etc is to simply copy-paste an existing one and rename it, then edit the various tokens appropriately.
 
  
 
In addition, if you ''rename'' the any of the \raw\ files themselves (such as 'creature_insects.txt' to 'creature_bugs.txt'), you must find the same filename in the \data\objects\ folder and delete it. This is required because once the world is generated it creates the new files and saves them for use next time the world is needed; without deleting the file you will get duplication errors. This is not necessary if you just don't change any of the filenames.
 
In addition, if you ''rename'' the any of the \raw\ files themselves (such as 'creature_insects.txt' to 'creature_bugs.txt'), you must find the same filename in the \data\objects\ folder and delete it. This is required because once the world is generated it creates the new files and saves them for use next time the world is needed; without deleting the file you will get duplication errors. This is not necessary if you just don't change any of the filenames.
 
It [http://www.bay12games.com/forum/index.php?topic=47445.msg956417#msg956417 has been reported] that the name of the raw files is important as to their contents, such as entity_foo.txt should contain an entity and creature_foo.txt should contain creature(s).
 
  
 
== Modding the civilizations ==
 
== Modding the civilizations ==
  
 
The civilization entries are stored in entity_default.txt. They are quite simple files that are in the following format:
 
The civilization entries are stored in entity_default.txt. They are quite simple files that are in the following format:
 +
  
 
  [ENTITY:ENTITYNAME]
 
  [ENTITY:ENTITYNAME]
 
     [CREATURE:CREATURETYPE]
 
     [CREATURE:CREATURETYPE]
 
     [TRANSLATION:LANGUAGETYPE]
 
     [TRANSLATION:LANGUAGETYPE]
     [BIOME_SUPPORT:BIOMETOKEN:FREQUENCY]
+
     [BIOME_SUPPORT:BIOMETOKEN:FREQENCY]
     ...[OTHER TAGS]...
+
     ...[OTHER NONESSENTIAL TAGS]...
  
At the top of the file you'll see 'entity_default' all by itself.  This word (or "string") must appear at the top of the file and it must match the file name (without extension). All game files require those markers at the top. It may be useful for those with programming experience to think of this as equivalent to a class name.  In languages such as Java, the name of the file and the name of the class are identical so the compiler can recognize and process code from text files into binary data for the actual executable program.
+
At the top of the file you'll see an 'entity_default' all by itself, that must be at the top of the file only. All game files require those markers at the top. You can safely ignore them for now.
  
Next, if you're creating a new civilization in its own text file, be sure to add entity_default, and [OBJECT:ENTITY] at the top of the file.
+
Now what do these mean, exactly? For one, where the tags are located don't generally matter quite a lot. You can add them in any order as long as they're underneath the "[ENTITY:]" token, which is the 'header' of the civilization and lets the game know that everything underneath deals with that civ. The entity token can be anything as long as it's not the same as another one.
  
Now what do these tokens mean, exactly? For one, where the tags are located don't generally matter quite a lot. You can add them in any order as long as they're underneath the "[ENTITY:]" token, which is the 'header' of the civilization and lets the game know that everything underneath deals with that civ. The entity token can be anything as long as it's not the same as another one.
+
'[CREATURE:]' links the civilization with a certain creature defined in a different file. This is the creature you play in adventurer or fortress mode, or that wanders around their towns when you explore them. For example, if you wanted to do something silly you could switch the "DWARF" entry in entity_default.txt with "ELF" and you would be marching elves around in fortress mode.
 
 
'[CREATURE:]' links the civilization with a certain creature defined in a different file. This is the creature you play in adventurer or fortress mode, or that wanders around their towns when you explore them. For example, if you wanted to do something silly you could switch the "DWARF" entry in entity_default.txt with "ELF" and you would be marching elves around in fortress mode, though they would still use dwarven technology and language and names and so forth.
 
  
 
'[TRANSLATION:]' connects the civ to a specific language file that determines things like their natural (untranslated) creature first + last names and city names. The valid ones are HUMAN, DWARF, ELF, and GOBLIN.
 
'[TRANSLATION:]' connects the civ to a specific language file that determines things like their natural (untranslated) creature first + last names and city names. The valid ones are HUMAN, DWARF, ELF, and GOBLIN.
  
'[BIOME_SUPPORT:]' defines biomes that civs will appear in. The 'FREQUENCY' value determines the likelyhood of them appearing there: generally 1 for not very often, up to 3 for very often (ie. dwarves in mountains).
+
'[BIOME_SUPPORT::]' defines biomes that civs will appear in.
  
You can find many details about the rest of the civilization tokens [[Entity token|here]]. The important ones are the CIV_CONTROLLABLE token, which lets you control the civ in dwarf fortress mode and the INDIV_CONTROLLABLE and ADVENTURE_TIER tokens which lets you play the civ in adventure mode via the PLAY NOW! command. Remember that ADVENTURE_TIER must be in order, so if you are adding a new playable race you must set its tier 1 higher (4).
+
You can find many details about the rest of the civilization tokens [[Entity_Tokens|here]]. The important ones are the CIV_CONTROLLABLE token, which lets you control the civ in dwarf fortress mode (by random chance if you have more than one set controllable) and the INDIV_CONTROLLABLE and ADVENTURE_TIER tokens which lets you play the civ in adventure mode via the PLAY NOW! command.
  
If you have more than one civ with the [CIV_CONTROLLABLE] token, groups belonging to that civ will appear in the group selection section on the embark screen, although it is not immediately obvious what species each group may be. While this can be determined from legends mode, experimentation suggests that the topmost species in the 'neighbors' section of the embark screen is the same as the currently selected species: If your group is dwarven, dwarves will be topmost, whilst (say) elves will be topmost if your chosen group is elven. By default, the game seems to choose a group (and therefore a species if there is more than one) at random.  
+
Any token that has to deal with weapons, armor, clothing, etc. are all the items that the civ can build, not necessarily the ones they can wear. For example, you could create a species with no clothes specified, but then rob a clothes shop in adventurer mode and wear everything you want.  
  
Any token that has to deal with weapons, armor, clothing, etc. are all the items that the civ can build, not necessarily the ones they can wear. For example, you could create a species with no clothes specified, but then rob a clothes shop in adventurer mode and wear everything you want, or give them weapons that are too large to wield and they could sell them, but not use them.  
+
[SELECT_SYMBOL:ALL:] and [CULL_SYMBOL:ALL:] are the words that can be randomly generated in names, civs, cities, artifacts, engravings, etc. "SELECT_SYMBOL" means that the civ is far more likely to use those, and CULL_SYMBOL means they never will. You can find a list of every symbol type [[Language|here]].
  
[SELECT_SYMBOL:] and [CULL_SYMBOL:ALL:] are the words that can be randomly generated in names, civs, cities, artifacts, engravings, etc. "SELECT_SYMBOL" means that the civ is far more likely to use those, and CULL_SYMBOL means they never will. You can find a list of every symbol type [[Language|here]]. SUBSELECT_SYMBOL:WAR/BATTLE/SIEGE just determines which language token to use when they begin wars, battles, or sieges in legends mode, ie. 'The Conflict of Craziness' or 'The Siege of Assaults'. All have these as 'violence' by default but they can be changed to any other token.
+
An easy method of creating a civilization is just to copy-paste a similar one to the bottom of the entity_default.txt file and edit things to your liking.
  
'SELECT:SYMBOL:ROAD/TUNNEL/BRIDGE/WALL'  use the special language tokens NAME_ROAD, NAME_TUNNEL, etc. and determines what the civ names their structures. 'SELECT_SYMBOL:REMAINING': are the standard tokens used for the species language.
+
NOTE: With version 32a and higher, if you use [NUISANCE] or [BABYSNATCHER] with older mods then you will get things like wyverns sneaking into your fort knocking everything over, as they're set buildingdestroyer. Just remove the line (nuisance, babysnatcher, sieger) entirely.
 
 
An easy method of creating a civilization is just to copy-paste a similar one to the bottom of the entity_default.txt file and edit things to your liking. Remember to always change the civ's ENTITY: name! This name can be anything as long as it's not already existing.
 
 
 
There are many tokens to play with in the entity file, most of which do something interesting. It's best to simply look through the entity tokens list and figure out for yourself what you want to do with them. The ones of interest are:
 
 
 
* [SIEGER] [BABYSNATCHER] [NUISANCE] These determine what the civ does in relation to other civs. Babysnatchers periodically swipe infants from nearby civs and have them grow up in their own civ (if kidnapped/brainwashed infants grow up and have children, their last names will use their capturer's language files: ie. you will have evil dwarves with the name Urist Deathghouls in a goblin fortress).
 
 
 
* [AT_PEACE_WITH_WILDLIFE] This token, currently set only on elves, will mean they will not attack wild animals and animals will not attack them. This ALSO means that if you bring an elf or two along with you in adventurer mode, don't expect them to help you if you get attacked by cougars!
 
 
 
* [RELIGION_SPHERE] This determines what religious deities will have as spheres when the civilization is generated, along with their subspheres. With a SPHERE_ALIGNMENT set you can also make one more likely than others; ie. Elves have trees, plants, and animals set very high so they are likely to get those more often with their deities.  
 
 
 
* With [DEFAULT_SITE], LIKES_, and TOLERATES_ you can decide where the species will live. DEFAULT_SITE is their home cities and will usually cluster there in large groups. If a civ conquers another and they do not at least tolerate the enemy's home type they will simply destroy it instead of moving in (sometimes they will destroy it anyway).
 
 
 
* [ETHIC:] tokens determine how the species behaves when it comes to certain unpleasant acts. This also determines what reasons the civ will use when going to war: if a nearby civ has something set ACCEPTABLE that they consider UNTHINKABLE, then it is likely they will go to war over it. It also determines a few other things, like what happens to dead foes: Elves have '[ETHIC:EAT_SAPIENT_KILL:ACCEPTABLE]' for example. Goblins defacing their enemies (ie. hanging, stuck on pikes) is [ABUSE_BODIES], as well as ETHIC:MAKE_TROPHY_ tokens set ACCEPTABLE.
 
  
 
== Modding the creatures ==
 
== Modding the creatures ==
Line 80: Line 58:
 
Creature modding is great fun. Essentially you can change nearly any aspect of a creature or completely make your own from scratch. You can either add a new creature to the bottom of an existing creature_thing.txt file or make your own file; just be sure to add the name of the file (without the txt) to the top of it. For example, I tend to use a 'creature_newbies.txt' file myself.
 
Creature modding is great fun. Essentially you can change nearly any aspect of a creature or completely make your own from scratch. You can either add a new creature to the bottom of an existing creature_thing.txt file or make your own file; just be sure to add the name of the file (without the txt) to the top of it. For example, I tend to use a 'creature_newbies.txt' file myself.
  
Modding creatures is exactly similar to modding civs: just a matter of editing, adding, or removing tokens, enclosed in square brackets underneath the creature's [CREATURE:] header. The creature entries contain all the information about each specific creature in the game, from animals to dwarves to goblins to even caravan wagons. Much of the data of a creature is quite self-explanatory; you can find a list of every creature token [[Creature token|here]].
+
Modding creatures is exactly similar to modding civs: just a matter of editing, adding, or removing tokens, enclosed in square brackets underneath the creature's [CREATURE:] header. The creature entries contain all the information about each specific creature in the game, from animals to dwarves to goblins to even caravan wagons. Much of the data of a creature is quite self-explanatory; you can find a list of every creature token [[Creature_Tokens|here]].
  
 
There're some tokens which use temperature values. Dwarf Fortress has it's own temperature scale for this. [[Temperature scale|DF temperature scale]].
 
There're some tokens which use temperature values. Dwarf Fortress has it's own temperature scale for this. [[Temperature scale|DF temperature scale]].
  
Note: If you add a butcherable creature to the game such as a domestic animal, people will automatically wander around wearing its fur or skin as leather items when you are in the game, assuming the creature comes from the civ's biome (natural area). So don't be surprised to see 'duck leather armor' or something if you add ducks. Also note if you add a species that has a naturally high body temperature (magma snakes for example) and set it butcherable, people will automatically be generated wearing their skins.. and then since the skins have a naturally high temperature too they tend to burst into flame immediately because they were wearing a +magma snake leather sock+. Woops.
+
Note: If you add a butcherable creature to the game such as a domestic animal, people will automatically wander around wearing its fur or skin as leather items when you are in the game, assuming the creature comes from the civ's biome (natural area). So don't be surprised to see 'duck leather armor' or something if you add ducks.
 
 
You'll notice many of the creature entries have tokens that other ones don't have. If a token is not present it's considered "default", though sometimes the default can be hard to figure out. All of the creatures referenced in the entity files are present in creature_standard.txt and require certain other tokens that non-entity creatures do not need, such as [INTELLIGENT] and [CANOPENDOORS].
 
 
 
For example, if you wanted to allow your dwarves to eat bones from the refuse stockpile (ew), you would open up creature_standard.txt, add [BONECARN] somewhere in the CREATURE_DWARF: entry at the top, and then save and close it, then generate a new world. Bon appetit!  *Notice that this has the unfortunate side effect of making them unable to eat plants.*
 
 
 
[[User:Deon#How_to|How to add a new creature.]]
 
 
 
If you make a totally new creature, feel free to add it [[Modification:New creatures|here]] along with any additional information.
 
 
 
  
 
== Modding items ==
 
== Modding items ==
Line 101: Line 70:
 
For example, let's look at the entry for, of course, the thong:
 
For example, let's look at the entry for, of course, the thong:
  
[ITEM_PANTS:ITEM_PANTS_THONG]
+
[ITEM_PANTS:ITEM_PANTS_THONG]
[NAME:thong:thongs]
+
[NAME:thong:thongs]
[WEIGHT:10]
+
[WEIGHT:10]
[VALUE:10]
+
[VALUE:10]
[BLOCKPOWER:5]
+
[BLOCKPOWER:5]
[LAYER:UNDER]
+
[LAYER:UNDER]
[COVERAGE:25]
+
[COVERAGE:25]
[LAYER_SIZE:10]
+
[LAYER_SIZE:10]
[LAYER_PERMIT:30]
+
[LAYER_PERMIT:30]
[MATERIAL_SIZE:1]
+
[MATERIAL_SIZE:1]
[SOFT]
+
[SOFT]
[LEATHER]
+
[LEATHER]
  
 
Most of these are pretty obvious if one compares them to the other entries. Now, if you wanted to mod these to turn them into metal thongs (ouch!), you would simply have to add [METAL] to it somewhere, and probably [HARD] instead of [SOFT]. Simple!  
 
Most of these are pretty obvious if one compares them to the other entries. Now, if you wanted to mod these to turn them into metal thongs (ouch!), you would simply have to add [METAL] to it somewhere, and probably [HARD] instead of [SOFT]. Simple!  
Line 161: Line 130:
 
If you wanted someone to be able to break someone else's throat (like breaking a joint) and suffocate them, just add the [JOINT], [BREATHE], and possibly [NERVOUS] to the throat object's tokens.
 
If you wanted someone to be able to break someone else's throat (like breaking a joint) and suffocate them, just add the [JOINT], [BREATHE], and possibly [NERVOUS] to the throat object's tokens.
  
A 'BODYGLOSS', which you can sometimes find in the creature entries, are simply replacement words for certain defined words in a creature. For example, you'll find the bodygloss [BODYGLOSS:CLAW_HAND:hand:claw] in the body_default.txt, and then you can use this in a creature with '[BODYGLOSS:CLAW_HAND]' and it will replace all instances of "hand" with "claw" in that creature. For all intent and purpose the body part will still function as the proper part, though.
+
A 'BODYGLOSS', which you can sometimes find in the creature entries, are simply replacement words for certain defined words in a creature. For example, you'll find the bodygloss [BODYGLOSS:CLAW_HAND:hand:claw] in the body_default.txt, and then you can use this in a creature with '[BODYGLOSS:CLAW_HAND]' and it will replace all instances of "hand" with "claw" in that creature.
  
Note that only creatures with the [EQUIPS] token (and possibly [INTELLIGENT]) and a civ that can create clothes/armor/weapons will be able to actually wear stuff. Also, if the creature size is too large for the clothes they will also not be able to wear it.
+
Note that only creatures with the [EQUIPS] token (and possibly [INTELLIGENT]) and a civ that can create clothes/armor/weapons will be able to actually wear stuff.
  
 
== Example one: dark dwarves ==
 
== Example one: dark dwarves ==
Line 169: Line 138:
 
These examples will go over the details for creating several new things as well as editing some old ones.
 
These examples will go over the details for creating several new things as well as editing some old ones.
  
Remember: Do NOT load an old save after genning a new world with different raws. It's much safer to simply delete all your old saves after you've modded things, or simply copy-and-paste a fresh version of DF into a new folder.  
+
Remember: delete the contents of your \save\ folder before editing any of the game text files, and always back up the old ones so you don't have to download a new copy of dwarf fortress if you messed something up and can't remember how to fix it.
  
  
 
First, we're going to create a new, evil civilization of dwarves called, unsurprisingly, dark dwarves. This will be quite easy, though with a few fundamental differences. Mainly, that dark dwarves are evil and more warlike than regular dwarves.
 
First, we're going to create a new, evil civilization of dwarves called, unsurprisingly, dark dwarves. This will be quite easy, though with a few fundamental differences. Mainly, that dark dwarves are evil and more warlike than regular dwarves.
 +
 +
First, back up your stuff and delete your saved worlds. Yes, I'm saying that again.
  
 
Now, open up entity_default.txt. All your species civilizations will be in there. We're going to make a whole new one for our dark dwarves. In many ways it'll be a simple copy-paste job of regular dwarves, then tweaking some things.
 
Now, open up entity_default.txt. All your species civilizations will be in there. We're going to make a whole new one for our dark dwarves. In many ways it'll be a simple copy-paste job of regular dwarves, then tweaking some things.
  
Add this to the TOP of the entity_default file, before the dwarf entry:
+
Add this to the bottom of the entity_default file:
  
  [ENTITY:DARK_DWARF]
+
  [ENTITY:DARK_DWARVES]
[CIV_CONTROLLABLE]
+
    [CIV_CONTROLLABLE]
[CREATURE:DARK_DWARF]
+
    [CREATURE:DARK_DWARF]
[TRANSLATION:DWARF]
+
    [TRANSLATION:DWARF]
[DIGGER:ITEM_WEAPON_PICK]
+
    [START_BIOME:MOUNTAIN]
[WEAPON:ITEM_WEAPON_AXE_BATTLE]
+
    [BIOME_SUPPORT:ANY_WETLAND:1]
    [WEAPON:ITEM_WEAPON_WHIP]
+
    [BIOME_SUPPORT:ANY_DESERT:1]
[WEAPON:ITEM_WEAPON_FLAIL]
+
    [BIOME_SUPPORT:ANY_FOREST:3]
[WEAPON:ITEM_WEAPON_SCOURGE]
+
    [BIOME_SUPPORT:MOUNTAIN:3]
[WEAPON:ITEM_WEAPON_DAGGER_LARGE]
+
    [BIOME_SUPPORT:ANY_GRASSLAND:4]
[WEAPON:ITEM_WEAPON_MACE]
+
    [BIOME_SUPPORT:ANY_SAVANNA:4]
[WEAPON:ITEM_WEAPON_SWORD_SHORT]
+
    [BIOME_SUPPORT:ANY_SHRUBLAND:3]
[WEAPON:ITEM_WEAPON_SCIMITAR]
+
    [BIOME_SUPPORT:ANY_RIVER:1]
[WEAPON:ITEM_WEAPON_CROSSBOW]
+
    [DIGGER:ITEM_WEAPON_PICK]
[AMMO:ITEM_AMMO_BOLTS]
+
    [WEAPON:ITEM_WEAPON_AXE_BATTLE]
[ARMOR:ITEM_ARMOR_PLATEMAIL:COMMON]
+
    [WEAPON:ITEM_WEAPON_WHIP]
[ARMOR:ITEM_ARMOR_CHAINMAIL:COMMON]
+
    [WEAPON:ITEM_WEAPON_FLAIL]
[ARMOR:ITEM_ARMOR_LEATHER:COMMON]
+
    [WEAPON:ITEM_WEAPON_SCOURGE]
[ARMOR:ITEM_ARMOR_COAT:COMMON]
+
    [WEAPON:ITEM_WEAPON_DAGGER_LARGE]
[ARMOR:ITEM_ARMOR_SHIRT:COMMON]
+
    [WEAPON:ITEM_WEAPON_MACE]
[ARMOR:ITEM_ARMOR_CLOAK:COMMON]
+
    [WEAPON:ITEM_WEAPON_SWORD_SHORT]
[ARMOR:ITEM_ARMOR_TOGA:UNCOMMON]
+
    [WEAPON:ITEM_WEAPON_CROSSBOW]
[ARMOR:ITEM_ARMOR_VEST:COMMON]
+
    [AMMO:ITEM_AMMO_BOLTS]
[ARMOR:ITEM_ARMOR_DRESS:COMMON]
+
    [ARMOR:ITEM_ARMOR_PLATEMAIL:COMMON]
[ARMOR:ITEM_ARMOR_ROBE:COMMON]
+
    [ARMOR:ITEM_ARMOR_CHAINMAIL:COMMON]
[HELM:ITEM_HELM_HELM:COMMON]
+
    [ARMOR:ITEM_ARMOR_LEATHER:COMMON]
[HELM:ITEM_HELM_HOOD:COMMON]
+
    [ARMOR:ITEM_ARMOR_COAT:COMMON]
[GLOVES:ITEM_GLOVES_GAUNTLETS:COMMON]
+
    [ARMOR:ITEM_ARMOR_SHIRT:COMMON]
[GLOVES:ITEM_GLOVES_GLOVES:COMMON]
+
    [ARMOR:ITEM_ARMOR_CLOAK:COMMON]
[SHOES:ITEM_SHOES_SHOES:COMMON]
+
    [ARMOR:ITEM_ARMOR_TOGA:UNCOMMON]
[SHOES:ITEM_SHOES_BOOTS:COMMON]
+
    [ARMOR:ITEM_ARMOR_VEST:COMMON]
[SHOES:ITEM_SHOES_BOOTS_LOW:COMMON]
+
    [ARMOR:ITEM_ARMOR_DRESS:COMMON]
[PANTS:ITEM_PANTS_PANTS:COMMON]
+
    [ARMOR:ITEM_ARMOR_ROBE:COMMON]
[PANTS:ITEM_PANTS_GREAVES:COMMON]
+
    [HELM:ITEM_HELM_HELM:COMMON]
[PANTS:ITEM_PANTS_LEGGINGS:COMMON]
+
    [HELM:ITEM_HELM_HOOD:COMMON]
[SHIELD:ITEM_SHIELD_SHIELD]
+
    [GLOVES:ITEM_GLOVES_GAUNTLETS:COMMON]
[SHIELD:ITEM_SHIELD_BUCKLER]
+
    [GLOVES:ITEM_GLOVES_GLOVES:COMMON]
[SIEGEAMMO:ITEM_SIEGEAMMO_BALLISTA]
+
    [SHOES:ITEM_SHOES_SHOES:COMMON]
[TRAPCOMP:ITEM_TRAPCOMP_GIANTAXEBLADE]
+
    [SHOES:ITEM_SHOES_BOOTS:COMMON]
[TRAPCOMP:ITEM_TRAPCOMP_ENORMOUSCORKSCREW]
+
    [SHOES:ITEM_SHOES_BOOTS_LOW:COMMON]
[TRAPCOMP:ITEM_TRAPCOMP_SPIKEDBALL]
+
    [PANTS:ITEM_PANTS_PANTS:COMMON]
[TRAPCOMP:ITEM_TRAPCOMP_LARGESERRATEDDISC]
+
    [PANTS:ITEM_PANTS_GREAVES:COMMON]
[TOY:ITEM_TOY_HAMMER]
+
    [PANTS:ITEM_PANTS_LEGGINGS:COMMON]
[TOY:ITEM_TOY_AXE]
+
    [SHIELD:ITEM_SHIELD_SHIELD]
[TOY:ITEM_TOY_MINIFORGE]
+
    [SHIELD:ITEM_SHIELD_BUCKLER]
[INSTRUMENT:ITEM_INSTRUMENT_TRUMPET]
+
    [SIEGEAMMO:ITEM_SIEGEAMMO_BALLISTA]
[INSTRUMENT:ITEM_INSTRUMENT_DRUM]
+
    [TRAPCOMP:ITEM_TRAPCOMP_GIANTAXEBLADE]
[CLOTHING]
+
    [TRAPCOMP:ITEM_TRAPCOMP_ENORMOUSCORKSCREW]
[SUBTERRANEAN_CLOTHING]
+
    [TRAPCOMP:ITEM_TRAPCOMP_SPIKEDBALL]
[CURRENCY_BY_YEAR]
+
    [TRAPCOMP:ITEM_TRAPCOMP_LARGESERRATEDDISC]
[CURRENCY:COPPER:1]
+
    [TOY:ITEM_TOY_HAMMER]
[CURRENCY:SILVER:5]
+
    [TOY:ITEM_TOY_AXE]
[CURRENCY:GOLD:15]
+
    [TOY:ITEM_TOY_MINIFORGE]
[SELECT_SYMBOL:WAR:NAME_WAR]
+
    [INSTRUMENT:ITEM_INSTRUMENT_TRUMPET]
[SUBSELECT_SYMBOL:WAR:VIOLENT]
+
    [INSTRUMENT:ITEM_INSTRUMENT_DRUM]
[SELECT_SYMBOL:BATTLE:NAME_BATTLE]
+
    [SIEGER]
[SUBSELECT_SYMBOL:BATTLE:VIOLENT]
+
    [CLOTHING]
[SELECT_SYMBOL:SIEGE:NAME_SIEGE]
+
    [SUBTERRANEAN_CLOTHING]
[SUBSELECT_SYMBOL:SIEGE:VIOLENT]
+
    [CURRENCY_BY_YEAR]
[SELECT_SYMBOL:ROAD:NAME_ROAD]
+
    [CURRENCY:COPPER:1]
[SELECT_SYMBOL:TUNNEL:NAME_TUNNEL]
+
    [CURRENCY:SILVER:5]
[SELECT_SYMBOL:BRIDGE:NAME_BRIDGE]
+
    [CURRENCY:ELECTRUM:10]
[SELECT_SYMBOL:WALL:NAME_WALL]
+
    [CURRENCY:GOLD:15]
[SELECT_SYMBOL:REMAINING:ARTIFICE]
+
    [CURRENCY:PLATINUM:30]
[SELECT_SYMBOL:REMAINING:EARTH]
+
    [SELECT_SYMBOL:ALL:EVIL]
[SELECT_SYMBOL:REMAINING:EVIL]
+
    [SELECT_SYMBOL:ALL:EARTH]
[SELECT_SYMBOL:REMAINING:UNTOWARD]
+
    [SELECT_SYMBOL:ALL:VIOLENT]
[SELECT_SYMBOL:REMAINING:UGLY]
+
    [SELECT_SYMBOL:ALL:DEATH]
[SELECT_SYMBOL:REMAINING:EARTH]
+
    [SELECT_SYMBOL:ALL:NEGATIVE]
[CULL_SYMBOL:ALL:DOMESTIC]
+
    [SELECT_SYMBOL:ALL:UGLY]
[CULL_SYMBOL:ALL:FLOWERY]
+
    [SELECT_SYMBOL:ALL:UNTOWARD]
[CULL_SYMBOL:ALL:HOLY]
+
    [CULL_SYMBOL:ALL:DOMESTIC]
[CULL_SYMBOL:ALL:PEACE]
+
    [CULL_SYMBOL:ALL:FLOWERY]
[CULL_SYMBOL:ALL:NEGATOR]
+
    [CULL_SYMBOL:ALL:HOLY]
[CULL_SYMBOL:ALL:GOOD]
+
    [CULL_SYMBOL:ALL:PEACE]
[METAL_PREF]
+
    [CULL_SYMBOL:ALL:NEGATOR]
[GEM_PREF]
+
    [CULL_SYMBOL:ALL:GOOD]
[STONE_PREF]
+
    [METAL_PREF]
[INDOOR_FARMING]
+
    [GEM_PREF]
[USE_CAVE_ANIMALS]
+
    [STONE_PREF]
[USE_ANIMAL_PRODUCTS]
+
    [INDOOR_FARMING]
[USE_EVIL_ANIMALS]
+
    [USE_CAVE_ANIMALS]
[USE_EVIL_PLANTS]
+
    [USE_EVIL_ANIMALS]
[USE_EVIL_WOOD]
+
    [USE_ANIMAL_PRODUCTS]
[COMMON_DOMESTIC_PACK]
+
    [COMMON_DOMESTIC_PACK]
[COMMON_DOMESTIC_PULL]
+
    [COMMON_DOMESTIC_PULL]
[COMMON_DOMESTIC_MOUNT]
+
    [COMMON_DOMESTIC_MOUNT]
[COMMON_DOMESTIC_PET]
+
    [COMMON_DOMESTIC_PET]
[USE_MISC_PROCESSED_WOOD_PRODUCTS]
 
[EQUIPMENT_IMPROVEMENTS]
 
[ART_FACET_MODIFIER:GOOD:0]
 
[ART_FACET_MODIFIER:EVIL:512]
 
[ITEM_IMPROVEMENT_MODIFIER:RINGS_HANGING:0]
 
[ITEM_IMPROVEMENT_MODIFIER:BANDS:0]
 
[ITEM_IMPROVEMENT_MODIFIER:SPIKES:384]
 
[ADVENTURE_TIER:4]
 
[FRIENDLY_COLOR:1:0:1]
 
[DEFAULT_SITE_TYPE:CAVE_DETAILED]
 
[LIKES_SITE:CAVE_DETAILED]
 
[TOLERATES_SITE:CITY]
 
[TOLERATES_SITE:TREE_CITY]
 
[TOLERATES_SITE:CAVE_DETAILED]
 
[TOLERATES_SITE:CAVE]
 
[LEADER_TYPE:KING]
 
[SITE_LEADER_TYPE:STANDARD]
 
[START_BIOME:MOUNTAIN]
 
[BIOME_SUPPORT:ANY_WETLAND:1]
 
[BIOME_SUPPORT:ANY_DESERT:1]
 
[BIOME_SUPPORT:ANY_OCEAN:1]
 
[BIOME_SUPPORT:ANY_LAKE:1]
 
[BIOME_SUPPORT:MOUNTAIN:3]
 
[BIOME_SUPPORT:ANY_GRASSLAND:1]
 
[BIOME_SUPPORT:ANY_SAVANNA:1]
 
[BIOME_SUPPORT:ANY_SHRUBLAND:1]
 
[BIOME_SUPPORT:ANY_RIVER:1]
 
[DIPLOMAT]
 
[DIPLOMAT_BODYGUARDS]
 
[MERCHANT_BODYGUARDS]
 
[ACTIVE_SEASON:WINTER]
 
[SIEGER]
 
[MAX_STARTING_CIV_NUMBER:3]
 
[START_GROUP_NUMBER:10]
 
[MAX_POP_NUMBER:10000]
 
[MAX_SITE_POP_NUMBER:200]
 
[RELIGION:PANTHEON]
 
[RELIGION_SPHERE:FORTRESSES]
 
[RELIGION_SPHERE:JEWELS]
 
[RELIGION_SPHERE:METALS]
 
[RELIGION_SPHERE:MINERALS]
 
[RELIGION_SPHERE:MOUNTAINS]
 
[RELIGION_SPHERE:WEALTH]
 
[RELIGION_SPHERE:NIGHT]
 
[RELIGION_SPHERE:WAR]
 
[RELIGION_SPHERE:DISEASE]
 
[RELIGION_SPHERE:FIRE]
 
[MAYOR]
 
[WANDERER]
 
[BEAST_HUNTER]
 
[SCOUT]
 
[PERMITTED_JOB:MINER]
 
[PERMITTED_JOB:CARPENTER]
 
[PERMITTED_JOB:BOWYER]
 
[PERMITTED_JOB:WOODCUTTER]
 
[PERMITTED_JOB:ENGRAVER]
 
[PERMITTED_JOB:MASON]
 
[PERMITTED_JOB:ANIMAL_CARETAKER]
 
[PERMITTED_JOB:ANIMAL_TRAINER]
 
[PERMITTED_JOB:HUNTER]
 
[PERMITTED_JOB:TRAPPER]
 
[PERMITTED_JOB:ANIMAL_DISSECTOR]
 
[PERMITTED_JOB:FURNACE_OPERATOR]
 
[PERMITTED_JOB:WEAPONSMITH]
 
[PERMITTED_JOB:ARMORER]
 
[PERMITTED_JOB:BLACKSMITH]
 
[PERMITTED_JOB:METALCRAFTER]
 
[PERMITTED_JOB:GEM_CUTTER]
 
[PERMITTED_JOB:GEM_SETTER]
 
[PERMITTED_JOB:WOODCRAFTER]
 
[PERMITTED_JOB:STONECRAFTER]
 
[PERMITTED_JOB:LEATHERWORKER]
 
[PERMITTED_JOB:BONE_CARVER]
 
[PERMITTED_JOB:WEAVER]
 
[PERMITTED_JOB:CLOTHIER]
 
[PERMITTED_JOB:GLASSMAKER]
 
[PERMITTED_JOB:STRAND_EXTRACTOR]
 
[PERMITTED_JOB:FISHERMAN]
 
[PERMITTED_JOB:FISH_DISSECTOR]
 
[PERMITTED_JOB:FISH_CLEANER]
 
[PERMITTED_JOB:CHEESE_MAKER]
 
[PERMITTED_JOB:MILKER]
 
[PERMITTED_JOB:COOK]
 
[PERMITTED_JOB:THRESHER]
 
[PERMITTED_JOB:MILLER]
 
[PERMITTED_JOB:BUTCHER]
 
[PERMITTED_JOB:TANNER]
 
[PERMITTED_JOB:DYER]
 
[PERMITTED_JOB:PLANTER]
 
[PERMITTED_JOB:HERBALIST]
 
[PERMITTED_JOB:BREWER]
 
[PERMITTED_JOB:SOAP_MAKER]
 
[PERMITTED_JOB:POTASH_MAKER]
 
[PERMITTED_JOB:LYE_MAKER]
 
[PERMITTED_JOB:WOOD_BURNER]
 
[PERMITTED_JOB:MECHANIC]
 
[PERMITTED_JOB:SIEGE_ENGINEER]
 
[PERMITTED_JOB:SIEGE_OPERATOR]
 
[PERMITTED_JOB:PUMP_OPERATOR]
 
[PERMITTED_JOB:CLERK]
 
[PERMITTED_JOB:ADMINISTRATOR]
 
[PERMITTED_JOB:TRADER]
 
[PERMITTED_JOB:ARCHITECT]
 
[WORLD_CONSTRUCTION:TUNNEL]
 
[WORLD_CONSTRUCTION:BRIDGE]
 
[WORLD_CONSTRUCTION:ROAD]
 
[ETHIC:KILL_ENTITY_MEMBER:PUNISH_CAPITAL]
 
[ETHIC:KILL_NEUTRAL:ACCEPTABLE]
 
[ETHIC:KILL_ENEMY:ACCEPTABLE]
 
[ETHIC:KILL_ANIMAL:ACCEPTABLE]
 
[ETHIC:KILL_PLANT:ACCEPTABLE]
 
[ETHIC:TORTURE_AS_EXAMPLE:ACCEPTABLE]
 
[ETHIC:TORTURE_FOR_INFORMATION:ACCEPTABLE]
 
[ETHIC:TORTURE_FOR_FUN:PERSONAL_MATTER]
 
[ETHIC:TORTURE_ANIMALS:ACCEPTABLE]
 
[ETHIC:TREASON:PUNISH_CAPITAL]
 
[ETHIC:OATH_BREAKING:PUNISH_CAPITAL]
 
[ETHIC:LYING:PERSONAL_MATTER]
 
[ETHIC:VANDALISM:ACCEPTABLE]
 
[ETHIC:TRESPASSING:PUNISH_SERIOUS]
 
[ETHIC:THEFT:PUNISH_SERIOUS]
 
[ETHIC:ASSAULT:PUNISH_SERIOUS]
 
[ETHIC:SLAVERY:ACCEPTABLE]
 
[ETHIC:EAT_SAPIENT_OTHER:ACCEPTABLE]
 
[ETHIC:EAT_SAPIENT_KILL:ACCEPTABLE]
 
[ETHIC:MAKE_TROPHY_SAME_RACE:ACCEPTABLE]
 
[ETHIC:MAKE_TROPHY_SAPIENT:ACCEPTABLE]
 
[ETHIC:MAKE_TROPHY_ANIMAL:ACCEPTABLE]
 
[WILL_ACCEPT_TRIBUTE]
 
  
  
 
The fun part is that your dark dwarves will, thanks to the specified symbols, have some crazy names that you'd never see with regular dwarves (one of the fortresses it generated was called "Crowanus", for example). If you dislike having bad language, just remove the [SELECT_SYMBOL:ALL:UNTOWARD].
 
The fun part is that your dark dwarves will, thanks to the specified symbols, have some crazy names that you'd never see with regular dwarves (one of the fortresses it generated was called "Crowanus", for example). If you dislike having bad language, just remove the [SELECT_SYMBOL:ALL:UNTOWARD].
  
The main differences you'll see here compared to the dwarf entry is that they have different weapons, toys, instruments (thanks to their warlike nature, they build less of them) and [USE_EVIL_ANIMALS] is turned on: this will do nothing in dwarf fort mode but you'll see tamed trolls and ogres in their fortresses in adventurer mode. Many of their other tokens are changed as well, to make them more violent and evil. For example, they will eat their foes like elves do. Yum!
+
The main differences you'll see here compared to the dwarf entry is that they have different weapons, toys, instruments (thanks to their warlike nature, they build less of them) and [USE_EVIL_ANIMALS] is turned on: this will do nothing in dwarf fort mode but you'll see tamed trolls and ogres in their fortresses in adventurer mode.  
  
 
Now, we need to build the DARK_DWARF creature. Create a new text file called 'creature_new.txt'. Immediately, add the following:
 
Now, we need to build the DARK_DWARF creature. Create a new text file called 'creature_new.txt'. Immediately, add the following:
  
 
  creature_new
 
  creature_new
+
 
 
  [OBJECT:CREATURE]
 
  [OBJECT:CREATURE]
  
 
That'll make this text file recognized as a creature file. Now, we simply add our dark_dwarf creature:
 
That'll make this text file recognized as a creature file. Now, we simply add our dark_dwarf creature:
 
  
 
  [CREATURE:DARK_DWARF]
 
  [CREATURE:DARK_DWARF]
[NAME:dark dwarf:dark dwarves:dark dwarven]
+
    [NAME:dark dwarf:dark dwarves:dark dwarven]
[TILE:1][COLOR:3:0:0]
+
    [TILE:1][COLOR:3:0:0]
[GENPOWER:3]
+
    [GENPOWER:3]
[INTELLIGENT]
+
    [BUTCHERABLE_NONSTANDARD]
[TRANCES]
+
    [INTELLIGENT]
[EVIL]
+
    [TRANCES]
[CANOPENDOORS]
+
    [CANOPENDOORS]
[PREFSTRING:beards]
+
    [LIKES_FIGHTING]
[PREFSTRING:violent tempers]
+
    [PREFSTRING:beards]
[PREFSTRING:sullying of the dead]
+
    [PREFSTRING:violent tempers]
[BODY:HUMANOID:2EYES:2EARS:NOSE:2LUNGS:HEART:GUTS:ORGANS:HUMANOID_JOINTS:THROAT:NECK:SPINE:BRAIN:5FINGERS:5TOES:MOUTH]
+
    [BODY:HUMANOID:2EYES:2EARS:NOSE:2LUNGS:HEART:GUTS:ORGANS:HUMANOID_JOINTS:THROAT:NECK:SPINE:BRAIN:5FINGERS:5TOES:MOUTH]
[STOUT]
+
    [STOUT]
[MAXAGE:250:270]
+
    [MAXAGE:150:170]
[ATTACK:MAIN:BYTYPE:GRASP:punch:punches:1:2:BLUDGEON][ATTACKFLAG_WITH]
+
    [ATTACK:MAIN:BYTYPE:GRASP:punch:punches:1:2:BLUDGEON][ATTACKFLAG_WITH]
[ATTACK:SECOND:BYTYPE:MOUTH:bite:bites:1:1:GORE][ATTACKFLAG_CANLATCH]
+
    [ATTACK:SECOND:BYTYPE:MOUTH:bite:bites:1:1:GORE][ATTACKFLAG_CANLATCH]
[CHILD:12][BABY:1][MULTIPLE_LITTER_RARE]
+
    [CHILD:12][BABY:1][MULTIPLE_LITTER_RARE]
[DAMBLOCK:1]
+
    [DAMBLOCK:1]
[FAT:3]
+
    [FAT:3]
[SIZE:6]
+
    [SIZE:6]
[EQUIPS]
+
    [EQUIPS]
[CAVE_ADAPT]
+
    [CAVE_ADAPT]
[NOCTURNAL]
+
    [NOCTURNAL]
[CRAFTSMAN_NAME:craftsdwarf:craftsdwarves]
+
    [CRAFTSMAN_NAME:craftsdwarf:craftsdwarves]
[FISHERMAN_NAME:fisherdwarf:fisherdwarves]
+
    [FISHERMAN_NAME:fisherdwarf:fisherdwarves]
[HAMMERMAN_NAME:hammerdwarf:hammerdwarves]
+
    [HAMMERMAN_NAME:hammerdwarf:hammerdwarves]
[SPEARMAN_NAME:speardwarf:speardwarves]
+
    [SPEARMAN_NAME:speardwarf:speardwarves]
[CROSSBOWMAN_NAME:marksdwarf:marksdwarves]
+
    [CROSSBOWMAN_NAME:marksdwarf:marksdwarves]
[AXEMAN_NAME:axedwarf:axedwarves]
+
    [AXEMAN_NAME:axedwarf:axedwarves]
[SWORDSMAN_NAME:swordsdwarf:swordsdwarves]
+
    [SWORDSMAN_NAME:swordsdwarf:swordsdwarves]
[MACEMAN_NAME:macedwarf:macedwarves]
+
    [MACEMAN_NAME:macedwarf:macedwarves]
[PIKEMAN_NAME:pikedwarf:pikedwarves]
+
    [PIKEMAN_NAME:pikedwarf:pikedwarves]
[BOWMAN_NAME:bowdwarf:bowdwarves]
+
    [BOWMAN_NAME:bowdwarf:bowdwarves]
[SPEECH:dwarf.txt]
+
    [SPEECH:dwarf.txt]
[STANDARD_FLESH]
+
    [STANDARD_FLESH]
[HOMEOTHERM:10067]
+
    [HOMEOTHERM:10067]
[LAYERING:50]
+
    [LAYERING:50]
[SWIMS_LEARNED][SWIM_SPEED:2500]
+
    [EVIL]
[PERSONALITY:ANGER:25:75:100]
 
[PERSONALITY:IMMODERATION:0:75:100]
 
[PERSONALITY:EXCITEMENT_SEEKING:0:60:100]
 
[PERSONALITY:CHEERFULNESS:0:10:90]
 
[PERSONALITY:ALTRUISM:0:25:50]
 
[PERSONALITY:MODESTY:0:20:90]
 
[PERSONALITY:SYMPATHY:0:25:50]
 
[PERSONALITY:VULNERABILITY:0:25:100]
 
[PERSONALITY:STRAIGHTFORWARDNESS:25:65:100]
 
[PERSONALITY:SELF_DISCIPLINE:30:75:100]
 
  
  
This is largely a copy of the regular dwarves, but with several differences: [LIKES_FIGHTING] will give them happy thoughts when they have fought something, [NOCTURNAL] means they like nights rather than days, and [EVIL] means on the adventurer map their fortresses will tend to end up on evil tiles rather than good ones. Otherwise, they are exactly the same as regular dwarves. To make them extra evil, add [BONECARN] somewhere in there and they can eat bones (they'll actually haul them from your refuse pit to the dining table, yum), but will sometimes (though rarely) choke to death on them{{verify}}. Bear in mind that [BONECARN] implies [CARNIVORE], so they won't eat vegetables making the game much harder. Also, they do not require booze to stay happy (though will happily drink it anyway if they have to).
+
This is largely a copy of the regular dwarves, but with several differences: [LIKES_FIGHTING] will give them happy thoughts when they have fought something, [NOCTURNAL] means they like nights rather than days, and [EVIL] means on the adventurer map their fortresses will tend to end up on evil tiles rather than good ones. Otherwise, they are exactly the same as regular dwarves. To make them extra evil, add [BONECARN] somewhere in there and they can eat bones (they'll actually haul them from your refuse pit to the dining table, yum), but will sometimes (though rarely) choke to death on them. Also, they do not require booze to stay happy (though will happily drink it anyway if they have to).  
  
There! That's all we need to do in order to add our civilization. Just create a new world and they'll be there: however, when you go to adventurer mode, all (or none) of your dwarf entries might be replaced with dark dwarves, so it's really a matter of luck. When you start a new fortress, there will be a 50-50 chance of playing either as dwarves or dark dwarves. The easiest way to tell if a civ is a dark dwarven is if the name is rather unpleasant. 'The Fortress of Rapes' for example would probably not be a standard dwarven one. Remove [CIV_CONTROLLABLE] from the standard dwarves if you only want to play as dark.
+
There! That's all we need to do in order to add our civilization. Just create a new world and they'll be there: however, when you go to adventurer mode, all (or none) of your dwarf entries might be replaced with dark dwarves, so it's really a matter of luck. When you start a new fortress, there will be a 50-50 chance of playing either as dwarves or dark dwarves.
  
 
== Example two: "Arachnid" playable creature ==
 
== Example two: "Arachnid" playable creature ==
  
This time, we're going to add a new playable creature to adventurer mode, but not playable in fortress mode. An 'arachnid' is a large, powerful, evil half-elf, half-spider (no copyright violations here!): they are too big to wear standard equipment and are quite nasty enough without it anyway. The downside to playing them is that since they do not form standard civilizations, you cannot start them at a specific location nor will they have any weapon, armor, or [[wrestling]] skills to start out.
+
This time, we're going to add a new playable creature to adventurer mode, but not playable in fortress mode. An 'arachnid' is a large, powerful, evil half-elf, half-spider (no copyright violations here!): they are too big to wear standard equipment and are quite nasty enough without it anyway. The downside to playing them is that since they do not form standard civilizations, you cannot start them at a specific location nor will they have any weapon, armor, or [[wrestling]] skills to start out. Oh well.
  
First off, we need to add a civilization entry in entity_default.txt. Open it up and add this to the top of the file:
+
First off, we need to add a civilization entry in entity_default.txt. Open it up and add this to the bottom of the file:
  
 
  [ENTITY:ARACHNIDS]
 
  [ENTITY:ARACHNIDS]
Line 475: Line 306:
 
     [INDIV_CONTROLLABLE]
 
     [INDIV_CONTROLLABLE]
 
     [ADVENTURE_TIER:4]
 
     [ADVENTURE_TIER:4]
Note: adventure_tier should be 5 if you also have the dark dwarves.
 
 
     [TRANSLATION:ELF]
 
     [TRANSLATION:ELF]
 +
    [CLOTHING]
 +
    [SUBTERRANEAN_CLOTHING]
 +
    [ITEM_THIEF]
 
     [BIOME_SUPPORT:ANY_WETLAND:2]
 
     [BIOME_SUPPORT:ANY_WETLAND:2]
 
     [BIOME_SUPPORT:ANY_DESERT:3]
 
     [BIOME_SUPPORT:ANY_DESERT:3]
Line 485: Line 318:
 
     [BIOME_SUPPORT:ANY_SHRUBLAND:1]
 
     [BIOME_SUPPORT:ANY_SHRUBLAND:1]
 
     [BIOME_SUPPORT:ANY_RIVER:2]
 
     [BIOME_SUPPORT:ANY_RIVER:2]
    [START_BIOME:MOUNTAIN]
 
 
     [SELECT_SYMBOL:ALL:EVIL]
 
     [SELECT_SYMBOL:ALL:EVIL]
 
     [SELECT_SYMBOL:ALL:VIOLENT]
 
     [SELECT_SYMBOL:ALL:VIOLENT]
Line 496: Line 328:
 
     [CULL_SYMBOL:ALL:NEGATOR]
 
     [CULL_SYMBOL:ALL:NEGATOR]
 
     [CULL_SYMBOL:ALL:GOOD]
 
     [CULL_SYMBOL:ALL:GOOD]
    [FRIENDLY_COLOR:7:0:0]
 
    [DEFAULT_SITE_TYPE:CAVE]
 
    [LIKES_SITE:CAVE]
 
    [TOLERATES_SITE:CAVE]
 
    [ACTIVE_SEASON:SPRING]
 
    [ACTIVE_SEASON:SUMMER]
 
    [ACTIVE_SEASON:AUTUMN]
 
    [ACTIVE_SEASON:WINTER]
 
    [MAX_STARTING_CIV_NUMBER:2]
 
    [START_GROUP_NUMBER:1]
 
    [MAX_POP_NUMBER:500]
 
    [MAX_SITE_POP_NUMBER:20]
 
    [ETHIC:KILL_ENTITY_MEMBER:ACCEPTABLE]
 
    [ETHIC:KILL_NEUTRAL:ACCEPTABLE]
 
    [ETHIC:KILL_ENEMY:ACCEPTABLE]
 
    [ETHIC:KILL_ANIMAL:ACCEPTABLE]
 
    [ETHIC:KILL_PLANT:ACCEPTABLE]
 
    [ETHIC:TORTURE_AS_EXAMPLE:ACCEPTABLE]
 
    [ETHIC:TORTURE_FOR_INFORMATION:ACCEPTABLE]
 
    [ETHIC:TORTURE_FOR_FUN:ACCEPTABLE]
 
    [ETHIC:TORTURE_ANIMALS:ACCEPTABLE]
 
    [ETHIC:TREASON:ACCEPTABLE]
 
    [ETHIC:OATH_BREAKING:ACCEPTABLE]
 
    [ETHIC:LYING:ACCEPTABLE]
 
    [ETHIC:VANDALISM:ACCEPTABLE]
 
    [ETHIC:TRESPASSING:NOT_APPLICABLE]
 
    [ETHIC:THEFT:NOT_APPLICABLE]
 
    [ETHIC:ASSAULT:ACCEPTABLE]
 
    [ETHIC:SLAVERY:UNTHINKABLE]
 
    [ETHIC:EAT_SAPIENT_OTHER:ACCEPTABLE]
 
    [ETHIC:EAT_SAPIENT_KILL:ACCEPTABLE]
 
    [ETHIC:MAKE_TROPHY_SAME_RACE:ACCEPTABLE]
 
    [ETHIC:MAKE_TROPHY_SAPIENT:ACCEPTABLE]
 
    [ETHIC:MAKE_TROPHY_ANIMAL:ACCEPTABLE]
 
  
INDIV_CONTROLLABLE and ADVENTURE_TIER tokens allows us to use ARACHNID: PLAY NOW! in adventurer mode, which is exactly what we want. They'll be powerful enough to use without gear anyhow.
+
This will give us some fun random names. As a 'nuisance' race they may appear and try to steal stuff from you in fortress mode (like kobolds), but I have yet to see that actually happen. The nuisance token also makes them not appear as regular civilizations, which is the entire point. Arachnids are solitary and do not form civilizations (though they WILL be found in caves). However, the INDIV_CONTROLLABLE and ADVENTURE_TIER tokens allows us to use ARACHNID: PLAY NOW! in adventurer mode, which is exactly what we want. They'll be powerful enough to use without gear anyhow.
  
 
Next, we open up creature_new.txt (if you haven't made one, check the above example) and add the new creature to it:
 
Next, we open up creature_new.txt (if you haven't made one, check the above example) and add the new creature to it:
Line 538: Line 336:
 
     [NAME:arachnid:arachnids:arachnid]
 
     [NAME:arachnid:arachnids:arachnid]
 
     [TILE:'&'][COLOR:7:0:0]
 
     [TILE:'&'][COLOR:7:0:0]
     [MODVALUE:20][SEMIMEGABEAST]
+
     [MODVALUE:20]
 
     [INTELLIGENT][CANOPENDOORS]
 
     [INTELLIGENT][CANOPENDOORS]
 
     [LARGE_CHASM][FREQUENCY:1][DIFFICULTY:4]
 
     [LARGE_CHASM][FREQUENCY:1][DIFFICULTY:4]
 
     [SPEED:700]
 
     [SPEED:700]
 
     [STOUT]
 
     [STOUT]
     [EXTRACT:arachnid venom:7:0:0]
+
     [EXTRACT:giant cave spider venom:7:0:0]
     [EXTRACT_VALUE:500]
+
     [EXTRACT_VALUE:100]
 
     [EXTRACT_PARALYZE][NATURAL][PET_EXOTIC]
 
     [EXTRACT_PARALYZE][NATURAL][PET_EXOTIC]
     [EXTRACT_ANTIDOTE:arachnid antivenin:7:0:0:100]
+
     [EXTRACT_ANTIDOTE:giant cave spider antivenin:7:0:0:100]
 
     [WEBIMMUNE][AMBUSHPREDATOR][PARALYZEIMMUNE]
 
     [WEBIMMUNE][AMBUSHPREDATOR][PARALYZEIMMUNE]
 
     [GENPOWER:4]
 
     [GENPOWER:4]
Line 556: Line 354:
 
     [BUILDINGDESTROYER:1]
 
     [BUILDINGDESTROYER:1]
 
     [PREFSTRING:terrifying presence]
 
     [PREFSTRING:terrifying presence]
    [PREFSTRING:fearsome venom]
 
 
     [BODY:ARACHNOBODY:8EYES:2EARS:NOSE:2LUNGS:HEART:GUTS:ORGANS:THROAT:NECK:SPINE:BRAIN:MOUTH:5FINGERS]
 
     [BODY:ARACHNOBODY:8EYES:2EARS:NOSE:2LUNGS:HEART:GUTS:ORGANS:THROAT:NECK:SPINE:BRAIN:MOUTH:5FINGERS]
     [SIZE:15]
+
     [SIZE:10]
 
     [MAXAGE:20:30]
 
     [MAXAGE:20:30]
 
     [ATTACK:MAIN:BYTYPE:MOUTH:bite:bites:1:6:GORE][SPECIALATTACK_INJECT_EXTRACT:50:100]
 
     [ATTACK:MAIN:BYTYPE:MOUTH:bite:bites:1:6:GORE][SPECIALATTACK_INJECT_EXTRACT:50:100]
 
     [ATTACK:SECOND:BYTYPE:GRASP:punch:punches:1:2:BLUDGEON][ATTACKFLAG_WITH]
 
     [ATTACK:SECOND:BYTYPE:GRASP:punch:punches:1:2:BLUDGEON][ATTACKFLAG_WITH]
 
     [FAT:2]
 
     [FAT:2]
     [CHILD:30][BABY:1][MULTIPLE_LITTER_RARE]
+
     [CHILD:12][BABY:1][MULTIPLE_LITTER_RARE]
     [DAMBLOCK:10]
+
     [DAMBLOCK:4]
     [ALL_ACTIVE][CAVE_ADAPT]
+
     [ALL_ACTIVE]
 +
    [BIOME:SUBTERRANEAN_CHASM]
 
     [STANDARD_FLESH]
 
     [STANDARD_FLESH]
 
     [HOMEOTHERM:10067]
 
     [HOMEOTHERM:10067]
 
     [LAYERING:50]
 
     [LAYERING:50]
    [SWIMS_LEARNED][SWIM_SPEED:2500]
 
    [MUNDANE]
 
  
 
Now, what does this all mean, exactly? Well, compared to dwarves they are big, bad, as fast as elves, as sturdy as dwarves (hard to knock over), they have white blood, can eat bones, are immune to fear, stun, and never get tired, see twice as far, and are almost totally immune to most small-damage attacks. In addition I copied the giant cave spider paralyzing bite attack, so when you bite and hit, you'll sometimes inject a paralyzing poison fairly often that'll knock your prey unconscious in a few combat rounds. Not only is the bite very damaging, but you can even knock out creatures like ettins or giants and rip them up as they sleep at your leisure.  
 
Now, what does this all mean, exactly? Well, compared to dwarves they are big, bad, as fast as elves, as sturdy as dwarves (hard to knock over), they have white blood, can eat bones, are immune to fear, stun, and never get tired, see twice as far, and are almost totally immune to most small-damage attacks. In addition I copied the giant cave spider paralyzing bite attack, so when you bite and hit, you'll sometimes inject a paralyzing poison fairly often that'll knock your prey unconscious in a few combat rounds. Not only is the bite very damaging, but you can even knock out creatures like ettins or giants and rip them up as they sleep at your leisure.  
  
However, we're not done yet. Notice the BODY: token has a few tidbits that we need to take a closer look at- 'ARACHNOBODY' and '8EYES' in particular. These are new to our species and we need to add them. So, close that and open up body_default.txt, or create your own body_something.txt file. Add the following to the bottom:  
+
However, we're not done yet. Notice the BODY: token has a few tidbits that we need to take a closer look at- 'ARACHNOBODY' and '8EYES' in particular. These are new to our species and we need to add them. So, close that and open up body_default.txt. Add the following to the bottom:  
  
 
  [BODY:ARACHNOBODY]
 
  [BODY:ARACHNOBODY]
Line 619: Line 415:
 
Written by Teldin.
 
Written by Teldin.
  
= Modding utilities =
+
[[Category:Modding]]
 
 
== Modbase ==
 
 
 
Modbase is a great tool made by Sean Mirrsen which allows you to freely swap mods and tweak game settings.
 
[http://www.bay12games.com/forum/index.php?topic=18623.0 Get it now!]
 
For version 0.38c.
 
 
 
== DF Raw Editor ==
 
 
 
DF Raw Editor is a brand new tool created to help edit the raw files.
 
It is available [http://www.bay12games.com/forum/index.php?topic=40413.0 here].
 
For version 0.40d
 
 
 
{{Category|Modding}}
 
 
[[Category:Guides]]
 
[[Category:Guides]]

Please note that all contributions to Dwarf Fortress Wiki are considered to be released under the GFDL & MIT (see Dwarf Fortress Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel Editing help (opens in new window)