## Beastiary A-Z
%% DATAVIEW_PUBLISHER: start
```dataview
TABLE without ID "[[" + file.name + "]]" as Monster, CR, Size, Type, Subtype, Source
FROM "07 Monsters of Temnia/Monsters"
SORT file.name
```
%%
| Monster | CR | Size | Type | Subtype | Source |
| ------------------------ | --- | ------ | ------------------ | -------------------- | -------------------------------------- |
| [[Aarakocra]] | 1/2 | Medium | Monstrous Humanoid | — | Monster Compendium: Monsters of Faerûn |
| [[Aballin]] | 4 | Large | Ooze | — | Monster Compendium: Monsters of Faerûn |
| [[Abeil, Queen]] | 12 | Medium | Monstrous Humanoid | — | Monster Manual 2 |
| [[Abeil, Soldier]] | 6 | Large | Monstrous Humanoid | — | Monster Manual 2 |
| [[Abeil, Vassal]] | 1/2 | Medium | Monstrous Humanoid | — | Monster Compendium: Monsters of Faerûn |
| [[Abishai, Black]] | 5 | Medium | Outsider | evil | Fiendish Codex 2 |
| [[Abishai, Blue]] | 7 | Medium | Outsider | evil | Fiendish Codex 2 |
| [[Abishai, Green]] | 6 | Medium | Outsider | evil | Fiendish Codex 2 |
| [[Abishai, Red]] | 8 | Medium | Outsider | evil | Fiendish Codex 2 |
| [[Abishai, White]] | 5 | Medium | Outsider | evil | Fiendish Codex 2 |
| [[Abomination, Anaxim]] | 22 | Medium | Construct | abomination | Epic Level Handbook |
| [[Abomination, Atropal]] | 30 | Large | Undead | abomination, mythic | Epic Level Handbook |
| [[Archon, Owl]] | 11 | Large | Outsider | archon, good, lawful | Book of Exalted Deeds |
| [[Asura]] | 8 | Medium | Outsider | chaotic | Book of Exalted Deeds |
| [[Genie, Ghul]] | 10 | Large | Outsider | — | The World of Temnia |
| [[Genie, Shuryan]] | — | — | — | — | — |
%% DATAVIEW_PUBLISHER: end %%
## Type: Construct
%% DATAVIEW_PUBLISHER: start
```dataview
TABLE without ID "[[" + file.name + "]]" as Monster, CR, Size, Type, Subtype, Source
FROM "07 Monsters of Temnia/Monsters"
where TypeID=3
SORT file.name
```
%%
| Monster | CR | Size | Type | Subtype | Source |
| ----------------------- | -- | ------ | --------- | ----------- | ------------------- |
| [[Abomination, Anaxim]] | 22 | Medium | Construct | abomination | Epic Level Handbook |
%% DATAVIEW_PUBLISHER: end %%
## Subtype: Abomination
%% DATAVIEW_PUBLISHER: start
```dataview
TABLE without ID "[[" + file.name + "]]" as Monster, CR, Size, Type, Subtype, Source
FROM "07 Monsters of Temnia/Monsters"
where contains(subtype, "abomination")
SORT file.name
```
%%
| Monster | CR | Size | Type | Subtype | Source |
| ------------------------ | -- | ------ | --------- | ------------------- | ------------------- |
| [[Abomination, Anaxim]] | 22 | Medium | Construct | abomination | Epic Level Handbook |
| [[Abomination, Atropal]] | 30 | Large | Undead | abomination, mythic | Epic Level Handbook |
%% DATAVIEW_PUBLISHER: end %%