Advertisement
Guest User

Méga-Dragonite

a guest
May 20th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. The net stat gain is less than 100, add 509 in the current distribution.
  2. [IMG]http://play.pokemonshowdown.com/sprites/xyani/dragonite.gif[/IMG]
  3. [IMG]http://play.pokemonshowdown.com/sprites/types/Dragon.png[/IMG][IMG]http://play.pokemonshowdown.com/sprites/types/Water.png[/IMG]
  4. [B]Mega Dragonite[/B]
  5. [B]Ability:[/B] Fairy Absorb (Only Méga-evolve after the Multiscale utility ! Fairy Absorb is like Water absorb but for the fairy attacks.)
  6. [B]HP:[/B] 91
  7. [I][B]Atk:[/B][/I] 134 ---> 40 (+-94)
  8. [I][B]Def:[/B][/I] 95 ---> 15 (-80)
  9. [I][B]SpA:[/B][/I] 100 ---> -5 (-105)
  10. [I][B]SpD:[/B][/I] 100 ---> 10 (-90)
  11. [I][B]Spe:[/B][/I] 80 ---> 40 (-40)
  12. [B]Weight:[/B] 220 kg
  13.  
  14. [B]New Moves:[/B] Nuclear Explosion, Shark Fang, Dragon Dance, Roost,
  15. [B]Description:[/B] Nuclear Explosion is a dragon stab with 180 power and 95 precision but lower the user def and Sp def by 2. Shark Fang is a water stab with 85 power and 95 precision and can flinch (10%) or wet (10%) the target. Being wet causes a drop in speed each turn where the target is on the ground for 2-5 turns.
  16.  
  17. [hide=Code]pokedex.js
  18. [CODE=javascript]dragonitemega: {
  19. num: 149,
  20. species: "Dragonite-Mega",
  21. baseSpecies: "Dragonite",
  22. forme: "Mega",
  23. formeLetter: "M",
  24. types:["Dragon", "Water "],
  25. baseStats: {hp: 91, atk: 40, def: 15, spa: -5, spd: 10, spe: 40},
  26. abilities: {0: "Fairy Absorb"},
  27. weightkg: 220,
  28. evoLevel: 1,
  29. }, [/CODE]
  30.  
  31. items.js
  32. [CODE=javascript]dragoniteite: {
  33. id: "dragoniteite",
  34. name: "Dragoniteite",
  35. spritenum: 612,
  36. megaStone: "Dragonite-Mega",
  37. megaEvolves: "Dragonite",
  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 Dragonite, this item allows it to Mega Evolve in battle.",
  45. },[/CODE]
  46.  
  47. formats-data.js
  48. [CODE=javascript]dragonite:
  49. randomBattleMoves: [],
  50. randomDoublesBattleMoves: [],
  51. requiredItem: "Dragoniteite",
  52. tier: "OU",
  53. },[/CODE]
  54.  
  55. abilities.js
  56. [CODE=javascript]fairy absorb: { // Remove spacing in the ability name (Onto the left) if applicable
  57. shortDesc:"Only Méga-evolve after the Multiscale utility ! Fairy Absorb is like Water absorb but for the fairy attacks.",
  58. id: fairy absorb,
  59. name: "Fairy Absorb",
  60. // Code[/CODE]
  61. },
  62.  
  63. learnsets.js
  64. [CODE=javascript]nuclear explosion: ["6L1"],
  65. shark fang: ["6L1"],
  66. dragon dance: ["6L1"],
  67. roost: ["6L1"],[/CODE]
  68.  
  69. MFA Calc pokedex.js [CODE=javascript]"Dragonite-Mega": {
  70. "t1": "Dragon",
  71. "t2": "Water",
  72. "bs": {
  73. "hp": 91,
  74. "at": 40,
  75. "df": 15,
  76. "sa": -5,
  77. "sd": 10,
  78. "sp": 40,
  79. },
  80. "w": 220
  81. },[/CODE][/hide]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement