<?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=Martin</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=Martin"/>
	<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php/Special:Contributions/Martin"/>
	<updated>2026-05-09T18:52:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.11</generator>
	<entry>
		<id>https://dwarffortresswiki.org/index.php?title=Utility:DFusion&amp;diff=172305</id>
		<title>Utility:DFusion</title>
		<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php?title=Utility:DFusion&amp;diff=172305"/>
		<updated>2012-05-26T06:06:59Z</updated>

		<summary type="html">&lt;p&gt;Martin: /* How to */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DFusion info page ==&lt;br /&gt;
Thread for discussions: [http://www.bay12forums.com/smf/index.php?topic=93317.0 Thread]&lt;br /&gt;
== Usage ==&lt;br /&gt;
Dfusion plugin offers four DFhack commands: 'dfusion', 'dfuse' and 'lua', 'runlua'.&lt;br /&gt;
=== lua ===&lt;br /&gt;
Runs an interactive lua console. For more on lua commands see [http://www.lua.org/manual/5.1/manual.html Lua reference manual] or google &amp;quot;lua&amp;quot;. Also this command could be ran with filepath as an argument. Then it runs that file as a lua script file. E.g. ''lua dfusion/temp.lua'' runs a file  &amp;lt;your df path&amp;gt;/dfusion/temp.lua.&lt;br /&gt;
=== runlua ===&lt;br /&gt;
Similar to ''lua &amp;lt;filename&amp;gt;'' but not interactive, to be used with hotkeys&lt;br /&gt;
=== dfusion ===&lt;br /&gt;
First this command runs all plugins' init.lua part then show a menu. Type number to run specified plugin.&lt;br /&gt;
=== dfuse ===&lt;br /&gt;
Similar to dfusion but not interactive. To be used with hotkeys (later will have command support).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also dfuse/dfusion runs an init script located at 'save directory/dfusion/init.lua'. And 'initcustom.lua' if it exists&lt;br /&gt;
&lt;br /&gt;
== Exported functions and objects ==&lt;br /&gt;
The DF is accessed by object 'df'. This object holds all the types, globals table and some helper functions.&lt;br /&gt;
Up-to-date api help could be found here: https://github.com/peterix/dfhack/blob/master/LUA_API.rst&lt;br /&gt;
=== Examples ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
first_unit=df.global.world.units.all[0] --gets first unit&lt;br /&gt;
first_unit.name.first_name=&amp;quot;Urist&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You can iterate in all the objects:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
for k,v in pairs(df.global.world.units.all) do --gets ALL the units&lt;br /&gt;
   v.name.first_name=&amp;quot;Urist&amp;quot; --now everyone will be called URIST!!&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also all the flags can be accessed by name or by number:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
first_unit.flags.dead=true --is same as...&lt;br /&gt;
first_unit.flags[1]=true --... this&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
For convienence there is function printall:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
printall(df.global.world.units.all) --prints all the units, with locations in memory&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== Other objects ===&lt;br /&gt;
==== Console. ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! name&lt;br /&gt;
! description&lt;br /&gt;
! example&lt;br /&gt;
|-&lt;br /&gt;
| print&lt;br /&gt;
| prints a message to dfhack console&lt;br /&gt;
| Console.print(&amp;quot;Hello world!&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
| printerr&lt;br /&gt;
| prints an error message to dfhack console&lt;br /&gt;
| Console.printerr(&amp;quot;Error  world!&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
| clear&lt;br /&gt;
| clears console&lt;br /&gt;
| Console.clear()&lt;br /&gt;
|-&lt;br /&gt;
| color&lt;br /&gt;
| sets text color&lt;br /&gt;
| Console.color(2)&lt;br /&gt;
|-&lt;br /&gt;
| reset_color&lt;br /&gt;
| resets text color to defaults&lt;br /&gt;
| Console.reset_color()&lt;br /&gt;
|-&lt;br /&gt;
| cursor&lt;br /&gt;
| sets if the cursor should be visible&lt;br /&gt;
| Console.cursor(true)&lt;br /&gt;
|-&lt;br /&gt;
| msleep&lt;br /&gt;
| waits for x milliseconds &lt;br /&gt;
| Console.msleep(200)&lt;br /&gt;
|-&lt;br /&gt;
| get_columns&lt;br /&gt;
| returns number of columns in the console&lt;br /&gt;
| Console.get_columns()&lt;br /&gt;
|-&lt;br /&gt;
| get_rows&lt;br /&gt;
| returns number of rows in the console&lt;br /&gt;
| Console.get_rows()&lt;br /&gt;
|-&lt;br /&gt;
| lineedit&lt;br /&gt;
| asks user for input&lt;br /&gt;
| Console.lineedit(&amp;quot;Type in your name:&amp;quot;)&lt;br /&gt;
|}&lt;br /&gt;
==== Process. ====&lt;br /&gt;
==== VersionInfo. ====&lt;br /&gt;
==== engine. ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! name&lt;br /&gt;
! description&lt;br /&gt;
! example&lt;br /&gt;
|-&lt;br /&gt;
| peek(b\w\d)&lt;br /&gt;
| reads byte\word\double word from memory&lt;br /&gt;
| peekb(0x15486)&lt;br /&gt;
|-&lt;br /&gt;
| peekarb&lt;br /&gt;
| reads a chunk of memory&lt;br /&gt;
| peekarb(0x15486,100) -- reads 100 bytes from 0x15486&lt;br /&gt;
|-&lt;br /&gt;
| peekstr&lt;br /&gt;
| reads a string from memory&lt;br /&gt;
| peekstr(0x15486) &lt;br /&gt;
|-&lt;br /&gt;
| poke(b\w\d)&lt;br /&gt;
| writes byte\word\double word to memory&lt;br /&gt;
| peekb(0x15486,100)&lt;br /&gt;
|-&lt;br /&gt;
| pokearb&lt;br /&gt;
| writes a chunk of memory (gotten with peekarb)&lt;br /&gt;
| pokearb(0x15486,data,100) -- writes 100 bytes from data to 0x15486&lt;br /&gt;
|-&lt;br /&gt;
| pokestr&lt;br /&gt;
| writes a string to memory&lt;br /&gt;
| peekstr(0x15486,&amp;quot;Hello world&amp;quot;) &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== FunctionCall.====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! name&lt;br /&gt;
! description&lt;br /&gt;
! example&lt;br /&gt;
|-&lt;br /&gt;
| call(f_ptr,calling_convention,arguments...)&lt;br /&gt;
| calls a function from df. Supports up to 7 arguments. Danger: this could (and probably will) crash df if used incorrectly.&lt;br /&gt;
| FunctionCall.call(somepointertofunction,FunctionCall.THIS_CALL,thisptr)&lt;br /&gt;
|-&lt;br /&gt;
| THIS_CALL&lt;br /&gt;
| a numeric constant for function calling convention. &lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
| STD_CALL&lt;br /&gt;
| -&amp;quot;-&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
| FAST_CALL&lt;br /&gt;
| -&amp;quot;-&lt;br /&gt;
| -&lt;br /&gt;
|-&lt;br /&gt;
| CDECL_CALL&lt;br /&gt;
| -&amp;quot;-&lt;br /&gt;
| -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== From scripts ===&lt;br /&gt;
These commands are exported from script files. Most of them are in &amp;quot;common.lua&amp;quot; file.&lt;br /&gt;
=== Patterns ===&lt;br /&gt;
DEPRECATED use df.&amp;lt;subitem&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to ==&lt;br /&gt;
This section explains in detail some of more complex things that could be done with dfusion.&lt;br /&gt;
&lt;br /&gt;
Individual units can be modified - skills, jobs, attributes, etc. This example selects a unit under the look cursor, updates the name and updates the level and experience for selected skills. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--Takes a selected unit and instantly turns them into Morul - upgrading all appropriate skills to Legendary or higher, as appropriate&lt;br /&gt;
--By Martin, 5/25/2012, excerpt for demonstration purposes&lt;br /&gt;
--This code gets cut/pasted at the end of /dfusion/tools/init.lua&lt;br /&gt;
function tools.morul(unit)&lt;br /&gt;
  --include the utils library which we need later&lt;br /&gt;
  utils = require 'utils'&lt;br /&gt;
  --a unit address can be passed into this function, handle the case where one isn't&lt;br /&gt;
  if unit==nil then&lt;br /&gt;
    unit=getCreatureAtPointer()  --place the x pointer on top of the creature you want to change. best use is the look pointer 'k' and not 'v'&lt;br /&gt;
  end&lt;br /&gt;
  --Set the name. Surname is comprised of an array of references [words] into the language file. Each entry grabs a word fragment and the name is all of these catenated &lt;br /&gt;
  unit.name.first_name = &amp;quot;Morul&amp;quot;&lt;br /&gt;
  unit.name.words[0] = 1416  --[T_WORD:CHANNEL:catten]&lt;br /&gt;
  unit.name.words[1] = 1304  --[T_WORD:BEND:mat]&lt;br /&gt;
&lt;br /&gt;
  --skill level we wish to apply to all labors. Dabbling is 0, Legendary is 15&lt;br /&gt;
  labor_rating = 15&lt;br /&gt;
  --the skill level we wish to apply to all military skills. &lt;br /&gt;
  military_rating = 70&lt;br /&gt;
  &lt;br /&gt;
  --These are the skill ids we want to add. The ids were identified in game_data.ini in DwarfTherapist.&lt;br /&gt;
  skill = { 0,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,49,54,55,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,95,96,97,98,99,100,101,102,103,104,105,109,110,111,112,113,114,115 }&lt;br /&gt;
  --These are the military skills that will get higher values. Subset of the list above.&lt;br /&gt;
  military = { 38,39,41,42,43,44,45,46,54,99,100,101,102,103,104,105 }&lt;br /&gt;
&lt;br /&gt;
  --ipairs iterates over each indexed item in the skill list. Lua index is 1 based, so remember that.&lt;br /&gt;
  for sk,sv in ipairs(skill) do&lt;br /&gt;
    --assume the labor rating will apply&lt;br /&gt;
    new_rating = labor_rating&lt;br /&gt;
    --iterate over the military list&lt;br /&gt;
    for _,v in ipairs(military) do&lt;br /&gt;
      --if the value from the skill list iteration is in the military list...&lt;br /&gt;
      if v == sv then&lt;br /&gt;
        --then use the military skill level&lt;br /&gt;
        new_rating = military_rating&lt;br /&gt;
      end&lt;br /&gt;
    end&lt;br /&gt;
    --the skills need to be inserted in a particular way. This standard function passes the id, the skill level, and the experience value, and tells the tool to keep the skills sorted by id. &lt;br /&gt;
    --the experience calculation reflects the minimum experience to earn the level and allows skills to continue to advance.&lt;br /&gt;
    utils.insert_or_update(unit.status.current_soul.skills, { new = true, id = sv, rating = new_rating, experience = (new_rating * 500) + (new_rating * (new_rating - 1)) * 50}, 'id')&lt;br /&gt;
  end&lt;br /&gt;
  &lt;br /&gt;
  -- walk over each of the skills we just set and print them out so we can confirm each update&lt;br /&gt;
  for sk,sv in ipairs(unit.status.current_soul.skills) do&lt;br /&gt;
    -- print the skill data. Printall will print entire tables and is handy at poking at the data structures&lt;br /&gt;
    printall(sv)&lt;br /&gt;
  end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--add the function above to the dfusion menu system as a submenu under the 'Tools' menu.&lt;br /&gt;
tools.menu:add(&amp;quot;Morul&amp;quot;,tools.morul)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tips and Tricks ==&lt;br /&gt;
* To use dfusion's functionality in lua first run ''dfuse'' and then use run ''lua''&lt;br /&gt;
* You can bind keys to lua commands (in dfusion context) like this: ''keybindings add Shift-R &amp;quot;dfuse adv_tools.reincarnate()&amp;quot;''&lt;/div&gt;</summary>
		<author><name>Martin</name></author>
	</entry>
	<entry>
		<id>https://dwarffortresswiki.org/index.php?title=User:Martin&amp;diff=51170</id>
		<title>User:Martin</title>
		<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php?title=User:Martin&amp;diff=51170"/>
		<updated>2009-09-27T05:49:19Z</updated>

		<summary type="html">&lt;p&gt;Martin: Created page with '== Large scale aquifer removal technique. ==  This describes the techniques employed in the aquifer removal for the Dwarf Fortress Masters Challenge 2 - Muckgrotto. This was a tw…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Large scale aquifer removal technique. ==&lt;br /&gt;
&lt;br /&gt;
This describes the techniques employed in the aquifer removal for the Dwarf Fortress Masters Challenge 2 - Muckgrotto. This was a two-layer aquifer that dropped a layer for half the map (aquifer for half of one layer, all of the layer below, and the other half of the layer below that). The chosen project was to eliminate the majority of the aquifer on the map by creating a perimeter magma pierce near the outside edge of the map and another near the center of the map and eliminating all aquifer tiles between the two pierces by channeling and then draining off the resulting water, repeating for each of the aquifer layers, and the collapsing most of the top layer of the map. &lt;br /&gt;
&lt;br /&gt;
Because it was a timed challenge (8 years) an efficient channeling (or equivalent) system needed to be developed. Fortunately there was plenty of time to experiment. The effort started with the complete excavation of the layer directly above the aquifer so that every water-producing tile could be removed from above, but the process could not strand dwarves. Access was from the center of the map, so dwarves would have to work from the outside toward the center.&lt;br /&gt;
&lt;br /&gt;
===Method 1: Strip Channeling===&lt;br /&gt;
&lt;br /&gt;
Working from the outer perimeter of the map inward, 1-tile wide channels were designated. This created several problems:&lt;br /&gt;
&lt;br /&gt;
1) Assuming the ideal case of one miner per designated tile, dwarves would on average walk the width of the map for each tile to excavate. Some more, others less, but they would walk the distance out and back. Since miners couldn't be stranded, the next strip was difficult to designate until the first was completed. &lt;br /&gt;
2) Because dwarves prefer to channel from the west, horizontal designations would routinely cause dwarves to cancel channeling because another dwarf was standing on the tile they were channeling. They would choose another tile, walk to it, and then someone else would come back and channel the first tile. This would increase the amount of walking even more.&lt;br /&gt;
3) Some dwarves might be down in the bowels of the fortress and pick up the channeling job, delaying its completion due to the long walk. Again, because dwarves can't be stranded, dwarves that had completed their jobs would wander off. Moving the meeting area close to the channeling area helps, but it's still a very slow process. This could be sped up by removing the designation and redesignating, causing close-by dwarves to pick up the job (the closest dwarf takes the job) but that's a massive burden on the player. &lt;br /&gt;
&lt;br /&gt;
This process would never have allowed the task to be completed in time.&lt;br /&gt;
&lt;br /&gt;
===Method 2: Checkerboard Channeling===&lt;br /&gt;
&lt;br /&gt;
Instead of designating strips, designating a checkboard pattern over a large area (ideally using a macro), and then following up with strip channeling addresses a number of the problems above:&lt;br /&gt;
&lt;br /&gt;
1) Dwarves can take jobs in two dimensions, massively reducing the amount of walking relative to mining. Dwarves appear to work in vertical strips 16 tiles wide - they'll move from top to bottom of the designated area and 16 tiles wide on a pre-determined grid. Reasonably efficient, and easy to work with.&lt;br /&gt;
2) Because of the checkerboard, dwarves never cancel jobs due to another dwarf on the tile - either in the checkerboard effort or the strip channel effort. This further speeds up the effort.&lt;br /&gt;
3) The checkerboard allows access to the entire map at all times, so theres no risk of stranding in the first pass, although the strip channeling needs to work as it did in the first method.&lt;br /&gt;
&lt;br /&gt;
The downside is that the player still needs to designate all of those strips at the end, and the dwarves still do a huge amount of walking. It's much faster than 1), but not fast enough.&lt;br /&gt;
&lt;br /&gt;
===Method 3: Staircases===&lt;br /&gt;
&lt;br /&gt;
Aquifer tiles that have staircases dug into them do not produce water. This method requires 2 passes to eliminate water production, but 3 passes if you want to fully collapse the layer down. For multiple layers, one pass can be eliminated by good planning. The three passes are: down staircase from the dry layer above, up (or up/down) staircase from the aquifer layer, remove up staircase from the aquifer layer. Advantages:&lt;br /&gt;
&lt;br /&gt;
1) The entire layer can be designated as one block for each pass. This provides the best digging/walking ratio, even with the extra passes. &lt;br /&gt;
2) Minimal effort for the player. No need to designate all of those strips. &lt;br /&gt;
3) If planned well, the 3rd pass of removing the up staircases can be done while the layer is draining minimizing the amount of additional time needed. By using up/down staircases on multi-layer aquifers, the first down staircase pass can be eliminated after the first layer and the free down effort provides a very rapid way to drain the layer. &lt;br /&gt;
4) There is no possibility of stranding dwarves. &lt;br /&gt;
&lt;br /&gt;
Disadvantages:&lt;br /&gt;
&lt;br /&gt;
1) The first set up up staircases dug will be very slow as miners won't have swimming skill and will cause an incredible number of job cancellations. Fortunately, ever tile allows the dwarves to escape so there should be no drownings, but it'll start off slow. Once they reach 'Swimmer' that'll end and they'll mine much faster. This can be helped a bit by designating a checkerboard pattern of up staircases. Dwarves usually won't jump down into the new staircase to dig the one next to it due to the pattern, and when you designate the entire layer after the first half of the checkerboard is done, they won't jump down because the tile will be 7/7 water. But it is one extra walk across the map for everyone. It might be faster if you don't expect your miners to become swimmers, but if you do just get that over with and designate the entire area as one block. &lt;br /&gt;
2) The removal of up staircases needs to be well choreographed. 4/7 or deeper water will cause cancellations, so start draining one part of the map after eliminating water sources so that the water is shallow enough for miners to work after other areas are prepared. If collapsing is the goal, you'll need to collapse each aquifer layer in turn since eliminating the up staircases doesn't eliminate the floor of the layer above. If done carelessly it's easy to collapse the entire region on your miners, likely killing them all. &lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
&lt;br /&gt;
The map this was tested in was 5x5 embark tiles and almost completely excavated. 45,000 tiles per layer and 4 layers were excavated (180,000 tiles total). Half of the tiles were aquifer tiles (90,000) which were removed with the methods above. The rest were dry soil tiles removed either by standard digging (top layer) or ramps (dry portions of aquifer layers). Method 1 is estimated would have taken approximately 2 years for 40-ish legendary miners to excavate one aquifer layer. Method 2 cuts that time almost in half to 4-5 seasons. Method 3 cuts it down to approximately 3-4 seasons to do all 3 passes, but 3 or a bit less if it had been employed from the outset and could have allowed for the elimination of one pass due to up/down staircases and the very fast draining into the layer below.&lt;/div&gt;</summary>
		<author><name>Martin</name></author>
	</entry>
	<entry>
		<id>https://dwarffortresswiki.org/index.php?title=Tileset_repository&amp;diff=7048</id>
		<title>Tileset repository</title>
		<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php?title=Tileset_repository&amp;diff=7048"/>
		<updated>2009-08-08T19:16:36Z</updated>

		<summary type="html">&lt;p&gt;Martin: /* Martin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''You may be looking for general information on [[tilesets]] or the [[List of user graphics sets]].''&lt;br /&gt;
&lt;br /&gt;
== Square tilesets ==&lt;br /&gt;
&lt;br /&gt;
These are all the character sets with square tiles, except for the character sets with 16&amp;amp;times;16 tiles. Those are listed [[List_of_user_character_sets#16.C3.9716_tilesets|below]]. Text in square tilesets (as opposed to tilesets with shorter width) is usually more difficult to read, but the map is not distorted.&lt;br /&gt;
&lt;br /&gt;
=== Anikki ===&lt;br /&gt;
&lt;br /&gt;
[[Image:df_anikki_2.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Anikki_square_8x8.png]]&lt;br /&gt;
|author=[[User:Anikki|Anikki]]&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;200 native.&lt;br /&gt;
|comments=Based on the original IBM CGA Character set with a lot of tweaks. The characters remain as descriptive yet universal as possible. I chose the CGA set because it is in my opinion the square set with the best readability. This set is for those who like the basic ASCII look where every pixel has meaning or (multiple meanings). [http://www.anikki.com/share/df/Anikki_square_8x8.bmp Download the BMP]&lt;br /&gt;
&lt;br /&gt;
There is also an upscaled [[#Anikki_2|16x16 version]] of this set available for fullscreen use below.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:df_anikki_1.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Anikki_square_10x10.png]]&lt;br /&gt;
|author=[[User:Anikki|Anikki]]&lt;br /&gt;
|size=10&amp;amp;times;10&lt;br /&gt;
|resolution=800&amp;amp;times;250 native.&lt;br /&gt;
|comments=Based primarily on Tocky and Plac1d's sets (which are brilliant). The characters remain as descriptive as possible with some tweaks to the font for better readability and some changes to symbols for more consistency. This set is for those who like the basic ASCII look where every pixel has meaning or (multiple meanings). [http://www.anikki.com/share/df/Anikki_square_10x10.bmp Download the BMP]&lt;br /&gt;
(Note: The up and down ramps are reversed.)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Anikki_square_20x20.png]]&lt;br /&gt;
|author=[[User:Anikki|Anikki]]&lt;br /&gt;
|size=20&amp;amp;times;20&lt;br /&gt;
|resolution=1600&amp;amp;times;500 native.&lt;br /&gt;
|comments=Based primarily on Tocky and Plac1d. This is a scaled up version of the 10x10 tileset for fullscreen use. [http://www.anikki.com/share/df/Anikki_square_20x20.bmp Download the BMP]&lt;br /&gt;
(Note: The up and down ramps are reversed.)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Dorten ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Snap.PNG|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:720x225_SmoothWalls.PNG]]&lt;br /&gt;
|author=[[User:Dorten|Dorten]]&lt;br /&gt;
|size=9&amp;amp;times;9&lt;br /&gt;
|resolution=720&amp;amp;times;225&lt;br /&gt;
|comments=It's improved Savok's tileset, which is changed to make walls look smooth. Plus another little differnces.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Hanuman ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:DB_curses_12x12.PNG]]&lt;br /&gt;
|author=[[User:Hanuman|Hanuman]]&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=900&amp;amp;times;300&lt;br /&gt;
|comments=This is basically the curses_800x600.bmp file converted to 12x12. It may be slightly different but it is close enough for me. [http://dffd.wimbli.com/file.php?id=318 Get the .BMP here.]&lt;br /&gt;
Note: If the tileset doesn't look right played at 900x300, try changing the resolution to 966x325.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Haowan ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Haowan_Curses_1440x450.png]]&lt;br /&gt;
|author=Haowan&lt;br /&gt;
|size=18&amp;amp;times;18&lt;br /&gt;
|resolution=1440&amp;amp;times;450&lt;br /&gt;
|comments=An enlarged version of a square version of the default set.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Herrbdog ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Herrbdog_144.png]]&lt;br /&gt;
|author=Herrbdog&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=A larger version of this tileset is available [[#Herrbdog 2|below]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lord Dullard ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Dullard_Exponent_12x12.png]]&lt;br /&gt;
|author=Lord Dullard/Exponent&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300 native&lt;br /&gt;
|comments=Adjusted by Exponent, and with new dwarf characters added. A version of the Unknown 12×12 tileset with smoothed walls. Example: [http://mkv25.net/dfma/map-5243-wiltedblight Wiltedblight].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lord Nightmare ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:CGA8x8thick.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=The original IBM CGA Character set, thick variant, dumped from addresses 0x1800-0x1fff the 5788005 IBM Character Generator ROM. This is the far more common 'thick' variant. Best viewed at 8:5 aspect ratio.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Nightmare_cga_8x8.jpg|thumb|right|Lord Nightmare's 8&amp;amp;times;8 CGA tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:CGA8x8thin.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=The original IBM CGA Character set, thin variant, dumped from addresses 0x1000-0x17ff the 5788005 IBM Character Generator ROM. This is the less common 'thin' variant, which required soldering on two pins and jumpering them on the CGA card to use. Best viewed at 8:5 aspect ratio.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:EGA8x8.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=The IBM EGA 8&amp;amp;times;8 Character set, dumped from the 6277356 IBM EGA BIOS ROM. This is ALMOST 100% IDENTICAL to the CGA thick font, but has minor modifications (23 pixels total) done to four characters: the capital 'S', the club sign, the spade sign, and the large asterisk (the one with a hole in the middle, char 0x0f, not the shift-8 one which is char 0x2a). There is no thin variant of this font. Best viewed at 8:5 aspect ratio.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Maus ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Nostalgia_720x225.png]]&lt;br /&gt;
|author=[[User:Maus|maus]]&lt;br /&gt;
|size=9&amp;amp;times;9&lt;br /&gt;
|resolution=720&amp;amp;times;225&lt;br /&gt;
|comments=Another square tileset that's usable on low resolutions, modeled after a common font used on the Nintendo Entertainment System. An 18x18 version for 1440x450 resolution is also [[:Image:Nostalgia_1440x450_3e4a08.png|available here]], and is really nice on a widescreen monitor. An NES palette is [[User:Maus|available here]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Markavian ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:mkv_solidcurses_stairs_960x300.png]]&lt;br /&gt;
|author=[[User:Markavian|Markavian]]&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=This revision is designed to work with DF version 0.27.169.33a with special tiles for [[stair]]s and [[ramp]]s, as well as the changes present in the earlier version such as bones, walls, trees and swords.&amp;lt;br&amp;gt; Available in [http://mkv25.net/showcase/df/mkv_curses%2012&amp;amp;times;12%20and%206x6%20v2.zip mkv curses 12&amp;amp;times;12 and 6x6 v2.zip]. As seen in the fortress of [http://mkv25.net/dfma/map-1329-axegear Axegear].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Mkv_solidcurses_960x300.png]]&lt;br /&gt;
|author=[[User:Markavian|Markavian]]&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=An older revision of my square tileset, featuring more detailed symbols, with alterations to certain text characters to look more like ingame items. The walls are infilled now.&amp;lt;br&amp;gt; &lt;br /&gt;
Available in [http://mkv25.net/showcase/df/mkv_curses%2012&amp;amp;times;12%20and%206x6%20v2.zip mkv curses 12&amp;amp;times;12 and 6x6 v2.zip]. As seen in the fortress of [http://mkv25.net/dfma/map-800-inflew. Inkflew].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Paul ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Paul_10x10.png]]&lt;br /&gt;
|author=[[User:Paul|Paul]]&lt;br /&gt;
|size=10&amp;amp;times;10&lt;br /&gt;
|resolution=800&amp;amp;times;250 for 80&amp;amp;times;25 grid size, others just multiply grid by 10.&lt;br /&gt;
|comments=Custom tileset I made for my own use when the adjustable grid sizes were released for DF. Some accented letters cut slightly to allow for larger letter display. Contains several of Tocky's tiles (barrels, some trees, dimple cups, coins, slightly modified armor stand). Others are either made by me or adjusted from curses_800x600 tiles.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Random832 ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Msgothic.png]]&lt;br /&gt;
|author=[[User:Random832]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;800 etc&lt;br /&gt;
|comments=Based on the ＭＳ ゴシック (MS Gothic) japanese font, with some gaps filled in from the VGA 8x16 font, and some other characters tweaked by hand.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Savok ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Screenshot_41ea57.png|thumb|right|Savok's tiny, non-updated tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Curses_720x225_8d6752.png]]&lt;br /&gt;
|author=[[User:Savok|Savok]]&lt;br /&gt;
|size=9&amp;amp;times;9&lt;br /&gt;
|resolution=720&amp;amp;times;225&lt;br /&gt;
|comments=There is no doubt that this tileset is old. This must be distinctly understood if anything wonderful is to come of your use of it. You may like [[List_of_user_character_sets#Dorten|Dorten's revision]] more. The following is the original description:&amp;lt;br&amp;gt;I dislike curses_640x300.bmp due to its lack of any kind of graphics for things like a bed or a barrel and the fact that it distorts my beautiful circles, so I made a similarish tileset to fix those.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Teeto_K===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Teeto_K_18x18.PNG]]&lt;br /&gt;
|author=[[User:Teeto_K|Teeto_K]]&lt;br /&gt;
|size=18&amp;amp;times;18&lt;br /&gt;
|resolution=1440&amp;amp;times;450&lt;br /&gt;
|comments=A tileset based on [[:Image:Nostalgia_1440x450_3e4a08.png|Maus's 18x18 version of his &amp;quot;Nostalgia&amp;quot; tileset]], however, it has been heavily revised. The entire font has been &amp;quot;smoothed over&amp;quot;, and many of the symbols changed to more &amp;quot;graphical&amp;quot; representations of the items they represent. An attempt to fill the void of &amp;quot;graphic heavy&amp;quot; tilesets in the 18x18 tile-size. A special emphasis is placed on maximizing the text's readability, while still providing a &amp;quot;graphics enhanced&amp;quot; play area. Special thanks to Maus for the font, and Guybrush for the inspiration.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Terbert ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Terbert_10x10.png]]&lt;br /&gt;
|author=[[User:Terbert|Terbert]]&lt;br /&gt;
|size=10&amp;amp;times;10&lt;br /&gt;
|resolution=800&amp;amp;times;250&lt;br /&gt;
|comments=This is Terbert's First tileset&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Tocky ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Df_tock10_1.PNG|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tocky_square_10x10.png]]&lt;br /&gt;
|author=[[User:Tocky|Tocky]]&lt;br /&gt;
|size=10&amp;amp;times;10&lt;br /&gt;
|resolution=800&amp;amp;times;250 native, 800&amp;amp;times;500 for fullscreen.&lt;br /&gt;
|comments=I tried to make all the pictographic symbols as descriptive as possible: the only ones I've spotted that show up in odd places are the staircase symbols, '&amp;lt;' and '&amp;gt;', which are used as tags on barrel descriptions, and don't match -- but I'm willing to live with that in order to be able to tell up-stairs from down- ones. With everything else, I just tried to maximize clarity and readability and to keep them consistent. I'm really very pleased with how this set turned out. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Turnip ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Rev7.PNG|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Markvii.png]]&lt;br /&gt;
|author=[[User:Turnip|Turnip]]&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=My revision of Markavian's tileset, made to be more &amp;quot;curvy&amp;quot;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Unknown ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tileset_unknown_960x300_02.png]]&lt;br /&gt;
|author=Unknown&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=This is a tileset submitted by an unknown user from the IP address 86.43.81.125. &amp;lt;!-- no need to say that for the default characters --&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Unknown_12x12.jpg|thumb|right|Unknown 12&amp;amp;times;12 v2]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Unknown_curses_12x12.png]]&lt;br /&gt;
|author=Unknown&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=This is very similar to the above tileset, but has some noticeable differences. I have no idea where I got it from. It's great on a 1024x768 CRT monitor in windowed mode. I use it in a 1000x500 window with [BLACKSPACE:YES]. --[[User:JT|JT]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Xenomorph ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Acorntileset8x8.png]]&lt;br /&gt;
|author=[[User:Xenomorph|Xenomorph]]&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;200&lt;br /&gt;
|comments=This is the tileset used by Acorn computers, starting with the BBC Micro.  This version is as it would have appeared in 40-column modes (and shuffled a little to adapt it to CP437).  It also looks nice at double resolution. [http://dffd.wimbli.com/file.php?id=407 Download the BMP.]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Yayo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:yayo_c64_640x200_screenshot.png|thumb|right|yayo's c64 Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:yayo_c64_640x200.png]]&lt;br /&gt;
|author=[[User:Yayo|Yayo]]&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;200&lt;br /&gt;
|comments=Name: Yayo's C64; Based on the charset of the commodore 64. It's a flat style, but it's clean and also highly readable. I recreated all the missing chars like letters with accents and symbols, trying to get a c64 style as much as possible. If it's too small, use the 16&amp;amp;times;16 version [[#Yayo_2|below]]. :)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:yayo_tunur_1040x325_screenshot.png|thumb|right|yayo's Tunur Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:yayo_tunur_1040x325.png]]&lt;br /&gt;
|author=[[User:Yayo|Yayo]]&lt;br /&gt;
|size=13&amp;amp;times;13&lt;br /&gt;
|resolution=1040&amp;amp;times;325&lt;br /&gt;
|comments=Name: Yayo's Tunur; According to the language files of DF, Tunur means &amp;quot;style&amp;quot; in dwarf language. It may require a bit to get used to some symbols, but it's a very clean tileset. (It's just a bit weird. :P)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Zaratustra ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Zara_8x8.jpg|thumb|right|Zaratustra's 8&amp;amp;times;8 tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_msx.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;200 or 640&amp;amp;times;400&lt;br /&gt;
|comments= The MSX and MSX2 font, shuffled around to fit the char set. Double lines were added.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== 16&amp;amp;times;16 tilesets ==&lt;br /&gt;
&lt;br /&gt;
The 16&amp;amp;times;16 tilesets are a subset of square character sets. 16&amp;amp;times;16 is a frequently used size, as shown by the number of tilesets in this section. This is probably because all of the best creature graphics sets use 16&amp;amp;times;16 tiles. Those alternate sets for creatures can be found at [[graphics sets]]. '''If your screen is too small for these, turn on BLACK_SPACE!'''&lt;br /&gt;
&lt;br /&gt;
=== Aesomatica ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Aesomatica_16x16.png]]&lt;br /&gt;
|author=[[User:Aesomatica|Aesomatica]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400 native.&lt;br /&gt;
|comments=Tileset intended to build upon [[User:Sphr|Sphr's]] and [[User:Jackard|Jackard's]] work, as well as others. Some tiles are original, some are variants and most are copied from various sets the author found pleasing. Notable originals include the broken bolt/ashes tiles, the ballista heads/large hills, the small hills, the ore (gear animation is pleasing, though axle animation is unimproved), ground tiles, and vermin. Also, bins look decent and up/down stairs look okay. This set looks its best with Sphr's graphics.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Anikki ===&lt;br /&gt;
&lt;br /&gt;
[[Image:df_anikki_2.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Anikki_square_16x16.png]]&lt;br /&gt;
|author=[[User:Anikki|Anikki]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400 native.&lt;br /&gt;
|comments=Based on the original IBM CGA Character set with a lot of tweaks. The characters remain as descriptive yet universal as possible. I chose the CGA set because it is in my opinion the suqare set with the best readability. This set is for those who like the basic ASCII look where every pixel has meaning or (multiple meanings). This is a scaled up version for fullscreen use. [http://www.anikki.com/share/df/Anikki_square_16x16.bmp Download the BMP]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Belal ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Belal_Example.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Belal_Smooth_Walls.png]]&lt;br /&gt;
|author=[[User:Belal|Belal]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400 native.&lt;br /&gt;
|comments=Based on the Mike Mayday tileset and using angled smoothed walls as in [[User:Dorten|Dorten's]] Tileset.  I like the look of the walls for doing near circular or honeycomb layouts. [http://mkv25.net/dfma/poi-9935-seethewallshere Example Fort] &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Cooz ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Cooz_Tileset_Screenshot.png|thumb|right|Cooz's Tileset]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Cooz_curses_square_16x16.png]]&lt;br /&gt;
|author=[[User:Cooz|Cooz]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400 native.&lt;br /&gt;
|comments=v1.1 - 3px wide walls and some other tweaks. Based on Klokjammer and Marble Dice tilesets. Some tiles were taken from other sets, some were made from scratch. The aim was to keep feel of default curses font in 16&amp;amp;times;16 tileset. There's also [http://www.dwarffortresswiki.net/index.php/Image:Cooz_curses_square_flat_16x16.png version without shading].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Flying Mage ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:Flying_Mage_square_16x16.png]]&lt;br /&gt;
|author=[[User:Flying Mage|Flying Mage]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A 16&amp;amp;times;16 tileset based on several other tilesets by various authors. I did some changes because I like some things in different ways, but the base for tileset was made by another users and for this I thankful. List of major and minor changes you can see below. And I hope you'll enjoy this. There is some tiles I really proud of :)&amp;lt;br&amp;gt;&lt;br /&gt;
*[[:Image:Flying_Mage_square_16x16_Major_Changes.png|Major changes]]&amp;lt;br&amp;gt;&lt;br /&gt;
*[[:Image:Flying_Mage_square_16x16_Minor_Changes.png|Minor changes]]&lt;br /&gt;
*[[:Image:Flying_Mage_square_16x16_Stone_Type.png|Some ''rough/smoothed/engraved stone'' improvement]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Guybrush ===&lt;br /&gt;
&lt;br /&gt;
[[Image:GuybrushScreenshot1.PNG|thumb|right|Guybrush Tileset]]&lt;br /&gt;
[[Image:GuybrushScreenshot2.PNG|thumb|right|the wilderness...]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:Guybrush_square_16x16.png]]&lt;br /&gt;
|author=[[User:Guybrush|Guybrush]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A 16&amp;amp;times;16 tileset based on the very nice Herrbdog's one, and for use with the superb [[Graphics_sets#Dystopian_Rhetoric|Dystopian Rhetoric objects]]. A slightly modified version of Herrbdog's tileset is available below if you want to keep the original ASCII symbols for some objects (just do some cut &amp;amp; paste). It's just a little brighter and with some very slight changes. The tileset shown is a tileset with graphic objects added, for use with Fortress Mode.&lt;br /&gt;
&lt;br /&gt;
I recommend to have a look at the [[color schemes|color schemes page]] to find your favorite color settings. The color scheme I used for the screenshots is [[Color_Schemes#.28Yet.29_Another_scheme|this one]].}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:GuybrushASCII_curses_square_16x16.png]]&lt;br /&gt;
|author=Herrbdog, modified by [[User:Guybrush|Guybrush]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Here is the slightly modified version of Herrbdog's tileset which still has all the ASCII characters intact&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Herrbdog ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Herrbdog_16x16_tileset.gif]]&lt;br /&gt;
|author=Herrbdog&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=The 16&amp;amp;times;16 version of Herrbdog's tileset. Further discussion of herrbdog's tilesets is available in the Bay 12 forums:&lt;br /&gt;
http://www.bay12games.com/cgi-local/ultimatebb.cgi?ubb=get_topic&amp;amp;f=2&amp;amp;t=000832&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Inquisitor Saturn ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:MRC_square_16x16.png]]&lt;br /&gt;
|author=Inquisitor Saturn&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Another 16 by 16 tileset. This one is notable because of the subtle shadowing and a completely original, hand-made font.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Isenhertz ===&lt;br /&gt;
&lt;br /&gt;
[[Image:isenhertz_v2_screenshot.png|thumb|right|Isenhertz's tileset in action.]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:16x16_isenhertz_v2.png]]&lt;br /&gt;
|author=[[User:Isenhertz|Isenhertz]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Impressed with the genius of using sprites as tiles, I cobbled together this tileset of my own. It uses Super Foul Egg's superb font as a base, with several sprites also found in other users' sets. Because a lot of letters are used for graphics, I suggest that you [[User:Jackard|remove accented letters from names]] with this set. I also suggest you shift some items to other icons, such as the coniferous trees (change Pine, Cedar, Larch from 024 to 147), the turtle (change 15 to 151), and Quarry Bush leaves (change from 006 to 003).&lt;br /&gt;
V2 now with new graphics for walls and liquids, as well as some other tweaks here and there and a first attempt at using dual-color sprites using a cyan base instead of simple greyscale. (Right now implemented for beds, wood and statues.)&lt;br /&gt;
V1 can still be found [[:Image:16x16_isenhertz_v1.png|here]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Kaishaku ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kai-1280x400-v2 7512b5.png]]&lt;br /&gt;
|author=Kaishaku&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A square 1280&amp;amp;times;400 font. Simple and legible. Converted from roarl's 16&amp;amp;times;16 nethack font, on top of super foul egg's template, extended manually and with ideas from lucida console. This is version 1, created in one morning. Screenshots available [http://kaishaku.org/dwarfort here].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Kelora ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kelora_16x16_diagonal.png]]&lt;br /&gt;
|author=[[User:Kelora|Kelora]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=&lt;br /&gt;
|comments=A square tileset using the diagonal wall concept from Belal and others but simplified drastically to improve the appearance. All the walls line up correctly and have consistent widths.&lt;br /&gt;
I did not use much of the pretty but confusing art I see in many of the other sets. I tried for a while to incorporate many of these but found that with the multiple uses for most characters they were just wrong far too often to be useful. The only ones that seem to work are the dwarves which I took from Flying Mage / Guybrush. The pretty 3Dish fonts as well just seem to look muddier and be less legible. I love it and my husband has been happily playing it for months.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Klokjammer ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kjammer square 16x16 v02.png]]&lt;br /&gt;
|author=[[User:Klokjammer|Klokjammer]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Name: ''&amp;quot;Masked Adventurer&amp;quot;'' - after tile (0,4), where '@' used to be. A somewhat abstract version of the original curses square tileset, but with the alpha numeric characters shaped so as not to look distorted. Other symbols are either borrowed from or improved from curses, and some (including the dwarves) were created from the ground up. Alternate variations, are available [[User:Klokjammer#My Tilesets|here]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kjammer square 16x16 v00.png]]&lt;br /&gt;
|author=[[User:Klokjammer|Klokjammer]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A &amp;quot;clean&amp;quot; version of the above set, one without any fancy tiles (except for the dwarves).&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Marble Dice ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Md_curses_16x16.png]]&lt;br /&gt;
|author=[[User:Marble Dice|Marble Dice]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=This tileset attempts to modify the size and aspect ratio of the classic 8x12 terminal/curses font employed by many rougelikes without sacrificing the distinctive character.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Martin ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Martin_16x16_sample.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Martin_16x16.png]]&lt;br /&gt;
|author=[[User:Martin|Martin]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=This is a 16x16 tileset based on Redjack and Flying Mage sets (and possible tiles taken from others that I've since lost track of - apologies). Some tiles are original or have been tweaked, mainly to provide a much more subtle background than most. A completely new character set is used to improve legibility, tweaked and anti-aliased for dark backgrounds. &lt;br /&gt;
&lt;br /&gt;
[http://dffd.wimbli.com/file.php?id=1316 Download]&lt;br /&gt;
[http://mkv25.net/dfma/map-6239-lashedwines Demo fortress at DFMA]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Nordic Curses ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:DF-Nordic_v1.png]]&lt;br /&gt;
|author=[[User:Techhead|Techhead]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=My first attempt at a unique curses-style tileset with a Nordic Theme. Some characters have been altered.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== PTTG ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:PTTGV2tiles.png]]&lt;br /&gt;
|author=[[User:PTTG|PTTG]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A new version! Clean, sharp, and clear. All-original, and large size for big screens! Also features coloured indicators for levers, helping to remove the guesswork. It is good stand-alone, or with my [[List of user graphics sets#PTTG|graphics set]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Red Jack===&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:Redjack17.png]]&lt;br /&gt;
|author=[[User:Jackard|Jackard]]&lt;br /&gt;
|size=16x16&lt;br /&gt;
|resolution=1280x400&lt;br /&gt;
|comments=This combines content from other tilesets with Nintendo sprites to give the game a classic dungeon look.&lt;br /&gt;
&lt;br /&gt;
[http://dffd.wimbli.com/file.php?id=7 You may download all variations of this tileset here.]}}&lt;br /&gt;
&lt;br /&gt;
=== Sappho ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Sapphos_square_16x16.png]]&lt;br /&gt;
|author=Sappho&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Another square font, target resolution 1280&amp;amp;times;400. This one is exactly the same as the default font except it has been made square, painstakingly edited to ensure that nothing looks squished.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Savok ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Savok_curses_1280x400_517caa.png]]&lt;br /&gt;
|author=[[User:Savok|Savok]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Unsatisfied with any existing tileset, I decided to go about creating my own. Since I can't create from scratch, I had to take tiles from other tilesets and modify them, in an evolution-like manner, until they became how I wanted them. Since most are dramatically different from the tileset I took them from, I believe I can call them original.&amp;lt;br&amp;gt;In the raws, change the tag [TILE:'U'] for humans to [TILE:172]. This changes both the image and corpse of humans to a unique image, which creature graphics cannot do. The elves also get a different tile, [TILE:171]. I plan to make a separate goblin symbol.&amp;lt;br&amp;gt;If you use it and like it, please leave a message for at [[User talk:Savok|my talk page]] or at [http://dffd.wimbli.com/file.php?id=201 the DFFD page]. This will greatly speed progress, since I won't be doing it just for myself.&amp;lt;br&amp;gt;Note: The [http://dffd.wimbli.com/file.php?id=201 DFFD version] is updated more frequently and has the changelist.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== SL ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:SL_square_16x16.png]]&lt;br /&gt;
|author=[[User:SL]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=(Requires a download, not just the image) Art based on Flying Mage's, Guybrush's, and previous tilesets in that lineage. Uses ModBase to relocate relocatable art and de-accentify certain accented letters to reduce graphical bizarreness while still improving some art. [http://www.bay12games.com/forum/index.php?topic=22154.0 Forum Thread] [http://dffd.wimbli.com/file.php?id=370 Download] [http://mkv25.net/dfma/map-3203-flamespear Demo Fortress Map on the DFMA]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Spreggo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Autonomous_Font_example.png|thumb|right|The Autonomous Font in action.]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Autonomous_Font.png]]&lt;br /&gt;
|author=Spreggo&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Started off inspired by Belal's diagonal support, and ended up doing almost every tile from scratch. Added different tiles for each type of stone, and new ones for ore, but the matgloss files need to be edited for that functionality(see image details).&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Super Foul Egg ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:SFE_Curses_square_16x16.png]]&lt;br /&gt;
|author=Super Foul Egg&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=The font is rough as hell and some of the characters still need attention, but it'll do for now. Since this tileset is for graphics mode I'd rather wait for more complete object support than hack in pictures and gum up the UI. Uppercase from [http://www.zee-3.com/pickfordbros/archive/bitmapfonts.php this site]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Tahin ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tahin_16x16_rounded.png]]&lt;br /&gt;
|author=[[User:Tahin|Tahin]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Based on Marble Dice's tileset, above. Smoothed corners are &amp;quot;rounded&amp;quot;, which takes some getting used to but look quite nice, in my opinion. I have managed to get all of the standard &amp;quot;L&amp;quot; tiles to fit together nicely, but &amp;quot;T&amp;quot; and &amp;quot;+&amp;quot; don't quite match up. It's not a problem that comes up often, and it still doesn't look that bad, but I'll get to it eventually.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== The-Moon ===&lt;br /&gt;
&lt;br /&gt;
[[Image:SS_moons_square_16x16.PNG|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Moons_square_16x16.PNG]]&lt;br /&gt;
|author=[[User:The-Moon|The-Moon]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Edited Character set of [[User:mikemayday|mikemayday]] and [[User:Jackard|Jackard]]}}&lt;br /&gt;
&lt;br /&gt;
=== Tigrex ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:tigrex3d.PNG]]&lt;br /&gt;
|author=[[User:Tigrex|Tigrex]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=This is my tileset, modified from Dorten's 2d diagonal wall set.  It incorporates many original creations of mine, and I hope you like it.}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:tigrex3drunes.PNG]]&lt;br /&gt;
|author=[[User:Tigrex|Tigrex]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=This is a modification of the above, that takes advantage of Norse runes for a more authentic Dwarven experience.  CAUTION!  This tileset has little practical value, and may induce myopia, blindness, or death.}}&lt;br /&gt;
&lt;br /&gt;
=== Tim's ===&lt;br /&gt;
&lt;br /&gt;
[[Image:example_tims.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tims_16x16.png]]&lt;br /&gt;
|author=[[User:Timmeh|Timmeh]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A tileset using heavily modified versions of the diagonal walls from Belal's set, a modified version of the floor from Spreggo's set, most of the furniture and objects are from Flying Mage's set, and some various other bits and pieces from other sets.  Replaces the black box that normally surrounds the walls with a copy of the floor tile.  [http://mkv25.net/dfma/map-5740-foresthold Example Fort]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Tyrving ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tyr_1280x400.PNG]]&lt;br /&gt;
|author=[[User:Tyrving|Tyrving]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=None of the existing modifications of curses_square satisfied me, so I made my own. The bulk of it is from Klokjammer's set, with the dwarf symbols and @ taken from Sappho's. Quite a few minor alterations have been made, and I feel that it's become distinct enough to release it.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Winterwing ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Winterwing_Dfort-tiles-lucon.png|thumb|right|Lucida Console with Dystopian Rhetoric objects]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Winterwing_Curses_16x16_lucon.png]]&lt;br /&gt;
|author=[[User:Winterwing|Winterwing]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Like usual, lucida console with cleartype. Creative, huh. :)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Yayo ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Yayo_c64_1280x400_83b157.png]]&lt;br /&gt;
|author=[[User:Yayo|Yayo]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Name: Yayo's C64; The 16&amp;amp;times;16 version of Yayo's tileset.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Zaratustra ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_16x16.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Because everyone is making one.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Non-square tilesets ==&lt;br /&gt;
&lt;br /&gt;
These tilesets are not square. Text in non-square tilesets often looks much better and is often much easier to read than in square tilesets, but the map is distorted.&lt;br /&gt;
&lt;br /&gt;
=== CKY ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[File:Curses_800x600_shade.png]]&lt;br /&gt;
|author=[[User:Chinkeeyong|Chinkeeyong]]&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;600&lt;br /&gt;
|comments=Partially inspired by Eagle of Fire's tiles, below. Essentially, this is the default tileset with a little bevel-style shading around the edges to make it look neater. Also, I fixed the accented 'e' tails to look closer to the standard 'e'.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Eagle of Fire ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:eofshaded800x600pb9_f64ded.png]]&lt;br /&gt;
|author=[[User:Eagle of Fire|Eagle of Fire]]&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;600&lt;br /&gt;
|comments=Designed for fullscreen. Inspired by Herrbdog's tileset, I created a shaded tileset targeting the default fullscreen 800x600 resolution. Basicaly, you have the exact same &amp;quot;curses&amp;quot; default tileset but with some shading done to the lower right of each letters and items. I've left alone everything which was related to mining or was meant to be plain, for example the smoothered tiles and the plain tiles in the demo. The reason behind that is that I didn't find much logic to have those graphics shaded as they could possibly connect on any direction on the screen, which would make the shading a little strange. Please note that this tileset is only a &amp;quot;beta&amp;quot;. I might work on it again if there is enough people who like it and would like improvements. You can discuss the matter [http://www.bay12games.com/cgi-local/ultimatebb.cgi?ubb=get_topic&amp;amp;f=11&amp;amp;t=000645 here].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Inquisitor Saturn ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:MRC_1280x600.png]]&lt;br /&gt;
|author=[[User:InquisitorSaturn|Inquisitor Saturn]]&lt;br /&gt;
|size=16&amp;amp;times;24&lt;br /&gt;
|resolution=1280&amp;amp;times;600&lt;br /&gt;
|comments=Designed for a double-sized window mode. Based on the default set, but more detailed and with a few custom characters. Good for those who want larger characters but enjoy the aesthetics of the default set.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Kein ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Kein-curs.gif|thumb|right|Kein's Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kein_640x300.png]]&lt;br /&gt;
|author=Kein&lt;br /&gt;
|size=8&amp;amp;times;12&lt;br /&gt;
|resolution=640&amp;amp;times;300&lt;br /&gt;
|comments=Updated 08/09/09. Updated most characters, the biggest change is the 3d style walls. If you use my set I'd highly recommend [http://www.dwarffortresswiki.net/index.php/List_of_user_graphics_sets#Plac1d Plac1d's character graphic set.] My 640&amp;amp;times;300, everything completely shaded.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lord Nightmare ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:MDA8x14.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;14&lt;br /&gt;
|resolution=640&amp;amp;times;350&lt;br /&gt;
|comments=The original IBM MDA character set, dumped from addresses 0x0000-0x0fff the 5788005 IBM Character Generator ROM. This font is as would be displayed on an EGA/VGA with the 9-pixel-width mode disabled. Best for a 64:35 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 640x480. The MDA card did not actually support displaying the font in 8x14, but ONLY 9x14 mode, see below. Theoretically, you CAN upload this font into EGA video memory though and use it.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:MDA9x14.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=9&amp;amp;times;14&lt;br /&gt;
|resolution=720&amp;amp;times;350&lt;br /&gt;
|comments=The original IBM MDA character set, dumped from addresses 0x0000-0x0fff the 5788005 IBM Character Generator ROM. This font is as would be displayed on a real MDA card (use a black/dkgreen/ltgreen palette for full monochrome effect) or on an EGA/VGA card with the 9-pixel-width mode enabled. Best for a 72:35 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 720x480.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:EGA8x14.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;14&lt;br /&gt;
|resolution=640&amp;amp;times;350&lt;br /&gt;
|comments=The IBM EGA character set, dumped from the 6277356 IBM EGA BIOS ROM. This font is as would be displayed on an EGA/VGA with the 9-pixel-width mode disabled. Best for a 64:35 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 640x480. This font is different from the MDA version in that many characters are slightly narrower to avoid 'running into' each other, and many characters have been shifted slightly to the left.&lt;br /&gt;
Thanks to Zaratustra for poking me into getting this done, and for related help.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:EGA9x14.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=9&amp;amp;times;14&lt;br /&gt;
|resolution=720&amp;amp;times;350&lt;br /&gt;
|comments=The IBM EGA character set, dumped from the 6277356 IBM EGA BIOS ROM. This font is as would be displayed on an EGA/VGA with the 9-pixel-width mode enabled. Best for a 72:35 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 640x480. This font is actually different from the 8x14 version in that 20 characters have been replaced with the original MDA wide versions. These 'extra' wide characters are sandwiched in between the end of the 8x14 and beginning of the 8&amp;amp;times;8 font in the EGA BIOS ROM. The changed characters, in ASCII order, are: arrow-left-and-right, '&amp;quot;', '+', '-', 'M', 'T', 'V', 'W', 'X', 'Y', 'Z', 'm', 'v', 'w', 'ae', cent sign, yen, peseta, plus-minus, and division sign. Other than these characters, all characters are the same, with rightmost-row duplicated on the C and D rows like the MDA (though I don't actually know if this is technically correct).&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:VGA8x16.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM?&lt;br /&gt;
|size=8&amp;amp;times;16&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=The original? IBM VGA 8x16 character set, (from http://madscientistroom.org/fpga/default-8x16-bram.html) as would be displayed on a VGA card with the 9-pixel-width disabled. Best for an 8:5 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 640x480. This rom has not yet been dumped from a real VGA card, and is coming from a secondary source, so it may be replaced later if I find the real font is different.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord_Nightmare-Fixedsys-02.png]]&lt;br /&gt;
|author=Lord Nightmare/Microsoft&lt;br /&gt;
|size=8&amp;amp;times;15&lt;br /&gt;
|resolution=640&amp;amp;times;375&lt;br /&gt;
|comments=v2.2 - (v1.0 is [[:Image:Lord_Nightmare-Fixedsys.png|here]]) - Based on Microsoft's Fixedsys font (which dates back to Windows 1.0!), Many glyphs needed redoing by hand since they were absent from the font, since it is an 'ansi' character set and not a code-page 437 one like DF expects. v2.0 Based on Microsoft's Fixedsys font. Updated new glyphs to be more consistent with the Fixedsys style. - v2.1 - update a few more glyphs, namely the integral, the infinity symbol, and the spade, and a few others I'm forgetting. - v2.2 - update the club and spade, and the music notes - v2.3 - fix the fact that 0xF9 and 0xFA were inadvertently swapped.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord_Nightmare-Fixedsys-03.png]]&lt;br /&gt;
|author=Lord Nightmare/Microsoft&lt;br /&gt;
|size=8&amp;amp;times;16&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=v3.0 - changed font size to 8x16, altered glyphs to respect this. - v3.1 - fix the fact that 0xF9 and 0xFA were inadvertently swapped.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Lord_Nightmare_Freehand_screenshot_2b7d67.png|thumb|right|Freehand screenie... ooh, neat! Unreadable.]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord_Nightmare_Freehand_10x16.png]]&lt;br /&gt;
|author=Lord Nightmare&lt;br /&gt;
|size=10&amp;amp;times;16&lt;br /&gt;
|resolution=800&amp;amp;times;400&lt;br /&gt;
|comments=v1.0 - A character set drawn entirely in freehand on the tablet PC... with MINIMAL EDITING! Yes, its SUPPOSED to look like that. v1.1 - fixed character 0x02 background (filled smiley), filled in the card suits, minor touch up to the comma, fix black instead of magenta on the greyscale blocks and other tweaks to them, redrew the square block (was 'too clean' before) v1.1a - fixed spade by adding 1 pixel at tip so it doesn't look like another club&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Lord_Nightmare_Freehand_screenshot_2_05c04b.png|thumb|right|Freehand^2 screenie... ooh, neat! Readable. But ugly.]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord_Nightmare_Freehand^2_10x16.png]]&lt;br /&gt;
|author=Lord Nightmare&lt;br /&gt;
|size=10&amp;amp;times;16&lt;br /&gt;
|resolution=800&amp;amp;times;400&lt;br /&gt;
|comments=Freehand^2, v1.2 - A heavily edited version of Freehand, now hopefully less unreadable. V1.2 is the current version, see the image link changelog/older versions.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Vintl01.png]]&lt;br /&gt;
|author=Lord Nightmare/Victor-Sirius&lt;br /&gt;
|size=10&amp;amp;times;16&lt;br /&gt;
|resolution=800&amp;amp;times;400&lt;br /&gt;
|comments=The Victor 9000/Sirius 1 computer character set, extracted from vintl01.chr.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lumin ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[:Image:Lumin_Graphical_1280x800.png|Not shown due to size]]&lt;br /&gt;
|author=Lumin&lt;br /&gt;
|size=16&amp;amp;times;32&lt;br /&gt;
|resolution=1280&amp;amp;times;800&lt;br /&gt;
|comments=Ideas used from several others on this page. I've also added more detail and color to some objects.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Plac1d ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Plac1d_640x300EZ_1.png|thumb|right|Plac1d's Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Plac1d_640x300tileset.png]]&lt;br /&gt;
|author=[[User:Plac1d|Plac1d]]&lt;br /&gt;
|size=8&amp;amp;times;12&lt;br /&gt;
|resolution=640&amp;amp;times;300&lt;br /&gt;
|comments=A tweaked version of [[#Tocky|Tocky's 10&amp;amp;times;10 tileset]] converted to 8&amp;amp;times;12. Try using this with my [[List of user graphics sets#Plac1d|graphics set]]!&lt;br /&gt;
&lt;br /&gt;
[http://dffd.wimbli.com/file.php?id=63 Download the .BMP]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Quietust ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:VGA9x16.png]]&lt;br /&gt;
|author=Quietust/IBM?&lt;br /&gt;
|size=9&amp;amp;times;16&lt;br /&gt;
|resolution=720&amp;amp;times;400&lt;br /&gt;
|comments=The original? IBM VGA 9x16 character set, as would be displayed on a VGA card with the 9-pixel-width enabled.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Sergius ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Sleroux_800x300.png]]&lt;br /&gt;
|author=Sergius&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;300&lt;br /&gt;
|comments=Mostly vanilla tileset, dwarves have graphic from intro [[Utilities#CMVPlayer|Movie]], with some tweaks (for soldiers). I find it helpful for playing (instead of happy faces).&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Shaja ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Shaja_10-27-09.png|thumb|right|TerminusAliased text]]&lt;br /&gt;
[[Image:Shaja_10-13-09.png|thumbnail|right|Terminus24 text]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[:Image:TerminusAliased_handedit_gal.png|Not shown due to size]]&lt;br /&gt;
|author=[[User:Shaja|Shaja]]&lt;br /&gt;
|size=20&amp;amp;times;32&lt;br /&gt;
|resolution=1600&amp;amp;times;800&lt;br /&gt;
|comments=Alphanumerics based on Dimitar Zhekov's [http://www.is-vn.bg/hamster/jimmy-en.html Terminus] font with light antialias shading added, walls and some symbols redrawn, others carried over from Thom's 20x32 tileset.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[:Image:Terminus24.png|Not shown due to size]]&lt;br /&gt;
|author=[[User:Shaja|Shaja]]&lt;br /&gt;
|size=24&amp;amp;times;32&lt;br /&gt;
|resolution=1920&amp;amp;times;800&lt;br /&gt;
|comments=Revised version of my earlier Terminus 20x32 character set for 1920x800 display.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Taritus ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Curses 640x300diag.png]]&lt;br /&gt;
|author=Taritus&lt;br /&gt;
|size=8&amp;amp;times;12&lt;br /&gt;
|resolution=640&amp;amp;times;300&lt;br /&gt;
|comments=Yuppers.  I requested it a long time ago when everyone else was requesting different sized square tilesets with diagonal walls, and nobody ever fulfilled the request.  I decided, &amp;quot;Oh, it's not like I have some menial and huge English project that's due tomorrow to work on, I'm going to make that.&amp;quot; And I did.--[[User:Taritus|Taritus]] 20:53, 22 March 2009 (UTC)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Thom ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[:Image:Curses_24pt_cleartype_ThomModifications.PNG|Not shown due to size]]&lt;br /&gt;
|author=Herrbdog&lt;br /&gt;
|size=20&amp;amp;times;24&lt;br /&gt;
|resolution=1600&amp;amp;times;800&lt;br /&gt;
|comments=Hi res won't slow the game as it doesn't use graphics, so if your monitor can display it, go for it, really...&amp;lt;br&amp;gt;I strongly recommend to enable blackspace in the init: [BLACK_SPACE:YES]&amp;lt;br&amp;gt;Made from the 24pts cleartype lucida console above (from winterwing). I added some stuff (some original, some ideas taken from others tilesets). Basically I try to avoid symbols that are often seen in menus, etc. The main &amp;quot;problem&amp;quot; is the bag, because its the male symbol, but it was too good looking to not put it ;) Hope you enjoy :) &amp;lt;br&amp;gt;&amp;lt;font color=white&amp;gt;. . .&amp;lt;/font&amp;gt;&amp;lt;small&amp;gt;Note: Winterwing's tileset is now lost. --[[User:Savok|Savok]]&amp;lt;/small&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== UncleSporky ===&lt;br /&gt;
&lt;br /&gt;
[[Image:UncleSporky_DFTiles1.png|thumb|right|UncleSporky Tileset]] &lt;br /&gt;
[[Image:UncleSporky_DFTiles2.png|thumb|right|UncleSporky Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:UncleSporky_curses_800x600.png]]&lt;br /&gt;
|author=UncleSporky&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;300&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Xenomorph ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Acorntileset.png]]&lt;br /&gt;
|author=[[User:Xenomorph|Xenomorph]]&lt;br /&gt;
|size=8&amp;amp;times;16&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=This is the tileset used by Acorn computers, starting with the BBC Micro.  This version is as it would have appeared in 80-column modes (albeit adapted to CP437). [http://dffd.wimbli.com/file.php?id=408 Download the BMP.]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Zaratustra ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_megazeux2.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=8&amp;amp;times;14&lt;br /&gt;
|resolution=640&amp;amp;times;350&lt;br /&gt;
|comments=EGA font with added Megazeux modifications.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_custom800x300ca3.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;300, 800&amp;amp;times;600 (non-reccomended)&lt;br /&gt;
|comments=Has an appropriate [http://archive.dwarffortresswiki.net/index.php/Object_Tilesets#10x12_version object tileset for v0.23.130.23a (now outdated)]. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Tiny tilesets ==&lt;br /&gt;
&lt;br /&gt;
Sets smaller than 8&amp;amp;times;8. Used for playing in tiny windows, large grids, display massive maps and perhaps videos.&lt;br /&gt;
&lt;br /&gt;
=== Herrbdog ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Herrbdog_7x7.jpg|thumb|right|herrbdog's 7x7 tileset]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:Herrbdog_7x7_tileset.gif]]&lt;br /&gt;
|author=[[User:herrbdog|herrbdog]]&lt;br /&gt;
|size=7&amp;amp;times;7&lt;br /&gt;
|resolution=560&amp;amp;times;175&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Kein ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Kein_400x125.gif|thumb|right|Kein's 5x5]] &lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kein_400x125.png]]&lt;br /&gt;
|author=[[User:Kein|Kein]]&lt;br /&gt;
|size=5&amp;amp;times;5&lt;br /&gt;
|resolution=400&amp;amp;times;125&lt;br /&gt;
|comments=A large 257x257 DFMA world gen map can be found [http://mkv25.net/dfma/map-3278-5x5largeworldmap here.]Updated 08/06/08. Changed most text characters as well as some others to 4x4 with blackspace to avoid tiling. Most characters have been revised to be spaced out to be more distinguishable in such a small set. After seeing the dev update earlier today about increasing your view size I decided to create this small font. This has been built completely from scratch, mostly while at work today. I may be making a shaded version in the future. The first image to the right is from the Abeyverse succession game.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lord Nightmare ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord Nightmare 6x6font01.png]]&lt;br /&gt;
|author=Lord Nightmare&lt;br /&gt;
|size=6&amp;amp;times;6&lt;br /&gt;
|resolution=480&amp;amp;times;150&lt;br /&gt;
|comments=Made in 5 hours on 11/5/07 (I was bored and dissatisfied with other fonts). Most glyphs are really 5&amp;amp;times;6, with a seperator column.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Nightmare_6x6_v2.jpg|thumb|right|Lord Nightmare's 6x6 v2]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord Nightmare 6x6font02.png]]&lt;br /&gt;
|author=Lord Nightmare&lt;br /&gt;
|size=6&amp;amp;times;6&lt;br /&gt;
|resolution=480&amp;amp;times;150&lt;br /&gt;
|comments=Version 2.05. Updated 11/12/07 to de-fuzz uppercase letters, added serifs and clarified lowercase letters, made horizontal spacing consistent throughout character set, fixed one error in the double horizontal-left-right, single-vertical-up-down character, made exclamation points consistent, thinned out ? and inverse ?, sharpened sideways stemless arrows, clarified international characters, and clarified some greek letters. Since v2.0: fixed 'i' 'g', fixed Yen symbol, fixed smiley 0x01 to not have an extra line to its right, lowered the period and colon characters, fixed position of 'x'. Thanks to Markavian for ideas on how to improve the font, as well as an occasional character glyph.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord-Nightmare-Terminal-4x6.png]]&lt;br /&gt;
|author=Lord Nightmare/Microsoft&lt;br /&gt;
|size=4&amp;amp;times;6&lt;br /&gt;
|resolution=320&amp;amp;times;150&lt;br /&gt;
|comments=A DF conversion of the 4x6 variant of Microsoft's 'Terminal' Font. Note that I have left the font entirely alone other than converting it, so several glyphs are indistinguishable from one another!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Markavian ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Mkv_curses_480x150.png]]&lt;br /&gt;
|author=[[User:Markavian|Markavian]]&lt;br /&gt;
|size=6&amp;amp;times;6&lt;br /&gt;
|resolution=480&amp;amp;times;150&lt;br /&gt;
|comments=The first version the tiny tileset, superceded by the version below.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:mark_6x6_v2.jpg|thumb|right|Markavian's 6x6 v2]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Mkv_curses_480x150_v2.png]]&lt;br /&gt;
|author=[[User:Markavian|Markavian]]&lt;br /&gt;
|size=6&amp;amp;times;6&lt;br /&gt;
|resolution=480&amp;amp;times;150&lt;br /&gt;
|comments=My second version of the tiny tileset, for uber small resolution DF, with improved visibility of several symbols.&lt;br /&gt;
Available in [http://mkv25.net/showcase/df/mkv_curses%2012x12%20and%206x6%20v2.zip mkv curses 12&amp;amp;times;12 and 6&amp;amp;times;6 v2.zip].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Terbert ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:terbert_7x7.png]]&lt;br /&gt;
|author=[[User:Terbert|Terbert]]&lt;br /&gt;
|size=7&amp;amp;times;7&lt;br /&gt;
|resolution=560&amp;amp;times;175&lt;br /&gt;
|comments=This is a 7x7 tileset made for overseeing large constructions &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Zaratustra ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Zara_4x6.jpg|thumb|right|Zaratustra's 4x6]] &lt;br /&gt;
[[Image:Zara_5x6.jpg|thumb|right|Zaratustra's 5x6]] &lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_custom_4x6.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=4&amp;amp;times;6&lt;br /&gt;
|resolution=320&amp;amp;times;150&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_custom_5x5.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=5&amp;amp;times;5&lt;br /&gt;
|resolution=400&amp;amp;times;125, 800&amp;amp;times;250, 800&amp;amp;times;500&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_custom_5x6.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=5&amp;amp;times;6&lt;br /&gt;
|resolution=400&amp;amp;times;150, 800&amp;amp;times;300, 800&amp;amp;times;600&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding]]&lt;br /&gt;
[[Category:Interface]]&lt;/div&gt;</summary>
		<author><name>Martin</name></author>
	</entry>
	<entry>
		<id>https://dwarffortresswiki.org/index.php?title=Tileset_repository&amp;diff=7047</id>
		<title>Tileset repository</title>
		<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php?title=Tileset_repository&amp;diff=7047"/>
		<updated>2009-08-08T19:15:37Z</updated>

		<summary type="html">&lt;p&gt;Martin: /* 16&amp;amp;times;16 tilesets */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''You may be looking for general information on [[tilesets]] or the [[List of user graphics sets]].''&lt;br /&gt;
