M3rein

MK Species

Feb 2nd, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.29 KB | None | 0 0
  1. {
  2.     1 => {
  3.         "Name" => "Bulbasaur",
  4.         "InternalName" => "BULBASAUR", # Automatically formats something if left out
  5.         "Types" => ["id of grass type", "id of poison type"],
  6.         "Abilities" => ["id of overgrow ability"],
  7.         "HiddenAbility" => "id of chlorophyll ability", # No hidden ability if left out
  8.         "EggGroups" => ["id of monster egg group", "id of grass egg group"],
  9.         "CatchRate" => 45,
  10.         "Height" => 0.7,
  11.         "Weight" => 6.9,
  12.         "GenderRatio" => "id (index of an array with predefined ratios)",
  13.         "Kind" => "Seed",
  14.         "BaseEXP" => 64,
  15.         "LevelingRate" => "id (index of an array with predefined ratios)",
  16.         "EVYield" => [0,0,0,1,0,0],
  17.         "Color" => "id (index of an array with predefined colors)",
  18.         "BaseHappiness" => 70, # Defaults to 70 if left out
  19.         "DexEntry" => "For some time after its birth, it grows by gaining nourishment from the seed on its back.", # BW2 description
  20.         "BaseStats" => [45,49,49,65,65,45],
  21.         "Moveset" => { # No moves if left out
  22.             1 => "id of tackle move",
  23.             3 => "id of growl move",
  24.             7 => "id of leech seed move",
  25.             9 => "id of vine whip move",
  26.             13 => ["id of poison powder move", "id of sleep powder move"],
  27.             15 => "id of take down move",
  28.             19 => "id of razor leaf move",
  29.             21 => "id of sweet scent move",
  30.             25 => "id of growth move",
  31.             27 => "id of double-edge move",
  32.             31 => "id of worry seed move",
  33.             33 => "id of synthesis move",
  34.             37 => "id of seed bomb move"
  35.         },
  36.         "MoveCompatibility" => [ # TM, HM, Tutor. No moves if left out
  37.             "id of work up move",
  38.             "id of toxic move",
  39.             "id of venoshock move",
  40.             "id of hidden power move",
  41.             "id of sunny day move",
  42.             "id of light screen move",
  43.             "id of protect move",
  44.             "id of safeguard move",
  45.             "id of frustration move",
  46.             "id of solar beam move",
  47.             "id of return move",
  48.             "id of double team move",
  49.             "id of sludge bomb move",
  50.             "id of facade move",
  51.             "id of rest move",
  52.             "id of attract move",
  53.             "id of round move",
  54.             "id of echoed voice move",
  55.             "id of energy ball move",
  56.             "id of swords dance move",
  57.             "id of grass knot move",
  58.             "id of swagger move",
  59.             "id of sleep talk move",
  60.             "id of substitute move",
  61.             "id of nature power move",
  62.             "id of confide move"
  63.         ],
  64.         "Evolutions" => { # No evolutions if left out
  65.             "Level 16" => "id of Ivysaur species"
  66.         }
  67.     }
  68. }
Advertisement
Add Comment
Please, Sign In to add comment