Essentials Docs Wiki

The Essentials wiki has moved and is now at: Essentials Engine wiki

This wiki will no longer be updated.

READ MORE

Essentials Docs Wiki
No edit summary
Tag: Visual edit
(Updating to v19 (tall grass having the chance for a double battle and the puddle tag))
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
  +
[[Image:Tileset.png|right|256px|thumb|The Tilesets tab of the Database.]]
This article describes the basics of '''tilesets''', as well as any special features about them in Pokémon Essentials.
+
This page describes the basics of '''tilesets''', as well as any special features about them in Essentials.
==Tilesets==
 
  +
[[File:Tileset-0.png|thumb|220x220px]]
 
 
== Tilesets ==
Tilesets are used to create maps in RPG Maker XP. A tileset is a tall thin picture made up of squares, or tiles. Each tile is 32x32 pixels. A tileset is exactly 8 tiles wide, and any number of tiles high (there is a limit of about 5000, but this is usually more than enough). Tilesets are kept in the folder "Graphics/Tilesets".
 
  +
 
Tilesets are used to create maps in RPG Maker XP. A tileset is a tall, thin picture made up of squares, or tiles. Each tile is 32x32 pixels. A tileset is exactly 8 tiles wide, and any number of tiles high (there is a limit of about 5000, but this is usually way more than enough). Tilesets are kept in the folder "Graphics/Tilesets".
   
 
RPG Maker XP can handle up to 999 different tilesets, which should be more than sufficient for even the largest of games.
 
RPG Maker XP can handle up to 999 different tilesets, which should be more than sufficient for even the largest of games.
   
 
Editing a tileset is as simple as editing a picture.
 
Editing a tileset is as simple as editing a picture.
  +
===Autotiles===
+
=== Autotiles ===
RPG Maker XP allows you to include up to 7 autotiles in each tileset. These are added onto the top of the rest of the tileset separately. Each autotile is a separate picture file in the folder "Graphics/Autotiles". Autotiles can show an animation.
 
  +
==The Database==
 
 
RPG Maker XP allows you to include up to 7 autotiles in each tileset. These are added onto the top of the tileset as the top row of tiles. Each autotile is a separate picture file in the folder "Graphics/Autotiles". Autotiles can show an animation.
In RPG Maker XP, press F9 to go into the Database, and select the "Tilesets" tab. Here you can edit the contents and properties of tilesets.
 
  +
 
== The Database ==
  +
 
In RPG Maker XP, click the Database icon in the toolbar, or go to Tools>Database, or press F9. In here, select the "Tilesets" tab. Here you can edit the contents and properties of tilesets.
   
 
The properties of tiles in a tileset are:
 
The properties of tiles in a tileset are:
  +
*Passage - Whether the player or an NPC can walk over them or not (without any special effects applying).
 
*Passage (4 dir) - The sides which the player/NPC can pass through.
+
* Passage - Whether the player or an NPC can walk over them or not (without any special effects applying).
  +
* Passage (4 dir) - The sides which the player/NPC can pass through.
*Priority - How close to the foreground the tile is displayed. A higher number means it is closer to the foreground. The player will pass behind any tile that has a priority.
+
* Priority - How close to the foreground the tile is displayed. A higher number means it is closer to the foreground. The player will pass behind any tile that has a non-zero priority.
*Bush flag - Whether the bottom part of an event on that tile should be transparent, making it look like it is standing in tall grass, shallow water, etc.
 
*Counter Flag - Whether the player can "reach over" the tile to interact with an event on the other side (i.e. it indicates that the tile is part of a counter or desk).
+
* Bush flag - Whether the bottom part of an event on that tile should be transparent, making it look like it is standing in tall grass, shallow water, etc.
  +
* Counter Flag - Whether the player can "reach over" the tile to interact with an event on the other side (i.e. it indicates that the tile is part of a counter or desk).
*Terrain Tag - A number that gives the tile other properties as defined in the scripts. See below.
+
* Terrain Tag - A number that gives the tile other properties as defined in the scripts. See below.
==Terrain tags==
 
  +
Terrain tags allow certain tiles to have special properties, such as being tiles on which [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Encounters wild Pokémon encounters]can occur, or tiles that the player can slide around on.
 
 
== Terrain tags ==
  +
 
