Advertisement
Guest User

Untitled

a guest
May 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. The net stat gain is less than 100, add 154 in the current distribution.
  2. [IMG]http://play.pokemonshowdown.com/sprites/xyani/ho-oh.gif[/IMG]
  3. [IMG]http://play.pokemonshowdown.com/sprites/types/Fire.png[/IMG][IMG]http://play.pokemonshowdown.com/sprites/types/Flying.png[/IMG]
  4. [B]Mega Ho-Oh[/B]
  5. [B]Ability:[/B] Magic Guard
  6. [B]HP:[/B] 106
  7. [I][B]Atk:[/B][/I] 130 ---> 160 (+30)
  8. [I][B]Def:[/B][/I] 90 ---> 140 (50)
  9. [I][B]SpA:[/B][/I] 110 ---> 80 (+-30)
  10. [I][B]SpD:[/B][/I] 154 ---> 154 (0)
  11. [I][B]Spe:[/B][/I] 90 ---> 140 (50)
  12. [B]Weight:[/B] 199 kg
  13.  
  14. [B]New Moves:[/B] High Jump Kick, Icicle Crash, Flare Blitz, Wild Charge,
  15. [B]Description:[/B] When Mega Ho-Oh is angry, he shines so brightly that he blinds everyone around him. According to belief, it could dry the earth in no time.
  16.  
  17. [hide=Code]pokedex.js
  18. [CODE=javascript]ho-ohmega: {
  19. num: 250,
  20. species: "Ho-Oh-Mega",
  21. baseSpecies: "Ho-Oh",
  22. forme: "Mega",
  23. formeLetter: "M",
  24. types:["Fire", "Flying "],
  25. baseStats: {hp: 106, atk: 160, def: 140, spa: 80, spd: 154, spe: 140},
  26. abilities: {0: "Magic Guard"},
  27. weightkg: 199,
  28. evoLevel: 1,
  29. }, [/CODE]
  30.  
  31. items.js
  32. [CODE=javascript]ho-ohite: {
  33. id: "ho-ohite",
  34. name: "Ho-Ohite",
  35. spritenum: 612,
  36. megaStone: "Ho-Oh-Mega",
  37. megaEvolves: "Ho-Oh",
  38. onTakeItem: function (item, source) {
  39. if (item.megaEvolves === source.baseTemplate.baseSpecies) return false;
  40. return true;
  41. },
  42. num: 760,
  43. gen: 7,
  44. desc: "If held by a Ho-Oh, this item allows it to Mega Evolve in battle.",
  45. },[/CODE]
  46.  
  47. formats-data.js
  48. [CODE=javascript]ho-oh:
  49. randomBattleMoves: [],
  50. randomDoublesBattleMoves: [],
  51. requiredItem: "Ho-Ohite",
  52. tier: "OU",
  53. },[/CODE]
  54.  
  55.  
  56.  
  57. learnsets.js
  58. [CODE=javascript]high jump kick: ["6L1"],
  59. icicle crash: ["6L1"],
  60. flare blitz: ["6L1"],
  61. wild charge: ["6L1"],[/CODE]
  62.  
  63. MFA Calc pokedex.js [CODE=javascript]"Ho-Oh-Mega": {
  64. "t1": "Fire",
  65. "t2": "Flying",
  66. "bs": {
  67. "hp": 106,
  68. "at": 160,
  69. "df": 140,
  70. "sa": 80,
  71. "sd": 154,
  72. "sp": 140,
  73. },
  74. "w": 199
  75. },[/CODE][/hide]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement