• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
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:
Expand Collapse Copy
      return 12 if self.map.bush?(@x,@y) and !moving?
Becomes this line :
Code:
Expand Collapse Copy
      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
681
Views
2,831
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from Vendily

Back
Top