Terrain tags allow certain tiles to have special properties, such as being tiles on which [[Wild encounters|wild Pokémon encounters]] can occur, or tiles that the player can slide around on.
   
 
The existing terrain tags are as follows:
 
The existing terrain tags are as follows:
  +
{| border="1" cellpadding="2"
 
  +
{| class="wikitable"
!Terrain tag
 
!Name of tag
+
! Terrain tag
  +
! Name of tag
!More details
+
! More details
 
|-
 
|-
  +
| style="text-align:center;" | 1
|1
 
  +
| style="text-align:center;" | Ledge
|Ledge
 
|These are tiles which the player will jump over. These tiles should be passable in only one direction (the direction of the top of the ledge). For example, a ledge you jump east to west over should be passable from the east, and not passable from any other direction.
+
| These are tiles which the player will jump over. These tiles should be passable in only one direction (the direction pointing towards the top of the ledge). For example, a ledge you jump east to west over should be passable from the east, and not passable from any other direction.
 
|-
 
|-
  +
| style="text-align:center;" | 2
|2
 
  +
| style="text-align:center;" | Grass
|Grass
 
|[https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Encounters Wild Pokémon encounters] can take place on tiles with this terrain tag.
+
| [[Wild encounters|Wild Pokémon encounters]] can take place on tiles with this terrain tag.
  +
When walking over a tile of grass, the animation GRASS_ANIMATION_ID will be shown (by the procedure Events.onStepTakenFieldMovement in the script section '''PokemonField'''). This animation is of grass rustling.
+
When walking over a tile of grass, the animation <code>GRASS_ANIMATION_ID</code> (see the [[script section]] '''Settings''' for the definition of this) will be shown. The animation is played by the proc <code>Events.onStepTakenFieldMovement</code> in the [[script section]] '''PField_Field'''). This animation is of grass rustling.
   
 
These tiles should also have the Bush flag set (i.e. the bottom part of the player will become transparent).
 
These tiles should also have the Bush flag set (i.e. the bottom part of the player will become transparent).
   
This terrain tag is a "Grass" environment (used to determine [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Backgrounds_and_music battle backdrops] and some [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Move_effects move effects]).
+
This terrain tag is a "Grass" environment (used to determine [[Backgrounds and music|battle backdrops]] and some [[move effects]]).
 
|-
 
|-
  +
| style="text-align:center;" | 3
|3
 
  +
| style="text-align:center;" | Sand
|Sand
 
|This terrain tag is a "Sand" environment (used to determine [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Backgrounds_and_music battle backdrops] and some [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Move_effects move effects]).
+
| This terrain tag is a "Sand" environment (used to determine [[Backgrounds and music|battle backdrops]] and some [[move effects]]).
 
|-
 
|-
  +
| style="text-align:center;" | 4
|4
 
  +
| style="text-align:center;" | Rock
|Rock
 
|This terrain tag is a "Rock" environment (used to determine [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Backgrounds_and_music battle backdrops] and some [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Move_effects move effects]).
+
| This terrain tag is a "Rock" environment (used to determine [[Backgrounds and music|battle backdrops]] and some [[move effects]]).
 
|-
 
|-
  +
| style="text-align:center;" | 5
|5
 
|DeepWater
+
| style="text-align:center;" | DeepWater
|The player can only surf on these tiles. The player can also [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Fishing_encounters fish] on these tiles.
+
| The player can only surf on these tiles. The player can also [[Fishing encounters|fish]] onto these tiles.
When the [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Using_moves_outside_battle move Dive is used] on these tiles, the player will dive underwater. See the article [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Obstacles Obstacles] for more information on diving.
 
   
  +
When the [[Using moves outside battle|move Dive is used]] on these tiles, the player will dive underwater. See the page [[Obstacles]] for more information on diving.
This terrain tag is a "MovingWater" environment (used to determine [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Backgrounds_and_music battle backdrops] and some [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Move_effects move effects]).
 
  +
  +
This terrain tag is a "MovingWater" environment (used to determine [[Backgrounds and music|battle backdrops]] and some [[move effects]]).
 
|-
 
|-
  +
| style="text-align:center;" | 6
|6
 
|StillWater
+
| style="text-align:center;" | StillWater
|The player can only surf on these tiles. The player can also [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Fishing_encounters fish] on these tiles.
+
| The player can only surf on these tiles. The player can also [[Fishing encounters|fish]] on these tiles.
When an event is on the tile immediately above this tile, this tile will show its reflection. Reflections are handled at the top of the script section '''Spriteset_Map'''. However, if the event's name includes "noreflect" (ignoring quote marks), it will not have a reflection.
 
   
  +
These tiles are rendered far into the background, and allow [[Events|event]] reflections to appear between them and the rest of a map's tiles (reflections normally appear behind all tiles). The player always has a reflection, while other events can have reflections too if their name includes the phrase "<code>Reflection</code>" (this is case sensitive).
This terrain tag is a "StillWater" environment (used to determine [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Backgrounds_and_music battle backdrops]and some [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Move_effects move effects]).
 
  +
  +
This terrain tag is a "StillWater" environment (used to determine [[Backgrounds and music|battle backdrops]] and some [[move effects]]).
 
|-
 
|-
  +
| style="text-align:center;" | 7
|7
 
  +
| style="text-align:center;" | Water
|Water
 
|The player can only surf on these tiles. The player can also [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Fishing_encounters fish] on these tiles.
+
| The player can only surf on these tiles. The player can also [[Fishing encounters|fish]] on these tiles.
  +
This terrain tag is a "MovingWater" environment (used to determine [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Backgrounds_and_music battle backdrops] and some [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Move_effects move effects]).
 
  +
This terrain tag is a "MovingWater" environment (used to determine [[Backgrounds and music|battle backdrops]] and some [[move effects]]).
 
|-
 
|-
  +
| style="text-align:center;" | 8
|8
 
|Waterfall
+
| style="text-align:center;" | Waterfall
|These tiles mark the main body of a waterfall, except the very top of it.
+
| These tiles mark the main body of a waterfall, except the very top of it.
The player cannot surf normally on these tiles. When the player is facing up at this tile, and they [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Using_moves_outside_battle use the move Waterfall], they will automatically surf upwards until they are no longer on a "Waterfall" or "WaterfallCrest" tile. See the article [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Obstacles Obstacles] for more information on waterfalls.
 
   
 
The player cannot surf normally on these tiles. When the player is facing up at this tile, and they [[Using moves outside battle|use the move Waterfall]], they will automatically surf upwards until they are no longer on a "Waterfall" or "WaterfallCrest" tile. See the page [[Obstacles]] for more information on waterfalls.
The player will not encounter any Pokémon while moving up or down a waterfall.
 
  +
 
The player will not [[Wild encounters|encounter any Pokémon]] while moving up or down a waterfall.
 
|-
 
|-
  +
| style="text-align:center;" | 9
|9
 
|WaterfallCrest
+
| style="text-align:center;" | WaterfallCrest
|These tiles mark the top row of tiles of a waterfall. The player can surf onto these tiles, but as soon as they do, they will automatically surf downwards until they are no longer on a "Waterfall" or "WaterfallCrest" tile. See the article [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Obstacles Obstacles] for more information on waterfalls.
+
| These tiles mark the top row of tiles of a waterfall. The player can surf onto these tiles, but as soon as they do, they will automatically surf downwards until they are no longer on a "Waterfall" or "WaterfallCrest" tile. See the page [[Obstacles]] for more information on waterfalls.
  +
The player will not encounter any Pokémon while moving up or down a waterfall.
+
The player will not [[Wild encounters|encounter any Pokémon]] while moving up or down a waterfall.
 
|-
 
|-
  +
| style="text-align:center;" | 10
|10
 
|TallGrass
+
| style="text-align:center;" | TallGrass
|[https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Encounters Wild Pokémon encounters] can take place on tiles with this terrain tag. The player cannot [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Getting_around cycle] onto a tile with this terrain tag, nor mount a bicycle while standing on it. The player cannot run on a tile with this terrain tag.
+
| [[Wild encounters|Wild Pokémon encounters]] can take place on tiles with this terrain tag. There is a 30% chance these battles will be double battles. The player cannot run on a tile with this terrain tag. The player cannot [[Getting around|cycle]] onto a tile with this terrain tag, nor mount a bicycle while standing on it.
  +
 
Tall grass typically takes up 2 tiles. The upper tile should have the Bush flag set, a priority of 1 and this terrain tag; the lower tile should have a priority of 0 and a terrain tag of 0.
 
Tall grass typically takes up 2 tiles. The upper tile should have the Bush flag set, a priority of 1 and this terrain tag; the lower tile should have a priority of 0 and a terrain tag of 0.
   
This terrain tag is a "TallGrass" environment (used to determine [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Backgrounds_and_music battle backdrops]and some [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Move_effects move effects]).
+
This terrain tag is a "TallGrass" environment (used to determine [[Backgrounds and music|battle backdrops]] and some [[move effects]]).
 
|-
 
|-
  +
| style="text-align:center;" | 11
|11
 
|UnderwaterGrass
+
| style="text-align:center;" | UnderwaterGrass
|[https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Encounters Wild Pokémon encounters] can take place on tiles with this terrain tag. There are no other effects.
+
| [[Wild encounters|Wild Pokémon encounters]] can take place on tiles with this terrain tag. There are no other effects.
  +
 
As the name suggests, this terrain tag is typically used for seaweed underwater (which won't have the Bush flag set). However, it is just another kind of grass tile, and can be used in other ways.
 
As the name suggests, this terrain tag is typically used for seaweed underwater (which won't have the Bush flag set). However, it is just another kind of grass tile, and can be used in other ways.
 
|-
 
|-
  +
| style="text-align:center;" | 12
|12
 
  +
| style="text-align:center;" | Ice
|Ice
 
|If the player steps on these tiles, they will slide in the same direction until they hit something they cannot pass through, or until they are no longer on an "Ice" tile. Sliding on ice is handled by the def Kernel.pbSlideOnIce in the script section '''PokemonField'''.
+
| If the player steps onto these tiles, they will slide in the same direction until they hit something they cannot pass through, or until they are no longer on an "Ice" tile. Sliding on ice is handled by <code>def Kernel.pbSlideOnIce</code> in the [[script section]] '''PField_Field'''.
  +
The player will not encounter any wild Pokémon while on an ice tile. They will move at running speed, and will be fixed in a "one foot forward" pose while sliding.
+
The player will not [[Wild encounters|encounter any wild Pokémon]] while on an ice tile. They will move at running speed, and will be fixed in a "one foot forward" pose while sliding.
 
|-
 
|-
  +
| style="text-align:center;" | 13
|13
 
|Neutral
+
| style="text-align:center;" | Neutral
|These tiles have no effects, but because they still have a terrain tag, they are used in cases where you want to be able to walk over other special tiles.
+
| These tiles have their passabilities and terrain tag ignored by all effects. This terrain tag is therefore useful for purely decorative tiles such as large building shadows.
 
|-
 
|-
  +
| style="text-align:center;" | 14
|14
 
|SootGrass
+
| style="text-align:center;" | SootGrass
|When an event steps on these tiles, they are deleted (revealing the tile beneath). Also, if the player has a Soot Sack and they stepped onto the tile, 1 will be added to the soot count $PokemonGlobal.sootsack.
+
| When the player steps on these tiles and if the player has a Soot Sack, 1 will be added to the soot count <code>$PokemonGlobal.sootsack</code>.
This occurs before any of the grass-related things (rustling, encounters), so if the tile beneath a "SootGrass" tile is a "Grass" tile, then there will be rustling and possibly an encounter as normal as per the effects of a Grass tile.
 
 
|-
 
|-
  +
| style="text-align:center;" | 15
|15
 
  +
| style="text-align:center;" | Bridge
|Bridge
 
|These tiles are [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Bridges bridge] tiles. By default they should have a high priority (i.e. the player passes beneath them), and a passability as if the player was walking over the bridge. This terrain tag is for bridge tiles which the player goes underneath, as well as bridges which the player can go both over and under.
+
| These tiles are [[Bridges|bridge]] tiles. By default they should have a high priority (e.g. 4), and a passability as though the player was walking over the bridge. This terrain tag is for bridge tiles which the player goes underneath, as well as bridges which the player can go both over and under.
  +
While $PokemonMap.bridge is 0, the passability of these tiles is ignored, and their terrain tag may also be ignored in some cases. At the same time as it is set to 1 or higher, the priority of these tiles are also set to 0 (and back to 4 at the same time $PokemonMap.bridge is set to 0).
+
While <code>$PokemonMap.bridge</code> is 0, the passability of these tiles is ignored, and their terrain tag may also be ignored in some cases. At the same time as this value is set to 1 or higher, the priority of these tiles are also set to 0 (and back to 4 at the same time <code>$PokemonMap.bridge</code> is set to 0). See the page [[Bridges]] for more information.
 
|-
  +
| style="text-align:center;" | 16
  +
| style="text-align:center;" | Puddle
  +
| This terrain tag is a "Puddle" environment (used to determine [[Backgrounds and music|battle backdrops]] and some [[move effects]]).
 
|}
 
|}
  +
RPG Maker XP's tileset editor in the Database only supports terrain tags up to 7, so tiles that need terrain tags of 8 or higher need to be set elsewhere. The [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/Debug_mode Debug mode] and the [https://web.archive.org/web/20180405035834/http://pokemonessentials.wikia.com/wiki/External_Editor External Editor] have an option called "Edit Terrain Tags", which allows you to assign a tile any terrain tag you want.
+
RPG Maker XP's tileset editor in the Database only supports terrain tags up to 7, so tiles that need terrain tags of 8 or higher need to be set elsewhere. The [[Debug mode]] menu has an option called "Edit Terrain Tags", which allows you to assign a tile any terrain tag you want.
 
 

Revision as of 06:53, 1 September 2021

Tileset

The Tilesets tab of the Database.

This page describes the basics of tilesets, as well as any special features about them in Essentials.

Tilesets

Tilesets are used to create maps in RPG Maker XP. A tileset is a tall, thin picture made up of squares, or tiles. Each tile is 32x32 pixels. A tileset is exactly 8 tiles wide, and any number of tiles high (there is a limit of about 5000, but this is usually way more than enough). Tilesets are kept in the folder "Graphics/Tilesets".

RPG Maker XP can handle up to 999 different tilesets, which should be more than sufficient for even the largest of games.

Editing a tileset is as simple as editing a picture.

Autotiles

RPG Maker XP allows you to include up to 7 autotiles in each tileset. These are added onto the top of the tileset as the top row of tiles. Each autotile is a separate picture file in the folder "Graphics/Autotiles". Autotiles can show an animation.

The Database

In RPG Maker XP, click the Database icon in the toolbar, or go to Tools>Database, or press F9. In here, select the "Tilesets" tab. Here you can edit the contents and properties of tilesets.

The properties of tiles in a tileset are:

  • Passage - Whether the player or an NPC can walk over them or not (without any special effects applying).
  • Passage (4 dir) - The sides which the player/NPC can pass through.
  • Priority - How close to the foreground the tile is displayed. A higher number means it is closer to the foreground. The player will pass behind any tile that has a non-zero priority.
  • Bush flag - Whether the bottom part of an event on that tile should be transparent, making it look like it is standing in tall grass, shallow water, etc.
  • Counter Flag - Whether the player can "reach over" the tile to interact with an event on the other side (i.e. it indicates that the tile is part of a counter or desk).
  • Terrain Tag - A number that gives the tile other properties as defined in the scripts. See below.

Terrain tags

Terrain tags allow certain tiles to have special properties, such as being tiles on which wild Pokémon encounters can occur, or tiles that the player can slide around on.

The existing terrain tags are as follows:

Terrain tag Name of tag More details
1 Ledge These are tiles which the player will jump over. These tiles should be passable in only one direction (the direction pointing towards the top of the ledge). For example, a ledge you jump east to west over should be passable from the east, and not passable from any other direction.
2 Grass Wild Pokémon encounters can take place on tiles with this terrain tag.

When walking over a tile of grass, the animation GRASS_ANIMATION_ID (see the script section Settings for the definition of this) will be shown. The animation is played by the proc Events.onStepTakenFieldMovement in the script section PField_Field). This animation is of grass rustling.

