Preface

You can create a species_addition JSON to replace or add some new data to an existing species file. Species additions can be a helpful way to add your own regional variants to existing Pokémon. They can also be helpful if you want to rewrite a Pokémon's stats for an addon. This system was created to improve the compatibility between multiple datapacks by allowing datapack developers to target specific species and append or replace depending on the field type without overwriting the base species file.

Species Addition Breakdown

Creating a species addition JSON is very simple. You simply list your target Pokémon, and then list any data that you wish to rewrite or add to the species file of that Pokémon. Forms and evolution data are exceptions to the rewriting. They will always be added instead.

Here is a breakdown of an example species addition. Hover over the underlined text to see more information.

{
 "target": "cobblemon:bulbasaur",
 "primaryType": "fire",
 "secondaryType": "water",
 "shoulderMountable": true,
 "shoulderEffects": [
   {
     "type": "potion_effect",
     "effect": "minecraft:slow_falling",
     "amplifier": 0,
     "ambient": true,
     "showParticles": false,
     "showIcon": false
   }
 ],
 "drops": {
   "amount": 1,
   "entries": [
     {
       "item": "cobblemon:razor_fang",
       "percentage": 2.5
     }
   ]
 },
 "behaviour": {
   "moving": {
     "walk": {
       "canWalk": true
     },
     "fly": {
       "canFly": true
     }
   },
   "resting": {
     "canSleep": true,
     "willSleepOnBed": true,
     "depth": "normal",
     "light": "0-4"
   }
 },
 "baseScale": 2,
 "hitbox": {
   "width": 2,
   "height": 2,
   "fixed": false
 },
 "lightingData": {
   "lightLevel": 10,
   "liquidGlowMode": "LAND"
 }
}

Loading this file would have the following effects on Bulbasaur:

  • It will become a fire and water type instead of grass and poison
  • Can be mounted on the player shoulder
  • When shoulder mounted, will grant the slow falling effect
  • Can start dropping razor fangs at a 2.5% chance
  • Can now fly
  • Increased model scale to 2
  • Increased hitbox size to a 2x2 cube
  • Can emit a light level of 10 when on land only if dynamic light mods are installed


Here is a list of tips about species additions:

  • Species additions will rewrite any data if it is already written in the target species file.
    • Example: If you wanted to add a new move to the moves list, you'd have to rewrite the entire move list. If you only write the one new move, it will be the only move that Pokémon can learn.
  • Species additions will also add your written data if it doesn't exist in the target species file yet.
    • You can create a file to add drops for Pokémon that don't drop anything yet.
  • This system was created to help addon creators keep their datapacks compatible with others! Always use them if you wish to edit something about existing Pokémon you didn't create.
    • It will prevent 2 datapacks fighting over who will get to replace the main species file.
    • It can prevent your addon from causing irreparable damage to player save data in certain scenarios!
  • If 2 additions want to rewrite the same thing, like item drops, then only the first file in the load order will have its changes implemented.
  • Using species additions to add special Pokémon forms is the most addon friendly process!
    • If two creators both wanted to add a regional form to Mudkip, and they both used species additions to add the form data, then people can use both addons together without issues!


Datapack Folder Location

These files belong in a folder you might have never seen before. You can place the JSONs in the species additions folder itself, or even create sub folders for your JSONs. Here is how you should arrange your species addition files and folder:

  • (addon name)
    • data
      • (addon name)
        • species_additions
          • <target_pokemon>.json
          • (optional target pokemon/generation folders)
            • <optional target_pokemon>.json


You can also merge the species additions folder into an existing addon pack.

Species Addition Examples

One of the most common uses of species additions by the community is adding extra evolution data to official Pokémon. It is also used often to change the baseScale and hitbox sizes of a Pokémon for use with unofficial models.

  • In this example, Combee will have its basescale and hitbox sizes changed. A species addition like this is helpful if you want to add your own model to a Pokémon without an official model yet.
{
 "target": "cobblemon:combee",
 "baseScale": 1,
 "hitbox": {
   "width": 1,
   "height": 1.2,
   "fixed": false
 }
}


  • In this example, Eevee will now evolve into Charizard at level 36 and it will maintain all its other eeveelutions!
{
 "target": "cobblemon:eevee",
 "evolutions": [
   {
     "id": "eevee_charizard",
     "variant": "level_up",
     "result": "charizard",
     "consumeHeldItem": false,
     "learnableMoves": [],
     "requirements": [
       {
         "variant": "level",
         "minLevel": 36
       }
     ]
   }
 ]
}


The following is an example of two addons that want to change evolution and form data for an existing Pokémon. In this case, they both want to create a new eeveelution and a new regional form of Eevee that has its own evolution as well. Thanks to species_additions and its special rules, anybody can use both of these hypothetical addons and get the effects of both without issues!

  • A regular Eevee could then evolve into Charizard or Blastoise at level 36.
  • An Alolan Eevee would become an Ice type and evolve into Squirtle with a Water Stone.
  • A Hisuian Eevee would become a Fire type and evolve into Bulbasaur with a Leaf Stone.

Addon #1's species addition:

{
 "target": "cobblemon:eevee",
 "features": ["alolan"],
 "forms": [
   {
     "name": "Alola",
     "primaryType": "ice",
     "abilities": [
       "snowcloak",
       "h:snowwarning"
     ],
     "aspects": ["alolan"],
     "evolutions": [
       {
         "id": "eevee_squirtle",
         "variant": "item_interact",
         "result": "squirtle",
         "consumeHeldItem": false,
         "learnableMoves": [],
         "requirements": [],
         "requiredContext": "cobblemon:water_stone"
       }
     ]
   }
 ],
 "evolutions": [
   {
     "id": "eevee_blastoise",
     "variant": "level_up",
     "result": "blastoise",
     "consumeHeldItem": false,
     "learnableMoves": [],
     "requirements": [
       {
         "variant": "level",
         "minLevel": 36
       }
     ]
   }
 ]
}


Addon #2's species addition:

{
 "target": "cobblemon:eevee",
 "features": ["hisuian"],
 "forms": [
   {
     "name": "Hisui",
     "primaryType": "fire",
     "abilities": [
       "flamebody",
       "h:drought"
     ],
     "aspects": ["hisuian"],
     "evolutions": [
       {
         "id": "eevee_bulbasaur",
         "variant": "item_interact",
         "result": "bulbasaur",
         "consumeHeldItem": false,
         "learnableMoves": [],
         "requirements": [],
         "requiredContext": "cobblemon:leaf_stone"
       }
     ]
   }
 ],
 "evolutions": [
   {
     "id": "eevee_charizard",
     "variant": "level_up",
     "result": "charizard",
     "consumeHeldItem": false,
     "learnableMoves": [],
     "requirements": [
       {
         "variant": "level",
         "minLevel": 36
       }
     ]
   }
 ]
}
The resulting eeveelutions with both addons enabled.