Search results for query: *

  1. Ytreza

    Programming Pokémon Showdown Damage Calculator

    The problem is not about Triple Kick + Technician, it's just Triple Kick alone. It seems to be computed like a move that does 3 hits where each hit uses the input base power (which defaults to 10). So by default, it's similar to a 30bp move. On the other hand, its counterpart Triple Axel seems...
  2. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    Fighting is SE against Ferrothorn (SE vs Steel, neutral vs Grass) and Flying is neutral vs Ferrothorn (NVE vs Steel, SE vs Grass). So Flying Press, which combines both Fighting and Flying type matchups, is x2 SE vs Ferrothorn. Bulbapedia says this for Gen V onward though It now inflicts damage...
  3. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    The hp of a substitute is equal to maxhp / 4 (rounded down) and 401/4 = 100 You need 404 hp on your Kyurem to make 101 hp subs, which won't break to a Seismic Toss
  4. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    Reuniclus most likely had Sticky Barb to begin with. When Magearna used Draining Kiss, which is a contact move, the Sticky Barb transferred from Reuniclus to Magearna (no message is displayed). Then Reuniclus used Trick during the same turn, and received the Sticky Barb back.
  5. Ytreza

    Programming Pokémon Showdown Damage Calculator

    Looking at the code on GitHub (I hope I have the right to do so '_'), this has been fixed but maybe they are waiting to fix more things before pushing it to the live version
  6. Ytreza

    Oh thank you C:

    Oh thank you C:
  7. Ytreza

    Oh thank you C:

    Oh thank you C:
  8. Ytreza

    Programming Pokémon Showdown Damage Calculator

    https://www.smogon.com/dp/articles/damage_formula https://www.smogon.com/bw/articles/bw_complete_damage_formula https://www.trainertower.com/dawoblefets-damage-dissertation/#custom-bp I don't have the data for generations 2 and 3 but the table you wrote for gen5+ disagrees with the links I...
  9. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    https://www.smogon.com/forums/threads/bug-reports-v3-read-original-post-before-posting.3634749/page-38#post-8096132 This is from the previous thread, for Ultra Sun and Moon. This is not a bug, Sheer Force prevents Berserk from triggering.
  10. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    The % of hp displayed is rounded up except for values above 99% (so that you don't see 100% when the Pokémon is not at full hp) So 13% means between 12.1% and 13% hp left. The damage is symmetrically rounded down instead (Starting from full hp, after taking a hit, %damage + %hp left = 100). Of...
  11. Ytreza

    Programming Pokémon Showdown Damage Calculator

    According to this smogon post about the BW damage formula https://www.smogon.com/bw/articles/bw_complete_damage_formula, when afflicted by a status, Facade base power is doubled (it's a base power modifier) whereas Burn is a damage modifier (it's applied after computing the base damage). Because...
  12. Ytreza

    Programming Pokémon Showdown Damage Calculator

    When you ask for a multi hit move, unless the number of hits you specified has a chance to ohko, the calc starts doing approximate calculations. Even if 2 hits from Water Shuriken is a 2hko (which makes it a total of 4 hits), the calculator will not compute the exact 4 hits distribution (I think...
  13. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    Surf and Hidden Power base power have changed after gen 5 and the teambuilder is using the most recent data to sort the moves instead of their gen 5 data, even though it correctly displays their gen 5 base powers (Surf has 90 power and HP has 60 power now).
  14. Ytreza

    Programming Pokémon Showdown Damage Calculator

    You should check if the HP of Dragapult is at 100% and not lower for some reason. If you changed it during a previous calc, it will keep the same percentage of HP left for the new Pokémon.
  15. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    Pressure affects moves that target a Pokémon with Pressure. Basically if you target a Pokémon with Pressure, you spend an additional PP. Recover is a move that targets the user so it's not affected, and that's not a bug.
  16. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    It's not necessarily that it counted 88 evs instead of 84 evs. Another explanation is that they forgot to floor the"ev / 4" part in the computation. In the following computations, / is a floating point division, so 85/4 does not equal 21, but 21.25. If you compute (2*45 + 31 + 85/4)*88/100+5, it...
  17. Ytreza

    Programming Pokémon Showdown Damage Calculator

    The set is named OU Drought Wallbreaker Y because it's a set used on Mega Charizard Y. They list the sets for Charizard under both its base and mega form because before mega evolving your Charizard will be in its base form and you may want to calc some situations without mega evolving.
  18. Ytreza

    Programming Pokémon Showdown Damage Calculator

    It also applies to Multiscale. You could even argue that the chance to nhko becomes irrelevant for regular moves in these cases, and also with Gems but that's another issue.
  19. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    Bulbapedia says it's 33.2%, which is probably 85/256 if they expressed everything in fractions/256. By the way are secondary effects chances exact or are they all rounded ? (For instance is 10% actually something like 25/256 in the game or is it truly 1/10 ?)
  20. Ytreza

    Bug Reports v4 -- POST BUGS HERE https://www.smogon.com/forums/ps-bug-report-form/

    I got this damage calc with a 120 bp Assurance 252 Atk Dragapult Assurance vs. 0 HP / 0 Def Dracovish: 124-146 (38.6 - 45.4%) -- guaranteed 3HKO Possible damage amounts: (124, 125, 127, 128, 129, 131, 132, 134, 135, 137, 138, 140, 141, 143, 144, 146) and this one with a 60 bp Assurance 252 Atk...
Back
Top