These tiles should also have the Bush flag set (i.e. the bottom part of the player will become transparent).

This terrain tag is a "Grass" environment (used to determine battle backdrops and some move effects).

3 Sand This terrain tag is a "Sand" environment (used to determine battle backdrops and some move effects).
4 Rock This terrain tag is a "Rock" environment (used to determine battle backdrops and some move effects).
5 DeepWater The player can only surf on these tiles. The player can also fish onto these tiles.

When the move Dive is used on these tiles, the player will dive underwater. See the page Obstacles for more information on diving.

This terrain tag is a "MovingWater" environment (used to determine battle backdrops and some move effects).

6 StillWater The player can only surf on these tiles. The player can also fish on these tiles.

These tiles are rendered far into the background, and allow event reflections to appear between them and the rest of a map's tiles (reflections normally appear behind all tiles). The player always has a reflection, while other events can have reflections too if their name includes the phrase "Reflection" (this is case sensitive).

This terrain tag is a "StillWater" environment (used to determine battle backdrops and some move effects).

7 Water The player can only surf on these tiles. The player can also fish on these tiles.

This terrain tag is a "MovingWater" environment (used to determine battle backdrops and some move effects).

8 Waterfall These tiles mark the main body of a waterfall, except the very top of it.

The player cannot surf normally on these tiles. When the player is facing up at this tile, and they use the move Waterfall, they will automatically surf upwards until they are no longer on a "Waterfall" or "WaterfallCrest" tile. See the page Obstacles for more information on waterfalls.

