• Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
Resource icon

Deep Marsh Tiles 2020-08-16

Pokémon Essentials Version
v17.2 ➖
VwBzTsE.gif
This script adds in Deep Marsh tiles, the annoying classic from DPPt, which cause the player to sink in and get stuck until they wiggle free.
To use it, you must create a new tile with terrain tag MarshDeep. Remember to change the number if you are already using the default 17.
There's also one other edit to "def bush_depth" in Game_Character.
This line :
Code:
      return 12 if self.map.bush?(@x,@y) and !moving?
Becomes this line :
Code:
      return 12 if (self.map.bush?(@x,@y) and !moving?) || (self==$game_player && $PokemonGlobal.stuck)
You could instead edit the line above in it in the same manner if you want the player to sink more into the mud. Or even just make the stuck condition on its own line to have it sink a different amount. Not gonna explain that though, it's beyond the scope of the script.
Credits
Just me!
Author
Vendily
Downloads
597
Views
2,759
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from Vendily

Back
Top