• 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

PSDK [PSDKPlug] Freeze to Frostbite 1.0.3

This resource pertains to Pokémon SDK.
Pokémon Essentials Version
Non-applicable
two resources in one is too hard to manage,
we're back down to one


What does this plugin do?​

It adds in a new status that's basically burn but reduces your special damage dealt. It procs guts, and can be prevented by magma armor. By default will hail will make you 3x more likely to inflict frostbite, and frostbite does 1/8th the users MAX HP as damage per turn. (This is how burn works in PSDK).

If you want to change the damage dealt or the effect make a monkey patch. Something like:
00001 FrostbiteDamage_Change.rb:
# Changing Frosbite Damage to 1/16
module Battle
  module Effects
    class Status
      class Frostbite < Status
        private
        def frostbite_effect
          return (target.max_hp / 16).clamp(1, Float::INFINITY)
        end
      end
    end
  end
end



Installation​

1.) Download the zip.
2.) Open the zip, extract the "Freeze to Frostbite" plugin to your project's scripts folder!
3.) Go to your graphics/interface folder and either delete or make a backup and then delete your "statusen.png" file.
4.) Launch the game! It should extract a csv file and a graphic file.
5.) Make sure you now have Data/Text/Dialogs/400000.csv, if not delete the scripts/plugins.dat file and launch again

And you're good to go! To test if the status is working, give your first mon frostbite by typing $actors[0].status_frostbite and going into battle by typing S.MI.call_battle_wild(:bulbasaur, 5) in the cmd prompts.
Credits
Invatorzen
  • Like
Reactions: ranko
Author
Invatorzen
Downloads
601
Views
2,001
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from Invatorzen

Latest updates

  1. Added French and Spanish language support!

    Self explanatory title, the code didn't change, but I wanted to add support for the other more...
  2. Completely plug-and-play update! :D

    Learned a little bit more about what you can do with the plugins, so now it will add the...
  3. Fixed some things:

    Hail now increases the chance of inflicting frostbite Statuses won't overwrite other statuses
Back
Top