&lt;br /&gt;
== Square tilesets ==&lt;br /&gt;
&lt;br /&gt;
These are all the character sets with square tiles, except for the character sets with 16&amp;amp;times;16 tiles. Those are listed [[List_of_user_character_sets#16.C3.9716_tilesets|below]]. Text in square tilesets (as opposed to tilesets with shorter width) is usually more difficult to read, but the map is not distorted.&lt;br /&gt;
&lt;br /&gt;
=== Anikki ===&lt;br /&gt;
&lt;br /&gt;
[[Image:df_anikki_2.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Anikki_square_8x8.png]]&lt;br /&gt;
|author=[[User:Anikki|Anikki]]&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;200 native.&lt;br /&gt;
|comments=Based on the original IBM CGA Character set with a lot of tweaks. The characters remain as descriptive yet universal as possible. I chose the CGA set because it is in my opinion the square set with the best readability. This set is for those who like the basic ASCII look where every pixel has meaning or (multiple meanings). [http://www.anikki.com/share/df/Anikki_square_8x8.bmp Download the BMP]&lt;br /&gt;
&lt;br /&gt;
There is also an upscaled [[#Anikki_2|16x16 version]] of this set available for fullscreen use below.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:df_anikki_1.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Anikki_square_10x10.png]]&lt;br /&gt;
|author=[[User:Anikki|Anikki]]&lt;br /&gt;
|size=10&amp;amp;times;10&lt;br /&gt;
|resolution=800&amp;amp;times;250 native.&lt;br /&gt;
|comments=Based primarily on Tocky and Plac1d's sets (which are brilliant). The characters remain as descriptive as possible with some tweaks to the font for better readability and some changes to symbols for more consistency. This set is for those who like the basic ASCII look where every pixel has meaning or (multiple meanings). [http://www.anikki.com/share/df/Anikki_square_10x10.bmp Download the BMP]&lt;br /&gt;
(Note: The up and down ramps are reversed.)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Anikki_square_20x20.png]]&lt;br /&gt;
|author=[[User:Anikki|Anikki]]&lt;br /&gt;
|size=20&amp;amp;times;20&lt;br /&gt;
|resolution=1600&amp;amp;times;500 native.&lt;br /&gt;
|comments=Based primarily on Tocky and Plac1d. This is a scaled up version of the 10x10 tileset for fullscreen use. [http://www.anikki.com/share/df/Anikki_square_20x20.bmp Download the BMP]&lt;br /&gt;
(Note: The up and down ramps are reversed.)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Dorten ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Snap.PNG|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:720x225_SmoothWalls.PNG]]&lt;br /&gt;
|author=[[User:Dorten|Dorten]]&lt;br /&gt;
|size=9&amp;amp;times;9&lt;br /&gt;
|resolution=720&amp;amp;times;225&lt;br /&gt;
|comments=It's improved Savok's tileset, which is changed to make walls look smooth. Plus another little differnces.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Hanuman ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:DB_curses_12x12.PNG]]&lt;br /&gt;
|author=[[User:Hanuman|Hanuman]]&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=900&amp;amp;times;300&lt;br /&gt;
|comments=This is basically the curses_800x600.bmp file converted to 12x12. It may be slightly different but it is close enough for me. [http://dffd.wimbli.com/file.php?id=318 Get the .BMP here.]&lt;br /&gt;
Note: If the tileset doesn't look right played at 900x300, try changing the resolution to 966x325.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Haowan ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Haowan_Curses_1440x450.png]]&lt;br /&gt;
|author=Haowan&lt;br /&gt;
|size=18&amp;amp;times;18&lt;br /&gt;
|resolution=1440&amp;amp;times;450&lt;br /&gt;
|comments=An enlarged version of a square version of the default set.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Herrbdog ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Herrbdog_144.png]]&lt;br /&gt;
|author=Herrbdog&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=A larger version of this tileset is available [[#Herrbdog 2|below]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lord Dullard ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Dullard_Exponent_12x12.png]]&lt;br /&gt;
|author=Lord Dullard/Exponent&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300 native&lt;br /&gt;
|comments=Adjusted by Exponent, and with new dwarf characters added. A version of the Unknown 12×12 tileset with smoothed walls. Example: [http://mkv25.net/dfma/map-5243-wiltedblight Wiltedblight].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lord Nightmare ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:CGA8x8thick.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=The original IBM CGA Character set, thick variant, dumped from addresses 0x1800-0x1fff the 5788005 IBM Character Generator ROM. This is the far more common 'thick' variant. Best viewed at 8:5 aspect ratio.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Nightmare_cga_8x8.jpg|thumb|right|Lord Nightmare's 8&amp;amp;times;8 CGA tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:CGA8x8thin.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=The original IBM CGA Character set, thin variant, dumped from addresses 0x1000-0x17ff the 5788005 IBM Character Generator ROM. This is the less common 'thin' variant, which required soldering on two pins and jumpering them on the CGA card to use. Best viewed at 8:5 aspect ratio.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:EGA8x8.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=The IBM EGA 8&amp;amp;times;8 Character set, dumped from the 6277356 IBM EGA BIOS ROM. This is ALMOST 100% IDENTICAL to the CGA thick font, but has minor modifications (23 pixels total) done to four characters: the capital 'S', the club sign, the spade sign, and the large asterisk (the one with a hole in the middle, char 0x0f, not the shift-8 one which is char 0x2a). There is no thin variant of this font. Best viewed at 8:5 aspect ratio.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Maus ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Nostalgia_720x225.png]]&lt;br /&gt;
|author=[[User:Maus|maus]]&lt;br /&gt;
|size=9&amp;amp;times;9&lt;br /&gt;
|resolution=720&amp;amp;times;225&lt;br /&gt;
|comments=Another square tileset that's usable on low resolutions, modeled after a common font used on the Nintendo Entertainment System. An 18x18 version for 1440x450 resolution is also [[:Image:Nostalgia_1440x450_3e4a08.png|available here]], and is really nice on a widescreen monitor. An NES palette is [[User:Maus|available here]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Markavian ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:mkv_solidcurses_stairs_960x300.png]]&lt;br /&gt;
|author=[[User:Markavian|Markavian]]&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=This revision is designed to work with DF version 0.27.169.33a with special tiles for [[stair]]s and [[ramp]]s, as well as the changes present in the earlier version such as bones, walls, trees and swords.&amp;lt;br&amp;gt; Available in [http://mkv25.net/showcase/df/mkv_curses%2012&amp;amp;times;12%20and%206x6%20v2.zip mkv curses 12&amp;amp;times;12 and 6x6 v2.zip]. As seen in the fortress of [http://mkv25.net/dfma/map-1329-axegear Axegear].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Mkv_solidcurses_960x300.png]]&lt;br /&gt;
|author=[[User:Markavian|Markavian]]&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=An older revision of my square tileset, featuring more detailed symbols, with alterations to certain text characters to look more like ingame items. The walls are infilled now.&amp;lt;br&amp;gt; &lt;br /&gt;
Available in [http://mkv25.net/showcase/df/mkv_curses%2012&amp;amp;times;12%20and%206x6%20v2.zip mkv curses 12&amp;amp;times;12 and 6x6 v2.zip]. As seen in the fortress of [http://mkv25.net/dfma/map-800-inflew. Inkflew].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Paul ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Paul_10x10.png]]&lt;br /&gt;
|author=[[User:Paul|Paul]]&lt;br /&gt;
|size=10&amp;amp;times;10&lt;br /&gt;
|resolution=800&amp;amp;times;250 for 80&amp;amp;times;25 grid size, others just multiply grid by 10.&lt;br /&gt;
|comments=Custom tileset I made for my own use when the adjustable grid sizes were released for DF. Some accented letters cut slightly to allow for larger letter display. Contains several of Tocky's tiles (barrels, some trees, dimple cups, coins, slightly modified armor stand). Others are either made by me or adjusted from curses_800x600 tiles.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Random832 ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Msgothic.png]]&lt;br /&gt;
|author=[[User:Random832]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;800 etc&lt;br /&gt;
|comments=Based on the ＭＳ ゴシック (MS Gothic) japanese font, with some gaps filled in from the VGA 8x16 font, and some other characters tweaked by hand.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Savok ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Screenshot_41ea57.png|thumb|right|Savok's tiny, non-updated tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Curses_720x225_8d6752.png]]&lt;br /&gt;
|author=[[User:Savok|Savok]]&lt;br /&gt;
|size=9&amp;amp;times;9&lt;br /&gt;
|resolution=720&amp;amp;times;225&lt;br /&gt;
|comments=There is no doubt that this tileset is old. This must be distinctly understood if anything wonderful is to come of your use of it. You may like [[List_of_user_character_sets#Dorten|Dorten's revision]] more. The following is the original description:&amp;lt;br&amp;gt;I dislike curses_640x300.bmp due to its lack of any kind of graphics for things like a bed or a barrel and the fact that it distorts my beautiful circles, so I made a similarish tileset to fix those.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Teeto_K===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Teeto_K_18x18.PNG]]&lt;br /&gt;
|author=[[User:Teeto_K|Teeto_K]]&lt;br /&gt;
|size=18&amp;amp;times;18&lt;br /&gt;
|resolution=1440&amp;amp;times;450&lt;br /&gt;
|comments=A tileset based on [[:Image:Nostalgia_1440x450_3e4a08.png|Maus's 18x18 version of his &amp;quot;Nostalgia&amp;quot; tileset]], however, it has been heavily revised. The entire font has been &amp;quot;smoothed over&amp;quot;, and many of the symbols changed to more &amp;quot;graphical&amp;quot; representations of the items they represent. An attempt to fill the void of &amp;quot;graphic heavy&amp;quot; tilesets in the 18x18 tile-size. A special emphasis is placed on maximizing the text's readability, while still providing a &amp;quot;graphics enhanced&amp;quot; play area. Special thanks to Maus for the font, and Guybrush for the inspiration.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Terbert ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Terbert_10x10.png]]&lt;br /&gt;
|author=[[User:Terbert|Terbert]]&lt;br /&gt;
|size=10&amp;amp;times;10&lt;br /&gt;
|resolution=800&amp;amp;times;250&lt;br /&gt;
|comments=This is Terbert's First tileset&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Tocky ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Df_tock10_1.PNG|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tocky_square_10x10.png]]&lt;br /&gt;
|author=[[User:Tocky|Tocky]]&lt;br /&gt;
|size=10&amp;amp;times;10&lt;br /&gt;
|resolution=800&amp;amp;times;250 native, 800&amp;amp;times;500 for fullscreen.&lt;br /&gt;
|comments=I tried to make all the pictographic symbols as descriptive as possible: the only ones I've spotted that show up in odd places are the staircase symbols, '&amp;lt;' and '&amp;gt;', which are used as tags on barrel descriptions, and don't match -- but I'm willing to live with that in order to be able to tell up-stairs from down- ones. With everything else, I just tried to maximize clarity and readability and to keep them consistent. I'm really very pleased with how this set turned out. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Turnip ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Rev7.PNG|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Markvii.png]]&lt;br /&gt;
|author=[[User:Turnip|Turnip]]&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=My revision of Markavian's tileset, made to be more &amp;quot;curvy&amp;quot;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Unknown ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tileset_unknown_960x300_02.png]]&lt;br /&gt;
|author=Unknown&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=This is a tileset submitted by an unknown user from the IP address 86.43.81.125. &amp;lt;!-- no need to say that for the default characters --&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Unknown_12x12.jpg|thumb|right|Unknown 12&amp;amp;times;12 v2]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Unknown_curses_12x12.png]]&lt;br /&gt;
|author=Unknown&lt;br /&gt;
|size=12&amp;amp;times;12&lt;br /&gt;
|resolution=960&amp;amp;times;300&lt;br /&gt;
|comments=This is very similar to the above tileset, but has some noticeable differences. I have no idea where I got it from. It's great on a 1024x768 CRT monitor in windowed mode. I use it in a 1000x500 window with [BLACKSPACE:YES]. --[[User:JT|JT]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Xenomorph ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Acorntileset8x8.png]]&lt;br /&gt;
|author=[[User:Xenomorph|Xenomorph]]&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;200&lt;br /&gt;
|comments=This is the tileset used by Acorn computers, starting with the BBC Micro.  This version is as it would have appeared in 40-column modes (and shuffled a little to adapt it to CP437).  It also looks nice at double resolution. [http://dffd.wimbli.com/file.php?id=407 Download the BMP.]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Yayo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:yayo_c64_640x200_screenshot.png|thumb|right|yayo's c64 Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:yayo_c64_640x200.png]]&lt;br /&gt;
|author=[[User:Yayo|Yayo]]&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;200&lt;br /&gt;
|comments=Name: Yayo's C64; Based on the charset of the commodore 64. It's a flat style, but it's clean and also highly readable. I recreated all the missing chars like letters with accents and symbols, trying to get a c64 style as much as possible. If it's too small, use the 16&amp;amp;times;16 version [[#Yayo_2|below]]. :)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:yayo_tunur_1040x325_screenshot.png|thumb|right|yayo's Tunur Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:yayo_tunur_1040x325.png]]&lt;br /&gt;
|author=[[User:Yayo|Yayo]]&lt;br /&gt;
|size=13&amp;amp;times;13&lt;br /&gt;
|resolution=1040&amp;amp;times;325&lt;br /&gt;
|comments=Name: Yayo's Tunur; According to the language files of DF, Tunur means &amp;quot;style&amp;quot; in dwarf language. It may require a bit to get used to some symbols, but it's a very clean tileset. (It's just a bit weird. :P)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Zaratustra ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Zara_8x8.jpg|thumb|right|Zaratustra's 8&amp;amp;times;8 tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_msx.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=8&amp;amp;times;8&lt;br /&gt;
|resolution=640&amp;amp;times;200 or 640&amp;amp;times;400&lt;br /&gt;
|comments= The MSX and MSX2 font, shuffled around to fit the char set. Double lines were added.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== 16&amp;amp;times;16 tilesets ==&lt;br /&gt;
&lt;br /&gt;
The 16&amp;amp;times;16 tilesets are a subset of square character sets. 16&amp;amp;times;16 is a frequently used size, as shown by the number of tilesets in this section. This is probably because all of the best creature graphics sets use 16&amp;amp;times;16 tiles. Those alternate sets for creatures can be found at [[graphics sets]]. '''If your screen is too small for these, turn on BLACK_SPACE!'''&lt;br /&gt;
&lt;br /&gt;
=== Aesomatica ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Aesomatica_16x16.png]]&lt;br /&gt;
|author=[[User:Aesomatica|Aesomatica]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400 native.&lt;br /&gt;
|comments=Tileset intended to build upon [[User:Sphr|Sphr's]] and [[User:Jackard|Jackard's]] work, as well as others. Some tiles are original, some are variants and most are copied from various sets the author found pleasing. Notable originals include the broken bolt/ashes tiles, the ballista heads/large hills, the small hills, the ore (gear animation is pleasing, though axle animation is unimproved), ground tiles, and vermin. Also, bins look decent and up/down stairs look okay. This set looks its best with Sphr's graphics.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Anikki ===&lt;br /&gt;
&lt;br /&gt;
[[Image:df_anikki_2.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Anikki_square_16x16.png]]&lt;br /&gt;
|author=[[User:Anikki|Anikki]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400 native.&lt;br /&gt;
|comments=Based on the original IBM CGA Character set with a lot of tweaks. The characters remain as descriptive yet universal as possible. I chose the CGA set because it is in my opinion the suqare set with the best readability. This set is for those who like the basic ASCII look where every pixel has meaning or (multiple meanings). This is a scaled up version for fullscreen use. [http://www.anikki.com/share/df/Anikki_square_16x16.bmp Download the BMP]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Belal ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Belal_Example.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Belal_Smooth_Walls.png]]&lt;br /&gt;
|author=[[User:Belal|Belal]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400 native.&lt;br /&gt;
|comments=Based on the Mike Mayday tileset and using angled smoothed walls as in [[User:Dorten|Dorten's]] Tileset.  I like the look of the walls for doing near circular or honeycomb layouts. [http://mkv25.net/dfma/poi-9935-seethewallshere Example Fort] &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Cooz ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Cooz_Tileset_Screenshot.png|thumb|right|Cooz's Tileset]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Cooz_curses_square_16x16.png]]&lt;br /&gt;
|author=[[User:Cooz|Cooz]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400 native.&lt;br /&gt;
|comments=v1.1 - 3px wide walls and some other tweaks. Based on Klokjammer and Marble Dice tilesets. Some tiles were taken from other sets, some were made from scratch. The aim was to keep feel of default curses font in 16&amp;amp;times;16 tileset. There's also [http://www.dwarffortresswiki.net/index.php/Image:Cooz_curses_square_flat_16x16.png version without shading].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Flying Mage ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:Flying_Mage_square_16x16.png]]&lt;br /&gt;
|author=[[User:Flying Mage|Flying Mage]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A 16&amp;amp;times;16 tileset based on several other tilesets by various authors. I did some changes because I like some things in different ways, but the base for tileset was made by another users and for this I thankful. List of major and minor changes you can see below. And I hope you'll enjoy this. There is some tiles I really proud of :)&amp;lt;br&amp;gt;&lt;br /&gt;
*[[:Image:Flying_Mage_square_16x16_Major_Changes.png|Major changes]]&amp;lt;br&amp;gt;&lt;br /&gt;
*[[:Image:Flying_Mage_square_16x16_Minor_Changes.png|Minor changes]]&lt;br /&gt;
*[[:Image:Flying_Mage_square_16x16_Stone_Type.png|Some ''rough/smoothed/engraved stone'' improvement]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Guybrush ===&lt;br /&gt;
&lt;br /&gt;
[[Image:GuybrushScreenshot1.PNG|thumb|right|Guybrush Tileset]]&lt;br /&gt;
[[Image:GuybrushScreenshot2.PNG|thumb|right|the wilderness...]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:Guybrush_square_16x16.png]]&lt;br /&gt;
|author=[[User:Guybrush|Guybrush]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A 16&amp;amp;times;16 tileset based on the very nice Herrbdog's one, and for use with the superb [[Graphics_sets#Dystopian_Rhetoric|Dystopian Rhetoric objects]]. A slightly modified version of Herrbdog's tileset is available below if you want to keep the original ASCII symbols for some objects (just do some cut &amp;amp; paste). It's just a little brighter and with some very slight changes. The tileset shown is a tileset with graphic objects added, for use with Fortress Mode.&lt;br /&gt;
&lt;br /&gt;
I recommend to have a look at the [[color schemes|color schemes page]] to find your favorite color settings. The color scheme I used for the screenshots is [[Color_Schemes#.28Yet.29_Another_scheme|this one]].}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:GuybrushASCII_curses_square_16x16.png]]&lt;br /&gt;
|author=Herrbdog, modified by [[User:Guybrush|Guybrush]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Here is the slightly modified version of Herrbdog's tileset which still has all the ASCII characters intact&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Herrbdog ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Herrbdog_16x16_tileset.gif]]&lt;br /&gt;
|author=Herrbdog&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=The 16&amp;amp;times;16 version of Herrbdog's tileset. Further discussion of herrbdog's tilesets is available in the Bay 12 forums:&lt;br /&gt;
http://www.bay12games.com/cgi-local/ultimatebb.cgi?ubb=get_topic&amp;amp;f=2&amp;amp;t=000832&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Inquisitor Saturn ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:MRC_square_16x16.png]]&lt;br /&gt;
|author=Inquisitor Saturn&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Another 16 by 16 tileset. This one is notable because of the subtle shadowing and a completely original, hand-made font.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Isenhertz ===&lt;br /&gt;
&lt;br /&gt;
[[Image:isenhertz_v2_screenshot.png|thumb|right|Isenhertz's tileset in action.]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:16x16_isenhertz_v2.png]]&lt;br /&gt;
|author=[[User:Isenhertz|Isenhertz]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Impressed with the genius of using sprites as tiles, I cobbled together this tileset of my own. It uses Super Foul Egg's superb font as a base, with several sprites also found in other users' sets. Because a lot of letters are used for graphics, I suggest that you [[User:Jackard|remove accented letters from names]] with this set. I also suggest you shift some items to other icons, such as the coniferous trees (change Pine, Cedar, Larch from 024 to 147), the turtle (change 15 to 151), and Quarry Bush leaves (change from 006 to 003).&lt;br /&gt;
V2 now with new graphics for walls and liquids, as well as some other tweaks here and there and a first attempt at using dual-color sprites using a cyan base instead of simple greyscale. (Right now implemented for beds, wood and statues.)&lt;br /&gt;
V1 can still be found [[:Image:16x16_isenhertz_v1.png|here]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Kaishaku ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kai-1280x400-v2 7512b5.png]]&lt;br /&gt;
|author=Kaishaku&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A square 1280&amp;amp;times;400 font. Simple and legible. Converted from roarl's 16&amp;amp;times;16 nethack font, on top of super foul egg's template, extended manually and with ideas from lucida console. This is version 1, created in one morning. Screenshots available [http://kaishaku.org/dwarfort here].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Kelora ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kelora_16x16_diagonal.png]]&lt;br /&gt;
|author=[[User:Kelora|Kelora]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=&lt;br /&gt;
|comments=A square tileset using the diagonal wall concept from Belal and others but simplified drastically to improve the appearance. All the walls line up correctly and have consistent widths.&lt;br /&gt;
I did not use much of the pretty but confusing art I see in many of the other sets. I tried for a while to incorporate many of these but found that with the multiple uses for most characters they were just wrong far too often to be useful. The only ones that seem to work are the dwarves which I took from Flying Mage / Guybrush. The pretty 3Dish fonts as well just seem to look muddier and be less legible. I love it and my husband has been happily playing it for months.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Klokjammer ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kjammer square 16x16 v02.png]]&lt;br /&gt;
|author=[[User:Klokjammer|Klokjammer]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Name: ''&amp;quot;Masked Adventurer&amp;quot;'' - after tile (0,4), where '@' used to be. A somewhat abstract version of the original curses square tileset, but with the alpha numeric characters shaped so as not to look distorted. Other symbols are either borrowed from or improved from curses, and some (including the dwarves) were created from the ground up. Alternate variations, are available [[User:Klokjammer#My Tilesets|here]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kjammer square 16x16 v00.png]]&lt;br /&gt;
|author=[[User:Klokjammer|Klokjammer]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A &amp;quot;clean&amp;quot; version of the above set, one without any fancy tiles (except for the dwarves).&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Marble Dice ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Md_curses_16x16.png]]&lt;br /&gt;
|author=[[User:Marble Dice|Marble Dice]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=This tileset attempts to modify the size and aspect ratio of the classic 8x12 terminal/curses font employed by many rougelikes without sacrificing the distinctive character.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Martin ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Martin_16x16_sample.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Martin_16x16.png]]&lt;br /&gt;
|author=[[User:Martin|Martin]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=This is a 16x16 tileset based on Redjack and Flying Mage sets (and possible tiles taken from others that I've since lost track of - apologies). Some tiles are original or have been tweaked, mainly to provide a much more subtle background than most. A completely new character set is used to improve legibility, tweaked and anti-aliased for dark backgrounds. &lt;br /&gt;
&lt;br /&gt;
[http://dffd.wimbli.com/file.php?id=13160 Download]&lt;br /&gt;
[http://mkv25.net/dfma/map-6239-lashedwines Demo fortress at DFMA]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Nordic Curses ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:DF-Nordic_v1.png]]&lt;br /&gt;
|author=[[User:Techhead|Techhead]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=My first attempt at a unique curses-style tileset with a Nordic Theme. Some characters have been altered.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== PTTG ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:PTTGV2tiles.png]]&lt;br /&gt;
|author=[[User:PTTG|PTTG]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A new version! Clean, sharp, and clear. All-original, and large size for big screens! Also features coloured indicators for levers, helping to remove the guesswork. It is good stand-alone, or with my [[List of user graphics sets#PTTG|graphics set]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Red Jack===&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:Redjack17.png]]&lt;br /&gt;
|author=[[User:Jackard|Jackard]]&lt;br /&gt;
|size=16x16&lt;br /&gt;
|resolution=1280x400&lt;br /&gt;
|comments=This combines content from other tilesets with Nintendo sprites to give the game a classic dungeon look.&lt;br /&gt;
&lt;br /&gt;
[http://dffd.wimbli.com/file.php?id=7 You may download all variations of this tileset here.]}}&lt;br /&gt;
&lt;br /&gt;
=== Sappho ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Sapphos_square_16x16.png]]&lt;br /&gt;
|author=Sappho&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Another square font, target resolution 1280&amp;amp;times;400. This one is exactly the same as the default font except it has been made square, painstakingly edited to ensure that nothing looks squished.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Savok ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Savok_curses_1280x400_517caa.png]]&lt;br /&gt;
|author=[[User:Savok|Savok]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Unsatisfied with any existing tileset, I decided to go about creating my own. Since I can't create from scratch, I had to take tiles from other tilesets and modify them, in an evolution-like manner, until they became how I wanted them. Since most are dramatically different from the tileset I took them from, I believe I can call them original.&amp;lt;br&amp;gt;In the raws, change the tag [TILE:'U'] for humans to [TILE:172]. This changes both the image and corpse of humans to a unique image, which creature graphics cannot do. The elves also get a different tile, [TILE:171]. I plan to make a separate goblin symbol.&amp;lt;br&amp;gt;If you use it and like it, please leave a message for at [[User talk:Savok|my talk page]] or at [http://dffd.wimbli.com/file.php?id=201 the DFFD page]. This will greatly speed progress, since I won't be doing it just for myself.&amp;lt;br&amp;gt;Note: The [http://dffd.wimbli.com/file.php?id=201 DFFD version] is updated more frequently and has the changelist.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== SL ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:SL_square_16x16.png]]&lt;br /&gt;
|author=[[User:SL]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=(Requires a download, not just the image) Art based on Flying Mage's, Guybrush's, and previous tilesets in that lineage. Uses ModBase to relocate relocatable art and de-accentify certain accented letters to reduce graphical bizarreness while still improving some art. [http://www.bay12games.com/forum/index.php?topic=22154.0 Forum Thread] [http://dffd.wimbli.com/file.php?id=370 Download] [http://mkv25.net/dfma/map-3203-flamespear Demo Fortress Map on the DFMA]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Spreggo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Autonomous_Font_example.png|thumb|right|The Autonomous Font in action.]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Autonomous_Font.png]]&lt;br /&gt;
|author=Spreggo&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Started off inspired by Belal's diagonal support, and ended up doing almost every tile from scratch. Added different tiles for each type of stone, and new ones for ore, but the matgloss files need to be edited for that functionality(see image details).&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Super Foul Egg ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:SFE_Curses_square_16x16.png]]&lt;br /&gt;
|author=Super Foul Egg&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=The font is rough as hell and some of the characters still need attention, but it'll do for now. Since this tileset is for graphics mode I'd rather wait for more complete object support than hack in pictures and gum up the UI. Uppercase from [http://www.zee-3.com/pickfordbros/archive/bitmapfonts.php this site]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Tahin ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tahin_16x16_rounded.png]]&lt;br /&gt;
|author=[[User:Tahin|Tahin]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Based on Marble Dice's tileset, above. Smoothed corners are &amp;quot;rounded&amp;quot;, which takes some getting used to but look quite nice, in my opinion. I have managed to get all of the standard &amp;quot;L&amp;quot; tiles to fit together nicely, but &amp;quot;T&amp;quot; and &amp;quot;+&amp;quot; don't quite match up. It's not a problem that comes up often, and it still doesn't look that bad, but I'll get to it eventually.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== The-Moon ===&lt;br /&gt;
&lt;br /&gt;
[[Image:SS_moons_square_16x16.PNG|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Moons_square_16x16.PNG]]&lt;br /&gt;
|author=[[User:The-Moon|The-Moon]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Edited Character set of [[User:mikemayday|mikemayday]] and [[User:Jackard|Jackard]]}}&lt;br /&gt;
&lt;br /&gt;
=== Tigrex ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:tigrex3d.PNG]]&lt;br /&gt;
|author=[[User:Tigrex|Tigrex]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=This is my tileset, modified from Dorten's 2d diagonal wall set.  It incorporates many original creations of mine, and I hope you like it.}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:tigrex3drunes.PNG]]&lt;br /&gt;
|author=[[User:Tigrex|Tigrex]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=This is a modification of the above, that takes advantage of Norse runes for a more authentic Dwarven experience.  CAUTION!  This tileset has little practical value, and may induce myopia, blindness, or death.}}&lt;br /&gt;
&lt;br /&gt;
=== Tim's ===&lt;br /&gt;
&lt;br /&gt;
[[Image:example_tims.png|thumb|right]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tims_16x16.png]]&lt;br /&gt;
|author=[[User:Timmeh|Timmeh]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=A tileset using heavily modified versions of the diagonal walls from Belal's set, a modified version of the floor from Spreggo's set, most of the furniture and objects are from Flying Mage's set, and some various other bits and pieces from other sets.  Replaces the black box that normally surrounds the walls with a copy of the floor tile.  [http://mkv25.net/dfma/map-5740-foresthold Example Fort]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Tyrving ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Tyr_1280x400.PNG]]&lt;br /&gt;
|author=[[User:Tyrving|Tyrving]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=None of the existing modifications of curses_square satisfied me, so I made my own. The bulk of it is from Klokjammer's set, with the dwarf symbols and @ taken from Sappho's. Quite a few minor alterations have been made, and I feel that it's become distinct enough to release it.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Winterwing ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Winterwing_Dfort-tiles-lucon.png|thumb|right|Lucida Console with Dystopian Rhetoric objects]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Winterwing_Curses_16x16_lucon.png]]&lt;br /&gt;
|author=[[User:Winterwing|Winterwing]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Like usual, lucida console with cleartype. Creative, huh. :)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Yayo ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Yayo_c64_1280x400_83b157.png]]&lt;br /&gt;
|author=[[User:Yayo|Yayo]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Name: Yayo's C64; The 16&amp;amp;times;16 version of Yayo's tileset.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Zaratustra ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_16x16.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=16&amp;amp;times;16&lt;br /&gt;
|resolution=1280&amp;amp;times;400&lt;br /&gt;
|comments=Because everyone is making one.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Non-square tilesets ==&lt;br /&gt;
&lt;br /&gt;
These tilesets are not square. Text in non-square tilesets often looks much better and is often much easier to read than in square tilesets, but the map is distorted.&lt;br /&gt;
&lt;br /&gt;
=== CKY ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[File:Curses_800x600_shade.png]]&lt;br /&gt;
|author=[[User:Chinkeeyong|Chinkeeyong]]&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;600&lt;br /&gt;
|comments=Partially inspired by Eagle of Fire's tiles, below. Essentially, this is the default tileset with a little bevel-style shading around the edges to make it look neater. Also, I fixed the accented 'e' tails to look closer to the standard 'e'.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Eagle of Fire ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:eofshaded800x600pb9_f64ded.png]]&lt;br /&gt;
|author=[[User:Eagle of Fire|Eagle of Fire]]&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;600&lt;br /&gt;
|comments=Designed for fullscreen. Inspired by Herrbdog's tileset, I created a shaded tileset targeting the default fullscreen 800x600 resolution. Basicaly, you have the exact same &amp;quot;curses&amp;quot; default tileset but with some shading done to the lower right of each letters and items. I've left alone everything which was related to mining or was meant to be plain, for example the smoothered tiles and the plain tiles in the demo. The reason behind that is that I didn't find much logic to have those graphics shaded as they could possibly connect on any direction on the screen, which would make the shading a little strange. Please note that this tileset is only a &amp;quot;beta&amp;quot;. I might work on it again if there is enough people who like it and would like improvements. You can discuss the matter [http://www.bay12games.com/cgi-local/ultimatebb.cgi?ubb=get_topic&amp;amp;f=11&amp;amp;t=000645 here].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Inquisitor Saturn ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:MRC_1280x600.png]]&lt;br /&gt;
|author=[[User:InquisitorSaturn|Inquisitor Saturn]]&lt;br /&gt;
|size=16&amp;amp;times;24&lt;br /&gt;
|resolution=1280&amp;amp;times;600&lt;br /&gt;
|comments=Designed for a double-sized window mode. Based on the default set, but more detailed and with a few custom characters. Good for those who want larger characters but enjoy the aesthetics of the default set.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Kein ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Kein-curs.gif|thumb|right|Kein's Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kein_640x300.png]]&lt;br /&gt;
|author=Kein&lt;br /&gt;
|size=8&amp;amp;times;12&lt;br /&gt;
|resolution=640&amp;amp;times;300&lt;br /&gt;
|comments=Updated 08/09/09. Updated most characters, the biggest change is the 3d style walls. If you use my set I'd highly recommend [http://www.dwarffortresswiki.net/index.php/List_of_user_graphics_sets#Plac1d Plac1d's character graphic set.] My 640&amp;amp;times;300, everything completely shaded.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lord Nightmare ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:MDA8x14.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;14&lt;br /&gt;
|resolution=640&amp;amp;times;350&lt;br /&gt;
|comments=The original IBM MDA character set, dumped from addresses 0x0000-0x0fff the 5788005 IBM Character Generator ROM. This font is as would be displayed on an EGA/VGA with the 9-pixel-width mode disabled. Best for a 64:35 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 640x480. The MDA card did not actually support displaying the font in 8x14, but ONLY 9x14 mode, see below. Theoretically, you CAN upload this font into EGA video memory though and use it.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:MDA9x14.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=9&amp;amp;times;14&lt;br /&gt;
|resolution=720&amp;amp;times;350&lt;br /&gt;
|comments=The original IBM MDA character set, dumped from addresses 0x0000-0x0fff the 5788005 IBM Character Generator ROM. This font is as would be displayed on a real MDA card (use a black/dkgreen/ltgreen palette for full monochrome effect) or on an EGA/VGA card with the 9-pixel-width mode enabled. Best for a 72:35 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 720x480.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:EGA8x14.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=8&amp;amp;times;14&lt;br /&gt;
|resolution=640&amp;amp;times;350&lt;br /&gt;
|comments=The IBM EGA character set, dumped from the 6277356 IBM EGA BIOS ROM. This font is as would be displayed on an EGA/VGA with the 9-pixel-width mode disabled. Best for a 64:35 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 640x480. This font is different from the MDA version in that many characters are slightly narrower to avoid 'running into' each other, and many characters have been shifted slightly to the left.&lt;br /&gt;
Thanks to Zaratustra for poking me into getting this done, and for related help.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:EGA9x14.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM&lt;br /&gt;
|size=9&amp;amp;times;14&lt;br /&gt;
|resolution=720&amp;amp;times;350&lt;br /&gt;
|comments=The IBM EGA character set, dumped from the 6277356 IBM EGA BIOS ROM. This font is as would be displayed on an EGA/VGA with the 9-pixel-width mode enabled. Best for a 72:35 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 640x480. This font is actually different from the 8x14 version in that 20 characters have been replaced with the original MDA wide versions. These 'extra' wide characters are sandwiched in between the end of the 8x14 and beginning of the 8&amp;amp;times;8 font in the EGA BIOS ROM. The changed characters, in ASCII order, are: arrow-left-and-right, '&amp;quot;', '+', '-', 'M', 'T', 'V', 'W', 'X', 'Y', 'Z', 'm', 'v', 'w', 'ae', cent sign, yen, peseta, plus-minus, and division sign. Other than these characters, all characters are the same, with rightmost-row duplicated on the C and D rows like the MDA (though I don't actually know if this is technically correct).&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:VGA8x16.png]]&lt;br /&gt;
|author=Lord Nightmare/IBM?&lt;br /&gt;
|size=8&amp;amp;times;16&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=The original? IBM VGA 8x16 character set, (from http://madscientistroom.org/fpga/default-8x16-bram.html) as would be displayed on a VGA card with the 9-pixel-width disabled. Best for an 8:5 aspect ratio. The required resolution is strange, so run fullscreen with BLACK_SPACE:YES and resolution at 640x480. This rom has not yet been dumped from a real VGA card, and is coming from a secondary source, so it may be replaced later if I find the real font is different.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord_Nightmare-Fixedsys-02.png]]&lt;br /&gt;
|author=Lord Nightmare/Microsoft&lt;br /&gt;
|size=8&amp;amp;times;15&lt;br /&gt;
|resolution=640&amp;amp;times;375&lt;br /&gt;
|comments=v2.2 - (v1.0 is [[:Image:Lord_Nightmare-Fixedsys.png|here]]) - Based on Microsoft's Fixedsys font (which dates back to Windows 1.0!), Many glyphs needed redoing by hand since they were absent from the font, since it is an 'ansi' character set and not a code-page 437 one like DF expects. v2.0 Based on Microsoft's Fixedsys font. Updated new glyphs to be more consistent with the Fixedsys style. - v2.1 - update a few more glyphs, namely the integral, the infinity symbol, and the spade, and a few others I'm forgetting. - v2.2 - update the club and spade, and the music notes - v2.3 - fix the fact that 0xF9 and 0xFA were inadvertently swapped.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord_Nightmare-Fixedsys-03.png]]&lt;br /&gt;
|author=Lord Nightmare/Microsoft&lt;br /&gt;
|size=8&amp;amp;times;16&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=v3.0 - changed font size to 8x16, altered glyphs to respect this. - v3.1 - fix the fact that 0xF9 and 0xFA were inadvertently swapped.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Lord_Nightmare_Freehand_screenshot_2b7d67.png|thumb|right|Freehand screenie... ooh, neat! Unreadable.]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord_Nightmare_Freehand_10x16.png]]&lt;br /&gt;
|author=Lord Nightmare&lt;br /&gt;
|size=10&amp;amp;times;16&lt;br /&gt;
|resolution=800&amp;amp;times;400&lt;br /&gt;
|comments=v1.0 - A character set drawn entirely in freehand on the tablet PC... with MINIMAL EDITING! Yes, its SUPPOSED to look like that. v1.1 - fixed character 0x02 background (filled smiley), filled in the card suits, minor touch up to the comma, fix black instead of magenta on the greyscale blocks and other tweaks to them, redrew the square block (was 'too clean' before) v1.1a - fixed spade by adding 1 pixel at tip so it doesn't look like another club&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Lord_Nightmare_Freehand_screenshot_2_05c04b.png|thumb|right|Freehand^2 screenie... ooh, neat! Readable. But ugly.]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord_Nightmare_Freehand^2_10x16.png]]&lt;br /&gt;
|author=Lord Nightmare&lt;br /&gt;
|size=10&amp;amp;times;16&lt;br /&gt;
|resolution=800&amp;amp;times;400&lt;br /&gt;
|comments=Freehand^2, v1.2 - A heavily edited version of Freehand, now hopefully less unreadable. V1.2 is the current version, see the image link changelog/older versions.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Vintl01.png]]&lt;br /&gt;
|author=Lord Nightmare/Victor-Sirius&lt;br /&gt;
|size=10&amp;amp;times;16&lt;br /&gt;
|resolution=800&amp;amp;times;400&lt;br /&gt;
|comments=The Victor 9000/Sirius 1 computer character set, extracted from vintl01.chr.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lumin ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[:Image:Lumin_Graphical_1280x800.png|Not shown due to size]]&lt;br /&gt;
|author=Lumin&lt;br /&gt;
|size=16&amp;amp;times;32&lt;br /&gt;
|resolution=1280&amp;amp;times;800&lt;br /&gt;
|comments=Ideas used from several others on this page. I've also added more detail and color to some objects.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Plac1d ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Plac1d_640x300EZ_1.png|thumb|right|Plac1d's Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Plac1d_640x300tileset.png]]&lt;br /&gt;
|author=[[User:Plac1d|Plac1d]]&lt;br /&gt;
|size=8&amp;amp;times;12&lt;br /&gt;
|resolution=640&amp;amp;times;300&lt;br /&gt;
|comments=A tweaked version of [[#Tocky|Tocky's 10&amp;amp;times;10 tileset]] converted to 8&amp;amp;times;12. Try using this with my [[List of user graphics sets#Plac1d|graphics set]]!&lt;br /&gt;
&lt;br /&gt;
[http://dffd.wimbli.com/file.php?id=63 Download the .BMP]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Quietust ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:VGA9x16.png]]&lt;br /&gt;
|author=Quietust/IBM?&lt;br /&gt;
|size=9&amp;amp;times;16&lt;br /&gt;
|resolution=720&amp;amp;times;400&lt;br /&gt;
|comments=The original? IBM VGA 9x16 character set, as would be displayed on a VGA card with the 9-pixel-width enabled.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Sergius ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Sleroux_800x300.png]]&lt;br /&gt;
|author=Sergius&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;300&lt;br /&gt;
|comments=Mostly vanilla tileset, dwarves have graphic from intro [[Utilities#CMVPlayer|Movie]], with some tweaks (for soldiers). I find it helpful for playing (instead of happy faces).&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Shaja ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Shaja_10-27-09.png|thumb|right|TerminusAliased text]]&lt;br /&gt;
[[Image:Shaja_10-13-09.png|thumbnail|right|Terminus24 text]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[:Image:TerminusAliased_handedit_gal.png|Not shown due to size]]&lt;br /&gt;
|author=[[User:Shaja|Shaja]]&lt;br /&gt;
|size=20&amp;amp;times;32&lt;br /&gt;
|resolution=1600&amp;amp;times;800&lt;br /&gt;
|comments=Alphanumerics based on Dimitar Zhekov's [http://www.is-vn.bg/hamster/jimmy-en.html Terminus] font with light antialias shading added, walls and some symbols redrawn, others carried over from Thom's 20x32 tileset.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[:Image:Terminus24.png|Not shown due to size]]&lt;br /&gt;
|author=[[User:Shaja|Shaja]]&lt;br /&gt;
|size=24&amp;amp;times;32&lt;br /&gt;
|resolution=1920&amp;amp;times;800&lt;br /&gt;
|comments=Revised version of my earlier Terminus 20x32 character set for 1920x800 display.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Taritus ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Curses 640x300diag.png]]&lt;br /&gt;
|author=Taritus&lt;br /&gt;
|size=8&amp;amp;times;12&lt;br /&gt;
|resolution=640&amp;amp;times;300&lt;br /&gt;
|comments=Yuppers.  I requested it a long time ago when everyone else was requesting different sized square tilesets with diagonal walls, and nobody ever fulfilled the request.  I decided, &amp;quot;Oh, it's not like I have some menial and huge English project that's due tomorrow to work on, I'm going to make that.&amp;quot; And I did.--[[User:Taritus|Taritus]] 20:53, 22 March 2009 (UTC)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Thom ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[:Image:Curses_24pt_cleartype_ThomModifications.PNG|Not shown due to size]]&lt;br /&gt;
|author=Herrbdog&lt;br /&gt;
|size=20&amp;amp;times;24&lt;br /&gt;
|resolution=1600&amp;amp;times;800&lt;br /&gt;
|comments=Hi res won't slow the game as it doesn't use graphics, so if your monitor can display it, go for it, really...&amp;lt;br&amp;gt;I strongly recommend to enable blackspace in the init: [BLACK_SPACE:YES]&amp;lt;br&amp;gt;Made from the 24pts cleartype lucida console above (from winterwing). I added some stuff (some original, some ideas taken from others tilesets). Basically I try to avoid symbols that are often seen in menus, etc. The main &amp;quot;problem&amp;quot; is the bag, because its the male symbol, but it was too good looking to not put it ;) Hope you enjoy :) &amp;lt;br&amp;gt;&amp;lt;font color=white&amp;gt;. . .&amp;lt;/font&amp;gt;&amp;lt;small&amp;gt;Note: Winterwing's tileset is now lost. --[[User:Savok|Savok]]&amp;lt;/small&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== UncleSporky ===&lt;br /&gt;
&lt;br /&gt;
[[Image:UncleSporky_DFTiles1.png|thumb|right|UncleSporky Tileset]] &lt;br /&gt;
[[Image:UncleSporky_DFTiles2.png|thumb|right|UncleSporky Tileset]]&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:UncleSporky_curses_800x600.png]]&lt;br /&gt;
|author=UncleSporky&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;300&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Xenomorph ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Acorntileset.png]]&lt;br /&gt;
|author=[[User:Xenomorph|Xenomorph]]&lt;br /&gt;
|size=8&amp;amp;times;16&lt;br /&gt;
|resolution=640&amp;amp;times;400&lt;br /&gt;
|comments=This is the tileset used by Acorn computers, starting with the BBC Micro.  This version is as it would have appeared in 80-column modes (albeit adapted to CP437). [http://dffd.wimbli.com/file.php?id=408 Download the BMP.]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Zaratustra ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_megazeux2.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=8&amp;amp;times;14&lt;br /&gt;
|resolution=640&amp;amp;times;350&lt;br /&gt;
|comments=EGA font with added Megazeux modifications.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_custom800x300ca3.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=10&amp;amp;times;12&lt;br /&gt;
|resolution=800&amp;amp;times;300, 800&amp;amp;times;600 (non-reccomended)&lt;br /&gt;
|comments=Has an appropriate [http://archive.dwarffortresswiki.net/index.php/Object_Tilesets#10x12_version object tileset for v0.23.130.23a (now outdated)]. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Tiny tilesets ==&lt;br /&gt;
&lt;br /&gt;
Sets smaller than 8&amp;amp;times;8. Used for playing in tiny windows, large grids, display massive maps and perhaps videos.&lt;br /&gt;
&lt;br /&gt;
=== Herrbdog ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Herrbdog_7x7.jpg|thumb|right|herrbdog's 7x7 tileset]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
image=[[Image:Herrbdog_7x7_tileset.gif]]&lt;br /&gt;
|author=[[User:herrbdog|herrbdog]]&lt;br /&gt;
|size=7&amp;amp;times;7&lt;br /&gt;
|resolution=560&amp;amp;times;175&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Kein ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Kein_400x125.gif|thumb|right|Kein's 5x5]] &lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Kein_400x125.png]]&lt;br /&gt;
|author=[[User:Kein|Kein]]&lt;br /&gt;
|size=5&amp;amp;times;5&lt;br /&gt;
|resolution=400&amp;amp;times;125&lt;br /&gt;
|comments=A large 257x257 DFMA world gen map can be found [http://mkv25.net/dfma/map-3278-5x5largeworldmap here.]Updated 08/06/08. Changed most text characters as well as some others to 4x4 with blackspace to avoid tiling. Most characters have been revised to be spaced out to be more distinguishable in such a small set. After seeing the dev update earlier today about increasing your view size I decided to create this small font. This has been built completely from scratch, mostly while at work today. I may be making a shaded version in the future. The first image to the right is from the Abeyverse succession game.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Lord Nightmare ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord Nightmare 6x6font01.png]]&lt;br /&gt;
|author=Lord Nightmare&lt;br /&gt;
|size=6&amp;amp;times;6&lt;br /&gt;
|resolution=480&amp;amp;times;150&lt;br /&gt;
|comments=Made in 5 hours on 11/5/07 (I was bored and dissatisfied with other fonts). Most glyphs are really 5&amp;amp;times;6, with a seperator column.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Nightmare_6x6_v2.jpg|thumb|right|Lord Nightmare's 6x6 v2]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord Nightmare 6x6font02.png]]&lt;br /&gt;
|author=Lord Nightmare&lt;br /&gt;
|size=6&amp;amp;times;6&lt;br /&gt;
|resolution=480&amp;amp;times;150&lt;br /&gt;
|comments=Version 2.05. Updated 11/12/07 to de-fuzz uppercase letters, added serifs and clarified lowercase letters, made horizontal spacing consistent throughout character set, fixed one error in the double horizontal-left-right, single-vertical-up-down character, made exclamation points consistent, thinned out ? and inverse ?, sharpened sideways stemless arrows, clarified international characters, and clarified some greek letters. Since v2.0: fixed 'i' 'g', fixed Yen symbol, fixed smiley 0x01 to not have an extra line to its right, lowered the period and colon characters, fixed position of 'x'. Thanks to Markavian for ideas on how to improve the font, as well as an occasional character glyph.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Lord-Nightmare-Terminal-4x6.png]]&lt;br /&gt;
|author=Lord Nightmare/Microsoft&lt;br /&gt;
|size=4&amp;amp;times;6&lt;br /&gt;
|resolution=320&amp;amp;times;150&lt;br /&gt;
|comments=A DF conversion of the 4x6 variant of Microsoft's 'Terminal' Font. Note that I have left the font entirely alone other than converting it, so several glyphs are indistinguishable from one another!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Markavian ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Mkv_curses_480x150.png]]&lt;br /&gt;
|author=[[User:Markavian|Markavian]]&lt;br /&gt;
|size=6&amp;amp;times;6&lt;br /&gt;
|resolution=480&amp;amp;times;150&lt;br /&gt;
|comments=The first version the tiny tileset, superceded by the version below.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Image:mark_6x6_v2.jpg|thumb|right|Markavian's 6x6 v2]]&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Mkv_curses_480x150_v2.png]]&lt;br /&gt;
|author=[[User:Markavian|Markavian]]&lt;br /&gt;
|size=6&amp;amp;times;6&lt;br /&gt;
|resolution=480&amp;amp;times;150&lt;br /&gt;
|comments=My second version of the tiny tileset, for uber small resolution DF, with improved visibility of several symbols.&lt;br /&gt;
Available in [http://mkv25.net/showcase/df/mkv_curses%2012x12%20and%206x6%20v2.zip mkv curses 12&amp;amp;times;12 and 6&amp;amp;times;6 v2.zip].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Terbert ===&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:terbert_7x7.png]]&lt;br /&gt;
|author=[[User:Terbert|Terbert]]&lt;br /&gt;
|size=7&amp;amp;times;7&lt;br /&gt;
|resolution=560&amp;amp;times;175&lt;br /&gt;
|comments=This is a 7x7 tileset made for overseeing large constructions &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Zaratustra ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Zara_4x6.jpg|thumb|right|Zaratustra's 4x6]] &lt;br /&gt;
[[Image:Zara_5x6.jpg|thumb|right|Zaratustra's 5x6]] &lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_custom_4x6.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=4&amp;amp;times;6&lt;br /&gt;
|resolution=320&amp;amp;times;150&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_custom_5x5.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=5&amp;amp;times;5&lt;br /&gt;
|resolution=400&amp;amp;times;125, 800&amp;amp;times;250, 800&amp;amp;times;500&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Tileset|&lt;br /&gt;
|image=[[Image:Zaratustra_custom_5x6.png]]&lt;br /&gt;
|author=[[User:Zaratustra|Zaratustra]]&lt;br /&gt;
|size=5&amp;amp;times;6&lt;br /&gt;
|resolution=400&amp;amp;times;150, 800&amp;amp;times;300, 800&amp;amp;times;600&lt;br /&gt;
|comments=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Modding]]&lt;br /&gt;
[[Category:Interface]]&lt;/div&gt;</summary>
		<author><name>Martin</name></author>
	</entry>
	<entry>
		<id>https://dwarffortresswiki.org/index.php?title=File:Martin_16x16_sample.png&amp;diff=50419</id>
		<title>File:Martin 16x16 sample.png</title>
		<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php?title=File:Martin_16x16_sample.png&amp;diff=50419"/>
		<updated>2009-08-08T19:02:54Z</updated>

		<summary type="html">&lt;p&gt;Martin: Sample image for the Martin_16x16 tileset.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sample image for the Martin_16x16 tileset.&lt;/div&gt;</summary>
		<author><name>Martin</name></author>
	</entry>
	<entry>
		<id>https://dwarffortresswiki.org/index.php?title=File:Martin_16x16.png&amp;diff=50418</id>
		<title>File:Martin 16x16.png</title>
		<link rel="alternate" type="text/html" href="https://dwarffortresswiki.org/index.php?title=File:Martin_16x16.png&amp;diff=50418"/>
		<updated>2009-08-08T18:44:36Z</updated>

		<summary type="html">&lt;p&gt;Martin: This is a 16x16 tileset based on Redjack, Flying Mage, and FMS sets (and possible tiles taken from others that I've since lost track of - apologies). Some tiles are original or have been tweaked, mainly to provide a much more subtle background than most t&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a 16x16 tileset based on Redjack, Flying Mage, and FMS sets (and possible tiles taken from others that I've since lost track of - apologies). Some tiles are original or have been tweaked, mainly to provide a much more subtle background than most tilesets in order to reduce visual clutter. &lt;br /&gt;
&lt;br /&gt;
The lettering in this set is all new and is a mix of tweaked Rockwell and Consolas fonts, heavily anti-aliased for a dark background. It is designed for maximum legibility.&lt;/div&gt;</summary>
		<author><name>Martin</name></author>
	</entry>
</feed>