|
|
Line 1: |
Line 1: |
| <seo title="Raid JSONs" metakeywords="Pixelmon Reforged JSONs Datapacks spawns drops moves rules NPCs stats structures shops shopkeepers" metadescription="A guide explaining how to configure Pixelmon's raid file."/> | | <seo title="Raid JSONs" metakeywords="Pixelmon Reforged JSONs Datapacks spawns drops moves rules NPCs stats structures shops shopkeepers" metadescription="A guide explaining how to configure Pixelmon's raid file."/> |
− | Different aspects of the Pixelmon mod can be tweaked through different types of JSON files via a [[Datapack]]. This page covers the raids.json file, which defines what Pokémon can spawn in [[Raid Den|Raid Dens]] in which biome and at what Star level(s). | + | Different aspects of the Pixelmon mod can be tweaked through different types of JSON files via a [[Datapack]]. This page covers the base_allies, spawn files and the raids.json file, which define the NPC allies, what Pokémon can spawn in [[Raid Den|Raid Dens]] in which biome and at what Star level(s) and the loot dropped respectively. |
| | | |
− | ==Understanding the JSON Data== | + | ==Loot Tables== |
− | While the JSON file may have a lot of lines within it, it is done in a way where the Biomes and Species of pokemon are grouped together under what could be called Raid Groups or Biome Categories. The file contains biomes from <code>Vanilla</code>, <code>BiomesOPlenty</code>, <code>byg</code>, and <code>terraforged</code>.
| |
| | | |
− | '''Note:''' Adding additional biomes or using biomes that may or may not be compatible with the pixelmon mod may result in the mod not working as intended.
| + | The <code>raids.json</code> file is where the loot table for raids are defined. As of 9.3.0, raid drops are now defined using [https://minecraft.wiki/w/Loot_table Minecrafts loot table system] and as such the file can be found in the path <code>pixelmon\loot_table\raids.json</code>. Due to this change, a [https://misode.github.io/loot-table/ loot table generator for Vanilla] can be used to generate the raid loot tables technically. |
| + | |
| + | Below is a section of the <code>raids.json</code> file which defines loot available for all type 1-star raids. |
| + | |
| + | <spoiler text="Show"> |
| + | <div onload="prettyPrint()"> |
| + | <pre class="prettyprint"> |
| + | { |
| + | "rolls": { |
| + | "min": 1.0, |
| + | "max": 5.0, |
| + | "type": "minecraft:uniform" |
| + | }, |
| + | "bonus_rolls": 0.0, |
| + | "name": "raid", |
| + | "entries": [ |
| + | { |
| + | "name": "pixelmon:rare_candy", |
| + | "weight": 25, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:ruby", |
| + | "weight": 50, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:sapphire", |
| + | "weight": 50, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "minecraft:amethyst_shard", |
| + | "weight": 50, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:crystal", |
| + | "weight": 50, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:dynamax_candy", |
| + | "weight": 100, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:xs_exp_candy", |
| + | "weight": 100, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:s_exp_candy", |
| + | "weight": 100, |
| + | "type": "minecraft:item" |
| + | } |
| + | ], |
| + | "conditions": [ |
| + | { |
| + | "terms": [ |
| + | { |
| + | "stars": 1, |
| + | "condition": "pixelmon:star_level" |
| + | } |
| + | ], |
| + | "condition": "minecraft:all_of" |
| + | } |
| + | ] |
| + | }, |
| + | </pre> |
| + | </div> |
| + | </spoiler> |
| + | * The <code>rolls</code> part specifies how many rolls will be done of a pool. In each roll of a pool, the pool draws one entry from all its entries. Each roll of a pool is independent. |
| + | * The <code>entries</code> part is where items to be added to the loot pool are defined. These are added with a name/value, a weight and a type. An entry can either be a single item or an entire seperate loot tables items which can be seen later in this page. |
| + | * The <code>conditions</code> part is where the condition for the loot table is defined, such as the star level needed for the system to pick an item from that loot table which is seen further in the <code>terms</code> section. Furthermore, the last <code>condition</code> section is what defines the typing that is checked in order for this loot table to apply. The above example uses <code>minecraft:all_of</code> which means all types of raids (Bug, Fairy, Psychic etc) will use this loot table. |
| + | |
| + | Below is a section of the <code>raids.json</code> which defines the loot table for 2-star level Grass Raids. |
| + | |
| + | <spoiler text="Show"> |
| + | <div onload="prettyPrint()"> |
| + | <pre class="prettyprint"> |
| + | { |
| + | "rolls": { |
| + | "min": 1.0, |
| + | "max": 5.0, |
| + | "type": "minecraft:uniform" |
| + | }, |
| + | "bonus_rolls": 0.0, |
| + | "name": "raid", |
| + | "entries": [ |
| + | { |
| + | "name": "pixelmon:miracle_seed", |
| + | "weight": 5, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "value": "pixelmon:intermediate/grass", |
| + | "weight": 50, |
| + | "type": "minecraft:loot_table" |
| + | }, |
| + | { |
| + | "name": "pixelmon:tamato_berry", |
| + | "weight": 50, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:aguav_berry", |
| + | "weight": 50, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:pomeg_berry", |
| + | "weight": 50, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:iapapa_berry", |
| + | "weight": 50, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:tiny_mushroom", |
| + | "weight": 30, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:big_mushroom", |
| + | "weight": 20, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:balm_mushroom", |
| + | "weight": 10, |
| + | "type": "minecraft:item" |
| + | }, |
| + | { |
| + | "name": "pixelmon:leaf_stone", |
| + | "weight": 25, |
| + | "type": "minecraft:item" |
| + | } |
| + | ], |
| + | "conditions": [ |
| + | { |
| + | "terms": [ |
| + | { |
| + | "stars": 2, |
| + | "condition": "pixelmon:star_level" |
| + | }, |
| + | { |
| + | "terms": [ |
| + | { |
| + | "type": "Grass", |
| + | "condition": "pixelmon:secondary_type" |
| + | }, |
| + | { |
| + | "type": "Grass", |
| + | "condition": "pixelmon:secondary_type" |
| + | } |
| + | ], |
| + | "condition": "minecraft:any_of" |
| + | } |
| + | ], |
| + | "condition": "minecraft:all_of" |
| + | } |
| + | ] |
| + | } |
| + | </pre> |
| + | </div> |
| + | </spoiler> |
| + | * Notice that one of the entries is an entire loot table for Grass types which is used in other parts of Pixelmon. This has been given a <code>value</code> of <code>pixelmon:intermediate/grass</code> in this file as opposed to the earlier example. This means one of the rolls can pull an item from that loot table. This grass loot table can be found in <code>pixelmon\loot_table_intermediate</code> path. |
| + | * This example also uses different conditions as it is specific to 2-star Grass types raids. The <code>terms</code> have been set to include Grass as a <code>pixelmon:secondary_type</code> |
| + | |
| + | ==Raid Spawns== |
| + | |
| + | Raid spawns, as of 9.3.0, are now defined per Pokémon species. These files can be access through the <code>pixelmon\pixelmon\raid\spawn\</code> file path. By default, raid spawns are pulled from the standard Pokémon spawns however these can be edited in any way. |
| + | |
| + | Below is the default spawning JSON for [[Bulbasaur]]. |
| | | |
− | Here you can see a more visual representation of what the code structure looks like without the data.
| |
| <pre>{ | | <pre>{ |
− | "group": { | + | "spawns": [ |
− | "biomes": [], | + | { |
− | "species": []
| + | "spec": "Bulbasaur", |
| + | "loot_table": "pixelmon:raid_den/raids", |
| + | "stars": { |
| + | "type": "minecraft:uniform", |
| + | "min_inclusive": 1, |
| + | "max_inclusive": 2 |
| + | }, |
| + | "biomes": "#pixelmon:raid/spawn/0001_bulbasaur", |
| + | "weight": 1.0 |
| } | | } |
| + | ] |
| }</pre> | | }</pre> |
| | | |
| + | * The <code>spec</code> field is where the Species is defined along with any additional [[Pokemon spec]] which can be added, such as forms and palettes. |
| + | * The <code>loot_table</code> field is what Loot table is to be used for this Pokemon. By default, Bulbasaur will use the standard loot tables in the <code>raids.json</code> file however this can be changed. |
| + | * The <code>stars</code> field determines what star levels Bulbasaur can spawn at, with this example being a minimum of 1 star and maximum of 2 stars. |
| + | * The <code>biomes</code> field determines where the Pokemon can spawn in raids. This can be edited to be any valid biome. Note that adding additional biomes or using biomes that may or may not be compatible with the pixelmon mod may result in the mod not working as intended. |
| + | * The <code>weight</code> field determines the rarity of that Pokemon for spawning in raids. This weight is divided with the sum of all other weights in order to determine the spawn rarity. |
| | | |
− | ===Biome Categories=== | + | ==Raid Allies== |
− | This JSON file is grouped into 43 Biome Categories:
| + | As of [https://pixelmonmod.com/wiki/Version_history#Version_9 Version 9.3.0], the NPC allies that appear alongside the player in [[Max Raid Battles]] can be customised using the datapack file <code>/data/pixelmon/pixelmon/raid/ally/base_allies.json</code>. A section of this file can be found below: |
− | <code>Badlands</code>, <code>Beaches</code>, <code>Birches</code>, <code>Burntforest</code>, <code>coldocean</code>, <code>Coralmangroves</code>, <code>Graggardens</code>, <code>Deadsea</code>, <code>Deserts</code>, <code>End</code>, <code>Evil</code>, <code>Flowery</code>, <code>Forests</code>, <code>Freezingbeaches</code>, <code>Freezingforests</code>, <code>Freezingmountains</code>, <code>Freezingocean</code>, <code>Freezingplains</code>, <code>Freshwater</code>, <code>Frozenwater</code>, <code>hills</code>, <code>jungles</code>, <code>lukewarmocean</code>, <code>magical</code>, <code>mountainousforests</code>, <code>mountainous</code>, <code>mushroom</code>, <code>nether</code>, <code>ocean</code>, <code>otherfreezing</code>, <code>plains</code>, <code>pollutedlake</code>, <code>redwoods</code>, <code>roofed</code>, <code>savannas</code>, <code>shatteredglacier</code>, <code>Stonybeaches</code>, <code>Subzerohypogeal</code>, <code>Swamps</code>, <code>Taigas</code>, <code>Tundra</code>, <code>Ultradeepsea</code>, <code>Volcano</code>, <code>Warmocean</code>
| |
| | | |
− | '''NOTE:''' The Biome Categories are not fixed names and can be changed as needed, they primarily group the actual biomes and species defined below.
| + | <spoiler text="base_allies.json example"> |
| + | { |
| + | "biomes": [], |
| + | "star_range": { |
| + | "min": 0, |
| + | "max": 5 |
| + | }, |
| + | "allies": [ |
| + | { |
| + | "ai_mode": "ADVANCED", |
| + | "spec": "Qwilfish ability:intimidate move1:Brine move2:Waterfall move3:Poison_Jab move4:Pin_Missile", |
| + | "child": false, |
| + | "weight": 1.0, |
| + | "name": "Noah", |
| + | "skin": "pixelmon:textures/steve/football1.png" |
| + | }, |
| + | } |
| + | ...... |
| + | </spoiler> |
| | | |
− | ===Biomes===
| + | * The <code>biomes</code> list denotes which biomes the allies listed below can appear in. By leaving this empty, the NPCs can appear in all biomes by default. |
− | Each biome category contains two arrays: <code>biomes</code> and <code>species</code>.
| + | * The <code>star_range</code> property denotes the minimum and maximum star levels for which the allies can appear. |
− | * <code>biomes</code> - A list of biome ids where Pokémon can spawn in a [[Raid Den|raid den]]. | |
− | <pre>
| |
− | "biomes": [
| |
− | "minecraft:plains",
| |
− | "byg:red_rock_mountains"
| |
− | ]
| |
− | </pre>
| |
| | | |
− | ===Species===
| + | By adding additional files to the same directory as <code>base_allies.json</code> via datapack, different conditions can be set for a particular group of NPC allies to appear. However, it is important for at least one ally to be available in each circumstance of biome and star level. |
− | * <code>species</code> - A list of Pokémon that can spawn in a [[Raid Den|raid den]]. The numbers behind the Pokémon name represent the star level(s) the Pokémon will spawn at. The general format is: <code>"#,#,#,#,#-Pokemon"</code>.
| |
− | <code>#</code> can be 1-5 (star level) and there can be multiple star levels per Pokémon, up to a maximum of 5 if all 5 star levels are included. They must be separated by a comma. The last star level number has a <code>-</code> dash symbol after it followed by the Pokémon's name.
| |
− | | |
− | Below is an example of the different variations of raid levels as mentioned above.
| |
− | <pre>
| |
− | "species": [
| |
− | "4-Pikachu",
| |
− | "1,2-Diglett",
| |
− | "3,4,5-Dugtrio",
| |
− | "1,3,4,5-Ditto",
| |
− | "1,2,3,4,5-Cyndaquil"
| |
− | ]
| |
− | </pre>
| |
| | | |
| + | * The <code>allies</code> list contains details of each ally trainer which can appear, with the following subparts: |
| + | ** The <code>ai_mode</code> property determines the Battle AI Mode used by the trainer to choose their actions in battle. The available options are <code>DEFAULT</code>, <code>RANDOM</code>, <code>AGGRESSIVE</code>, <code>TACTICAL</code> and <code>ADVANCED</code>, and further details for each can be found [https://pixelmonmod.com/wiki/NPC_Trainer#Customization here]. |
| + | ** The <code>spec</code> property provides the details of the pokemon the trainer fights with. All [[Pokémon Spec]] arguments are accepted. |
| + | ** The <code>child</code> property determines if the trainer should use the smaller child-sized model, instead of the default player-sized model. |
| + | ** The <code>weight</code> value sets the probability of this trainer being selected compared to another ally. The actual chance for each ally slot is <code>weight/(sum of all valid trainer weights)</code>. |
| + | ** The <code>name</code> value is the name the NPC ally uses in their battle text. |
| + | ** The <code>skin</code> property refers to the textures used by the NPC. This can be a texture within the pixelmon mod, another installed mod, or a custom resource pack. |
| | | |
| ==Creating a Data pack== | | ==Creating a Data pack== |
Line 56: |
Line 248: |
| === Troubleshooting === | | === Troubleshooting === |
| # JSON Validation (Making sure commas are used properly) | | # JSON Validation (Making sure commas are used properly) |
− |
| |
− | ===Default Raids JSON===
| |
− | <spoiler text="Show/Hide">
| |
− | {
| |
− | "badlands": {
| |
− | "biomes": [
| |
− | "minecraft:badlands",
| |
− | "minecraft:badlands_plateau",
| |
− | "minecraft:wooded_badlands_plateau",
| |
− | "minecraft:eroded_badlands",
| |
− | "minecraft:modified_badlands_plateau",
| |
− | "minecraft:modified_wooded_badlands_plateau",
| |
− | "byg:red_rock_mountains",
| |
− | "byg:red_rock_lowlands",
| |
− | "byg:red_rock_highlands",
| |
− | "byg:wooded_red_rock_mountains",
| |
− | "terraforged:bryce"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Diglett",
| |
− | "3,4-Dugtrio",
| |
− | "1,2-Geodude",
| |
− | "3,4-Graveler",
| |
− | "4,5-Golem",
| |
− | "1-Roggenrola",
| |
− | "2,3-Boldore",
| |
− | "4,5-Gigalith",
| |
− | "2,3-Aron",
| |
− | "3,4-Lairon",
| |
− | "5-Aggron",
| |
− | "3,4-Heatmor",
| |
− | "2,3-Maractus",
| |
− | "1,2-Beldum",
| |
− | "3,4-Metang",
| |
− | "5-Metagross",
| |
− | "2,3-Nosepass",
| |
− | "4,5-Probopass",
| |
− | "1,2,3-Numel",
| |
− | "4,5-Camerupt",
| |
− | "2,3-Rhyhorn",
| |
− | "3,4-Rhydon",
| |
− | "5-Rhyperior",
| |
− | "3,4-Torkoal",
| |
− | "1,2,3-Smeargle",
| |
− | "4,5-Flareon",
| |
− | "3,4-Onix",
| |
− | "4,5-Steelix",
| |
− | "3,4-Vullaby",
| |
− | "4,5-Mandibuzz",
| |
− | "1,2-Cubone",
| |
− | "3,4-Marowak",
| |
− | "3,4-Marowak-alolan",
| |
− | "1,2,3-Skorupi",
| |
− | "4,5-Drapion",
| |
− | "3,4-Durant",
| |
− | "2,3-Cacnea",
| |
− | "4,5-Cacturne",
| |
− | "1,2-Houndour",
| |
− | "3,4,5-Houndoom",
| |
− | "1,2-Larvitar",
| |
− | "3,4-Pupitar",
| |
− | "5-Tyranitar",
| |
− | "1,2-Sandshrew",
| |
− | "3,4-Sandslash",
| |
− | "1,2,3-Scraggy",
| |
− | "4,5-Scrafty",
| |
− | "2,3-Slugma",
| |
− | "4,5-Magcargo",
| |
− | "1,2-Bagon",
| |
− | "3,4-Shelgon",
| |
− | "5-Salamence",
| |
− | "2,3-Salandit",
| |
− | "4,5-Salazzle",
| |
− | "1,2-Rolycoly",
| |
− | "2,3-Carkol",
| |
− | "4,5-Coalossal",
| |
− | "5-Guzzlord",
| |
− | "2,3-Sizzlipede",
| |
− | "4,5-Centiskorch",
| |
− | "2,3-Silicobra",
| |
− | "4,5-Sandaconda",
| |
− | "1,2-Charmander",
| |
− | "2,3-Charmeleon",
| |
− | "4,5-Charizard",
| |
− | "1,2-Diglett-alolan",
| |
− | "3,4-Dugtrio-alolan",
| |
− | "1,2,3-Yamask-galarian",
| |
− | "4,5-Runerigus",
| |
− | "2,3-Bronzor",
| |
− | "4,5-Bronzong",
| |
− | "3,4-Sigilyph",
| |
− | "2,3-Duskull",
| |
− | "3,4-Dusclops",
| |
− | "5-Dusknoir",
| |
− | "3,4-Lunatone",
| |
− | "3,4-Solrock",
| |
− | "1,2-Natu",
| |
− | "3,4,5-Xatu",
| |
− | "5-Moltres",
| |
− | "5-Moltres-galarian",
| |
− | "5-Hooh",
| |
− | "5-Regirock",
| |
− | "5-Heatran",
| |
− | "5-Landorus",
| |
− | "5-Landorus-therian",
| |
− | "2,3-Tyrunt",
| |
− | "4,5-Tyrantrum",
| |
− | "3,4-Skarmory",
| |
− | "1,2-Spearow",
| |
− | "3,4-Fearow",
| |
− | "3,4-Falinks",
| |
− | "1,2-Cyndaquil",
| |
− | "2,3-Quilava",
| |
− | "4,5-Typhlosion",
| |
− | "4,5-Typhlosion-hisuian"
| |
− | ]
| |
− | },
| |
− | "beaches": {
| |
− | "biomes": [
| |
− | "minecraft:beach",
| |
− | "minecraft:mushroom_field_shore",
| |
− | "biomesoplenty:tropic_beach",
| |
− | "byg:rainbow_beach",
| |
− | "byg:white_beach",
| |
− | "terraforged:warm_beach"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Krabby",
| |
− | "3,4,5-Kingler",
| |
− | "2,3-Pyukumuku",
| |
− | "1,2-Wimpod",
| |
− | "3,4,5-Golisopod",
| |
− | "1,2-Wingull",
| |
− | "3,4-Pelipper",
| |
− | "2,3-Finneon",
| |
− | "3,4-Lumineon",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "2,3-Corsola",
| |
− | "2,3-Corsola-galarian",
| |
− | "4,5-Cursola",
| |
− | "2,3-Binacle",
| |
− | "4,5-Barbaracle",
| |
− | "2,3-Clauncher",
| |
− | "4,5-Clawitzer",
| |
− | "1-Azurill",
| |
− | "1,2-Marill",
| |
− | "3,4-Azumarill",
| |
− | "2,3-Slowpoke",
| |
− | "4,5-Slowbro",
| |
− | "4,5-Slowking",
| |
− | "2,3-Slowpoke-galarian",
| |
− | "4,5-Slowbro-galarian",
| |
− | "4,5-Slowking-galarian",
| |
− | "1,2-Shellder",
| |
− | "4,5-Cloyster",
| |
− | "1,2-Staryu",
| |
− | "3,4-Starmie",
| |
− | "1,2,3-Shellos",
| |
− | "4,5-Gastrodon",
| |
− | "2,3-Sandygast",
| |
− | "4,5-Palossand",
| |
− | "2,3-Cramorant",
| |
− | "3,4-Pincurchin",
| |
− | "2,3-Wishiwashi",
| |
− | "5-Suicune",
| |
− | "2,3-Tynamo",
| |
− | "3,4-Eelektrik",
| |
− | "5-Eelektross",
| |
− | "1,2-Luvdisc",
| |
− | "1,2-Remoraid",
| |
− | "3,4-Octillery",
| |
− | "1,2,3-Corphish",
| |
− | "4,5-Crawdaunt",
| |
− | "3,4-Bruxish",
| |
− | "1,2-Squirtle",
| |
− | "2,3-Wartortle",
| |
− | "4,5-Blastoise",
| |
− | "1,2,3-Wailmer",
| |
− | "4,5-Wailord",
| |
− | "2,3-Anorith",
| |
− | "4,5-Armaldo",
| |
− | "2,3-Tirtouga",
| |
− | "4,5-Carracosta",
| |
− | "3,4-Vaporeon",
| |
− | "1,2,3-Clobbopus",
| |
− | "4,5-Grapploct",
| |
− | "1,2-Popplio",
| |
− | "2,3-Brionne",
| |
− | "4,5-Primarina",
| |
− | "1,2,3-Mareanie",
| |
− | "4,5-Toxapex",
| |
− | "1,2,3-Crabrawler",
| |
− | "3,4-Crabominable",
| |
− | "3,4,5-Ditto"
| |
− | ]
| |
− | },
| |
− | "birches": {
| |
− | "biomes": [
| |
− | "minecraft:birch_forest",
| |
− | "minecraft:birch_forest_hills",
| |
− | "minecraft:tall_birch_forest",
| |
− | "minecraft:tall_birch_hills",
| |
− | "byg:aspen_forest",
| |
− | "byg:aspen_forest_hills",
| |
− | "byg:aspen_clearing",
| |
− | "byg:seasonal_birch_forest",
| |
− | "byg:seasonal_birch_forest_hills"
| |
− | ],
| |
− | "species": [
| |
− | "1-Caterpie",
| |
− | "2,3-Metapod",
| |
− | "3,4,5-Butterfree",
| |
− | "1-Scatterbug",
| |
− | "2,3-Spewpa",
| |
− | "3,4-Vivillon-garden",
| |
− | "1-Wurmple",
| |
− | "2,3-Silcoon",
| |
− | "4,5-Beautifly",
| |
− | "2,3-Cascoon",
| |
− | "4,5-Dustox",
| |
− | "2,3-Deerling-spring",
| |
− | "4,5-Sawsbuck-spring",
| |
− | "1-Kricketot",
| |
− | "2,3-Kricketune",
| |
− | "1,2,3-Morelull",
| |
− | "4,5-Shiinotic",
| |
− | "2,3-Plusle",
| |
− | "2,3-Minun",
| |
− | "1,2-Ralts",
| |
− | "2,3-Kirlia",
| |
− | "4,5-Gardevoir",
| |
− | "4,5-Gallade",
| |
− | "2,3-Spritzee",
| |
− | "4,5-Aromatisse",
| |
− | "2,3-Swirlix",
| |
− | "4,5-Slurpuff",
| |
− | "4,5-Leafeon",
| |
− | "1,2-Bulbasaur",
| |
− | "2,3-Ivysaur",
| |
− | "4,5-Venusaur",
| |
− | "1,2-Ledyba",
| |
− | "3,4-Ledian",
| |
− | "1,2-Skwovet",
| |
− | "3,4-Greedent",
| |
− | "1,2-Bounsweet",
| |
− | "2,3-Steenee",
| |
− | "4,5-Tsareena",
| |
− | "1,2-Cherubi",
| |
− | "3,4-Cherrim",
| |
− | "3,4-Furfrou",
| |
− | "1,2-Milcery",
| |
− | "3,4,5-Alcremie",
| |
− | "3,4-Audino",
| |
− | "1,2,3-Eevee",
| |
− | "1,2-Pichu",
| |
− | "2,3,4-Pikachu",
| |
− | "4,5-Raichu",
| |
− | "1,2-Chespin",
| |
− | "2,3-Quilladin",
| |
− | "4,5-Chesnaught",
| |
− | "1,2-Fletchling",
| |
− | "3,4-Fletchinder",
| |
− | "4,5-Talonflame",
| |
− | "2,3-Oricorio-pompom",
| |
− | "1,2-Taillow",
| |
− | "3,4-Swellow",
| |
− | "2,3-Swablu",
| |
− | "4,5-Altaria",
| |
− | "1-Weedle",
| |
− | "2,3-Kakuna",
| |
− | "4,5-Beedrill",
| |
− | "1,2-Espurr",
| |
− | "3,4-Meowstic",
| |
− | "2,3-Foongus",
| |
− | "4,5-Amoonguss",
| |
− | "1,2-Poochyena",
| |
− | "3,4-Mightyena",
| |
− | "1,2-Spinarak",
| |
− | "3,4-Ariados",
| |
− | "1,2-Skitty",
| |
− | "3,4-Delcatty",
| |
− | "3,4-Indeedee",
| |
− | "1-MimeJr",
| |
− | "2,3,4-MrMime",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "1,2-Hoothoot",
| |
− | "3,4-Noctowl",
| |
− | "1,2,3-Murkrow",
| |
− | "4,5-Honchkrow",
| |
− | "1,2-Minccino",
| |
− | "3,4-Cinccino",
| |
− | "2,3-Tyrunt",
| |
− | "4,5-Tyrantrum",
| |
− | "2,3-Archen",
| |
− | "4,5-Archeops",
| |
− | "3,4,5-Ditto",
| |
− | "1,2,3-Teddiursa",
| |
− | "4,5-Ursaring",
| |
− | "5-Xurkitree",
| |
− | "5-Mesprit",
| |
− | "5-Cresselia",
| |
− | "5-Zacian",
| |
− | "5-Zamazenta"
| |
− | ]
| |
− | },
| |
− | "burntforest": {
| |
− | "biomes": [
| |
− | "biomesoplenty:burnt_forest"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Growlithe",
| |
− | "3,4-Arcanine",
| |
− | "2,3-Sizzlipede",
| |
− | "4,5-Centiskorch",
| |
− | "1-Rookidee",
| |
− | "2,3-Corvisquire",
| |
− | "4,5-Corviknight",
| |
− | "1,2-Cyndaquil",
| |
− | "2,3-Quilava",
| |
− | "4,5-Typhlosion",
| |
− | "4,5-Typhlosion-hisuian",
| |
− | "2,3-Stunky",
| |
− | "4,5-Skuntank",
| |
− | "2,3-Duskull",
| |
− | "3,4-Dusclops",
| |
− | "5-Dusknoir",
| |
− | "1,2-Spearow",
| |
− | "3,4-Fearow",
| |
− | "1,2,3-Koffing",
| |
− | "4,5-Weezing",
| |
− | "1,2-Nickit",
| |
− | "3,4-Thievul",
| |
− | "1,2,3-Vulpix",
| |
− | "4,5-Ninetales",
| |
− | "2,3-Phantump",
| |
− | "4,5-Trevenant"
| |
− | ]
| |
− | },
| |
− | "coldocean": {
| |
− | "biomes": [
| |
− | "minecraft:cold_ocean",
| |
− | "minecraft:deep_cold_ocean"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Chinchou",
| |
− | "3,4-Lanturn",
| |
− | "1,2,3-Clobbopus",
| |
− | "4,5-Grapploct",
| |
− | "2,3-Corsola-galarian",
| |
− | "4,5-Cursola",
| |
− | "3,4-Skrelp",
| |
− | "4,5-Dragalge",
| |
− | "2,3-Tynamo",
| |
− | "3,4-Eelektrik",
| |
− | "5-Eelektross",
| |
− | "2,3-Clamperl",
| |
− | "4,5-Huntail",
| |
− | "4,5-Gorebyss",
| |
− | "2,3-Finneon",
| |
− | "3,4-Lumineon",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "1,2-Mantyke",
| |
− | "2,3,4-Mantine",
| |
− | "1,2,3-Mareanie",
| |
− | "4,5-Toxapex",
| |
− | "1,2-Feebas",
| |
− | "3,4,5-Milotic",
| |
− | "1,2-Remoraid",
| |
− | "3,4-Octillery",
| |
− | "3,4-Pincurchin",
| |
− | "2,3-Pyukumuku",
| |
− | "1,2,3-Qwilfish",
| |
− | "3-Relicanth",
| |
− | "1,2-Carvanha",
| |
− | "3,4,5-Sharpedo",
| |
− | "1,2-Wimpod",
| |
− | "3,4,5-Golisopod",
| |
− | "1,2,3-Wailmer",
| |
− | "4,5-Wailord",
| |
− | "5-Lugia",
| |
− | "5-Kyogre",
| |
− | "2,3-Clauncher",
| |
− | "4,5-Clawitzer",
| |
− | "1,2-Wingull",
| |
− | "3,4-Pelipper",
| |
− | "2,3-Wishiwashi",
| |
− | "1,2-Shellder",
| |
− | "4,5-Cloyster",
| |
− | "3,4,5-Lapras",
| |
− | "1,2-Staryu",
| |
− | "3,4-Starmie",
| |
− | "1,2-Tentacool",
| |
− | "3,4-Tentacruel",
| |
− | "2,3,4-Dhelmise",
| |
− | "2,3,4-Frillish",
| |
− | "4,5-Jellicent",
| |
− | "4,5-Arctovish",
| |
− | "3,4,5-Ditto"
| |
− | ]
| |
− | },
| |
− | "coralmangroves": {
| |
− | "biomes": [
| |
− | "byg:coral_mangroves"
| |
− | ],
| |
− | "species": [
| |
− | "3,4-Bruxish",
| |
− | "2,3-Corsola",
| |
− | "2,3-Finneon",
| |
− | "3,4-Lumineon",
| |
− | "1,2-Horsea",
| |
− | "3,4-Seadra",
| |
− | "5-Kingdra"
| |
− | ]
| |
− | },
| |
− | "craggardens": {
| |
− | "biomes": [
| |
− | "byg:crag_gardens"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Aipom",
| |
− | "4,5-Ambipom",
| |
− | "1,2-Dewpider",
| |
− | "2,3,4-Araquanid",
| |
− | "1,2-Spinarak",
| |
− | "3,4-Ariados",
| |
− | "2,3-Basculin",
| |
− | "1-Weedle",
| |
− | "2,3-Kakuna",
| |
− | "4,5-Beedrill",
| |
− | "1,2-Bulbasaur",
| |
− | "2,3-Ivysaur",
| |
− | "4,5-Venusaur",
| |
− | "1-Caterpie",
| |
− | "2,3-Metapod",
| |
− | "3,4,5-Butterfree",
| |
− | "1,2-Feebas",
| |
− | "3,4,5-Milotic",
| |
− | "1,2-Goldeen",
| |
− | "3,4-Seaking",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "1,2-Mankey",
| |
− | "3,4-Primeape",
| |
− | "1,2-Surskit",
| |
− | "3,4-Masquerain",
| |
− | "1-Pikipek",
| |
− | "2,3-Trumbeak",
| |
− | "3,4-Toucannon",
| |
− | "2,3-Tangela",
| |
− | "4,5-Tangrowth",
| |
− | "1,2,3-Venonat",
| |
− | "4,5-Venomoth"
| |
− | ]
| |
− | },
| |
− | "deadsea": {
| |
− | "biomes": [
| |
− | "byg:dead_sea"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Corsola-galarian",
| |
− | "4,5-Cursola",
| |
− | "2,3,4-Dhelmise",
| |
− | "2,3,4-Frillish",
| |
− | "4,5-Jellicent",
| |
− | "4,5-Basculegion"
| |
− | ]
| |
− | },
| |
− | "deserts": {
| |
− | "biomes": [
| |
− | "minecraft:desert",
| |
− | "minecraft:desert_hills",
| |
− | "minecraft:desert_lakes",
| |
− | "biomesoplenty:dryland",
| |
− | "biomesoplenty:dry_boneyard",
| |
− | "biomesoplenty:lush_desert",
| |
− | "byg:dunes",
| |
− | "byg:lush_red_desert",
| |
− | "byg:mojave_desert",
| |
− | "byg:oasis",
| |
− | "byg:red_desert",
| |
− | "byg:red_desert_dunes",
| |
− | "pixelmon:ultra_desert"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Diglett",
| |
− | "3,4-Dugtrio",
| |
− | "1,2-Diglett-alolan",
| |
− | "3,4-Dugtrio-alolan",
| |
− | "1,2-Geodude",
| |
− | "3,4-Graveler",
| |
− | "4,5-Golem",
| |
− | "2,3-Baltoy",
| |
− | "4,5-Claydol",
| |
− | "1,2-Trapinch",
| |
− | "3,4-Vibrava",
| |
− | "5-Flygon",
| |
− | "2,3-Maractus",
| |
− | "3,4-Castform",
| |
− | "1,2-Helioptile",
| |
− | "3,4,5-Heliolisk",
| |
− | "2,3-Hippopotas",
| |
− | "4,5-Hippowdon",
| |
− | "1,2,3-Numel",
| |
− | "4,5-Camerupt",
| |
− | "3,4-Larvesta",
| |
− | "5-Volcarona",
| |
− | "1,2-Magby",
| |
− | "3,4-Magmar",
| |
− | "5-Magmortar",
| |
− | "1,2-Fennekin",
| |
− | "2,3-Braixen",
| |
− | "4,5-Delphox",
| |
− | "3,4-Vullaby",
| |
− | "4,5-Mandibuzz",
| |
− | "1,2,3-Skorupi",
| |
− | "4,5-Drapion",
| |
− | "1,2-Cubone",
| |
− | "3,4-Marowak",
| |
− | "2,3-Cacnea",
| |
− | "4,5-Cacturne",
| |
− | "1,2-Gible",
| |
− | "3,4-Gabite",
| |
− | "5-Garchomp",
| |
− | "1,2-Houndour",
| |
− | "3,4,5-Houndoom",
| |
− | "1,2-Sandshrew",
| |
− | "3,4-Sandslash",
| |
− | "1,2-Sandile",
| |
− | "3,4-Krokorok",
| |
− | "4,5-Krookodile",
| |
− | "2,3-Slugma",
| |
− | "4,5-Magcargo",
| |
− | "1,2,3-Dunsparce",
| |
− | "1,2,3-Yamask",
| |
− | "4,5-Cofagrigus",
| |
− | "3,4-Sigilyph",
| |
− | "2,3-Darumaka",
| |
− | "4,5-Darmanitan",
| |
− | "2,3,4-Golett",
| |
− | "5-Golurk",
| |
− | "2,3-Silicobra",
| |
− | "4,5-Sandaconda",
| |
− | "2,3-Sizzlipede",
| |
− | "4,5-Centiskorch",
| |
− | "5-Groudon",
| |
− | "5-Volcanion",
| |
− | "5-Hoopa",
| |
− | "5-Hoopa-unbound",
| |
− | "5-Pheromosa",
| |
− | "2,3-Kabuto",
| |
− | "4,5-Kabutops",
| |
− | "2,3-Omanyte",
| |
− | "4,5-Omastar",
| |
− | "2,3-Drilbur",
| |
− | "3,4,5-Excadrill",
| |
− | "3,4-Torkoal",
| |
− | "5-Registeel"
| |
− | ]
| |
− | },
| |
− | "end": {
| |
− | "biomes": [
| |
− | "minecraft:the_end",
| |
− | "minecraft:small_end_islands",
| |
− | "minecraft:end_midlands",
| |
− | "minecraft:end_highlands",
| |
− | "minecraft:end_barrens",
| |
− | "byg:bulbis_gardens",
| |
− | "byg:bulbis_gardens_edge",
| |
− | "byg:cryptic_wastes",
| |
− | "byg:ethereal_islands",
| |
− | "byg:ethereal_forest",
| |
− | "byg:ethereal_clearing",
| |
− | "byg:ivis_fields",
| |
− | "byg:imparius_grove",
| |
− | "byg:imparius_clearing",
| |
− | "byg:nightshade_forest",
| |
− | "byg:purpur_peaks",
| |
− | "byg:shattered_desert",
| |
− | "byg:shulkren_forest",
| |
− | "byg:shattered_viscal_isles",
| |
− | "byg:shattered_desert_isles",
| |
− | "byg:viscal_isles"
| |
− | ],
| |
− | "species": [
| |
− | "1-Abra",
| |
− | "2,3-Kadabra",
| |
− | "4,5-Alakazam",
| |
− | "3,4-Absol",
| |
− | "3,4-Elgyem",
| |
− | "4,5-Beheeyem",
| |
− | "2,3-Gothita",
| |
− | "3,4-Gothorita",
| |
− | "5-Gothitelle",
| |
− | "2,3-Bronzor",
| |
− | "4,5-Bronzong",
| |
− | "2,3,4-Minior",
| |
− | "1-Wynaut",
| |
− | "3,4-Wobbuffet",
| |
− | "1,2-Beldum",
| |
− | "3,4-Metang",
| |
− | "5-Metagross",
| |
− | "1-Cleffa",
| |
− | "2,3,4-Clefairy",
| |
− | "4,5-Clefable",
| |
− | "4,5-Drampa",
| |
− | "3,4-Lunatone",
| |
− | "3,4-Solrock",
| |
− | "3,4-Sigilyph",
| |
− | "1,2-Unown",
| |
− | "1,2-Hatenna",
| |
− | "3,4-Hattrem",
| |
− | "5-Hatterene",
| |
− | "5-Deoxys",
| |
− | "5-Deoxys-attack",
| |
− | "5-Deoxys-speed",
| |
− | "5-Deoxys-defense",
| |
− | "5-Hoopa",
| |
− | "5-Hoopa-unbound",
| |
− | "5-Eternatus",
| |
− | "5-Regieleki",
| |
− | "2,3-Porygon",
| |
− | "3,4-Porygon2",
| |
− | "5-PorygonZ",
| |
− | "5-Mewtwo",
| |
− | "5-Nihilego",
| |
− | "2,3-Baltoy",
| |
− | "4,5-Claydol",
| |
− | "1-Blipbug",
| |
− | "2,3-Dottler",
| |
− | "4,5-Orbeetle"
| |
− | ]
| |
− | },
| |
− | "evil": {
| |
− | "biomes": [
| |
− | "biomesoplenty:dead_forest",
| |
− | "biomesoplenty:ominous_woods",
| |
− | "biomesoplenty:ominous_mire",
| |
− | "biomesoplenty:tall_dead_forest",
| |
− | "biomesoplenty:wasteland",
| |
− | "byg:twilight_valley",
| |
− | "byg:twilight_valley_hills",
| |
− | "byg:weeping_witch_forest",
| |
− | "byg:weeping_witch_clearing"
| |
− | ],
| |
− | "species": [
| |
− | "3,4-Mimikyu",
| |
− | "1,2,3-Koffing",
| |
− | "4,5-Weezing",
| |
− | "1,2-Poochyena",
| |
− | "3,4-Mightyena",
| |
− | "2,3-Duskull",
| |
− | "3,4-Dusclops",
| |
− | "5-Dusknoir",
| |
− | "1,2-Gastly",
| |
− | "2,3-Haunter",
| |
− | "4,5-Gengar",
| |
− | "2,3-Phantump",
| |
− | "4,5-Trevenant",
| |
− | "2,3-Salandit",
| |
− | "4,5-Salazzle",
| |
− | "1,2,3-Pumpkaboo",
| |
− | "4,5-Gourgeist",
| |
− | "4,5-Umbreon",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "1,2,3-Impidimp",
| |
− | "3,4-Morgrem",
| |
− | "5-Grimmsnarl",
| |
− | "1,2,3-Grimer-alolan",
| |
− | "4,5-Muk-alolan",
| |
− | "1,2,3-Grimer",
| |
− | "4,5-Muk",
| |
− | "2,3-Dreepy",
| |
− | "4-Drakloak",
| |
− | "5-Dragapult",
| |
− | "3,4,5-Ditto",
| |
− | "1,2-Rattata",
| |
− | "3,4-Raticate",
| |
− | "1,2-Rattata-alolan",
| |
− | "3,4-Raticate-alolan",
| |
− | "1,2-Spinarak",
| |
− | "3,4-Ariados",
| |
− | "1,2,3-Murkrow",
| |
− | "4,5-Honchkrow",
| |
− | "1,2-Shuppet",
| |
− | "3,4,5-Banette",
| |
− | "1,2,3-Misdreavus",
| |
− | "4,5-Mismagius",
| |
− | "3,4-Vullaby",
| |
− | "4,5-Mandibuzz",
| |
− | "1,2-Ekans",
| |
− | "3,4-Arbok",
| |
− | "2,3-Trubbish",
| |
− | "4,5-Garbodor",
| |
− | "2,3-Sinistea-phony",
| |
− | "4,5-Polteageist-phony",
| |
− | "2,3-Sinistea-antique",
| |
− | "4,5-Polteageist-antique"
| |
− | ]
| |
− | },
| |
− | "flowery": {
| |
− | "biomes": [
| |
− | "minecraft:flower_forest",
| |
− | "minecraft:sunflower_plains",
| |
− | "biomesoplenty:bamboo_blossom_grove",
| |
− | "biomesoplenty:cherry_blossom_grove",
| |
− | "biomesoplenty:flower_meadow",
| |
− | "biomesoplenty:lavender_field",
| |
− | "biomesoplenty:origin_valley",
| |
− | "byg:allium_fields",
| |
− | "byg:amaranth_fields",
| |
− | "byg:cherry_blossom_forest",
| |
− | "byg:cherry_blossom_clearing",
| |
− | "byg:flowering_ancient_forest",
| |
− | "byg:flowering_enchanted_grove",
| |
− | "byg:flowering_grove",
| |
− | "byg:flowering_meadow",
| |
− | "byg:rose_fields",
| |
− | "terraforged:flower_plains"
| |
− | ],
| |
− | "species": [
| |
− | "1-Caterpie",
| |
− | "2,3-Metapod",
| |
− | "3,4,5-Butterfree",
| |
− | "1,2-Sewaddle",
| |
− | "3,4-Swadloon",
| |
− | "4,5-Leavanny",
| |
− | "1,2-Combee",
| |
− | "3,4-Vespiquen",
| |
− | "1,2-Cutiefly",
| |
− | "3,4-Ribombee",
| |
− | "2,3-Deerling-spring",
| |
− | "4,5-Sawsbuck-spring",
| |
− | "1,2,3-Sunkern",
| |
− | "4,5-Sunflora",
| |
− | "1,2-Petilil",
| |
− | "3,4,5-Lilligant",
| |
− | "3,4,5-Lilligant-hisuian",
| |
− | "1-Budew",
| |
− | "2,3-Roselia",
| |
− | "4,5-Roserade",
| |
− | "1-Wurmple",
| |
− | "2,3-Silcoon",
| |
− | "4,5-Beautifly",
| |
− | "2,3-Cascoon",
| |
− | "4,5-Dustox",
| |
− | "2,3-Comfey",
| |
− | "1,2-Oddish",
| |
− | "2,3-Gloom",
| |
− | "4,5-Vileplume",
| |
− | "4,5-Bellossom",
| |
− | "4,5-Sylveon",
| |
− | "1,2-Ledyba",
| |
− | "3,4-Ledian",
| |
− | "1,2-Gossifleur",
| |
− | "3,4-Eldegoss",
| |
− | "1,2-Bounsweet",
| |
− | "2,3-Steenee",
| |
− | "4,5-Tsareena",
| |
− | "2,3-Cottonee",
| |
− | "4,5-Whimsicott",
| |
− | "1-Flabebe",
| |
− | "2,3-Floette",
| |
− | "4,5-Florges",
| |
− | "1,2-Chikorita",
| |
− | "2,3-Bayleef",
| |
− | "4,5-Meganium",
| |
− | "1-Weedle",
| |
− | "2,3-Kakuna",
| |
− | "4,5-Beedrill",
| |
− | "1-Hoppip",
| |
− | "2,3-Skiploom",
| |
− | "3,4-Jumpluff",
| |
− | "1,2-Skitty",
| |
− | "3,4-Delcatty",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "2,3-Ponyta-galarian",
| |
− | "4,5-Rapidash-galarian",
| |
− | "5-Blacephalon",
| |
− | "5-Shaymin",
| |
− | "5-Shaymin-sky",
| |
− | "5-Meloetta",
| |
− | "1,2,3-Pumpkaboo",
| |
− | "4,5-Gourgeist",
| |
− | "3,4,5-Ditto",
| |
− | "5-Enamorus",
| |
− | "5-Enamorus-therian"
| |
− | ]
| |
− | },
| |
− | "forests": {
| |
− | "biomes": [
| |
− | "minecraft:forest",
| |
− | "minecraft:wooded_hills",
| |
− | "minecraft:flower_forest",
| |
− | "biomesoplenty:grove",
| |
− | "biomesoplenty:grove_clearing",
| |
− | "biomesoplenty:meadow_forest",
| |
− | "biomesoplenty:mystic_grove",
| |
− | "biomesoplenty:orchard",
| |
− | "biomesoplenty:seasonal_forest",
| |
− | "biomesoplenty:seasonal_orchard",
| |
− | "biomesoplenty:woodland",
| |
− | "byg:boreal_forest",
| |
− | "byg:boreal_forest_hills",
| |
− | "byg:boreal_clearing",
| |
− | "byg:deciduous_forest",
| |
− | "byg:deciduous_forest_hills",
| |
− | "byg:deciduous_clearing",
| |
− | "byg:grove",
| |
− | "byg:forest_fault",
| |
− | "byg:jacaranda_forest",
| |
− | "byg:jacaranda_forest_hills",
| |
− | "byg:jacaranda_clearing",
| |
− | "byg:maple_taiga",
| |
− | "byg:maple_hills",
| |
− | "byg:orchard",
| |
− | "byg:pointed_stone_forest",
| |
− | "byg:pumpkin_forest",
| |
− | "byg:red_oak_forest",
| |
− | "byg:red_oak_forest_hills",
| |
− | "byg:seasonal_deciduous_forest",
| |
− | "byg:seasonal_deciduous_forest_hills",
| |
− | "byg:seasonal_deciduous_clearing",
| |
− | "byg:seasonal_forest",
| |
− | "byg:seasonal_forest_hills",
| |
− | "byg:skyris_highlands",
| |
− | "byg:skyris_highlands_clearing",
| |
− | "byg:skyris_peaks",
| |
− | "byg:skyris_steeps",
| |
− | "byg:stone_forest",
| |
− | "byg:woodlands",
| |
− | "byg:wooded_grassland_plateau",
| |
− | "byg:wooded_meadow",
| |
− | "byg:zelkova_forest",
| |
− | "byg:zelkova_clearing",
| |
− | "byg:zelkova_forest_hills",
| |
− | "pixelmon:ultra_forest"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Bellsprout",
| |
− | "3,4-Weepinbell",
| |
− | "4,5-Victreebel",
| |
− | "1,2-Burmy",
| |
− | "3,4-Wormadam",
| |
− | "3,4-Mothim",
| |
− | "1-Caterpie",
| |
− | "2,3-Metapod",
| |
− | "3,4,5-Butterfree",
| |
− | "1,2-Rattata",
| |
− | "3,4-Raticate",
| |
− | "1,2-Sewaddle",
| |
− | "3,4-Swadloon",
| |
− | "4,5-Leavanny",
| |
− | "1-Wurmple",
| |
− | "2,3-Silcoon",
| |
− | "4,5-Beautifly",
| |
− | "2,3-Cascoon",
| |
− | "4,5-Dustox",
| |
− | "1-Abra",
| |
− | "2,3-Kadabra",
| |
− | "4,5-Alakazam",
| |
− | "2,3-Deerling-summer",
| |
− | "4,5-Sawsbuck-summer",
| |
− | "1-Kricketot",
| |
− | "2,3-Kricketune",
| |
− | "1,2-Nickit",
| |
− | "3,4-Thievul",
| |
− | "4,5-Leafeon",
| |
− | "1,2-Bulbasaur",
| |
− | "2,3-Ivysaur",
| |
− | "4,5-Venusaur",
| |
− | "1,2-Ledyba",
| |
− | "3,4-Ledian",
| |
− | "1,2-Skwovet",
| |
− | "3,4-Greedent",
| |
− | "1,2-Cherubi",
| |
− | "3,4-Cherrim",
| |
− | "1,2-Pichu",
| |
− | "2,3,4-Pikachu",
| |
− | "4,5-Raichu",
| |
− | "1,2-Turtwig",
| |
− | "2,3-Grotle",
| |
− | "4,5-Torterra",
| |
− | "1,2-Snivy",
| |
− | "2,3-Servine",
| |
− | "4,5-Serperior",
| |
− | "1-Pidgey",
| |
− | "2,3-Pidgeotto",
| |
− | "4,5-Pidgeot",
| |
− | "2,3-Oricorio-baile",
| |
− | "1,2-Taillow",
| |
− | "3,4-Swellow",
| |
− | "1-Weedle",
| |
− | "2,3-Kakuna",
| |
− | "4,5-Beedrill",
| |
− | "2,3-Foongus",
| |
− | "4,5-Amoonguss",
| |
− | "1,2-Poochyena",
| |
− | "3,4-Mightyena",
| |
− | "2,3-Stunky",
| |
− | "4,5-Skuntank",
| |
− | "1,2-Spinarak",
| |
− | "3,4-Ariados",
| |
− | "1,2-Skitty",
| |
− | "3,4-Delcatty",
| |
− | "1-MimeJr",
| |
− | "2,3,4-MrMime",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "1,2-Hoothoot",
| |
− | "3,4-Noctowl",
| |
− | "1,2,3-Murkrow",
| |
− | "4,5-Honchkrow",
| |
− | "1,2-Applin",
| |
− | "3,4,5-Flapple",
| |
− | "3,4,5-Appletun",
| |
− | "1,2-Milcery",
| |
− | "3,4,5-Alcremie",
| |
− | "3,4,5-Ditto",
| |
− | "2,3-Tyrunt",
| |
− | "4,5-Tyrantrum",
| |
− | "2,3-Archen",
| |
− | "4,5-Archeops",
| |
− | "5-Celebi",
| |
− | "5-Azelf",
| |
− | "5-Zacian",
| |
− | "5-Zamazenta",
| |
− | "5-Kartana",
| |
− | "1,2,3-Teddiursa",
| |
− | "4,5-Ursaring"
| |
− | ]
| |
− | },
| |
− | "freezingbeaches": {
| |
− | "biomes": [
| |
− | "minecraft:snowy_beach",
| |
− | "byg:snowy_rocky_black_beach",
| |
− | "byg:snowy_black_beach"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Krabby",
| |
− | "3,4,5-Kingler",
| |
− | "2,3-Pyukumuku",
| |
− | "1,2-Wingull",
| |
− | "3,4-Pelipper",
| |
− | "2,3-Finneon",
| |
− | "3,4-Lumineon",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "2,3-Corsola-galarian",
| |
− | "4,5-Cursola",
| |
− | "2,3-Binacle",
| |
− | "4,5-Barbaracle",
| |
− | "2,3-Clauncher",
| |
− | "4,5-Clawitzer",
| |
− | "2,3-Slowpoke",
| |
− | "4,5-Slowbro",
| |
− | "4,5-Slowking",
| |
− | "2,3-Slowpoke-galarian",
| |
− | "4,5-Slowbro-galarian",
| |
− | "4,5-Slowking-galarian",
| |
− | "1,2-Shellder",
| |
− | "4,5-Cloyster",
| |
− | "1,2-Staryu",
| |
− | "3,4-Starmie",
| |
− | "2,3-Sandygast",
| |
− | "4,5-Palossand",
| |
− | "2,3-Cramorant",
| |
− | "3,4-Pincurchin",
| |
− | "2,3-Wishiwashi",
| |
− | "5-Suicune",
| |
− | "1,2,3-Corphish",
| |
− | "4,5-Crawdaunt",
| |
− | "1,2,3-Wailmer",
| |
− | "4,5-Wailord",
| |
− | "1,2,3-Clobbopus",
| |
− | "4,5-Grapploct",
| |
− | "2,3-Seel",
| |
− | "4,5-Dewgong",
| |
− | "1,2,3-Mareanie",
| |
− | "4,5-Toxapex",
| |
− | "2,3-Vanillite",
| |
− | "3,4-Vanillish",
| |
− | "5-Vanilluxe",
| |
− | "3,4-Castform",
| |
− | "4,5-Glaceon",
| |
− | "2,3-Cryogonal",
| |
− | "1,2-Spheal",
| |
− | "3,4-Sealeo",
| |
− | "4,5-Walrein",
| |
− | "2,3-Cubchoo",
| |
− | "4,5-Beartic",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass",
| |
− | "1,2,3-Crabrawler",
| |
− | "3,4-Crabominable",
| |
− | "1,2-Piplup",
| |
− | "2,3-Prinplup",
| |
− | "4,5-Empoleon",
| |
− | "2,3-Eiscue",
| |
− | "5-Regice",
| |
− | "2,3-Amaura",
| |
− | "4,5-Aurorus",
| |
− | "3,4,5-Ditto"
| |
− | ]
| |
− | },
| |
− | "freezingforests": {
| |
− | "biomes": [
| |
− | "minecraft:snowy_taiga",
| |
− | "minecraft:snowy_taiga_hills",
| |
− | "minecraft:snowy_taiga_mountains",
| |
− | "biomesoplenty:snowy_coniferous_forest",
| |
− | "biomesoplenty:snowy_fir_clearing",
| |
− | "biomesoplenty:snowy_maple_forest",
| |
− | "byg:northern_forest",
| |
− | "byg:snowy_blue_taiga",
| |
− | "byg:snowy_blue_taiga_hills",
| |
− | "byg:snowy_coniferous_forest",
| |
− | "byg:snowy_coniferous_forest_hills",
| |
− | "byg:snowy_coniferous_clearing",
| |
− | "byg:snowy_deciduous_forest",
| |
− | "byg:snowy_deciduous_forest_hills",
| |
− | "byg:snowy_deciduous_clearing",
| |
− | "byg:snowy_evergreen_taiga",
| |
− | "byg:snowy_evergreen_hills",
| |
− | "byg:snowy_evergreen_clearing",
| |
− | "byg:snowy_blue_giant_taiga",
| |
− | "terraforged:snowy_fir_forest",
| |
− | "terraforged:snowy_taiga_scrub",
| |
− | "pixelmon:mount_lanakila"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Vanillite",
| |
− | "3,4-Vanillish",
| |
− | "5-Vanilluxe",
| |
− | "2,3-Deerling-winter",
| |
− | "4,5-Sawsbuck-winter",
| |
− | "2,3-Snover",
| |
− | "4,5-Abomasnow",
| |
− | "2,3-Stantler",
| |
− | "4,5-Wyrdeer",
| |
− | "2,3-Togedemaru",
| |
− | "3,4-Castform",
| |
− | "4,5-Glaceon",
| |
− | "2,3-Cryogonal",
| |
− | "1,2-Pachirisu",
| |
− | "1,2-Skwovet",
| |
− | "3,4-Greedent",
| |
− | "1,2-Buneary",
| |
− | "3,4-Lopunny",
| |
− | "2,3-Ferroseed",
| |
− | "4,5-Ferrothorn",
| |
− | "1-Wynaut",
| |
− | "3,4-Wobbuffet",
| |
− | "1,2,3-Vulpix-alolan",
| |
− | "4,5-Ninetales-alolan",
| |
− | "2,3-Sneasel",
| |
− | "2-3-Sneasel-hisuian",
| |
− | "4,5-Weavile",
| |
− | "4-5-Sneasler",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass",
| |
− | "1,2-Smoochum",
| |
− | "3,4-Jynx",
| |
− | "1,2-Hoothoot",
| |
− | "3,4-Noctowl",
| |
− | "1-MimeJr",
| |
− | "2,3-MrMime-galarian",
| |
− | "4,5-MrRime",
| |
− | "1,2-Fletchling",
| |
− | "3,4-Fletchinder",
| |
− | "4,5-Talonflame",
| |
− | "1,2-Chimchar",
| |
− | "2,3-Monferno",
| |
− | "4,5-Infernape",
| |
− | "1,2-Rockruff",
| |
− | "3,4,5-Lycanroc",
| |
− | "2,3-Skiddo",
| |
− | "3,4-Gogoat",
| |
− | "1,2,3-Snom",
| |
− | "4,5-Frosmoth",
| |
− | "2,3-Amaura",
| |
− | "4,5-Aurorus",
| |
− | "4,5-Arctozolt",
| |
− | "3,4,5-Ditto",
| |
− | "5-Deoxys",
| |
− | "5-Deoxys-attack",
| |
− | "5-Deoxys-speed",
| |
− | "5-Deoxys-defense",
| |
− | "5-Regice",
| |
− | "5-Calyrex",
| |
− | "1-Scatterbug",
| |
− | "2,3-Spewpa",
| |
− | "3,4-Vivillon-icysnow",
| |
− | "3,4-Rufflet",
| |
− | "4,5-Braviary",
| |
− | "4,5-Braviary-hisuian",
| |
− | "1,2,3-Zorua-hiauian",
| |
− | "4-5-Zoroark-hisuian"
| |
− | ]
| |
− | },
| |
− | "freezingmountains": {
| |
− | "biomes": [
| |
− | "minecraft:snowy_mountains",
| |
− | "minecraft:snowy_taiga_hills",
| |
− | "minecraft:snowy_taiga_mountains",
| |
− | "biomesoplenty:alps",
| |
− | "byg:alps",
| |
− | "pixelmon:mount_lanakila"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Swinub",
| |
− | "3,4-Piloswine",
| |
− | "4,5-Mamoswine",
| |
− | "2,3-Vanillite",
| |
− | "3,4-Vanillish",
| |
− | "5-Vanilluxe",
| |
− | "2,3-Bergmite",
| |
− | "4,5-Avalugg",
| |
− | "4,5-Avalugg-hisuian",
| |
− | "1,2-Klink",
| |
− | "3,4-Klang",
| |
− | "4,5-Klinklang",
| |
− | "2,3-Snover",
| |
− | "4,5-Abomasnow",
| |
− | "3,4-Castform",
| |
− | "4,5-Glaceon",
| |
− | "2,3-Cryogonal",
| |
− | "2,3-Magnemite",
| |
− | "3,4-Magneton",
| |
− | "4,5-Magnezone",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass",
| |
− | "2,3-Delibird",
| |
− | "2,3,4-Minior",
| |
− | "1,2,3-Sandshrew-alolan",
| |
− | "4,5-Sandslash-alolan",
| |
− | "3,4-Mawile",
| |
− | "1,2-Geodude-alolan",
| |
− | "3,4-Graveler-alolan",
| |
− | "4,5-Golem-alolan",
| |
− | "1,2-Meowth-galarian",
| |
− | "3,4-Perrserker",
| |
− | "2,3-Darumaka-galarian",
| |
− | "4,5-Darmanitan-galarian",
| |
− | "2,3-Amaura",
| |
− | "4,5-Aurorus",
| |
− | "4,5-Arctozolt",
| |
− | "3,4,5-Ditto",
| |
− | "5-Articuno",
| |
− | "5-Articuno-galarian",
| |
− | "5-Regice",
| |
− | "5-Dialga",
| |
− | "5-Palkia",
| |
− | "5-Giratina",
| |
− | "5-Arceus"
| |
− | ]
| |
− | },
| |
− | "freezingocean": {
| |
− | "biomes": [
| |
− | "minecraft:frozen_ocean",
| |
− | "minecraft:deep_frozen_ocean"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Bergmite",
| |
− | "4,5-Avalugg",
| |
− | "4,5-Avalugg-hisuian",
| |
− | "2,3-Cubchoo",
| |
− | "4,5-Beartic",
| |
− | "1,2,3-Clobbopus",
| |
− | "4,5-Grapploct",
| |
− | "2,3-Cramorant",
| |
− | "2,3-Corsola-galarian",
| |
− | "4,5-Cursola",
| |
− | "2,3-Seel",
| |
− | "4,5-Dewgong",
| |
− | "2,3-Eiscue",
| |
− | "1,2-Piplup",
| |
− | "2,3-Prinplup",
| |
− | "4,5-Empoleon",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "3,4-Pincurchin",
| |
− | "1,2-Spheal",
| |
− | "3,4-Sealeo",
| |
− | "4,5-Walrein",
| |
− | "1,2-Wimpod",
| |
− | "3,4,5-Golisopod",
| |
− | "1,2,3-Wailmer",
| |
− | "4,5-Wailord",
| |
− | "5-Lugia",
| |
− | "5-Kyogre",
| |
− | "2,3-Clauncher",
| |
− | "4,5-Clawitzer",
| |
− | "1,2-Wingull",
| |
− | "3,4-Pelipper",
| |
− | "2,3-Wishiwashi",
| |
− | "1,2-Shellder",
| |
− | "4,5-Cloyster",
| |
− | "3,4,5-Lapras",
| |
− | "1,2-Staryu",
| |
− | "3,4-Starmie",
| |
− | "1,2-Tentacool",
| |
− | "3,4-Tentacruel",
| |
− | "2,3,4-Dhelmise",
| |
− | "2,3,4-Frillish",
| |
− | "4,5-Jellicent",
| |
− | "2,3-Vanillite",
| |
− | "3,4-Vanillish",
| |
− | "5-Vanilluxe",
| |
− | "3,4-Castform",
| |
− | "4,5-Glaceon",
| |
− | "2,3-Cryogonal",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass",
| |
− | "1,2-Swinub",
| |
− | "3,4-Piloswine",
| |
− | "4,5-Mamoswine",
| |
− | "2,3-Amaura",
| |
− | "4,5-Aurorus",
| |
− | "4,5-Arctovish",
| |
− | "3,4,5-Ditto"
| |
− | ]
| |
− | },
| |
− | "freezingplains": {
| |
− | "biomes": [
| |
− | "minecraft:snowy_tundra",
| |
− | "minecraft:ice_spikes"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Cubchoo",
| |
− | "4,5-Beartic",
| |
− | "1-Pidove",
| |
− | "2,3-Tranquill",
| |
− | "4,5-Unfezant",
| |
− | "1,2-Swinub",
| |
− | "3,4-Piloswine",
| |
− | "4,5-Mamoswine",
| |
− | "2,3-Vanillite",
| |
− | "3,4-Vanillish",
| |
− | "5-Vanilluxe",
| |
− | "2,3-Bergmite",
| |
− | "4,5-Avalugg",
| |
− | "4,5-Avalugg-hisuian",
| |
− | "1,2-Wooloo",
| |
− | "3,4-Dubwool",
| |
− | "3,4-Castform",
| |
− | "4,5-Glaceon",
| |
− | "2,3-Cryogonal",
| |
− | "1-Zigzagoon",
| |
− | "1-Zigzagoon-galarian",
| |
− | "2,3-Linoone",
| |
− | "2,3-Linoone-galarian",
| |
− | "4,5-Obstagoon",
| |
− | "2,3-Skiddo",
| |
− | "3,4-Gogoat",
| |
− | "1-Mareep",
| |
− | "2,3-Flaaffy",
| |
− | "4,5-Ampharos",
| |
− | "1,2-Meowth-galarian",
| |
− | "3,4-Perrserker",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass",
| |
− | "1,2,3-Sandshrew-alolan",
| |
− | "4,5-Sandslash-alolan",
| |
− | "2,3-Amaura",
| |
− | "4,5-Aurorus",
| |
− | "4,5-Arctozolt",
| |
− | "3,4,5-Ditto",
| |
− | "5-Articuno",
| |
− | "5-Articuno-galarian",
| |
− | "5-Regice",
| |
− | "5-Kyurem",
| |
− | "5-Glastrier",
| |
− | "1,2-Sentret",
| |
− | "3,4-Furret"
| |
− | ]
| |
− | },
| |
− | "freshwater": {
| |
− | "biomes": [
| |
− | "minecraft:river",
| |
− | "biomesoplenty:coniferous_lakes",
| |
− | "biomesoplenty:grove_lakes",
| |
− | "byg:great_lakes",
| |
− | "byg:great_lake_isles",
| |
− | "byg:fresh_water_lake",
| |
− | "byg:oasis",
| |
− | "terraforged:lake"
| |
− | ],
| |
− | "species": [
| |
− | "1-Bidoof",
| |
− | "2,3-Bibarel",
| |
− | "1,2,3-Corphish",
| |
− | "4,5-Crawdaunt",
| |
− | "1,2-Chewtle",
| |
− | "3,4,5-Drednaw",
| |
− | "1,2-Surskit",
| |
− | "3,4-Masquerain",
| |
− | "1,2,3-Barboach",
| |
− | "3,4-Whiscash",
| |
− | "1,2-Carvanha",
| |
− | "3,4,5-Sharpedo",
| |
− | "1,2-Goldeen",
| |
− | "3,4-Seaking",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "2,3-Basculin",
| |
− | "4,5-basculegion",
| |
− | "1,2-Dewpider",
| |
− | "2,3,4-Araquanid",
| |
− | "1,2-Wooper",
| |
− | "3,4,5-Quagsire",
| |
− | "2,3-Ducklett",
| |
− | "3,4-Swanna",
| |
− | "1-Azurill",
| |
− | "1,2-Marill",
| |
− | "3,4-Azumarill",
| |
− | "1,2-Psyduck",
| |
− | "3,4-Golduck",
| |
− | "1,2-Poliwag",
| |
− | "2,3-Poliwhirl",
| |
− | "4,5-Poliwrath",
| |
− | "4,5-Politoed",
| |
− | "1,2-Buizel",
| |
− | "3,4-Floatzel",
| |
− | "2,3-Croagunk",
| |
− | "4,5-Toxicroak",
| |
− | "2,3-Slowpoke",
| |
− | "4,5-Slowbro",
| |
− | "4,5-Slowking",
| |
− | "1,2-Sobble",
| |
− | "2,3-Drizzile",
| |
− | "4,5-Inteleon",
| |
− | "2,3-Pawniard",
| |
− | "4,5-Bisharp",
| |
− | "1,2-Tympole",
| |
− | "2,3-Palpitoad",
| |
− | "4,5-Seismitoad",
| |
− | "1,2-Totodile",
| |
− | "2,3-Croconaw",
| |
− | "4,5-Feraligatr",
| |
− | "1,2-Arrokuda",
| |
− | "3,4-Barraskewda",
| |
− | "2,3-Cramorant",
| |
− | "5-Keldeo",
| |
− | "3,4,5-Ditto",
| |
− | "2,3-Slowpoke-galarian",
| |
− | "4,5-Slowbro-galarian",
| |
− | "4,5-Slowking-galarian",
| |
− | "1,2-Drowzee",
| |
− | "3,4-Hypno",
| |
− | "2,3-Farfetchd",
| |
− | "2,3-Farfetchd-galarian",
| |
− | "4,5-Sirfetchd",
| |
− | "1,2-Feebas",
| |
− | "3,4,5-Milotic",
| |
− | "1-Lotad",
| |
− | "2,3-Lombre",
| |
− | "4,5-Ludicolo",
| |
− | "3,4-Seviper",
| |
− | "3,4-Zangoose",
| |
− | "1,2,3-Yanma",
| |
− | "4,5-Yanmega",
| |
− | "5-Azelf",
| |
− | "5-Mesprit",
| |
− | "5-Uxie"
| |
− | ]
| |
− | },
| |
− | "frozenwater": {
| |
− | "biomes": [
| |
− | "minecraft:frozen_river",
| |
− | "byg:frozen_lake",
| |
− | "terraforged:frozen_lake"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Vanillite",
| |
− | "3,4-Vanillish",
| |
− | "5-Vanilluxe",
| |
− | "2,3-Bergmite",
| |
− | "4,5-Avalugg",
| |
− | "4,5-Avalugg-hisuian",
| |
− | "2,3-Seel",
| |
− | "4,5-Dewgong",
| |
− | "3,4-Castform",
| |
− | "4,5-Glaceon",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "1,2-Spheal",
| |
− | "3,4-Sealeo",
| |
− | "4,5-Walrein",
| |
− | "2,3-Cubchoo",
| |
− | "4,5-Beartic",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass",
| |
− | "2,3-Eiscue",
| |
− | "1,2-Piplup",
| |
− | "2,3-Prinplup",
| |
− | "4,5-Empoleon",
| |
− | "5-Regice"
| |
− | ]
| |
− | },
| |
− | "hills": {
| |
− | "biomes": [
| |
− | "minecraft:birch_forest_hills",
| |
− | "minecraft:tall_birch_hills",
| |
− | "minecraft:wooded_hills",
| |
− | "minecraft:giant_tree_taiga_hills",
| |
− | "minecraft:giant_spruce_taiga_hills",
| |
− | "minecraft:taiga_hills",
| |
− | "biomesoplenty:highland",
| |
− | "biomesoplenty:highland_moor",
| |
− | "biomesoplenty:rainbow_hills",
| |
− | "biomesoplenty:redwood_hills",
| |
− | "biomesoplenty:shrubland_hills",
| |
− | "byg:aspen_forest_hills",
| |
− | "byg:blue_taiga_hills",
| |
− | "byg:boreal_forest_hills",
| |
− | "byg:black_forest_hills",
| |
− | "byg:cika_mountains",
| |
− | "byg:deciduous_forest_hills",
| |
− | "byg:evergreen_hills",
| |
− | "byg:jacaranda_forest_hills",
| |
− | "byg:maple_hills",
| |
− | "byg:red_oak_forest_hills",
| |
− | "byg:seasonal_birch_forest_hills",
| |
− | "byg:seasonal_deciduous_forest_hills",
| |
− | "byg:seasonal_forest_hills",
| |
− | "byg:seasonal_taiga_hills",
| |
− | "byg:zelkova_forest_hills"
| |
− | ],
| |
− | "species": [
| |
− | "1-Bunnelby",
| |
− | "2,3-Diggersby",
| |
− | "1,2-Rockruff",
| |
− | "3,4,5-Lycanroc",
| |
− | "2,3-Stantler",
| |
− | "4,5-Wyrdeer",
| |
− | "1,2-Timburr",
| |
− | "3,4-Gurdurr",
| |
− | "5-Conkeldurr",
| |
− | "1-Yungoos",
| |
− | "2,3-Gumshoos",
| |
− | "2,3-Skiddo",
| |
− | "3,4-Gogoat",
| |
− | "1,2-Spearow",
| |
− | "3,4-Fearow",
| |
− | "3,4-Noibat",
| |
− | "4,5-Noivern",
| |
− | "3,4-Stonjourner",
| |
− | "2,3-Morpeko",
| |
− | "1,2,3-Stufful",
| |
− | "4,5-Bewear",
| |
− | "5-Cobalion",
| |
− | "5-Terrakion",
| |
− | "5-Virizion",
| |
− | "5-Meltan",
| |
− | "5-Melmetal"
| |
− | ]
| |
− | },
| |
− | "jungles": {
| |
− | "biomes": [
| |
− | "minecraft:jungle",
| |
− | "minecraft:jungle_edge",
| |
− | "minecraft:jungle_hills",
| |
− | "minecraft:modified_jungle",
| |
− | "minecraft:modified_jungle_edge",
| |
− | "minecraft:bamboo_jungle",
| |
− | "minecraft:bamboo_jungle_hills",
| |
− | "biomesoplenty:rainforest",
| |
− | "biomesoplenty:rainforest_cliffs",
| |
− | "biomesoplenty:rainforest_floodplain",
| |
− | "biomesoplenty:tropic_beach",
| |
− | "biomesoplenty:tropics",
| |
− | "byg:bamboo_forest",
| |
− | "byg:guiana_shield",
| |
− | "byg:guiana_clearing",
| |
− | "byg:guiana_springs",
| |
− | "byg:tropical_fungal_forest",
| |
− | "byg:tropical_fungal_rainforest_hills",
| |
− | "byg:tropical_islands",
| |
− | "byg:tropical_rainforest",
| |
− | "byg:tropical_rainforest_hills",
| |
− | "terraforged:stone_forest",
| |
− | "pixelmon:ultra_jungle"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Bellsprout",
| |
− | "3,4-Weepinbell",
| |
− | "4,5-Victreebel",
| |
− | "1-Caterpie",
| |
− | "2,3-Metapod",
| |
− | "3,4,5-Butterfree",
| |
− | "2,3-Axew",
| |
− | "3,4-Fraxure",
| |
− | "5-Haxorus",
| |
− | "2,3-Carnivine",
| |
− | "1,2-Exeggcute",
| |
− | "3,4-Exeggutor",
| |
− | "3,4-Exeggutor-alolan",
| |
− | "1,2,3-Joltik",
| |
− | "4,5-Galvantula",
| |
− | "1,2-Oddish",
| |
− | "2,3-Gloom",
| |
− | "4,5-Vileplume",
| |
− | "4,5-Bellossom",
| |
− | "1,2,3-Yanma",
| |
− | "4,5-Yanmega",
| |
− | "2,3-Tangela",
| |
− | "4,5-Tangrowth",
| |
− | "1,2,3-Fomantis",
| |
− | "4,5-Lurantis",
| |
− | "3,4-Pinsir",
| |
− | "3,4-Scyther",
| |
− | "4,5-Scizor",
| |
− | "1,2-Pansage",
| |
− | "3,4-Simisage",
| |
− | "1,2-Panpour",
| |
− | "3,4-Simipour",
| |
− | "1,2-Pansear",
| |
− | "3,4-Simisear",
| |
− | "1,2-Mankey",
| |
− | "3,4-Primeape",
| |
− | "2,3-Aipom",
| |
− | "4,5-Ambipom",
| |
− | "1-Slakoth",
| |
− | "2,3-Vigoroth",
| |
− | "4,5-Slaking",
| |
− | "1,2,3-Emolga",
| |
− | "2,3,4-Kecleon",
| |
− | "1,2-Treecko",
| |
− | "2,3-Grovyle",
| |
− | "4,5-Sceptile",
| |
− | "1-Pikipek",
| |
− | "2,3-Trumbeak",
| |
− | "3,4-Toucannon",
| |
− | "2,3-Tropius",
| |
− | "1,2-Grubbin",
| |
− | "3,4-Charjabug",
| |
− | "4,5-Vikavolt",
| |
− | "1,2-Venipede",
| |
− | "3-Whirlipede",
| |
− | "4,5-Scolipede",
| |
− | "1,2,3-Venonat",
| |
− | "4,5-Venomoth",
| |
− | "1,2-Purrloin",
| |
− | "3,4-Liepard",
| |
− | "1,2-Grookey",
| |
− | "2,3-Thwackey",
| |
− | "4,5-Rillaboom",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "3,4-Noibat",
| |
− | "4,5-Noivern",
| |
− | "1,2-Natu",
| |
− | "3,4,5-Xatu",
| |
− | "3,4-Passimian",
| |
− | "3,4-Oranguru",
| |
− | "1,2-Litten",
| |
− | "2,3-Torracat",
| |
− | "4,5-Incineroar",
| |
− | "5-Mew",
| |
− | "5-Tapu_Koko",
| |
− | "5-Tapu_Lele",
| |
− | "5-Tapu_Bulu",
| |
− | "5-Tapu_Fini",
| |
− | "5-Zarude",
| |
− | "5-TypeNull",
| |
− | "5-Silvally",
| |
− | "5-Buzzwole",
| |
− | "1,2,3-Chatot",
| |
− | "2,3-Archen",
| |
− | "4,5-Archeops",
| |
− | "3,4,5-Ditto",
| |
− | "2,3-Pancham",
| |
− | "4,5-Pangoro",
| |
− | "5-Kubfu",
| |
− | "5-Urshifu"
| |
− | ]
| |
− | },
| |
− | "lukewarmocean": {
| |
− | "biomes": [
| |
− | "minecraft:lukewarm_ocean",
| |
− | "minecraft:deep_lukewarm_ocean"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Alomomola",
| |
− | "1,2-Arrokuda",
| |
− | "3,4-Barraskewda",
| |
− | "3,4-Bruxish",
| |
− | "1,2-Chinchou",
| |
− | "3,4-Lanturn",
| |
− | "1,2,3-Clobbopus",
| |
− | "4,5-Grapploct",
| |
− | "2,3-Corsola",
| |
− | "2,3-Corsola-galarian",
| |
− | "4,5-Cursola",
| |
− | "3,4-Skrelp",
| |
− | "4,5-Dragalge",
| |
− | "2-Dratini",
| |
− | "3,4-Dragonair",
| |
− | "5-Dragonite",
| |
− | "2,3-Tynamo",
| |
− | "3,4-Eelektrik",
| |
− | "5-Eelektross",
| |
− | "2,3-Finneon",
| |
− | "3,4-Lumineon",
| |
− | "1,2-Luvdisc",
| |
− | "1,2,3-Shellos",
| |
− | "4,5-Gastrodon",
| |
− | "2,3-Clamperl",
| |
− | "4,5-Huntail",
| |
− | "4,5-Gorebyss",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "1,2-Horsea",
| |
− | "3,4-Seadra",
| |
− | "5-Kingdra",
| |
− | "1,2-Mantyke",
| |
− | "2,3,4-Mantine",
| |
− | "1,2,3-Mareanie",
| |
− | "4,5-Toxapex",
| |
− | "1,2-Feebas",
| |
− | "3,4,5-Milotic",
| |
− | "1,2-Remoraid",
| |
− | "3,4-Octillery",
| |
− | "3,4-Pincurchin",
| |
− | "2,3-Pyukumuku",
| |
− | "1,2,3-Qwilfish",
| |
− | "3-Relicanth",
| |
− | "1,2-Carvanha",
| |
− | "3,4,5-Sharpedo",
| |
− | "1,2-Wimpod",
| |
− | "3,4,5-Golisopod",
| |
− | "1,2,3-Wailmer",
| |
− | "4,5-Wailord",
| |
− | "5-Lugia",
| |
− | "5-Kyogre",
| |
− | "5-Manaphy",
| |
− | "5-Phione",
| |
− | "2,3-Clauncher",
| |
− | "4,5-Clawitzer",
| |
− | "1,2-Wingull",
| |
− | "3,4-Pelipper",
| |
− | "2,3-Wishiwashi",
| |
− | "1,2-Shellder",
| |
− | "4,5-Cloyster",
| |
− | "3,4,5-Lapras",
| |
− | "1,2-Staryu",
| |
− | "3,4-Starmie",
| |
− | "1,2-Tentacool",
| |
− | "3,4-Tentacruel",
| |
− | "2,3,4-Dhelmise",
| |
− | "2,3,4-Frillish",
| |
− | "4,5-Jellicent",
| |
− | "2,3-Tirtouga",
| |
− | "4,5-Carracosta",
| |
− | "4,5-Dracovish",
| |
− | "2,3-Lileep",
| |
− | "4,5-Cradily",
| |
− | "3,4,5-Ditto"
| |
− | ]
| |
− | },
| |
− | "magical": {
| |
− | "biomes": [
| |
− | "biomesoplenty:cherry_blossom_grove",
| |
− | "biomesoplenty:lavender_field",
| |
− | "biomesoplenty:lavender_forest",
| |
− | "biomesoplenty:mystic_grove",
| |
− | "biomesoplenty:mystic_plains",
| |
− | "biomesoplenty:origin_valley",
| |
− | "biomesoplenty:rainbow_hills",
| |
− | "biomesoplenty:shroomy_wetland",
| |
− | "byg:ancient_forest",
| |
− | "byg:enchanted_forest",
| |
− | "byg:enchanted_forest_hills",
| |
− | "byg:enchanted_grove",
| |
− | "byg:glowing_ancient_forest",
| |
− | "byg:flowering_ancient_forest",
| |
− | "byg:twilight_valley",
| |
− | "byg:twilight_valley_hills",
| |
− | "byg:weeping_witch_forest",
| |
− | "byg:weeping_witch_clearing"
| |
− | ],
| |
− | "species": [
| |
− | "1-Caterpie",
| |
− | "2,3-Metapod",
| |
− | "3,4,5-Butterfree",
| |
− | "1-Flabebe",
| |
− | "2,3-Floette",
| |
− | "4,5-Florges",
| |
− | "1,2-Hatenna",
| |
− | "3,4-Hattrem",
| |
− | "5-Hatterene",
| |
− | "3,4-Indeedee",
| |
− | "1-Budew",
| |
− | "2,3-Roselia",
| |
− | "4,5-Roserade",
| |
− | "1-Scatterbug",
| |
− | "2,3-Spewpa",
| |
− | "3,4-Vivillon-fancy",
| |
− | "2,3-Spritzee",
| |
− | "4,5-Aromatisse",
| |
− | "2,3-Swirlix",
| |
− | "4,5-Slurpuff",
| |
− | "1-Wurmple",
| |
− | "2,3-Silcoon",
| |
− | "4,5-Beautifly",
| |
− | "2,3-Cascoon",
| |
− | "4,5-Dustox",
| |
− | "1,2-Ledyba",
| |
− | "3,4-Ledian",
| |
− | "1,2-Hoothoot",
| |
− | "3,4-Noctowl",
| |
− | "3,4-Pinsir",
| |
− | "1-Togepi",
| |
− | "2,3-Togetic",
| |
− | "4,5-Togekiss",
| |
− | "3,4-Klefki",
| |
− | "1,2,3-Morelull",
| |
− | "4,5-Shiinotic",
| |
− | "3,4-Audino",
| |
− | "2,3-Swablu",
| |
− | "4,5-Altaria",
| |
− | "4,5-Espeon",
| |
− | "2,3-Deerling-summer",
| |
− | "4,5-Sawsbuck-summer",
| |
− | "2,3-Ponyta-galarian",
| |
− | "4,5-Rapidash-galarian"
| |
− | ]
| |
− | },
| |
− | "mountainousforests": {
| |
− | "biomes": [
| |
− | "minecraft:wooded_mountains",
| |
− | "minecraft:modified_gravelly_mountains",
| |
− | "biomesoplenty:fir_clearing",
| |
− | "biomesoplenty:jade_cliffs",
| |
− | "byg:bluff_steeps",
| |
− | "byg:bluff_peaks",
| |
− | "byg:alpine_foothills",
| |
− | "byg:dover_mountains",
| |
− | "byg:redwood_mountains"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Spoink",
| |
− | "3,4-Grumpig",
| |
− | "2,3-Riolu",
| |
− | "4,5-Lucario",
| |
− | "1,2-Chimchar",
| |
− | "2,3-Monferno",
| |
− | "4,5-Infernape",
| |
− | "3,4-Rufflet",
| |
− | "4,5-Braviary",
| |
− | "1-Starly",
| |
− | "2,3-Staravia",
| |
− | "4,5-Staraptor",
| |
− | "1,2-Makuhita",
| |
− | "3,4-Hariyama",
| |
− | "3,4-Hawlucha",
| |
− | "1,2-Munchlax",
| |
− | "4,5-Snorlax",
| |
− | "2,3-Meditite",
| |
− | "4,5-Medicham",
| |
− | "3,4-Deino",
| |
− | "4-Zweilous",
| |
− | "5-Hydreigon",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "1-Rookidee",
| |
− | "2,3-Corvisquire",
| |
− | "4,5-Corviknight",
| |
− | "1,2,3-Spinda",
| |
− | "3,4-Durant",
| |
− | "4,5-Aerodactyl",
| |
− | "3,4,5-Ditto",
| |
− | "5-Jirachi",
| |
− | "5-Genesect",
| |
− | "2,3-Pineco",
| |
− | "4,5-Forretress",
| |
− | "2,3-Skiddo",
| |
− | "3,4-Gogoat",
| |
− | "3,4-Scyther",
| |
− | "4,5-Kleavor"
| |
− | ]
| |
− | },
| |
− | "mountainous": {
| |
− | "biomes": [
| |
− | "minecraft:mountains",
| |
− | "minecraft:mountain_edge",
| |
− | "minecraft:wooded_mountains",
| |
− | "minecraft:gravelly_mountains",
| |
− | "minecraft:modified_gravelly_mountains",
| |
− | "biomesoplenty:alps",
| |
− | "biomesoplenty:alps_foothills",
| |
− | "biomesoplenty:highland",
| |
− | "biomesoplenty:highland_crag",
| |
− | "biomesoplenty:highland_moor",
| |
− | "biomesoplenty:jade_cliffs",
| |
− | "byg:alpine_foothills",
| |
− | "byg:alps"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Geodude",
| |
− | "3,4-Graveler",
| |
− | "4,5-Golem",
| |
− | "3,4-Castform",
| |
− | "1,2-Tyrogue",
| |
− | "4,5-Hitmonchan",
| |
− | "4,5-Hitmonlee",
| |
− | "4,5-Hitmontop",
| |
− | "3,4-Rufflet",
| |
− | "4,5-Braviary",
| |
− | "2,3-Jangmoo",
| |
− | "3,4-Hakamoo",
| |
− | "4,5-Kommoo",
| |
− | "2,3-Cryogonal",
| |
− | "1,2-Machop",
| |
− | "3,4-Machoke",
| |
− | "4,5-Machamp",
| |
− | "1,2-Phanpy",
| |
− | "3,4-Donphan",
| |
− | "1-Whismur",
| |
− | "2,3-Loudred",
| |
− | "4,5-Exploud",
| |
− | "1,2-Charmander",
| |
− | "2,3-Charmeleon",
| |
− | "4,5-Charizard",
| |
− | "1-Starly",
| |
− | "2,3-Staravia",
| |
− | "4,5-Staraptor",
| |
− | "1,2-Mudbray",
| |
− | "3,4-Mudsdale",
| |
− | "3,4-Onix",
| |
− | "4,5-Steelix",
| |
− | "1-Cleffa",
| |
− | "2,3,4-Clefairy",
| |
− | "4,5-Clefable",
| |
− | "1,2,3-Carbink",
| |
− | "1,2-Larvitar",
| |
− | "3,4-Pupitar",
| |
− | "5-Tyranitar",
| |
− | "3,4-Mienfoo",
| |
− | "4,5-Mienshao",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass",
| |
− | "1,2-Geodude-alolan",
| |
− | "3,4-Graveler-alolan",
| |
− | "4,5-Golem-alolan",
| |
− | "2,3-Delibird",
| |
− | "2,3,4-Minior",
| |
− | "4,5-Druddigon",
| |
− | "3,4-Mawile",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "1,2-Drifloon",
| |
− | "3,4-Drifblim",
| |
− | "1-Rookidee",
| |
− | "2,3-Corvisquire",
| |
− | "4,5-Corviknight",
| |
− | "3,4-Skarmory",
| |
− | "3,4-Absol",
| |
− | "1,2-Rolycoly",
| |
− | "2,3-Carkol",
| |
− | "4,5-Coalossal",
| |
− | "4,5-Duraludon",
| |
− | "3,4-Durant",
| |
− | "1,2-Spearow",
| |
− | "3,4-Fearow",
| |
− | "5-Stakataka",
| |
− | "1,2-Klink",
| |
− | "3,4-Klang",
| |
− | "4,5-Klinklang",
| |
− | "1,2,3-Spinda",
| |
− | "2,3-Magnemite",
| |
− | "3,4-Magneton",
| |
− | "4,5-Magnezone",
| |
− | "5-Entei",
| |
− | "5-Rayquaza",
| |
− | "5-Dialga",
| |
− | "5-Palkia",
| |
− | "5-Giratina",
| |
− | "5-Arceus",
| |
− | "5-Diancie",
| |
− | "5-Zygarde-10%",
| |
− | "5-Zygarde-50%",
| |
− | "4,5-Aerodactyl",
| |
− | "3,4,5-Ditto",
| |
− | "2,3-Drilbur",
| |
− | "4,5-Excadrill"
| |
− | ]
| |
− | },
| |
− | "mushroom": {
| |
− | "biomes": [
| |
− | "minecraft:mushroom_fields",
| |
− | "minecraft:mushroom_field_shore",
| |
− | "biomesoplenty:fungal_field",
| |
− | "biomesoplenty:fungal_jungle",
| |
− | "biomesoplenty:shroomy_wetland",
| |
− | "byg:glowshroom_bayou",
| |
− | "byg:fungal_patch",
| |
− | "byg:tropical_fungal_forest",
| |
− | "byg:tropical_fungal_rainforest_hills"
| |
− | ],
| |
− | "species": [
| |
− | "1,2,3-Morelull",
| |
− | "4,5-Shiinotic",
| |
− | "1,2-Paras",
| |
− | "3,4,5-Parasect",
| |
− | "1,2,3-Shroomish",
| |
− | "4,5-Breloom",
| |
− | "2,3-Spritzee",
| |
− | "4,5-Aromatisse",
| |
− | "2,3-Swirlix",
| |
− | "4,5-Slurpuff",
| |
− | "4,5-Drampa",
| |
− | "2,3-Foongus",
| |
− | "4,5-Amoonguss",
| |
− | "3,4,5-Ditto"
| |
− | ]
| |
− | },
| |
− | "nether": {
| |
− | "biomes": [
| |
− | "minecraft:nether_wastes",
| |
− | "minecraft:basalt_deltas",
| |
− | "minecraft:crimson_forest",
| |
− | "minecraft:soul_sand_valley",
| |
− | "minecraft:warped_forest",
| |
− | "biomesoplenty:crystalline_chasm",
| |
− | "biomesoplenty:undergrowth",
| |
− | "biomesoplenty:visceral_heap",
| |
− | "biomesoplenty:withered_abyss",
| |
− | "byg:brimstone_caverns",
| |
− | "byg:crimson_gardens",
| |
− | "byg:embur_bog",
| |
− | "byg:glowstone_gardens",
| |
− | "byg:magma_wastes",
| |
− | "byg:quartz_desert",
| |
− | "byg:sythian_torrids",
| |
− | "byg:warped_desert",
| |
− | "byg:wailing_garth",
| |
− | "byg:withering_woods",
| |
− | "byg:weeping_mire"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Gastly",
| |
− | "2,3-Haunter",
| |
− | "4,5-Gengar",
| |
− | "2,3-Duskull",
| |
− | "3,4-Dusclops",
| |
− | "5-Dusknoir",
| |
− | "1,2-Houndour",
| |
− | "3,4,5-Houndoom",
| |
− | "2,3-Pawniard",
| |
− | "4,5-Bisharp",
| |
− | "2,3-Salandit",
| |
− | "4,5-Salazzle",
| |
− | "2,3-Slugma",
| |
− | "4,5-Magcargo",
| |
− | "1-Magby",
| |
− | "3,4-Magmar",
| |
− | "5-Magmortar",
| |
− | "2,3-Sableye",
| |
− | "3,4-Torkoal",
| |
− | "1,2,3-Yamask",
| |
− | "4,5-Cofagrigus",
| |
− | "1,2,3-Yamask-galarian",
| |
− | "4,5-Runerigus",
| |
− | "3,4-Turtonator",
| |
− | "5-Heatran",
| |
− | "5-Marshadow",
| |
− | "5-Regidrago",
| |
− | "1,2,3-Impidimp",
| |
− | "3,4-Morgrem",
| |
− | "5-Grimmsnarl",
| |
− | "3,4,5-Ditto",
| |
− | "2,3-Honedge",
| |
− | "3,4-Doublade",
| |
− | "5-Aegislash",
| |
− | "1,2-Ekans",
| |
− | "3,4-Arbok",
| |
− | "2,3-Sizzlipede",
| |
− | "4,5-Centiskorch"
| |
− | ]
| |
− | },
| |
− | "ocean": {
| |
− | "biomes": [
| |
− | "minecraft:ocean",
| |
− | "minecraft:deep_ocean"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Arrokuda",
| |
− | "3,4-Barraskewda",
| |
− | "3,4-Bruxish",
| |
− | "1,2-Chinchou",
| |
− | "3,4-Lanturn",
| |
− | "1,2,3-Clobbopus",
| |
− | "4,5-Grapploct",
| |
− | "2,3-Corsola-galarian",
| |
− | "4,5-Cursola",
| |
− | "3,4-Skrelp",
| |
− | "4,5-Dragalge",
| |
− | "2-Dratini",
| |
− | "3,4-Dragonair",
| |
− | "5-Dragonite",
| |
− | "2,3-Tynamo",
| |
− | "3,4-Eelektrik",
| |
− | "5-Eelektross",
| |
− | "2,3-Finneon",
| |
− | "3,4-Lumineon",
| |
− | "2,3-Clamperl",
| |
− | "4,5-Huntail",
| |
− | "4,5-Gorebyss",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "1,2-Horsea",
| |
− | "3,4-Seadra",
| |
− | "5-Kingdra",
| |
− | "1,2-Krabby",
| |
− | "3,4,5-Kingler",
| |
− | "1,2-Mantyke",
| |
− | "2,3,4-Mantine",
| |
− | "1,2,3-Mareanie",
| |
− | "4,5-Toxapex",
| |
− | "1,2-Feebas",
| |
− | "3,4,5-Milotic",
| |
− | "1,2-Remoraid",
| |
− | "3,4-Octillery",
| |
− | "3,4-Pincurchin",
| |
− | "2,3-Pyukumuku",
| |
− | "1,2,3-Qwilfish",
| |
− | "3-Relicanth",
| |
− | "1,2-Carvanha",
| |
− | "3,4,5-Sharpedo",
| |
− | "1,2-Wimpod",
| |
− | "3,4,5-Golisopod",
| |
− | "1,2,3-Wailmer",
| |
− | "4,5-Wailord",
| |
− | "5-Lugia",
| |
− | "5-Kyogre",
| |
− | "2,3-Clauncher",
| |
− | "4,5-Clawitzer",
| |
− | "1,2-Wingull",
| |
− | "3,4-Pelipper",
| |
− | "2,3-Wishiwashi",
| |
− | "1,2-Shellder",
| |
− | "4,5-Cloyster",
| |
− | "3,4,5-Lapras",
| |
− | "1,2-Staryu",
| |
− | "3,4-Starmie",
| |
− | "1,2-Tentacool",
| |
− | "3,4-Tentacruel",
| |
− | "2,3,4-Dhelmise",
| |
− | "2,3,4-Frillish",
| |
− | "4,5-Jellicent",
| |
− | "2,3-Tirtouga",
| |
− | "4,5-Carracosta",
| |
− | "4,5-Dracovish",
| |
− | "2,3-Lileep",
| |
− | "4,5-Cradily",
| |
− | "3,4,5-Ditto"
| |
− | ]
| |
− | },
| |
− | "otherfreezing": {
| |
− | "biomes": [
| |
− | "biomesoplenty:cold_desert",
| |
− | "biomesoplenty:muskeg",
| |
− | "byg:lush_tundra",
| |
− | "terraforged:frozen_marsh"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Vanillite",
| |
− | "3,4-Vanillish",
| |
− | "5-Vanilluxe",
| |
− | "1,2-Spheal",
| |
− | "3,4-Sealeo",
| |
− | "4,5-Walrein",
| |
− | "3,4-Castform",
| |
− | "2,3-Seel",
| |
− | "4,5-Dewgong",
| |
− | "2,3-Cryogonal",
| |
− | "4,5-Glaceon",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass",
| |
− | "5-Regice",
| |
− | "2,3-Amaura",
| |
− | "4,5-Aurorus",
| |
− | "3,4,5-Ditto",
| |
− | "1,2-Swinub",
| |
− | "3,4-Piloswine",
| |
− | "4,5-Mamoswine"
| |
− | ]
| |
− | },
| |
− | "plains": {
| |
− | "biomes": [
| |
− | "minecraft:plains",
| |
− | "minecraft:sunflower_plains",
| |
− | "biomesoplenty:flower_meadow",
| |
− | "biomesoplenty:golden_prairie",
| |
− | "biomesoplenty:grassland",
| |
− | "biomesoplenty:grassland_clover_patch",
| |
− | "biomesoplenty:meadow",
| |
− | "biomesoplenty:prairie",
| |
− | "biomesoplenty:scrubland",
| |
− | "biomesoplenty:seasonal_pumpkin_patch",
| |
− | "biomesoplenty:shrubland",
| |
− | "biomesoplenty:shrubland_hills",
| |
− | "biomesoplenty:wooded_scrubland",
| |
− | "byg:autumnal_valley",
| |
− | "byg:grassland_plateau",
| |
− | "byg:meadow",
| |
− | "byg:prairie",
| |
− | "byg:prairie_clearing",
| |
− | "byg:shrublands",
| |
− | "terraforged:steppe",
| |
− | "terraforged:cold_steppe"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Ekans",
| |
− | "3,4-Arbok",
| |
− | "1,2-Meowth",
| |
− | "3,4-Persian",
| |
− | "1,2-Meowth-alolan",
| |
− | "3,4-Persian-alolan",
| |
− | "1-Pidove",
| |
− | "2,3-Tranquill",
| |
− | "4,5-Unfezant",
| |
− | "1,2-Rattata",
| |
− | "3,4-Raticate",
| |
− | "1,2-Rattata-alolan",
| |
− | "3,4-Raticate-alolan",
| |
− | "1,2-Sentret",
| |
− | "3,4-Furret",
| |
− | "1,2-Wooloo",
| |
− | "3,4-Dubwool",
| |
− | "1,2-Miltank",
| |
− | "2,3-Plusle",
| |
− | "2,3-Minun",
| |
− | "3,4-Tauros",
| |
− | "2,3-Ponyta",
| |
− | "4,5-Rapidash",
| |
− | "1,2-Scorbunny",
| |
− | "2,3-Raboot",
| |
− | "4,5-Cinderace",
| |
− | "4,5-Espeon",
| |
− | "1,2-Electrike",
| |
− | "3,4-Manectric",
| |
− | "1-Zigzagoon",
| |
− | "1-Zigzagoon-galarian",
| |
− | "2,3-Linoone",
| |
− | "2,3-Linoone-galarian",
| |
− | "4,5-Obstagoon",
| |
− | "3,4-Furfrou",
| |
− | "1,2-Snubbull",
| |
− | "4,5-Granbull",
| |
− | "1,2,3-Voltorb",
| |
− | "4,5-Electrode",
| |
− | "2,3-Farfetchd",
| |
− | "2,3-Farfetchd-galarian",
| |
− | "4,5-Sirfetchd",
| |
− | "3,4-Seviper",
| |
− | "1,2-Chikorita",
| |
− | "2,3-Bayleef",
| |
− | "4,5-Meganium",
| |
− | "1-Lillipup",
| |
− | "2,3-Herdier",
| |
− | "4,5-Stoutland",
| |
− | "1-Mareep",
| |
− | "2,3-Flaaffy",
| |
− | "4,5-Ampharos",
| |
− | "1,2-Mudbray",
| |
− | "3,4-Mudsdale",
| |
− | "4,5-Bouffalant",
| |
− | "1-Igglybuff",
| |
− | "2,3-Jigglypuff",
| |
− | "4,5-Wigglytuff",
| |
− | "1-Hoppip",
| |
− | "2,3-Skiploom",
| |
− | "3,4-Jumpluff",
| |
− | "1-Patrat",
| |
− | "2,3,4-Watchog",
| |
− | "2,3-Glameow",
| |
− | "4,5-Purugly",
| |
− | "1,2-Shuppet",
| |
− | "3,4,5-Banette",
| |
− | "1-Elekid",
| |
− | "3,4-Electabuzz",
| |
− | "5-Electivire",
| |
− | "3,4-Zangoose",
| |
− | "1,2,3-Zorua",
| |
− | "4,5-Zoroark",
| |
− | "1,2-Drifloon",
| |
− | "3,4-Drifblim",
| |
− | "4,5-Umbreon",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "5-Tornadus",
| |
− | "5-Thundurus",
| |
− | "5-Tornadus-therian",
| |
− | "5-Thundurus-therian",
| |
− | "5-Solgaleo",
| |
− | "5-Lunala",
| |
− | "5-Blacephalon",
| |
− | "2,3-Shieldon",
| |
− | "4,5-Bastiodon",
| |
− | "2,3-Cranidos",
| |
− | "4,5-Rampardos",
| |
− | "3,4,5-Ditto",
| |
− | "1-Pidgey",
| |
− | "2,3-Pidgeotto",
| |
− | "4,5-Pidgeot"
| |
− | ]
| |
− | },
| |
− | "pollutedlake": {
| |
− | "biomes": [
| |
− | "byg:polluted_lake"
| |
− | ],
| |
− | "species": [
| |
− | "1,2,3-Barboach",
| |
− | "3,4-Whiscash",
| |
− | "1,2,3-Grimer",
| |
− | "4,5-Muk",
| |
− | "1,2,3-Grimer-alolan",
| |
− | "4,5-Muk-alolan",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados"
| |
− | ]
| |
− | },
| |
− | "redwoods": {
| |
− | "biomes": [
| |
− | "minecraft:giant_tree_taiga",
| |
− | "minecraft:giant_tree_taiga_hills",
| |
− | "minecraft:giant_spruce_taiga",
| |
− | "minecraft:giant_spruce_taiga_hills",
| |
− | "biomesoplenty:redwood_forest",
| |
− | "biomesoplenty:redwood_forest_edge",
| |
− | "biomesoplenty:redwood_hills",
| |
− | "byg:blue_giant_taiga",
| |
− | "byg:cika_woods",
| |
− | "byg:cika_mountains",
| |
− | "byg:redwood_tropics",
| |
− | "byg:redwood_clearing",
| |
− | "byg:redwood_mountains",
| |
− | "byg:seasonal_giant_taiga"
| |
− | ],
| |
− | "species": [
| |
− | "1-Wurmple",
| |
− | "2,3-Silcoon",
| |
− | "4,5-Beautifly",
| |
− | "2,3-Cascoon",
| |
− | "4,5-Dustox",
| |
− | "2,3-Deerling-autumn",
| |
− | "4,5-Sawsbuck-autumn",
| |
− | "1-Kricketot",
| |
− | "2,3-Kricketune",
| |
− | "1,2,3-Morelull",
| |
− | "4,5-Shiinotic",
| |
− | "2,3-Pineco",
| |
− | "4,5-Forretress",
| |
− | "1-Seedot",
| |
− | "2,3-Nuzleaf",
| |
− | "4,5-Shiftry",
| |
− | "2,3-Togedemaru",
| |
− | "3,4-Heracross",
| |
− | "4,5-Leafeon",
| |
− | "1-Nincada",
| |
− | "3,4-Ninjask",
| |
− | "3,4-Shedinja",
| |
− | "1-Blipbug",
| |
− | "2,3-Dottler",
| |
− | "4,5-Orbeetle",
| |
− | "1,2-Pachirisu",
| |
− | "1,2-Skwovet",
| |
− | "3,4-Greedent",
| |
− | "1,2-Pichu",
| |
− | "2,3,4-Pikachu",
| |
− | "4,5-Raichu",
| |
− | "1,2-Grubbin",
| |
− | "3,4-Charjabug",
| |
− | "4,5-Vikavolt",
| |
− | "2,3-Foongus",
| |
− | "4,5-Amoonguss",
| |
− | "1,2-Illumise",
| |
− | "1,2-Volbeat",
| |
− | "1,2-Poochyena",
| |
− | "3,4-Mightyena",
| |
− | "1,2-Burmy",
| |
− | "3,4-Wormadam",
| |
− | "3,4-Mothim",
| |
− | "1,2-Spinarak",
| |
− | "3,4-Ariados",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "1-Rookidee",
| |
− | "2,3-Corvisquire",
| |
− | "4,5-Corviknight",
| |
− | "1,2-Rowlet",
| |
− | "2,3-Dartrix",
| |
− | "4,5-Decidueye",
| |
− | "1,2,3-Murkrow",
| |
− | "4,5-Honchkrow",
| |
− | "1,2-Hoothoot",
| |
− | "3,4-Noctowl",
| |
− | "2,3-Dedenne",
| |
− | "3,4-Elgyem",
| |
− | "4,5-Beheeyem",
| |
− | "1,2-Munna",
| |
− | "3,4-Musharna",
| |
− | "2,3-Ferroseed",
| |
− | "4,5-Ferrothorn",
| |
− | "2,3-Morpeko",
| |
− | "1,2,3-Gligar",
| |
− | "4,5-Gliscor",
| |
− | "3,4-Noibat",
| |
− | "4,5-Noivern",
| |
− | "1,2,3-Vulpix",
| |
− | "4,5-Ninetales",
| |
− | "1,2-Bonsly",
| |
− | "3,4-Sudowoodo",
| |
− | "1,2-Turtwig",
| |
− | "2,3-Grotle",
| |
− | "4,5-Torterra",
| |
− | "5-Reshiram",
| |
− | "5-Zekrom",
| |
− | "2,3-Tyrunt",
| |
− | "4,5-Tyrantrum",
| |
− | "2,3-Archen",
| |
− | "4,5-Archeops",
| |
− | "3,4,5-Ditto",
| |
− | "1,2,3-Teddiursa",
| |
− | "4,5-Ursaring"
| |
− | ]
| |
− | },
| |
− | "roofed": {
| |
− | "biomes": [
| |
− | "minecraft:dark_forest",
| |
− | "minecraft:dark_forest_hills",
| |
− | "biomesoplenty:dense_woodland",
| |
− | "byg:the_black_forest",
| |
− | "byg:black_forest_hills",
| |
− | "byg:black_forest_clearing",
| |
− | "byg:ebony_woods",
| |
− | "byg:ebony_hills"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Bellsprout",
| |
− | "3,4-Weepinbell",
| |
− | "4,5-Victreebel",
| |
− | "1-Caterpie",
| |
− | "2,3-Metapod",
| |
− | "3,4,5-Butterfree",
| |
− | "1,2-Rattata",
| |
− | "3,4-Raticate",
| |
− | "1,2-Rattata-alolan",
| |
− | "3,4-Raticate-alolan",
| |
− | "1-Scatterbug",
| |
− | "2,3-Spewpa",
| |
− | "3,4-Vivillon-elegant",
| |
− | "1,2-Sewaddle",
| |
− | "3,4-Swadloon",
| |
− | "4,5-Leavanny",
| |
− | "1-Wurmple",
| |
− | "2,3-Silcoon",
| |
− | "4,5-Beautifly",
| |
− | "2,3-Cascoon",
| |
− | "4,5-Dustox",
| |
− | "1-Abra",
| |
− | "2,3-Kadabra",
| |
− | "4,5-Alakazam",
| |
− | "2,3-Deerling-summer",
| |
− | "4,5-Sawsbuck-summer",
| |
− | "1-Kricketot",
| |
− | "2,3-Kricketune",
| |
− | "1,2-Oddish",
| |
− | "2,3-Gloom",
| |
− | "4,5-Vileplume",
| |
− | "4,5-Bellossom",
| |
− | "1,2-Paras",
| |
− | "3,4,5-Parasect",
| |
− | "1,2,3-Shroomish",
| |
− | "4,5-Breloom",
| |
− | "2-Chingling",
| |
− | "3,4-Chimecho",
| |
− | "3,4-Mimikyu",
| |
− | "1,2-Nickit",
| |
− | "3,4-Thievul",
| |
− | "4,5-Leafeon",
| |
− | "1,2-Bulbasaur",
| |
− | "2,3-Ivysaur",
| |
− | "4,5-Venusaur",
| |
− | "1,2-Burmy",
| |
− | "3,4-Wormadam",
| |
− | "3,4-Mothim",
| |
− | "1,2-Skwovet",
| |
− | "3,4-Greedent",
| |
− | "1,2-Cherubi",
| |
− | "3,4-Cherrim",
| |
− | "1,2-Pichu",
| |
− | "2,3,4-Pikachu",
| |
− | "4,5-Raichu",
| |
− | "1,2-Turtwig",
| |
− | "2,3-Grotle",
| |
− | "4,5-Torterra",
| |
− | "1,2-Snivy",
| |
− | "2,3-Servine",
| |
− | "4,5-Serperior",
| |
− | "1,2-Taillow",
| |
− | "3,4-Swellow",
| |
− | "1-Weedle",
| |
− | "2,3-Kakuna",
| |
− | "4,5-Beedrill",
| |
− | "1,2-Espurr",
| |
− | "3,4-Meowstic",
| |
− | "1,2-Inkay",
| |
− | "3,4-Malamar",
| |
− | "1-Igglybuff",
| |
− | "2,3-Jigglypuff",
| |
− | "4,5-Wigglytuff",
| |
− | "2,3-Foongus",
| |
− | "4,5-Amoonguss",
| |
− | "2,3-Stunky",
| |
− | "4,5-Skuntank",
| |
− | "1,2-Spinarak",
| |
− | "3,4-Ariados",
| |
− | "1,2-Gastly",
| |
− | "2,3-Haunter",
| |
− | "4,5-Gengar",
| |
− | "2,3-Gothita",
| |
− | "3,4-Gothorita",
| |
− | "5-Gothitelle",
| |
− | "1,2-Litwick",
| |
− | "3,4-Lampent",
| |
− | "4,5-Chandelure",
| |
− | "2,3-Phantump",
| |
− | "4,5-Trevenant",
| |
− | "1,2-Skitty",
| |
− | "3,4-Delcatty",
| |
− | "1,2,3-Misdreavus",
| |
− | "4,5-Mismagius",
| |
− | "1-MimeJr",
| |
− | "2,3,4-MrMime",
| |
− | "4,5-Spiritomb",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "2,3-Oricorio-sensu",
| |
− | "1,2-Woobat",
| |
− | "3,4-Swoobat",
| |
− | "1,2,3-Murkrow",
| |
− | "4,5-Honchkrow",
| |
− | "1,2-Hoothoot",
| |
− | "3,4-Noctowl",
| |
− | "1,2-Applin",
| |
− | "3,4,5-Flapple",
| |
− | "3,4,5-Appletun",
| |
− | "2,3-Sinistea-phony",
| |
− | "4,5-Polteageist-phony",
| |
− | "2,3-Sinistea-antique",
| |
− | "4,5-Polteageist-antique",
| |
− | "1,2,3-Impidimp",
| |
− | "3,4-Morgrem",
| |
− | "5-Grimmsnarl",
| |
− | "1,2-Milcery",
| |
− | "3,4,5-Alcremie",
| |
− | "5-Darkrai",
| |
− | "5-Uxie",
| |
− | "5-Necrozma",
| |
− | "5-Magearna",
| |
− | "5-Xerneas",
| |
− | "3,4-Rotom",
| |
− | "3,4-Rotom-heat",
| |
− | "3,4-Rotom-wash",
| |
− | "3,4-Rotom-mow",
| |
− | "3,4-Rotom-fan",
| |
− | "3,4-Rotom-frost",
| |
− | "2,3-Tyrunt",
| |
− | "4,5-Tyrantrum",
| |
− | "2,3-Archen",
| |
− | "4,5-Archeops",
| |
− | "3,4,5-Ditto",
| |
− | "1,2,3-Teddiursa",
| |
− | "4,5-Ursaring"
| |
− | ]
| |
− | },
| |
− | "savannas": {
| |
− | "biomes": [
| |
− | "minecraft:savanna",
| |
− | "minecraft:savanna_plateau",
| |
− | "minecraft:shattered_savanna",
| |
− | "minecraft:shattered_savanna_plateau",
| |
− | "biomesoplenty:lush_savanna",
| |
− | "byg:araucaria_savanna",
| |
− | "byg:araucaria_forest",
| |
− | "byg:baobab_savanna",
| |
− | "byg:sierra_valley",
| |
− | "byg:sierra_range",
| |
− | "terraforged:savanna_scrub",
| |
− | "terraforged:shattered_savanna_scrub"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Ekans",
| |
− | "3,4-Arbok",
| |
− | "1-Nidoranmale",
| |
− | "2,3-Nidorino",
| |
− | "4,5-Nidoking",
| |
− | "1-Nidoranfemale",
| |
− | "2,3-Nidorina",
| |
− | "4,5-Nidoqueen",
| |
− | "1,2-Blitzle",
| |
− | "3,4-Zebstrika",
| |
− | "2,3-Doduo",
| |
− | "4,5-Dodrio",
| |
− | "3,4-Tauros",
| |
− | "3,4-Scyther",
| |
− | "4,5-Scizor",
| |
− | "2,3-Ponyta",
| |
− | "4,5-Rapidash",
| |
− | "1-Happiny",
| |
− | "2,3-Chansey",
| |
− | "4,5-Blissey",
| |
− | "1,2-Electrike",
| |
− | "3,4-Manectric",
| |
− | "2,3-Litleo",
| |
− | "4,5-Pyroar",
| |
− | "2,3-Rhyhorn",
| |
− | "3,4-Rhydon",
| |
− | "5-Rhyperior",
| |
− | "3,4-Torkoal",
| |
− | "2,3-Lickitung",
| |
− | "4,5-Lickilicky",
| |
− | "1,2-Growlithe",
| |
− | "1,2,3-Growlithe-hisuian",
| |
− | "3,4-Arcanine",
| |
− | "4,5-Arcanine-hisuian",
| |
− | "4,5-Bouffalant",
| |
− | "1,2-Torchic",
| |
− | "2,3-Combusken",
| |
− | "4,5-Blaziken",
| |
− | "3,4-Kangaskhan",
| |
− | "1-Patrat",
| |
− | "2,3,4-Watchog",
| |
− | "2,3-Honedge",
| |
− | "3,4-Doublade",
| |
− | "5-Aegislash",
| |
− | "1-Shinx",
| |
− | "2,3-Luxio",
| |
− | "4,5-Luxray",
| |
− | "2,3-Girafarig",
| |
− | "1,2-Tepig",
| |
− | "2,3-Pignite",
| |
− | "4,5-Emboar",
| |
− | "4,5-Jolteon",
| |
− | "3,4-Skarmory",
| |
− | "1-Roggenrola",
| |
− | "2,3-Boldore",
| |
− | "4,5-Gigalith",
| |
− | "1,2-Geodude-alolan",
| |
− | "3,4-Graveler-alolan",
| |
− | "4,5-Golem-alolan",
| |
− | "3,4-Sawk",
| |
− | "3,4-Throh",
| |
− | "2,3-Komala",
| |
− | "1,2-Yamper",
| |
− | "3,4-Boltund",
| |
− | "1,2-Rolycoly",
| |
− | "2,3-Carkol",
| |
− | "4,5-Coalossal",
| |
− | "2,3-Cufant",
| |
− | "4,5-Copperajah",
| |
− | "2,3-Dreepy",
| |
− | "4-Drakloak",
| |
− | "5-Dragapult",
| |
− | "5-Celesteela",
| |
− | "5-Zapdos",
| |
− | "5-Zapdos-galarian",
| |
− | "5-Raikou",
| |
− | "5-Regigigas",
| |
− | "5-Victini",
| |
− | "5-Zeraora",
| |
− | "2,3-Shieldon",
| |
− | "4,5-Bastiodon",
| |
− | "2,3-Cranidos",
| |
− | "4,5-Rampardos",
| |
− | "3,4,5-Ditto",
| |
− | "1-Starly",
| |
− | "2,3-Staravia",
| |
− | "4,5-Staraptor",
| |
− | "4,5-Dracozolt",
| |
− | "1,2-Phanpy",
| |
− | "3,4-Donphan",
| |
− | "1,2,3-Voltorb-hisuian",
| |
− | "4,5-Electrode-hisuian"
| |
− | ]
| |
− | },
| |
− | "shatteredglacier": {
| |
− | "biomes": [
| |
− | "byg:shattered_glacier"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Vanillite",
| |
− | "3,4-Vanillish",
| |
− | "5-Vanilluxe",
| |
− | "2,3-Cubchoo",
| |
− | "4,5-Beartic",
| |
− | "1,2-Spheal",
| |
− | "3,4-Sealeo",
| |
− | "4,5-Walrein",
| |
− | "3,4-Castform",
| |
− | "2,3-Seel",
| |
− | "4,5-Dewgong",
| |
− | "2,3-Cryogonal",
| |
− | "4,5-Glaceon",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass",
| |
− | "5-Regice",
| |
− | "2,3-Amaura",
| |
− | "4,5-Aurorus",
| |
− | "3,4,5-Ditto",
| |
− | "2,3-Bergmite",
| |
− | "4,5-Avalugg",
| |
− | "4,5-Avalugg-hisuian",
| |
− | "1,2-Swinub",
| |
− | "3,4-Piloswine",
| |
− | "4,5-Mamoswine",
| |
− | "1,2,3-Sandshrew-alolan",
| |
− | "4,5-Sandslash-alolan"
| |
− | ]
| |
− | },
| |
− | "stonybeaches": {
| |
− | "biomes": [
| |
− | "minecraft:stone_shore",
| |
− | "biomesoplenty:gravel_beach",
| |
− | "byg:basalt_barrera",
| |
− | "byg:rocky_beach"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Krabby",
| |
− | "3,4,5-Kingler",
| |
− | "2,3-Pyukumuku",
| |
− | "1,2-Wimpod",
| |
− | "3,4,5-Golisopod",
| |
− | "1,2-Wingull",
| |
− | "3,4-Pelipper",
| |
− | "2,3-Finneon",
| |
− | "3,4-Lumineon",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "2,3-Corsola",
| |
− | "2,3-Corsola-galarian",
| |
− | "4,5-Cursola",
| |
− | "2,3-Binacle",
| |
− | "4,5-Barbaracle",
| |
− | "2,3-Clauncher",
| |
− | "4,5-Clawitzer",
| |
− | "2,3-Slowpoke",
| |
− | "4,5-Slowbro",
| |
− | "4,5-Slowking",
| |
− | "2,3-Slowpoke-galarian",
| |
− | "4,5-Slowbro-galarian",
| |
− | "4,5-Slowking-galarian",
| |
− | "1,2-Shellder",
| |
− | "4,5-Cloyster",
| |
− | "1,2-Staryu",
| |
− | "3,4-Starmie",
| |
− | "1,2,3-Shellos",
| |
− | "4,5-Gastrodon",
| |
− | "2,3-Sandygast",
| |
− | "4,5-Palossand",
| |
− | "2,3-Cramorant",
| |
− | "3,4-Pincurchin",
| |
− | "2,3-Wishiwashi",
| |
− | "5-Suicune",
| |
− | "2,3-Tynamo",
| |
− | "3,4-Eelektrik",
| |
− | "5-Eelektross",
| |
− | "1,2-Luvdisc",
| |
− | "1,2-Remoraid",
| |
− | "3,4-Octillery",
| |
− | "1,2,3-Corphish",
| |
− | "4,5-Crawdaunt",
| |
− | "3,4-Bruxish",
| |
− | "1,2,3-Wailmer",
| |
− | "4,5-Wailord",
| |
− | "2,3-Anorith",
| |
− | "4,5-Armaldo",
| |
− | "2,3-Tirtouga",
| |
− | "4,5-Carracosta",
| |
− | "1,2,3-Dwebble",
| |
− | "3,4-Crustle",
| |
− | "2,3,4-Shuckle",
| |
− | "1,2,3-Clobbopus",
| |
− | "4,5-Grapploct",
| |
− | "4,5-Raichu-alolan",
| |
− | "1,2-Buizel",
| |
− | "3,4-Floatzel",
| |
− | "1,2-Oshawott",
| |
− | "2,3-Dewott",
| |
− | "4,5-Samurott",
| |
− | "4,5-Samurott-hisuian",
| |
− | "1,2,3-Mareanie",
| |
− | "4,5-Toxapex",
| |
− | "3,4,5-Ditto"
| |
− | ]
| |
− | },
| |
− | "subzerohypogeal": {
| |
− | "biomes": [
| |
− | "byg:subzero_hypogeal"
| |
− | ],
| |
− | "species": [
| |
− | "1,2-Gastly",
| |
− | "2,3-Haunter",
| |
− | "4,5-Gengar",
| |
− | "2,3-Duskull",
| |
− | "3,4-Dusclops",
| |
− | "5-Dusknoir",
| |
− | "1,2-Houndour",
| |
− | "3,4,5-Houndoom",
| |
− | "2,3-Sableye",
| |
− | "1,2,3-Yamask",
| |
− | "4,5-Cofagrigus",
| |
− | "1,2,3-Yamask-galarian",
| |
− | "4,5-Runerigus",
| |
− | "5-Marshadow",
| |
− | "5-Regidrago",
| |
− | "3,4,5-Ditto",
| |
− | "2,3-Honedge",
| |
− | "3,4-Doublade",
| |
− | "5-Aegislash",
| |
− | "2,3-Snorunt",
| |
− | "4,5-Glalie",
| |
− | "4,5-Froslass"
| |
− | ]
| |
− | },
| |
− | "swamps": {
| |
− | "biomes": [
| |
− | "minecraft:swamp",
| |
− | "minecraft:swamp_hills",
| |
− | "biomesoplenty:bayou",
| |
− | "biomesoplenty:bayou_mangrove",
| |
− | "biomesoplenty:deep_bayou",
| |
− | "biomesoplenty:dense_marsh",
| |
− | "biomesoplenty:marsh",
| |
− | "biomesoplenty:wetland",
| |
− | "biomesoplenty:wetland_forest",
| |
− | "byg:bayou",
| |
− | "byg:bog",
| |
− | "byg:cold_swamplands",
| |
− | "byg:cypress_swamplands",
| |
− | "byg:coral_mangroves",
| |
− | "byg:glowshroom_bayou",
| |
− | "byg:mangrove_marshes",
| |
− | "byg:marshlands",
| |
− | "byg:vibrant_swamplands",
| |
− | "terraforged:marshland",
| |
− | "terraforged:cold_marshland"
| |
− | ],
| |
− | "species": [
| |
− | "1-Bidoof",
| |
− | "2,3-Bibarel",
| |
− | "1,2,3-Corphish",
| |
− | "4,5-Crawdaunt",
| |
− | "1,2-Ekans",
| |
− | "3,4-Arbok",
| |
− | "1,2-Chewtle",
| |
− | "3,4,5-Drednaw",
| |
− | "1,2,3-Grimer",
| |
− | "4,5-Muk",
| |
− | "1,2,3-Grimer-alolan",
| |
− | "4,5-Muk-alolan",
| |
− | "1-Lotad",
| |
− | "2,3-Lombre",
| |
− | "4,5-Ludicolo",
| |
− | "1,2-Oddish",
| |
− | "2,3-Gloom",
| |
− | "4,5-Vileplume",
| |
− | "4,5-Bellossom",
| |
− | "1,2-Paras",
| |
− | "3,4,5-Parasect",
| |
− | "1,2-Shelmet",
| |
− | "4,5-Accelgor",
| |
− | "1,2,3-Yanma",
| |
− | "4,5-Yanmega",
| |
− | "1,2-Dewpider",
| |
− | "2,3,4-Araquanid",
| |
− | "3,4-Stunfisk",
| |
− | "3,4-Stunfisk-galarian",
| |
− | "2,3-Basculin",
| |
− | "1,2-Goldeen",
| |
− | "3,4-Seaking",
| |
− | "1,2,3-Barboach",
| |
− | "3,4-Whiscash",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "1,2-Froakie",
| |
− | "2,3-Frogadier",
| |
− | "4,5-Greninja",
| |
− | "1,2,3-Toxel",
| |
− | "4,5-Toxtricity",
| |
− | "1,2-Wooper",
| |
− | "3,4,5-Quagsire",
| |
− | "2,3-Ducklett",
| |
− | "3,4-Swanna",
| |
− | "1,2-Psyduck",
| |
− | "3,4-Golduck",
| |
− | "1,2-Solosis",
| |
− | "2,3-Duosion",
| |
− | "4,5-Reuniclus",
| |
− | "2,3-Trubbish",
| |
− | "4,5-Garbodor",
| |
− | "2,3-Cramorant",
| |
− | "1,2-Poliwag",
| |
− | "2,3-Poliwhirl",
| |
− | "4,5-Poliwrath",
| |
− | "4,5-Politoed",
| |
− | "1,2-Feebas",
| |
− | "3,4,5-Milotic",
| |
− | "1,2,3-Koffing",
| |
− | "4,5-Weezing",
| |
− | "4,5-Weezing-galarian",
| |
− | "2,3-Croagunk",
| |
− | "4,5-Toxicroak",
| |
− | "1,2,3-Gligar",
| |
− | "4,5-Gliscor",
| |
− | "1,2,3-Venonat",
| |
− | "4,5-Venomoth",
| |
− | "1,2-Karrablast",
| |
− | "4,5-Escavalier",
| |
− | "1,2,3-Skorupi",
| |
− | "4,5-Drapion",
| |
− | "2,3-Stunky",
| |
− | "4,5-Skuntank",
| |
− | "1,2-Surskit",
| |
− | "3,4-Masquerain",
| |
− | "2,3-Goomy",
| |
− | "4-Sliggoo",
| |
− | "4-Sliggoo-hisuian",
| |
− | "5-Goodra",
| |
− | "5-Goodra-hisuian",
| |
− | "1,2-Drowzee",
| |
− | "3,4-Hypno",
| |
− | "1,2-Gulpin",
| |
− | "3,4-Swalot",
| |
− | "1,2-Tympole",
| |
− | "2,3-Palpitoad",
| |
− | "4,5-Seismitoad",
| |
− | "1,2-Mudkip",
| |
− | "2,3-Marshtomp",
| |
− | "4,5-Swampert",
| |
− | "1,2,3-Murkrow",
| |
− | "4,5-Honchkrow",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "5-Poipole",
| |
− | "5-Naganadel",
| |
− | "5-Eternatus",
| |
− | "5-Spectrier",
| |
− | "2,3-Anorith",
| |
− | "4,5-Armaldo",
| |
− | "2,3-Lileep",
| |
− | "4,5-Cradily",
| |
− | "3,4,5-Ditto",
| |
− | "1-Rookidee",
| |
− | "2,3-Corvisquire",
| |
− | "4,5-Corviknight",
| |
− | "1,2,3-Teddiursa",
| |
− | "4-Ursaring",
| |
− | "5-Ursaluna"
| |
− | ]
| |
− | },
| |
− | "taigas": {
| |
− | "biomes": [
| |
− | "minecraft:taiga",
| |
− | "minecraft:taiga_hills",
| |
− | "minecraft:taiga_mountains",
| |
− | "biomesoplenty:coniferous_forest",
| |
− | "biomesoplenty:fir_clearing",
| |
− | "byg:blue_taiga",
| |
− | "byg:blue_taiga_hills",
| |
− | "byg:coniferous_forest",
| |
− | "byg:coniferous_forest_hills",
| |
− | "byg:coniferous_clearing",
| |
− | "byg:evergreen_taiga",
| |
− | "byg:evergreen_hills",
| |
− | "byg:evergreen_clearing",
| |
− | "byg:red_spruce_taiga",
| |
− | "byg:seasonal_taiga",
| |
− | "byg:seasonal_taiga_hills",
| |
− | "terraforged:fir_forest",
| |
− | "terraforged:taiga_scrub"
| |
− | ],
| |
− | "species": [
| |
− | "1-Wurmple",
| |
− | "2,3-Silcoon",
| |
− | "4,5-Beautifly",
| |
− | "2,3-Cascoon",
| |
− | "4,5-Dustox",
| |
− | "2,3-Deerling-autumn",
| |
− | "4,5-Sawsbuck-autumn",
| |
− | "1,2-Exeggcute",
| |
− | "3,4-Exeggutor",
| |
− | "1-Kricketot",
| |
− | "2,3-Kricketune",
| |
− | "1,2,3-Morelull",
| |
− | "4,5-Shiinotic",
| |
− | "2,3-Pineco",
| |
− | "4,5-Forretress",
| |
− | "1-Seedot",
| |
− | "2,3-Nuzleaf",
| |
− | "4,5-Shiftry",
| |
− | "2,3-Togedemaru",
| |
− | "1,2-Nickit",
| |
− | "3,4-Thievul",
| |
− | "3,4-Heracross",
| |
− | "4,5-Leafeon",
| |
− | "1-Nincada",
| |
− | "3,4-Ninjask",
| |
− | "3,4-Shedinja",
| |
− | "1-Blipbug",
| |
− | "2,3-Dottler",
| |
− | "4,5-Orbeetle",
| |
− | "1-Togepi",
| |
− | "2,3-Togetic",
| |
− | "4,5-Togekiss",
| |
− | "1,2-Pachirisu",
| |
− | "1,2-Skwovet",
| |
− | "3,4-Greedent",
| |
− | "1,2-Pichu",
| |
− | "2,3,4-Pikachu",
| |
− | "4,5-Raichu",
| |
− | "1,2-Chespin",
| |
− | "2,3-Quilladin",
| |
− | "4,5-Chesnaught",
| |
− | "1,2-Grubbin",
| |
− | "3,4-Charjabug",
| |
− | "4,5-Vikavolt",
| |
− | "1-Weedle",
| |
− | "2,3-Kakuna",
| |
− | "4,5-Beedrill",
| |
− | "2,3-Foongus",
| |
− | "4,5-Amoonguss",
| |
− | "1,2-Illumise",
| |
− | "1,2-Volbeat",
| |
− | "1,2-Poochyena",
| |
− | "3,4-Mightyena",
| |
− | "1,2-Burmy",
| |
− | "3,4-Wormadam",
| |
− | "3,4-Mothim",
| |
− | "1,2-Spinarak",
| |
− | "3,4-Ariados",
| |
− | "1,2-Drowzee",
| |
− | "3,4-Hypno",
| |
− | "1,2-Gastly",
| |
− | "2,3-Haunter",
| |
− | "4,5-Gengar",
| |
− | "3,4-Klefki",
| |
− | "1,2-Zubat",
| |
− | "3,4-Golbat",
| |
− | "5-Crobat",
| |
− | "2,3-Oricorio-pau",
| |
− | "1,2-Woobat",
| |
− | "3,4-Swoobat",
| |
− | "1,2-Rowlet",
| |
− | "2,3-Dartrix",
| |
− | "4,5-Decidueye",
| |
− | "4,5-Decidueye-hisuian",
| |
− | "1,2,3-Murkrow",
| |
− | "4,5-Honchkrow",
| |
− | "1,2-Hoothoot",
| |
− | "3,4-Noctowl",
| |
− | "1,2-Fletchling",
| |
− | "3,4-Fletchinder",
| |
− | "4,5-Talonflame",
| |
− | "1-Pidgey",
| |
− | "2,3-Pidgeotto",
| |
− | "4,5-Pidgeot",
| |
− | "1,2-Hatenna",
| |
− | "3,4-Hattrem",
| |
− | "5-Hatterene",
| |
− | "5-Yveltal",
| |
− | "2,3-Tyrunt",
| |
− | "4,5-Tyrantrum",
| |
− | "2,3-Archen",
| |
− | "4,5-Archeops",
| |
− | "3,4,5-Ditto",
| |
− | "1,2,3-Teddiursa",
| |
− | "4,5-Ursaring"
| |
− | ]
| |
− | },
| |
− | "tundra": {
| |
− | "biomes": [
| |
− | "biomesoplenty:tundra",
| |
− | "biomesoplenty:tundra_basin",
| |
− | "biomesoplenty:tundra_bog"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Cubchoo",
| |
− | "4,5-Beartic",
| |
− | "1,2-Sentret",
| |
− | "3,4-Furret",
| |
− | "2,3-Skiddo",
| |
− | "3,4-Gogoat",
| |
− | "1,2-Hoothoot",
| |
− | "3,4-Noctowl",
| |
− | "1-Zigzagoon",
| |
− | "1-Zigzagoon-galarian",
| |
− | "2,3-Linoone",
| |
− | "2,3-Linoone-galarian",
| |
− | "4,5-Obstagoon",
| |
− | "1,2-Swinub",
| |
− | "3,4-Piloswine",
| |
− | "4,5-Mamoswine",
| |
− | "1,2-Meowth-galarian",
| |
− | "3,4-Perrserker",
| |
− | "1-Pidove",
| |
− | "2,3-Tranquill",
| |
− | "4,5-Unfezant",
| |
− | "3,4-Skarmory"
| |
− | ]
| |
− | },
| |
− | "ultradeepsea": {
| |
− | "biomes": [
| |
− | "pixelmon:ultra_deep_sea"
| |
− | ],
| |
− | "species": [
| |
− | "5-Nihilego",
| |
− | "5-Diancie",
| |
− | "1,2-Geodude-alolan",
| |
− | "3,4-Graveler-alolan",
| |
− | "4,5-Golem-alolan",
| |
− | "2,3,4-Shuckle",
| |
− | "2,3-Nosepass",
| |
− | "4,5-Probopass",
| |
− | "1-Roggenrola",
| |
− | "2,3-Boldore",
| |
− | "4,5-Gigalith",
| |
− | "1,2,3-Carbink",
| |
− | "2,3,4-Minior",
| |
− | "2,3-Binacle",
| |
− | "4,5-Barbaracle",
| |
− | "1,2-Wimpod",
| |
− | "3,4,5-Golisopod",
| |
− | "1,2-Chewtle",
| |
− | "3,4,5-Drednaw",
| |
− | "1,2,3-Grimer",
| |
− | "4,5-Muk",
| |
− | "1,2,3-Grimer-alolan",
| |
− | "4,5-Muk-alolan",
| |
− | "1,2-Gulpin",
| |
− | "3,4-Swalot",
| |
− | "2,3-Croagunk",
| |
− | "4,5-Toxicroak",
| |
− | "2,3-Salandit",
| |
− | "4,5-Salazzle",
| |
− | "2,3-Sableye",
| |
− | "2,3-Pawniard",
| |
− | "4,5-Bisharp",
| |
− | "3,4-Deino",
| |
− | "4-Zweilous",
| |
− | "5-Hydreigon"
| |
− | ]
| |
− | },
| |
− | "volcano": {
| |
− | "biomes": [
| |
− | "biomesoplenty:volcanic_plains",
| |
− | "biomesoplenty:volcano"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Swablu",
| |
− | "4,5-Altaria",
| |
− | "1-Roggenrola",
| |
− | "2,3-Boldore",
| |
− | "4,5-Gigalith",
| |
− | "1,2-Rolycoly",
| |
− | "2,3-Carkol",
| |
− | "4,5-Coalossal",
| |
− | "1,2-Charmander",
| |
− | "2,3-Charmeleon",
| |
− | "4,5-Charizard",
| |
− | "1,2-Drifloon",
| |
− | "3,4-Drifblim",
| |
− | "1,2-Spearow",
| |
− | "3,4-Fearow",
| |
− | "1,2-Gible",
| |
− | "3,4-Gabite",
| |
− | "5-Garchomp",
| |
− | "1,2-Geodude",
| |
− | "3,4-Graveler",
| |
− | "4,5-Golem",
| |
− | "1,2-Houndour",
| |
− | "3,4,5-Houndoom",
| |
− | "1,2,3-Koffing",
| |
− | "4,5-Weezing",
| |
− | "1,2-Magby",
| |
− | "3,4-Magmar",
| |
− | "5-Magmortar",
| |
− | "2,3-Slugma",
| |
− | "4,5-Magcargo",
| |
− | "1,2-Cubone",
| |
− | "3,4-Marowak-alolan",
| |
− | "2,3-Salandit",
| |
− | "4,5-Salazzle",
| |
− | "3,4-Torkoal",
| |
− | "3,4-Turtonator",
| |
− | "1,2,3-Numel",
| |
− | "4,5-Camerupt",
| |
− | "5-Entei",
| |
− | "5-Volcanion"
| |
− | ]
| |
− | },
| |
− | "warmocean": {
| |
− | "biomes": [
| |
− | "minecraft:warm_ocean",
| |
− | "minecraft:deep_warm_ocean"
| |
− | ],
| |
− | "species": [
| |
− | "2,3-Alomomola",
| |
− | "1,2-Arrokuda",
| |
− | "3,4-Barraskewda",
| |
− | "3,4-Bruxish",
| |
− | "1,2-Chinchou",
| |
− | "3,4-Lanturn",
| |
− | "2,3-Corsola",
| |
− | "2,3-Corsola-galarian",
| |
− | "4,5-Cursola",
| |
− | "3,4-Skrelp",
| |
− | "4,5-Dragalge",
| |
− | "2-Dratini",
| |
− | "3,4-Dragonair",
| |
− | "5-Dragonite",
| |
− | "2,3-Tynamo",
| |
− | "3,4-Eelektrik",
| |
− | "5-Eelektross",
| |
− | "2,3-Finneon",
| |
− | "3,4-Lumineon",
| |
− | "1,2-Luvdisc",
| |
− | "1,2,3-Shellos",
| |
− | "4,5-Gastrodon",
| |
− | "2,3-Clamperl",
| |
− | "4,5-Huntail",
| |
− | "4,5-Gorebyss",
| |
− | "1,2-Magikarp",
| |
− | "3,4,5-Gyarados",
| |
− | "1,2-Horsea",
| |
− | "3,4-Seadra",
| |
− | "5-Kingdra",
| |
− | "1,2-Krabby",
| |
− | "3,4,5-Kingler",
| |
− | "1,2-Mantyke",
| |
− | "2,3,4-Mantine",
| |
− | "1,2,3-Mareanie",
| |
− | "4,5-Toxapex",
| |
− | "1,2-Feebas",
| |
− | "3,4,5-Milotic",
| |
− | "1,2-Remoraid",
| |
− | "3,4-Octillery",
| |
− | "3,4-Pincurchin",
| |
− | "2,3-Pyukumuku",
| |
− | "1,2,3-Qwilfish",
| |
− | "1,2,3-Qwilfish-hisuian",
| |
− | "4,5-Overqwil",
| |
− | "3-Relicanth",
| |
− | "1,2-Carvanha",
| |
− | "3,4,5-Sharpedo",
| |
− | "1,2-Wimpod",
| |
− | "3,4,5-Golisopod",
| |
− | "1,2,3-Wailmer",
| |
− | "4,5-Wailord",
| |
− | "5-Lugia",
| |
− | "5-Kyogre",
| |
− | "5-Latias",
| |
− | "5-Latios",
| |
− | "5-Manaphy",
| |
− | "5-Phione",
| |
− | "2,3-Clauncher",
| |
− | "4,5-Clawitzer",
| |
− | "1,2-Wingull",
| |
− | "3,4-Pelipper",
| |
− | "2,3-Wishiwashi",
| |
− | "1,2-Shellder",
| |
− | "4,5-Cloyster",
| |
− | "3,4,5-Lapras",
| |
− | "1,2-Staryu",
| |
− | "3,4-Starmie",
| |
− | "1,2-Tentacool",
| |
− | "3,4-Tentacruel",
| |
− | "2,3,4-Dhelmise",
| |
− | "2,3,4-Frillish",
| |
− | "4,5-Jellicent",
| |
− | "2,3-Tirtouga",
| |
− | "4,5-Carracosta",
| |
− | "4,5-Dracovish",
| |
− | "2,3-Lileep",
| |
− | "4,5-Cradily",
| |
− | "3,4,5-Ditto"
| |
− | ]
| |
− | }
| |
− | }
| |
− | </spoiler>
| |