Difference between revisions of "RyonaRPG/Enemy ID"

From Hgames Wiki
Jump to: navigation, search
m (formatting)
m
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{RyonaRPG}}
 
{{RyonaRPG}}
  
This information can also be found using the item '''True Mirror''', though it may not be fully translated in-game.
+
This page is a reference for RyonaRPG's on-map enemies. Use it to find an enemy by name or ID, see where it appears, and understand how its strength is calculated. The names and formulas come from the current English-edition game data. In-game, the '''True Mirror''' shows the ID of the enemy directly in front of you.
 +
 
 +
== How to read the table ==
 +
 
 +
For most players, the useful columns are '''Name''', '''Where encountered''', '''Type''', and '''Scaling'''. The final column shows the exact stat formulas for players who want the numbers.
 +
 
 +
'''Type''' is the battle category used for strengths, weaknesses, and special effects. It does not always describe the creature literally. For example, '''Other''' is a real catch-all battle category, not missing data.
 +
 
 +
'''HP / Max HP / ATK / DEF / MAG / SPR''' means starting health, maximum health, physical attack, physical defense, magic power, and spirit defense. Starting HP and maximum HP are listed separately because a few enemies can begin below their maximum. RPG Maker drops fractions during these calculations, so the displayed result may round down.
 +
 
 +
The '''Scaling''' column gives the short version:
 +
* '''Fixed''' enemies always start with the listed numbers.
 +
* '''Player level''' enemies use your current character level.
 +
* '''Area level''' enemies use a difficulty number chosen by the current area or scripted battle. This is not always the same as your character level.
 +
* '''Random range''' means part of the stat is rolled when the enemy is created, so two copies can have slightly different stats.
 +
* '''Copies player stats''' means the formula reads one or more of your character's current stats directly.
 +
 
 +
; LV
 +
: Your current character's level.
 +
; ELV
 +
: The area or encounter level. Certain maps set this to their intended difficulty, while some scripted battles copy or adjust your level. A formula using ELV follows that value instead of automatically using your current level.
 +
; K
 +
: How many enemies you have defeated during the current Forest of No Thoughts run. A few enemies become stronger as this count rises.
 +
; Streak
 +
: Your current Trial Grounds winning streak. Enemies using this value become stronger as the streak rises.
 +
; A~B
 +
: A random whole number from A through B, chosen when the stat is set.
 +
; H(n) and S(n)
 +
: Shared scaling curves used by newer enemies. H calculates health; S calculates ATK, DEF, MAG, or SPR. The value in parentheses is the level used. For example, H(LV)*1.8 means 1.8 times the shared health value for your level. The underlying formulas are approximately n^2 / (n/12) + 20 - n/3 for H and n^2 / 2 / (n/17) + 22 - n/3 for S.
 +
 
 +
'''Where encountered''' names the general area, not an exact floor or room. Arena entries are selected by the Arena's opponent generator. An '''unused enemy record''' still has a name and stats in the database, but an exhaustive scan found no event that creates it in the current English edition. An '''incomplete unused record''' also lacks the normal stat setup required for a working encounter.
 +
 
 +
Enemy names are not necessarily unique. The ID is what tells the game which record to use.
 +
 
 +
See also [[RyonaRPG/Enemy_Types|Enemy Types]] for type traits, strengths, and weaknesses.
  
See also [[RyonaRPG/Enemy_Types|Enemy Types]] for more information on types and their strengths/weaknesses.
 
 
{| class="sortable wikitable"
 
{| class="sortable wikitable"
 
|-
 
|-
! Enemy ID
+
! ID
! HP/MHP/ATK/DEF/MAG/SPR
+
! Name
 +
! Where encountered
 
! Type
 
! Type
! Name
+
! Scaling
 +
! HP / Max HP / ATK / DEF / MAG / SPR
 +
|-
 +
| 1
 +
| Jelly
 +
| Border Sacred Peak<br>Capital Abaroso<br>Lomei Labyrinth<br>Mountain Cave<br>RAYON Village
 +
| 20 - Other
 +
| Random range
 +
| 4~16 / 16 / 20 / 25 / 0 / 15
 +
|-
 +
| 2
 +
| Killer Ant
 +
| Mountain Cave<br>Nearby Forest
 +
| 10 - Insect
 +
| Random range
 +
| 16~50 / 50 / 35~55 / 20~55 / 0 / 10~25
 +
|-
 +
| 3
 +
| Octopus
 +
| Abandoned Factory<br>Execution Tower<br>Snowy Mountain Range<br>Undersea Temple
 +
| 12 - Aquatic
 +
| Random range
 +
| 120~220 / 220 / 128~192 / 10 / 0 / 25
 +
|-
 +
| 4
 +
| Faye
 +
| Ancient Library<br>Border Sacred Peak<br>Demon Castle Gaddem<br>Dwarven Great Tunnel<br>Forgotten Mansion<br>Snowy Mountain Range<br>Suspicious Temple<br>Undersea Temple
 +
| 13 - Beastwoman
 +
| Random range
 +
| 50 / 50 / 30~90 / 40 / 70~150 / 70~150
 +
|-
 +
| 5
 +
| Mindless Orc
 +
| Forest of No Thoughts<br>Torture ending
 +
| 02 - Beastman
 +
| Level + forest defeats
 +
| (((LV*20)+K)/5)+36 / (((LV*20)+K)/5)+36 / (((LV*20)+K)/5)+36 / (((LV*20)+K)/5)+21 / (((LV*20)+K)/5)+21 / (((LV*20)+K)/5)+21
 +
|-
 +
| 6
 +
| Toothfish
 +
| Execution Tower<br>Forgotten Mansion<br>Snowy Mountain Range<br>Undersea Temple
 +
| 12 - Aquatic
 +
| Fixed
 +
| 50 / 50 / 90 / 40 / 0 / 30
 +
|-
 +
| 7
 +
| Blood Pudding
 +
| Demon Castle Gaddem<br>Dwarven Great Tunnel<br>Forgotten Mansion<br>Mountain Cave
 +
| 08 - Amorphous
 +
| Fixed
 +
| 50 / 50 / 40 / 60 / 0 / 30
 +
|-
 +
| 8
 +
| Soldier Ant
 +
| Arena<br>Mountain Cave
 +
| 10 - Insect
 +
| Fixed
 +
| 50 / 50 / 60 / 90 / 0 / 35
 +
|-
 +
| 9
 +
| Dummy Boy
 +
| RAYON Village
 +
| 20 - Other
 +
| Player level
 +
| (LV*400)+3000 / (LV*400)+3000 / 0 / 0 / 0 / 0
 +
|-
 +
| 10
 +
| Fiend's Horn
 +
| Demon Castle Gaddem<br>Undersea Temple
 +
| 12 - Aquatic
 +
| Fixed
 +
| 80 / 80 / 65 / 150 / 70 / 120
 +
|-
 +
| 11
 +
| Bug Swarm
 +
| Abandoned Factory<br>Mage's Hideout<br>Poison-Insect Labyrinth
 +
| 09 - Swarm
 +
| Random range
 +
| 256~384 / 384 / 80 / 10 / 20 / 20
 +
|-
 +
| 12
 +
| Gnat Swarm
 +
| Mage's Hideout<br>Norsley Sea of Decay<br>Poison-Insect Labyrinth
 +
| 09 - Swarm
 +
| Random range
 +
| 128~256 / 256 / 70 / 1 / 0 / 20
 +
|-
 +
| 13
 +
| Giant Spider
 +
| Dwarven Great Tunnel<br>Norsley Sea of Decay<br>Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Fixed
 +
| 80 / 80 / 80 / 60 / 60 / 60
 +
|-
 +
| 14
 +
| Dread Spider
 +
| Dwarven Great Tunnel<br>Norsley Sea of Decay<br>Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Fixed
 +
| 150 / 150 / 100 / 160 / 80 / 160
 +
|-
 +
| 15
 +
| Fire Moth
 +
| Dwarven Great Tunnel<br>Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Fixed
 +
| 80 / 80 / 80 / 40 / 120 / 140
 +
|-
 +
| 16
 +
| Frost Butterfly
 +
| Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Fixed
 +
| 80 / 80 / 80 / 40 / 120 / 140
 +
|-
 +
| 17
 +
| Executioner
 +
| Capital Abaroso<br>Demon Castle Gaddem<br>Execution Tower<br>Forgotten Mansion<br>Mage's Hideout<br>Suspicious Temple
 +
| 05 - Undead
 +
| Fixed
 +
| 170 / 170 / 160 / 180 / 0 / 160
 +
|-
 +
| 18
 +
| Gizmo
 +
| Execution Tower<br>Forgotten Mansion
 +
| 08 - Amorphous
 +
| Fixed
 +
| 80 / 80 / 0 / 80 / 120 / 80
 +
|-
 +
| 19
 +
| Skeleton
 +
| Capital Abaroso<br>Execution Tower<br>Forgotten Mansion
 +
| 05 - Undead
 +
| Fixed
 +
| 90 / 90 / 110 / 75 / 0 / 70
 +
|-
 +
| 20
 +
| Mandragora
 +
| Execution Tower<br>Forgotten Mansion<br>Mage's Hideout<br>Norsley Sea of Decay<br>Suspicious Temple
 +
| 03 - Plant
 +
| Fixed
 +
| 120 / 240 / 100 / 80 / 100 / 100
 +
|-
 +
| 21
 +
| Fire Flower
 +
| Execution Tower<br>Mage's Hideout
 +
| 11 - Human Woman
 +
| Fixed
 +
| 180 / 180 / 180 / 120 / 150 / 150
 +
|-
 +
| 22
 +
| Snow Smile
 +
| Execution Tower<br>Forgotten Mansion<br>Suspicious Temple
 +
| 11 - Human Woman
 +
| Fixed
 +
| 180 / 180 / 80 / 170 / 150 / 150
 +
|-
 +
| 23
 +
| Lightning Loli
 +
| Demon Castle Gaddem<br>Execution Tower<br>Mage's Hideout
 +
| 11 - Human Woman
 +
| Fixed
 +
| 100 / 100 / 80 / 120 / 220 / 150
 +
|-
 +
| 24
 +
| Yellow Mold
 +
| Demon Castle Gaddem<br>Dwarven Great Tunnel<br>Execution Tower
 +
| 08 - Amorphous
 +
| Fixed
 +
| 320 / 500 / 180 / 100 / 0 / 120
 +
|-
 +
| 25
 +
| Bee Girl
 +
| Forgotten Mansion<br>Village Attacked by Bees
 +
| 13 - Beastwoman
 +
| Fixed
 +
| 400 / 400 / 100 / 100 / 0 / 100
 +
|-
 +
| 26
 +
| Reborn Bee Girl
 +
| Village Attacked by Bees
 +
| 13 - Beastwoman
 +
| Player level
 +
| (LV*20)+300 / (LV*20)+300 / 140 / 130 / 0 / 130
 +
|-
 +
| 27
 +
| Arachne
 +
| Mountain Cave
 +
| 13 - Beastwoman
 +
| Fixed
 +
| 500 / 500 / 130 / 110 / 0 / 80
 +
|-
 +
| 28
 +
| Reborn Arachne
 +
| Mountain Cave
 +
| 13 - Beastwoman
 +
| Player level
 +
| (LV*20)+400 / (LV*20)+400 / 170 / 140 / 0 / 110
 +
|-
 +
| 101
 +
| Wandering Soul
 +
| Border Sacred Peak<br>Capital Abaroso<br>Demon Castle Gaddem<br>Forgotten Mansion<br>Mage's Hideout<br>Mullonde Necromancy Hall<br>Roland Underground Prison<br>Suspicious Temple
 +
| 06 - Incorporeal
 +
| Player level + random range
 +
| (LV*5)+32~64 / (LV*5)+64 / 0 / 0 / (LV*9)+32~64 / (LV*8)+32~64
 +
|-
 +
| 102
 +
| Stray Spirit
 +
| Forgotten Mansion<br>Man-Eating Soul Cave
 +
| 06 - Incorporeal
 +
| Player level + random range
 +
| (LV*2)+8~16 / (LV*2)+16 / 0 / 0 / (LV*6)+32~64 / (LV*4)+32~64
 +
|-
 +
| 201
 +
| Great Malboro
 +
| Mage's Hideout<br>Mountain Cave
 +
| 03 - Plant
 +
| Fixed
 +
|  /  / 166 / 60 / 0 / 100
 +
|-
 +
| 202
 +
| Insect Queen
 +
| Arena<br>Mountain Cave
 +
| 13 - Beastwoman
 +
| Player level
 +
|  /  / (130+LV)+LV / 160 / 0 / 160
 +
|-
 +
| 203
 +
| Kraken
 +
| Arena<br>Pyramid<br>Torture ending<br>Undersea Temple
 +
| 12 - Aquatic
 +
| Fixed
 +
|  / 65536 / 512 / 128 / 192 / 192
 +
|-
 +
| 204
 +
| Swarm
 +
| Poison-Insect Labyrinth
 +
| 20 - Other
 +
| Fixed
 +
| 2000 / 65536 / 320 / 8 / 100 / 0
 +
|-
 +
| 205
 +
| Sleipnir
 +
| Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Fixed
 +
| 1600 / 1600 / 120 / 0 / 0 / 0
 +
|-
 +
| 206
 +
| Sleipnir Herd
 +
| Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Fixed
 +
| 300 / 300 / 120 / 0 / 0 / 0
 +
|-
 +
| 207
 +
| Octomammoth
 +
| Arena<br>Undersea Temple
 +
| 12 - Aquatic
 +
| Fixed
 +
|  /  / 320 / 120 / 120 / 120
 +
|-
 +
| 208
 +
| Tentacle
 +
| Arena<br>Undersea Temple
 +
| 12 - Aquatic
 +
| Fixed
 +
|  /  / 192 / 60 / 80 / 80
 +
|-
 +
| 209
 +
| Malboro Bros.
 +
| Arena<br>Forgotten Mansion
 +
| 03 - Plant
 +
| Fixed
 +
| 240 / 240 / 250 / 150 / 0 / 250
 +
|-
 +
| 210
 +
| Stomach Antibody
 +
| Dwarven Great Tunnel<br>Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Player level + random range
 +
| (LV*10)+24~48 / 65536 / (LV*8)+13 / LV*13 / 0 / (LV*13)+32~64
 +
|-
 +
| 211
 +
| Huge Worm
 +
| Bio Lab Dungeon<br>Dwarven Great Tunnel<br>Mage's Hideout<br>Nearby Forest<br>Norsley Sea of Decay<br>Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Fixed
 +
| 600 / 600 / 250 / 2 / 0 / 2
 +
|-
 +
| 212
 +
| Mage Slayer
 +
| Norsley Sea of Decay<br>Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Fixed
 +
| 80 / 80 / 99 / 160 / 0 / 500
 +
|-
 +
| 213
 +
| Stomach Core
 +
| Poison-Insect Labyrinth
 +
| 10 - Insect
 +
| Player level + random range
 +
| (LV*20)+48~108 / 65536 / (LV*13)+13 / LV*13 / 0 / (LV*13)+32~64
 +
|-
 +
| 214
 +
| Young Land Ray
 +
| Mountain Cave
 +
| 10 - Insect
 +
| Fixed
 +
| 80 / 80 / 40 / 2 / 0 / 4
 +
|-
 +
| 215
 +
| Land Ray
 +
| Dwarven Great Tunnel<br>Mountain Cave
 +
| 10 - Insect
 +
| Fixed
 +
| 160 / 160 / 80 / 40 / 0 / 90
 +
|-
 +
| 216
 +
| Great Land Ray
 +
| Abandoned Factory<br>Dwarven Great Tunnel<br>Mountain Cave<br>Suspicious Temple
 +
| 10 - Insect
 +
| Fixed
 +
| 250 / 250 / 100 / 60 / 0 / 120
 +
|-
 +
| 217
 +
| Queen Bee
 +
| Village Attacked by Bees
 +
| 13 - Beastwoman
 +
| Player level
 +
| (LV*40)+300 / (LV*40)+300 / 160 / 160 / 0 / 160
 +
|-
 +
| 218
 +
| Kobold
 +
| Dwarven Great Tunnel
 +
| 02 - Beastman
 +
| Fixed
 +
| 80 / 80 / 80 / 80 / 40 / 80
 +
|-
 +
| 219
 +
| Pig
 +
| Dwarven Great Tunnel
 +
| 18 - Human Man
 +
| Fixed
 +
| 200 / 200 / 100 / 40 / 40 / 40
 +
|-
 +
| 220
 +
| Pig Lord
 +
| Dwarven Great Tunnel
 +
| 18 - Human Man
 +
| Fixed
 +
| 350 / 350 / 150 / 60 / 40 / 140
 +
|-
 +
| 221
 +
| Pig Shaman
 +
| Dwarven Great Tunnel
 +
| 18 - Human Man
 +
| Fixed
 +
| 250 / 250 / 110 / 50 / 170 / 140
 +
|-
 +
| 222
 +
| Pig Berserker
 +
| Dwarven Great Tunnel
 +
| 18 - Human Man
 +
| Fixed
 +
| 200 / 200 / 150 / 40 / 40 / 40
 +
|-
 +
| 223
 +
| Carrion Crawler
 +
| Dwarven Great Tunnel
 +
| 10 - Insect
 +
| Fixed
 +
| 350 / 350 / 200 / 40 / 40 / 40
 +
|-
 +
| 224
 +
| Spirit Ball
 +
| Dwarven Great Tunnel
 +
| 06 - Incorporeal
 +
| Fixed
 +
| 50 / 50 / 80 / 50 / 120 / 100
 +
|-
 +
| 225
 +
| Mad Hand
 +
| Dwarven Great Tunnel
 +
| 08 - Amorphous
 +
| Fixed
 +
| 150 / 150 / 100 / 150 / 100 / 80
 +
|-
 +
| 226
 +
| Armor Eater
 +
| Dwarven Great Tunnel
 +
| 04 - Magical Life-form
 +
| Fixed
 +
| 300 / 300 / 150 / 150 / 100 / 150
 +
|-
 +
| 227
 +
| Dark Spirit
 +
| Dwarven Great Tunnel
 +
| 06 - Incorporeal
 +
| Fixed
 +
| 100 / 100 / 160 / 40 / 160 / 280
 +
|-
 +
| 228
 +
| G Scorpion
 +
| Dwarven Great Tunnel
 +
| 10 - Insect
 +
| Fixed
 +
| 100 / 100 / 160 / 300 / 10 / 100
 +
|-
 +
| 229
 +
| Nergal
 +
| Dwarven Great Tunnel
 +
| 01 - Monstrous Beast
 +
| Fixed
 +
| H(15)*()/10 / H(15)*()/10 / S(15)*1.4 / S(15)*1.3 / S(15)*1.4 / S(15)*1.3
 +
|-
 +
| 230
 +
| Clay Claw
 +
| Dwarven Great Tunnel
 +
| 12 - Aquatic
 +
| Fixed
 +
| H(15)*10.2 / H(15)*10.2 / S(15)*1.3 / S(15)*1.3 / S(15)*1.3 / S(15)*1.3
 +
|-
 +
| 231
 +
| Dig Armor
 +
| Dwarven Great Tunnel
 +
| 12 - Aquatic
 +
| Fixed
 +
| H(15)*6.6 / H(15)*6.6 / S(15)*1.3 / S(15)*1.3 / S(15)*1.8 / S(15)
 +
|-
 +
| 300
 +
| Generic Beast
 +
| Capital Abaroso
 +
| 00 - Beast
 +
| Player level
 +
| (LV*3)+45 / (LV*3)+45 / (LV*2)+26 / (LV*2)+28 / (LV*1)+2 / (LV*1)+2
 +
|-
 +
| 310
 +
| Generic Monstrous Beast
 +
| Bio Lab Dungeon
 +
| 01 - Monstrous Beast
 +
| Player level
 +
| (LV*3)+55 / (LV*3)+55 / (LV*2)+32 / (LV*2)+24 / (LV*2)+10 / (LV*1)+2
 +
|-
 +
| 311
 +
| Brain Sucker
 +
| Writhing Cave
 +
| 01 - Monstrous Beast
 +
| Fixed
 +
| 200 / 200 / 60 / 80 / 20 / 60
 +
|-
 +
| 320
 +
| Generic Beastman
 +
| Bio Lab Dungeon<br>Forgotten Mansion
 +
| 02 - Beastman
 +
| Player level
 +
| (LV*3)+50 / (LV*3)+50 / (LV*3)+35 / (LV*2)+20 / (LV*2)+12 / (LV*1)+12
 +
|-
 +
| 321
 +
| Super Goblin
 +
| Ruined Melbel
 +
| 02 - Beastman
 +
| Fixed
 +
| 1200 / 1200 / 120 / 25 / 80 / 25
 +
|-
 +
| 330
 +
| Generic Plant
 +
| Bio Lab Dungeon
 +
| 03 - Plant
 +
| Player level
 +
| (LV*4)+45 / (LV*4)+45 / (LV*2)+20 / (LV*3)+35 / (LV*3)+25 / (LV*2)+20
 +
|-
 +
| 331
 +
| Flower Girl
 +
| Forgotten Mansion
 +
| 03 - Plant
 +
| Fixed
 +
| 350 / 350 / 180 / 100 / 150 / 100
 +
|-
 +
| 332
 +
| Tentacle Ball
 +
| Writhing Cave
 +
| 03 - Plant
 +
| Fixed
 +
| 400 / 400 / 80 / 160 / 80 / 220
 +
|-
 +
| 340
 +
| Generic Magical Life-form
 +
| Bio Lab Dungeon<br>Brainwashed City Melbel
 +
| 04 - Magical Life-form
 +
| Player level
 +
| (LV*3)+40 / (LV*3)+40 / (LV*2)+35 / (LV*2)+45 / (LV*2)+40 / (LV*2)+30
 +
|-
 +
| 341
 +
| Wood Golem
 +
| Ancient Library
 +
| 04 - Magical Life-form
 +
| Fixed
 +
| 300 / 300 / 400 / 300 / 0 / 150
 +
|-
 +
| 342
 +
| Automaton
 +
| Mage's Hideout
 +
| 04 - Magical Life-form
 +
| Player level
 +
| (LV*10)+1000 / (LV*10)+1000 / (LV*3)+150 / (LV*3)+150 / 100 / (LV*3)+150
 +
|-
 +
| 343
 +
| Machine Soldier
 +
| Abandoned Factory<br>Mage's Hideout
 +
| 04 - Magical Life-form
 +
| Fixed
 +
| 150 / 150 / 200 / 40 / 200 / 60
 +
|-
 +
| 350
 +
| Generic Undead
 +
| Bio Lab Dungeon<br>Mullonde Necromancy Hall<br>Roland Underground Prison
 +
| 05 - Undead
 +
| Player level
 +
| (LV*4)+64 / (LV*4)+64 / (LV*3)+34 / (LV*2)+34 / (LV*2)+8 / (LV*2)+12
 +
|-
 +
| 360
 +
| Generic Incorporeal
 +
| Brainwashed City Melbel<br>Roland Underground Prison
 +
| 06 - Incorporeal
 +
| Player level
 +
| (LV*2)+35 / (LV*2)+35 / (LV*1)+1 / (LV*1)+1 / (LV*3)+45 / (LV*3)+30
 +
|-
 +
| 361
 +
| Black Soul
 +
| Ancient Library
 +
| 06 - Incorporeal
 +
| Fixed
 +
| 300 / 300 / 200 / 200 / 200 / 200
 +
|-
 +
| 370
 +
| Generic Demon
 +
| Bio Lab Dungeon
 +
| 07 - Demon
 +
| Player level
 +
| (LV*3)+65 / (LV*3)+65 / (LV*3)+40 / (LV*2)+20 / (LV*2)+18 / (LV*2)+14
 +
|-
 +
| 371
 +
| Goddamn Blue Oni
 +
| Demon Castle Gaddem
 +
| 07 - Demon
 +
| Fixed
 +
| 350 / 350 / 250 / 300 / 200 / 480
 +
|-
 +
| 372
 +
| Summoned Imp
 +
| Ancient Library
 +
| 07 - Demon
 +
| Fixed
 +
| 200 / 200 / 10 / 200 / 10 / 200
 +
|-
 +
| 380
 +
| Generic Amorphous
 +
| Bio Lab Dungeon
 +
| 08 - Amorphous
 +
| Player level
 +
| (LV*4)+75 / (LV*4)+75 / (LV*2)+20 / (LV*2)+32 / (LV*1)+2 / (LV*2)+3
 +
|-
 +
| 381
 +
| Upthrust Slime
 +
| Ancient Library
 +
| 08 - Amorphous
 +
| Fixed
 +
| 350 / 350 / 100 / 50 / 0 / 100
 +
|-
 +
| 382
 +
| Ooze
 +
| Writhing Cave
 +
| 08 - Amorphous
 +
| Fixed
 +
| 100 / 100 / 80 / 120 / 40 / 60
 +
|-
 +
| 390
 +
| Generic Swarm
 +
| Internal generic Swarm record; no encounter uses this ID
 +
| 09 - Swarm
 +
| Player level
 +
| (LV*3)+41 / (LV*3)+41 / (LV*2)+20 / (LV*2)+42 / (LV*1)+5 / (LV*1)+4
 +
|-
 +
| 400
 +
| Generic Bug
 +
| Bio Lab Dungeon<br>Floating Continent Laputa<br>Gestahl Magitek Ruins
 +
| 10 - Insect
 +
| Player level
 +
| (LV*3)+32 / (LV*3)+32 / (LV*2)+16 / (LV*1)+38 / (LV*1)+2 / (LV*1)+2
 +
|-
 +
| 401
 +
| Killer Mantis
 +
| Gestahl Magitek Ruins
 +
| 10 - Insect
 +
| Fixed
 +
| 350 / 350 / 270 / 120 / 20 / 100
 +
|-
 +
| 410
 +
| Generic Human Woman
 +
| Trap Cave Entrance
 +
| 11 - Human Woman
 +
| Player level
 +
| (LV*3)+30 / (LV*3)+30 / (LV*2)+24 / (LV*2)+8 / (LV*3)+36 / (LV*3)+43
 +
|-
 +
| 411
 +
| Chainsaw Maid
 +
| Ruined Melbel
 +
| 11 - Human Woman
 +
| Fixed
 +
| 350 / 350 / 180 / 60 / 100 / 80
 +
|-
 +
| 420
 +
| Generic Aquatic
 +
| Internal generic Aquatic record; no encounter uses this ID
 +
| 12 - Aquatic
 +
| Player level
 +
| (LV*3)+52 / (LV*3)+52 / (LV*3)+33 / (LV*2)+22 / (LV*1)+6 / (LV*1)+9
 +
|-
 +
| 421
 +
| Tonberry
 +
| Mage's Hideout
 +
| 12 - Aquatic
 +
| Player level
 +
| (LV*50)+3000 / (LV*50)+3000 / (LV*5)+250 / (LV*5)+100 / 0 / (LV*10)+100
 +
|-
 +
| 430
 +
| Generic Beastwoman
 +
| Internal generic Beastwoman record; no encounter uses this ID
 +
| 13 - Beastwoman
 +
| Player level
 +
| (LV*3)+49 / (LV*3)+49 / (LV*3)+34 / (LV*2)+18 / (LV*3)+38 / (LV*3)+46
 +
|-
 +
| 440
 +
| Generic Special Armor
 +
| Bio Lab Dungeon<br>Floating Continent Laputa
 +
| 14 - Special Armor
 +
| Player level
 +
| (LV*3)+66 / (LV*3)+66 / (LV*3)+52 / (LV*3)+66 / (LV*1)+9 / (LV*2)+7
 +
|-
 +
| 450
 +
| Generic Reptile
 +
| Bio Lab Dungeon
 +
| 15 - Reptile
 +
| Player level
 +
| (LV*3)+60 / (LV*3)+60 / (LV*2)+36 / (LV*2)+44 / (LV*1)+2 / (LV*2)+5
 +
|-
 +
| 451
 +
| Meduconda
 +
| Traveling Bandits' Forest
 +
| 15 - Reptile
 +
| Player level
 +
| (LV*4)+60 / (LV*4)+60 / ((LV*9)/5)+18 / ((LV*5)/2)+20 / ((LV*6)/5)+12 / ((LV*3)/2)+20
 +
|-
 +
| 452
 +
| Indian Poison Frog
 +
| Traveling Bandits' Forest
 +
| 15 - Reptile
 +
| Player level
 +
| (LV*3)+35 / (LV*3)+35 / ((LV*6)/5)+12 / ((LV*3)/2)+10 / ((LV*9)/5)+18 / ((LV*5)/2)+10
 +
|-
 +
| 460
 +
| Generic Dragon
 +
| Bio Lab Dungeon<br>Border Sacred Peak
 +
| 16 - Dragon
 +
| Player level
 +
| (LV*5)+200 / (LV*5)+200 / (LV*3)+70 / (LV*3)+90 / (LV*3)+80 / (LV*3)+50
 +
|-
 +
| 470
 +
| Generic God
 +
| Capital Abaroso<br>Gestahl Magitek Ruins<br>Roland Underground Prison
 +
| 17 - God
 +
| Player level
 +
| (LV*4)+150 / (LV*4)+150 / (LV*3)+50 / (LV*3)+60 / (LV*4)+120 / (LV*3)+90
 +
|-
 +
| 480
 +
| Generic Human Man
 +
| Arena<br>Capital Abaroso<br>Ruined Melbel
 +
| 18 - Human Man
 +
| Player level
 +
| (LV*3)+34 / (LV*3)+34 / (LV*2)+26 / (LV*2)+12 / (LV*3)+22 / (LV*3)+27
 +
|-
 +
| 481
 +
| Bandit (Pickpocket)
 +
| Traveling Bandits' Forest
 +
| 18 - Human Man
 +
| Player level
 +
| ((LV*4)/5)+20 / ((LV*4)/5)+20 / LV+20 / 0 / LV+20 / 0
 +
|-
 +
| 482
 +
| Bandit (Brawler)
 +
| Traveling Bandits' Forest
 +
| 18 - Human Man
 +
| Player level
 +
| (LV*6)+50 / (LV*6)+50 / ((LV*7)/2)+40 / (LV*3)+40 / LV+20 / ((LV*3)/2)+40
 +
|-
 +
| 483
 +
| Bandit (Archer)
 +
| Traveling Bandits' Forest
 +
| 18 - Human Man
 +
| Player level
 +
| ((LV*7)/2)+40 / ((LV*7)/2)+40 / (LV*3)+20 / (LV*2)+20 / ((LV*7)/2)+40 / (LV*4)+40
 +
|-
 +
| 484
 +
| Bandit (Boss)
 +
| Traveling Bandits' Forest
 +
| 18 - Human Man
 +
| Player level
 +
| (LV*30)+300 / (LV*30)+300 / (LV*4)+60 / ((LV*7)/2)+60 / ((LV*5)/2)+30 / (LV*5)+80
 +
|-
 +
| 490
 +
| Generic Bird
 +
| Ancient Library<br>Bio Lab Dungeon<br>Border Sacred Peak<br>Mage's Hideout
 +
| 19 - Bird
 +
| Player level
 +
| (LV*2)+38 / (LV*2)+38 / (LV*2)+42 / (LV*2)+8 / (LV*2)+19 / (LV*3)+14
 +
|-
 +
| 491
 +
| Hanging Bat
 +
| Ancient Library
 +
| 19 - Bird
 +
| Fixed
 +
| 300 / 300 / 200 / 200 / 0 / 50
 +
|-
 +
| 492
 +
| Flying Saw
 +
| Abandoned Factory<br>Mage's Hideout
 +
| 19 - Bird
 +
| Fixed
 +
| 80 / 80 / 60 / 20 / 50 / 20
 +
|-
 +
| 500
 +
| Generic Other
 +
| Trap Cave Entrance
 +
| 20 - Other
 +
| Player level
 +
| (LV*3)+75 / (LV*3)+75 / (LV*2)+55 / (LV*2)+55 / (LV*3)+55 / (LV*3)+55
 +
|-
 +
| 501
 +
| Vampire Bat
 +
| Dokuno Falls
 +
| 20 - Other
 +
| Player level
 +
| (LV*3)+50 / (LV*3)+50 / ((LV*5)/2)+25 / ((LV*3)/2)+25 / 0 / 0
 +
|-
 +
| 502
 +
| Water Spider
 +
| Dokuno Falls
 +
| 20 - Other
 +
| Player level
 +
| (LV*6)+80 / (LV*6)+80 / (LV*4)+50 / (LV*2)+20 / 0 / (LV*2)+10
 +
|-
 +
| 503
 +
| Intruder-Defense Light Tank
 +
| Lionel Ideology Church
 +
| 20 - Other
 +
| Fixed
 +
| 400 / 400 / 200 / 300 / 300 / 100
 +
|-
 +
| 504
 +
| Intruder-Defense Drone
 +
| Lionel Ideology Church
 +
| 20 - Other
 +
| Fixed
 +
| 300 / 300 / 300 / 125 / 150 / 125
 +
|-
 +
| 505
 +
| Intruder-Defense Light Tank
 +
| Lionel Ideology Church
 +
| 20 - Other
 +
| Fixed
 +
| 700 / 700 / 150 / 300 / 150 / 150
 +
|-
 +
| 506
 +
| Intruder-Defense Drone
 +
| Lionel Ideology Church
 +
| 20 - Other
 +
| Fixed
 +
| 150 / 150 / 150 / 75 / 300 / 75
 +
|-
 +
| 510
 +
| Tentacle Mimic
 +
| Ancient Library
 +
| 21 - Treasure Chest
 +
| Random range
 +
| 5~10 / 10 / 0 / 999 / 300 / 999
 +
|-
 +
| 600
 +
| Killer Book
 +
| Ancient Library
 +
| 04 - Magical Life-form
 +
| Fixed
 +
| 1200 / 1200 / 550 / 250 / 400 / 250
 +
|-
 +
| 601
 +
| Mirror Demon
 +
| Ancient Library
 +
| 07 - Demon
 +
| Fixed
 +
| 4096 / 4096 / 256 / 8192 / 1024 / 8192
 +
|-
 +
| 602
 +
| Chadarnook
 +
| Mage's Hideout
 +
| 20 - Other
 +
| Player level
 +
| (LV*100)+3500 / (LV*100)+5000 / (LV*3)+150 / (LV*3)+100 / (LV*5)+150 / (LV*20)+350
 +
|-
 +
| 603
 +
| Lakshmi
 +
| Mage's Hideout
 +
| 20 - Other
 +
| Player level
 +
| (LV*100)+3500 / (LV*100)+5000 / (LV*3)+150 / (LV*20)+350 / (LV*5)+150 / (LV*3)+100
 +
|-
 +
| 604
 +
| Avaloso Sergeant
 +
| Capital Abaroso
 +
| 11 - Human Woman
 +
| Area level
 +
| H(ELV)*10 / H(ELV)*10 / S(ELV)*1.4 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.8
 +
|-
 +
| 605
 +
| Avaloso Soldier
 +
| Capital Abaroso
 +
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*0 / H(ELV)*0 / S(ELV) / S(ELV)*0.6 / S(ELV)*0.5 / S(ELV)*0.4
 +
|-
 +
| 606
 +
| Seven Heroes Sergeant
 +
| Arena
 +
| 11 - Human Woman
 +
| Area level
 +
| H(ELV)*10 / H(ELV)*10 / S(ELV)*1.4 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.8
 +
|-
 +
| 607
 +
| Seven Heroes Soldier
 +
| Arena
 +
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*0 / H(ELV)*0 / S(ELV) / S(ELV)*0.6 / S(ELV)*0.5 / S(ELV)*0.4
 +
|-
 +
| 608
 +
| Necromancer
 +
| Gestahl Magitek Ruins<br>Mullonde Necromancy Hall
 +
| 20 - Other
 +
| Fixed
 +
| 1500 / 1500 / 150 / 200 / 300 / 200
 +
|-
 +
| 609
 +
| Living Corpse
 +
| Mullonde Necromancy Hall
 +
| 05 - Undead
 +
| Fixed
 +
| 500 / 500 / 180 / 150 / 120 / 100
 +
|-
 +
| 610
 +
| Border Dragon
 +
| Border Sacred Peak
 +
| 16 - Dragon
 +
| Area level
 +
| H(ELV)*2 / H(ELV)*2 / S(ELV)*1.6 / S(ELV)*0.9 / S(ELV)*0.9 / S(ELV)*0.1
 +
|-
 +
| 611
 +
| Border Devil
 +
| Border Sacred Peak
 +
| 07 - Demon
 +
| Area level
 +
| H(ELV)*12 / H(ELV)*12 / S(ELV)*2 / S(ELV)*1.5 / S(ELV)*1.2 / S(ELV)*0.8
 +
|-
 +
| 612
 +
| Devil Crystal
 +
| Border Sacred Peak
 +
| 04 - Magical Life-form
 +
| Area level
 +
| H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*0.7 / S(ELV)*0.3 / S(ELV)*1.8 / S(ELV)*2
 +
|-
 +
| 613
 +
| Fortress City Male Soldier
 +
| Ruined Melbel
 +
| 18 - Human Man
 +
| Fixed
 +
| 220 / 220 / 208 / 176 / 32 / 144
 +
|-
 +
| 614
 +
| Fortress City Heavy Infantry
 +
| Ruined Melbel
 +
| 18 - Human Man
 +
| Fixed
 +
| 180 / 180 / 192 / 224 / 16 / 192
 +
|-
 +
| 615
 +
| Fortress City Female Soldier
 +
| Ruined Melbel
 +
| 11 - Human Woman
 +
| Fixed
 +
| 600 / 600 / 176 / 144 / 48 / 144
 +
|-
 +
| 616
 +
| Monster General
 +
| Ruined Melbel
 +
| 20 - Other
 +
| Fixed
 +
| 4200 / 4200 / 192 / 48 / 128 / 96
 +
|-
 +
| 617
 +
| Sorcerer
 +
| Ruined Melbel
 +
| 18 - Human Man
 +
| Fixed
 +
| 100 / 100 / 40 / 40 / 176 / 352
 +
|-
 +
| 618
 +
| Magic (Physical) User
 +
| Ruined Melbel
 +
| 18 - Human Man
 +
| Fixed
 +
| 240 / 240 / 768 / 80 / 0 / 96
 +
|-
 +
| 619
 +
| Writhing Cave Core
 +
| Writhing Cave
 +
| 20 - Other
 +
| Fixed
 +
| 2000 / 2000 / 100 / 80 / 150 / 120
 +
|-
 +
| 620
 +
| Blau Merman
 +
| Ancient Civilization Weir Tower
 +
| 12 - Aquatic
 +
| Fixed
 +
| 380 / 380 / 220 / 230 / 50 / 180
 +
|-
 +
| 621
 +
| Rot Merman
 +
| Ancient Civilization Weir Tower
 +
| 12 - Aquatic
 +
| Fixed
 +
| 350 / 350 / 260 / 190 / 90 / 140
 +
|-
 +
| 622
 +
| Mermaid Azure
 +
| Ancient Civilization Weir Tower
 +
| 12 - Aquatic
 +
| Fixed
 +
| 320 / 320 / 50 / 180 / 220 / 230
 +
|-
 +
| 623
 +
| Mermaid Rosso
 +
| Ancient Civilization Weir Tower
 +
| 12 - Aquatic
 +
| Fixed
 +
| 290 / 290 / 90 / 140 / 260 / 190
 +
|-
 +
| 624
 +
| Rosado Crab
 +
| Ancient Civilization Weir Tower
 +
| 12 - Aquatic
 +
| Fixed
 +
| 130 / 130 / 360 / 380 / 20 / 230
 +
|-
 +
| 625
 +
| Tentacle Marrone
 +
| Ancient Civilization Weir Tower
 +
| 12 - Aquatic
 +
| Fixed
 +
| 520 / 520 / 280 / 240 / 70 / 290
 +
|-
 +
| 626
 +
| Avatar of Darkness
 +
| Lomei Labyrinth
 +
| 07 - Demon
 +
| Fixed
 +
| 400 / 400 / 300 / 200 / 300 / 200
 +
|-
 +
| 627
 +
| Maze Goblin
 +
| Lomei Labyrinth
 +
| 02 - Beastman
 +
| Fixed
 +
| 460 / 460 / 370 / 240 / 90 / 110
 +
|-
 +
| 628
 +
| Living Shadow
 +
| Lomei Labyrinth
 +
| 06 - Incorporeal
 +
| Fixed
 +
| 130 / 130 / 180 / 150 / 240 / 120
 +
|-
 +
| 629
 +
| Aqua Slime
 +
| Lomei Labyrinth
 +
| 08 - Amorphous
 +
| Fixed
 +
| 380 / 380 / 240 / 220 / 280 / 170
 +
|-
 +
| 630
 +
| Flame of Resentment
 +
| Lomei Labyrinth
 +
| 08 - Amorphous
 +
| Fixed
 +
| 360 / 360 / 190 / 180 / 330 / 250
 +
|-
 +
| 631
 +
| Flesh Golem
 +
| Lomei Labyrinth
 +
| 01 - Monstrous Beast
 +
| Fixed
 +
| 410 / 410 / 340 / 190 / 260 / 220
 +
|-
 +
| 632
 +
| Dud Mimic
 +
| Lomei Labyrinth
 +
| 04 - Magical Life-form
 +
| Fixed
 +
| 430 / 430 / 410 / 490 / 180 / 490
 +
|-
 +
| 633
 +
| Reaper
 +
| Lomei Labyrinth
 +
| 17 - God
 +
| Fixed
 +
| 12000 / 12000 / 1800 / 1100 / 1200 / 1500
 +
|-
 +
| 634
 +
| Afrit
 +
| Lomei Labyrinth
 +
| 17 - God
 +
| Fixed
 +
| 2400 / 2400 / 370 / 260 / 310 / 190
 +
|-
 +
| 635
 +
| Sibel
 +
| Lomei Labyrinth
 +
| 17 - God
 +
| Fixed
 +
| 1900 / 1900 / 280 / 210 / 360 / 290
 +
|-
 +
| 636
 +
| Evil Dragon Statue
 +
| Lomei Labyrinth
 +
| 20 - Other
 +
| Fixed
 +
| 9300 / 9300 / 220 / 370 / 380 / 280
 +
|-
 +
| 637
 +
| Evil Dragon's Servant
 +
| Lomei Labyrinth
 +
| 20 - Other
 +
| Fixed
 +
| 1400 / 1400 / 360 / 220 / 320 / 260
 +
|-
 +
| 640
 +
| Violeta
 +
| Ancient Civilization Weir Tower
 +
| 12 - Aquatic
 +
| Fixed
 +
| 3400 / 3400 / 250 / 240 / 320 / 330
 +
|-
 +
| 641
 +
| Black Mage
 +
| Gestahl Magitek Ruins
 +
| 18 - Human Man
 +
| Fixed
 +
| 1600 / 1600 / 160 / 180 / 360 / 200
 +
|-
 +
| 942
 +
| Large Auto-Healer
 +
| Incomplete unused record; no encounter or standard stat block
 +
| Not assigned
 +
| No standard stat block
 +
|-
 +
| 943
 +
| Caddisfly
 +
| Norsley Sea of Decay
 +
| 09 - Swarm
 +
| Fixed
 +
| 5000 / 5000 / 512 / 678 / 512 / 333
 +
|-
 +
| 944
 +
| Cholkin
 +
| Norsley Sea of Decay
 +
| 19 - Bird
 +
| Fixed
 +
| 100 / 100 / 444 / 444 / 444 / 444
 +
|-
 +
| 945
 +
| Demon Centipede
 +
| Norsley Sea of Decay
 +
| 01 - Monstrous Beast
 +
| Fixed
 +
| 500 / 500 / 200 / 400 / 260 / 260
 +
|-
 +
| 946
 +
| Mutant Land Ray
 +
| Norsley Sea of Decay
 +
| 01 - Monstrous Beast
 +
| Fixed
 +
| 600 / 600 / 200 / 360 / 180 / 100
 +
|-
 +
| 947
 +
| Malboro
 +
| Norsley Sea of Decay
 +
| 03 - Plant
 +
| Fixed
 +
| 1000 / 1000 / 256 / 240 / 180 / 260
 +
|-
 +
| 948
 +
| Burger Plant
 +
| Norsley Sea of Decay
 +
| 03 - Plant
 +
| Fixed
 +
| 5000 / 5000 / 256 / 240 / 180 / 180
 +
|-
 +
| 949
 +
| Flame Flower
 +
| Norsley Sea of Decay
 +
| 03 - Plant
 +
| Fixed
 +
| 300 / 300 / 100 / 280 / 240 / 180
 +
|-
 +
| 950
 +
| Snow Flower
 +
| Norsley Sea of Decay
 +
| 03 - Plant
 +
| Fixed
 +
| 300 / 300 / 100 / 400 / 180 / 180
 +
|-
 +
| 951
 +
| Killer Bee
 +
| Norsley Sea of Decay
 +
| 19 - Bird
 +
| Fixed
 +
| 30 / 30 / 110 / 380 / 20 / 70
 +
|-
 +
| 952
 +
| G Centipede
 +
| Dwarven Great Tunnel<br>Norsley Sea of Decay
 +
| 10 - Insect
 +
| Fixed
 +
| 120 / 120 / 160 / 400 / 20 / 120
 
|-
 
|-
|1
+
| 953
|4~16/16/20/25/0/15
+
| D Centipede
|20-Other
+
| Norsley Sea of Decay
|Jelly
+
| 10 - Insect
 +
| Fixed
 +
| 200 / 200 / 220 / 600 / 20 / 160
 
|-
 
|-
|2
+
| 954
|16~50/50/35~55/20~55/0/10~25
+
| La-Lilim
|10-Insect
+
| Forgotten Mansion
|Killer Ant
+
| 07 - Demon
 +
| Fixed
 +
| 166 / 166 / 120 / 66 / 166 / 250
 
|-
 
|-
|3
+
| 955
|120~220/220/128~192/10/0/25
+
| Mr. Treasure Chest
|12-Aquatic
+
| Ancient Trial Grounds<br>Dokuno Falls<br>Underground Labyrinth
|Octopus
+
| 21 - Treasure Chest
 +
| Random range
 +
| 4~6 / 10 / 0 / 999 / 0 / 999
 
|-
 
|-
|4
+
| 956
|50/50/30~90/40/70~150/70~150
+
| Training Shadow
|13-Monstergirl
+
| Ancient Trial Grounds
|Faye
+
| 05 - Undead
 +
| Level + Trial Grounds streak
 +
| ((LV+Streak)*6)+50 / ((LV+Streak)*6)+50 / ((LV+Streak)*7)+40 / ((LV+Streak)*7)+40 / ((LV+Streak)*7)+40 / ((LV+Streak)*7)+40
 
|-
 
|-
|5
+
| 957
|LV*4+36/LV*4+36/LV*4+36/LV*4+21/0/LV*4+21
+
| Slime King
|02-Beastman
+
| Mountain Cave
|Fate Orc
+
| 08 - Amorphous
 +
| Fixed
 +
| 3000 / 3000 / 512 / 256 / 0 / 256
 
|-
 
|-
|6
+
| 958
|50/50/90/40/0/30
+
| Helm Slime
|12-Aquatic
+
| Abandoned Factory<br>Mountain Cave
|Fangfish
+
| 08 - Amorphous
 +
| Fixed
 +
| 100 / 100 / 60 / 120 / 0 / 60
 
|-
 
|-
|7
+
| 959
|50/50/40/60/0/30
+
| Puppet Master
|08-Amorphous
+
| Mountain Cave<br>Suspicious Temple
|Blood Pudding
+
| 02 - Beastman
 +
| Random range
 +
| 128~512 / 512 / 88~256 / 88~256 / 88~256 / 2~256
 
|-
 
|-
|8
+
| 960
|50/50/60/90/0/35
+
| Slime (Large)
|10-Insect
+
| Abandoned Factory<br>Demon Castle Gaddem<br>Mage's Hideout<br>Mountain Cave<br>Suspicious Temple
|Soldier Ant
+
| 08 - Amorphous
 +
| Fixed
 +
| 1000 / 1000 / 384 / 200 / 120 / 60
 
|-
 
|-
|9
+
| 961
|3000/3000/0/0/0/0
+
| Dragonfly
|20-Other
+
| Dwarven Great Tunnel<br>Nearby Forest<br>Norsley Sea of Decay<br>RAYON Village
|Mr. Dummy
+
| 10 - Insect
 +
| Fixed
 +
| 1000 / 1000 / 384 / 200 / 120 / 60
 
|-
 
|-
|10
+
| 962
|80/80/65/150/70/120
+
| Flower
|12-Aquatic
+
| RAYON Village
|Hornfin
+
| 03 - Plant
 +
| Fixed
 +
| 600 / 600 / 0 / 2 / 80 / 2
 
|-
 
|-
|11
+
| 963
|256~384/384/80/10/20/20
+
| Volcanon
|09-Swarm
+
| Bio Lab Dungeon<br>Dwarven Great Tunnel<br>Floating Continent Laputa<br>Lionel Ideology Church<br>RAYON Village
|Insect Swarm
+
| 20 - Other
 +
| Fixed
 +
| 600 / 600 / 180 / 350 / 300 / 350
 
|-
 
|-
|12
+
| 964
|128~256/256/70/1/0/20
+
| La-Zombie
|09-Swarm
+
| Border Sacred Peak<br>Capital Abaroso<br>Forgotten Mansion<br>Gestahl Magitek Ruins<br>Girls' Hall<br>Mage's Hideout<br>Mullonde Necromancy Hall
|Beetle Swarm
+
| 05 - Undead
 +
| Fixed
 +
| 600 / 600 / 180 / 2 / 30 / 6
 
|-
 
|-
|13
+
| 965
|80/80/80/60/60/60
+
| Sorceress
|10-Insect
+
| Gestahl Magitek Ruins<br>Girls' Hall<br>Mage's Hideout<br>RAYON Village<br>Ruined Melbel
|Giant Spider
+
| 11 - Human Woman
 +
| Fixed
 +
| 50 / 50 / 20 / 40 / 120 / 80
 
|-
 
|-
|14
+
| 966
|150/150/100/160/80/160
+
| Swordswoman
|10-Insect
+
| Border Sacred Peak<br>Gestahl Magitek Ruins<br>Girls' Hall
|Dread Spider
+
| 11 - Human Woman
 +
| Fixed
 +
| 70 / 70 / 90 / 40 / 40 / 80
 
|-
 
|-
|15
+
| 967
|80/80/80/40/120/140
+
| Demon
|10-Insect
+
| Nearby Forest<br>Roland Underground Prison
|Fire Moth
+
| 07 - Demon
 +
| Player level
 +
| (LV*50)+200 / (LV*50)+200 / 100 / 40 / 0 / 50
 
|-
 
|-
|16
+
| 968
|80/80/80/40/120/140
+
| Raven
|10-Insect
+
| Forgotten Mansion<br>Nearby Forest
|Frost Moth
+
| 19 - Bird
 +
| Fixed
 +
| 50 / 50 / 70 / 90 / 0 / 60
 
|-
 
|-
|17
+
| 969
|150/150/130/140/0/75
+
| Goblin
|05-Undead
+
| Capital Abaroso<br>Dwarven Great Tunnel<br>Nearby Forest<br>Suspicious Temple
|Executioner
+
| 02 - Beastman
 +
| Fixed
 +
| 50 / 50 / 50 / 50 / 0 / 40
 
|-
 
|-
|18
+
| 970
|80/80/0/80/120/80
+
| Giant Snake
|08-Amorphous
+
| Capital Abaroso<br>Emilis Lake<br>Nearby Forest
|Gizmo
+
| 15 - Reptile
 +
| Fixed
 +
| 20 / 20 / 60 / 40 / 0 / 10
 
|-
 
|-
|19
+
| 971
|90/90/110/75/0/70
+
| Giant Frog
|05-Undead
+
| Capital Abaroso<br>Nearby Forest
|Skeleton
+
| 15 - Reptile
 +
| Fixed
 +
| 30 / 30 / 30 / 10 / 0 / 10
 
|-
 
|-
|20
+
| 972
|120/240/100/80/100/100
+
| Stone Doll
|03-Plant
+
| Bio Lab Dungeon<br>Border Sacred Peak<br>Forgotten Mansion<br>Mage's Hideout<br>Mountain Cave
|Mandragora
+
| 04 - Magical Life-form
 +
| Fixed
 +
| 200 / 200 / 200 / 200 / 0 / 200
 
|-
 
|-
|21
+
| 973
|180/180/180/120/150/150
+
| Stray Dog
|11-Human(female)
+
| Border Sacred Peak<br>Capital Abaroso<br>Nearby Forest<br>RAYON Village
|Fire Flower
+
| 00 - Beast
 +
| Fixed
 +
| 50 / 50 / 50 / 70 / 0 / 30
 
|-
 
|-
|22
+
| 974
|180/180/80/170/150/150
+
| Outlaw
|11-Human(female)
+
| Capital Abaroso<br>Mage's Hideout<br>RAYON Village
|Snow Smile
+
| 18 - Human Man
 +
| Fixed
 +
| 120 / 120 / 99 / 50 / 10 / 10
 
|-
 
|-
|23
+
| 975
|100/100/80/120/220/150
+
| Thief
|11-Human(female)
+
| Bio Lab Dungeon<br>Mage's Hideout<br>RAYON Village<br>Villains' Valley
|Lightning Loli
+
| 18 - Human Man
 +
| Fixed
 +
| 60 / 60 / 50 / 70 / 10 / 30
 
|-
 
|-
|24
+
| 976
|100/200/120/100/0/120
+
| La-Fire
|08-Amorphous
+
| Dwarven Great Tunnel<br>Forgotten Mansion<br>Suspicious Temple
|Yellow Mold
+
| 20 - Other
 +
| Fixed
 +
| 100 / 100 / 160 / 40 / 120 / 100
 
|-
 
|-
|25
+
| 977
|400/400/100/100/0/100
+
| Lantern
|13-Monstergirl
+
| Execution Tower<br>RAYON Village
|Bee Girl
+
| 20 - Other
 +
| Fixed
 +
| 1 / 1 / 100 / 100 / 100 / 0
 
|-
 
|-
|26
+
| 978
|LV*20+300/LV*20+300/140/130/0/130
+
| Lantern (Lit)
|13-Monstergirl
+
| Execution Tower
|Transformed Bee Girl
+
| 20 - Other
 +
| Fixed
 +
| 1 / 1 / 100 / 100 / 100 / 0
 
|-
 
|-
|101
+
| 979
|LV*5+32~64/LV*5+64/0/0/LV*9+32~64/LV*8+32~64
+
| Bubbly Slime
|06-Incorporeal
+
| Border Sacred Peak<br>RAYON Village
|Lost Soul
+
| 08 - Amorphous
 +
| Fixed
 +
| 20 / 20 / 40 / 2 / 20 / 40
 
|-
 
|-
|102
+
| 980
|LV*2+8~16/LV*2+16/0/0/LV*6+32~64/LV*4+32~64
+
| Buchunpa
|06-Incorporeal
+
| RAYON Village
|Evil Spirit
+
| 01 - Monstrous Beast
 +
| Fixed
 +
| 60 / 60 / 20 / 40 / 20 / 40
 
|-
 
|-
|201
+
| 981
|LV*30+300/LV*30+300/166/60/0/100
+
| Gummy
|03-Plant
+
| RAYON Village
|Great Malboro
+
| 20 - Other
 +
| Fixed
 +
| 20 / 20 / 20 / 20 / 20 / 20
 
|-
 
|-
|202
+
| 982
|LV*50+300/LV*50+300/130+LV*2/160/0/160
+
| Killing Machine
|10-Insect
+
| Demon Castle Gaddem<br>Execution Tower<br>Mage's Hideout
|Insect Queen
+
| 04 - Magical Life-form
 +
| Fixed
 +
| 444 / 444 / 444 / 444 / 4 / 444
 
|-
 
|-
|203
+
| 983
|LV*256+3064/65536/512/128/192/192
+
| Lesser Demon
|12-Aquatic
+
| Ancient Library<br>Border Sacred Peak<br>Demon Castle Gaddem<br>Execution Tower<br>Mage's Hideout<br>Suspicious Temple
|Kraken
+
| 07 - Demon
 +
| Fixed
 +
| 200 / 200 / 160 / 240 / 160 / 256
 
|-
 
|-
|204
+
| 984
|2000/65536/320/8/100/0
+
| Carmilla
|20-Other
+
| Capital Abaroso<br>Demon Castle Gaddem<br>Execution Tower<br>Forgotten Mansion<br>Mullonde Necromancy Hall<br>Roland Underground Prison<br>Suspicious Temple
|The Swarm
+
| 05 - Undead
 +
| Fixed
 +
| 180 / 180 / 130 / 224 / 200 / 384
 
|-
 
|-
|205
+
| 985
|1600/1600/120/0/0/0
+
| La-Lamia
|10-Insect
+
| Bio Lab Dungeon<br>Capital Abaroso<br>Forgotten Mansion<br>Girls' Hall<br>Mountain Cave<br>Nearby Forest<br>Village Attacked by Bees
|Sleipnir
+
| 13 - Beastwoman
 +
| Fixed
 +
| 260 / 260 / 108 / 20 / 108 / 108
 
|-
 
|-
|206
+
| 986
|300/300/120/0/0/0
+
| Ogre
|10-Insect
+
| Ancient Library<br>Border Sacred Peak<br>Demon Castle Gaddem<br>Dwarven Great Tunnel<br>Mountain Cave<br>Underground Labyrinth
|Sleipnir's Swarm
+
| 02 - Beastman
 +
| Fixed
 +
| 350 / 350 / 250 / 20 / 3 / 6
 
|-
 
|-
|207
+
| 987
|LV*30+1500/LV*30+1500/320/120/120/120
+
| Ghost Slug
|12-Aquatic
+
| Capital Abaroso<br>Mountain Cave<br>RAYON Village<br>Writhing Cave
|Octomammoth
+
| 20 - Other
 +
| Fixed
 +
| 60 / 60 / 30 / 2 / 3 / 2
 
|-
 
|-
|208
+
| 988
|LV*10+200/LV*10+200/192/60/80/80
+
| Full Metal Crab
|12-Aquatic
+
| Dwarven Great Tunnel<br>Floating Continent Laputa<br>Forgotten Mansion<br>Mountain Cave
|Tentacle
+
| 20 - Other
 +
| Fixed
 +
| 160 / 160 / 160 / 250 / 3 / 180
 
|-
 
|-
|209
+
| 989
|240/240/250/150/0/250
+
| La-Harpy
|03-Plant
+
| Execution Tower<br>Girls' Hall
|Malboro Bros
+
| 13 - Beastwoman
 +
| Fixed
 +
| 90 / 90 / 99 / 180 / 3 / 60
 
|-
 
|-
|210
+
| 990
|LV*10+24~48/65536/LV*8+13/LV*13/0/LV*13+32~64
+
| Lizardman
|10-Insect
+
| Forgotten Mansion<br>Mountain Cave<br>RAYON Village
|Craw Antibody
+
| 15 - Reptile
 +
| Fixed
 +
| 90 / 90 / 75 / 125 / 3 / 20
 
|-
 
|-
|211
+
| 991
|600/600/250/2/0/2
+
| Slime
|10-Insect
+
| Abandoned Factory<br>Capital Abaroso<br>Demon Castle Gaddem<br>Forgotten Mansion<br>Mage's Hideout<br>Mountain Cave<br>Suspicious Temple<br>Writhing Cave
|Huge Worm
+
| 08 - Amorphous
 +
| Fixed
 +
| 108 / 1000 / 50 / 12 / 3 / 166
 
|-
 
|-
|212
+
| 992
|80/80/99/160/0/500
+
| Mummy
|10-Insect
+
| Bio Lab Dungeon<br>Capital Abaroso<br>Forgotten Mansion<br>Undersea Temple
|Mageslayer
+
| 05 - Undead
 +
| Fixed
 +
| 100 / 100 / 100 / 100 / 100 / 100
 
|-
 
|-
|213
+
| 993
|LV*20+40~108/65536/LV*13+13/LV*13/0/LV*13+32~64
+
| Intelligent Sword
|10-Insect
+
| Demon Castle Gaddem<br>Forgotten Mansion<br>Undersea Temple
|Craw Core
+
| 04 - Magical Life-form
 +
| Fixed
 +
| 50 / 50 / 99 / 128 / 80 / 512
 
|-
 
|-
|214
+
| 994
|80/80/40/2/0/4
+
| Switch
|10-Insect
+
| Mountain Cave<br>Schwarz Maiden
|Small Landray
+
| 20 - Other
 +
| Fixed
 +
| 1 / 1 / 192 / 60 / 80 / 80
 
|-
 
|-
|215
+
| 995
|160/160/80/40/0/90
+
| Village Gurl
|10-Insect
+
| Arena (random opponent pool)
|Landray
+
| 11 - Human Woman
 +
| Player level + random range
 +
| (LV*4)+1~6 / (LV*4)+6 / (LV*3)+1~6 / (LV*3)+1~6 / 0 / (LV*3)+1~6
 
|-
 
|-
|216
+
| 996
|250/250/100/60/0/120
+
| Town Gurl
|10-Insect
+
| Arena (random opponent pool)
|Large Landray
+
| 11 - Human Woman
 +
| Player level + random range
 +
| (LV*3)+1~6 / (LV*3)+6 / (LV*2)+1~6 / (LV*2)+1~6 / 0 / (LV*2)+1~6
 
|-
 
|-
|217
+
| 997
|LV*40+300/LV*40+300/160/160/0/160
+
| Adventurer
|13-Monstergirl
+
| Arena (random opponent pool)
|Queen Bee
+
| 11 - Human Woman
 +
| Player level + random range
 +
| (LV*5)+8~32 / (LV*5)+32 / (LV*5)+8~32 / (LV*5)+8~32 / 0 / (LV*5)+8~32
 
|-
 
|-
|341
+
| 998
|300/300/400/300/0/150
+
| Doppelganger
|04-Artifact
+
| Bio Lab Dungeon
|Wood Golem
+
| 20 - Other
 +
| Copies player stats
 +
| Player MHP / Player MHP / Player ATK / Player DEF / Player MAG / Player SPR
 
|-
 
|-
|342
+
| 999
|LV*10+1000/LV*10+1000/LV*3+150/LV*3+150/LV*3+150/LV*3+150/
+
| Huge Worm (Erotica Duty)
|04-Artifact
+
| Poison-Insect Labyrinth
|Automaton
+
| 20 - Other
 +
| Fixed
 +
| 4444 / 65536 / 66 / 24 / 66 / 96
 
|-
 
|-
|361
+
| 1000
|300/300/200/200/200/200
+
| Lady Une
|06-Incorporeal
+
| Capital Abaroso<br>Forgotten Mansion
|Black Soul
+
| 20 - Other
 +
| Fixed
 +
| 4444 / 65536 / 192 / 24 / 128 / 96
 
|-
 
|-
|372
+
| 1001
|200/200/10/200/10/200
+
| Bat
|07-Demon
+
| Border Sacred Peak<br>Demon Castle Gaddem<br>Dwarven Great Tunnel<br>Execution Tower<br>Mage's Hideout<br>Mountain Cave
|Summoned Fiend
+
| 20 - Other
 +
| Fixed
 +
| 10 / 10 / 40 / 5 / 0 / 5
 
|-
 
|-
|381
+
| 1002
|350/350/100/50/0/100
+
| Intelligent Saw
|08-Amorphous
+
| Demon Castle Gaddem<br>Execution Tower<br>Lionel Ideology Church<br>Mage's Hideout<br>RAYON Village<br>Undersea Temple
|Spiky Slime
+
| 14 - Special Armor
 +
| Fixed
 +
| 80 / 80 / 199 / 255 / 0 / 255
 
|-
 
|-
|421
+
| 1003
|LV*50+3000/LV*50+3000/LV*5+250/LV*5+100/0/LV*10+100
+
| Mage
|12-Aquatic
+
| Undersea Temple
|Tonberry
+
| 07 - Demon
 +
| Fixed
 +
| 200 / 200 / 200 / 80 / 160 / 250
 
|-
 
|-
|451
+
| 1004
|Lv*4+60/Lv*4+60/Lv*1.8+18/Lv*2.5+20/Lv*1.2+12/Lv*1.5+20
+
| Aspect of Kraken
|15-Reptile
+
| Forgotten Mansion<br>Undersea Temple
|Mediconda
+
| 12 - Aquatic
 +
| Fixed
 +
| 800 / 800 / 180 / 50 / 100 / 50
 
|-
 
|-
|452
+
| 1005
|Lv*3+35/Lv*3+35/Lv*1.2+12/Lv*1.5+10/Lv*1.8+18/Lv*2.5+10
+
| Cave Worm
|15-Reptile
+
| Border Sacred Peak<br>Mage's Hideout<br>Mountain Cave<br>Nearby Forest<br>RAYON Village<br>Suspicious Temple
|Poison Frog
+
| 12 - Aquatic
 +
| Fixed
 +
| 1000 / 1000 / 256 / 80 / 70 / 333
 
|-
 
|-
|481
+
| 1006
|Lv*0.8+20/Lv*0.8+20/Lv*1+20/0/Lv*1+20/0
+
| Lid
|18-Human(male)
+
| Gestahl Magitek Ruins<br>Roland Underground Prison<br>Underground Labyrinth<br>Undersea Temple
|Bandit(Thief)
+
| 04 - Magical Life-form
 +
| Fixed
 +
| 100 / 100 / 0 / 80 / 0 / 200
 
|-
 
|-
|482
+
| 1007
|Lv*6+50/Lv*6+50/Lv*3.5+40/Lv*3+40/Lv*1+20/Lv*1.5+40
+
| Guardian
|18-Human(male)
+
| Demon Castle Gaddem<br>Undersea Temple
|Bandit(Brawler)
+
| 04 - Magical Life-form
 +
| Fixed
 +
| 600 / 600 / 255 / 512 / 0 / 512
 
|-
 
|-
|483
+
| 1008
|Lv*3.5+40/Lv*3.5+40/Lv*3+20/Lv*2+20/Lv*3.5+40/Lv*4+40
+
| Human Warrior M
|18-Human(male)
+
| Gestahl Magitek Ruins<br>Roland Underground Prison
|Bandit(Archer)
+
| 18 - Human Man
 +
| Player level + random range
 +
| (LV*12)+32~92 / (LV*12)+92 / (LV*10)+32~92 / (LV*6)+32~64 / 0 / (LV*1)+1~6
 
|-
 
|-
|484
+
| 1009
|Lv*30+300/Lv*30+300/Lv*4+60/Lv*3.5+60/Lv*2.5+30/Lv*5+80
+
| Human Warrior F
|18-Human(male)
+
| Mage's Hideout
|Bandit(Boss)
+
| 11 - Human Woman
 +
| Player level + random range
 +
| (LV*8)+32~92 / (LV*8)+92 / (LV*8)+32~92 / (LV*6)+32~64 / 0 / (LV*1)+1~6
 
|-
 
|-
|491
+
| 1010
|300/300/200/200/0/50
+
| Bunny
|19-Avian
+
| Arena (random opponent pool)
|Hanging Bat
+
| 11 - Human Woman
 +
| Player level + random range
 +
| (LV*4)+24~48 / (LV*4)+48 / (LV*2)+2~16 / (LV*3)+32~64 / (LV*9)+32~64 / (LV*6)+32~64
 
|-
 
|-
|501
+
| 1011
|Lv*3+50/Lv*3+50/Lv*2.5+25/Lv*1.5+25/0/0
+
| Vorpal Bunny
|20-Other
+
| Arena (random opponent pool)
|Vampire Bat
+
| 11 - Human Woman
 +
| Player level + random range
 +
| (LV*4)+24~48 / (LV*4)+48 / (LV*13)+13 / (LV*3)+32~64 / (LV*13)+32~64 / (LV*6)+32~64
 
|-
 
|-
|502
+
| 1012
|Lv*6+80/Lv*6+80/Lv*4+50/Lv*2+20/0/Lv*2+10
+
| Noblewoman
|20-Other
+
| Arena (random opponent pool)
|Water Spider
+
| 11 - Human Woman
 +
| Player level + random range
 +
| (LV*4)+24~48 / (LV*4)+48 / (LV*1)+2~3 / (LV*2)+8~16 / (LV*18)+32~128 / (LV*24)+32~128
 
|-
 
|-
|510
+
| 1013
|5-10/10/0/999/300/999
+
| Female Mage
|21-Treasure Chest
+
| Arena (random opponent pool)
|Tentacle Mimic
+
| 11 - Human Woman
 +
| Player level + random range
 +
| (LV*6)+24~48 / (LV*6)+48 / (LV*1)+2~3 / (LV*2)+8~16 / (LV*16)+32~128 / (LV*20)+32~128
 
|-
 
|-
|600
+
| 1014
|2000/2000/550/250/400/250
+
| Maid
|04-Artifact
+
| Arena (random opponent pool)
|Killer Book
+
| 11 - Human Woman
 +
| Player level + random range
 +
| (LV*6)+16~64 / (LV*6)+64 / (LV*10)+32~92 / (LV*3)+32~64 / 0 / (LV*8)+32~128
 
|-
 
|-
|601
+
| 1015
|4096/4096/256/8192/1024/8192
+
| Sword Dancer
|07-Demon
+
| Gestahl Magitek Ruins<br>Roland Underground Prison
|Mirror Demon
+
| 20 - Other
 +
| Player level + random range
 +
| (LV*3)+16~64 / (LV*3)+64 / (LV*6)+32~92 / (LV*3)+32~64 / 0 / (LV*8)+32~128
 
|-
 
|-
|602
+
| 1016
|LV*100+3500/LV*100+3500/LV*3+150/LV*3+100/LV*5+150/LV*20+350
+
| Flack
|20-Other
+
| Arena (random opponent pool)
|Chadarnook
+
| 20 - Other
 +
| Player level + random range
 +
| (LV*3)+16~64 / (LV*3)+64 / (LV*2)+8~16 / (LV*3)+32~64 / 0 / (LV*16)+32~128
 
|-
 
|-
|603
+
| 1017
|LV*100+3500/LV*100+3500/LV*3+350/LV*20+200/LV*5+150/LV*3+100
+
| Ero-Elf
|20-Other
+
| Arena (random opponent pool)
|Lakshmi
+
| 20 - Other
 +
| Player level + random range
 +
| (LV*4)+16~48 / (LV*4)+48 / (LV*6)+32~64 / (LV*4)+32~64 / (LV*8)+32~64 / (LV*12)+32~128
 
|-
 
|-
|943
+
| 1018
|5000/5000/512/678/512/333
+
| Templar
|09-Swarm
+
| Arena (random opponent pool)
|Tsetse Flies
+
| 20 - Other
 +
| Player level + random range
 +
| (LV*6)+16~48 / (LV*6)+48 / (LV*7)+32~64 / (LV*10)+32~64 / (LV*8)+32~64 / (LV*16)+32~128
 
|-
 
|-
|944
+
| 1019
|100/100/444/444/444/444
+
| Mercenary
|19-Avian
+
| Arena (random opponent pool)
|Tyorkin
+
| 20 - Other
 +
| Player level + random range
 +
| (LV*12)+32~96 / (LV*12)+96 / (LV*12)+32~64 / (LV*12)+32~64 / 0 / (LV*2)+2~16
 
|-
 
|-
|945
+
| 1020
|500/500/200/400/260/260
+
| Karateka
|01-Mabeast
+
| Arena (random opponent pool)
|Demonpede
+
| 20 - Other
 +
| Player level + random range
 +
| (LV*8)+32~96 / (LV*8)+96 / (LV*24)+32~64 / (LV*3)+32~64 / 0 / (LV*8)+2~16
 
|-
 
|-
|946
+
| 1021
|600/600/200/360/180/100
+
| Never-Never
|01-Mabeast
+
| Dokuno Falls
|Mutant Landray
+
| 08 - Amorphous
 +
| Player level
 +
| (LV*5)+50 / (LV*5)+50 / (LV*3)+20 / (LV*2)+20 / LV+10 / (LV/2)+5
 
|-
 
|-
|947
+
| 1022
|1000/1000/256/40/180/260
+
| Neverman
|03-Plant
+
| Dokuno Falls
|Malboro
+
| 08 - Amorphous
 +
| Player level
 +
| (LV*6)+100 / (LV*6)+100 / (LV*5)+70 / (LV*4)+65 / 0 / ((LV*3)/2)+15
 
|-
 
|-
|948
+
| 1023
|5000/5000/256/240/180/180
+
| Nevergirl
|03-Plant
+
| Dokuno Falls
|Man Trap
+
| 08 - Amorphous
 +
| Player level
 +
| (LV*9)+150 / (LV*9)+150 / ((LV*3)/2)+15 / (LV/2)+5 / (LV*5)+70 / (LV*8)+60
 
|-
 
|-
|949
+
| 1024
|300/300/100/280/240/180
+
| Neverloon
|03-Plant
+
| Dokuno Falls
|Fire Flower
+
| 20 - Other
 +
| Player level
 +
| (LV*60)+1000 / (LV*60)+2000 / ((LV*9)/2)+55 / (LV*3)+50 / ((LV*5)/2)+55 / (LV*9)+50
 
|-
 
|-
|950
+
| 1025
|300/300/100/400/180/180
+
| Familiar
|03-Plant
+
| Traveling Bandits' Forest
|Frost Flower
+
| 20 - Other
 +
| Player level
 +
| (LV*5)+50 / (LV*5)+50 / (LV*2)+30 / ((LV*3)/2)+20 / ((LV*7)/2)+50 / (LV*4)+100
 
|-
 
|-
|951
+
| 1026
|30/30/110/380/20/70
+
| Demon (Male)
|19-Avian
+
| Unused enemy record; no encounter uses this ID
|Killer Bee
+
| 20 - Other
 +
| Player level
 +
| ((LV*17)/2)+60 / ((LV*17)/2)+60 / (LV*4)+50 / ((LV*3)/2)+40 / (LV*3)+30 / ((LV*7)/2)+60
 
|-
 
|-
|952
+
| 1027
|120/120/160/400/20/120
+
| Demon (Female)
|10-Insect
+
| Unused enemy record; no encounter uses this ID
|Giant Centipede
+
| 20 - Other
 +
| Player level
 +
| (LV*7)+65 / (LV*7)+65 / ((LV*5)/2)+40 / ((LV*3)/2)+10 / (LV*5)+70 / (LV*6)+120
 
|-
 
|-
|953
+
| 1028
|200/200/220/600/20/160
+
| Demon (Officer)
|10-Insect
+
| Unused enemy record; no encounter uses this ID
|Dread Centipede
+
| 20 - Other
 +
| Player level
 +
| (LV*16)+80 / (LV*16)+80 / (LV*5)+60 / (LV*2)+50 / (LV*4)+60 / ((LV*15)/2)+160
 
|-
 
|-
|954
+
| 1029
|166/166/120/66/166/250
+
| Archdemon
|07-Demon
+
| Unused enemy record; no encounter uses this ID
|Lilin
+
| 20 - Other
 +
| Player level
 +
| (LV*50)+444 / (LV*50)+444 / ((LV*7)/2)+30 / ((LV*3)/2)+30 / ((LV*9)/2)+50 / ((LV*15)/2)+160
 
|-
 
|-
|955
+
| 1030
|4~6/10/0/999/0/999
+
| Archdemon
|21-Treasure Chest
+
| Unused enemy record; no encounter uses this ID
|Treasure Chest-san
+
| 20 - Other
 +
| Player level
 +
| (LV*75)+666 / (LV*75)+666 / (LV*4)+50 / ((LV*3)/2)+50 / (LV*6)+60 / (LV*8)+200
 
|-
 
|-
|956
+
| 1031
|LV*5+50/LV*5+50/LV*7+40/LV*7+40/LV*7+40/LV*7+40
+
| Slave Man
|05-Undead
+
| Pyramid
|Shadow of Trial
+
| 05 - Undead
 +
| Fixed
 +
| 500 / 500 / 200 / 200 / 100 / 100
 
|-
 
|-
|957
+
| 1032
|3000/3000/512/256/0/256
+
| Slave Lady
|08-Amorphous
+
| Pyramid
|Slime King
+
| 05 - Undead
 +
| Fixed
 +
| 400 / 400 / 150 / 150 / 100 / 100
 
|-
 
|-
|958
+
| 1033
|100/100/60/120/0/60
+
| Man-Eating Chest
|08-Amorphous
+
| Pyramid
|Helmet Slime
+
| 04 - Magical Life-form
 +
| Fixed
 +
| 1000 / 1000 / 300 / 250 / 3 / 250
 
|-
 
|-
|959
+
| 1034
|128~512/??/88~256/88~256/88~256/2~256/
+
| Ancient Warrior
|02-Beastman
+
| Pyramid
|Puppetmaster
+
| 18 - Human Man
 +
| Fixed
 +
| 800 / 800 / 250 / 150 / 100 / 100
 
|-
 
|-
|960
+
| 1035
|1000/1000/384/200/120/60
+
| Evil Scorpion
|08-Amorphous
+
| Pyramid
|Large Slime
+
| 10 - Insect
 +
| Fixed
 +
| 400 / 400 / 230 / 100 / 100 / 100
 
|-
 
|-
|961
+
| 1036
|1000/1000/384/200/120/60
+
| Pyramid Centipede
|10-Insect
+
| Pyramid
|Dragon Fly
+
| 10 - Insect
 +
| Fixed
 +
| 500 / 500 / 210 / 150 / 100 / 100
 
|-
 
|-
|962
+
| 1037
|600/600/0/2/80/2
+
| White Snake
|03-Plant
+
| Pyramid
|Flower
+
| 15 - Reptile
 +
| Fixed
 +
| 800 / 800 / 250 / 100 / 100 / 100
 
|-
 
|-
|963
+
| 1038
|600/600/180/350/300/350
+
| Machine Head
|20-Other
+
| Pyramid
|Volcanon
+
| 04 - Magical Life-form
 +
| Fixed
 +
| 1000 / 1000 / 300 / 300 / 4 / 250
 
|-
 
|-
|964
+
| 1039
|600/600/180/2/30/6
+
| Specter
|05-Undead
+
| Pyramid
|Zombie
+
| 05 - Undead
 +
| Fixed
 +
| 300 / 300 / 150 / 150 / 100 / 150
 
|-
 
|-
|965
+
| 1040
|50/50/20/40/120/80
+
| Iron Giant
|11-Human(female)
+
| Pyramid
|Sorceress
+
| 18 - Human Man
 +
| Fixed
 +
| 1200 / 1200 / 300 / 250 / 5 / 200
 
|-
 
|-
|966
+
| 1041
|70/70/90/40/40/80
+
| Wind Mage
|11-Human(female)
+
| Pyramid
|Swordswoman
+
| 18 - Human Man
 +
| Fixed
 +
| 500 / 500 / 100 / 150 / 250 / 200
 
|-
 
|-
|967
+
| 1042
|LV*50+200/LV*50+200/100/40/0/50
+
| Wyrm
|07-Demon
+
| Dragon Duel Cave<br>Pyramid
|Chief Ntoko
+
| 15 - Reptile
 +
| Fixed
 +
| 1000 / 1000 / 300 / 200 / 100 / 200
 
|-
 
|-
|968
+
| 1043
|50/50/70/90/0/60
+
| Guardian Dragon
|19-Avian
+
| Pyramid
|Raven
+
| 16 - Dragon
 +
| Fixed
 +
| 1000 / 1000 / 350 / 250 / 150 / 250
 
|-
 
|-
|969
+
| 1044
|50/50/50/50/0/40
+
| Cherie
|02-Beastman
+
| Pyramid
|Goblin
+
| 11 - Human Woman
 +
| Fixed
 +
| 500 / 500 / 150 / 150 / 250 / 200
 
|-
 
|-
|970
+
| 1045
|20/20/60/40/0/10
+
| Royal Guard
|15-Reptile
+
| Pyramid
|Large Snake
+
| 18 - Human Man
 +
| Fixed
 +
| 600 / 600 / 250 / 200 / 100 / 100
 
|-
 
|-
|971
+
| 1046
|30/30/30/10/0/10
+
| Haunted Mage
|15-Reptile
+
| Pyramid
|Large Frog
+
| 18 - Human Man
 +
| Fixed
 +
| 1200 / 1200 / 250 / 200 / 300 / 300
 
|-
 
|-
|972
+
| 1047
|200/200/200/200/0/200
+
| Slave Warrior
|04-Artifact
+
| Pyramid
|Stone Golem
+
| 05 - Undead
 +
| Fixed
 +
| 700 / 700 / 250 / 250 / 250 / 100
 
|-
 
|-
|973
+
| 1048
|50/50/50/70/0/30
+
| Slave Amazon
|00-Animal
+
| Pyramid
|Wild Dog
+
| 05 - Undead
 +
| Fixed
 +
| 600 / 600 / 150 / 200 / 100 / 250
 
|-
 
|-
|974
+
| 1049
|120/120/99/50/10/10
+
| Pillar Doll
|18-Human(male)
+
| Pyramid
|Thug
+
| 04 - Magical Life-form
 +
| Fixed
 +
| 1000 / 1000 / 100 / 200 / 400 / 200
 
|-
 
|-
|975
+
| 1050
|60/60/50/70/10/30
+
| Dancing Jewel
|18-Human(male)
+
| Pyramid
|Thief
+
| 04 - Magical Life-form
 +
| Fixed
 +
| 500 / 500 / 100 / 250 / 100 / 250
 
|-
 
|-
|976
+
| 1061
|100/100/160/40/120/100
+
| Sekhmet
|20-Other
+
| Pyramid
|Fire
+
| 02 - Beastman
 +
| Fixed
 +
| 5000 / 5000 / 400 / 200 / 10 / 200
 
|-
 
|-
|977
+
| 1062
|1/1/100/100/100/0
+
| Queen
|20-Other
+
| Pyramid
|Lantern
+
| 11 - Human Woman
 +
| Fixed
 +
| 3000 / 3000 / 150 / 150 / 300 / 200
 
|-
 
|-
|978
+
| 1063
|1/1/100/100/100/0
+
| Scapegoat
|20-Other
+
| Pyramid
|Lantern(lit)
+
| 11 - Human Woman
 +
| Fixed
 +
| 300 / 300 / 100 / 100 / 100 / 100
 
|-
 
|-
|979
+
| 1064
|20/20/40/2/20/40
+
| Basilisk
|08-Amorphous
+
| Pyramid
|Bubble Slime
+
| 15 - Reptile
 +
| Fixed
 +
| 5000 / 5000 / 300 / 300 / 200 / 300
 
|-
 
|-
|980
+
| 1065
|60/60/20/40/20/40
+
| Minotaur
|01-Mabeast
+
| Pyramid
|Smoocher
+
| 02 - Beastman
 +
| Fixed
 +
| 10000 / 10000 / 450 / 250 / 10 / 250
 
|-
 
|-
|981
+
| 1066
|20/20/20/20/20/20
+
| King
|20-Other
+
| Pyramid
|Gummy
+
| 18 - Human Man
 +
| Fixed
 +
| 8000 / 8000 / 400 / 300 / 450 / 300
 
|-
 
|-
|982
+
| 1101
|444/444/444/444/4/444
+
| Haunt
|04-Artifact
+
| Pyramid
|Killing Machine
+
| 06 - Incorporeal
 +
| Fixed
 +
| 700 / 700 / 200 / 200 / 150 / 350
 
|-
 
|-
|983
+
| 1102
|200/200/160/240/160/256
+
| Fire Centipede
|07-Demon
+
| Pyramid
|Lesser Demon
+
| 10 - Insect
 +
| Fixed
 +
| 700 / 700 / 250 / 150 / 300 / 100
 
|-
 
|-
|984
+
| 1103
|130/130/130/224/200/384
+
| Charmy Ride
|05-Undead
+
| Pyramid
|Camilla
+
| 01 - Monstrous Beast
 +
| Fixed
 +
| 1200 / 1200 / 100 / 200 / 300 / 200
 
|-
 
|-
|985
+
| 1104
|260/260/108/20/108/108
+
| Zephyr Zone
|13-Monstergirl
+
| Pyramid
|Lamia
+
| 11 - Human Woman
 +
| Fixed
 +
| 500 / 500 / 100 / 100 / 300 / 200
 
|-
 
|-
|986
+
| 1105
|350/350/250/20/3/6
+
| Wolframiter
|02-Beastman
+
| Pyramid
|Ogre
+
| 18 - Human Man
 +
| Fixed
 +
| 1800 / 1800 / 330 / 280 / 5 / 280
 
|-
 
|-
|987
+
| 1106
|60/60/30/2/3/2
+
| Slave General
|20-Other
+
| Pyramid
|Monster Slug
+
| 05 - Undead
 +
| Fixed
 +
| 1200 / 1200 / 350 / 300 / 250 / 250
 
|-
 
|-
|988
+
| 1107
|160/160/160/250/3/180
+
| Slave Valkyrie
|20-Other
+
| Pyramid
|Fullmetal
+
| 05 - Undead
 +
| Fixed
 +
| 1000 / 1000 / 250 / 200 / 250 / 350
 
|-
 
|-
|989
+
| 1108
|90/90/99/180/3/60
+
| Hippogriff
|13-Monstergirl
+
| Pyramid
|Harpy
+
| 01 - Monstrous Beast
 +
| Fixed
 +
| 1300 / 1300 / 350 / 200 / 250 / 200
 
|-
 
|-
|990
+
| 1109
|90/90/75/125/3/20
+
| Gravedigger
|15-Reptile
+
| Pyramid
|Reptilian
+
| 05 - Undead
 +
| Fixed
 +
| 500 / 500 / 450 / 150 / 250 / 250
 
|-
 
|-
|991
+
| 1110
|108/1000/50/12/3/166
+
| Bone Dragon
|08-Amorphous
+
| Pyramid
|Slime
+
| 05 - Undead
 +
| Fixed
 +
| 3000 / 3000 / 400 / 250 / 150 / 350
 
|-
 
|-
|992
+
| 1116
|100/100/100/100/100/100
+
| Ice Grizzly
|05-Undead
+
| Snowy Mountain Range
|Mummy
+
| 00 - Beast
 +
| Fixed
 +
| 600 / 600 / 260 / 310 / 50 / 100
 
|-
 
|-
|993
+
| 1117
|50/50/99/128/80/512
+
| Yeti
|04-Artifact
+
| Snowy Mountain Range
|Living Sword
+
| 02 - Beastman
 +
| Fixed
 +
| 500 / 500 / 270 / 350 / 50 / 150
 
|-
 
|-
|994
+
| 1118
|1/1/192/60/80/80
+
| Frozen Petal
|20-Other
+
| Snowy Mountain Range
|Switch
+
| 03 - Plant
 +
| Fixed
 +
| 200 / 200 / 0 / 100 / 350 / 150
 
|-
 
|-
|995
+
| 1119
|LV*4+1~6/LV*4+6/LV*3+1~6/LV*3+1~6/0/LV*3+1~6
+
| Oval Slime
|11-Human(female)
+
| Snowy Mountain Range
|Villager Girl
+
| 08 - Amorphous
 +
| Fixed
 +
| 400 / 400 / 100 / 300 / 100 / 200
 
|-
 
|-
|996
+
| 1120
|LV*3+1~6/LV*3+6/LV*2+1~6/LV*2+1~6/0/LV*2+1~6
+
| Lucky Rabbit
|11-Human(female)
+
| Snowy Mountain Range
|Townie Girl
+
| 00 - Beast
 +
| Fixed
 +
| 2000 / 2000 / 1 / 100 / 1 / 100
 
|-
 
|-
|997
+
| 1121
|LV*5+8~32/LV*5+32/LV*5+8~32/LV*5+8~32/0/LV*5+8~32
+
| Frost Bird
|11-Human(female)
+
| Snowy Mountain Range
|Adventuress
+
| 19 - Bird
 +
| Fixed
 +
| 300 / 300 / 100 / 200 / 250 / 100
 
|-
 
|-
|998
+
| 1122
|Equal to Player's stats
+
| Snow Spirit
|20-Other
+
| Snowy Mountain Range
|Doppelganger
+
| 01 - Monstrous Beast
 +
| Fixed
 +
| 500 / 500 / 100 / 150 / 350 / 300
 
|-
 
|-
|999
+
| 1123
|4444/65536/66/24/66/96
+
| Chilly Titania
|20-Other
+
| Snowy Mountain Range
|Huge Worm (Ero)
+
| 19 - Bird
 +
| Fixed
 +
| 5000 / 5000 / 250 / 200 / 400 / 600
 
|-
 
|-
|1000
+
| 1124
|4444/65536/192/24/128/96
+
| BOMB Crystal
|20-Other
+
| Snowy Mountain Range
|Oneesama
+
| 20 - Other
 +
| Fixed
 +
| 100 / 100 / 0 / 100 / 600 / 100
 
|-
 
|-
|1001
+
| 1125
|10/10/40/5/0/5
+
| Evil Soul
|20-Other
+
| Unused enemy record; no encounter uses this ID
|Bat
+
| 07 - Demon
 +
| Fixed
 +
| 20000 / 20000 / 0 / 100 / 400 / 100
 
|-
 
|-
|1002
+
| 1130
|80/80/199/255/0/255
+
| Lesser Dragon
|14-Unique
+
| Dragon Duel Cave
|Living Saw
+
| 15 - Reptile
 +
| Fixed
 +
| 500 / 500 / 300 / 250 / 250 / 250
 
|-
 
|-
|1003
+
| 1131
|200/200/200/80/160/250
+
| Green Dragon
|07-Demon
+
| Dragon Duel Cave
|Magus
+
| 16 - Dragon
 +
| Fixed
 +
| 500 / 500 / 330 / 230 / 130 / 230
 
|-
 
|-
|1004
+
| 1132
|800/800/180/50/100/50
+
| Red Dragon
|12-Aquatic
+
| Incomplete unused record; no encounter or standard stat block
|Aspect of Kraken
+
| Not assigned
 +
| No standard stat block
 
|-
 
|-
|1005
+
| 1201
|1000/1000/256/80/70/333
+
| Wandering Soul Beta
|12-Aquatic
+
| Tower of the Sky
|Cave Wyrm
+
| 08 - Amorphous
 +
| Area level
 +
| H(ELV)*0.8 / H(ELV)*0.8 / S(ELV) / S(ELV)*0.8 / S(ELV)*0.5 / S(ELV)*0.8
 
|-
 
|-
|1006
+
| 1202
|100/100/0/80/0/200
+
| Shuten-doji
|04-Artifact
+
| Tower of the Sky
|Cover
+
| 15 - Reptile
 +
| Area level
 +
| H(ELV)*0.8 / H(ELV)*0.8 / S(ELV) / S(ELV)*0.8 / S(ELV)*0.6 / S(ELV)*0.8
 
|-
 
|-
|1007
+
| 1203
|600/600/255/512/0/512
+
| Amoi
|04-Artifact
+
| Tower of the Sky
|Guardian
+
| 14 - Special Armor
 +
| Area level
 +
| H(ELV)*1.2 / H(ELV)*1.2 / S(ELV)*1.4 / S(ELV)*1.2 / S(ELV)*0.9 / S(ELV)*1.3
 
|-
 
|-
|1008
+
| 1204
|LV*12+32~92/LV*12+92/LV*10+32~92/LV*6+32~64/0/LV*1+1~6
+
| Crimson Mage
|18-Human(male)
+
| Tower of the Sky
|Warrior
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV) / H(ELV) / S(ELV)*0.3 / S(ELV)*0.7 / S(ELV)*0.9 / S(ELV)*0.7
 
|-
 
|-
|1009
+
| 1205
|LV*8+32~92/LV*8+92/LV*8+32~92/LV*6+32~64/0/LV*1+1~6
+
| Madman
|11-Human(female)
+
| Tower of the Sky
|Warrior Woman
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*1.1 / S(ELV) / S(ELV)*0.7 / S(ELV)
 
|-
 
|-
|1010
+
| 1206
|LV*4+24~48/LV*4+48/LV*2+2~16/LV*3+32~64/LV*9+32~64/LV*6+32~64
+
| Nightgaunt
|11-Human(female)
+
| Tower of the Sky
|Bunny
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*20 / H(ELV)*20 / S(ELV)*0.9 / S(ELV)*0.9 / S(ELV) / S(ELV)
 
|-
 
|-
|1011
+
| 1207
|LV*4+24~48/LV*4+48/LV*13+13/LV*3+32~64/LV*13+32~64/LV*6+32~64
+
| Minion
|11-Human(female)
+
| Arena<br>Tower of the Sky
|Vorpal Bunny
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*0.1 / H(ELV)*0.1 / S(ELV)*1.1 / S(ELV)*0.9 / S(ELV)*0.9 / S(ELV)*0.9
 
|-
 
|-
|1012
+
| 1208
|LV*4+24~48/LV*4+48/LV*1+2~3/LV*2+8~16/LV*18+32~128/LV*24+32~128
+
| Solemn Moor
|11-Human(female)
+
| Tower of the Sky
|Noble Girl
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*42 / H(ELV)*42 / S(ELV)*0.7 / S(ELV) / S(ELV)*0.9 / S(ELV)
 
|-
 
|-
|1013
+
| 1209
|LV*6+24~48/LV*6+48/LV*1+2~3/LV*2+8~16/LV*16+32~128/LV*20+32~128
+
| Sanctum Guard
|11-Human(female)
+
| Arena
|Witch
+
| 20 - Other
 +
| Fixed
 +
| H(25)*10 / H(25)*10 / S(25)*0.9 / S(25)*0.9 / S(25) / S(25)
 
|-
 
|-
|1014
+
| 1210
|LV*6+16~64/LV*6+64/LV*10+32~92/LV*3+32~64/0/LV*8+32~128
+
| Gleaming Moor
|11-Human(female)
+
| Arena
|Maid
+
| 20 - Other
 +
| Fixed
 +
| H(25)*21 / H(25)*21 / S(25)*0.7 / S(25) / S(25)*0.9 / S(25)
 
|-
 
|-
|1015
+
| 1211
|LV*3+16~64/LV*3+64/LV*6+32~92/LV*3+32~64/0/LV*8+32~128
+
| Umbrella Ghost
|20-Other
+
| Ayakashi Mountain Path
|Sword Dancer
+
| 05 - Undead
 +
| Area level
 +
| H(ELV)*0.9 / H(ELV)*0.9 / S(ELV)*0.9 / S(ELV)*0.9 / S(ELV)*0.8 / S(ELV)*0.9
 
|-
 
|-
|1016
+
| 1212
|LV*3+16~64/LV*3+64/LV*2+8~16/LV*3+32~64/0/LV*16+32~128
+
| Ghost
|20-Other
+
| Ayakashi Mountain Path
|Frak the Clown
+
| 08 - Amorphous
 +
| Area level
 +
| H(ELV)*0.7 / H(ELV)*0.7 / S(ELV)*0.9 / S(ELV)*0.8 / S(ELV)*0.8 / S(ELV)*0.8
 
|-
 
|-
|1017
+
| 1213
|LV*4+16~48/LV*4+48/LV*6+32~64/LV*4+32~64/LV*8+32~64/LV*12+32~128
+
| Kappa
|20-Other
+
| Ayakashi Mountain Path
|Erofu
+
| 12 - Aquatic
 +
| Area level
 +
| H(ELV)*0.9 / H(ELV)*0.9 / S(ELV) / S(ELV) / S(ELV)*0.4 / S(ELV)*0.6
 
|-
 
|-
|1018
+
| 1214
|LV*6+16~48/LV*6+48/LV*7+32~64/LV*10+32~64/LV*8+32~64/LV*16+32~128
+
| Imp
|20-Other
+
| Ayakashi Mountain Path
|Templar
+
| 07 - Demon
 +
| Area level
 +
| H(ELV)*0.9 / H(ELV)*0.9 / S(ELV)*0.3 / S(ELV) / S(ELV)*0.9 / S(ELV)
 
|-
 
|-
|1019
+
| 1215
|LV*12+32~96/LV*12+96/LV*12+32~64/LV*12+32~64/0/LV*2+2~16
+
| Death Gate
|20-Other
+
| Ayakashi Mountain Path
|Mercenary
+
| 05 - Undead
 +
| Area level
 +
| H(ELV)*6 / H(ELV)*6 / S(ELV)*0.9 / S(ELV) / S(ELV)*0.9 / S(ELV)
 
|-
 
|-
|1020
+
| 1216
|LV*8+32~96/LV*8+96/LV*24+32~64/LV*3+32~64/0/LV*8+2~16
+
| Nurikabe
|20-Other
+
| Ayakashi Mountain Path
|Caretaker
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*4.5 / H(ELV)*4.5 / S(ELV)*1.5 / S(ELV)*1.5 / S(ELV) / S(ELV)*0.1
 
|-
 
|-
|1021
+
| 1217
|Lv*5+50/Lv*5+50/Lv*3+20/Lv*2+20/0/0
+
| Wanyudo
|08-Amorphous
+
| Ayakashi Mountain Path
|Sticky Sticky
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*20 / H(ELV)*20 / S(ELV)*1.4 / S(ELV)*0.9 / S(ELV)*1.1 / S(ELV)
 
|-
 
|-
|1022
+
| 1218
|Lv*6+100/Lv*6+100/Lv*5+70/Lv*4+30/0/Lv*2+15
+
| Heavenly Wolf Centipede
|08-Amorphous
+
| Ayakashi Mountain Path
|Sticky Man
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*40 / H(ELV)*40 / S(ELV)*2 / S(ELV) / S(ELV)*1.2 / S(ELV)*0.8
 
|-
 
|-
|1023
+
| 1219
|Lv*9+150/Lv*9+150/Lv*1.5+15/Lv+10/Lv*5+70/Lv*8+60
+
| Panjandrum
|08-Amorphous
+
| Arena
|Sticky Girl
+
| 20 - Other
 +
| Fixed
 +
| H(31)*10 / H(31)*10 / S(31)*1.4 / S(31)*0.9 / S(31)*1.1 / S(31)
 
|-
 
|-
|1024
+
| 1220
|Lv*60+1000/Lv*60+2000/Lv*4.5+55/Lv*3+50/Lv*2.5+55/Lv*9+50
+
| Midgardsormr
|20-Other
+
| Arena
|Sticky Rune
+
| 20 - Other
 +
| Fixed
 +
| H(31)*20 / H(31)*20 / S(31)*2 / S(31) / S(31)*1.2 / S(31)*0.8
 
|-
 
|-
|1025
+
| 1221
|Lv*5+50/Lv*5+50/Lv*2+30/Lv*1.5+20/Lv*3.5+50/Lv*4+100
+
| Clay Doll
|20-Other
+
| Villains' Valley
|Familiar
+
| 03 - Plant
 +
| Area level
 +
| H(ELV)*0.9 / H(ELV)*0.9 / S(ELV) / S(ELV)*0.9 / S(ELV)*0.1 / S(ELV)*0.9
 
|-
 
|-
|1026
+
| 1222
|Lv*8.5+60/Lv*8.5+60/Lv*4+50/Lv*1.5+40/Lv*3+30/Lv*3.5+60
+
| Bandit
|20-Other
+
| Villains' Valley
|Demon (Male)
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV) / H(ELV) / S(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.6 / S(ELV)*0.8
 
|-
 
|-
|1027
+
| 1223
|Lv*7+65/Lv*7+65/Lv*2.5+40/Lv*1.5+10/Lv*5+70/Lv*6+120
+
| Ruffian
|20-Other
+
| Villains' Valley
|Demon (Female)
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.8 / S(ELV)*0.6 / S(ELV)*1.3
 
|-
 
|-
|1028
+
| 1224
|Lv*16+80/Lv*16+80/Lv*5+60/Lv*2+50/Lv*4+60/Lv*7.5+160
+
| Debuta
|20-Other
+
| Villains' Valley
|Demon (Leader)
+
| 02 - Beastman
 +
| Area level
 +
| H(ELV)*1.8 / H(ELV)*1.8 / S(ELV)*1.2 / S(ELV)*0.5 / S(ELV)*1.2 / S(ELV)*0.5
 
|-
 
|-
|1029
+
| 1225
|Lv*50+444/Lv*50+444/Lv*3.5+30/Lv*1.5+30/Lv*4.5+50/Lv*7.5+160
+
| Sorcerer
|20-Other
+
| Villains' Valley
|Archdemon (1st Form)
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*0.1 / S(ELV)*0.6 / S(ELV)*1.1 / S(ELV)*1.1
 
|-
 
|-
|1030
+
| 1226
|Lv*75+666/Lv*75+666/Lv*4+50/Lv*1.5+50/Lv*6+60/Lv*8+200
+
| Archmage
|20-Other
+
| Villains' Valley
|Archdemon (2nd Form)
+
| 07 - Demon
 +
| Area level
 +
| H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*0.1 / S(ELV)*0.6 / S(ELV)*1.2 / S(ELV)*0.6
 
|-
 
|-
|1031
+
| 1227
|500/500/200/200/100/100
+
| Intelligent Saw Beta
|05-Undead
+
| Villains' Valley
|Male Thrall
+
| 14 - Special Armor
 +
| Area level
 +
| H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*2 / S(ELV)*2 / S(ELV)*0 / S(ELV)*0
 
|-
 
|-
|1032
+
| 1228
|400/400/150/150/100/100
+
| Pyrogator
|05-Undead
+
| Villains' Valley
|Female Thrall
+
| 15 - Reptile
 +
| Area level
 +
| H(ELV)*19 / H(ELV)*19 / S(ELV)*1.4 / S(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.5
 
|-
 
|-
|1033
+
| 1229
|1000/1000/300/250/3/250
+
| Rogue Head
|04-Artifact
+
| Villains' Valley
|Cannibox
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*38 / H(ELV)*38 / S(ELV)*2 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.6
 
|-
 
|-
|1034
+
| 1230
|800/800/250/150/100/100
+
| Chill Dragon
|18-Human(male)
+
| Arena
|Old Warrior
+
| 16 - Dragon
 +
| Fixed
 +
| H(36)*6 / H(36)*6 / S(36)*1.4 / S(36)*0.8 / S(36)*1.1 / S(36)*0.5
 
|-
 
|-
|1035
+
| 1231
|400/400/230/100/100/100
+
| Demon Head
|10-Insect
+
| Arena
|E Scorpion
+
| 07 - Demon
 +
| Fixed
 +
| H(36)*19 / H(36)*19 / S(36)*2 / S(36)*0.8 / S(36)*1.2 / S(36)*0.6
 
|-
 
|-
|1036
+
| 1232
|500/500/210/150/100/100
+
| Moon Beast
|10-Insect
+
| The Astral
|P Centipede
+
| 02 - Beastman
 +
| Area level
 +
| H(ELV)*0.7 / H(ELV)*0.7 / S(ELV)*0.8 / S(ELV)*0.8 / S(ELV) / S(ELV)*0.8
 
|-
 
|-
|1037
+
| 1233
|800/800/250/100/100/100
+
| Moon Mage
|15-Reptile
+
| The Astral
|White Snake
+
| 08 - Amorphous
 +
| Area level
 +
| H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*0.1 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.8
 
|-
 
|-
|1038
+
| 1234
|1000/1000/300/300/4/250
+
| Hammer Nice Guy
|04-Artifact
+
| The Astral
|Machine Head
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*1.6 / H(ELV)*1.6 / S(ELV)*0.8 / S(ELV) / S(ELV)*0.2 / S(ELV)*0.6
 
|-
 
|-
|1039
+
| 1235
|300/300/150/150/100/150
+
| Ender People
|05-Undead
+
| The Astral
|Specter
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*1.1 / S(ELV) / S(ELV)*0.7 / S(ELV)
 
|-
 
|-
|1040
+
| 1236
|1200/1200/300/250/5/200
+
| Moon Golem
|18-Human(male)
+
| The Astral
|Iron Giant
+
| 04 - Magical Life-form
 +
| Area level
 +
| H(ELV)*0.6 / H(ELV)*0.6 / S(ELV) / S(ELV)*1.2 / S(ELV)*0.7 / S(ELV)*0
 
|-
 
|-
|1041
+
| 1237
|500/500/100/150/250/200
+
| Ah
|18-Human(male)
+
| The Astral
|Wind Mage
+
| 14 - Special Armor
 +
| Area level
 +
| H(ELV)*1.2 / H(ELV)*1.2 / S(ELV)*1.4 / S(ELV)*1.2 / S(ELV)*0.9 / S(ELV)*1.3
 
|-
 
|-
|1042
+
| 1238
|1000/1000/300/200/100/200
+
| Mu
|15-Reptile
+
| The Astral
|Wyrm
+
| 14 - Special Armor
 +
| Area level
 +
| H(ELV)*1.2 / H(ELV)*1.2 / S(ELV)*0.9 / S(ELV)*1.2 / S(ELV)*1.4 / S(ELV)*1.3
 
|-
 
|-
|1043
+
| 1239
|1000/1000/350/250/150/250
+
| Pixel Devil
|16-Dragon
+
| The Astral
|Guardian Dragon
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*16 / H(ELV)*16 / S(ELV) / S(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.8
 
|-
 
|-
|1044
+
| 1240
|500/500/150/150/250/200
+
| Pixel Imp
|11-Human(female)
+
| The Astral
|Cherie
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*0.1 / H(ELV)*0.1 / S(ELV)*1.1 / S(ELV)*0.1 / S(ELV)*0.1 / S(ELV)*0.1
 
|-
 
|-
|1045
+
| 1241
|600/600/250/200/100/100
+
| Astral Brain
|18-Human(male)
+
| The Astral
|Praetorian Guard
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*32 / H(ELV)*32 / S(ELV)*2 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.6
 
|-
 
|-
|1046
+
| 1242
|1200/1200/250/200/300/300
+
| Mothership
|18-Human(male)
+
| Arena
|Necromancer
+
| 17 - God
 +
| Fixed
 +
| H(36)*8 / H(36)*8 / S(36) / S(36)*0.8 / S(36)*1.1 / S(36)*0.8
 
|-
 
|-
|1047
+
| 1243
|700/700/250/250/250/100
+
| Pixel Imp 2
|05-Undead
+
| Arena
|Warrior Thrall
+
| 20 - Other
 +
| Fixed
 +
| H(36)*0.1 / H(36)*0.1 / S(36)*1.1 / S(36)*0.1 / S(36)*0.1 / S(36)*0.1
 
|-
 
|-
|1048
+
| 1244
|600/600/150/200/100/250
+
| Little Brain
|05-Undead
+
| Arena
|Amazon Thrall
+
| 20 - Other
 +
| Fixed
 +
| H(36)*16 / H(36)*16 / S(36)*2 / S(36)*0.8 / S(36)*1.2 / S(36)*0.6
 
|-
 
|-
|1049
+
| 1245
|1000/1000/100/200/400/200
+
| Demon Soldier - Green
|04-Artifact
+
| Demon Realm Dungeon
|Pillar Doll
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*0.9 / S(ELV)*0.7 / S(ELV)*0.6 / S(ELV)*0.8
 
|-
 
|-
|1050
+
| 1246
|500/500/100/250/100/250
+
| Demon Soldier - Red
|04-Artifact
+
| Demon Realm Dungeon
|Dancing Jewel
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV)*0.9 / H(ELV)*0.9 / S(ELV)*1.1 / S(ELV)*0.6 / S(ELV)*0.6 / S(ELV)*0.6
 
|-
 
|-
|1061
+
| 1247
|5000/5000/400/200/10/200
+
| Demon Soldier - Blue
|02-Beastman
+
| Demon Realm Dungeon
|Sekhmet
+
| 18 - Human Man
 +
| Area level
 +
| H(ELV) / H(ELV) / S(ELV) / S(ELV) / S(ELV)*0.7 / S(ELV)
 
|-
 
|-
|1062
+
| 1248
|3000/3000/150/150/300/200
+
| Dark Gunner
|11-Human(female)
+
| Demon Realm Dungeon
|Queen
+
| 14 - Special Armor
 +
| Area level
 +
| H(ELV)*0.5 / H(ELV)*0.5 / S(ELV)*0.1 / S(ELV)*0.8 / S(ELV)*1.5 / S(ELV)*0.8
 
|-
 
|-
|1063
+
| 1249
|300/300/100/100/100/100
+
| Death Gunner
|11-Human(female)
+
| Demon Realm Dungeon
|Scapegoat
+
| 04 - Magical Life-form
 +
| Area level
 +
| H(ELV)*0.5 / H(ELV)*0.5 / S(ELV)*0.1 / S(ELV)*0.8 / S(ELV)*1.5 / S(ELV)*0.8
 
|-
 
|-
|1064
+
| 1250
|5000/5000/300/300/200/300
+
| Midas
|15-Reptile
+
| Demon Realm Dungeon
|Basilisk
+
| 05 - Undead
 +
| Area level
 +
| H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*0.9 / S(ELV)*0.6 / S(ELV)*1.2 / S(ELV)*0.6
 
|-
 
|-
|1065
+
| 1251
|10000/10000/450/250/10/250
+
| Debuton
|02-Beastman
+
| Demon Realm Dungeon
|Minotaur
+
| 02 - Beastman
 +
| Area level
 +
| H(ELV)*1.5 / H(ELV)*1.5 / S(ELV)*1.2 / S(ELV)*0.2 / S(ELV) / S(ELV)*0.2
 
|-
 
|-
|1066
+
| 1252
|8000/8000/400/300/450/300
+
| King Mummy
|18-Human(male)
+
| Demon Realm Dungeon
|King
+
| 05 - Undead
 +
| Area level
 +
| H(ELV)*9 / H(ELV)*9 / S(ELV)*5 / S(ELV)*2 / S(ELV)*5 / S(ELV)*2
 
|-
 
|-
|1101
+
| 1253
|700/700/200/200/150/350
+
| Gatekeeper
|06-Incorporeal
+
| Demon Realm Dungeon
|Haunt
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*1.5 / H(ELV)*1.5 / S(ELV)*1.2 / S(ELV)*1.2 / S(ELV) / S(ELV)*1.2
 
|-
 
|-
|1102
+
| 1254
|700/700/250/150/300/100
+
| Succubus
|10-Insect
+
| Demon Realm Dungeon
|Flamepede
+
| 07 - Demon
 +
| Area level
 +
| H(ELV)*1.5 / H(ELV)*1.5 / S(ELV)*0.2 / S(ELV) / S(ELV)*1.5 / S(ELV)
 
|-
 
|-
|1103
+
| 1255
|1200/1200/100/200/300/200
+
| Wraith
|01-Mabeast
+
| Demon Realm Dungeon
|Chimaera
+
| 06 - Incorporeal
 +
| Area level
 +
| H(ELV)*1.2 / H(ELV)*1.2 / S(ELV)*1.2 / S(ELV) / S(ELV) / S(ELV)
 
|-
 
|-
|1104
+
| 1256
|500/500/100/100/300/200
+
| Bomber Bot
|11-Human(female)
+
| Demon Realm Dungeon
|Zephyra
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*0.7 / H(ELV)*0.7 / S(ELV)*1.2 / S(ELV)*0.6 / S(ELV)*1.2 / S(ELV)*0.6
 
|-
 
|-
|1105
+
| 1257
|1800/1800/330/280/5/280
+
| Giant Iron Ball
|18-Human(male)
+
| Demon Realm Dungeon
|Fire Giant
+
| 14 - Special Armor
 +
| Fixed
 +
| 2048 / 2048 / 512 / 512 / 0 / 512
 
|-
 
|-
|1106
+
| 1258
|1200/1200/350/300/250/250
+
| Dragon Chariot
|05-Undead
+
| Demon Realm Dungeon
|Thrall Commander
+
| 20 - Other
 +
| Area level
 +
| H(ELV)*20 / H(ELV)*20 / S(ELV)*1.8 / S(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.8
 
|-
 
|-
|1107
+
| 1259
|1000/1000/250/200/250/350
+
| Demon King Satanael
|05-Undead
+
| Demon Realm Dungeon
|Valkyrie Thrall
+
| 17 - God
 +
| Area level
 +
| H(ELV)*8 / H(ELV)*8 / S(ELV)*1.1 / S(ELV) / S(ELV)*1.1 / S(ELV)
 
|-
 
|-
|1108
+
| 1260
|1300/1300/350/200/250/200
+
| Demon King Satanael
|01-Mabeast
+
| Demon Realm Dungeon
|Hippogriff
+
| 17 - God
 +
| Area level
 +
| H(ELV)*40 / H(ELV)*40 / S(ELV)*1.4 / S(ELV) / S(ELV)*1.4 / S(ELV)
 
|-
 
|-
|1109
+
| 1261
|500/500/450/150/250/250
+
| Pheromedos
|05-Undead
+
| Arena
|Gravedigger
+
| 20 - Other
 +
| Fixed
 +
| H(44)*20 / H(44)*20 / S(44)*1.8 / S(44)*0.8 / S(44)*1.1 / S(44)*0.8
 
|-
 
|-
|1110
+
| 1262
|3000/3000/400/250/150/350
+
| Traveling Merchant
|05-Undead
+
| Demon King's Palace (optional Traveling Merchant fight)
|Bone Dragon
+
| 18 - Human Man
 +
| Fixed
 +
| 500 / 500 / 100 / 200 / 100 / 200
 
|-
 
|-
 +
| 1263
 +
| Bounty Hunter
 +
| Demon King's Palace (random Bounty Hunter encounter)
 +
| 18 - Human Man
 +
| Player level
 +
| H(LV)*1.8 / H(LV)*1.8 / S(LV)*1.5 / S(LV) / S(LV) / S(LV)
 
|}
 
|}
 +
 +
[[Category:RyonaRPG]]

Latest revision as of 19:57, 3 September 2026

RyonaRPG edit


Japanese release
Core 0163
2026-04-29



Gameplay:

Technical help:


External links:


This page is a reference for RyonaRPG's on-map enemies. Use it to find an enemy by name or ID, see where it appears, and understand how its strength is calculated. The names and formulas come from the current English-edition game data. In-game, the True Mirror shows the ID of the enemy directly in front of you.

How to read the table

For most players, the useful columns are Name, Where encountered, Type, and Scaling. The final column shows the exact stat formulas for players who want the numbers.

Type is the battle category used for strengths, weaknesses, and special effects. It does not always describe the creature literally. For example, Other is a real catch-all battle category, not missing data.

HP / Max HP / ATK / DEF / MAG / SPR means starting health, maximum health, physical attack, physical defense, magic power, and spirit defense. Starting HP and maximum HP are listed separately because a few enemies can begin below their maximum. RPG Maker drops fractions during these calculations, so the displayed result may round down.

The Scaling column gives the short version:

  • Fixed enemies always start with the listed numbers.
  • Player level enemies use your current character level.
  • Area level enemies use a difficulty number chosen by the current area or scripted battle. This is not always the same as your character level.
  • Random range means part of the stat is rolled when the enemy is created, so two copies can have slightly different stats.
  • Copies player stats means the formula reads one or more of your character's current stats directly.
LV
Your current character's level.
ELV
The area or encounter level. Certain maps set this to their intended difficulty, while some scripted battles copy or adjust your level. A formula using ELV follows that value instead of automatically using your current level.
K
How many enemies you have defeated during the current Forest of No Thoughts run. A few enemies become stronger as this count rises.
Streak
Your current Trial Grounds winning streak. Enemies using this value become stronger as the streak rises.
A~B
A random whole number from A through B, chosen when the stat is set.
H(n) and S(n)
Shared scaling curves used by newer enemies. H calculates health; S calculates ATK, DEF, MAG, or SPR. The value in parentheses is the level used. For example, H(LV)*1.8 means 1.8 times the shared health value for your level. The underlying formulas are approximately n^2 / (n/12) + 20 - n/3 for H and n^2 / 2 / (n/17) + 22 - n/3 for S.

Where encountered names the general area, not an exact floor or room. Arena entries are selected by the Arena's opponent generator. An unused enemy record still has a name and stats in the database, but an exhaustive scan found no event that creates it in the current English edition. An incomplete unused record also lacks the normal stat setup required for a working encounter.

Enemy names are not necessarily unique. The ID is what tells the game which record to use.

See also Enemy Types for type traits, strengths, and weaknesses.

ID Name Where encountered Type Scaling HP / Max HP / ATK / DEF / MAG / SPR
1 Jelly Border Sacred Peak
Capital Abaroso
Lomei Labyrinth
Mountain Cave
RAYON Village
20 - Other Random range 4~16 / 16 / 20 / 25 / 0 / 15
2 Killer Ant Mountain Cave
Nearby Forest
10 - Insect Random range 16~50 / 50 / 35~55 / 20~55 / 0 / 10~25
3 Octopus Abandoned Factory
Execution Tower
Snowy Mountain Range
Undersea Temple
12 - Aquatic Random range 120~220 / 220 / 128~192 / 10 / 0 / 25
4 Faye Ancient Library
Border Sacred Peak
Demon Castle Gaddem
Dwarven Great Tunnel
Forgotten Mansion
Snowy Mountain Range
Suspicious Temple
Undersea Temple
13 - Beastwoman Random range 50 / 50 / 30~90 / 40 / 70~150 / 70~150
5 Mindless Orc Forest of No Thoughts
Torture ending
02 - Beastman Level + forest defeats (((LV*20)+K)/5)+36 / (((LV*20)+K)/5)+36 / (((LV*20)+K)/5)+36 / (((LV*20)+K)/5)+21 / (((LV*20)+K)/5)+21 / (((LV*20)+K)/5)+21
6 Toothfish Execution Tower
Forgotten Mansion
Snowy Mountain Range
Undersea Temple
12 - Aquatic Fixed 50 / 50 / 90 / 40 / 0 / 30
7 Blood Pudding Demon Castle Gaddem
Dwarven Great Tunnel
Forgotten Mansion
Mountain Cave
08 - Amorphous Fixed 50 / 50 / 40 / 60 / 0 / 30
8 Soldier Ant Arena
Mountain Cave
10 - Insect Fixed 50 / 50 / 60 / 90 / 0 / 35
9 Dummy Boy RAYON Village 20 - Other Player level (LV*400)+3000 / (LV*400)+3000 / 0 / 0 / 0 / 0
10 Fiend's Horn Demon Castle Gaddem
Undersea Temple
12 - Aquatic Fixed 80 / 80 / 65 / 150 / 70 / 120
11 Bug Swarm Abandoned Factory
Mage's Hideout
Poison-Insect Labyrinth
09 - Swarm Random range 256~384 / 384 / 80 / 10 / 20 / 20
12 Gnat Swarm Mage's Hideout
Norsley Sea of Decay
Poison-Insect Labyrinth
09 - Swarm Random range 128~256 / 256 / 70 / 1 / 0 / 20
13 Giant Spider Dwarven Great Tunnel
Norsley Sea of Decay
Poison-Insect Labyrinth
10 - Insect Fixed 80 / 80 / 80 / 60 / 60 / 60
14 Dread Spider Dwarven Great Tunnel
Norsley Sea of Decay
Poison-Insect Labyrinth
10 - Insect Fixed 150 / 150 / 100 / 160 / 80 / 160
15 Fire Moth Dwarven Great Tunnel
Poison-Insect Labyrinth
10 - Insect Fixed 80 / 80 / 80 / 40 / 120 / 140
16 Frost Butterfly Poison-Insect Labyrinth 10 - Insect Fixed 80 / 80 / 80 / 40 / 120 / 140
17 Executioner Capital Abaroso
Demon Castle Gaddem
Execution Tower
Forgotten Mansion
Mage's Hideout
Suspicious Temple
05 - Undead Fixed 170 / 170 / 160 / 180 / 0 / 160
18 Gizmo Execution Tower
Forgotten Mansion
08 - Amorphous Fixed 80 / 80 / 0 / 80 / 120 / 80
19 Skeleton Capital Abaroso
Execution Tower
Forgotten Mansion
05 - Undead Fixed 90 / 90 / 110 / 75 / 0 / 70
20 Mandragora Execution Tower
Forgotten Mansion
Mage's Hideout
Norsley Sea of Decay
Suspicious Temple
03 - Plant Fixed 120 / 240 / 100 / 80 / 100 / 100
21 Fire Flower Execution Tower
Mage's Hideout
11 - Human Woman Fixed 180 / 180 / 180 / 120 / 150 / 150
22 Snow Smile Execution Tower
Forgotten Mansion
Suspicious Temple
11 - Human Woman Fixed 180 / 180 / 80 / 170 / 150 / 150
23 Lightning Loli Demon Castle Gaddem
Execution Tower
Mage's Hideout
11 - Human Woman Fixed 100 / 100 / 80 / 120 / 220 / 150
24 Yellow Mold Demon Castle Gaddem
Dwarven Great Tunnel
Execution Tower
08 - Amorphous Fixed 320 / 500 / 180 / 100 / 0 / 120
25 Bee Girl Forgotten Mansion
Village Attacked by Bees
13 - Beastwoman Fixed 400 / 400 / 100 / 100 / 0 / 100
26 Reborn Bee Girl Village Attacked by Bees 13 - Beastwoman Player level (LV*20)+300 / (LV*20)+300 / 140 / 130 / 0 / 130
27 Arachne Mountain Cave 13 - Beastwoman Fixed 500 / 500 / 130 / 110 / 0 / 80
28 Reborn Arachne Mountain Cave 13 - Beastwoman Player level (LV*20)+400 / (LV*20)+400 / 170 / 140 / 0 / 110
101 Wandering Soul Border Sacred Peak
Capital Abaroso
Demon Castle Gaddem
Forgotten Mansion
Mage's Hideout
Mullonde Necromancy Hall
Roland Underground Prison
Suspicious Temple
06 - Incorporeal Player level + random range (LV*5)+32~64 / (LV*5)+64 / 0 / 0 / (LV*9)+32~64 / (LV*8)+32~64
102 Stray Spirit Forgotten Mansion
Man-Eating Soul Cave
06 - Incorporeal Player level + random range (LV*2)+8~16 / (LV*2)+16 / 0 / 0 / (LV*6)+32~64 / (LV*4)+32~64
201 Great Malboro Mage's Hideout
Mountain Cave
03 - Plant Fixed / / 166 / 60 / 0 / 100
202 Insect Queen Arena
Mountain Cave
13 - Beastwoman Player level / / (130+LV)+LV / 160 / 0 / 160
203 Kraken Arena
Pyramid
Torture ending
Undersea Temple
12 - Aquatic Fixed / 65536 / 512 / 128 / 192 / 192
204 Swarm Poison-Insect Labyrinth 20 - Other Fixed 2000 / 65536 / 320 / 8 / 100 / 0
205 Sleipnir Poison-Insect Labyrinth 10 - Insect Fixed 1600 / 1600 / 120 / 0 / 0 / 0
206 Sleipnir Herd Poison-Insect Labyrinth 10 - Insect Fixed 300 / 300 / 120 / 0 / 0 / 0
207 Octomammoth Arena
Undersea Temple
12 - Aquatic Fixed / / 320 / 120 / 120 / 120
208 Tentacle Arena
Undersea Temple
12 - Aquatic Fixed / / 192 / 60 / 80 / 80
209 Malboro Bros. Arena
Forgotten Mansion
03 - Plant Fixed 240 / 240 / 250 / 150 / 0 / 250
210 Stomach Antibody Dwarven Great Tunnel
Poison-Insect Labyrinth
10 - Insect Player level + random range (LV*10)+24~48 / 65536 / (LV*8)+13 / LV*13 / 0 / (LV*13)+32~64
211 Huge Worm Bio Lab Dungeon
Dwarven Great Tunnel
Mage's Hideout
Nearby Forest
Norsley Sea of Decay
Poison-Insect Labyrinth
10 - Insect Fixed 600 / 600 / 250 / 2 / 0 / 2
212 Mage Slayer Norsley Sea of Decay
Poison-Insect Labyrinth
10 - Insect Fixed 80 / 80 / 99 / 160 / 0 / 500
213 Stomach Core Poison-Insect Labyrinth 10 - Insect Player level + random range (LV*20)+48~108 / 65536 / (LV*13)+13 / LV*13 / 0 / (LV*13)+32~64
214 Young Land Ray Mountain Cave 10 - Insect Fixed 80 / 80 / 40 / 2 / 0 / 4
215 Land Ray Dwarven Great Tunnel
Mountain Cave
10 - Insect Fixed 160 / 160 / 80 / 40 / 0 / 90
216 Great Land Ray Abandoned Factory
Dwarven Great Tunnel
Mountain Cave
Suspicious Temple
10 - Insect Fixed 250 / 250 / 100 / 60 / 0 / 120
217 Queen Bee Village Attacked by Bees 13 - Beastwoman Player level (LV*40)+300 / (LV*40)+300 / 160 / 160 / 0 / 160
218 Kobold Dwarven Great Tunnel 02 - Beastman Fixed 80 / 80 / 80 / 80 / 40 / 80
219 Pig Dwarven Great Tunnel 18 - Human Man Fixed 200 / 200 / 100 / 40 / 40 / 40
220 Pig Lord Dwarven Great Tunnel 18 - Human Man Fixed 350 / 350 / 150 / 60 / 40 / 140
221 Pig Shaman Dwarven Great Tunnel 18 - Human Man Fixed 250 / 250 / 110 / 50 / 170 / 140
222 Pig Berserker Dwarven Great Tunnel 18 - Human Man Fixed 200 / 200 / 150 / 40 / 40 / 40
223 Carrion Crawler Dwarven Great Tunnel 10 - Insect Fixed 350 / 350 / 200 / 40 / 40 / 40
224 Spirit Ball Dwarven Great Tunnel 06 - Incorporeal Fixed 50 / 50 / 80 / 50 / 120 / 100
225 Mad Hand Dwarven Great Tunnel 08 - Amorphous Fixed 150 / 150 / 100 / 150 / 100 / 80
226 Armor Eater Dwarven Great Tunnel 04 - Magical Life-form Fixed 300 / 300 / 150 / 150 / 100 / 150
227 Dark Spirit Dwarven Great Tunnel 06 - Incorporeal Fixed 100 / 100 / 160 / 40 / 160 / 280
228 G Scorpion Dwarven Great Tunnel 10 - Insect Fixed 100 / 100 / 160 / 300 / 10 / 100
229 Nergal Dwarven Great Tunnel 01 - Monstrous Beast Fixed H(15)*()/10 / H(15)*()/10 / S(15)*1.4 / S(15)*1.3 / S(15)*1.4 / S(15)*1.3
230 Clay Claw Dwarven Great Tunnel 12 - Aquatic Fixed H(15)*10.2 / H(15)*10.2 / S(15)*1.3 / S(15)*1.3 / S(15)*1.3 / S(15)*1.3
231 Dig Armor Dwarven Great Tunnel 12 - Aquatic Fixed H(15)*6.6 / H(15)*6.6 / S(15)*1.3 / S(15)*1.3 / S(15)*1.8 / S(15)
300 Generic Beast Capital Abaroso 00 - Beast Player level (LV*3)+45 / (LV*3)+45 / (LV*2)+26 / (LV*2)+28 / (LV*1)+2 / (LV*1)+2
310 Generic Monstrous Beast Bio Lab Dungeon 01 - Monstrous Beast Player level (LV*3)+55 / (LV*3)+55 / (LV*2)+32 / (LV*2)+24 / (LV*2)+10 / (LV*1)+2
311 Brain Sucker Writhing Cave 01 - Monstrous Beast Fixed 200 / 200 / 60 / 80 / 20 / 60
320 Generic Beastman Bio Lab Dungeon
Forgotten Mansion
02 - Beastman Player level (LV*3)+50 / (LV*3)+50 / (LV*3)+35 / (LV*2)+20 / (LV*2)+12 / (LV*1)+12
321 Super Goblin Ruined Melbel 02 - Beastman Fixed 1200 / 1200 / 120 / 25 / 80 / 25
330 Generic Plant Bio Lab Dungeon 03 - Plant Player level (LV*4)+45 / (LV*4)+45 / (LV*2)+20 / (LV*3)+35 / (LV*3)+25 / (LV*2)+20
331 Flower Girl Forgotten Mansion 03 - Plant Fixed 350 / 350 / 180 / 100 / 150 / 100
332 Tentacle Ball Writhing Cave 03 - Plant Fixed 400 / 400 / 80 / 160 / 80 / 220
340 Generic Magical Life-form Bio Lab Dungeon
Brainwashed City Melbel
04 - Magical Life-form Player level (LV*3)+40 / (LV*3)+40 / (LV*2)+35 / (LV*2)+45 / (LV*2)+40 / (LV*2)+30
341 Wood Golem Ancient Library 04 - Magical Life-form Fixed 300 / 300 / 400 / 300 / 0 / 150
342 Automaton Mage's Hideout 04 - Magical Life-form Player level (LV*10)+1000 / (LV*10)+1000 / (LV*3)+150 / (LV*3)+150 / 100 / (LV*3)+150
343 Machine Soldier Abandoned Factory
Mage's Hideout
04 - Magical Life-form Fixed 150 / 150 / 200 / 40 / 200 / 60
350 Generic Undead Bio Lab Dungeon
Mullonde Necromancy Hall
Roland Underground Prison
05 - Undead Player level (LV*4)+64 / (LV*4)+64 / (LV*3)+34 / (LV*2)+34 / (LV*2)+8 / (LV*2)+12
360 Generic Incorporeal Brainwashed City Melbel
Roland Underground Prison
06 - Incorporeal Player level (LV*2)+35 / (LV*2)+35 / (LV*1)+1 / (LV*1)+1 / (LV*3)+45 / (LV*3)+30
361 Black Soul Ancient Library 06 - Incorporeal Fixed 300 / 300 / 200 / 200 / 200 / 200
370 Generic Demon Bio Lab Dungeon 07 - Demon Player level (LV*3)+65 / (LV*3)+65 / (LV*3)+40 / (LV*2)+20 / (LV*2)+18 / (LV*2)+14
371 Goddamn Blue Oni Demon Castle Gaddem 07 - Demon Fixed 350 / 350 / 250 / 300 / 200 / 480
372 Summoned Imp Ancient Library 07 - Demon Fixed 200 / 200 / 10 / 200 / 10 / 200
380 Generic Amorphous Bio Lab Dungeon 08 - Amorphous Player level (LV*4)+75 / (LV*4)+75 / (LV*2)+20 / (LV*2)+32 / (LV*1)+2 / (LV*2)+3
381 Upthrust Slime Ancient Library 08 - Amorphous Fixed 350 / 350 / 100 / 50 / 0 / 100
382 Ooze Writhing Cave 08 - Amorphous Fixed 100 / 100 / 80 / 120 / 40 / 60
390 Generic Swarm Internal generic Swarm record; no encounter uses this ID 09 - Swarm Player level (LV*3)+41 / (LV*3)+41 / (LV*2)+20 / (LV*2)+42 / (LV*1)+5 / (LV*1)+4
400 Generic Bug Bio Lab Dungeon
Floating Continent Laputa
Gestahl Magitek Ruins
10 - Insect Player level (LV*3)+32 / (LV*3)+32 / (LV*2)+16 / (LV*1)+38 / (LV*1)+2 / (LV*1)+2
401 Killer Mantis Gestahl Magitek Ruins 10 - Insect Fixed 350 / 350 / 270 / 120 / 20 / 100
410 Generic Human Woman Trap Cave Entrance 11 - Human Woman Player level (LV*3)+30 / (LV*3)+30 / (LV*2)+24 / (LV*2)+8 / (LV*3)+36 / (LV*3)+43
411 Chainsaw Maid Ruined Melbel 11 - Human Woman Fixed 350 / 350 / 180 / 60 / 100 / 80
420 Generic Aquatic Internal generic Aquatic record; no encounter uses this ID 12 - Aquatic Player level (LV*3)+52 / (LV*3)+52 / (LV*3)+33 / (LV*2)+22 / (LV*1)+6 / (LV*1)+9
421 Tonberry Mage's Hideout 12 - Aquatic Player level (LV*50)+3000 / (LV*50)+3000 / (LV*5)+250 / (LV*5)+100 / 0 / (LV*10)+100
430 Generic Beastwoman Internal generic Beastwoman record; no encounter uses this ID 13 - Beastwoman Player level (LV*3)+49 / (LV*3)+49 / (LV*3)+34 / (LV*2)+18 / (LV*3)+38 / (LV*3)+46
440 Generic Special Armor Bio Lab Dungeon
Floating Continent Laputa
14 - Special Armor Player level (LV*3)+66 / (LV*3)+66 / (LV*3)+52 / (LV*3)+66 / (LV*1)+9 / (LV*2)+7
450 Generic Reptile Bio Lab Dungeon 15 - Reptile Player level (LV*3)+60 / (LV*3)+60 / (LV*2)+36 / (LV*2)+44 / (LV*1)+2 / (LV*2)+5
451 Meduconda Traveling Bandits' Forest 15 - Reptile Player level (LV*4)+60 / (LV*4)+60 / ((LV*9)/5)+18 / ((LV*5)/2)+20 / ((LV*6)/5)+12 / ((LV*3)/2)+20
452 Indian Poison Frog Traveling Bandits' Forest 15 - Reptile Player level (LV*3)+35 / (LV*3)+35 / ((LV*6)/5)+12 / ((LV*3)/2)+10 / ((LV*9)/5)+18 / ((LV*5)/2)+10
460 Generic Dragon Bio Lab Dungeon
Border Sacred Peak
16 - Dragon Player level (LV*5)+200 / (LV*5)+200 / (LV*3)+70 / (LV*3)+90 / (LV*3)+80 / (LV*3)+50
470 Generic God Capital Abaroso
Gestahl Magitek Ruins
Roland Underground Prison
17 - God Player level (LV*4)+150 / (LV*4)+150 / (LV*3)+50 / (LV*3)+60 / (LV*4)+120 / (LV*3)+90
480 Generic Human Man Arena
Capital Abaroso
Ruined Melbel
18 - Human Man Player level (LV*3)+34 / (LV*3)+34 / (LV*2)+26 / (LV*2)+12 / (LV*3)+22 / (LV*3)+27
481 Bandit (Pickpocket) Traveling Bandits' Forest 18 - Human Man Player level ((LV*4)/5)+20 / ((LV*4)/5)+20 / LV+20 / 0 / LV+20 / 0
482 Bandit (Brawler) Traveling Bandits' Forest 18 - Human Man Player level (LV*6)+50 / (LV*6)+50 / ((LV*7)/2)+40 / (LV*3)+40 / LV+20 / ((LV*3)/2)+40
483 Bandit (Archer) Traveling Bandits' Forest 18 - Human Man Player level ((LV*7)/2)+40 / ((LV*7)/2)+40 / (LV*3)+20 / (LV*2)+20 / ((LV*7)/2)+40 / (LV*4)+40
484 Bandit (Boss) Traveling Bandits' Forest 18 - Human Man Player level (LV*30)+300 / (LV*30)+300 / (LV*4)+60 / ((LV*7)/2)+60 / ((LV*5)/2)+30 / (LV*5)+80
490 Generic Bird Ancient Library
Bio Lab Dungeon
Border Sacred Peak
Mage's Hideout
19 - Bird Player level (LV*2)+38 / (LV*2)+38 / (LV*2)+42 / (LV*2)+8 / (LV*2)+19 / (LV*3)+14
491 Hanging Bat Ancient Library 19 - Bird Fixed 300 / 300 / 200 / 200 / 0 / 50
492 Flying Saw Abandoned Factory
Mage's Hideout
19 - Bird Fixed 80 / 80 / 60 / 20 / 50 / 20
500 Generic Other Trap Cave Entrance 20 - Other Player level (LV*3)+75 / (LV*3)+75 / (LV*2)+55 / (LV*2)+55 / (LV*3)+55 / (LV*3)+55
501 Vampire Bat Dokuno Falls 20 - Other Player level (LV*3)+50 / (LV*3)+50 / ((LV*5)/2)+25 / ((LV*3)/2)+25 / 0 / 0
502 Water Spider Dokuno Falls 20 - Other Player level (LV*6)+80 / (LV*6)+80 / (LV*4)+50 / (LV*2)+20 / 0 / (LV*2)+10
503 Intruder-Defense Light Tank Lionel Ideology Church 20 - Other Fixed 400 / 400 / 200 / 300 / 300 / 100
504 Intruder-Defense Drone Lionel Ideology Church 20 - Other Fixed 300 / 300 / 300 / 125 / 150 / 125
505 Intruder-Defense Light Tank Lionel Ideology Church 20 - Other Fixed 700 / 700 / 150 / 300 / 150 / 150
506 Intruder-Defense Drone Lionel Ideology Church 20 - Other Fixed 150 / 150 / 150 / 75 / 300 / 75
510 Tentacle Mimic Ancient Library 21 - Treasure Chest Random range 5~10 / 10 / 0 / 999 / 300 / 999
600 Killer Book Ancient Library 04 - Magical Life-form Fixed 1200 / 1200 / 550 / 250 / 400 / 250
601 Mirror Demon Ancient Library 07 - Demon Fixed 4096 / 4096 / 256 / 8192 / 1024 / 8192
602 Chadarnook Mage's Hideout 20 - Other Player level (LV*100)+3500 / (LV*100)+5000 / (LV*3)+150 / (LV*3)+100 / (LV*5)+150 / (LV*20)+350
603 Lakshmi Mage's Hideout 20 - Other Player level (LV*100)+3500 / (LV*100)+5000 / (LV*3)+150 / (LV*20)+350 / (LV*5)+150 / (LV*3)+100
604 Avaloso Sergeant Capital Abaroso 11 - Human Woman Area level H(ELV)*10 / H(ELV)*10 / S(ELV)*1.4 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.8
605 Avaloso Soldier Capital Abaroso 18 - Human Man Area level H(ELV)*0 / H(ELV)*0 / S(ELV) / S(ELV)*0.6 / S(ELV)*0.5 / S(ELV)*0.4
606 Seven Heroes Sergeant Arena 11 - Human Woman Area level H(ELV)*10 / H(ELV)*10 / S(ELV)*1.4 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.8
607 Seven Heroes Soldier Arena 18 - Human Man Area level H(ELV)*0 / H(ELV)*0 / S(ELV) / S(ELV)*0.6 / S(ELV)*0.5 / S(ELV)*0.4
608 Necromancer Gestahl Magitek Ruins
Mullonde Necromancy Hall
20 - Other Fixed 1500 / 1500 / 150 / 200 / 300 / 200
609 Living Corpse Mullonde Necromancy Hall 05 - Undead Fixed 500 / 500 / 180 / 150 / 120 / 100
610 Border Dragon Border Sacred Peak 16 - Dragon Area level H(ELV)*2 / H(ELV)*2 / S(ELV)*1.6 / S(ELV)*0.9 / S(ELV)*0.9 / S(ELV)*0.1
611 Border Devil Border Sacred Peak 07 - Demon Area level H(ELV)*12 / H(ELV)*12 / S(ELV)*2 / S(ELV)*1.5 / S(ELV)*1.2 / S(ELV)*0.8
612 Devil Crystal Border Sacred Peak 04 - Magical Life-form Area level H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*0.7 / S(ELV)*0.3 / S(ELV)*1.8 / S(ELV)*2
613 Fortress City Male Soldier Ruined Melbel 18 - Human Man Fixed 220 / 220 / 208 / 176 / 32 / 144
614 Fortress City Heavy Infantry Ruined Melbel 18 - Human Man Fixed 180 / 180 / 192 / 224 / 16 / 192
615 Fortress City Female Soldier Ruined Melbel 11 - Human Woman Fixed 600 / 600 / 176 / 144 / 48 / 144
616 Monster General Ruined Melbel 20 - Other Fixed 4200 / 4200 / 192 / 48 / 128 / 96
617 Sorcerer Ruined Melbel 18 - Human Man Fixed 100 / 100 / 40 / 40 / 176 / 352
618 Magic (Physical) User Ruined Melbel 18 - Human Man Fixed 240 / 240 / 768 / 80 / 0 / 96
619 Writhing Cave Core Writhing Cave 20 - Other Fixed 2000 / 2000 / 100 / 80 / 150 / 120
620 Blau Merman Ancient Civilization Weir Tower 12 - Aquatic Fixed 380 / 380 / 220 / 230 / 50 / 180
621 Rot Merman Ancient Civilization Weir Tower 12 - Aquatic Fixed 350 / 350 / 260 / 190 / 90 / 140
622 Mermaid Azure Ancient Civilization Weir Tower 12 - Aquatic Fixed 320 / 320 / 50 / 180 / 220 / 230
623 Mermaid Rosso Ancient Civilization Weir Tower 12 - Aquatic Fixed 290 / 290 / 90 / 140 / 260 / 190
624 Rosado Crab Ancient Civilization Weir Tower 12 - Aquatic Fixed 130 / 130 / 360 / 380 / 20 / 230
625 Tentacle Marrone Ancient Civilization Weir Tower 12 - Aquatic Fixed 520 / 520 / 280 / 240 / 70 / 290
626 Avatar of Darkness Lomei Labyrinth 07 - Demon Fixed 400 / 400 / 300 / 200 / 300 / 200
627 Maze Goblin Lomei Labyrinth 02 - Beastman Fixed 460 / 460 / 370 / 240 / 90 / 110
628 Living Shadow Lomei Labyrinth 06 - Incorporeal Fixed 130 / 130 / 180 / 150 / 240 / 120
629 Aqua Slime Lomei Labyrinth 08 - Amorphous Fixed 380 / 380 / 240 / 220 / 280 / 170
630 Flame of Resentment Lomei Labyrinth 08 - Amorphous Fixed 360 / 360 / 190 / 180 / 330 / 250
631 Flesh Golem Lomei Labyrinth 01 - Monstrous Beast Fixed 410 / 410 / 340 / 190 / 260 / 220
632 Dud Mimic Lomei Labyrinth 04 - Magical Life-form Fixed 430 / 430 / 410 / 490 / 180 / 490
633 Reaper Lomei Labyrinth 17 - God Fixed 12000 / 12000 / 1800 / 1100 / 1200 / 1500
634 Afrit Lomei Labyrinth 17 - God Fixed 2400 / 2400 / 370 / 260 / 310 / 190
635 Sibel Lomei Labyrinth 17 - God Fixed 1900 / 1900 / 280 / 210 / 360 / 290
636 Evil Dragon Statue Lomei Labyrinth 20 - Other Fixed 9300 / 9300 / 220 / 370 / 380 / 280
637 Evil Dragon's Servant Lomei Labyrinth 20 - Other Fixed 1400 / 1400 / 360 / 220 / 320 / 260
640 Violeta Ancient Civilization Weir Tower 12 - Aquatic Fixed 3400 / 3400 / 250 / 240 / 320 / 330
641 Black Mage Gestahl Magitek Ruins 18 - Human Man Fixed 1600 / 1600 / 160 / 180 / 360 / 200
942 Large Auto-Healer Incomplete unused record; no encounter or standard stat block Not assigned No standard stat block
943 Caddisfly Norsley Sea of Decay 09 - Swarm Fixed 5000 / 5000 / 512 / 678 / 512 / 333
944 Cholkin Norsley Sea of Decay 19 - Bird Fixed 100 / 100 / 444 / 444 / 444 / 444
945 Demon Centipede Norsley Sea of Decay 01 - Monstrous Beast Fixed 500 / 500 / 200 / 400 / 260 / 260
946 Mutant Land Ray Norsley Sea of Decay 01 - Monstrous Beast Fixed 600 / 600 / 200 / 360 / 180 / 100
947 Malboro Norsley Sea of Decay 03 - Plant Fixed 1000 / 1000 / 256 / 240 / 180 / 260
948 Burger Plant Norsley Sea of Decay 03 - Plant Fixed 5000 / 5000 / 256 / 240 / 180 / 180
949 Flame Flower Norsley Sea of Decay 03 - Plant Fixed 300 / 300 / 100 / 280 / 240 / 180
950 Snow Flower Norsley Sea of Decay 03 - Plant Fixed 300 / 300 / 100 / 400 / 180 / 180
951 Killer Bee Norsley Sea of Decay 19 - Bird Fixed 30 / 30 / 110 / 380 / 20 / 70
952 G Centipede Dwarven Great Tunnel
Norsley Sea of Decay
10 - Insect Fixed 120 / 120 / 160 / 400 / 20 / 120
953 D Centipede Norsley Sea of Decay 10 - Insect Fixed 200 / 200 / 220 / 600 / 20 / 160
954 La-Lilim Forgotten Mansion 07 - Demon Fixed 166 / 166 / 120 / 66 / 166 / 250
955 Mr. Treasure Chest Ancient Trial Grounds
Dokuno Falls
Underground Labyrinth
21 - Treasure Chest Random range 4~6 / 10 / 0 / 999 / 0 / 999
956 Training Shadow Ancient Trial Grounds 05 - Undead Level + Trial Grounds streak ((LV+Streak)*6)+50 / ((LV+Streak)*6)+50 / ((LV+Streak)*7)+40 / ((LV+Streak)*7)+40 / ((LV+Streak)*7)+40 / ((LV+Streak)*7)+40
957 Slime King Mountain Cave 08 - Amorphous Fixed 3000 / 3000 / 512 / 256 / 0 / 256
958 Helm Slime Abandoned Factory
Mountain Cave
08 - Amorphous Fixed 100 / 100 / 60 / 120 / 0 / 60
959 Puppet Master Mountain Cave
Suspicious Temple
02 - Beastman Random range 128~512 / 512 / 88~256 / 88~256 / 88~256 / 2~256
960 Slime (Large) Abandoned Factory
Demon Castle Gaddem
Mage's Hideout
Mountain Cave
Suspicious Temple
08 - Amorphous Fixed 1000 / 1000 / 384 / 200 / 120 / 60
961 Dragonfly Dwarven Great Tunnel
Nearby Forest
Norsley Sea of Decay
RAYON Village
10 - Insect Fixed 1000 / 1000 / 384 / 200 / 120 / 60
962 Flower RAYON Village 03 - Plant Fixed 600 / 600 / 0 / 2 / 80 / 2
963 Volcanon Bio Lab Dungeon
Dwarven Great Tunnel
Floating Continent Laputa
Lionel Ideology Church
RAYON Village
20 - Other Fixed 600 / 600 / 180 / 350 / 300 / 350
964 La-Zombie Border Sacred Peak
Capital Abaroso
Forgotten Mansion
Gestahl Magitek Ruins
Girls' Hall
Mage's Hideout
Mullonde Necromancy Hall
05 - Undead Fixed 600 / 600 / 180 / 2 / 30 / 6
965 Sorceress Gestahl Magitek Ruins
Girls' Hall
Mage's Hideout
RAYON Village
Ruined Melbel
11 - Human Woman Fixed 50 / 50 / 20 / 40 / 120 / 80
966 Swordswoman Border Sacred Peak
Gestahl Magitek Ruins
Girls' Hall
11 - Human Woman Fixed 70 / 70 / 90 / 40 / 40 / 80
967 Demon Nearby Forest
Roland Underground Prison
07 - Demon Player level (LV*50)+200 / (LV*50)+200 / 100 / 40 / 0 / 50
968 Raven Forgotten Mansion
Nearby Forest
19 - Bird Fixed 50 / 50 / 70 / 90 / 0 / 60
969 Goblin Capital Abaroso
Dwarven Great Tunnel
Nearby Forest
Suspicious Temple
02 - Beastman Fixed 50 / 50 / 50 / 50 / 0 / 40
970 Giant Snake Capital Abaroso
Emilis Lake
Nearby Forest
15 - Reptile Fixed 20 / 20 / 60 / 40 / 0 / 10
971 Giant Frog Capital Abaroso
Nearby Forest
15 - Reptile Fixed 30 / 30 / 30 / 10 / 0 / 10
972 Stone Doll Bio Lab Dungeon
Border Sacred Peak
Forgotten Mansion
Mage's Hideout
Mountain Cave
04 - Magical Life-form Fixed 200 / 200 / 200 / 200 / 0 / 200
973 Stray Dog Border Sacred Peak
Capital Abaroso
Nearby Forest
RAYON Village
00 - Beast Fixed 50 / 50 / 50 / 70 / 0 / 30
974 Outlaw Capital Abaroso
Mage's Hideout
RAYON Village
18 - Human Man Fixed 120 / 120 / 99 / 50 / 10 / 10
975 Thief Bio Lab Dungeon
Mage's Hideout
RAYON Village
Villains' Valley
18 - Human Man Fixed 60 / 60 / 50 / 70 / 10 / 30
976 La-Fire Dwarven Great Tunnel
Forgotten Mansion
Suspicious Temple
20 - Other Fixed 100 / 100 / 160 / 40 / 120 / 100
977 Lantern Execution Tower
RAYON Village
20 - Other Fixed 1 / 1 / 100 / 100 / 100 / 0
978 Lantern (Lit) Execution Tower 20 - Other Fixed 1 / 1 / 100 / 100 / 100 / 0
979 Bubbly Slime Border Sacred Peak
RAYON Village
08 - Amorphous Fixed 20 / 20 / 40 / 2 / 20 / 40
980 Buchunpa RAYON Village 01 - Monstrous Beast Fixed 60 / 60 / 20 / 40 / 20 / 40
981 Gummy RAYON Village 20 - Other Fixed 20 / 20 / 20 / 20 / 20 / 20
982 Killing Machine Demon Castle Gaddem
Execution Tower
Mage's Hideout
04 - Magical Life-form Fixed 444 / 444 / 444 / 444 / 4 / 444
983 Lesser Demon Ancient Library
Border Sacred Peak
Demon Castle Gaddem
Execution Tower
Mage's Hideout
Suspicious Temple
07 - Demon Fixed 200 / 200 / 160 / 240 / 160 / 256
984 Carmilla Capital Abaroso
Demon Castle Gaddem
Execution Tower
Forgotten Mansion
Mullonde Necromancy Hall
Roland Underground Prison
Suspicious Temple
05 - Undead Fixed 180 / 180 / 130 / 224 / 200 / 384
985 La-Lamia Bio Lab Dungeon
Capital Abaroso
Forgotten Mansion
Girls' Hall
Mountain Cave
Nearby Forest
Village Attacked by Bees
13 - Beastwoman Fixed 260 / 260 / 108 / 20 / 108 / 108
986 Ogre Ancient Library
Border Sacred Peak
Demon Castle Gaddem
Dwarven Great Tunnel
Mountain Cave
Underground Labyrinth
02 - Beastman Fixed 350 / 350 / 250 / 20 / 3 / 6
987 Ghost Slug Capital Abaroso
Mountain Cave
RAYON Village
Writhing Cave
20 - Other Fixed 60 / 60 / 30 / 2 / 3 / 2
988 Full Metal Crab Dwarven Great Tunnel
Floating Continent Laputa
Forgotten Mansion
Mountain Cave
20 - Other Fixed 160 / 160 / 160 / 250 / 3 / 180
989 La-Harpy Execution Tower
Girls' Hall
13 - Beastwoman Fixed 90 / 90 / 99 / 180 / 3 / 60
990 Lizardman Forgotten Mansion
Mountain Cave
RAYON Village
15 - Reptile Fixed 90 / 90 / 75 / 125 / 3 / 20
991 Slime Abandoned Factory
Capital Abaroso
Demon Castle Gaddem
Forgotten Mansion
Mage's Hideout
Mountain Cave
Suspicious Temple
Writhing Cave
08 - Amorphous Fixed 108 / 1000 / 50 / 12 / 3 / 166
992 Mummy Bio Lab Dungeon
Capital Abaroso
Forgotten Mansion
Undersea Temple
05 - Undead Fixed 100 / 100 / 100 / 100 / 100 / 100
993 Intelligent Sword Demon Castle Gaddem
Forgotten Mansion
Undersea Temple
04 - Magical Life-form Fixed 50 / 50 / 99 / 128 / 80 / 512
994 Switch Mountain Cave
Schwarz Maiden
20 - Other Fixed 1 / 1 / 192 / 60 / 80 / 80
995 Village Gurl Arena (random opponent pool) 11 - Human Woman Player level + random range (LV*4)+1~6 / (LV*4)+6 / (LV*3)+1~6 / (LV*3)+1~6 / 0 / (LV*3)+1~6
996 Town Gurl Arena (random opponent pool) 11 - Human Woman Player level + random range (LV*3)+1~6 / (LV*3)+6 / (LV*2)+1~6 / (LV*2)+1~6 / 0 / (LV*2)+1~6
997 Adventurer Arena (random opponent pool) 11 - Human Woman Player level + random range (LV*5)+8~32 / (LV*5)+32 / (LV*5)+8~32 / (LV*5)+8~32 / 0 / (LV*5)+8~32
998 Doppelganger Bio Lab Dungeon 20 - Other Copies player stats Player MHP / Player MHP / Player ATK / Player DEF / Player MAG / Player SPR
999 Huge Worm (Erotica Duty) Poison-Insect Labyrinth 20 - Other Fixed 4444 / 65536 / 66 / 24 / 66 / 96
1000 Lady Une Capital Abaroso
Forgotten Mansion
20 - Other Fixed 4444 / 65536 / 192 / 24 / 128 / 96
1001 Bat Border Sacred Peak
Demon Castle Gaddem
Dwarven Great Tunnel
Execution Tower
Mage's Hideout
Mountain Cave
20 - Other Fixed 10 / 10 / 40 / 5 / 0 / 5
1002 Intelligent Saw Demon Castle Gaddem
Execution Tower
Lionel Ideology Church
Mage's Hideout
RAYON Village
Undersea Temple
14 - Special Armor Fixed 80 / 80 / 199 / 255 / 0 / 255
1003 Mage Undersea Temple 07 - Demon Fixed 200 / 200 / 200 / 80 / 160 / 250
1004 Aspect of Kraken Forgotten Mansion
Undersea Temple
12 - Aquatic Fixed 800 / 800 / 180 / 50 / 100 / 50
1005 Cave Worm Border Sacred Peak
Mage's Hideout
Mountain Cave
Nearby Forest
RAYON Village
Suspicious Temple
12 - Aquatic Fixed 1000 / 1000 / 256 / 80 / 70 / 333
1006 Lid Gestahl Magitek Ruins
Roland Underground Prison
Underground Labyrinth
Undersea Temple
04 - Magical Life-form Fixed 100 / 100 / 0 / 80 / 0 / 200
1007 Guardian Demon Castle Gaddem
Undersea Temple
04 - Magical Life-form Fixed 600 / 600 / 255 / 512 / 0 / 512
1008 Human Warrior M Gestahl Magitek Ruins
Roland Underground Prison
18 - Human Man Player level + random range (LV*12)+32~92 / (LV*12)+92 / (LV*10)+32~92 / (LV*6)+32~64 / 0 / (LV*1)+1~6
1009 Human Warrior F Mage's Hideout 11 - Human Woman Player level + random range (LV*8)+32~92 / (LV*8)+92 / (LV*8)+32~92 / (LV*6)+32~64 / 0 / (LV*1)+1~6
1010 Bunny Arena (random opponent pool) 11 - Human Woman Player level + random range (LV*4)+24~48 / (LV*4)+48 / (LV*2)+2~16 / (LV*3)+32~64 / (LV*9)+32~64 / (LV*6)+32~64
1011 Vorpal Bunny Arena (random opponent pool) 11 - Human Woman Player level + random range (LV*4)+24~48 / (LV*4)+48 / (LV*13)+13 / (LV*3)+32~64 / (LV*13)+32~64 / (LV*6)+32~64
1012 Noblewoman Arena (random opponent pool) 11 - Human Woman Player level + random range (LV*4)+24~48 / (LV*4)+48 / (LV*1)+2~3 / (LV*2)+8~16 / (LV*18)+32~128 / (LV*24)+32~128
1013 Female Mage Arena (random opponent pool) 11 - Human Woman Player level + random range (LV*6)+24~48 / (LV*6)+48 / (LV*1)+2~3 / (LV*2)+8~16 / (LV*16)+32~128 / (LV*20)+32~128
1014 Maid Arena (random opponent pool) 11 - Human Woman Player level + random range (LV*6)+16~64 / (LV*6)+64 / (LV*10)+32~92 / (LV*3)+32~64 / 0 / (LV*8)+32~128
1015 Sword Dancer Gestahl Magitek Ruins
Roland Underground Prison
20 - Other Player level + random range (LV*3)+16~64 / (LV*3)+64 / (LV*6)+32~92 / (LV*3)+32~64 / 0 / (LV*8)+32~128
1016 Flack Arena (random opponent pool) 20 - Other Player level + random range (LV*3)+16~64 / (LV*3)+64 / (LV*2)+8~16 / (LV*3)+32~64 / 0 / (LV*16)+32~128
1017 Ero-Elf Arena (random opponent pool) 20 - Other Player level + random range (LV*4)+16~48 / (LV*4)+48 / (LV*6)+32~64 / (LV*4)+32~64 / (LV*8)+32~64 / (LV*12)+32~128
1018 Templar Arena (random opponent pool) 20 - Other Player level + random range (LV*6)+16~48 / (LV*6)+48 / (LV*7)+32~64 / (LV*10)+32~64 / (LV*8)+32~64 / (LV*16)+32~128
1019 Mercenary Arena (random opponent pool) 20 - Other Player level + random range (LV*12)+32~96 / (LV*12)+96 / (LV*12)+32~64 / (LV*12)+32~64 / 0 / (LV*2)+2~16
1020 Karateka Arena (random opponent pool) 20 - Other Player level + random range (LV*8)+32~96 / (LV*8)+96 / (LV*24)+32~64 / (LV*3)+32~64 / 0 / (LV*8)+2~16
1021 Never-Never Dokuno Falls 08 - Amorphous Player level (LV*5)+50 / (LV*5)+50 / (LV*3)+20 / (LV*2)+20 / LV+10 / (LV/2)+5
1022 Neverman Dokuno Falls 08 - Amorphous Player level (LV*6)+100 / (LV*6)+100 / (LV*5)+70 / (LV*4)+65 / 0 / ((LV*3)/2)+15
1023 Nevergirl Dokuno Falls 08 - Amorphous Player level (LV*9)+150 / (LV*9)+150 / ((LV*3)/2)+15 / (LV/2)+5 / (LV*5)+70 / (LV*8)+60
1024 Neverloon Dokuno Falls 20 - Other Player level (LV*60)+1000 / (LV*60)+2000 / ((LV*9)/2)+55 / (LV*3)+50 / ((LV*5)/2)+55 / (LV*9)+50
1025 Familiar Traveling Bandits' Forest 20 - Other Player level (LV*5)+50 / (LV*5)+50 / (LV*2)+30 / ((LV*3)/2)+20 / ((LV*7)/2)+50 / (LV*4)+100
1026 Demon (Male) Unused enemy record; no encounter uses this ID 20 - Other Player level ((LV*17)/2)+60 / ((LV*17)/2)+60 / (LV*4)+50 / ((LV*3)/2)+40 / (LV*3)+30 / ((LV*7)/2)+60
1027 Demon (Female) Unused enemy record; no encounter uses this ID 20 - Other Player level (LV*7)+65 / (LV*7)+65 / ((LV*5)/2)+40 / ((LV*3)/2)+10 / (LV*5)+70 / (LV*6)+120
1028 Demon (Officer) Unused enemy record; no encounter uses this ID 20 - Other Player level (LV*16)+80 / (LV*16)+80 / (LV*5)+60 / (LV*2)+50 / (LV*4)+60 / ((LV*15)/2)+160
1029 Archdemon Unused enemy record; no encounter uses this ID 20 - Other Player level (LV*50)+444 / (LV*50)+444 / ((LV*7)/2)+30 / ((LV*3)/2)+30 / ((LV*9)/2)+50 / ((LV*15)/2)+160
1030 Archdemon Unused enemy record; no encounter uses this ID 20 - Other Player level (LV*75)+666 / (LV*75)+666 / (LV*4)+50 / ((LV*3)/2)+50 / (LV*6)+60 / (LV*8)+200
1031 Slave Man Pyramid 05 - Undead Fixed 500 / 500 / 200 / 200 / 100 / 100
1032 Slave Lady Pyramid 05 - Undead Fixed 400 / 400 / 150 / 150 / 100 / 100
1033 Man-Eating Chest Pyramid 04 - Magical Life-form Fixed 1000 / 1000 / 300 / 250 / 3 / 250
1034 Ancient Warrior Pyramid 18 - Human Man Fixed 800 / 800 / 250 / 150 / 100 / 100
1035 Evil Scorpion Pyramid 10 - Insect Fixed 400 / 400 / 230 / 100 / 100 / 100
1036 Pyramid Centipede Pyramid 10 - Insect Fixed 500 / 500 / 210 / 150 / 100 / 100
1037 White Snake Pyramid 15 - Reptile Fixed 800 / 800 / 250 / 100 / 100 / 100
1038 Machine Head Pyramid 04 - Magical Life-form Fixed 1000 / 1000 / 300 / 300 / 4 / 250
1039 Specter Pyramid 05 - Undead Fixed 300 / 300 / 150 / 150 / 100 / 150
1040 Iron Giant Pyramid 18 - Human Man Fixed 1200 / 1200 / 300 / 250 / 5 / 200
1041 Wind Mage Pyramid 18 - Human Man Fixed 500 / 500 / 100 / 150 / 250 / 200
1042 Wyrm Dragon Duel Cave
Pyramid
15 - Reptile Fixed 1000 / 1000 / 300 / 200 / 100 / 200
1043 Guardian Dragon Pyramid 16 - Dragon Fixed 1000 / 1000 / 350 / 250 / 150 / 250
1044 Cherie Pyramid 11 - Human Woman Fixed 500 / 500 / 150 / 150 / 250 / 200
1045 Royal Guard Pyramid 18 - Human Man Fixed 600 / 600 / 250 / 200 / 100 / 100
1046 Haunted Mage Pyramid 18 - Human Man Fixed 1200 / 1200 / 250 / 200 / 300 / 300
1047 Slave Warrior Pyramid 05 - Undead Fixed 700 / 700 / 250 / 250 / 250 / 100
1048 Slave Amazon Pyramid 05 - Undead Fixed 600 / 600 / 150 / 200 / 100 / 250
1049 Pillar Doll Pyramid 04 - Magical Life-form Fixed 1000 / 1000 / 100 / 200 / 400 / 200
1050 Dancing Jewel Pyramid 04 - Magical Life-form Fixed 500 / 500 / 100 / 250 / 100 / 250
1061 Sekhmet Pyramid 02 - Beastman Fixed 5000 / 5000 / 400 / 200 / 10 / 200
1062 Queen Pyramid 11 - Human Woman Fixed 3000 / 3000 / 150 / 150 / 300 / 200
1063 Scapegoat Pyramid 11 - Human Woman Fixed 300 / 300 / 100 / 100 / 100 / 100
1064 Basilisk Pyramid 15 - Reptile Fixed 5000 / 5000 / 300 / 300 / 200 / 300
1065 Minotaur Pyramid 02 - Beastman Fixed 10000 / 10000 / 450 / 250 / 10 / 250
1066 King Pyramid 18 - Human Man Fixed 8000 / 8000 / 400 / 300 / 450 / 300
1101 Haunt Pyramid 06 - Incorporeal Fixed 700 / 700 / 200 / 200 / 150 / 350
1102 Fire Centipede Pyramid 10 - Insect Fixed 700 / 700 / 250 / 150 / 300 / 100
1103 Charmy Ride Pyramid 01 - Monstrous Beast Fixed 1200 / 1200 / 100 / 200 / 300 / 200
1104 Zephyr Zone Pyramid 11 - Human Woman Fixed 500 / 500 / 100 / 100 / 300 / 200
1105 Wolframiter Pyramid 18 - Human Man Fixed 1800 / 1800 / 330 / 280 / 5 / 280
1106 Slave General Pyramid 05 - Undead Fixed 1200 / 1200 / 350 / 300 / 250 / 250
1107 Slave Valkyrie Pyramid 05 - Undead Fixed 1000 / 1000 / 250 / 200 / 250 / 350
1108 Hippogriff Pyramid 01 - Monstrous Beast Fixed 1300 / 1300 / 350 / 200 / 250 / 200
1109 Gravedigger Pyramid 05 - Undead Fixed 500 / 500 / 450 / 150 / 250 / 250
1110 Bone Dragon Pyramid 05 - Undead Fixed 3000 / 3000 / 400 / 250 / 150 / 350
1116 Ice Grizzly Snowy Mountain Range 00 - Beast Fixed 600 / 600 / 260 / 310 / 50 / 100
1117 Yeti Snowy Mountain Range 02 - Beastman Fixed 500 / 500 / 270 / 350 / 50 / 150
1118 Frozen Petal Snowy Mountain Range 03 - Plant Fixed 200 / 200 / 0 / 100 / 350 / 150
1119 Oval Slime Snowy Mountain Range 08 - Amorphous Fixed 400 / 400 / 100 / 300 / 100 / 200
1120 Lucky Rabbit Snowy Mountain Range 00 - Beast Fixed 2000 / 2000 / 1 / 100 / 1 / 100
1121 Frost Bird Snowy Mountain Range 19 - Bird Fixed 300 / 300 / 100 / 200 / 250 / 100
1122 Snow Spirit Snowy Mountain Range 01 - Monstrous Beast Fixed 500 / 500 / 100 / 150 / 350 / 300
1123 Chilly Titania Snowy Mountain Range 19 - Bird Fixed 5000 / 5000 / 250 / 200 / 400 / 600
1124 BOMB Crystal Snowy Mountain Range 20 - Other Fixed 100 / 100 / 0 / 100 / 600 / 100
1125 Evil Soul Unused enemy record; no encounter uses this ID 07 - Demon Fixed 20000 / 20000 / 0 / 100 / 400 / 100
1130 Lesser Dragon Dragon Duel Cave 15 - Reptile Fixed 500 / 500 / 300 / 250 / 250 / 250
1131 Green Dragon Dragon Duel Cave 16 - Dragon Fixed 500 / 500 / 330 / 230 / 130 / 230
1132 Red Dragon Incomplete unused record; no encounter or standard stat block Not assigned No standard stat block
1201 Wandering Soul Beta Tower of the Sky 08 - Amorphous Area level H(ELV)*0.8 / H(ELV)*0.8 / S(ELV) / S(ELV)*0.8 / S(ELV)*0.5 / S(ELV)*0.8
1202 Shuten-doji Tower of the Sky 15 - Reptile Area level H(ELV)*0.8 / H(ELV)*0.8 / S(ELV) / S(ELV)*0.8 / S(ELV)*0.6 / S(ELV)*0.8
1203 Amoi Tower of the Sky 14 - Special Armor Area level H(ELV)*1.2 / H(ELV)*1.2 / S(ELV)*1.4 / S(ELV)*1.2 / S(ELV)*0.9 / S(ELV)*1.3
1204 Crimson Mage Tower of the Sky 18 - Human Man Area level H(ELV) / H(ELV) / S(ELV)*0.3 / S(ELV)*0.7 / S(ELV)*0.9 / S(ELV)*0.7
1205 Madman Tower of the Sky 18 - Human Man Area level H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*1.1 / S(ELV) / S(ELV)*0.7 / S(ELV)
1206 Nightgaunt Tower of the Sky 20 - Other Area level H(ELV)*20 / H(ELV)*20 / S(ELV)*0.9 / S(ELV)*0.9 / S(ELV) / S(ELV)
1207 Minion Arena
Tower of the Sky
20 - Other Area level H(ELV)*0.1 / H(ELV)*0.1 / S(ELV)*1.1 / S(ELV)*0.9 / S(ELV)*0.9 / S(ELV)*0.9
1208 Solemn Moor Tower of the Sky 20 - Other Area level H(ELV)*42 / H(ELV)*42 / S(ELV)*0.7 / S(ELV) / S(ELV)*0.9 / S(ELV)
1209 Sanctum Guard Arena 20 - Other Fixed H(25)*10 / H(25)*10 / S(25)*0.9 / S(25)*0.9 / S(25) / S(25)
1210 Gleaming Moor Arena 20 - Other Fixed H(25)*21 / H(25)*21 / S(25)*0.7 / S(25) / S(25)*0.9 / S(25)
1211 Umbrella Ghost Ayakashi Mountain Path 05 - Undead Area level H(ELV)*0.9 / H(ELV)*0.9 / S(ELV)*0.9 / S(ELV)*0.9 / S(ELV)*0.8 / S(ELV)*0.9
1212 Ghost Ayakashi Mountain Path 08 - Amorphous Area level H(ELV)*0.7 / H(ELV)*0.7 / S(ELV)*0.9 / S(ELV)*0.8 / S(ELV)*0.8 / S(ELV)*0.8
1213 Kappa Ayakashi Mountain Path 12 - Aquatic Area level H(ELV)*0.9 / H(ELV)*0.9 / S(ELV) / S(ELV) / S(ELV)*0.4 / S(ELV)*0.6
1214 Imp Ayakashi Mountain Path 07 - Demon Area level H(ELV)*0.9 / H(ELV)*0.9 / S(ELV)*0.3 / S(ELV) / S(ELV)*0.9 / S(ELV)
1215 Death Gate Ayakashi Mountain Path 05 - Undead Area level H(ELV)*6 / H(ELV)*6 / S(ELV)*0.9 / S(ELV) / S(ELV)*0.9 / S(ELV)
1216 Nurikabe Ayakashi Mountain Path 20 - Other Area level H(ELV)*4.5 / H(ELV)*4.5 / S(ELV)*1.5 / S(ELV)*1.5 / S(ELV) / S(ELV)*0.1
1217 Wanyudo Ayakashi Mountain Path 20 - Other Area level H(ELV)*20 / H(ELV)*20 / S(ELV)*1.4 / S(ELV)*0.9 / S(ELV)*1.1 / S(ELV)
1218 Heavenly Wolf Centipede Ayakashi Mountain Path 20 - Other Area level H(ELV)*40 / H(ELV)*40 / S(ELV)*2 / S(ELV) / S(ELV)*1.2 / S(ELV)*0.8
1219 Panjandrum Arena 20 - Other Fixed H(31)*10 / H(31)*10 / S(31)*1.4 / S(31)*0.9 / S(31)*1.1 / S(31)
1220 Midgardsormr Arena 20 - Other Fixed H(31)*20 / H(31)*20 / S(31)*2 / S(31) / S(31)*1.2 / S(31)*0.8
1221 Clay Doll Villains' Valley 03 - Plant Area level H(ELV)*0.9 / H(ELV)*0.9 / S(ELV) / S(ELV)*0.9 / S(ELV)*0.1 / S(ELV)*0.9
1222 Bandit Villains' Valley 18 - Human Man Area level H(ELV) / H(ELV) / S(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.6 / S(ELV)*0.8
1223 Ruffian Villains' Valley 18 - Human Man Area level H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.8 / S(ELV)*0.6 / S(ELV)*1.3
1224 Debuta Villains' Valley 02 - Beastman Area level H(ELV)*1.8 / H(ELV)*1.8 / S(ELV)*1.2 / S(ELV)*0.5 / S(ELV)*1.2 / S(ELV)*0.5
1225 Sorcerer Villains' Valley 18 - Human Man Area level H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*0.1 / S(ELV)*0.6 / S(ELV)*1.1 / S(ELV)*1.1
1226 Archmage Villains' Valley 07 - Demon Area level H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*0.1 / S(ELV)*0.6 / S(ELV)*1.2 / S(ELV)*0.6
1227 Intelligent Saw Beta Villains' Valley 14 - Special Armor Area level H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*2 / S(ELV)*2 / S(ELV)*0 / S(ELV)*0
1228 Pyrogator Villains' Valley 15 - Reptile Area level H(ELV)*19 / H(ELV)*19 / S(ELV)*1.4 / S(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.5
1229 Rogue Head Villains' Valley 18 - Human Man Area level H(ELV)*38 / H(ELV)*38 / S(ELV)*2 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.6
1230 Chill Dragon Arena 16 - Dragon Fixed H(36)*6 / H(36)*6 / S(36)*1.4 / S(36)*0.8 / S(36)*1.1 / S(36)*0.5
1231 Demon Head Arena 07 - Demon Fixed H(36)*19 / H(36)*19 / S(36)*2 / S(36)*0.8 / S(36)*1.2 / S(36)*0.6
1232 Moon Beast The Astral 02 - Beastman Area level H(ELV)*0.7 / H(ELV)*0.7 / S(ELV)*0.8 / S(ELV)*0.8 / S(ELV) / S(ELV)*0.8
1233 Moon Mage The Astral 08 - Amorphous Area level H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*0.1 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.8
1234 Hammer Nice Guy The Astral 18 - Human Man Area level H(ELV)*1.6 / H(ELV)*1.6 / S(ELV)*0.8 / S(ELV) / S(ELV)*0.2 / S(ELV)*0.6
1235 Ender People The Astral 18 - Human Man Area level H(ELV)*0.6 / H(ELV)*0.6 / S(ELV)*1.1 / S(ELV) / S(ELV)*0.7 / S(ELV)
1236 Moon Golem The Astral 04 - Magical Life-form Area level H(ELV)*0.6 / H(ELV)*0.6 / S(ELV) / S(ELV)*1.2 / S(ELV)*0.7 / S(ELV)*0
1237 Ah The Astral 14 - Special Armor Area level H(ELV)*1.2 / H(ELV)*1.2 / S(ELV)*1.4 / S(ELV)*1.2 / S(ELV)*0.9 / S(ELV)*1.3
1238 Mu The Astral 14 - Special Armor Area level H(ELV)*1.2 / H(ELV)*1.2 / S(ELV)*0.9 / S(ELV)*1.2 / S(ELV)*1.4 / S(ELV)*1.3
1239 Pixel Devil The Astral 20 - Other Area level H(ELV)*16 / H(ELV)*16 / S(ELV) / S(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.8
1240 Pixel Imp The Astral 20 - Other Area level H(ELV)*0.1 / H(ELV)*0.1 / S(ELV)*1.1 / S(ELV)*0.1 / S(ELV)*0.1 / S(ELV)*0.1
1241 Astral Brain The Astral 20 - Other Area level H(ELV)*32 / H(ELV)*32 / S(ELV)*2 / S(ELV)*0.8 / S(ELV)*1.2 / S(ELV)*0.6
1242 Mothership Arena 17 - God Fixed H(36)*8 / H(36)*8 / S(36) / S(36)*0.8 / S(36)*1.1 / S(36)*0.8
1243 Pixel Imp 2 Arena 20 - Other Fixed H(36)*0.1 / H(36)*0.1 / S(36)*1.1 / S(36)*0.1 / S(36)*0.1 / S(36)*0.1
1244 Little Brain Arena 20 - Other Fixed H(36)*16 / H(36)*16 / S(36)*2 / S(36)*0.8 / S(36)*1.2 / S(36)*0.6
1245 Demon Soldier - Green Demon Realm Dungeon 18 - Human Man Area level H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*0.9 / S(ELV)*0.7 / S(ELV)*0.6 / S(ELV)*0.8
1246 Demon Soldier - Red Demon Realm Dungeon 18 - Human Man Area level H(ELV)*0.9 / H(ELV)*0.9 / S(ELV)*1.1 / S(ELV)*0.6 / S(ELV)*0.6 / S(ELV)*0.6
1247 Demon Soldier - Blue Demon Realm Dungeon 18 - Human Man Area level H(ELV) / H(ELV) / S(ELV) / S(ELV) / S(ELV)*0.7 / S(ELV)
1248 Dark Gunner Demon Realm Dungeon 14 - Special Armor Area level H(ELV)*0.5 / H(ELV)*0.5 / S(ELV)*0.1 / S(ELV)*0.8 / S(ELV)*1.5 / S(ELV)*0.8
1249 Death Gunner Demon Realm Dungeon 04 - Magical Life-form Area level H(ELV)*0.5 / H(ELV)*0.5 / S(ELV)*0.1 / S(ELV)*0.8 / S(ELV)*1.5 / S(ELV)*0.8
1250 Midas Demon Realm Dungeon 05 - Undead Area level H(ELV)*0.8 / H(ELV)*0.8 / S(ELV)*0.9 / S(ELV)*0.6 / S(ELV)*1.2 / S(ELV)*0.6
1251 Debuton Demon Realm Dungeon 02 - Beastman Area level H(ELV)*1.5 / H(ELV)*1.5 / S(ELV)*1.2 / S(ELV)*0.2 / S(ELV) / S(ELV)*0.2
1252 King Mummy Demon Realm Dungeon 05 - Undead Area level H(ELV)*9 / H(ELV)*9 / S(ELV)*5 / S(ELV)*2 / S(ELV)*5 / S(ELV)*2
1253 Gatekeeper Demon Realm Dungeon 20 - Other Area level H(ELV)*1.5 / H(ELV)*1.5 / S(ELV)*1.2 / S(ELV)*1.2 / S(ELV) / S(ELV)*1.2
1254 Succubus Demon Realm Dungeon 07 - Demon Area level H(ELV)*1.5 / H(ELV)*1.5 / S(ELV)*0.2 / S(ELV) / S(ELV)*1.5 / S(ELV)
1255 Wraith Demon Realm Dungeon 06 - Incorporeal Area level H(ELV)*1.2 / H(ELV)*1.2 / S(ELV)*1.2 / S(ELV) / S(ELV) / S(ELV)
1256 Bomber Bot Demon Realm Dungeon 20 - Other Area level H(ELV)*0.7 / H(ELV)*0.7 / S(ELV)*1.2 / S(ELV)*0.6 / S(ELV)*1.2 / S(ELV)*0.6
1257 Giant Iron Ball Demon Realm Dungeon 14 - Special Armor Fixed 2048 / 2048 / 512 / 512 / 0 / 512
1258 Dragon Chariot Demon Realm Dungeon 20 - Other Area level H(ELV)*20 / H(ELV)*20 / S(ELV)*1.8 / S(ELV)*0.8 / S(ELV)*1.1 / S(ELV)*0.8
1259 Demon King Satanael Demon Realm Dungeon 17 - God Area level H(ELV)*8 / H(ELV)*8 / S(ELV)*1.1 / S(ELV) / S(ELV)*1.1 / S(ELV)
1260 Demon King Satanael Demon Realm Dungeon 17 - God Area level H(ELV)*40 / H(ELV)*40 / S(ELV)*1.4 / S(ELV) / S(ELV)*1.4 / S(ELV)
1261 Pheromedos Arena 20 - Other Fixed H(44)*20 / H(44)*20 / S(44)*1.8 / S(44)*0.8 / S(44)*1.1 / S(44)*0.8
1262 Traveling Merchant Demon King's Palace (optional Traveling Merchant fight) 18 - Human Man Fixed 500 / 500 / 100 / 200 / 100 / 200
1263 Bounty Hunter Demon King's Palace (random Bounty Hunter encounter) 18 - Human Man Player level H(LV)*1.8 / H(LV)*1.8 / S(LV)*1.5 / S(LV) / S(LV) / S(LV)