The player will not encounter any Pokémon while moving up or down a waterfall.

9 WaterfallCrest These tiles mark the top row of tiles of a waterfall. The player can surf onto these tiles, but as soon as they do, they will automatically surf downwards until they are no longer on a "Waterfall" or "WaterfallCrest" tile. See the page Obstacles for more information on waterfalls.

The player will not encounter any Pokémon while moving up or down a waterfall.

10 TallGrass Wild Pokémon encounters can take place on tiles with this terrain tag. There is a 30% chance these battles will be double battles. The player cannot run on a tile with this terrain tag. The player cannot cycle onto a tile with this terrain tag, nor mount a bicycle while standing on it.

Tall grass typically takes up 2 tiles. The upper tile should have the Bush flag set, a priority of 1 and this terrain tag; the lower tile should have a priority of 0 and a terrain tag of 0.

This terrain tag is a "TallGrass" environment (used to determine battle backdrops and some move effects).

11 UnderwaterGrass Wild Pokémon encounters can take place on tiles with this terrain tag. There are no other effects.

As the name suggests, this terrain tag is typically used for seaweed underwater (which won't have the Bush flag set). However, it is just another kind of grass tile, and can be used in other ways.

12 Ice If the player steps onto these tiles, they will slide in the same direction until they hit something they cannot pass through, or until they are no longer on an "Ice" tile. Sliding on ice is handled by def Kernel.pbSlideOnIce in the script section PField_Field.

The player will not encounter any wild Pokémon while on an ice tile. They will move at running speed, and will be fixed in a "one foot forward" pose while sliding.

13 Neutral These tiles have their passabilities and terrain tag ignored by all effects. This terrain tag is therefore useful for purely decorative tiles such as large building shadows.
14 SootGrass When the player steps on these tiles and if the player has a Soot Sack, 1 will be added to the soot count $PokemonGlobal.sootsack.
15 Bridge These tiles are bridge tiles. By default they should have a high priority (e.g. 4), and a passability as though the player was walking over the bridge. This terrain tag is for bridge tiles which the player goes underneath, as well as bridges which the player can go both over and under.

While $PokemonMap.bridge is 0, the passability of these tiles is ignored, and their terrain tag may also be ignored in some cases. At the same time as this value is set to 1 or higher, the priority of these tiles are also set to 0 (and back to 4 at the same time $PokemonMap.bridge is set to 0). See the page Bridges for more information.

16 Puddle This terrain tag is a "Puddle" environment (used to determine battle backdrops and some move effects).

RPG Maker XP's tileset editor in the Database only supports terrain tags up to 7, so tiles that need terrain tags of 8 or higher need to be set elsewhere. The Debug mode menu has an option called "Edit Terrain Tags", which allows you to assign a tile any terrain tag you want.