Guest User

Untitled

a guest
Jul 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 1.22 KB | None | 0 0
  1. PIKACHU = Creature.new(:Stats  => {:Health => 35, :Attack => 55, :Defense => 30, :SpecialAttack => 50, :SpecialDefense => 40, :Speed => 90},
  2.                            :Info   => {:Description => "It keeps its tail raised to monitor its surroundings. If you yank its tail, it will try to bite you.",
  3.                                        :Weight      => 13,
  4.                                        :Height => 52},
  5.                            :Moves  => [
  6.                                        Move.new(:Name => :Thundershock, :Effects => {:Paralysis    => 10}, :Attack => 40, :Types => [Type::Electric]),
  7.                                        Move.new(:Name => :Growl,        :Effects => {:LowerAttack  => 5},  :Types => [Type::Normal]),
  8.                                        Move.new(:Name => :Tail_Whip,    :Effects => {:LowerDefense => 5},  :Types => [Type::Normal]),
  9.                                        Move.new(:Name => :Thunder_Wave, :Effects => {:Paralysis    => 10}, :Types => [Type::Electric])
  10.                                       ],
  11.                            :Name   => 'Pikachu',
  12.                            :Gender => Gender::Male,
  13.                            :Status => Status::None,
  14.                            :Types  => [Type::Electric, Type::Normal])
Add Comment
Please, Sign In to add comment