> For the complete documentation index, see [llms.txt](https://october-studio.gitbook.io/monster-survivors-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://october-studio.gitbook.io/monster-survivors-documentation/enemies/simple-enemies.md).

# Simple Enemies

## Overview

Simple enemies is the most common type of enemy you find in the game. Their purpose is to create constant waves for player to endure.

All enemies are created using sprite sheets. For most simple enemies you will only need one sprite sheet with walk/idle animation. You can find out more about sprite sheets and how to work with them in the [Unity Learn documentation](https://learn.unity.com/tutorial/introduction-to-sprite-editor-and-sheets#).\
\
There are 17 simple enemies in the game:

<table><thead><tr><th width="78">Id</th><th width="231">Name</th><th width="73" data-type="number">Id</th><th>Name</th></tr></thead><tbody><tr><td>1</td><td><img src="/files/KfIa5v3Qq9EwiopCsPpr" alt="" data-size="line"> Bat</td><td>10</td><td><img src="/files/gl6AFHKkmCMndDsz2XY1" alt="" data-size="line"> Hand</td></tr><tr><td>2</td><td><img src="/files/4FuTIRDsDnytnncyUQJi" alt="" data-size="line"> Bug</td><td>11</td><td><img src="/files/4J4xtlgSruWxiCMER5Nb" alt="" data-size="line"> Shade Vampire</td></tr><tr><td>3</td><td><img src="/files/kBp9QruzCOXbXT7Pno8x" alt="" data-size="line"> Pumpkin</td><td>12</td><td><img src="/files/AXD3ibiLQdZOnvAYGyHL" alt="" data-size="line"> Jellyfish</td></tr><tr><td>4</td><td><img src="/files/BbN9QmUqjRaRGvVIeFj1" alt="" data-size="line"> Plant</td><td>13</td><td><img src="/files/h2jXa8miXTuO0rJ9Xqu2" alt="" data-size="line"> Shade</td></tr><tr><td>5</td><td><img src="/files/s3vRoU1boDpNsSr48eXF" alt="" data-size="line"> Slime</td><td>14</td><td><img src="/files/Cr0JRKdig24LwWebgHdN" alt="" data-size="line"> Shade Bat</td></tr><tr><td>6</td><td><img src="/files/S4ZWZjlm4N8sUyryucuQ" alt="" data-size="line"> Vampire</td><td>15</td><td><img src="/files/U8HSwoIoYTHAgTDcdPHj" alt="" data-size="line"> Stag Beetle</td></tr><tr><td>7</td><td><img src="/files/WfEoAZtxTa8RlgHHcgHG" alt="" data-size="line"> Eye</td><td>16</td><td><img src="/files/Dz0gaLfaWJbsHXHGpUO2" alt="" data-size="line"> Purple Jellyfish</td></tr><tr><td>8</td><td><img src="/files/wPALodiH3ltHz0yqxhEf" alt="" data-size="line"> Wasp</td><td>17</td><td><img src="/files/5Yw0b7hYVWnMcZVEq3SW" alt="" data-size="line"> Shade Jellyfish (Mini boss)</td></tr><tr><td>9</td><td><img src="/files/SF2WnFvsMTsLXHscU61a" alt="" data-size="line"> Fire Slime</td><td>null</td><td></td></tr></tbody></table>

Besides visuals, every enemy has its own stats as follows:

* Speed
* Health
* Damage
* Can it be kicked back or not

Additionally, every enemy has an adjustable list of drops, with a chance of drop for each item in the game.\
Enemies also have several visual/cosmetic parameters, for example reaction on hit, damage color, spawn fade-in etc.

## Offscreen Teleport

Version 1.1.0 introduced new behavior for simple enemies - ability to instantly teleport close to the player if they run too far.

{% hint style="info" %}
Previously there were cases when the player could skip a big amount of enemies simply running away, especially in Burst Waves. With offscreen teleport its possible to always keep the player engaged and level up more consistently.
{% endhint %}

This feature is enabled by default. To disable it globally, go to Game scene > Game Management > Enemies Spawner. In the inspector it should look like this:

<figure><img src="/files/PNQjjdxEWY0MAZRGDZ87" alt="" width="563"><figcaption><p>Enemies Spawner in V1.1.0</p></figcaption></figure>

There, you can adjust the parameters to your liking.

If you want to keep this feature on, but turn it off only for some waves, it can be done via Wave Override in the Wave Track settings. To know more, visit [Tracks And Clips](/monster-survivors-documentation/stages/tracks-and-clips.md#wave-track).

{% hint style="info" %}
Generally, offscreen teleport is useful in most cases. However, there can be instances when you would like to keep enemies in one place. For example, when you want to have a shrinking circle of enemies, etc. This is where we would recommend to disable Offscreen Teleport via Wave Override.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://october-studio.gitbook.io/monster-survivors-documentation/enemies/simple-enemies.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
