Skip to main content

Creating Monsters

This guide covers everything you need to know about creating and configuring monster species in MCE. We cover the MonsterEntry ScriptableObject in depth, including forms, variants, and advanced configuration.

MonsterEntry Overview

Every monster species in MCE is defined by a MonsterEntry ScriptableObject. This is the authoritative data definition for a species -- it contains the base stats, types, abilities, learnable moves, evolution paths, and visual assets.

A MonsterEntry represents the species (e.g., "Flameleon"), while a MonsterInstance represents a specific individual (e.g., "the player's level 25 Flameleon with these specific IVs, EVs, nature, and moves").

Creating a MonsterEntry

The fastest way to create a monster is the wizard: MCE > Tools > Monster Creator.

See the First Monster guide for a step-by-step walkthrough of the wizard.

Manual Creation

  1. Right-click in your Project window: Create > OpenMon > Monster Entry.
  2. Name the asset after your species (e.g., Flameleon).
  3. Select it and configure all fields in the Inspector.

MonsterEntry Fields Explained

Identity

FieldTypeDescription
MonsterNamestringDisplay name of the species
DexNumberuintUnique national dex number
CategorystringSpecies category (e.g., "Fire Lizard")
DexDescriptionstringMonsterDex flavor text
CatchRateintBase catch rate (0-255). Lower = harder to catch
BaseExpYieldintExperience points given when defeated
GrowthRateGrowthRateXP curve: Fast, MediumFast, MediumSlow, Slow, Erratic, Fluctuating

Types

FieldTypeDescription
Type1MonsterTypePrimary type (required)
Type2MonsterTypeSecondary type (set to None for single-type)

Base Stats

The six base stats determine the species' raw capabilities. Individual monsters add IVs (Individual Values, 0-31) and EVs (Effort Values, 0-252) on top of these at runtime.

FieldTypeDescription
BaseHPintBase hit points
BaseAttackintBase physical attack
BaseDefenseintBase physical defense
BaseSpAttackintBase special attack
BaseSpDefenseintBase special defense
BaseSpeedintBase speed (determines turn order)

EV Yields

When this species is defeated, which EVs does the victor gain?

FieldTypeDescription
EVYieldHPintHP EVs awarded (typically 0-3)
EVYieldAttackintAttack EVs awarded
......One field per stat

Abilities

FieldTypeDescription
Ability1AbilityPrimary ability
Ability2AbilitySecondary ability (can be None)
HiddenAbilityAbilityHidden ability (can be None)

Gender and Breeding

FieldTypeDescription
GenderRatiofloatPercentage chance of being male (0 = always female, 1 = always male, -1 = genderless)
EggGroupsEggGroup[]Breeding compatibility groups
EggCyclesintSteps to hatch (multiply by a base step count)

DataByFormEntry Structure

MCE supports multiple forms per species (e.g., Alolan forms, Mega forms, seasonal variants). Each form can override any or all of the base species data.

The DataByFormEntry array on MonsterEntry defines form-specific overrides:

[Serializable]
public class DataByFormEntry
{
public Form Form; // The form identifier
public MonsterType Type1; // Override type 1
public MonsterType Type2; // Override type 2
public int BaseHP; // Override base HP
// ... all stats can be overridden
public Ability Ability1; // Override abilities
public Sprite FrontSprite; // Override sprites
public Sprite BackSprite;
}

Setting Up Forms

  1. Create a Form ScriptableObject: Create > OpenMon > Form.
  2. Name it descriptively (e.g., MegaFlameleon, AlolanDiglett).
  3. Add a DataByFormEntry to your MonsterEntry and assign the form.
  4. Override only the fields that change -- leave others at default to inherit from the base species.
Base Form

Index 0 in the DataByFormEntry array is the base form. All monsters start in this form unless specified otherwise. Additional entries are alternate forms.

Forms and Variants

MCE supports several common form patterns:

PatternImplementation
Mega EvolutionA DataByFormEntry with boosted stats and a special sprite. Triggered in battle via the MegaModule.
Regional VariantsA DataByFormEntry with different types, stats, and sprites. Encounters specify which form appears by region.
Seasonal FormsMultiple DataByFormEntry entries. The active form is determined by the in-game calendar.
Gender DifferencesTwo entries for the base form. Selected automatically based on the MonsterInstance's gender.
Battle-Only FormsForms that only exist during battle (e.g., Gigantamax). The form reverts after battle ends.

Evolution Chains

Each MonsterEntry has an Evolutions array of EvolutionData entries:

[Serializable]
public class EvolutionData
{
public MonsterEntry TargetSpecies; // What it evolves into
public Form TargetForm; // Specific form (optional)
// Evolution type is determined by the concrete class
}

Evolution types are implemented as polymorphic ScriptableObjects. You assign the appropriate evolution type (e.g., EvolveByLevel) and configure its parameters (e.g., required level = 16).

See the Evolution Guide for all 30+ supported types.

Sprites and Materials

Each monster needs visual assets. MCE uses standard Unity Sprite references:

AssetPurposeNotes
Front SpriteBattle (opponent view)Pixel art, point-filtered
Back SpriteBattle (player view)Pixel art, point-filtered
Icon SpriteMenus, PC, partySmall icon, typically 32x32
Overworld SpriteFollower system4-direction spritesheet
Shiny VariantsAll of the aboveRecolored versions

Import Settings for Pixel Art

For all monster sprites, use these import settings:

  1. Texture Type: Sprite (2D and UI)
  2. Sprite Mode: Single (or Multiple if using a spritesheet)
  3. Pixels Per Unit: Match your game's tile size (typically 16 or 32)
  4. Filter Mode: Point (no filter)
  5. Compression: None
  6. Max Size: Keep at actual resolution
Filter Mode

Using any filter mode other than Point will cause pixel art to appear blurry. This is the most common visual issue when setting up monster sprites.

Testing Your Monster

After creating a MonsterEntry:

  1. Database Browser -- Open MCE > Tools > Database Browser and search for your monster by name or dex number.
  2. Asset Validation -- Run MCE > Tools > Asset Validation to check for missing references.
  3. In-Game Dex -- Start the game and check the MonsterDex to see your monster's entry.
  4. Wild Encounter -- Add the monster to a WildEncountersSet and encounter it in the field.

Batch Creation

For creating many monsters at once, you have several options:

  • Essentials Importer (Basic tier+) -- Import species directly from RPG Maker Essentials PBS data.
  • Art Studio (Basic tier+) -- Generate sprites for multiple species in batch mode.
  • Scripted Creation (Source tier) -- Write editor scripts that create MonsterEntry SOs programmatically.

Best Practices

  1. Use the wizard for individual monsters. It validates your input and catches common mistakes.
  2. Keep dex numbers unique. Duplicates will cause lookup failures.
  3. Set reasonable stat ranges. Use the BST guidelines from First Monster.
  4. Always assign sprites. Missing sprites will show as pink/magenta in battle and menus.
  5. Test evolution chains end-to-end. Make sure every species in the chain exists in the database.
  6. Use forms sparingly. Each form adds memory overhead for sprite assets.