Advertisement
Lucidious89

Untitled

Aug 10th, 2023
1,281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.02 KB | None | 0 0
  1. WildBattle.dx_start([:DEOXYS, 40], {
  2.   # Rules
  3.   :noflee    => true,
  4.   :terrain   => :Psychic,
  5.   :environ   => :Space,
  6.   :backdrop  => ["elite4", "distortion"],
  7.   :bgm       => "Battle roaming",
  8.   :introtext => "You encountered an alien invader!"
  9. },
  10. { # Pokemon
  11.   :name       => "????",
  12.   :obtaintext => "Outer Space.",
  13.   :supershiny => true,
  14.   :pokerus    => true,
  15.   :ability    => :MAGICGUARD
  16. },
  17. { # Midbattle
  18.   "turnCommand" => {
  19.     :text      => "You used Prof. Pluton's Roto-Dex upgrade to identify the alien species!",
  20.     :playsound => "PC access",
  21.     :battler   => 1,
  22.     :rename    => "Deoxys",
  23.     :text_1    => "The alien species was identified as Deoxys!"
  24.   },
  25.   #-----------------------------------------------------------------------------
  26.   "turnEnd_repeat" => {
  27.     :battler   => 1,
  28.     :playsound => "Anim/Sound2",
  29.     :form      => [:Cycle, "{1} suddenly mutated!"],
  30.     :playcry   => true,
  31.     :moves     => :Reset,
  32.     :status    => [:NONE, true],
  33.     :hp        => [8, "{1} recovered some HP!"]
  34.   },
  35.   #-----------------------------------------------------------------------------
  36.   "defenderDamaged_repeat" => {
  37.     :text      => "{1}'s life force was drained!",
  38.     :battler   => :Opposing,
  39.     :hp        => [4, "{1} drained some HP!"]
  40.   },
  41.   #-----------------------------------------------------------------------------
  42.   "moveDamaging_repeat" => {
  43.     :battler   => :Opposing,
  44.     :effects   => [ [PBEffects::Endure, true] ]
  45.   },
  46.   #-----------------------------------------------------------------------------
  47.   "defenderHPLow_foe"     => [:Opposing, "It's getting weak!", "I gotta capture it before it recovers too much HP!"],
  48.   "fainted_foe"           => [:Opposing, "Huh?", "The wild Deoxys suddenly teleported away..."],
  49.   "captureAttempt"        => ["I've got you now, Deoxys!", "This one's for Prof. Pluton!"],
  50.   "captureFailure_repeat" => "Arg! No way you're getting away that easily!",
  51.   "captureSuccess"        => ["Phew...it's finally over.", "The professor would be proud."]
  52. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement